x-runtime-lib 0.6.23 → 0.6.24
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/index.js +1572 -1550
- package/dist/types/element.d.ts +6 -6
- package/package.json +1 -1
package/dist/types/element.d.ts
CHANGED
|
@@ -82,34 +82,34 @@ type ZPropNumInput = {
|
|
|
82
82
|
type ZPropSwitch = {
|
|
83
83
|
ui: 'switch';
|
|
84
84
|
readonly?: boolean;
|
|
85
|
-
default:
|
|
85
|
+
default: boolean | undefined;
|
|
86
86
|
} & ZPropBase;
|
|
87
87
|
type ZPropSelect = {
|
|
88
88
|
ui: 'select';
|
|
89
89
|
items: ZItem[];
|
|
90
90
|
readonly?: boolean;
|
|
91
|
-
default:
|
|
91
|
+
default: string | undefined;
|
|
92
92
|
} & ZPropBase;
|
|
93
93
|
type ZPropColorPicker = {
|
|
94
94
|
ui: 'colorPicker';
|
|
95
95
|
readonly?: boolean;
|
|
96
|
-
default:
|
|
96
|
+
default: string | undefined;
|
|
97
97
|
} & ZPropBase;
|
|
98
98
|
type ZPropMultiTypes = {
|
|
99
99
|
ui: 'multiTypes';
|
|
100
100
|
types: ZType[];
|
|
101
101
|
readonly?: boolean;
|
|
102
|
-
default:
|
|
102
|
+
default: string | undefined;
|
|
103
103
|
} & ZPropBase;
|
|
104
104
|
type ZPropCompSelect = {
|
|
105
105
|
ui: 'compSelect';
|
|
106
106
|
readonly?: boolean;
|
|
107
|
-
default:
|
|
107
|
+
default: string | undefined;
|
|
108
108
|
} & ZPropBase;
|
|
109
109
|
type ZPropSlotSelect = {
|
|
110
110
|
ui: 'slotSelect';
|
|
111
111
|
readonly?: boolean;
|
|
112
|
-
default:
|
|
112
|
+
default: string | undefined;
|
|
113
113
|
} & ZPropBase;
|
|
114
114
|
export type ZProp = ({
|
|
115
115
|
array?: false;
|