@eturnity/eturnity_reusable_components 8.16.9 → 8.19.0
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/package.json
CHANGED
@@ -513,9 +513,10 @@
|
|
513
513
|
default: '40px',
|
514
514
|
},
|
515
515
|
value: {
|
516
|
-
type: [String, Number],
|
517
516
|
required: true,
|
518
517
|
default: null,
|
518
|
+
validator: (val) =>
|
519
|
+
typeof val === 'string' || typeof val === 'number' || val === null,
|
519
520
|
},
|
520
521
|
clearInput: {
|
521
522
|
type: Boolean,
|