yuyeon 0.3.2-rc.8 → 0.3.2-rc.9

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.
Files changed (97) hide show
  1. package/dist/yuyeon.js +1564 -1540
  2. package/dist/yuyeon.umd.cjs +3 -3
  3. package/lib/components/table/YDataTable.js +13 -12
  4. package/lib/components/table/YDataTable.js.map +1 -1
  5. package/lib/components/table/YDataTableBody.js +2 -2
  6. package/lib/components/table/YDataTableBody.js.map +1 -1
  7. package/lib/components/table/YDataTableControl.js +1 -1
  8. package/lib/components/table/YDataTableControl.js.map +1 -1
  9. package/lib/components/table/YDataTableHead.js +3 -3
  10. package/lib/components/table/YDataTableHead.js.map +1 -1
  11. package/lib/components/table/YDataTableLayer.js +11 -4
  12. package/lib/components/table/YDataTableLayer.js.map +1 -1
  13. package/lib/components/table/YDataTableLayerRow.vue +145 -0
  14. package/lib/components/table/YDataTableRow.js +2 -2
  15. package/lib/components/table/YDataTableRow.js.map +1 -1
  16. package/lib/components/table/YDataTableServer.js +15 -14
  17. package/lib/components/table/YDataTableServer.js.map +1 -1
  18. package/lib/components/table/YTable.js +8 -3
  19. package/lib/components/table/YTable.js.map +1 -1
  20. package/lib/components/table/composables/header.js +127 -0
  21. package/lib/components/table/composables/header.js.map +1 -0
  22. package/lib/components/table/composables/items.js +52 -0
  23. package/lib/components/table/composables/items.js.map +1 -0
  24. package/lib/components/table/composables/measure.js +55 -0
  25. package/lib/components/table/composables/measure.js.map +1 -0
  26. package/lib/components/table/composables/options.js +33 -0
  27. package/lib/components/table/composables/options.js.map +1 -0
  28. package/lib/components/table/composables/pagination.js +99 -0
  29. package/lib/components/table/composables/pagination.js.map +1 -0
  30. package/lib/components/table/composables/provides.js +3 -0
  31. package/lib/components/table/composables/provides.js.map +1 -0
  32. package/lib/components/table/composables/selection.js +196 -0
  33. package/lib/components/table/composables/selection.js.map +1 -0
  34. package/lib/components/table/composables/sorted-items.js +50 -0
  35. package/lib/components/table/composables/sorted-items.js.map +1 -0
  36. package/lib/components/table/composables/sorting.js +73 -0
  37. package/lib/components/table/composables/sorting.js.map +1 -0
  38. package/lib/components/table/composibles/measure.js +21 -5
  39. package/lib/components/table/composibles/measure.js.map +1 -1
  40. package/lib/components/table/types/index.js.map +1 -1
  41. package/lib/components/table/types/item.js.map +1 -1
  42. package/package.json +1 -1
  43. package/types/abstract/items.d.ts +4 -4
  44. package/types/components/badge/YBadge.d.ts +4 -4
  45. package/types/components/button/YButton.d.ts +8 -8
  46. package/types/components/chip/YChip.d.ts +1 -1
  47. package/types/components/date-picker/YDateCalendar.d.ts +1 -1
  48. package/types/components/date-picker/YDatePicker.d.ts +1 -1
  49. package/types/components/date-picker/YDatePickerControl.d.ts +5 -5
  50. package/types/components/dialog/YDialog.d.ts +58 -58
  51. package/types/components/dropdown/YDropdown.d.ts +55 -55
  52. package/types/components/field-input/YFieldInput.d.ts +13 -13
  53. package/types/components/hover/YHover.d.ts +3 -3
  54. package/types/components/icon/YIcon.d.ts +2 -2
  55. package/types/components/img/YImg.d.ts +5 -5
  56. package/types/components/input/YInput.d.ts +9 -9
  57. package/types/components/ip-field/YIpv4Field.d.ts +1 -1
  58. package/types/components/layer/YLayer.d.ts +26 -26
  59. package/types/components/layer/content.d.ts +1 -1
  60. package/types/components/layer/scroll-strategies.d.ts +1 -1
  61. package/types/components/list/YListItem.d.ts +1 -1
  62. package/types/components/menu/YMenu.d.ts +9 -9
  63. package/types/components/pagination/YPagination.d.ts +5 -5
  64. package/types/components/select/YSelect.d.ts +62 -62
  65. package/types/components/snackbar/YSnackbar.d.ts +33 -33
  66. package/types/components/switch/YSwitch.d.ts +10 -10
  67. package/types/components/tab/YTab.d.ts +12 -12
  68. package/types/components/tab/YTabs.d.ts +4 -4
  69. package/types/components/table/YDataTable.d.ts +15 -15
  70. package/types/components/table/YDataTableBody.d.ts +2 -2
  71. package/types/components/table/YDataTableControl.d.ts +2 -2
  72. package/types/components/table/YDataTableHead.d.ts +2 -2
  73. package/types/components/table/YDataTableLayer.d.ts +4 -1
  74. package/types/components/table/YDataTableServer.d.ts +18 -18
  75. package/types/components/table/YTable.d.ts +4 -4
  76. package/types/components/table/composables/header.d.ts +207 -0
  77. package/types/components/table/composables/items.d.ts +55 -0
  78. package/types/components/table/composables/measure.d.ts +8 -0
  79. package/types/components/table/composables/options.d.ts +11 -0
  80. package/types/components/table/composables/pagination.d.ts +81 -0
  81. package/types/components/table/composables/provides.d.ts +15 -0
  82. package/types/components/table/composables/selection.d.ts +82 -0
  83. package/types/components/table/composables/sorted-items.d.ts +7 -0
  84. package/types/components/table/composables/sorting.d.ts +62 -0
  85. package/types/components/table/types/index.d.ts +1 -1
  86. package/types/components/table/types/item.d.ts +1 -1
  87. package/types/components/textarea/YTextarea.d.ts +18 -18
  88. package/types/components/tooltip/YTooltip.d.ts +46 -46
  89. package/types/components/tree-view/YTreeView.d.ts +4 -4
  90. package/types/components/tree-view/YTreeViewNode.d.ts +8 -8
  91. package/types/composables/choice.d.ts +1 -1
  92. package/types/composables/coordinate/index.d.ts +8 -8
  93. package/types/composables/form.d.ts +2 -2
  94. package/types/composables/icon.d.ts +2 -2
  95. package/types/composables/list-items.d.ts +10 -10
  96. package/types/composables/transition.d.ts +1 -1
  97. package/types/composables/validation.d.ts +3 -3
@@ -16,10 +16,10 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
16
16
  modelValue?: unknown;
17
17
  variation?: unknown;
18
18
  color?: unknown;
19
- disabled?: unknown;
20
19
  base?: unknown;
21
20
  width?: unknown;
22
21
  height?: unknown;
22
+ disabled?: unknown;
23
23
  theme?: unknown;
24
24
  closeDelay?: unknown;
25
25
  openDelay?: unknown;
@@ -53,7 +53,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
53
53
  is?: import('vue').Component | undefined;
54
54
  })>;
55
55
  default: string;
56
- }, "type" | "default"> & {
56
+ }, "default" | "type"> & {
57
57
  type: PropType<NonNullable<string | (import('vue').TransitionProps & {
58
58
  is?: import('vue').Component | undefined;
59
59
  })>>;
@@ -65,14 +65,14 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
65
65
  is?: import('vue').Component | undefined;
66
66
  })>;
67
67
  default: string;
68
- }, "type" | "default"> & {
68
+ }, "default" | "type"> & {
69
69
  type: PropType<NonNullable<string | (import('vue').TransitionProps & {
70
70
  is?: import('vue').Component | undefined;
71
71
  })>>;
72
72
  default: NonNullable<string | (import('vue').TransitionProps & {
73
73
  is?: import('vue').Component | undefined;
74
74
  })>;
75
- }, "type" | "default"> & {
75
+ }, "default" | "type"> & {
76
76
  type: PropType<unknown extends Defaults["transition"] ? NonNullable<string | (import('vue').TransitionProps & {
77
77
  is?: import('vue').Component | undefined;
78
78
  })> : NonNullable<NonNullable<string | (import('vue').TransitionProps & {
@@ -90,7 +90,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
90
90
  } : Omit<{
91
91
  type: PropType<any[]>;
92
92
  default: () => never[];
93
- }, "type" | "default"> & {
93
+ }, "default" | "type"> & {
94
94
  type: PropType<unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"]>;
95
95
  default: unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"];
96
96
  };
@@ -100,7 +100,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
100
100
  } : Omit<{
101
101
  type: PropType<string>;
102
102
  default: string;
103
- }, "type" | "default"> & {
103
+ }, "default" | "type"> & {
104
104
  type: PropType<unknown extends Defaults["itemKey"] ? string : string | Defaults["itemKey"]>;
105
105
  default: unknown extends Defaults["itemKey"] ? string : string | Defaults["itemKey"];
106
106
  };
@@ -110,7 +110,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
110
110
  } : Omit<{
111
111
  type: PropType<string>;
112
112
  default: string;
113
- }, "type" | "default"> & {
113
+ }, "default" | "type"> & {
114
114
  type: PropType<unknown extends Defaults["itemText"] ? string : string | Defaults["itemText"]>;
115
115
  default: unknown extends Defaults["itemText"] ? string : string | Defaults["itemText"];
116
116
  };
@@ -120,7 +120,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
120
120
  } : Omit<{
121
121
  type: PropType<string | boolean>;
122
122
  default: string;
123
- }, "type" | "default"> & {
123
+ }, "default" | "type"> & {
124
124
  type: PropType<unknown extends Defaults["itemChildren"] ? string | boolean : NonNullable<string | boolean> | Defaults["itemChildren"]>;
125
125
  default: unknown extends Defaults["itemChildren"] ? string | boolean : NonNullable<string | boolean> | Defaults["itemChildren"];
126
126
  };
@@ -130,7 +130,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
130
130
  } : Omit<{
131
131
  type: PropType<YIconIconProp>;
132
132
  default: string;
133
- }, "type" | "default"> & {
133
+ }, "default" | "type"> & {
134
134
  type: PropType<unknown extends Defaults["dropdownIcon"] ? YIconIconProp : Defaults["dropdownIcon"] | NonNullable<YIconIconProp>>;
135
135
  default: unknown extends Defaults["dropdownIcon"] ? YIconIconProp : Defaults["dropdownIcon"] | NonNullable<YIconIconProp>;
136
136
  };
@@ -140,7 +140,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
140
140
  } : Omit<{
141
141
  type: PropType<"top" | "bottom" | "start" | "end" | "center">;
142
142
  default: string;
143
- }, "type" | "default"> & {
143
+ }, "default" | "type"> & {
144
144
  type: PropType<unknown extends Defaults["align"] ? "top" | "bottom" | "start" | "end" | "center" : NonNullable<"top" | "bottom" | "start" | "end" | "center"> | Defaults["align"]>;
145
145
  default: unknown extends Defaults["align"] ? "top" | "bottom" | "start" | "end" | "center" : NonNullable<"top" | "bottom" | "start" | "end" | "center"> | Defaults["align"];
146
146
  };
@@ -148,23 +148,23 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
148
148
  type: PropType<string | number | number[]>;
149
149
  } : Omit<{
150
150
  type: PropType<string | number | number[]>;
151
- }, "type" | "default"> & {
151
+ }, "default" | "type"> & {
152
152
  type: PropType<unknown extends Defaults["offset"] ? string | number | number[] : NonNullable<string | number | number[]> | Defaults["offset"]>;
153
153
  default: unknown extends Defaults["offset"] ? string | number | number[] : NonNullable<string | number | number[]> | Defaults["offset"];
154
154
  };
155
155
  position: unknown extends Defaults["position"] ? Omit<{
156
156
  type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
157
157
  default: string;
158
- }, "type" | "default"> & {
158
+ }, "default" | "type"> & {
159
159
  type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
160
160
  default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
161
161
  } : Omit<Omit<{
162
162
  type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
163
163
  default: string;
164
- }, "type" | "default"> & {
164
+ }, "default" | "type"> & {
165
165
  type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
166
166
  default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
167
- }, "type" | "default"> & {
167
+ }, "default" | "type"> & {
168
168
  type: PropType<unknown extends Defaults["position"] ? NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right"> : Defaults["position"] | NonNullable<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>>;
169
169
  default: unknown extends Defaults["position"] ? NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right"> : Defaults["position"] | NonNullable<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
170
170
  };
@@ -174,17 +174,17 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
174
174
  } : Omit<{
175
175
  type: StringConstructor;
176
176
  default: string;
177
- }, "type" | "default"> & {
177
+ }, "default" | "type"> & {
178
178
  type: PropType<unknown extends Defaults["origin"] ? string : string | Defaults["origin"]>;
179
179
  default: unknown extends Defaults["origin"] ? string : string | Defaults["origin"];
180
180
  };
181
181
  viewportMargin: unknown extends Defaults["viewportMargin"] ? {
182
- type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
182
+ type: (NumberConstructor | ArrayConstructor | StringConstructor)[];
183
183
  default: number;
184
184
  } : Omit<{
185
- type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
185
+ type: (NumberConstructor | ArrayConstructor | StringConstructor)[];
186
186
  default: number;
187
- }, "type" | "default"> & {
187
+ }, "default" | "type"> & {
188
188
  type: PropType<unknown extends Defaults["viewportMargin"] ? string | number | unknown[] : NonNullable<string | number | unknown[]> | Defaults["viewportMargin"]>;
189
189
  default: unknown extends Defaults["viewportMargin"] ? string | number | unknown[] : NonNullable<string | number | unknown[]> | Defaults["viewportMargin"];
190
190
  };
@@ -200,16 +200,6 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
200
200
  type: PropType<unknown extends Defaults["color"] ? string : string | Defaults["color"]>;
201
201
  default: unknown extends Defaults["color"] ? string : string | Defaults["color"];
202
202
  };
203
- disabled: unknown extends Defaults["disabled"] ? {
204
- type: PropType<boolean>;
205
- default: boolean;
206
- } : Omit<{
207
- type: PropType<boolean>;
208
- default: boolean;
209
- }, "type" | "default"> & {
210
- type: PropType<unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"]>;
211
- default: unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"];
212
- };
213
203
  base: unknown extends Defaults["base"] ? PropType<import('../layer/base').BaseType> : {
214
204
  type: PropType<unknown extends Defaults["base"] ? import('../layer/base').BaseType : NonNullable<import('../layer/base').BaseType> | Defaults["base"]>;
215
205
  default: unknown extends Defaults["base"] ? import('../layer/base').BaseType : NonNullable<import('../layer/base').BaseType> | Defaults["base"];
@@ -222,6 +212,16 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
222
212
  type: PropType<unknown extends Defaults["height"] ? string | number : NonNullable<string | number> | Defaults["height"]>;
223
213
  default: unknown extends Defaults["height"] ? string | number : NonNullable<string | number> | Defaults["height"];
224
214
  };
215
+ disabled: unknown extends Defaults["disabled"] ? {
216
+ type: PropType<boolean>;
217
+ default: boolean;
218
+ } : Omit<{
219
+ type: PropType<boolean>;
220
+ default: boolean;
221
+ }, "default" | "type"> & {
222
+ type: PropType<unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"]>;
223
+ default: unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"];
224
+ };
225
225
  theme: unknown extends Defaults["theme"] ? PropType<string> : {
226
226
  type: PropType<unknown extends Defaults["theme"] ? string : string | Defaults["theme"]>;
227
227
  default: unknown extends Defaults["theme"] ? string : string | Defaults["theme"];
@@ -232,7 +232,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
232
232
  } : Omit<{
233
233
  type: PropType<number>;
234
234
  default: number;
235
- }, "type" | "default"> & {
235
+ }, "default" | "type"> & {
236
236
  type: PropType<unknown extends Defaults["closeDelay"] ? number : number | Defaults["closeDelay"]>;
237
237
  default: unknown extends Defaults["closeDelay"] ? number : number | Defaults["closeDelay"];
238
238
  };
@@ -242,7 +242,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
242
242
  } : Omit<{
243
243
  type: PropType<number>;
244
244
  default: number;
245
- }, "type" | "default"> & {
245
+ }, "default" | "type"> & {
246
246
  type: PropType<unknown extends Defaults["openDelay"] ? number : number | Defaults["openDelay"]>;
247
247
  default: unknown extends Defaults["openDelay"] ? number : number | Defaults["openDelay"];
248
248
  };
@@ -268,7 +268,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
268
268
  } : Omit<{
269
269
  type: PropType<string | number>;
270
270
  default: number;
271
- }, "type" | "default"> & {
271
+ }, "default" | "type"> & {
272
272
  type: PropType<unknown extends Defaults["zIndex"] ? string | number : NonNullable<string | number> | Defaults["zIndex"]>;
273
273
  default: unknown extends Defaults["zIndex"] ? string | number : NonNullable<string | number> | Defaults["zIndex"];
274
274
  };
@@ -280,7 +280,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
280
280
  type: PropType<boolean>;
281
281
  } : Omit<{
282
282
  type: PropType<boolean>;
283
- }, "type" | "default"> & {
283
+ }, "default" | "type"> & {
284
284
  type: PropType<unknown extends Defaults["closeClickContent"] ? boolean : boolean | Defaults["closeClickContent"]>;
285
285
  default: unknown extends Defaults["closeClickContent"] ? boolean : boolean | Defaults["closeClickContent"];
286
286
  };
@@ -288,17 +288,17 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
288
288
  type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
289
289
  default: string;
290
290
  validator: (val: any) => boolean;
291
- }, "type" | "default"> & {
291
+ }, "default" | "type"> & {
292
292
  type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
293
293
  default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
294
294
  } : Omit<Omit<{
295
295
  type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
296
296
  default: string;
297
297
  validator: (val: any) => boolean;
298
- }, "type" | "default"> & {
298
+ }, "default" | "type"> & {
299
299
  type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
300
300
  default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
301
- }, "type" | "default"> & {
301
+ }, "default" | "type"> & {
302
302
  type: PropType<unknown extends Defaults["scrollStrategy"] ? NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition"> : NonNullable<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">> | Defaults["scrollStrategy"]>;
303
303
  default: unknown extends Defaults["scrollStrategy"] ? NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition"> : NonNullable<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">> | Defaults["scrollStrategy"];
304
304
  };
@@ -306,7 +306,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
306
306
  type: PropType<boolean>;
307
307
  } : Omit<{
308
308
  type: PropType<boolean>;
309
- }, "type" | "default"> & {
309
+ }, "default" | "type"> & {
310
310
  type: PropType<unknown extends Defaults["scrim"] ? boolean : boolean | Defaults["scrim"]>;
311
311
  default: unknown extends Defaults["scrim"] ? boolean : boolean | Defaults["scrim"];
312
312
  };
@@ -314,7 +314,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
314
314
  type: PropType<number>;
315
315
  } : Omit<{
316
316
  type: PropType<number>;
317
- }, "type" | "default"> & {
317
+ }, "default" | "type"> & {
318
318
  type: PropType<unknown extends Defaults["scrimOpacity"] ? number : number | Defaults["scrimOpacity"]>;
319
319
  default: unknown extends Defaults["scrimOpacity"] ? number : number | Defaults["scrimOpacity"];
320
320
  };
@@ -322,7 +322,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
322
322
  type: PropType<boolean>;
323
323
  } : Omit<{
324
324
  type: PropType<boolean>;
325
- }, "type" | "default"> & {
325
+ }, "default" | "type"> & {
326
326
  type: PropType<unknown extends Defaults["eager"] ? boolean : boolean | Defaults["eager"]>;
327
327
  default: unknown extends Defaults["eager"] ? boolean : boolean | Defaults["eager"];
328
328
  };
@@ -330,7 +330,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
330
330
  type: PropType<string | string[] | Record<string, any>>;
331
331
  } : Omit<{
332
332
  type: PropType<string | string[] | Record<string, any>>;
333
- }, "type" | "default"> & {
333
+ }, "default" | "type"> & {
334
334
  type: PropType<unknown extends Defaults["classes"] ? string | string[] | Record<string, any> : NonNullable<string | string[] | Record<string, any>> | Defaults["classes"]>;
335
335
  default: unknown extends Defaults["classes"] ? string | string[] | Record<string, any> : NonNullable<string | string[] | Record<string, any>> | Defaults["classes"];
336
336
  };
@@ -338,7 +338,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
338
338
  type: PropType<string | string[] | Record<string, any>>;
339
339
  } : Omit<{
340
340
  type: PropType<string | string[] | Record<string, any>>;
341
- }, "type" | "default"> & {
341
+ }, "default" | "type"> & {
342
342
  type: PropType<unknown extends Defaults["contentClasses"] ? string | string[] | Record<string, any> : NonNullable<string | string[] | Record<string, any>> | Defaults["contentClasses"]>;
343
343
  default: unknown extends Defaults["contentClasses"] ? string | string[] | Record<string, any> : NonNullable<string | string[] | Record<string, any>> | Defaults["contentClasses"];
344
344
  };
@@ -346,7 +346,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
346
346
  type: PropType<boolean>;
347
347
  } : Omit<{
348
348
  type: PropType<boolean>;
349
- }, "type" | "default"> & {
349
+ }, "default" | "type"> & {
350
350
  type: PropType<unknown extends Defaults["closeClickScrim"] ? boolean : boolean | Defaults["closeClickScrim"]>;
351
351
  default: unknown extends Defaults["closeClickScrim"] ? boolean : boolean | Defaults["closeClickScrim"];
352
352
  };
@@ -356,7 +356,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
356
356
  } : Omit<{
357
357
  type: PropType<import('vue').CSSProperties>;
358
358
  default: () => void;
359
- }, "type" | "default"> & {
359
+ }, "default" | "type"> & {
360
360
  type: PropType<unknown extends Defaults["contentStyles"] ? import('vue').CSSProperties : import('vue').CSSProperties | Defaults["contentStyles"]>;
361
361
  default: unknown extends Defaults["contentStyles"] ? import('vue').CSSProperties : import('vue').CSSProperties | Defaults["contentStyles"];
362
362
  };
@@ -364,7 +364,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
364
364
  type: PropType<boolean>;
365
365
  } : Omit<{
366
366
  type: PropType<boolean>;
367
- }, "type" | "default"> & {
367
+ }, "default" | "type"> & {
368
368
  type: PropType<unknown extends Defaults["maximized"] ? boolean : boolean | Defaults["maximized"]>;
369
369
  default: unknown extends Defaults["maximized"] ? boolean : boolean | Defaults["maximized"];
370
370
  };
@@ -374,7 +374,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
374
374
  } : Omit<{
375
375
  type: PropType<boolean>;
376
376
  default: boolean;
377
- }, "type" | "default"> & {
377
+ }, "default" | "type"> & {
378
378
  type: PropType<unknown extends Defaults["openOnHover"] ? boolean : boolean | Defaults["openOnHover"]>;
379
379
  default: unknown extends Defaults["openOnHover"] ? boolean : boolean | Defaults["openOnHover"];
380
380
  };
@@ -392,7 +392,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
392
392
  } : Omit<{
393
393
  type: PropType<boolean>;
394
394
  default: boolean;
395
- }, "type" | "default"> & {
395
+ }, "default" | "type"> & {
396
396
  type: PropType<unknown extends Defaults["preventClip"] ? boolean : boolean | Defaults["preventClip"]>;
397
397
  default: unknown extends Defaults["preventClip"] ? boolean : boolean | Defaults["preventClip"];
398
398
  };
@@ -404,7 +404,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
404
404
  type: PropType<string | string[] | Record<string, any>>;
405
405
  } : Omit<{
406
406
  type: PropType<string | string[] | Record<string, any>>;
407
- }, "type" | "default"> & {
407
+ }, "default" | "type"> & {
408
408
  type: PropType<unknown extends Defaults["menuClasses"] ? string | string[] | Record<string, any> : NonNullable<string | string[] | Record<string, any>> | Defaults["menuClasses"]>;
409
409
  default: unknown extends Defaults["menuClasses"] ? string | string[] | Record<string, any> : NonNullable<string | string[] | Record<string, any>> | Defaults["menuClasses"];
410
410
  };
@@ -414,7 +414,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
414
414
  } : Omit<{
415
415
  type: PropType<boolean>;
416
416
  default: boolean;
417
- }, "type" | "default"> & {
417
+ }, "default" | "type"> & {
418
418
  type: PropType<unknown extends Defaults["openOnClickBase"] ? boolean : boolean | Defaults["openOnClickBase"]>;
419
419
  default: unknown extends Defaults["openOnClickBase"] ? boolean : boolean | Defaults["openOnClickBase"];
420
420
  };
@@ -424,7 +424,7 @@ export declare const pressYDropdownPropsOptions: <Defaults extends {
424
424
  } : Omit<{
425
425
  type: (BooleanConstructor | FunctionConstructor)[];
426
426
  default: undefined;
427
- }, "type" | "default"> & {
427
+ }, "default" | "type"> & {
428
428
  type: PropType<unknown extends Defaults["closeCondition"] ? boolean | Function : Defaults["closeCondition"] | NonNullable<boolean | Function>>;
429
429
  default: unknown extends Defaults["closeCondition"] ? boolean | Function : Defaults["closeCondition"] | NonNullable<boolean | Function>;
430
430
  };
@@ -435,7 +435,7 @@ export declare const YDropdown: import('vue').DefineComponent<{
435
435
  is?: import('vue').Component | undefined;
436
436
  })>;
437
437
  default: string;
438
- }, "type" | "default"> & {
438
+ }, "default" | "type"> & {
439
439
  type: PropType<NonNullable<string | (import('vue').TransitionProps & {
440
440
  is?: import('vue').Component | undefined;
441
441
  })>>;
@@ -473,7 +473,7 @@ export declare const YDropdown: import('vue').DefineComponent<{
473
473
  position: Omit<{
474
474
  type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
475
475
  default: string;
476
- }, "type" | "default"> & {
476
+ }, "default" | "type"> & {
477
477
  type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
478
478
  default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
479
479
  };
@@ -482,19 +482,19 @@ export declare const YDropdown: import('vue').DefineComponent<{
482
482
  default: string;
483
483
  };
484
484
  viewportMargin: {
485
- type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
485
+ type: (NumberConstructor | ArrayConstructor | StringConstructor)[];
486
486
  default: number;
487
487
  };
488
488
  modelValue: PropType<boolean>;
489
489
  variation: PropType<string>;
490
490
  color: PropType<string>;
491
+ base: PropType<import('../layer/base').BaseType>;
492
+ width: PropType<string | number>;
493
+ height: PropType<string | number>;
491
494
  disabled: {
492
495
  type: PropType<boolean>;
493
496
  default: boolean;
494
497
  };
495
- base: PropType<import('../layer/base').BaseType>;
496
- width: PropType<string | number>;
497
- height: PropType<string | number>;
498
498
  theme: PropType<string>;
499
499
  closeDelay: {
500
500
  type: PropType<number>;
@@ -520,7 +520,7 @@ export declare const YDropdown: import('vue').DefineComponent<{
520
520
  type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
521
521
  default: string;
522
522
  validator: (val: any) => boolean;
523
- }, "type" | "default"> & {
523
+ }, "default" | "type"> & {
524
524
  type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
525
525
  default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
526
526
  };
@@ -62,7 +62,7 @@ export declare const pressYFieldInputPropsOptions: <Defaults extends {
62
62
  } : Omit<{
63
63
  type: PropType<"error" | "warning" | "success" | undefined>;
64
64
  validator(value: string): boolean;
65
- }, "type" | "default"> & {
65
+ }, "default" | "type"> & {
66
66
  type: PropType<unknown extends Defaults["status"] ? "error" | "warning" | "success" | undefined : NonNullable<"error" | "warning" | "success" | undefined> | Defaults["status"]>;
67
67
  default: unknown extends Defaults["status"] ? "error" | "warning" | "success" | undefined : NonNullable<"error" | "warning" | "success" | undefined> | Defaults["status"];
68
68
  };
@@ -78,7 +78,7 @@ export declare const pressYFieldInputPropsOptions: <Defaults extends {
78
78
  type: PropType<string>;
79
79
  } : Omit<{
80
80
  type: PropType<string>;
81
- }, "type" | "default"> & {
81
+ }, "default" | "type"> & {
82
82
  type: PropType<unknown extends Defaults["validateOn"] ? string : string | Defaults["validateOn"]>;
83
83
  default: unknown extends Defaults["validateOn"] ? string : string | Defaults["validateOn"];
84
84
  };
@@ -92,7 +92,7 @@ export declare const pressYFieldInputPropsOptions: <Defaults extends {
92
92
  } : Omit<{
93
93
  type: PropType<string | number>;
94
94
  default: number;
95
- }, "type" | "default"> & {
95
+ }, "default" | "type"> & {
96
96
  type: PropType<unknown extends Defaults["maxErrors"] ? string | number : NonNullable<string | number> | Defaults["maxErrors"]>;
97
97
  default: unknown extends Defaults["maxErrors"] ? string | number : NonNullable<string | number> | Defaults["maxErrors"];
98
98
  };
@@ -104,7 +104,7 @@ export declare const pressYFieldInputPropsOptions: <Defaults extends {
104
104
  type: PropType<string | number>;
105
105
  } : Omit<{
106
106
  type: PropType<string | number>;
107
- }, "type" | "default"> & {
107
+ }, "default" | "type"> & {
108
108
  type: PropType<unknown extends Defaults["width"] ? string | number : NonNullable<string | number> | Defaults["width"]>;
109
109
  default: unknown extends Defaults["width"] ? string | number : NonNullable<string | number> | Defaults["width"];
110
110
  };
@@ -118,7 +118,7 @@ export declare const pressYFieldInputPropsOptions: <Defaults extends {
118
118
  } : Omit<{
119
119
  type: PropType<string>;
120
120
  default: string;
121
- }, "type" | "default"> & {
121
+ }, "default" | "type"> & {
122
122
  type: PropType<unknown extends Defaults["displayTag"] ? string : string | Defaults["displayTag"]>;
123
123
  default: unknown extends Defaults["displayTag"] ? string : string | Defaults["displayTag"];
124
124
  };
@@ -130,7 +130,7 @@ export declare const pressYFieldInputPropsOptions: <Defaults extends {
130
130
  type: PropType<any>;
131
131
  } : Omit<{
132
132
  type: PropType<any>;
133
- }, "type" | "default"> & {
133
+ }, "default" | "type"> & {
134
134
  type: PropType<unknown extends Defaults["modelValue"] ? any : any>;
135
135
  default: unknown extends Defaults["modelValue"] ? any : any;
136
136
  };
@@ -140,7 +140,7 @@ export declare const pressYFieldInputPropsOptions: <Defaults extends {
140
140
  } : Omit<{
141
141
  type: PropType<boolean>;
142
142
  default: boolean;
143
- }, "type" | "default"> & {
143
+ }, "default" | "type"> & {
144
144
  type: PropType<unknown extends Defaults["autoSelect"] ? boolean : boolean | Defaults["autoSelect"]>;
145
145
  default: unknown extends Defaults["autoSelect"] ? boolean : boolean | Defaults["autoSelect"];
146
146
  };
@@ -150,7 +150,7 @@ export declare const pressYFieldInputPropsOptions: <Defaults extends {
150
150
  } : Omit<{
151
151
  type: PropType<boolean>;
152
152
  default: boolean;
153
- }, "type" | "default"> & {
153
+ }, "default" | "type"> & {
154
154
  type: PropType<unknown extends Defaults["floating"] ? boolean : boolean | Defaults["floating"]>;
155
155
  default: unknown extends Defaults["floating"] ? boolean : boolean | Defaults["floating"];
156
156
  };
@@ -160,7 +160,7 @@ export declare const pressYFieldInputPropsOptions: <Defaults extends {
160
160
  } : Omit<{
161
161
  type: PropType<boolean>;
162
162
  default: () => false;
163
- }, "type" | "default"> & {
163
+ }, "default" | "type"> & {
164
164
  type: PropType<unknown extends Defaults["floated"] ? boolean : boolean | Defaults["floated"]>;
165
165
  default: unknown extends Defaults["floated"] ? boolean : boolean | Defaults["floated"];
166
166
  };
@@ -182,7 +182,7 @@ export declare const pressYFieldInputPropsOptions: <Defaults extends {
182
182
  } : Omit<{
183
183
  type: PropType<string>;
184
184
  default: string;
185
- }, "type" | "default"> & {
185
+ }, "default" | "type"> & {
186
186
  type: PropType<unknown extends Defaults["variation"] ? string : string | Defaults["variation"]>;
187
187
  default: unknown extends Defaults["variation"] ? string : string | Defaults["variation"];
188
188
  };
@@ -224,7 +224,7 @@ export declare const pressYFieldInputPropsOptions: <Defaults extends {
224
224
  } : Omit<{
225
225
  type: PropType<string>;
226
226
  default: string;
227
- }, "type" | "default"> & {
227
+ }, "default" | "type"> & {
228
228
  type: PropType<unknown extends Defaults["tabindex"] ? string : string | Defaults["tabindex"]>;
229
229
  default: unknown extends Defaults["tabindex"] ? string : string | Defaults["tabindex"];
230
230
  };
@@ -234,7 +234,7 @@ export declare const pressYFieldInputPropsOptions: <Defaults extends {
234
234
  } : Omit<{
235
235
  type: PropType<string>;
236
236
  default: string;
237
- }, "type" | "default"> & {
237
+ }, "default" | "type"> & {
238
238
  type: PropType<unknown extends Defaults["type"] ? string : string | Defaults["type"]>;
239
239
  default: unknown extends Defaults["type"] ? string : string | Defaults["type"];
240
240
  };
@@ -312,5 +312,5 @@ export declare const YFieldInput: import('vue').DefineComponent<{
312
312
  readonly rxValue: any;
313
313
  };
314
314
  inValue: import('vue').Ref<any, any>;
315
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("input" | "blur" | "change" | "click" | "focus" | "keydown" | "keyup" | "mousedown" | "mouseup" | "mousedown:display" | "keydown:display" | "update:modelValue" | "update:focused" | "click:clear")[], "input" | "blur" | "change" | "click" | "focus" | "keydown" | "keyup" | "mousedown" | "mouseup" | "mousedown:display" | "keydown:display" | "update:modelValue" | "update:focused" | "click:clear">;
315
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("blur" | "change" | "click" | "focus" | "input" | "keydown" | "keyup" | "mousedown" | "mouseup" | "mousedown:display" | "keydown:display" | "update:modelValue" | "update:focused" | "click:clear")[], "blur" | "change" | "click" | "focus" | "input" | "keydown" | "keyup" | "mousedown" | "mouseup" | "mousedown:display" | "keydown:display" | "update:modelValue" | "update:focused" | "click:clear">;
316
316
  export type YFieldInput = InstanceType<typeof YFieldInput>;
@@ -14,7 +14,7 @@ export declare const pressYHoverPropsOptions: <Defaults extends {
14
14
  } : Omit<{
15
15
  type: BooleanConstructor;
16
16
  default: undefined;
17
- }, "type" | "default"> & {
17
+ }, "default" | "type"> & {
18
18
  type: import('vue').PropType<unknown extends Defaults["modelValue"] ? boolean : boolean | Defaults["modelValue"]>;
19
19
  default: unknown extends Defaults["modelValue"] ? boolean : boolean | Defaults["modelValue"];
20
20
  };
@@ -24,7 +24,7 @@ export declare const pressYHoverPropsOptions: <Defaults extends {
24
24
  } : Omit<{
25
25
  type: NumberConstructor;
26
26
  default: number;
27
- }, "type" | "default"> & {
27
+ }, "default" | "type"> & {
28
28
  type: import('vue').PropType<unknown extends Defaults["openDelay"] ? number : number | Defaults["openDelay"]>;
29
29
  default: unknown extends Defaults["openDelay"] ? number : number | Defaults["openDelay"];
30
30
  };
@@ -34,7 +34,7 @@ export declare const pressYHoverPropsOptions: <Defaults extends {
34
34
  } : Omit<{
35
35
  type: NumberConstructor;
36
36
  default: number;
37
- }, "type" | "default"> & {
37
+ }, "default" | "type"> & {
38
38
  type: import('vue').PropType<unknown extends Defaults["closeDelay"] ? number : number | Defaults["closeDelay"]>;
39
39
  default: unknown extends Defaults["closeDelay"] ? number : number | Defaults["closeDelay"];
40
40
  };
@@ -32,7 +32,7 @@ export declare const pressYIconPropsOptions: <Defaults extends {
32
32
  } : Omit<{
33
33
  type: StringConstructor;
34
34
  default: string;
35
- }, "type" | "default"> & {
35
+ }, "default" | "type"> & {
36
36
  type: PropType<unknown extends Defaults["tag"] ? string : string | Defaults["tag"]>;
37
37
  default: unknown extends Defaults["tag"] ? string : string | Defaults["tag"];
38
38
  };
@@ -40,7 +40,7 @@ export declare const pressYIconPropsOptions: <Defaults extends {
40
40
  type: (NumberConstructor | StringConstructor)[];
41
41
  } : Omit<{
42
42
  type: (NumberConstructor | StringConstructor)[];
43
- }, "type" | "default"> & {
43
+ }, "default" | "type"> & {
44
44
  type: PropType<unknown extends Defaults["size"] ? string | number : NonNullable<string | number> | Defaults["size"]>;
45
45
  default: unknown extends Defaults["size"] ? string | number : NonNullable<string | number> | Defaults["size"];
46
46
  };
@@ -44,7 +44,7 @@ export declare const pressYImgPropsOptions: <Defaults extends {
44
44
  } : Omit<{
45
45
  type: PropType<"fill" | "contain" | "cover" | "scale-down">;
46
46
  default: string;
47
- }, "type" | "default"> & {
47
+ }, "default" | "type"> & {
48
48
  type: PropType<unknown extends Defaults["objectFit"] ? "fill" | "contain" | "cover" | "scale-down" : Defaults["objectFit"] | NonNullable<"fill" | "contain" | "cover" | "scale-down">>;
49
49
  default: unknown extends Defaults["objectFit"] ? "fill" | "contain" | "cover" | "scale-down" : Defaults["objectFit"] | NonNullable<"fill" | "contain" | "cover" | "scale-down">;
50
50
  };
@@ -57,7 +57,7 @@ export declare const pressYImgPropsOptions: <Defaults extends {
57
57
  is?: import('vue').Component | undefined;
58
58
  })>;
59
59
  default: string;
60
- }, "type" | "default"> & {
60
+ }, "default" | "type"> & {
61
61
  type: PropType<NonNullable<string | (import('vue').TransitionProps & {
62
62
  is?: import('vue').Component | undefined;
63
63
  })>>;
@@ -69,14 +69,14 @@ export declare const pressYImgPropsOptions: <Defaults extends {
69
69
  is?: import('vue').Component | undefined;
70
70
  })>;
71
71
  default: string;
72
- }, "type" | "default"> & {
72
+ }, "default" | "type"> & {
73
73
  type: PropType<NonNullable<string | (import('vue').TransitionProps & {
74
74
  is?: import('vue').Component | undefined;
75
75
  })>>;
76
76
  default: NonNullable<string | (import('vue').TransitionProps & {
77
77
  is?: import('vue').Component | undefined;
78
78
  })>;
79
- }, "type" | "default"> & {
79
+ }, "default" | "type"> & {
80
80
  type: PropType<unknown extends Defaults["transition"] ? NonNullable<string | (import('vue').TransitionProps & {
81
81
  is?: import('vue').Component | undefined;
82
82
  })> : NonNullable<NonNullable<string | (import('vue').TransitionProps & {
@@ -119,7 +119,7 @@ export declare const YImg: import('vue').DefineComponent<{
119
119
  is?: import('vue').Component | undefined;
120
120
  })>;
121
121
  default: string;
122
- }, "type" | "default"> & {
122
+ }, "default" | "type"> & {
123
123
  type: PropType<NonNullable<string | (import('vue').TransitionProps & {
124
124
  is?: import('vue').Component | undefined;
125
125
  })>>;