x-runtime-lib 0.6.37 → 0.6.39
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 +1 -1
- package/dist/types/element.d.ts +1 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -750,7 +750,7 @@ function oi(r, o) {
|
|
|
750
750
|
function c(d, y) {
|
|
751
751
|
if (y.ui) {
|
|
752
752
|
const b = ii(y);
|
|
753
|
-
if (y.ui === "strInput" && y.static || (y.ui === "switch" || y.ui === "select" || y.ui === "multiTypes") && !b)
|
|
753
|
+
if (y.ui === "strInput" && y.static || (y.ui === "switch" || y.ui === "select" || y.ui === "colorPicker" || y.ui === "multiTypes" || y.ui === "compSelect") && !b)
|
|
754
754
|
return;
|
|
755
755
|
d[y.key] = b;
|
|
756
756
|
} else
|
package/dist/types/element.d.ts
CHANGED
|
@@ -103,11 +103,6 @@ type ZPropCompSelect = {
|
|
|
103
103
|
readonly?: boolean;
|
|
104
104
|
default: string | undefined;
|
|
105
105
|
} & ZPropBase;
|
|
106
|
-
type ZPropSlotSelect = {
|
|
107
|
-
ui: 'slotSelect';
|
|
108
|
-
readonly?: boolean;
|
|
109
|
-
default: string | undefined;
|
|
110
|
-
} & ZPropBase;
|
|
111
106
|
export type ZProp = ({
|
|
112
107
|
array?: false;
|
|
113
108
|
} & ZPropBranch) | ({
|
|
@@ -153,9 +148,7 @@ export type ZProp = ({
|
|
|
153
148
|
} & ZPropCompSelect) | ({
|
|
154
149
|
array: true;
|
|
155
150
|
defaultArray: string[];
|
|
156
|
-
} & ZPropCompSelect)
|
|
157
|
-
array?: undefined;
|
|
158
|
-
} & ZPropSlotSelect);
|
|
151
|
+
} & ZPropCompSelect);
|
|
159
152
|
export type ZProps = {
|
|
160
153
|
[key: string]: ZProp[];
|
|
161
154
|
};
|