Skip to content

Commit 35eb757

Browse files
authored
Fix lint and upgrade version to 1.1.11 (#82)
1 parent c0696da commit 35eb757

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@playcanvas/pcui",
3-
"version": "1.1.10",
3+
"version": "1.1.11",
44
"author": "PlayCanvas <[email protected]>",
55
"homepage": "https://playcanvas.github.io/pcui",
66
"description": "This library enables the creation of reliable and visually pleasing user interfaces by providing fully styled components that you can use directly on your site. The components are useful in a wide range of use cases, from creating simple forms to building graphical user interfaces for complex web tools.",

src/components/NumericInput/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class NumericInput extends TextInput {
5151
} else if (Number.isFinite(args.precision)) {
5252
this._step = 1 / Math.pow(10, args.precision);
5353
} else {
54-
this._step = 1;
54+
this._step = 1;
5555
}
5656

5757
this._oldValue = undefined;
@@ -72,7 +72,7 @@ class NumericInput extends TextInput {
7272
this._sliderControl = new Element();
7373
this._sliderControl.class.add(CLASS_NUMERIC_INPUT_SLIDER_CONTROL);
7474
this.dom.append(this._sliderControl.dom);
75-
75+
7676
let sliderUsed = false;
7777
this._domEvtSliderMouseDown = () => {
7878
this._sliderControl.dom.requestPointerLock();

0 commit comments

Comments
 (0)