x-runtime-lib 0.8.116 → 0.8.118

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.
@@ -84,13 +84,18 @@ type ZPropertyMultiTypes = {
84
84
  readonly?: boolean;
85
85
  default: string;
86
86
  } & ZPropertyBase;
87
- type ZPropertyCompSelect = {
88
- ui: 'compSelect';
87
+ type ZPropertySelectComp = {
88
+ ui: 'selectComp';
89
89
  readonly?: boolean;
90
90
  default: string | undefined;
91
91
  } & ZPropertyBase;
92
- type ZPropertySlotSelect = {
93
- ui: 'slotSelect';
92
+ type ZPropertySelectSlot = {
93
+ ui: 'selectSlot';
94
+ readonly?: boolean;
95
+ default: string | undefined;
96
+ } & ZPropertyBase;
97
+ type ZPropertySelectAdaptSlot = {
98
+ ui: 'selectAdaptSlot';
94
99
  readonly?: boolean;
95
100
  default: string | undefined;
96
101
  } & ZPropertyBase;
@@ -141,15 +146,20 @@ export type ZProperty = ({
141
146
  defaultArray: string[];
142
147
  } & ZPropertyMultiTypes) | ({
143
148
  array?: false;
144
- } & ZPropertyCompSelect) | ({
149
+ } & ZPropertySelectComp) | ({
150
+ array: true;
151
+ defaultArray: string[];
152
+ } & ZPropertySelectComp) | ({
153
+ array?: false;
154
+ } & ZPropertySelectSlot) | ({
145
155
  array: true;
146
156
  defaultArray: string[];
147
- } & ZPropertyCompSelect) | ({
157
+ } & ZPropertySelectSlot) | ({
148
158
  array?: false;
149
- } & ZPropertySlotSelect) | ({
159
+ } & ZPropertySelectAdaptSlot) | ({
150
160
  array: true;
151
161
  defaultArray: string[];
152
- } & ZPropertySlotSelect);
162
+ } & ZPropertySelectAdaptSlot);
153
163
  export type ZMethod = {
154
164
  key: string;
155
165
  name: string;