@public-ui/hydrate 1.4.2-rc.4 → 1.4.2-rc.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +8 -4
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -12892,7 +12892,9 @@ class KolInputDate {
12892
12892
  }
12893
12893
  validateOn(value) {
12894
12894
  setState(this, '_on', Object.assign(Object.assign({}, value), { onChange: (e, v) => {
12895
- this._value = v;
12895
+ if (!!v !== !!this._value) {
12896
+ this._value = v;
12897
+ }
12896
12898
  if (value === null || value === void 0 ? void 0 : value.onChange) {
12897
12899
  value.onChange(e, v);
12898
12900
  }
@@ -12948,7 +12950,7 @@ class KolInputDate {
12948
12950
  "_tabIndex": [2, "_tab-index"],
12949
12951
  "_touched": [1540],
12950
12952
  "_type": [1],
12951
- "_value": [1],
12953
+ "_value": [1025],
12952
12954
  "state": [32]
12953
12955
  },
12954
12956
  "$listeners$": undefined,
@@ -13490,7 +13492,9 @@ class InputNumberController extends InputIconController {
13490
13492
  }
13491
13493
  onChange(event) {
13492
13494
  super.onChange(event);
13493
- this.component._value = event.target.value;
13495
+ if (!!event.target.value !== !!this.component._value) {
13496
+ this.component._value = event.target.value;
13497
+ }
13494
13498
  }
13495
13499
  validateMax(value) {
13496
13500
  this.validateIso8601('_max', value);
@@ -13723,7 +13727,7 @@ class KolInputNumber {
13723
13727
  "_tabIndex": [2, "_tab-index"],
13724
13728
  "_touched": [1540],
13725
13729
  "_type": [1],
13726
- "_value": [8],
13730
+ "_value": [1032],
13727
13731
  "state": [32]
13728
13732
  },
13729
13733
  "$listeners$": undefined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@public-ui/hydrate",
3
- "version": "1.4.2-rc.4",
3
+ "version": "1.4.2-rc.5",
4
4
  "license": "EUPL-1.2",
5
5
  "homepage": "https://public-ui.github.io",
6
6
  "repository": "https://github.com/public-ui/kolibri",
@@ -45,11 +45,11 @@
45
45
  "prepack": "rimraf dist/package.json"
46
46
  },
47
47
  "devDependencies": {
48
- "@public-ui/components": "1.4.2-rc.4",
48
+ "@public-ui/components": "1.4.2-rc.5",
49
49
  "rimraf": "4.3.0"
50
50
  },
51
51
  "peerDependencies": {
52
- "@public-ui/components": "1.4.2-rc.4"
52
+ "@public-ui/components": "1.4.2-rc.5"
53
53
  },
54
54
  "sideEffects": false,
55
55
  "type": "commonjs",