x-runtime-lib 0.6.21 → 0.6.23
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 +6 -6
- package/dist/types/data.d.ts +1 -1
- package/dist/types/element.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6913,7 +6913,7 @@ const yi = {
|
|
|
6913
6913
|
key: "id",
|
|
6914
6914
|
name: "x-runtime-lib.comp",
|
|
6915
6915
|
ui: "compSelect",
|
|
6916
|
-
default:
|
|
6916
|
+
default: void 0
|
|
6917
6917
|
}
|
|
6918
6918
|
]
|
|
6919
6919
|
}, Op = {
|
|
@@ -7235,7 +7235,7 @@ const _i = {
|
|
|
7235
7235
|
key: "comp",
|
|
7236
7236
|
name: "x-runtime-lib.comp",
|
|
7237
7237
|
ui: "compSelect",
|
|
7238
|
-
default:
|
|
7238
|
+
default: void 0
|
|
7239
7239
|
}
|
|
7240
7240
|
],
|
|
7241
7241
|
array: !0,
|
|
@@ -7714,25 +7714,25 @@ const Si = {
|
|
|
7714
7714
|
key: "append",
|
|
7715
7715
|
name: "x-runtime-lib.append",
|
|
7716
7716
|
ui: "compSelect",
|
|
7717
|
-
default:
|
|
7717
|
+
default: void 0
|
|
7718
7718
|
},
|
|
7719
7719
|
{
|
|
7720
7720
|
key: "appendInner",
|
|
7721
7721
|
name: "x-runtime-lib.appendInner",
|
|
7722
7722
|
ui: "compSelect",
|
|
7723
|
-
default:
|
|
7723
|
+
default: void 0
|
|
7724
7724
|
},
|
|
7725
7725
|
{
|
|
7726
7726
|
key: "prepend",
|
|
7727
7727
|
name: "x-runtime-lib.prepend",
|
|
7728
7728
|
ui: "compSelect",
|
|
7729
|
-
default:
|
|
7729
|
+
default: void 0
|
|
7730
7730
|
},
|
|
7731
7731
|
{
|
|
7732
7732
|
key: "prependInner",
|
|
7733
7733
|
name: "x-runtime-lib.prependInner",
|
|
7734
7734
|
ui: "compSelect",
|
|
7735
|
-
default:
|
|
7735
|
+
default: void 0
|
|
7736
7736
|
}
|
|
7737
7737
|
]
|
|
7738
7738
|
}, Vp = {
|
package/dist/types/data.d.ts
CHANGED
package/dist/types/element.d.ts
CHANGED
|
@@ -104,12 +104,12 @@ type ZPropMultiTypes = {
|
|
|
104
104
|
type ZPropCompSelect = {
|
|
105
105
|
ui: 'compSelect';
|
|
106
106
|
readonly?: boolean;
|
|
107
|
-
default: string;
|
|
107
|
+
default: undefined | string;
|
|
108
108
|
} & ZPropBase;
|
|
109
109
|
type ZPropSlotSelect = {
|
|
110
110
|
ui: 'slotSelect';
|
|
111
111
|
readonly?: boolean;
|
|
112
|
-
default: string;
|
|
112
|
+
default: undefined | string;
|
|
113
113
|
} & ZPropBase;
|
|
114
114
|
export type ZProp = ({
|
|
115
115
|
array?: false;
|