@luzmo/lucero 0.0.33 → 0.0.35
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/components/options/index.cjs +27 -27
- package/components/options/index.js +151 -150
- package/components/options/options.d.ts +1 -1
- package/components/select/index.cjs +24 -24
- package/components/select/index.js +135 -128
- package/components/select/select.d.ts +1 -1
- package/custom-elements.json +1 -1
- package/package.json +1 -1
|
@@ -115,7 +115,7 @@ export declare class LuzmoSelect extends LuzmoSelect_base {
|
|
|
115
115
|
* Display as a quiet picker
|
|
116
116
|
*/
|
|
117
117
|
quiet: boolean;
|
|
118
|
-
value: string[];
|
|
118
|
+
value: (string | number | null)[];
|
|
119
119
|
options: any[];
|
|
120
120
|
get selfManageFocusElement(): boolean;
|
|
121
121
|
selects: undefined | 'single' | 'multiple';
|