selectic 3.0.6 → 3.0.7
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.
- package/dist/selectic.common.js +2 -2
- package/dist/selectic.esm.js +2 -2
- package/package.json +1 -1
- package/src/Store.tsx +2 -2
package/dist/selectic.common.js
CHANGED
|
@@ -274,8 +274,8 @@ class SelecticStore {
|
|
|
274
274
|
* and ensure convertValue run with correct state */
|
|
275
275
|
assignObject(this.state, {
|
|
276
276
|
internalValue: this.convertTypeValue(value),
|
|
277
|
-
selectionIsExcluded: !!props.selectionIsExcluded,
|
|
278
|
-
disabled: !!props.disabled, /* XXX: !! is needed to copy value and not proxy reference */
|
|
277
|
+
selectionIsExcluded: !!this.props.selectionIsExcluded,
|
|
278
|
+
disabled: !!this.props.disabled, /* XXX: !! is needed to copy value and not proxy reference */
|
|
279
279
|
});
|
|
280
280
|
this.checkHideFilter();
|
|
281
281
|
if (this.props.texts) {
|
package/dist/selectic.esm.js
CHANGED
|
@@ -270,8 +270,8 @@ class SelecticStore {
|
|
|
270
270
|
* and ensure convertValue run with correct state */
|
|
271
271
|
assignObject(this.state, {
|
|
272
272
|
internalValue: this.convertTypeValue(value),
|
|
273
|
-
selectionIsExcluded: !!props.selectionIsExcluded,
|
|
274
|
-
disabled: !!props.disabled, /* XXX: !! is needed to copy value and not proxy reference */
|
|
273
|
+
selectionIsExcluded: !!this.props.selectionIsExcluded,
|
|
274
|
+
disabled: !!this.props.disabled, /* XXX: !! is needed to copy value and not proxy reference */
|
|
275
275
|
});
|
|
276
276
|
this.checkHideFilter();
|
|
277
277
|
if (this.props.texts) {
|
package/package.json
CHANGED
package/src/Store.tsx
CHANGED
|
@@ -651,8 +651,8 @@ export default class SelecticStore {
|
|
|
651
651
|
* and ensure convertValue run with correct state */
|
|
652
652
|
assignObject(this.state, {
|
|
653
653
|
internalValue: this.convertTypeValue(value),
|
|
654
|
-
selectionIsExcluded: !!props.selectionIsExcluded,
|
|
655
|
-
disabled: !!props.disabled, /* XXX: !! is needed to copy value and not proxy reference */
|
|
654
|
+
selectionIsExcluded: !!this.props.selectionIsExcluded,
|
|
655
|
+
disabled: !!this.props.disabled, /* XXX: !! is needed to copy value and not proxy reference */
|
|
656
656
|
});
|
|
657
657
|
|
|
658
658
|
this.checkHideFilter();
|