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.
@@ -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) {
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "selectic",
3
- "version": "3.0.6",
3
+ "version": "3.0.7",
4
4
  "description": "Smart Select for VueJS 3.x",
5
5
  "main": "dist/selectic.common.js",
6
6
  "module": "dist/selectic.esm.js",
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();