sprintify-ui 0.0.9 → 0.0.11
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/README.md +14 -3
- package/dist/sprintify-ui.es.js +3851 -6637
- package/dist/style.css +2 -2
- package/dist/tailwindcss/index.js +283 -32
- package/dist/types/src/components/BaseAutocomplete.vue.d.ts +0 -1
- package/dist/types/src/components/BaseAutocompleteFetch.vue.d.ts +0 -1
- package/dist/types/src/components/BaseBelongsTo.vue.d.ts +13 -3
- package/dist/types/src/components/BaseDataTable.vue.d.ts +95 -64
- package/dist/types/src/components/BaseDialog.vue.d.ts +8 -8
- package/dist/types/src/components/BaseFilePicker.vue.d.ts +3 -3
- package/dist/types/src/components/BaseLoadingCover.vue.d.ts +12 -12
- package/dist/types/src/components/BaseMenuItem.vue.d.ts +4 -4
- package/dist/types/src/components/BaseNavbarItemContent.vue.d.ts +4 -4
- package/dist/types/src/components/BaseTableColumn.vue.d.ts +4 -4
- package/dist/types/src/svg/BaseEmptyState.vue.d.ts +2 -0
- package/dist/types/src/{components/BaseSpinner.vue.d.ts → svg/BaseSpinnerLarge.vue.d.ts} +0 -0
- package/dist/types/src/svg/BaseSpinnerSmall.vue.d.ts +44 -0
- package/dist/types/src/types/types.d.ts +1 -1
- package/package.json +4 -2
- package/src/assets/form.css +1 -10
- package/src/assets/main.css +0 -1
- package/src/assets/tailwind.css +3 -5
- package/src/components/BaseAutocomplete.stories.js +7 -4
- package/src/components/BaseAutocomplete.vue +44 -15
- package/src/components/BaseAutocompleteFetch.stories.js +6 -3
- package/src/components/BaseAutocompleteFetch.vue +8 -3
- package/src/components/BaseBelongsTo.stories.js +9 -4
- package/src/components/BaseBelongsTo.vue +1 -0
- package/src/components/BaseButton.stories.js +11 -3
- package/src/components/BaseCard.vue +1 -1
- package/src/components/BaseDataIterator.stories.js +102 -3
- package/src/components/BaseDataIterator.vue +44 -12
- package/src/components/BaseDataTable.stories.js +149 -2
- package/src/components/BaseDataTable.vue +34 -28
- package/src/components/BaseDataTableToggleColumns.vue +1 -1
- package/src/components/BaseDateSelect.vue +6 -2
- package/src/components/BaseDescriptionListItem.vue +40 -4
- package/src/components/BaseDialog.stories.js +51 -0
- package/src/components/BaseDialog.vue +13 -7
- package/src/components/BaseFilePicker.stories.js +51 -0
- package/src/components/BaseFilePicker.vue +6 -6
- package/src/components/BaseFileUploader.stories.js +80 -0
- package/src/components/BaseFileUploader.vue +12 -3
- package/src/components/BaseLoadingCover.vue +8 -16
- package/src/components/BaseTable.vue +42 -29
- package/src/components/BaseTableColumn.vue +2 -2
- package/src/svg/BaseEmptyState.vue +34 -0
- package/src/{components/BaseSpinner.vue → svg/BaseSpinnerLarge.vue} +0 -0
- package/src/svg/BaseSpinnerSmall.vue +9 -0
- package/src/types/types.ts +1 -1
- package/src/assets/button.css +0 -80
|
@@ -19,9 +19,10 @@ declare const _default: {
|
|
|
19
19
|
hasDetailedVisible: (row: any) => boolean;
|
|
20
20
|
maxHeight: number;
|
|
21
21
|
editButton: boolean;
|
|
22
|
-
deleteButton: boolean;
|
|
23
22
|
editUrl: (row: CollectionItem) => string;
|
|
23
|
+
deleteButton: boolean;
|
|
24
24
|
deleteUrl: (row: CollectionItem) => string;
|
|
25
|
+
toggleable: boolean;
|
|
25
26
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
26
27
|
/**
|
|
27
28
|
* Base URL from which to make requests
|
|
@@ -30,20 +31,6 @@ declare const _default: {
|
|
|
30
31
|
required: true;
|
|
31
32
|
type: StringConstructor;
|
|
32
33
|
};
|
|
33
|
-
/**
|
|
34
|
-
* Show/Hide edit button
|
|
35
|
-
*/
|
|
36
|
-
editButton: {
|
|
37
|
-
default: boolean;
|
|
38
|
-
type: BooleanConstructor;
|
|
39
|
-
};
|
|
40
|
-
/**
|
|
41
|
-
* Show/Hide delete button
|
|
42
|
-
*/
|
|
43
|
-
deleteButton: {
|
|
44
|
-
default: boolean;
|
|
45
|
-
type: BooleanConstructor;
|
|
46
|
-
};
|
|
47
34
|
/**
|
|
48
35
|
* Route key name for Laravel route model binding
|
|
49
36
|
*/
|
|
@@ -66,6 +53,13 @@ declare const _default: {
|
|
|
66
53
|
default: undefined;
|
|
67
54
|
type: PropType<DataTableQuery>;
|
|
68
55
|
};
|
|
56
|
+
/**
|
|
57
|
+
* Show/Hide edit button
|
|
58
|
+
*/
|
|
59
|
+
editButton: {
|
|
60
|
+
default: boolean;
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
};
|
|
69
63
|
/**
|
|
70
64
|
* Edit url for router link
|
|
71
65
|
*/
|
|
@@ -73,6 +67,13 @@ declare const _default: {
|
|
|
73
67
|
default: undefined;
|
|
74
68
|
type: PropType<(row: CollectionItem) => string>;
|
|
75
69
|
};
|
|
70
|
+
/**
|
|
71
|
+
* Show/Hide delete button
|
|
72
|
+
*/
|
|
73
|
+
deleteButton: {
|
|
74
|
+
default: boolean;
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
};
|
|
76
77
|
/**
|
|
77
78
|
* Delete endpoint to delete an item
|
|
78
79
|
*/
|
|
@@ -88,7 +89,7 @@ declare const _default: {
|
|
|
88
89
|
type: BooleanConstructor;
|
|
89
90
|
};
|
|
90
91
|
/**
|
|
91
|
-
*
|
|
92
|
+
* Check is a given row has details
|
|
92
93
|
*/
|
|
93
94
|
hasDetailedVisible: {
|
|
94
95
|
default(): boolean;
|
|
@@ -129,6 +130,13 @@ declare const _default: {
|
|
|
129
130
|
default: boolean;
|
|
130
131
|
type: BooleanConstructor;
|
|
131
132
|
};
|
|
133
|
+
/**
|
|
134
|
+
* Shows the column toggle utility
|
|
135
|
+
*/
|
|
136
|
+
toggleable: {
|
|
137
|
+
default: boolean;
|
|
138
|
+
type: BooleanConstructor;
|
|
139
|
+
};
|
|
132
140
|
/**
|
|
133
141
|
* Actions
|
|
134
142
|
*/
|
|
@@ -153,7 +161,7 @@ declare const _default: {
|
|
|
153
161
|
onCheckAll?: ((...args: any[]) => any) | undefined;
|
|
154
162
|
"onUpdate:checked-rows"?: ((...args: any[]) => any) | undefined;
|
|
155
163
|
onCheck?: ((...args: any[]) => any) | undefined;
|
|
156
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "actions" | "routeKeyName" | "urlQuery" | "defaultQuery" | "searchable" | "historyMode" | "detailed" | "checkable" | "checkableActions" | "isRowCheckable" | "checkedRows" | "hasDetailedVisible" | "maxHeight" | "editButton" | "
|
|
164
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "actions" | "routeKeyName" | "urlQuery" | "defaultQuery" | "searchable" | "historyMode" | "detailed" | "checkable" | "checkableActions" | "isRowCheckable" | "checkedRows" | "hasDetailedVisible" | "maxHeight" | "editButton" | "editUrl" | "deleteButton" | "deleteUrl" | "toggleable">;
|
|
157
165
|
$attrs: {
|
|
158
166
|
[x: string]: unknown;
|
|
159
167
|
};
|
|
@@ -175,20 +183,6 @@ declare const _default: {
|
|
|
175
183
|
required: true;
|
|
176
184
|
type: StringConstructor;
|
|
177
185
|
};
|
|
178
|
-
/**
|
|
179
|
-
* Show/Hide edit button
|
|
180
|
-
*/
|
|
181
|
-
editButton: {
|
|
182
|
-
default: boolean;
|
|
183
|
-
type: BooleanConstructor;
|
|
184
|
-
};
|
|
185
|
-
/**
|
|
186
|
-
* Show/Hide delete button
|
|
187
|
-
*/
|
|
188
|
-
deleteButton: {
|
|
189
|
-
default: boolean;
|
|
190
|
-
type: BooleanConstructor;
|
|
191
|
-
};
|
|
192
186
|
/**
|
|
193
187
|
* Route key name for Laravel route model binding
|
|
194
188
|
*/
|
|
@@ -211,6 +205,13 @@ declare const _default: {
|
|
|
211
205
|
default: undefined;
|
|
212
206
|
type: PropType<DataTableQuery>;
|
|
213
207
|
};
|
|
208
|
+
/**
|
|
209
|
+
* Show/Hide edit button
|
|
210
|
+
*/
|
|
211
|
+
editButton: {
|
|
212
|
+
default: boolean;
|
|
213
|
+
type: BooleanConstructor;
|
|
214
|
+
};
|
|
214
215
|
/**
|
|
215
216
|
* Edit url for router link
|
|
216
217
|
*/
|
|
@@ -218,6 +219,13 @@ declare const _default: {
|
|
|
218
219
|
default: undefined;
|
|
219
220
|
type: PropType<(row: CollectionItem) => string>;
|
|
220
221
|
};
|
|
222
|
+
/**
|
|
223
|
+
* Show/Hide delete button
|
|
224
|
+
*/
|
|
225
|
+
deleteButton: {
|
|
226
|
+
default: boolean;
|
|
227
|
+
type: BooleanConstructor;
|
|
228
|
+
};
|
|
221
229
|
/**
|
|
222
230
|
* Delete endpoint to delete an item
|
|
223
231
|
*/
|
|
@@ -233,7 +241,7 @@ declare const _default: {
|
|
|
233
241
|
type: BooleanConstructor;
|
|
234
242
|
};
|
|
235
243
|
/**
|
|
236
|
-
*
|
|
244
|
+
* Check is a given row has details
|
|
237
245
|
*/
|
|
238
246
|
hasDetailedVisible: {
|
|
239
247
|
default(): boolean;
|
|
@@ -274,6 +282,13 @@ declare const _default: {
|
|
|
274
282
|
default: boolean;
|
|
275
283
|
type: BooleanConstructor;
|
|
276
284
|
};
|
|
285
|
+
/**
|
|
286
|
+
* Shows the column toggle utility
|
|
287
|
+
*/
|
|
288
|
+
toggleable: {
|
|
289
|
+
default: boolean;
|
|
290
|
+
type: BooleanConstructor;
|
|
291
|
+
};
|
|
277
292
|
/**
|
|
278
293
|
* Actions
|
|
279
294
|
*/
|
|
@@ -316,9 +331,10 @@ declare const _default: {
|
|
|
316
331
|
hasDetailedVisible: (row: any) => boolean;
|
|
317
332
|
maxHeight: number;
|
|
318
333
|
editButton: boolean;
|
|
319
|
-
deleteButton: boolean;
|
|
320
334
|
editUrl: (row: CollectionItem) => string;
|
|
335
|
+
deleteButton: boolean;
|
|
321
336
|
deleteUrl: (row: CollectionItem) => string;
|
|
337
|
+
toggleable: boolean;
|
|
322
338
|
}, {}, string> & {
|
|
323
339
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
324
340
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -347,20 +363,6 @@ declare const _default: {
|
|
|
347
363
|
required: true;
|
|
348
364
|
type: StringConstructor;
|
|
349
365
|
};
|
|
350
|
-
/**
|
|
351
|
-
* Show/Hide edit button
|
|
352
|
-
*/
|
|
353
|
-
editButton: {
|
|
354
|
-
default: boolean;
|
|
355
|
-
type: BooleanConstructor;
|
|
356
|
-
};
|
|
357
|
-
/**
|
|
358
|
-
* Show/Hide delete button
|
|
359
|
-
*/
|
|
360
|
-
deleteButton: {
|
|
361
|
-
default: boolean;
|
|
362
|
-
type: BooleanConstructor;
|
|
363
|
-
};
|
|
364
366
|
/**
|
|
365
367
|
* Route key name for Laravel route model binding
|
|
366
368
|
*/
|
|
@@ -383,6 +385,13 @@ declare const _default: {
|
|
|
383
385
|
default: undefined;
|
|
384
386
|
type: PropType<DataTableQuery>;
|
|
385
387
|
};
|
|
388
|
+
/**
|
|
389
|
+
* Show/Hide edit button
|
|
390
|
+
*/
|
|
391
|
+
editButton: {
|
|
392
|
+
default: boolean;
|
|
393
|
+
type: BooleanConstructor;
|
|
394
|
+
};
|
|
386
395
|
/**
|
|
387
396
|
* Edit url for router link
|
|
388
397
|
*/
|
|
@@ -390,6 +399,13 @@ declare const _default: {
|
|
|
390
399
|
default: undefined;
|
|
391
400
|
type: PropType<(row: CollectionItem) => string>;
|
|
392
401
|
};
|
|
402
|
+
/**
|
|
403
|
+
* Show/Hide delete button
|
|
404
|
+
*/
|
|
405
|
+
deleteButton: {
|
|
406
|
+
default: boolean;
|
|
407
|
+
type: BooleanConstructor;
|
|
408
|
+
};
|
|
393
409
|
/**
|
|
394
410
|
* Delete endpoint to delete an item
|
|
395
411
|
*/
|
|
@@ -405,7 +421,7 @@ declare const _default: {
|
|
|
405
421
|
type: BooleanConstructor;
|
|
406
422
|
};
|
|
407
423
|
/**
|
|
408
|
-
*
|
|
424
|
+
* Check is a given row has details
|
|
409
425
|
*/
|
|
410
426
|
hasDetailedVisible: {
|
|
411
427
|
default(): boolean;
|
|
@@ -446,6 +462,13 @@ declare const _default: {
|
|
|
446
462
|
default: boolean;
|
|
447
463
|
type: BooleanConstructor;
|
|
448
464
|
};
|
|
465
|
+
/**
|
|
466
|
+
* Shows the column toggle utility
|
|
467
|
+
*/
|
|
468
|
+
toggleable: {
|
|
469
|
+
default: boolean;
|
|
470
|
+
type: BooleanConstructor;
|
|
471
|
+
};
|
|
449
472
|
/**
|
|
450
473
|
* Actions
|
|
451
474
|
*/
|
|
@@ -485,20 +508,6 @@ declare const _default: {
|
|
|
485
508
|
required: true;
|
|
486
509
|
type: StringConstructor;
|
|
487
510
|
};
|
|
488
|
-
/**
|
|
489
|
-
* Show/Hide edit button
|
|
490
|
-
*/
|
|
491
|
-
editButton: {
|
|
492
|
-
default: boolean;
|
|
493
|
-
type: BooleanConstructor;
|
|
494
|
-
};
|
|
495
|
-
/**
|
|
496
|
-
* Show/Hide delete button
|
|
497
|
-
*/
|
|
498
|
-
deleteButton: {
|
|
499
|
-
default: boolean;
|
|
500
|
-
type: BooleanConstructor;
|
|
501
|
-
};
|
|
502
511
|
/**
|
|
503
512
|
* Route key name for Laravel route model binding
|
|
504
513
|
*/
|
|
@@ -521,6 +530,13 @@ declare const _default: {
|
|
|
521
530
|
default: undefined;
|
|
522
531
|
type: PropType<DataTableQuery>;
|
|
523
532
|
};
|
|
533
|
+
/**
|
|
534
|
+
* Show/Hide edit button
|
|
535
|
+
*/
|
|
536
|
+
editButton: {
|
|
537
|
+
default: boolean;
|
|
538
|
+
type: BooleanConstructor;
|
|
539
|
+
};
|
|
524
540
|
/**
|
|
525
541
|
* Edit url for router link
|
|
526
542
|
*/
|
|
@@ -528,6 +544,13 @@ declare const _default: {
|
|
|
528
544
|
default: undefined;
|
|
529
545
|
type: PropType<(row: CollectionItem) => string>;
|
|
530
546
|
};
|
|
547
|
+
/**
|
|
548
|
+
* Show/Hide delete button
|
|
549
|
+
*/
|
|
550
|
+
deleteButton: {
|
|
551
|
+
default: boolean;
|
|
552
|
+
type: BooleanConstructor;
|
|
553
|
+
};
|
|
531
554
|
/**
|
|
532
555
|
* Delete endpoint to delete an item
|
|
533
556
|
*/
|
|
@@ -543,7 +566,7 @@ declare const _default: {
|
|
|
543
566
|
type: BooleanConstructor;
|
|
544
567
|
};
|
|
545
568
|
/**
|
|
546
|
-
*
|
|
569
|
+
* Check is a given row has details
|
|
547
570
|
*/
|
|
548
571
|
hasDetailedVisible: {
|
|
549
572
|
default(): boolean;
|
|
@@ -584,6 +607,13 @@ declare const _default: {
|
|
|
584
607
|
default: boolean;
|
|
585
608
|
type: BooleanConstructor;
|
|
586
609
|
};
|
|
610
|
+
/**
|
|
611
|
+
* Shows the column toggle utility
|
|
612
|
+
*/
|
|
613
|
+
toggleable: {
|
|
614
|
+
default: boolean;
|
|
615
|
+
type: BooleanConstructor;
|
|
616
|
+
};
|
|
587
617
|
/**
|
|
588
618
|
* Actions
|
|
589
619
|
*/
|
|
@@ -626,9 +656,10 @@ declare const _default: {
|
|
|
626
656
|
hasDetailedVisible: (row: any) => boolean;
|
|
627
657
|
maxHeight: number;
|
|
628
658
|
editButton: boolean;
|
|
629
|
-
deleteButton: boolean;
|
|
630
659
|
editUrl: (row: CollectionItem) => string;
|
|
660
|
+
deleteButton: boolean;
|
|
631
661
|
deleteUrl: (row: CollectionItem) => string;
|
|
662
|
+
toggleable: boolean;
|
|
632
663
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
633
664
|
$slots: {
|
|
634
665
|
default: (_: {}) => any;
|
|
@@ -22,11 +22,11 @@ declare const _default: {
|
|
|
22
22
|
type: StringConstructor;
|
|
23
23
|
};
|
|
24
24
|
confirmText: {
|
|
25
|
-
default: string;
|
|
25
|
+
default(): string;
|
|
26
26
|
type: StringConstructor;
|
|
27
27
|
};
|
|
28
28
|
cancelText: {
|
|
29
|
-
default: string;
|
|
29
|
+
default(): string;
|
|
30
30
|
type: StringConstructor;
|
|
31
31
|
};
|
|
32
32
|
}>> & {
|
|
@@ -60,11 +60,11 @@ declare const _default: {
|
|
|
60
60
|
type: StringConstructor;
|
|
61
61
|
};
|
|
62
62
|
confirmText: {
|
|
63
|
-
default: string;
|
|
63
|
+
default(): string;
|
|
64
64
|
type: StringConstructor;
|
|
65
65
|
};
|
|
66
66
|
cancelText: {
|
|
67
|
-
default: string;
|
|
67
|
+
default(): string;
|
|
68
68
|
type: StringConstructor;
|
|
69
69
|
};
|
|
70
70
|
}>> & {
|
|
@@ -109,11 +109,11 @@ declare const _default: {
|
|
|
109
109
|
type: StringConstructor;
|
|
110
110
|
};
|
|
111
111
|
confirmText: {
|
|
112
|
-
default: string;
|
|
112
|
+
default(): string;
|
|
113
113
|
type: StringConstructor;
|
|
114
114
|
};
|
|
115
115
|
cancelText: {
|
|
116
|
-
default: string;
|
|
116
|
+
default(): string;
|
|
117
117
|
type: StringConstructor;
|
|
118
118
|
};
|
|
119
119
|
}>> & {
|
|
@@ -137,11 +137,11 @@ declare const _default: {
|
|
|
137
137
|
type: StringConstructor;
|
|
138
138
|
};
|
|
139
139
|
confirmText: {
|
|
140
|
-
default: string;
|
|
140
|
+
default(): string;
|
|
141
141
|
type: StringConstructor;
|
|
142
142
|
};
|
|
143
143
|
cancelText: {
|
|
144
|
-
default: string;
|
|
144
|
+
default(): string;
|
|
145
145
|
type: StringConstructor;
|
|
146
146
|
};
|
|
147
147
|
}>> & {
|
|
@@ -20,8 +20,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
20
20
|
pickFile(): Promise<void>;
|
|
21
21
|
onInputChange(): void;
|
|
22
22
|
handleDrop(e: any): void;
|
|
23
|
-
|
|
24
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "
|
|
23
|
+
select(files: File[]): Promise<void>;
|
|
24
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], "select", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
25
|
disabled: {
|
|
26
26
|
default: boolean;
|
|
27
27
|
type: BooleanConstructor;
|
|
@@ -35,7 +35,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
35
35
|
type: StringConstructor;
|
|
36
36
|
};
|
|
37
37
|
}>> & {
|
|
38
|
-
|
|
38
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
39
39
|
}, {
|
|
40
40
|
disabled: boolean;
|
|
41
41
|
accept: string;
|
|
@@ -5,10 +5,10 @@ declare const _default: {
|
|
|
5
5
|
$data: {};
|
|
6
6
|
$props: Partial<{
|
|
7
7
|
iconClass: string;
|
|
8
|
-
icon: "line" | "spinner";
|
|
9
8
|
duration: string;
|
|
10
9
|
delay: number;
|
|
11
10
|
modelValue: boolean;
|
|
11
|
+
size: "sm" | "lg";
|
|
12
12
|
backdropClass: string;
|
|
13
13
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
14
14
|
modelValue: {
|
|
@@ -23,9 +23,9 @@ declare const _default: {
|
|
|
23
23
|
default: string;
|
|
24
24
|
type: StringConstructor;
|
|
25
25
|
};
|
|
26
|
-
|
|
26
|
+
size: {
|
|
27
27
|
default: string;
|
|
28
|
-
type: PropType<"
|
|
28
|
+
type: PropType<"sm" | "lg">;
|
|
29
29
|
};
|
|
30
30
|
duration: {
|
|
31
31
|
default: string;
|
|
@@ -35,7 +35,7 @@ declare const _default: {
|
|
|
35
35
|
default: number;
|
|
36
36
|
type: NumberConstructor;
|
|
37
37
|
};
|
|
38
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "iconClass" | "
|
|
38
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "iconClass" | "duration" | "delay" | "modelValue" | "size" | "backdropClass">;
|
|
39
39
|
$attrs: {
|
|
40
40
|
[x: string]: unknown;
|
|
41
41
|
};
|
|
@@ -62,9 +62,9 @@ declare const _default: {
|
|
|
62
62
|
default: string;
|
|
63
63
|
type: StringConstructor;
|
|
64
64
|
};
|
|
65
|
-
|
|
65
|
+
size: {
|
|
66
66
|
default: string;
|
|
67
|
-
type: PropType<"
|
|
67
|
+
type: PropType<"sm" | "lg">;
|
|
68
68
|
};
|
|
69
69
|
duration: {
|
|
70
70
|
default: string;
|
|
@@ -76,10 +76,10 @@ declare const _default: {
|
|
|
76
76
|
};
|
|
77
77
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
78
78
|
iconClass: string;
|
|
79
|
-
icon: "line" | "spinner";
|
|
80
79
|
duration: string;
|
|
81
80
|
delay: number;
|
|
82
81
|
modelValue: boolean;
|
|
82
|
+
size: "sm" | "lg";
|
|
83
83
|
backdropClass: string;
|
|
84
84
|
}, {}, string> & {
|
|
85
85
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -114,9 +114,9 @@ declare const _default: {
|
|
|
114
114
|
default: string;
|
|
115
115
|
type: StringConstructor;
|
|
116
116
|
};
|
|
117
|
-
|
|
117
|
+
size: {
|
|
118
118
|
default: string;
|
|
119
|
-
type: PropType<"
|
|
119
|
+
type: PropType<"sm" | "lg">;
|
|
120
120
|
};
|
|
121
121
|
duration: {
|
|
122
122
|
default: string;
|
|
@@ -143,9 +143,9 @@ declare const _default: {
|
|
|
143
143
|
default: string;
|
|
144
144
|
type: StringConstructor;
|
|
145
145
|
};
|
|
146
|
-
|
|
146
|
+
size: {
|
|
147
147
|
default: string;
|
|
148
|
-
type: PropType<"
|
|
148
|
+
type: PropType<"sm" | "lg">;
|
|
149
149
|
};
|
|
150
150
|
duration: {
|
|
151
151
|
default: string;
|
|
@@ -157,10 +157,10 @@ declare const _default: {
|
|
|
157
157
|
};
|
|
158
158
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
159
159
|
iconClass: string;
|
|
160
|
-
icon: "line" | "spinner";
|
|
161
160
|
duration: string;
|
|
162
161
|
delay: number;
|
|
163
162
|
modelValue: boolean;
|
|
163
|
+
size: "sm" | "lg";
|
|
164
164
|
backdropClass: string;
|
|
165
165
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
166
166
|
export default _default;
|
|
@@ -4,9 +4,9 @@ declare const _default: {
|
|
|
4
4
|
$: import("vue").ComponentInternalInstance;
|
|
5
5
|
$data: {};
|
|
6
6
|
$props: Partial<{
|
|
7
|
-
label: string;
|
|
8
7
|
color: "success" | "danger" | "warning" | "dark" | "light";
|
|
9
8
|
icon: string;
|
|
9
|
+
label: string;
|
|
10
10
|
count: number;
|
|
11
11
|
active: boolean;
|
|
12
12
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -30,7 +30,7 @@ declare const _default: {
|
|
|
30
30
|
default: string;
|
|
31
31
|
type: PropType<"success" | "danger" | "warning" | "dark" | "light">;
|
|
32
32
|
};
|
|
33
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
33
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "color" | "icon" | "label" | "count" | "active">;
|
|
34
34
|
$attrs: {
|
|
35
35
|
[x: string]: unknown;
|
|
36
36
|
};
|
|
@@ -66,9 +66,9 @@ declare const _default: {
|
|
|
66
66
|
type: PropType<"success" | "danger" | "warning" | "dark" | "light">;
|
|
67
67
|
};
|
|
68
68
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
69
|
-
label: string;
|
|
70
69
|
color: "success" | "danger" | "warning" | "dark" | "light";
|
|
71
70
|
icon: string;
|
|
71
|
+
label: string;
|
|
72
72
|
count: number;
|
|
73
73
|
active: boolean;
|
|
74
74
|
}, {}, string> & {
|
|
@@ -138,9 +138,9 @@ declare const _default: {
|
|
|
138
138
|
type: PropType<"success" | "danger" | "warning" | "dark" | "light">;
|
|
139
139
|
};
|
|
140
140
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
141
|
-
label: string;
|
|
142
141
|
color: "success" | "danger" | "warning" | "dark" | "light";
|
|
143
142
|
icon: string;
|
|
143
|
+
label: string;
|
|
144
144
|
count: number;
|
|
145
145
|
active: boolean;
|
|
146
146
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
@@ -3,8 +3,8 @@ declare const _default: {
|
|
|
3
3
|
$: import("vue").ComponentInternalInstance;
|
|
4
4
|
$data: {};
|
|
5
5
|
$props: Partial<{
|
|
6
|
-
label: string;
|
|
7
6
|
icon: string;
|
|
7
|
+
label: string;
|
|
8
8
|
count: number;
|
|
9
9
|
active: boolean;
|
|
10
10
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -24,7 +24,7 @@ declare const _default: {
|
|
|
24
24
|
default: undefined;
|
|
25
25
|
type: NumberConstructor;
|
|
26
26
|
};
|
|
27
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
27
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "icon" | "label" | "count" | "active">;
|
|
28
28
|
$attrs: {
|
|
29
29
|
[x: string]: unknown;
|
|
30
30
|
};
|
|
@@ -56,8 +56,8 @@ declare const _default: {
|
|
|
56
56
|
type: NumberConstructor;
|
|
57
57
|
};
|
|
58
58
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
59
|
-
label: string;
|
|
60
59
|
icon: string;
|
|
60
|
+
label: string;
|
|
61
61
|
count: number;
|
|
62
62
|
active: boolean;
|
|
63
63
|
}, {}, string> & {
|
|
@@ -119,8 +119,8 @@ declare const _default: {
|
|
|
119
119
|
type: NumberConstructor;
|
|
120
120
|
};
|
|
121
121
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
122
|
-
label: string;
|
|
123
122
|
icon: string;
|
|
123
|
+
label: string;
|
|
124
124
|
count: number;
|
|
125
125
|
active: boolean;
|
|
126
126
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
@@ -40,7 +40,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
40
|
type: BooleanConstructor;
|
|
41
41
|
default: boolean;
|
|
42
42
|
};
|
|
43
|
-
|
|
43
|
+
toggle: {
|
|
44
44
|
type: BooleanConstructor;
|
|
45
45
|
default: boolean;
|
|
46
46
|
};
|
|
@@ -117,7 +117,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
117
117
|
type: BooleanConstructor;
|
|
118
118
|
default: boolean;
|
|
119
119
|
};
|
|
120
|
-
|
|
120
|
+
toggle: {
|
|
121
121
|
type: BooleanConstructor;
|
|
122
122
|
default: boolean;
|
|
123
123
|
};
|
|
@@ -146,15 +146,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
146
146
|
}>>, {
|
|
147
147
|
label: string;
|
|
148
148
|
meta: Record<string, any> | unknown[];
|
|
149
|
-
field: string;
|
|
150
149
|
width: number;
|
|
150
|
+
toggle: boolean;
|
|
151
|
+
field: string;
|
|
151
152
|
position: "left" | "right" | "center";
|
|
152
153
|
searchable: boolean;
|
|
153
154
|
customKey: string | number;
|
|
154
155
|
numeric: boolean;
|
|
155
156
|
sortable: boolean;
|
|
156
157
|
visible: boolean;
|
|
157
|
-
alwaysVisible: boolean;
|
|
158
158
|
optional: boolean;
|
|
159
159
|
customSort: Function;
|
|
160
160
|
customSearch: Function;
|
|
File without changes
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): {
|
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
|
4
|
+
$data: {};
|
|
5
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
6
|
+
$attrs: {
|
|
7
|
+
[x: string]: unknown;
|
|
8
|
+
};
|
|
9
|
+
$refs: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
};
|
|
12
|
+
$slots: Readonly<{
|
|
13
|
+
[name: string]: import("vue").Slot | undefined;
|
|
14
|
+
}>;
|
|
15
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
16
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
17
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
18
|
+
$el: any;
|
|
19
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
|
20
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
21
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
22
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
23
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
24
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
25
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
26
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
27
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
28
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
29
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
30
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
31
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
32
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
33
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
34
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
35
|
+
};
|
|
36
|
+
$forceUpdate: () => void;
|
|
37
|
+
$nextTick: typeof import("vue").nextTick;
|
|
38
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
39
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
40
|
+
__isFragment?: undefined;
|
|
41
|
+
__isTeleport?: undefined;
|
|
42
|
+
__isSuspense?: undefined;
|
|
43
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
44
|
+
export default _default;
|