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.
- package/dist/yuyeon.js +1564 -1540
- package/dist/yuyeon.umd.cjs +3 -3
- package/lib/components/table/YDataTable.js +13 -12
- package/lib/components/table/YDataTable.js.map +1 -1
- package/lib/components/table/YDataTableBody.js +2 -2
- package/lib/components/table/YDataTableBody.js.map +1 -1
- package/lib/components/table/YDataTableControl.js +1 -1
- package/lib/components/table/YDataTableControl.js.map +1 -1
- package/lib/components/table/YDataTableHead.js +3 -3
- package/lib/components/table/YDataTableHead.js.map +1 -1
- package/lib/components/table/YDataTableLayer.js +11 -4
- package/lib/components/table/YDataTableLayer.js.map +1 -1
- package/lib/components/table/YDataTableLayerRow.vue +145 -0
- package/lib/components/table/YDataTableRow.js +2 -2
- package/lib/components/table/YDataTableRow.js.map +1 -1
- package/lib/components/table/YDataTableServer.js +15 -14
- package/lib/components/table/YDataTableServer.js.map +1 -1
- package/lib/components/table/YTable.js +8 -3
- package/lib/components/table/YTable.js.map +1 -1
- package/lib/components/table/composables/header.js +127 -0
- package/lib/components/table/composables/header.js.map +1 -0
- package/lib/components/table/composables/items.js +52 -0
- package/lib/components/table/composables/items.js.map +1 -0
- package/lib/components/table/composables/measure.js +55 -0
- package/lib/components/table/composables/measure.js.map +1 -0
- package/lib/components/table/composables/options.js +33 -0
- package/lib/components/table/composables/options.js.map +1 -0
- package/lib/components/table/composables/pagination.js +99 -0
- package/lib/components/table/composables/pagination.js.map +1 -0
- package/lib/components/table/composables/provides.js +3 -0
- package/lib/components/table/composables/provides.js.map +1 -0
- package/lib/components/table/composables/selection.js +196 -0
- package/lib/components/table/composables/selection.js.map +1 -0
- package/lib/components/table/composables/sorted-items.js +50 -0
- package/lib/components/table/composables/sorted-items.js.map +1 -0
- package/lib/components/table/composables/sorting.js +73 -0
- package/lib/components/table/composables/sorting.js.map +1 -0
- package/lib/components/table/composibles/measure.js +21 -5
- package/lib/components/table/composibles/measure.js.map +1 -1
- package/lib/components/table/types/index.js.map +1 -1
- package/lib/components/table/types/item.js.map +1 -1
- package/package.json +1 -1
- package/types/abstract/items.d.ts +4 -4
- package/types/components/badge/YBadge.d.ts +4 -4
- package/types/components/button/YButton.d.ts +8 -8
- package/types/components/chip/YChip.d.ts +1 -1
- package/types/components/date-picker/YDateCalendar.d.ts +1 -1
- package/types/components/date-picker/YDatePicker.d.ts +1 -1
- package/types/components/date-picker/YDatePickerControl.d.ts +5 -5
- package/types/components/dialog/YDialog.d.ts +58 -58
- package/types/components/dropdown/YDropdown.d.ts +55 -55
- package/types/components/field-input/YFieldInput.d.ts +13 -13
- package/types/components/hover/YHover.d.ts +3 -3
- package/types/components/icon/YIcon.d.ts +2 -2
- package/types/components/img/YImg.d.ts +5 -5
- package/types/components/input/YInput.d.ts +9 -9
- package/types/components/ip-field/YIpv4Field.d.ts +1 -1
- package/types/components/layer/YLayer.d.ts +26 -26
- package/types/components/layer/content.d.ts +1 -1
- package/types/components/layer/scroll-strategies.d.ts +1 -1
- package/types/components/list/YListItem.d.ts +1 -1
- package/types/components/menu/YMenu.d.ts +9 -9
- package/types/components/pagination/YPagination.d.ts +5 -5
- package/types/components/select/YSelect.d.ts +62 -62
- package/types/components/snackbar/YSnackbar.d.ts +33 -33
- package/types/components/switch/YSwitch.d.ts +10 -10
- package/types/components/tab/YTab.d.ts +12 -12
- package/types/components/tab/YTabs.d.ts +4 -4
- package/types/components/table/YDataTable.d.ts +15 -15
- package/types/components/table/YDataTableBody.d.ts +2 -2
- package/types/components/table/YDataTableControl.d.ts +2 -2
- package/types/components/table/YDataTableHead.d.ts +2 -2
- package/types/components/table/YDataTableLayer.d.ts +4 -1
- package/types/components/table/YDataTableServer.d.ts +18 -18
- package/types/components/table/YTable.d.ts +4 -4
- package/types/components/table/composables/header.d.ts +207 -0
- package/types/components/table/composables/items.d.ts +55 -0
- package/types/components/table/composables/measure.d.ts +8 -0
- package/types/components/table/composables/options.d.ts +11 -0
- package/types/components/table/composables/pagination.d.ts +81 -0
- package/types/components/table/composables/provides.d.ts +15 -0
- package/types/components/table/composables/selection.d.ts +82 -0
- package/types/components/table/composables/sorted-items.d.ts +7 -0
- package/types/components/table/composables/sorting.d.ts +62 -0
- package/types/components/table/types/index.d.ts +1 -1
- package/types/components/table/types/item.d.ts +1 -1
- package/types/components/textarea/YTextarea.d.ts +18 -18
- package/types/components/tooltip/YTooltip.d.ts +46 -46
- package/types/components/tree-view/YTreeView.d.ts +4 -4
- package/types/components/tree-view/YTreeViewNode.d.ts +8 -8
- package/types/composables/choice.d.ts +1 -1
- package/types/composables/coordinate/index.d.ts +8 -8
- package/types/composables/form.d.ts +2 -2
- package/types/composables/icon.d.ts +2 -2
- package/types/composables/list-items.d.ts +10 -10
- package/types/composables/transition.d.ts +1 -1
- package/types/composables/validation.d.ts +3 -3
|
@@ -41,7 +41,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
41
41
|
type: PropType<boolean>;
|
|
42
42
|
} : Omit<{
|
|
43
43
|
type: PropType<boolean>;
|
|
44
|
-
}, "
|
|
44
|
+
}, "default" | "type"> & {
|
|
45
45
|
type: PropType<unknown extends Defaults["modelValue"] ? boolean : boolean | Defaults["modelValue"]>;
|
|
46
46
|
default: unknown extends Defaults["modelValue"] ? boolean : boolean | Defaults["modelValue"];
|
|
47
47
|
};
|
|
@@ -49,7 +49,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
49
49
|
type: PropType<string | string[] | Record<string, any>>;
|
|
50
50
|
} : Omit<{
|
|
51
51
|
type: PropType<string | string[] | Record<string, any>>;
|
|
52
|
-
}, "
|
|
52
|
+
}, "default" | "type"> & {
|
|
53
53
|
type: PropType<unknown extends Defaults["contentClasses"] ? string | string[] | Record<string, any> : NonNullable<string | string[] | Record<string, any>> | Defaults["contentClasses"]>;
|
|
54
54
|
default: unknown extends Defaults["contentClasses"] ? string | string[] | Record<string, any> : NonNullable<string | string[] | Record<string, any>> | Defaults["contentClasses"];
|
|
55
55
|
};
|
|
@@ -67,7 +67,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
67
67
|
onBeforeEnter: (direction: 'top' | 'bottom') => (el: HTMLElement) => void;
|
|
68
68
|
onEnter(el: HTMLElement, done: () => void): void;
|
|
69
69
|
};
|
|
70
|
-
}, "
|
|
70
|
+
}, "default" | "type"> & {
|
|
71
71
|
type: PropType<unknown extends Defaults["transition"] ? any : any>;
|
|
72
72
|
default: unknown extends Defaults["transition"] ? any : any;
|
|
73
73
|
};
|
|
@@ -77,7 +77,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
77
77
|
} : Omit<{
|
|
78
78
|
type: PropType<number>;
|
|
79
79
|
default: number;
|
|
80
|
-
}, "
|
|
80
|
+
}, "default" | "type"> & {
|
|
81
81
|
type: PropType<unknown extends Defaults["duration"] ? number : number | Defaults["duration"]>;
|
|
82
82
|
default: unknown extends Defaults["duration"] ? number : number | Defaults["duration"];
|
|
83
83
|
};
|
|
@@ -87,7 +87,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
87
87
|
} : Omit<{
|
|
88
88
|
type: BooleanConstructor;
|
|
89
89
|
default: boolean;
|
|
90
|
-
}, "
|
|
90
|
+
}, "default" | "type"> & {
|
|
91
91
|
type: PropType<unknown extends Defaults["closeClickContent"] ? boolean : boolean | Defaults["closeClickContent"]>;
|
|
92
92
|
default: unknown extends Defaults["closeClickContent"] ? boolean : boolean | Defaults["closeClickContent"];
|
|
93
93
|
};
|
|
@@ -119,17 +119,17 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
119
119
|
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
120
120
|
default: string;
|
|
121
121
|
validator: (val: any) => boolean;
|
|
122
|
-
}, "
|
|
122
|
+
}, "default" | "type"> & {
|
|
123
123
|
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
124
124
|
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
125
125
|
} : Omit<Omit<{
|
|
126
126
|
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
127
127
|
default: string;
|
|
128
128
|
validator: (val: any) => boolean;
|
|
129
|
-
}, "
|
|
129
|
+
}, "default" | "type"> & {
|
|
130
130
|
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
131
131
|
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
132
|
-
}, "
|
|
132
|
+
}, "default" | "type"> & {
|
|
133
133
|
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"> : Defaults["scrollStrategy"] | NonNullable<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>>;
|
|
134
134
|
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"> : Defaults["scrollStrategy"] | NonNullable<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
135
135
|
};
|
|
@@ -139,23 +139,23 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
139
139
|
} : Omit<{
|
|
140
140
|
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
141
141
|
default: string;
|
|
142
|
-
}, "
|
|
142
|
+
}, "default" | "type"> & {
|
|
143
143
|
type: PropType<unknown extends Defaults["coordinateStrategy"] ? "levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn : NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn> | Defaults["coordinateStrategy"]>;
|
|
144
144
|
default: unknown extends Defaults["coordinateStrategy"] ? "levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn : NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn> | Defaults["coordinateStrategy"];
|
|
145
145
|
};
|
|
146
146
|
position: unknown extends Defaults["position"] ? Omit<{
|
|
147
147
|
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
148
148
|
default: string;
|
|
149
|
-
}, "
|
|
149
|
+
}, "default" | "type"> & {
|
|
150
150
|
type: PropType<string>;
|
|
151
151
|
default: string;
|
|
152
152
|
} : Omit<Omit<{
|
|
153
153
|
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
154
154
|
default: string;
|
|
155
|
-
}, "
|
|
155
|
+
}, "default" | "type"> & {
|
|
156
156
|
type: PropType<string>;
|
|
157
157
|
default: string;
|
|
158
|
-
}, "
|
|
158
|
+
}, "default" | "type"> & {
|
|
159
159
|
type: PropType<unknown extends Defaults["position"] ? string : string | Defaults["position"]>;
|
|
160
160
|
default: unknown extends Defaults["position"] ? string : string | Defaults["position"];
|
|
161
161
|
};
|
|
@@ -165,7 +165,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
165
165
|
} : Omit<{
|
|
166
166
|
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
167
167
|
default: string;
|
|
168
|
-
}, "
|
|
168
|
+
}, "default" | "type"> & {
|
|
169
169
|
type: PropType<unknown extends Defaults["align"] ? "top" | "bottom" | "start" | "end" | "center" : NonNullable<"top" | "bottom" | "start" | "end" | "center"> | Defaults["align"]>;
|
|
170
170
|
default: unknown extends Defaults["align"] ? "top" | "bottom" | "start" | "end" | "center" : NonNullable<"top" | "bottom" | "start" | "end" | "center"> | Defaults["align"];
|
|
171
171
|
};
|
|
@@ -175,7 +175,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
175
175
|
} : Omit<{
|
|
176
176
|
type: StringConstructor;
|
|
177
177
|
default: string;
|
|
178
|
-
}, "
|
|
178
|
+
}, "default" | "type"> & {
|
|
179
179
|
type: PropType<unknown extends Defaults["origin"] ? string : string | Defaults["origin"]>;
|
|
180
180
|
default: unknown extends Defaults["origin"] ? string : string | Defaults["origin"];
|
|
181
181
|
};
|
|
@@ -183,17 +183,17 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
183
183
|
type: PropType<string | number | number[]>;
|
|
184
184
|
} : Omit<{
|
|
185
185
|
type: PropType<string | number | number[]>;
|
|
186
|
-
}, "
|
|
186
|
+
}, "default" | "type"> & {
|
|
187
187
|
type: PropType<unknown extends Defaults["offset"] ? string | number | number[] : NonNullable<string | number | number[]> | Defaults["offset"]>;
|
|
188
188
|
default: unknown extends Defaults["offset"] ? string | number | number[] : NonNullable<string | number | number[]> | Defaults["offset"];
|
|
189
189
|
};
|
|
190
190
|
viewportMargin: unknown extends Defaults["viewportMargin"] ? {
|
|
191
|
-
type: (
|
|
191
|
+
type: (NumberConstructor | ArrayConstructor | StringConstructor)[];
|
|
192
192
|
default: number;
|
|
193
193
|
} : Omit<{
|
|
194
|
-
type: (
|
|
194
|
+
type: (NumberConstructor | ArrayConstructor | StringConstructor)[];
|
|
195
195
|
default: number;
|
|
196
|
-
}, "
|
|
196
|
+
}, "default" | "type"> & {
|
|
197
197
|
type: PropType<unknown extends Defaults["viewportMargin"] ? string | number | unknown[] : NonNullable<string | number | unknown[]> | Defaults["viewportMargin"]>;
|
|
198
198
|
default: unknown extends Defaults["viewportMargin"] ? string | number | unknown[] : NonNullable<string | number | unknown[]> | Defaults["viewportMargin"];
|
|
199
199
|
};
|
|
@@ -213,7 +213,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
213
213
|
type: PropType<boolean>;
|
|
214
214
|
} : Omit<{
|
|
215
215
|
type: PropType<boolean>;
|
|
216
|
-
}, "
|
|
216
|
+
}, "default" | "type"> & {
|
|
217
217
|
type: PropType<unknown extends Defaults["scrim"] ? boolean : boolean | Defaults["scrim"]>;
|
|
218
218
|
default: unknown extends Defaults["scrim"] ? boolean : boolean | Defaults["scrim"];
|
|
219
219
|
};
|
|
@@ -221,7 +221,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
221
221
|
type: PropType<number>;
|
|
222
222
|
} : Omit<{
|
|
223
223
|
type: PropType<number>;
|
|
224
|
-
}, "
|
|
224
|
+
}, "default" | "type"> & {
|
|
225
225
|
type: PropType<unknown extends Defaults["scrimOpacity"] ? number : number | Defaults["scrimOpacity"]>;
|
|
226
226
|
default: unknown extends Defaults["scrimOpacity"] ? number : number | Defaults["scrimOpacity"];
|
|
227
227
|
};
|
|
@@ -229,7 +229,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
229
229
|
type: PropType<boolean>;
|
|
230
230
|
} : Omit<{
|
|
231
231
|
type: PropType<boolean>;
|
|
232
|
-
}, "
|
|
232
|
+
}, "default" | "type"> & {
|
|
233
233
|
type: PropType<unknown extends Defaults["eager"] ? boolean : boolean | Defaults["eager"]>;
|
|
234
234
|
default: unknown extends Defaults["eager"] ? boolean : boolean | Defaults["eager"];
|
|
235
235
|
};
|
|
@@ -237,7 +237,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
237
237
|
type: PropType<string | string[] | Record<string, any>>;
|
|
238
238
|
} : Omit<{
|
|
239
239
|
type: PropType<string | string[] | Record<string, any>>;
|
|
240
|
-
}, "
|
|
240
|
+
}, "default" | "type"> & {
|
|
241
241
|
type: PropType<unknown extends Defaults["classes"] ? string | string[] | Record<string, any> : NonNullable<string | string[] | Record<string, any>> | Defaults["classes"]>;
|
|
242
242
|
default: unknown extends Defaults["classes"] ? string | string[] | Record<string, any> : NonNullable<string | string[] | Record<string, any>> | Defaults["classes"];
|
|
243
243
|
};
|
|
@@ -245,7 +245,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
245
245
|
type: PropType<boolean>;
|
|
246
246
|
} : Omit<{
|
|
247
247
|
type: PropType<boolean>;
|
|
248
|
-
}, "
|
|
248
|
+
}, "default" | "type"> & {
|
|
249
249
|
type: PropType<unknown extends Defaults["closeClickScrim"] ? boolean : boolean | Defaults["closeClickScrim"]>;
|
|
250
250
|
default: unknown extends Defaults["closeClickScrim"] ? boolean : boolean | Defaults["closeClickScrim"];
|
|
251
251
|
};
|
|
@@ -255,7 +255,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
255
255
|
} : Omit<{
|
|
256
256
|
type: PropType<import('vue').CSSProperties>;
|
|
257
257
|
default: () => void;
|
|
258
|
-
}, "
|
|
258
|
+
}, "default" | "type"> & {
|
|
259
259
|
type: PropType<unknown extends Defaults["contentStyles"] ? import('vue').CSSProperties : import('vue').CSSProperties | Defaults["contentStyles"]>;
|
|
260
260
|
default: unknown extends Defaults["contentStyles"] ? import('vue').CSSProperties : import('vue').CSSProperties | Defaults["contentStyles"];
|
|
261
261
|
};
|
|
@@ -265,7 +265,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
265
265
|
} : Omit<{
|
|
266
266
|
type: PropType<boolean>;
|
|
267
267
|
default: boolean;
|
|
268
|
-
}, "
|
|
268
|
+
}, "default" | "type"> & {
|
|
269
269
|
type: PropType<unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"]>;
|
|
270
270
|
default: unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"];
|
|
271
271
|
};
|
|
@@ -273,7 +273,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
273
273
|
type: PropType<boolean>;
|
|
274
274
|
} : Omit<{
|
|
275
275
|
type: PropType<boolean>;
|
|
276
|
-
}, "
|
|
276
|
+
}, "default" | "type"> & {
|
|
277
277
|
type: PropType<unknown extends Defaults["maximized"] ? boolean : boolean | Defaults["maximized"]>;
|
|
278
278
|
default: unknown extends Defaults["maximized"] ? boolean : boolean | Defaults["maximized"];
|
|
279
279
|
};
|
|
@@ -283,7 +283,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
283
283
|
} : Omit<{
|
|
284
284
|
type: PropType<boolean>;
|
|
285
285
|
default: boolean;
|
|
286
|
-
}, "
|
|
286
|
+
}, "default" | "type"> & {
|
|
287
287
|
type: PropType<unknown extends Defaults["openOnHover"] ? boolean : boolean | Defaults["openOnHover"]>;
|
|
288
288
|
default: unknown extends Defaults["openOnHover"] ? boolean : boolean | Defaults["openOnHover"];
|
|
289
289
|
};
|
|
@@ -293,7 +293,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
293
293
|
} : Omit<{
|
|
294
294
|
type: PropType<number>;
|
|
295
295
|
default: number;
|
|
296
|
-
}, "
|
|
296
|
+
}, "default" | "type"> & {
|
|
297
297
|
type: PropType<unknown extends Defaults["openDelay"] ? number : number | Defaults["openDelay"]>;
|
|
298
298
|
default: unknown extends Defaults["openDelay"] ? number : number | Defaults["openDelay"];
|
|
299
299
|
};
|
|
@@ -303,7 +303,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
303
303
|
} : Omit<{
|
|
304
304
|
type: PropType<number>;
|
|
305
305
|
default: number;
|
|
306
|
-
}, "
|
|
306
|
+
}, "default" | "type"> & {
|
|
307
307
|
type: PropType<unknown extends Defaults["closeDelay"] ? number : number | Defaults["closeDelay"]>;
|
|
308
308
|
default: unknown extends Defaults["closeDelay"] ? number : number | Defaults["closeDelay"];
|
|
309
309
|
};
|
|
@@ -313,7 +313,7 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
313
313
|
} : Omit<{
|
|
314
314
|
type: PropType<string | number>;
|
|
315
315
|
default: number;
|
|
316
|
-
}, "
|
|
316
|
+
}, "default" | "type"> & {
|
|
317
317
|
type: PropType<unknown extends Defaults["zIndex"] ? string | number : NonNullable<string | number> | Defaults["zIndex"]>;
|
|
318
318
|
default: unknown extends Defaults["zIndex"] ? string | number : NonNullable<string | number> | Defaults["zIndex"];
|
|
319
319
|
};
|
|
@@ -359,7 +359,7 @@ export declare const YSnackbar: import('vue').DefineComponent<{
|
|
|
359
359
|
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
360
360
|
default: string;
|
|
361
361
|
validator: (val: any) => boolean;
|
|
362
|
-
}, "
|
|
362
|
+
}, "default" | "type"> & {
|
|
363
363
|
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
364
364
|
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
365
365
|
};
|
|
@@ -370,7 +370,7 @@ export declare const YSnackbar: import('vue').DefineComponent<{
|
|
|
370
370
|
position: Omit<{
|
|
371
371
|
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
372
372
|
default: string;
|
|
373
|
-
}, "
|
|
373
|
+
}, "default" | "type"> & {
|
|
374
374
|
type: PropType<string>;
|
|
375
375
|
default: string;
|
|
376
376
|
};
|
|
@@ -386,7 +386,7 @@ export declare const YSnackbar: import('vue').DefineComponent<{
|
|
|
386
386
|
type: PropType<string | number | number[]>;
|
|
387
387
|
};
|
|
388
388
|
viewportMargin: {
|
|
389
|
-
type: (
|
|
389
|
+
type: (NumberConstructor | ArrayConstructor | StringConstructor)[];
|
|
390
390
|
default: number;
|
|
391
391
|
};
|
|
392
392
|
base: PropType<import('../layer/base').BaseType>;
|
|
@@ -18,7 +18,7 @@ export declare const pressYSwitchPropsOptions: <Defaults extends {
|
|
|
18
18
|
} : Omit<{
|
|
19
19
|
type: PropType<boolean | any[]>;
|
|
20
20
|
default: boolean;
|
|
21
|
-
}, "
|
|
21
|
+
}, "default" | "type"> & {
|
|
22
22
|
type: PropType<unknown extends Defaults["modelValue"] ? boolean | any[] : Defaults["modelValue"] | NonNullable<boolean | any[]>>;
|
|
23
23
|
default: unknown extends Defaults["modelValue"] ? boolean | any[] : Defaults["modelValue"] | NonNullable<boolean | any[]>;
|
|
24
24
|
};
|
|
@@ -26,7 +26,7 @@ export declare const pressYSwitchPropsOptions: <Defaults extends {
|
|
|
26
26
|
type: PropType<any>;
|
|
27
27
|
} : Omit<{
|
|
28
28
|
type: PropType<any>;
|
|
29
|
-
}, "
|
|
29
|
+
}, "default" | "type"> & {
|
|
30
30
|
type: PropType<unknown extends Defaults["value"] ? any : any>;
|
|
31
31
|
default: unknown extends Defaults["value"] ? any : any;
|
|
32
32
|
};
|
|
@@ -34,7 +34,7 @@ export declare const pressYSwitchPropsOptions: <Defaults extends {
|
|
|
34
34
|
type: NumberConstructor;
|
|
35
35
|
} : Omit<{
|
|
36
36
|
type: NumberConstructor;
|
|
37
|
-
}, "
|
|
37
|
+
}, "default" | "type"> & {
|
|
38
38
|
type: PropType<unknown extends Defaults["max"] ? number : number | Defaults["max"]>;
|
|
39
39
|
default: unknown extends Defaults["max"] ? number : number | Defaults["max"];
|
|
40
40
|
};
|
|
@@ -42,7 +42,7 @@ export declare const pressYSwitchPropsOptions: <Defaults extends {
|
|
|
42
42
|
type: BooleanConstructor;
|
|
43
43
|
} : Omit<{
|
|
44
44
|
type: BooleanConstructor;
|
|
45
|
-
}, "
|
|
45
|
+
}, "default" | "type"> & {
|
|
46
46
|
type: PropType<unknown extends Defaults["loading"] ? boolean : boolean | Defaults["loading"]>;
|
|
47
47
|
default: unknown extends Defaults["loading"] ? boolean : boolean | Defaults["loading"];
|
|
48
48
|
};
|
|
@@ -50,7 +50,7 @@ export declare const pressYSwitchPropsOptions: <Defaults extends {
|
|
|
50
50
|
type: BooleanConstructor;
|
|
51
51
|
} : Omit<{
|
|
52
52
|
type: BooleanConstructor;
|
|
53
|
-
}, "
|
|
53
|
+
}, "default" | "type"> & {
|
|
54
54
|
type: PropType<unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"]>;
|
|
55
55
|
default: unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"];
|
|
56
56
|
};
|
|
@@ -58,7 +58,7 @@ export declare const pressYSwitchPropsOptions: <Defaults extends {
|
|
|
58
58
|
type: BooleanConstructor;
|
|
59
59
|
} : Omit<{
|
|
60
60
|
type: BooleanConstructor;
|
|
61
|
-
}, "
|
|
61
|
+
}, "default" | "type"> & {
|
|
62
62
|
type: PropType<unknown extends Defaults["stickOut"] ? boolean : boolean | Defaults["stickOut"]>;
|
|
63
63
|
default: unknown extends Defaults["stickOut"] ? boolean : boolean | Defaults["stickOut"];
|
|
64
64
|
};
|
|
@@ -66,7 +66,7 @@ export declare const pressYSwitchPropsOptions: <Defaults extends {
|
|
|
66
66
|
type: BooleanConstructor;
|
|
67
67
|
} : Omit<{
|
|
68
68
|
type: BooleanConstructor;
|
|
69
|
-
}, "
|
|
69
|
+
}, "default" | "type"> & {
|
|
70
70
|
type: PropType<unknown extends Defaults["stateLabel"] ? boolean : boolean | Defaults["stateLabel"]>;
|
|
71
71
|
default: unknown extends Defaults["stateLabel"] ? boolean : boolean | Defaults["stateLabel"];
|
|
72
72
|
};
|
|
@@ -74,7 +74,7 @@ export declare const pressYSwitchPropsOptions: <Defaults extends {
|
|
|
74
74
|
type: StringConstructor;
|
|
75
75
|
} : Omit<{
|
|
76
76
|
type: StringConstructor;
|
|
77
|
-
}, "
|
|
77
|
+
}, "default" | "type"> & {
|
|
78
78
|
type: PropType<unknown extends Defaults["color"] ? string : string | Defaults["color"]>;
|
|
79
79
|
default: unknown extends Defaults["color"] ? string : string | Defaults["color"];
|
|
80
80
|
};
|
|
@@ -84,7 +84,7 @@ export declare const pressYSwitchPropsOptions: <Defaults extends {
|
|
|
84
84
|
} : Omit<{
|
|
85
85
|
type: StringConstructor;
|
|
86
86
|
default: string;
|
|
87
|
-
}, "
|
|
87
|
+
}, "default" | "type"> & {
|
|
88
88
|
type: PropType<unknown extends Defaults["labelOn"] ? string : string | Defaults["labelOn"]>;
|
|
89
89
|
default: unknown extends Defaults["labelOn"] ? string : string | Defaults["labelOn"];
|
|
90
90
|
};
|
|
@@ -94,7 +94,7 @@ export declare const pressYSwitchPropsOptions: <Defaults extends {
|
|
|
94
94
|
} : Omit<{
|
|
95
95
|
type: StringConstructor;
|
|
96
96
|
default: string;
|
|
97
|
-
}, "
|
|
97
|
+
}, "default" | "type"> & {
|
|
98
98
|
type: PropType<unknown extends Defaults["labelOff"] ? string : string | Defaults["labelOff"]>;
|
|
99
99
|
default: unknown extends Defaults["labelOff"] ? string : string | Defaults["labelOff"];
|
|
100
100
|
};
|
|
@@ -37,7 +37,7 @@ export declare const pressYTabPropsOptions: <Defaults extends {
|
|
|
37
37
|
} : Omit<{
|
|
38
38
|
type: PropType<string>;
|
|
39
39
|
default: string;
|
|
40
|
-
}, "
|
|
40
|
+
}, "default" | "type"> & {
|
|
41
41
|
type: PropType<unknown extends Defaults["selectedClass"] ? string : string | Defaults["selectedClass"]>;
|
|
42
42
|
default: unknown extends Defaults["selectedClass"] ? string : string | Defaults["selectedClass"];
|
|
43
43
|
};
|
|
@@ -67,7 +67,7 @@ export declare const pressYTabPropsOptions: <Defaults extends {
|
|
|
67
67
|
} : Omit<{
|
|
68
68
|
type: BooleanConstructor;
|
|
69
69
|
default: undefined;
|
|
70
|
-
}, "
|
|
70
|
+
}, "default" | "type"> & {
|
|
71
71
|
type: PropType<unknown extends Defaults["active"] ? boolean : boolean | Defaults["active"]>;
|
|
72
72
|
default: unknown extends Defaults["active"] ? boolean : boolean | Defaults["active"];
|
|
73
73
|
};
|
|
@@ -77,7 +77,7 @@ export declare const pressYTabPropsOptions: <Defaults extends {
|
|
|
77
77
|
} : Omit<{
|
|
78
78
|
type: null;
|
|
79
79
|
default: import('vue').InjectionKey<import('../../composables/choice').ChoiceProvide>;
|
|
80
|
-
}, "
|
|
80
|
+
}, "default" | "type"> & {
|
|
81
81
|
type: PropType<unknown extends Defaults["injectSymbol"] ? any : any>;
|
|
82
82
|
default: unknown extends Defaults["injectSymbol"] ? any : any;
|
|
83
83
|
};
|
|
@@ -85,7 +85,7 @@ export declare const pressYTabPropsOptions: <Defaults extends {
|
|
|
85
85
|
type: PropType<string>;
|
|
86
86
|
} : Omit<{
|
|
87
87
|
type: PropType<string>;
|
|
88
|
-
}, "
|
|
88
|
+
}, "default" | "type"> & {
|
|
89
89
|
type: PropType<unknown extends Defaults["variation"] ? string : string | Defaults["variation"]>;
|
|
90
90
|
default: unknown extends Defaults["variation"] ? string : string | Defaults["variation"];
|
|
91
91
|
};
|
|
@@ -103,7 +103,7 @@ export declare const pressYTabPropsOptions: <Defaults extends {
|
|
|
103
103
|
} : Omit<{
|
|
104
104
|
type: BooleanConstructor;
|
|
105
105
|
default: boolean;
|
|
106
|
-
}, "
|
|
106
|
+
}, "default" | "type"> & {
|
|
107
107
|
type: PropType<unknown extends Defaults["outlined"] ? boolean : boolean | Defaults["outlined"]>;
|
|
108
108
|
default: unknown extends Defaults["outlined"] ? boolean : boolean | Defaults["outlined"];
|
|
109
109
|
};
|
|
@@ -113,7 +113,7 @@ export declare const pressYTabPropsOptions: <Defaults extends {
|
|
|
113
113
|
} : Omit<{
|
|
114
114
|
type: BooleanConstructor;
|
|
115
115
|
default: boolean;
|
|
116
|
-
}, "
|
|
116
|
+
}, "default" | "type"> & {
|
|
117
117
|
type: PropType<unknown extends Defaults["rounded"] ? boolean : boolean | Defaults["rounded"]>;
|
|
118
118
|
default: unknown extends Defaults["rounded"] ? boolean : boolean | Defaults["rounded"];
|
|
119
119
|
};
|
|
@@ -123,7 +123,7 @@ export declare const pressYTabPropsOptions: <Defaults extends {
|
|
|
123
123
|
} : Omit<{
|
|
124
124
|
type: BooleanConstructor;
|
|
125
125
|
default: boolean;
|
|
126
|
-
}, "
|
|
126
|
+
}, "default" | "type"> & {
|
|
127
127
|
type: PropType<unknown extends Defaults["filled"] ? boolean : boolean | Defaults["filled"]>;
|
|
128
128
|
default: unknown extends Defaults["filled"] ? boolean : boolean | Defaults["filled"];
|
|
129
129
|
};
|
|
@@ -131,23 +131,23 @@ export declare const pressYTabPropsOptions: <Defaults extends {
|
|
|
131
131
|
type: StringConstructor;
|
|
132
132
|
} : Omit<{
|
|
133
133
|
type: StringConstructor;
|
|
134
|
-
}, "
|
|
134
|
+
}, "default" | "type"> & {
|
|
135
135
|
type: PropType<unknown extends Defaults["color"] ? string : string | Defaults["color"]>;
|
|
136
136
|
default: unknown extends Defaults["color"] ? string : string | Defaults["color"];
|
|
137
137
|
};
|
|
138
138
|
noWave: unknown extends Defaults["noWave"] ? Omit<{
|
|
139
139
|
type: BooleanConstructor;
|
|
140
140
|
default: boolean;
|
|
141
|
-
}, "
|
|
141
|
+
}, "default" | "type"> & {
|
|
142
142
|
type: PropType<boolean>;
|
|
143
143
|
default: boolean;
|
|
144
144
|
} : Omit<Omit<{
|
|
145
145
|
type: BooleanConstructor;
|
|
146
146
|
default: boolean;
|
|
147
|
-
}, "
|
|
147
|
+
}, "default" | "type"> & {
|
|
148
148
|
type: PropType<boolean>;
|
|
149
149
|
default: boolean;
|
|
150
|
-
}, "
|
|
150
|
+
}, "default" | "type"> & {
|
|
151
151
|
type: PropType<unknown extends Defaults["noWave"] ? boolean : boolean | Defaults["noWave"]>;
|
|
152
152
|
default: unknown extends Defaults["noWave"] ? boolean : boolean | Defaults["noWave"];
|
|
153
153
|
};
|
|
@@ -207,7 +207,7 @@ export declare const YTab: import('vue').DefineComponent<{
|
|
|
207
207
|
noWave: Omit<{
|
|
208
208
|
type: BooleanConstructor;
|
|
209
209
|
default: boolean;
|
|
210
|
-
}, "
|
|
210
|
+
}, "default" | "type"> & {
|
|
211
211
|
type: PropType<boolean>;
|
|
212
212
|
default: boolean;
|
|
213
213
|
};
|
|
@@ -17,7 +17,7 @@ export declare const pressYTabsPropOptions: <Defaults extends {
|
|
|
17
17
|
} : Omit<{
|
|
18
18
|
type: null;
|
|
19
19
|
default: undefined;
|
|
20
|
-
}, "
|
|
20
|
+
}, "default" | "type"> & {
|
|
21
21
|
type: PropType<unknown extends Defaults["modelValue"] ? any : any>;
|
|
22
22
|
default: unknown extends Defaults["modelValue"] ? any : any;
|
|
23
23
|
};
|
|
@@ -31,7 +31,7 @@ export declare const pressYTabsPropOptions: <Defaults extends {
|
|
|
31
31
|
} : Omit<{
|
|
32
32
|
type: PropType<NonNullable<boolean | "force">>;
|
|
33
33
|
default: NonNullable<boolean | "force">;
|
|
34
|
-
}, "
|
|
34
|
+
}, "default" | "type"> & {
|
|
35
35
|
type: PropType<unknown extends Defaults["mandatory"] ? NonNullable<boolean | "force"> : Defaults["mandatory"] | NonNullable<NonNullable<boolean | "force">>>;
|
|
36
36
|
default: unknown extends Defaults["mandatory"] ? NonNullable<boolean | "force"> : Defaults["mandatory"] | NonNullable<NonNullable<boolean | "force">>;
|
|
37
37
|
};
|
|
@@ -45,7 +45,7 @@ export declare const pressYTabsPropOptions: <Defaults extends {
|
|
|
45
45
|
} : Omit<{
|
|
46
46
|
type: PropType<string>;
|
|
47
47
|
default: string;
|
|
48
|
-
}, "
|
|
48
|
+
}, "default" | "type"> & {
|
|
49
49
|
type: PropType<unknown extends Defaults["selectedClass"] ? string : string | Defaults["selectedClass"]>;
|
|
50
50
|
default: unknown extends Defaults["selectedClass"] ? string : string | Defaults["selectedClass"];
|
|
51
51
|
};
|
|
@@ -61,7 +61,7 @@ export declare const pressYTabsPropOptions: <Defaults extends {
|
|
|
61
61
|
type: PropType<YTabPropItem[]>;
|
|
62
62
|
} : Omit<{
|
|
63
63
|
type: PropType<YTabPropItem[]>;
|
|
64
|
-
}, "
|
|
64
|
+
}, "default" | "type"> & {
|
|
65
65
|
type: PropType<unknown extends Defaults["items"] ? YTabPropItem[] : YTabPropItem[] | Defaults["items"]>;
|
|
66
66
|
default: unknown extends Defaults["items"] ? YTabPropItem[] : YTabPropItem[] | Defaults["items"];
|
|
67
67
|
};
|
|
@@ -42,7 +42,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
42
42
|
} : Omit<{
|
|
43
43
|
type: PropType<string>;
|
|
44
44
|
default: string;
|
|
45
|
-
}, "
|
|
45
|
+
}, "default" | "type"> & {
|
|
46
46
|
type: PropType<unknown extends Defaults["tag"] ? string : string | Defaults["tag"]>;
|
|
47
47
|
default: unknown extends Defaults["tag"] ? string : string | Defaults["tag"];
|
|
48
48
|
};
|
|
@@ -50,7 +50,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
50
50
|
type: PropType<boolean>;
|
|
51
51
|
} : Omit<{
|
|
52
52
|
type: PropType<boolean>;
|
|
53
|
-
}, "
|
|
53
|
+
}, "default" | "type"> & {
|
|
54
54
|
type: PropType<unknown extends Defaults["fixedHead"] ? boolean : boolean | Defaults["fixedHead"]>;
|
|
55
55
|
default: unknown extends Defaults["fixedHead"] ? boolean : boolean | Defaults["fixedHead"];
|
|
56
56
|
};
|
|
@@ -58,7 +58,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
58
58
|
type: PropType<string | number>;
|
|
59
59
|
} : Omit<{
|
|
60
60
|
type: PropType<string | number>;
|
|
61
|
-
}, "
|
|
61
|
+
}, "default" | "type"> & {
|
|
62
62
|
type: PropType<unknown extends Defaults["height"] ? string | number : NonNullable<string | number> | Defaults["height"]>;
|
|
63
63
|
default: unknown extends Defaults["height"] ? string | number : NonNullable<string | number> | Defaults["height"];
|
|
64
64
|
};
|
|
@@ -66,7 +66,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
66
66
|
type: PropType<boolean>;
|
|
67
67
|
} : Omit<{
|
|
68
68
|
type: PropType<boolean>;
|
|
69
|
-
}, "
|
|
69
|
+
}, "default" | "type"> & {
|
|
70
70
|
type: PropType<unknown extends Defaults["flexHeight"] ? boolean : boolean | Defaults["flexHeight"]>;
|
|
71
71
|
default: unknown extends Defaults["flexHeight"] ? boolean : boolean | Defaults["flexHeight"];
|
|
72
72
|
};
|
|
@@ -84,7 +84,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
84
84
|
} : Omit<{
|
|
85
85
|
type: StringConstructor;
|
|
86
86
|
default: string;
|
|
87
|
-
}, "
|
|
87
|
+
}, "default" | "type"> & {
|
|
88
88
|
type: PropType<unknown extends Defaults["sortAscIcon"] ? string : string | Defaults["sortAscIcon"]>;
|
|
89
89
|
default: unknown extends Defaults["sortAscIcon"] ? string : string | Defaults["sortAscIcon"];
|
|
90
90
|
};
|
|
@@ -94,7 +94,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
94
94
|
} : Omit<{
|
|
95
95
|
type: StringConstructor;
|
|
96
96
|
default: string;
|
|
97
|
-
}, "
|
|
97
|
+
}, "default" | "type"> & {
|
|
98
98
|
type: PropType<unknown extends Defaults["sortDescIcon"] ? string : string | Defaults["sortDescIcon"]>;
|
|
99
99
|
default: unknown extends Defaults["sortDescIcon"] ? string : string | Defaults["sortDescIcon"];
|
|
100
100
|
};
|
|
@@ -116,7 +116,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
116
116
|
} : Omit<{
|
|
117
117
|
type: PropType<"page" | "all" | "single">;
|
|
118
118
|
default: string;
|
|
119
|
-
}, "
|
|
119
|
+
}, "default" | "type"> & {
|
|
120
120
|
type: PropType<unknown extends Defaults["selectStrategy"] ? "page" | "all" | "single" : NonNullable<"page" | "all" | "single"> | Defaults["selectStrategy"]>;
|
|
121
121
|
default: unknown extends Defaults["selectStrategy"] ? "page" | "all" | "single" : NonNullable<"page" | "all" | "single"> | Defaults["selectStrategy"];
|
|
122
122
|
};
|
|
@@ -126,7 +126,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
126
126
|
} : Omit<{
|
|
127
127
|
type: PropType<readonly any[]>;
|
|
128
128
|
default: () => never[];
|
|
129
|
-
}, "
|
|
129
|
+
}, "default" | "type"> & {
|
|
130
130
|
type: PropType<unknown extends Defaults["modelValue"] ? readonly any[] : readonly any[] | Defaults["modelValue"]>;
|
|
131
131
|
default: unknown extends Defaults["modelValue"] ? readonly any[] : readonly any[] | Defaults["modelValue"];
|
|
132
132
|
};
|
|
@@ -136,7 +136,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
136
136
|
} : Omit<{
|
|
137
137
|
type: PropType<string | typeof import('../../util').deepEqual>;
|
|
138
138
|
default: () => typeof import('../../util').deepEqual;
|
|
139
|
-
}, "
|
|
139
|
+
}, "default" | "type"> & {
|
|
140
140
|
type: PropType<unknown extends Defaults["itemComparator"] ? string | typeof import('../../util').deepEqual : NonNullable<string | typeof import('../../util').deepEqual> | Defaults["itemComparator"]>;
|
|
141
141
|
default: unknown extends Defaults["itemComparator"] ? string | typeof import('../../util').deepEqual : NonNullable<string | typeof import('../../util').deepEqual> | Defaults["itemComparator"];
|
|
142
142
|
};
|
|
@@ -152,7 +152,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
152
152
|
readonly order?: boolean | "desc" | "asc" | undefined;
|
|
153
153
|
}[]>;
|
|
154
154
|
default: () => never[];
|
|
155
|
-
}, "
|
|
155
|
+
}, "default" | "type"> & {
|
|
156
156
|
type: PropType<unknown extends Defaults["sortBy"] ? readonly {
|
|
157
157
|
readonly key: string;
|
|
158
158
|
readonly order?: boolean | "desc" | "asc" | undefined;
|
|
@@ -174,7 +174,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
174
174
|
} : Omit<{
|
|
175
175
|
type: PropType<any[]>;
|
|
176
176
|
default: () => never[];
|
|
177
|
-
}, "
|
|
177
|
+
}, "default" | "type"> & {
|
|
178
178
|
type: PropType<unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"]>;
|
|
179
179
|
default: unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"];
|
|
180
180
|
};
|
|
@@ -184,7 +184,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
184
184
|
} : Omit<{
|
|
185
185
|
type: PropType<any>;
|
|
186
186
|
default: string;
|
|
187
|
-
}, "
|
|
187
|
+
}, "default" | "type"> & {
|
|
188
188
|
type: PropType<unknown extends Defaults["itemKey"] ? any : any>;
|
|
189
189
|
default: unknown extends Defaults["itemKey"] ? any : any;
|
|
190
190
|
};
|
|
@@ -194,7 +194,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
194
194
|
} : Omit<{
|
|
195
195
|
type: PropType<any>;
|
|
196
196
|
default: null;
|
|
197
|
-
}, "
|
|
197
|
+
}, "default" | "type"> & {
|
|
198
198
|
type: PropType<unknown extends Defaults["itemSelectable"] ? any : any>;
|
|
199
199
|
default: unknown extends Defaults["itemSelectable"] ? any : any;
|
|
200
200
|
};
|
|
@@ -240,7 +240,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
240
240
|
readonly mustSort?: boolean | undefined;
|
|
241
241
|
}[]>;
|
|
242
242
|
default: () => never[];
|
|
243
|
-
}, "
|
|
243
|
+
}, "default" | "type"> & {
|
|
244
244
|
type: PropType<unknown extends Defaults["headers"] ? readonly {
|
|
245
245
|
readonly key: string;
|
|
246
246
|
readonly text: string;
|
|
@@ -338,7 +338,7 @@ export declare const pressDataTableProps: <Defaults extends {
|
|
|
338
338
|
} : Omit<{
|
|
339
339
|
type: StringConstructor;
|
|
340
340
|
default: string;
|
|
341
|
-
}, "
|
|
341
|
+
}, "default" | "type"> & {
|
|
342
342
|
type: PropType<unknown extends Defaults["noDataText"] ? string : string | Defaults["noDataText"]>;
|
|
343
343
|
default: unknown extends Defaults["noDataText"] ? string : string | Defaults["noDataText"];
|
|
344
344
|
};
|
|
@@ -21,7 +21,7 @@ export declare const pressYDataTableBodyProps: <Defaults extends {
|
|
|
21
21
|
} : Omit<{
|
|
22
22
|
type: PropType<readonly DataTableItem<any>[]>;
|
|
23
23
|
default: () => never[];
|
|
24
|
-
}, "
|
|
24
|
+
}, "default" | "type"> & {
|
|
25
25
|
type: PropType<unknown extends Defaults["items"] ? readonly DataTableItem<any>[] : readonly DataTableItem<any>[] | Defaults["items"]>;
|
|
26
26
|
default: unknown extends Defaults["items"] ? readonly DataTableItem<any>[] : readonly DataTableItem<any>[] | Defaults["items"];
|
|
27
27
|
};
|
|
@@ -43,7 +43,7 @@ export declare const pressYDataTableBodyProps: <Defaults extends {
|
|
|
43
43
|
} : Omit<{
|
|
44
44
|
type: StringConstructor;
|
|
45
45
|
default: string;
|
|
46
|
-
}, "
|
|
46
|
+
}, "default" | "type"> & {
|
|
47
47
|
type: PropType<unknown extends Defaults["noDataText"] ? string : string | Defaults["noDataText"]>;
|
|
48
48
|
default: unknown extends Defaults["noDataText"] ? string : string | Defaults["noDataText"];
|
|
49
49
|
};
|