@privyid/persona 1.2.2-rc.8 → 1.2.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/components/button/Button.vue.d.ts +1 -1
- package/dist/components/card/Card.vue.d.ts +2 -2
- package/dist/components/carousel/Carousel.vue.d.ts +1 -1
- package/dist/components/chart/Chart.vue.d.ts +1 -1
- package/dist/components/datepicker/Datepicker.vue.d.ts +3 -3
- package/dist/components/dropdown/Dropdown.vue.d.ts +1 -1
- package/dist/components/filterbar/Filterbar.vue.d.ts +18 -18
- package/dist/components/filterbar/pinned/PinnedDate.vue.d.ts +3 -3
- package/dist/components/filterbar/pinned/PinnedMultiselect.vue.d.ts +3 -3
- package/dist/components/filterbar/pinned/PinnedSelect.vue.d.ts +3 -3
- package/dist/components/filterbar/pinned/PinnedToggle.vue.d.ts +3 -3
- package/dist/components/input-range/InputRange.vue.d.ts +1 -1
- package/dist/components/meta.json +45 -45
- package/dist/components/modal/Modal.vue.d.ts +1 -1
- package/dist/components/pdf-viewer/PdfViewer.vue.d.ts +2 -2
- package/dist/components/popup/Popup.vue +1 -1
- package/dist/components/pspdfkit/PspdfViewer.vue.d.ts +2 -2
- package/dist/components/select/Select.vue.d.ts +6 -6
- package/dist/components/table-flex/TableFlex.vue.d.ts +3 -3
- package/dist/components/table-static/TableStatic.vue.d.ts +4 -4
- package/dist/components/table-static/TableStaticRoot.vue.d.ts +1 -1
- package/dist/components/timepicker/Timepicker.vue.d.ts +1 -1
- package/dist/module.json +1 -1
- package/package.json +1 -1
|
@@ -95,8 +95,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
95
95
|
icon: boolean;
|
|
96
96
|
pill: boolean;
|
|
97
97
|
variant: StyleVariant;
|
|
98
|
-
color: ColorVariant;
|
|
99
98
|
href: string | import("vue-router").RouteLocationAsRelativeGeneric | import("vue-router").RouteLocationAsPathGeneric;
|
|
99
|
+
color: ColorVariant;
|
|
100
100
|
loading: boolean;
|
|
101
101
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
102
102
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -102,11 +102,11 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
102
102
|
title: string;
|
|
103
103
|
disabled: boolean;
|
|
104
104
|
dismissable: boolean;
|
|
105
|
-
readonly: boolean;
|
|
106
105
|
element: ElementVariant;
|
|
107
|
-
bodyClass: string | unknown[];
|
|
108
106
|
sectioned: boolean;
|
|
107
|
+
readonly: boolean;
|
|
109
108
|
callout: boolean;
|
|
109
|
+
bodyClass: string | unknown[];
|
|
110
110
|
spacing: SpacingVariant;
|
|
111
111
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
112
112
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -106,9 +106,9 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
106
106
|
modelValue: number;
|
|
107
107
|
width: string | number;
|
|
108
108
|
height: string | number;
|
|
109
|
+
direction: DirectionVariant;
|
|
109
110
|
align: AlignmentVariant;
|
|
110
111
|
autoplay: boolean;
|
|
111
|
-
direction: DirectionVariant;
|
|
112
112
|
loop: boolean;
|
|
113
113
|
autoplayInterval: string | number;
|
|
114
114
|
splideOptions: Options;
|
|
@@ -49,7 +49,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
49
49
|
default: undefined;
|
|
50
50
|
};
|
|
51
51
|
}>> & Readonly<{}>, {
|
|
52
|
-
data: ChartData<keyof import("chart.js/auto").ChartTypeRegistry, (number | import("chart.js/auto").Point |
|
|
52
|
+
data: ChartData<keyof import("chart.js/auto").ChartTypeRegistry, (number | [number, number] | import("chart.js/auto").Point | import("chart.js/auto").BubbleDataPoint | null)[], unknown>;
|
|
53
53
|
legend: LegendPosition;
|
|
54
54
|
variant: keyof import("chart.js/auto").ChartTypeRegistry;
|
|
55
55
|
options: import("chart.js/dist/types/utils")._DeepPartialObject<import("chart.js/auto").CoreChartOptions<keyof import("chart.js/auto").ChartTypeRegistry> & import("chart.js/auto").ElementChartOptions<keyof import("chart.js/auto").ChartTypeRegistry> & import("chart.js/auto").PluginChartOptions<keyof import("chart.js/auto").ChartTypeRegistry> & import("chart.js/auto").DatasetChartOptions<keyof import("chart.js/auto").ChartTypeRegistry> & import("chart.js/auto").ScaleChartOptions<keyof import("chart.js/auto").ChartTypeRegistry>>;
|
|
@@ -169,13 +169,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
169
169
|
start: Date;
|
|
170
170
|
end: Date;
|
|
171
171
|
readonly: boolean;
|
|
172
|
-
clearable: boolean;
|
|
173
|
-
containerClass: string | unknown[] | Record<string, any>;
|
|
174
|
-
placeholder: string;
|
|
175
172
|
min: Date;
|
|
176
173
|
range: boolean;
|
|
177
174
|
minRange: string;
|
|
178
175
|
maxRange: string;
|
|
176
|
+
clearable: boolean;
|
|
177
|
+
containerClass: string | unknown[] | Record<string, any>;
|
|
178
|
+
placeholder: string;
|
|
179
179
|
format: string;
|
|
180
180
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
181
181
|
export default _default;
|
|
@@ -284,8 +284,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
284
284
|
icon: boolean;
|
|
285
285
|
pill: boolean;
|
|
286
286
|
variant: StyleVariant;
|
|
287
|
-
color: ColorVariant;
|
|
288
287
|
divider: boolean;
|
|
288
|
+
color: ColorVariant;
|
|
289
289
|
placement: Placement;
|
|
290
290
|
menuClass: string | unknown[] | Record<string, any>;
|
|
291
291
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -75,8 +75,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
75
75
|
icon: boolean;
|
|
76
76
|
pill: boolean;
|
|
77
77
|
variant: import("../button").StyleVariant;
|
|
78
|
-
color: import("../button").ColorVariant;
|
|
79
78
|
href: string | import("vue-router").RouteLocationAsRelativeGeneric | import("vue-router").RouteLocationAsPathGeneric;
|
|
79
|
+
color: import("../button").ColorVariant;
|
|
80
80
|
loading: boolean;
|
|
81
81
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
82
82
|
P: {};
|
|
@@ -129,8 +129,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
129
129
|
icon: boolean;
|
|
130
130
|
pill: boolean;
|
|
131
131
|
variant: import("../button").StyleVariant;
|
|
132
|
-
color: import("../button").ColorVariant;
|
|
133
132
|
href: string | import("vue-router").RouteLocationAsRelativeGeneric | import("vue-router").RouteLocationAsPathGeneric;
|
|
133
|
+
color: import("../button").ColorVariant;
|
|
134
134
|
loading: boolean;
|
|
135
135
|
}>;
|
|
136
136
|
__isFragment?: never;
|
|
@@ -180,8 +180,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
180
180
|
icon: boolean;
|
|
181
181
|
pill: boolean;
|
|
182
182
|
variant: import("../button").StyleVariant;
|
|
183
|
-
color: import("../button").ColorVariant;
|
|
184
183
|
href: string | import("vue-router").RouteLocationAsRelativeGeneric | import("vue-router").RouteLocationAsPathGeneric;
|
|
184
|
+
color: import("../button").ColorVariant;
|
|
185
185
|
loading: boolean;
|
|
186
186
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
187
187
|
$slots: Readonly<{
|
|
@@ -277,8 +277,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
277
277
|
icon: boolean;
|
|
278
278
|
pill: boolean;
|
|
279
279
|
variant: import("../button").StyleVariant;
|
|
280
|
-
color: import("../button").ColorVariant;
|
|
281
280
|
divider: boolean;
|
|
281
|
+
color: import("../button").ColorVariant;
|
|
282
282
|
placement: import("@floating-ui/utils").Placement;
|
|
283
283
|
menuClass: string | unknown[] | Record<string, any>;
|
|
284
284
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -371,8 +371,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
371
371
|
icon: boolean;
|
|
372
372
|
pill: boolean;
|
|
373
373
|
variant: import("../button").StyleVariant;
|
|
374
|
-
color: import("../button").ColorVariant;
|
|
375
374
|
divider: boolean;
|
|
375
|
+
color: import("../button").ColorVariant;
|
|
376
376
|
placement: import("@floating-ui/utils").Placement;
|
|
377
377
|
menuClass: string | unknown[] | Record<string, any>;
|
|
378
378
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -466,8 +466,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
466
466
|
icon: boolean;
|
|
467
467
|
pill: boolean;
|
|
468
468
|
variant: import("../button").StyleVariant;
|
|
469
|
-
color: import("../button").ColorVariant;
|
|
470
469
|
divider: boolean;
|
|
470
|
+
color: import("../button").ColorVariant;
|
|
471
471
|
placement: import("@floating-ui/utils").Placement;
|
|
472
472
|
menuClass: string | unknown[] | Record<string, any>;
|
|
473
473
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -645,8 +645,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
645
645
|
icon: boolean;
|
|
646
646
|
pill: boolean;
|
|
647
647
|
variant: import("../button").StyleVariant;
|
|
648
|
-
color: import("../button").ColorVariant;
|
|
649
648
|
divider: boolean;
|
|
649
|
+
color: import("../button").ColorVariant;
|
|
650
650
|
placement: import("@floating-ui/utils").Placement;
|
|
651
651
|
menuClass: string | unknown[] | Record<string, any>;
|
|
652
652
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -739,8 +739,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
739
739
|
icon: boolean;
|
|
740
740
|
pill: boolean;
|
|
741
741
|
variant: import("../button").StyleVariant;
|
|
742
|
-
color: import("../button").ColorVariant;
|
|
743
742
|
divider: boolean;
|
|
743
|
+
color: import("../button").ColorVariant;
|
|
744
744
|
placement: import("@floating-ui/utils").Placement;
|
|
745
745
|
menuClass: string | unknown[] | Record<string, any>;
|
|
746
746
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -834,8 +834,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
834
834
|
icon: boolean;
|
|
835
835
|
pill: boolean;
|
|
836
836
|
variant: import("../button").StyleVariant;
|
|
837
|
-
color: import("../button").ColorVariant;
|
|
838
837
|
divider: boolean;
|
|
838
|
+
color: import("../button").ColorVariant;
|
|
839
839
|
placement: import("@floating-ui/utils").Placement;
|
|
840
840
|
menuClass: string | unknown[] | Record<string, any>;
|
|
841
841
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -1123,8 +1123,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1123
1123
|
icon: boolean;
|
|
1124
1124
|
pill: boolean;
|
|
1125
1125
|
variant: import("../button").StyleVariant;
|
|
1126
|
-
color: import("../button").ColorVariant;
|
|
1127
1126
|
divider: boolean;
|
|
1127
|
+
color: import("../button").ColorVariant;
|
|
1128
1128
|
placement: import("@floating-ui/utils").Placement;
|
|
1129
1129
|
menuClass: string | unknown[] | Record<string, any>;
|
|
1130
1130
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -1217,8 +1217,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1217
1217
|
icon: boolean;
|
|
1218
1218
|
pill: boolean;
|
|
1219
1219
|
variant: import("../button").StyleVariant;
|
|
1220
|
-
color: import("../button").ColorVariant;
|
|
1221
1220
|
divider: boolean;
|
|
1221
|
+
color: import("../button").ColorVariant;
|
|
1222
1222
|
placement: import("@floating-ui/utils").Placement;
|
|
1223
1223
|
menuClass: string | unknown[] | Record<string, any>;
|
|
1224
1224
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -1312,8 +1312,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1312
1312
|
icon: boolean;
|
|
1313
1313
|
pill: boolean;
|
|
1314
1314
|
variant: import("../button").StyleVariant;
|
|
1315
|
-
color: import("../button").ColorVariant;
|
|
1316
1315
|
divider: boolean;
|
|
1316
|
+
color: import("../button").ColorVariant;
|
|
1317
1317
|
placement: import("@floating-ui/utils").Placement;
|
|
1318
1318
|
menuClass: string | unknown[] | Record<string, any>;
|
|
1319
1319
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -1779,8 +1779,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1779
1779
|
icon: boolean;
|
|
1780
1780
|
pill: boolean;
|
|
1781
1781
|
variant: import("../button").StyleVariant;
|
|
1782
|
-
color: import("../button").ColorVariant;
|
|
1783
1782
|
divider: boolean;
|
|
1783
|
+
color: import("../button").ColorVariant;
|
|
1784
1784
|
placement: import("@floating-ui/utils").Placement;
|
|
1785
1785
|
menuClass: string | unknown[] | Record<string, any>;
|
|
1786
1786
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -1873,8 +1873,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1873
1873
|
icon: boolean;
|
|
1874
1874
|
pill: boolean;
|
|
1875
1875
|
variant: import("../button").StyleVariant;
|
|
1876
|
-
color: import("../button").ColorVariant;
|
|
1877
1876
|
divider: boolean;
|
|
1877
|
+
color: import("../button").ColorVariant;
|
|
1878
1878
|
placement: import("@floating-ui/utils").Placement;
|
|
1879
1879
|
menuClass: string | unknown[] | Record<string, any>;
|
|
1880
1880
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -1968,8 +1968,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1968
1968
|
icon: boolean;
|
|
1969
1969
|
pill: boolean;
|
|
1970
1970
|
variant: import("../button").StyleVariant;
|
|
1971
|
-
color: import("../button").ColorVariant;
|
|
1972
1971
|
divider: boolean;
|
|
1972
|
+
color: import("../button").ColorVariant;
|
|
1973
1973
|
placement: import("@floating-ui/utils").Placement;
|
|
1974
1974
|
menuClass: string | unknown[] | Record<string, any>;
|
|
1975
1975
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -2373,8 +2373,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2373
2373
|
icon: boolean;
|
|
2374
2374
|
pill: boolean;
|
|
2375
2375
|
variant: import("../button").StyleVariant;
|
|
2376
|
-
color: import("../button").ColorVariant;
|
|
2377
2376
|
href: string | import("vue-router").RouteLocationAsRelativeGeneric | import("vue-router").RouteLocationAsPathGeneric;
|
|
2377
|
+
color: import("../button").ColorVariant;
|
|
2378
2378
|
loading: boolean;
|
|
2379
2379
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
2380
2380
|
P: {};
|
|
@@ -2427,8 +2427,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2427
2427
|
icon: boolean;
|
|
2428
2428
|
pill: boolean;
|
|
2429
2429
|
variant: import("../button").StyleVariant;
|
|
2430
|
-
color: import("../button").ColorVariant;
|
|
2431
2430
|
href: string | import("vue-router").RouteLocationAsRelativeGeneric | import("vue-router").RouteLocationAsPathGeneric;
|
|
2431
|
+
color: import("../button").ColorVariant;
|
|
2432
2432
|
loading: boolean;
|
|
2433
2433
|
}>;
|
|
2434
2434
|
__isFragment?: never;
|
|
@@ -2478,8 +2478,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2478
2478
|
icon: boolean;
|
|
2479
2479
|
pill: boolean;
|
|
2480
2480
|
variant: import("../button").StyleVariant;
|
|
2481
|
-
color: import("../button").ColorVariant;
|
|
2482
2481
|
href: string | import("vue-router").RouteLocationAsRelativeGeneric | import("vue-router").RouteLocationAsPathGeneric;
|
|
2482
|
+
color: import("../button").ColorVariant;
|
|
2483
2483
|
loading: boolean;
|
|
2484
2484
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2485
2485
|
$slots: Readonly<{
|
|
@@ -150,8 +150,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
150
150
|
icon: boolean;
|
|
151
151
|
pill: boolean;
|
|
152
152
|
variant: import("../../button").StyleVariant;
|
|
153
|
-
color: import("../../button").ColorVariant;
|
|
154
153
|
divider: boolean;
|
|
154
|
+
color: import("../../button").ColorVariant;
|
|
155
155
|
placement: import("@floating-ui/utils").Placement;
|
|
156
156
|
menuClass: string | unknown[] | Record<string, any>;
|
|
157
157
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -244,8 +244,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
244
244
|
icon: boolean;
|
|
245
245
|
pill: boolean;
|
|
246
246
|
variant: import("../../button").StyleVariant;
|
|
247
|
-
color: import("../../button").ColorVariant;
|
|
248
247
|
divider: boolean;
|
|
248
|
+
color: import("../../button").ColorVariant;
|
|
249
249
|
placement: import("@floating-ui/utils").Placement;
|
|
250
250
|
menuClass: string | unknown[] | Record<string, any>;
|
|
251
251
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -339,8 +339,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
339
339
|
icon: boolean;
|
|
340
340
|
pill: boolean;
|
|
341
341
|
variant: import("../../button").StyleVariant;
|
|
342
|
-
color: import("../../button").ColorVariant;
|
|
343
342
|
divider: boolean;
|
|
343
|
+
color: import("../../button").ColorVariant;
|
|
344
344
|
placement: import("@floating-ui/utils").Placement;
|
|
345
345
|
menuClass: string | unknown[] | Record<string, any>;
|
|
346
346
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -177,8 +177,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
177
177
|
icon: boolean;
|
|
178
178
|
pill: boolean;
|
|
179
179
|
variant: import("../../button").StyleVariant;
|
|
180
|
-
color: import("../../button").ColorVariant;
|
|
181
180
|
divider: boolean;
|
|
181
|
+
color: import("../../button").ColorVariant;
|
|
182
182
|
placement: import("@floating-ui/utils").Placement;
|
|
183
183
|
menuClass: string | unknown[] | Record<string, any>;
|
|
184
184
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -271,8 +271,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
271
271
|
icon: boolean;
|
|
272
272
|
pill: boolean;
|
|
273
273
|
variant: import("../../button").StyleVariant;
|
|
274
|
-
color: import("../../button").ColorVariant;
|
|
275
274
|
divider: boolean;
|
|
275
|
+
color: import("../../button").ColorVariant;
|
|
276
276
|
placement: import("@floating-ui/utils").Placement;
|
|
277
277
|
menuClass: string | unknown[] | Record<string, any>;
|
|
278
278
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -366,8 +366,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
366
366
|
icon: boolean;
|
|
367
367
|
pill: boolean;
|
|
368
368
|
variant: import("../../button").StyleVariant;
|
|
369
|
-
color: import("../../button").ColorVariant;
|
|
370
369
|
divider: boolean;
|
|
370
|
+
color: import("../../button").ColorVariant;
|
|
371
371
|
placement: import("@floating-ui/utils").Placement;
|
|
372
372
|
menuClass: string | unknown[] | Record<string, any>;
|
|
373
373
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -124,8 +124,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
124
124
|
icon: boolean;
|
|
125
125
|
pill: boolean;
|
|
126
126
|
variant: import("../../button").StyleVariant;
|
|
127
|
-
color: import("../../button").ColorVariant;
|
|
128
127
|
divider: boolean;
|
|
128
|
+
color: import("../../button").ColorVariant;
|
|
129
129
|
placement: import("@floating-ui/utils").Placement;
|
|
130
130
|
menuClass: string | unknown[] | Record<string, any>;
|
|
131
131
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -218,8 +218,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
218
218
|
icon: boolean;
|
|
219
219
|
pill: boolean;
|
|
220
220
|
variant: import("../../button").StyleVariant;
|
|
221
|
-
color: import("../../button").ColorVariant;
|
|
222
221
|
divider: boolean;
|
|
222
|
+
color: import("../../button").ColorVariant;
|
|
223
223
|
placement: import("@floating-ui/utils").Placement;
|
|
224
224
|
menuClass: string | unknown[] | Record<string, any>;
|
|
225
225
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -313,8 +313,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
313
313
|
icon: boolean;
|
|
314
314
|
pill: boolean;
|
|
315
315
|
variant: import("../../button").StyleVariant;
|
|
316
|
-
color: import("../../button").ColorVariant;
|
|
317
316
|
divider: boolean;
|
|
317
|
+
color: import("../../button").ColorVariant;
|
|
318
318
|
placement: import("@floating-ui/utils").Placement;
|
|
319
319
|
menuClass: string | unknown[] | Record<string, any>;
|
|
320
320
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -99,8 +99,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
99
99
|
icon: boolean;
|
|
100
100
|
pill: boolean;
|
|
101
101
|
variant: import("../../button").StyleVariant;
|
|
102
|
-
color: import("../../button").ColorVariant;
|
|
103
102
|
href: string | import("vue-router").RouteLocationAsRelativeGeneric | import("vue-router").RouteLocationAsPathGeneric;
|
|
103
|
+
color: import("../../button").ColorVariant;
|
|
104
104
|
loading: boolean;
|
|
105
105
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
106
106
|
P: {};
|
|
@@ -153,8 +153,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
153
153
|
icon: boolean;
|
|
154
154
|
pill: boolean;
|
|
155
155
|
variant: import("../../button").StyleVariant;
|
|
156
|
-
color: import("../../button").ColorVariant;
|
|
157
156
|
href: string | import("vue-router").RouteLocationAsRelativeGeneric | import("vue-router").RouteLocationAsPathGeneric;
|
|
157
|
+
color: import("../../button").ColorVariant;
|
|
158
158
|
loading: boolean;
|
|
159
159
|
}>;
|
|
160
160
|
__isFragment?: never;
|
|
@@ -204,8 +204,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
204
204
|
icon: boolean;
|
|
205
205
|
pill: boolean;
|
|
206
206
|
variant: import("../../button").StyleVariant;
|
|
207
|
-
color: import("../../button").ColorVariant;
|
|
208
207
|
href: string | import("vue-router").RouteLocationAsRelativeGeneric | import("vue-router").RouteLocationAsPathGeneric;
|
|
208
|
+
color: import("../../button").ColorVariant;
|
|
209
209
|
loading: boolean;
|
|
210
210
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
211
211
|
$slots: Readonly<{
|
|
@@ -100,7 +100,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
100
100
|
start: number;
|
|
101
101
|
end: number;
|
|
102
102
|
readonly: boolean;
|
|
103
|
-
step: string | number;
|
|
104
103
|
min: string | number;
|
|
104
|
+
step: string | number;
|
|
105
105
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
106
106
|
export default _default;
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
"PAccordion": "components/accordion/Accordion.vue",
|
|
3
3
|
"PAccordionItem": "components/accordion/AccordionItem.vue",
|
|
4
4
|
"PAccordionItems": "components/accordion/AccordionItems.vue",
|
|
5
|
-
"PBadge": "components/badge/Badge.vue",
|
|
6
5
|
"PAvatar": "components/avatar/Avatar.vue",
|
|
7
6
|
"PAvatarGroup": "components/avatar/AvatarGroup.vue",
|
|
8
7
|
"PAvatarTruncate": "components/avatar/AvatarTruncate.vue",
|
|
@@ -11,58 +10,50 @@
|
|
|
11
10
|
"PBreadcrumbItem": "components/breadcrumbs/BreadcrumbItem.vue",
|
|
12
11
|
"PBreadcrumbItemDropdown": "components/breadcrumbs/BreadcrumbItemDropdown.vue",
|
|
13
12
|
"PButton": "components/button/Button.vue",
|
|
14
|
-
"PCalendar": "components/calendar/Calendar.vue",
|
|
15
|
-
"PCaption": "components/caption/Caption.vue",
|
|
16
13
|
"PButtonGroup": "components/button-group/ButtonGroup.vue",
|
|
14
|
+
"PCalendar": "components/calendar/Calendar.vue",
|
|
17
15
|
"PCamera": "components/camera/Camera.vue",
|
|
16
|
+
"PBadge": "components/badge/Badge.vue",
|
|
17
|
+
"PCaption": "components/caption/Caption.vue",
|
|
18
18
|
"PCard": "components/card/Card.vue",
|
|
19
19
|
"PCardSection": "components/card/CardSection.vue",
|
|
20
|
+
"PCarousel": "components/carousel/Carousel.vue",
|
|
21
|
+
"PCarouselBody": "components/carousel/CarouselBody.vue",
|
|
22
|
+
"PCarouselItem": "components/carousel/CarouselItem.vue",
|
|
23
|
+
"PCollapse": "components/collapse/Collapse.vue",
|
|
20
24
|
"PCheckbox": "components/checkbox/Checkbox.vue",
|
|
21
25
|
"PChart": "components/chart/Chart.vue",
|
|
22
26
|
"PChartSet": "components/chart/ChartSet.vue",
|
|
23
27
|
"PChartVal": "components/chart/ChartVal.vue",
|
|
24
|
-
"PCollapse": "components/collapse/Collapse.vue",
|
|
25
|
-
"PCarousel": "components/carousel/Carousel.vue",
|
|
26
|
-
"PCarouselBody": "components/carousel/CarouselBody.vue",
|
|
27
|
-
"PCarouselItem": "components/carousel/CarouselItem.vue",
|
|
28
28
|
"PContextualBar": "components/contextual-bar/ContextualBar.vue",
|
|
29
29
|
"PCropper": "components/cropper/Cropper.vue",
|
|
30
30
|
"PDatepicker": "components/datepicker/Datepicker.vue",
|
|
31
|
-
"PDialog": "components/dialog/Dialog.vue",
|
|
32
|
-
"PDialogFooter": "components/dialog/DialogFooter.vue",
|
|
33
31
|
"PDivider": "components/divider/Divider.vue",
|
|
34
32
|
"PDot": "components/dot/Dot.vue",
|
|
35
|
-
"PDropdownSubitem": "components/dropdown-subitem/DropdownSubitem.vue",
|
|
36
33
|
"PDropdown": "components/dropdown/Dropdown.vue",
|
|
37
34
|
"PDropdownHeader": "components/dropdown/DropdownHeader.vue",
|
|
38
35
|
"PDropdownItem": "components/dropdown/DropdownItem.vue",
|
|
39
36
|
"PDropdownText": "components/dropdown/DropdownText.vue",
|
|
37
|
+
"PDropdownSubitem": "components/dropdown-subitem/DropdownSubitem.vue",
|
|
38
|
+
"PDialog": "components/dialog/Dialog.vue",
|
|
39
|
+
"PDialogFooter": "components/dialog/DialogFooter.vue",
|
|
40
40
|
"PDropzone": "components/dropzone/Dropzone.vue",
|
|
41
41
|
"PFilterbar": "components/filterbar/Filterbar.vue",
|
|
42
42
|
"PFormGroup": "components/form-group/FormGroup.vue",
|
|
43
43
|
"PHeading": "components/heading/Heading.vue",
|
|
44
|
-
"PInput": "components/input/Input.vue",
|
|
45
44
|
"PinputColor": "components/input-color/inputColor.vue",
|
|
45
|
+
"PInput": "components/input/Input.vue",
|
|
46
46
|
"PInputFile": "components/input-file/InputFile.vue",
|
|
47
|
-
"PInputPassword": "components/input-password/InputPassword.vue",
|
|
48
47
|
"PInputGroup": "components/input-group/InputGroup.vue",
|
|
49
48
|
"PInputGroupAddon": "components/input-group/InputGroupAddon.vue",
|
|
49
|
+
"PInputPassword": "components/input-password/InputPassword.vue",
|
|
50
50
|
"PInputPin": "components/input-pin/InputPin.vue",
|
|
51
51
|
"PInputRange": "components/input-range/InputRange.vue",
|
|
52
|
+
"PLabel": "components/label/Label.vue",
|
|
52
53
|
"PListGroup": "components/list-group/ListGroup.vue",
|
|
53
54
|
"PListGroupItem": "components/list-group/ListGroupItem.vue",
|
|
54
55
|
"PMain": "components/main/Main.vue",
|
|
55
|
-
"PLabel": "components/label/Label.vue",
|
|
56
|
-
"PNavbar": "components/navbar/Navbar.vue",
|
|
57
|
-
"PNavbarBrand": "components/navbar/NavbarBrand.vue",
|
|
58
|
-
"PNavbarNav": "components/navbar/NavbarNav.vue",
|
|
59
|
-
"PNavbarToggle": "components/navbar/NavbarToggle.vue",
|
|
60
56
|
"PModal": "components/modal/Modal.vue",
|
|
61
|
-
"PNavbarNavMenu": "components/navbar-menu/NavbarNavMenu.vue",
|
|
62
|
-
"POverlay": "components/overlay/Overlay.vue",
|
|
63
|
-
"PNotify": "components/notify/Notify.vue",
|
|
64
|
-
"PNotifyGroup": "components/notify/NotifyGroup.vue",
|
|
65
|
-
"PNotifyItem": "components/notify/NotifyItem.vue",
|
|
66
57
|
"PNav": "components/nav/Nav.vue",
|
|
67
58
|
"PNavCollapse": "components/nav/NavCollapse.vue",
|
|
68
59
|
"PNavForm": "components/nav/NavForm.vue",
|
|
@@ -70,80 +61,89 @@
|
|
|
70
61
|
"PNavItemDropdown": "components/nav/NavItemDropdown.vue",
|
|
71
62
|
"PNavSubItem": "components/nav/NavSubItem.vue",
|
|
72
63
|
"PNavText": "components/nav/NavText.vue",
|
|
64
|
+
"PNavbarNavMenu": "components/navbar-menu/NavbarNavMenu.vue",
|
|
65
|
+
"PNavbar": "components/navbar/Navbar.vue",
|
|
66
|
+
"PNavbarBrand": "components/navbar/NavbarBrand.vue",
|
|
67
|
+
"PNavbarNav": "components/navbar/NavbarNav.vue",
|
|
68
|
+
"PNavbarToggle": "components/navbar/NavbarToggle.vue",
|
|
69
|
+
"PNotify": "components/notify/Notify.vue",
|
|
70
|
+
"PNotifyGroup": "components/notify/NotifyGroup.vue",
|
|
71
|
+
"PNotifyItem": "components/notify/NotifyItem.vue",
|
|
73
72
|
"PPage": "components/page/Page.vue",
|
|
74
|
-
"
|
|
73
|
+
"POverlay": "components/overlay/Overlay.vue",
|
|
75
74
|
"PPagination": "components/pagination/Pagination.vue",
|
|
75
|
+
"PPdfHelipad": "components/pdf-helipad/PdfHelipad.vue",
|
|
76
|
+
"PPdfText": "components/pdf-text/PdfText.vue",
|
|
77
|
+
"PPdfObject": "components/pdf-object/PdfObject.vue",
|
|
78
|
+
"PPdfObjectAddon": "components/pdf-object/PdfObjectAddon.vue",
|
|
79
|
+
"PPdfObjectDebugger": "components/pdf-object/PdfObjectDebugger.vue",
|
|
80
|
+
"PPdfObjects": "components/pdf-object/PdfObjects.vue",
|
|
76
81
|
"PPopover": "components/popover/Popover.vue",
|
|
77
82
|
"PPdfError": "components/pdf-viewer/PdfError.vue",
|
|
78
83
|
"PPdfLoading": "components/pdf-viewer/PdfLoading.vue",
|
|
79
84
|
"PPdfNavigation": "components/pdf-viewer/PdfNavigation.vue",
|
|
80
85
|
"PPdfViewer": "components/pdf-viewer/PdfViewer.vue",
|
|
81
86
|
"PPopup": "components/popup/Popup.vue",
|
|
82
|
-
"PPdfObject": "components/pdf-object/PdfObject.vue",
|
|
83
|
-
"PPdfObjectAddon": "components/pdf-object/PdfObjectAddon.vue",
|
|
84
|
-
"PPdfObjectDebugger": "components/pdf-object/PdfObjectDebugger.vue",
|
|
85
|
-
"PPdfObjects": "components/pdf-object/PdfObjects.vue",
|
|
86
|
-
"PPdfText": "components/pdf-text/PdfText.vue",
|
|
87
87
|
"PProgress": "components/progress/Progress.vue",
|
|
88
88
|
"PProgressItem": "components/progress/ProgressItem.vue",
|
|
89
89
|
"PProgressIndicator": "components/progress-indicator/ProgressIndicator.vue",
|
|
90
90
|
"PProgressbar": "components/progressbar/Progressbar.vue",
|
|
91
|
+
"PQrcode": "components/qrcode/Qrcode.vue",
|
|
91
92
|
"PPspdfHelipad": "components/pspdfkit/PspdfHelipad.vue",
|
|
92
93
|
"PPspdfObject": "components/pspdfkit/PspdfObject.vue",
|
|
93
94
|
"PPspdfObjectAddon": "components/pspdfkit/PspdfObjectAddon.vue",
|
|
94
95
|
"PPspdfObjects": "components/pspdfkit/PspdfObjects.vue",
|
|
95
96
|
"PPspdfViewer": "components/pspdfkit/PspdfViewer.vue",
|
|
96
|
-
"PQrcode": "components/qrcode/Qrcode.vue",
|
|
97
97
|
"PRadio": "components/radio/Radio.vue",
|
|
98
|
-
"PRingbar": "components/ringbar/Ringbar.vue",
|
|
99
|
-
"PShimmer": "components/shimmer/Shimmer.vue",
|
|
100
98
|
"PRichtext": "components/richtext/Richtext.vue",
|
|
101
99
|
"PRichtextToolbarAdvance": "components/richtext/RichtextToolbarAdvance.vue",
|
|
102
100
|
"PRichtextToolbarSimple": "components/richtext/RichtextToolbarSimple.vue",
|
|
101
|
+
"PRingbar": "components/ringbar/Ringbar.vue",
|
|
103
102
|
"PSheet": "components/sheet/Sheet.vue",
|
|
104
103
|
"PSelect": "components/select/Select.vue",
|
|
105
104
|
"PSelectInput": "components/select/SelectInput.vue",
|
|
106
105
|
"PSelectTags": "components/select/SelectTags.vue",
|
|
107
|
-
"
|
|
108
|
-
"PSidebarMenuItem": "components/sidebar-menu/SidebarMenuItem.vue",
|
|
106
|
+
"PShimmer": "components/shimmer/Shimmer.vue",
|
|
109
107
|
"PSidebar": "components/sidebar/Sidebar.vue",
|
|
110
108
|
"PSidebarBrand": "components/sidebar/SidebarBrand.vue",
|
|
111
109
|
"PSidebarContent": "components/sidebar/SidebarContent.vue",
|
|
112
110
|
"PSidebarNav": "components/sidebar/SidebarNav.vue",
|
|
111
|
+
"PSidebarMenu": "components/sidebar-menu/SidebarMenu.vue",
|
|
112
|
+
"PSidebarMenuItem": "components/sidebar-menu/SidebarMenuItem.vue",
|
|
113
113
|
"PSignatureDraw": "components/signature-draw/SignatureDraw.vue",
|
|
114
114
|
"PSignatureDrawDesktop": "components/signature-draw/SignatureDrawDesktop.vue",
|
|
115
115
|
"PSignatureDrawMobile": "components/signature-draw/SignatureDrawMobile.vue",
|
|
116
|
-
"PSpread": "components/spread/Spread.vue",
|
|
117
|
-
"PSignatureText": "components/signature-text/SignatureText.vue",
|
|
118
116
|
"PSpinner": "components/spinner/Spinner.vue",
|
|
119
117
|
"PSpinnerRing": "components/spinner/SpinnerRing.vue",
|
|
120
118
|
"PSpinnerRinggo": "components/spinner/SpinnerRinggo.vue",
|
|
119
|
+
"PSpread": "components/spread/Spread.vue",
|
|
120
|
+
"PStrengthbar": "components/strengthbar/Strengthbar.vue",
|
|
121
|
+
"PSignatureText": "components/signature-text/SignatureText.vue",
|
|
121
122
|
"PStep": "components/steps/Step.vue",
|
|
122
123
|
"PStepSlider": "components/steps/StepSlider.vue",
|
|
123
124
|
"PSteps": "components/steps/Steps.vue",
|
|
124
|
-
"PStrengthbar": "components/strengthbar/Strengthbar.vue",
|
|
125
125
|
"PTable": "components/table/Table.vue",
|
|
126
126
|
"PSubheading": "components/subheading/Subheading.vue",
|
|
127
|
-
"PTableFlex": "components/table-flex/TableFlex.vue",
|
|
128
|
-
"PText": "components/text/Text.vue",
|
|
129
127
|
"PTableStatic": "components/table-static/TableStatic.vue",
|
|
130
128
|
"PTableStaticRoot": "components/table-static/TableStaticRoot.vue",
|
|
131
129
|
"PTableStaticSort": "components/table-static/TableStaticSort.vue",
|
|
130
|
+
"PTableFlex": "components/table-flex/TableFlex.vue",
|
|
131
|
+
"PText": "components/text/Text.vue",
|
|
132
132
|
"PTab": "components/tabs/Tab.vue",
|
|
133
133
|
"PTabContent": "components/tabs/TabContent.vue",
|
|
134
134
|
"PTabs": "components/tabs/Tabs.vue",
|
|
135
135
|
"PTextarea": "components/textarea/Textarea.vue",
|
|
136
|
-
"PTimepicker": "components/timepicker/Timepicker.vue",
|
|
137
136
|
"PTime": "components/time/Time.vue",
|
|
138
137
|
"PTimeItem": "components/time/TimeItem.vue",
|
|
139
|
-
"
|
|
138
|
+
"PTimepicker": "components/timepicker/Timepicker.vue",
|
|
140
139
|
"PToggle": "components/toggle/Toggle.vue",
|
|
140
|
+
"PToast": "components/toast/Toast.vue",
|
|
141
141
|
"PTooltip": "components/tooltip/Tooltip.vue",
|
|
142
142
|
"PTooltipContainer": "components/tooltip/TooltipContainer.vue",
|
|
143
|
+
"PTruncate": "components/truncate/Truncate.vue",
|
|
143
144
|
"PTour": "components/tour/Tour.vue",
|
|
144
145
|
"PTourDialog": "components/tour/TourDialog.vue",
|
|
145
146
|
"PTourHighlight": "components/tour/TourHighlight.vue",
|
|
146
|
-
"PTruncate": "components/truncate/Truncate.vue",
|
|
147
147
|
"PWizard": "components/wizard/Wizard.vue",
|
|
148
148
|
"PWizardBody": "components/wizard/WizardBody.vue",
|
|
149
149
|
"PWizardHeader": "components/wizard/WizardHeader.vue",
|
|
@@ -154,6 +154,9 @@
|
|
|
154
154
|
"PPinnedMultiselect": "components/filterbar/pinned/PinnedMultiselect.vue",
|
|
155
155
|
"PPinnedSelect": "components/filterbar/pinned/PinnedSelect.vue",
|
|
156
156
|
"PPinnedToggle": "components/filterbar/pinned/PinnedToggle.vue",
|
|
157
|
+
"PRichtextPopupImageEdit": "components/richtext/popup/RichtextPopupImageEdit.vue",
|
|
158
|
+
"PRichtextPopupLinkDetail": "components/richtext/popup/RichtextPopupLinkDetail.vue",
|
|
159
|
+
"PRichtextPopupLinkEdit": "components/richtext/popup/RichtextPopupLinkEdit.vue",
|
|
157
160
|
"PRichtextControlFontFamily": "components/richtext/control/RichtextControlFontFamily.vue",
|
|
158
161
|
"PRichtextControlFontSize": "components/richtext/control/RichtextControlFontSize.vue",
|
|
159
162
|
"PRichtextControlHighlight": "components/richtext/control/RichtextControlHighlight.vue",
|
|
@@ -164,8 +167,5 @@
|
|
|
164
167
|
"PRichtextControlTable": "components/richtext/control/RichtextControlTable.vue",
|
|
165
168
|
"PRichtextControlTextAlign": "components/richtext/control/RichtextControlTextAlign.vue",
|
|
166
169
|
"PRichtextControlTextFormat": "components/richtext/control/RichtextControlTextFormat.vue",
|
|
167
|
-
"PRichtextControlTextHeading": "components/richtext/control/RichtextControlTextHeading.vue"
|
|
168
|
-
"PRichtextPopupImageEdit": "components/richtext/popup/RichtextPopupImageEdit.vue",
|
|
169
|
-
"PRichtextPopupLinkDetail": "components/richtext/popup/RichtextPopupLinkDetail.vue",
|
|
170
|
-
"PRichtextPopupLinkEdit": "components/richtext/popup/RichtextPopupLinkEdit.vue"
|
|
170
|
+
"PRichtextControlTextHeading": "components/richtext/control/RichtextControlTextHeading.vue"
|
|
171
171
|
}
|
|
@@ -177,6 +177,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
177
177
|
dismissable: boolean;
|
|
178
178
|
banner: boolean;
|
|
179
179
|
noAnimation: boolean;
|
|
180
|
+
bodyClass: string | unknown[] | Record<string, any>;
|
|
180
181
|
noCloseOnEsc: boolean;
|
|
181
182
|
noCloseOnBackdrop: boolean;
|
|
182
183
|
modalBodyScrollable: boolean;
|
|
@@ -184,7 +185,6 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
184
185
|
freeDistraction: boolean;
|
|
185
186
|
headerClass: string | unknown[] | Record<string, any>;
|
|
186
187
|
dialogClass: string | unknown[] | Record<string, any>;
|
|
187
|
-
bodyClass: string | unknown[] | Record<string, any>;
|
|
188
188
|
footerClass: string | unknown[] | Record<string, any>;
|
|
189
189
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
190
190
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -168,11 +168,11 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
168
168
|
}>, {
|
|
169
169
|
src: string;
|
|
170
170
|
page: number;
|
|
171
|
-
layout: LayoutVariant;
|
|
172
|
-
offsetTop: string | number;
|
|
173
171
|
password: string;
|
|
174
172
|
scale: number;
|
|
175
173
|
ratio: string | number;
|
|
174
|
+
layout: LayoutVariant;
|
|
175
|
+
offsetTop: string | number;
|
|
176
176
|
firstNavLabel: string;
|
|
177
177
|
lastNavLabel: string;
|
|
178
178
|
numOfPagesNavLabel: string;
|
|
@@ -126,11 +126,11 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
126
126
|
}>, {
|
|
127
127
|
src: string;
|
|
128
128
|
page: number;
|
|
129
|
-
layout: LayoutVariant;
|
|
130
|
-
offsetTop: string | number;
|
|
131
129
|
password: string;
|
|
132
130
|
scale: number;
|
|
133
131
|
ratio: string | number;
|
|
132
|
+
layout: LayoutVariant;
|
|
133
|
+
offsetTop: string | number;
|
|
134
134
|
config: OpenDocConfig;
|
|
135
135
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
136
136
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -61,8 +61,8 @@ declare function __VLS_template(): {
|
|
|
61
61
|
icon: boolean;
|
|
62
62
|
pill: boolean;
|
|
63
63
|
variant: import("../button").StyleVariant;
|
|
64
|
-
color: import("../button").ColorVariant;
|
|
65
64
|
divider: boolean;
|
|
65
|
+
color: import("../button").ColorVariant;
|
|
66
66
|
placement: import("@floating-ui/utils").Placement;
|
|
67
67
|
menuClass: string | unknown[] | Record<string, any>;
|
|
68
68
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -77,8 +77,8 @@ declare function __VLS_template(): {
|
|
|
77
77
|
readonly icon: boolean;
|
|
78
78
|
readonly pill: boolean;
|
|
79
79
|
readonly variant: import("../button").StyleVariant;
|
|
80
|
-
readonly color: import("../button").ColorVariant;
|
|
81
80
|
readonly divider: boolean;
|
|
81
|
+
readonly color: import("../button").ColorVariant;
|
|
82
82
|
readonly placement: import("@floating-ui/utils").Placement;
|
|
83
83
|
readonly menuSize: MenuSizeVariant;
|
|
84
84
|
readonly noAnimation: boolean;
|
|
@@ -87,7 +87,7 @@ declare function __VLS_template(): {
|
|
|
87
87
|
readonly "onUpdate:modelValue"?: ((args_0: boolean) => any) | undefined;
|
|
88
88
|
readonly onShow?: (() => any) | undefined;
|
|
89
89
|
readonly onHide?: (() => any) | undefined;
|
|
90
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "modelValue" | "disabled" | "noCaret" | "icon" | "pill" | "variant" | "
|
|
90
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "modelValue" | "disabled" | "noCaret" | "icon" | "pill" | "variant" | "divider" | "color" | "placement" | "menuClass" | "buttonClass" | "menuSize" | "noAnimation">;
|
|
91
91
|
$attrs: {
|
|
92
92
|
[x: string]: unknown;
|
|
93
93
|
};
|
|
@@ -186,8 +186,8 @@ declare function __VLS_template(): {
|
|
|
186
186
|
icon: boolean;
|
|
187
187
|
pill: boolean;
|
|
188
188
|
variant: import("../button").StyleVariant;
|
|
189
|
-
color: import("../button").ColorVariant;
|
|
190
189
|
divider: boolean;
|
|
190
|
+
color: import("../button").ColorVariant;
|
|
191
191
|
placement: import("@floating-ui/utils").Placement;
|
|
192
192
|
menuClass: string | unknown[] | Record<string, any>;
|
|
193
193
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -222,8 +222,8 @@ declare function __VLS_template(): {
|
|
|
222
222
|
icon: boolean;
|
|
223
223
|
pill: boolean;
|
|
224
224
|
variant: import("../button").StyleVariant;
|
|
225
|
-
color: import("../button").ColorVariant;
|
|
226
225
|
divider: boolean;
|
|
226
|
+
color: import("../button").ColorVariant;
|
|
227
227
|
placement: import("@floating-ui/utils").Placement;
|
|
228
228
|
menuClass: string | unknown[] | Record<string, any>;
|
|
229
229
|
buttonClass: string | unknown[] | Record<string, any>;
|
|
@@ -294,7 +294,7 @@ declare function __VLS_template(): {
|
|
|
294
294
|
"onUpdate:modelValue"?: ((args_0: boolean) => any) | undefined;
|
|
295
295
|
onShow?: (() => any) | undefined;
|
|
296
296
|
onHide?: (() => any) | undefined;
|
|
297
|
-
}>, "menu" | "close" | "menuBody" | "root" | "open" | ("text" | "size" | "modelValue" | "disabled" | "noCaret" | "icon" | "pill" | "variant" | "
|
|
297
|
+
}>, "menu" | "close" | "menuBody" | "root" | "open" | ("text" | "size" | "modelValue" | "disabled" | "noCaret" | "icon" | "pill" | "variant" | "divider" | "color" | "placement" | "menuClass" | "buttonClass" | "menuSize" | "noAnimation")> & import("vue").ShallowUnwrapRef<{
|
|
298
298
|
menuBody: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
299
299
|
menu: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
300
300
|
root: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
@@ -6,26 +6,26 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
6
6
|
items: T[];
|
|
7
7
|
draggable: boolean;
|
|
8
8
|
selectable: boolean;
|
|
9
|
-
apperance: ApperanceVariant;
|
|
10
9
|
fields: TableField<T>[];
|
|
11
10
|
emptyLabel: string;
|
|
12
11
|
noLabel: boolean;
|
|
13
12
|
tableClass: any;
|
|
13
|
+
apperance: ApperanceVariant;
|
|
14
14
|
trClass: any;
|
|
15
15
|
}> & Omit<{
|
|
16
16
|
readonly modelValue: T[];
|
|
17
17
|
readonly items: T[];
|
|
18
18
|
readonly draggable: boolean;
|
|
19
19
|
readonly selectable: boolean;
|
|
20
|
-
readonly apperance: ApperanceVariant;
|
|
21
20
|
readonly fields: TableField<T>[];
|
|
22
21
|
readonly emptyLabel: string;
|
|
23
22
|
readonly noLabel: boolean;
|
|
23
|
+
readonly apperance: ApperanceVariant;
|
|
24
24
|
readonly tableClass?: any;
|
|
25
25
|
readonly trClass?: any;
|
|
26
26
|
readonly "onUpdate:modelValue"?: ((args_0: T[]) => any) | undefined;
|
|
27
27
|
readonly "onUpdate:items"?: ((args_0: T[]) => any) | undefined;
|
|
28
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "items" | "draggable" | "selectable" | "
|
|
28
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "items" | "draggable" | "selectable" | "fields" | "emptyLabel" | "noLabel" | "tableClass" | "apperance" | "trClass">, "onUpdate:modelValue" | "onUpdate:items" | ("modelValue" | "items" | "draggable" | "selectable" | "fields" | "emptyLabel" | "noLabel" | "tableClass" | "apperance" | "trClass")> & Partial<{}> & {}> & (import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps);
|
|
29
29
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
30
30
|
attrs: any;
|
|
31
31
|
slots: Readonly<{
|
|
@@ -9,13 +9,13 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
9
9
|
sortable: boolean | "multiple" | "single";
|
|
10
10
|
sortBy: Record<string, any>;
|
|
11
11
|
selectable: boolean;
|
|
12
|
-
apperance: ApperanceVariant;
|
|
13
12
|
fields: TableField<T>[];
|
|
14
13
|
emptyLabel: string;
|
|
15
14
|
noLabel: boolean;
|
|
15
|
+
scrollable: boolean;
|
|
16
16
|
tableClass: any;
|
|
17
|
+
apperance: ApperanceVariant;
|
|
17
18
|
trClass: any;
|
|
18
|
-
scrollable: boolean;
|
|
19
19
|
}> & Omit<{
|
|
20
20
|
readonly modelValue: T[];
|
|
21
21
|
readonly items: T[];
|
|
@@ -23,18 +23,18 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
23
23
|
readonly sortable: boolean | "multiple" | "single";
|
|
24
24
|
readonly sortBy: Record<string, any>;
|
|
25
25
|
readonly selectable: boolean;
|
|
26
|
-
readonly apperance: ApperanceVariant;
|
|
27
26
|
readonly fields: TableField<T>[];
|
|
28
27
|
readonly emptyLabel: string;
|
|
29
28
|
readonly noLabel: boolean;
|
|
30
29
|
readonly scrollable: boolean;
|
|
30
|
+
readonly apperance: ApperanceVariant;
|
|
31
31
|
readonly tableClass?: any;
|
|
32
32
|
readonly trClass?: any;
|
|
33
33
|
readonly "onUpdate:modelValue"?: ((args_0: T[]) => any) | undefined;
|
|
34
34
|
readonly onSort?: ((args_0: Record<string, SortValue>) => any) | undefined;
|
|
35
35
|
readonly "onUpdate:items"?: ((args_0: T[]) => any) | undefined;
|
|
36
36
|
readonly "onUpdate:sortBy"?: ((args_0: Record<string, SortValue>) => any) | undefined;
|
|
37
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "items" | "draggable" | "sortable" | "sortBy" | "selectable" | "
|
|
37
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "items" | "draggable" | "sortable" | "sortBy" | "selectable" | "fields" | "emptyLabel" | "noLabel" | "scrollable" | "tableClass" | "apperance" | "trClass">, "onUpdate:modelValue" | "onUpdate:items" | "onSort" | "onUpdate:sortBy" | ("modelValue" | "items" | "draggable" | "sortable" | "sortBy" | "selectable" | "fields" | "emptyLabel" | "noLabel" | "scrollable" | "tableClass" | "apperance" | "trClass")> & Partial<{}> & {}> & (import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps);
|
|
38
38
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
39
39
|
attrs: any;
|
|
40
40
|
slots: Readonly<{
|
|
@@ -28,8 +28,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
28
28
|
default: undefined;
|
|
29
29
|
};
|
|
30
30
|
}>> & Readonly<{}>, {
|
|
31
|
-
tableClass: any;
|
|
32
31
|
scrollable: boolean;
|
|
32
|
+
tableClass: any;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
34
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
35
35
|
export default _default;
|
|
@@ -164,8 +164,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
164
164
|
dismissable: boolean;
|
|
165
165
|
max: Date;
|
|
166
166
|
readonly: boolean;
|
|
167
|
-
placeholder: string;
|
|
168
167
|
min: Date;
|
|
168
|
+
placeholder: string;
|
|
169
169
|
timeSeparator: string;
|
|
170
170
|
is12Hour: boolean;
|
|
171
171
|
hourInterval: number;
|
package/dist/module.json
CHANGED