@dpa-id-components/dpa-shared-components 8.9.6 → 8.10.0
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/UseBreakpoints.stories.ts +22 -0
- package/dist/UseBreakpoints.vue +12 -0
- package/dist/components/DpaEventItem/DpaEventItem.stories.d.ts +391 -556
- package/dist/components/DpaMediaItem/DpaMediaItem.stories.d.ts +63 -99
- package/dist/components/UiBadge/UiBadge.stories.d.ts +83 -121
- package/dist/components/UiButton/UiButton.stories.d.ts +89 -128
- package/dist/components/UiButtonGroup/UiButtonGroup.stories.d.ts +8 -38
- package/dist/components/UiCard/UiCard.stories.d.ts +8 -38
- package/dist/components/UiCheckBox/UiCheckBox.stories.d.ts +79 -117
- package/dist/components/UiChip/UiChip.stories.d.ts +40 -74
- package/dist/components/UiCollapseNavigation/UiCollapseNavigation.stories.d.ts +40 -74
- package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +636 -768
- package/dist/components/UiDialog/UiDialog.stories.d.ts +276 -322
- package/dist/components/UiDialog/UiDialog.vue.d.ts +5 -0
- package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +100 -170
- package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +132 -206
- package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +208 -317
- package/dist/components/UiList/UiList.stories.d.ts +469 -694
- package/dist/components/UiListItem/UiListItem.stories.d.ts +298 -388
- package/dist/components/UiOverlay/UiOverlay.stories.d.ts +30 -94
- package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +372 -588
- package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +370 -533
- package/dist/components/UiSearchInput/UiSearchInput.stories.d.ts +134 -222
- package/dist/components/UiSection/UiSection.stories.d.ts +50 -85
- package/dist/components/UiSectionDivider/UiSectionDivider.stories.d.ts +50 -85
- package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +139 -215
- package/dist/components/UiTextButton/UiTextButton.stories.d.ts +90 -129
- package/dist/components/UiToggleButton/UiToggleButton.stories.d.ts +86 -125
- package/dist/components/UiTooltip/UiTooltip.stories.d.ts +136 -214
- package/dist/dpa-shared-components.mjs +1565 -1531
- package/dist/dpa-shared-components.umd.js +8 -8
- package/dist/style.css +1 -1
- package/dist/tailwind/UseBreakpoints.stories.d.ts +10 -0
- package/dist/tailwind/useBreakpoints.d.ts +9 -0
- package/dist/useBreakpoints.ts +19 -0
- package/package.json +1 -1
- package/dist/bookmark-4ff074d8.mjs +0 -19
- package/dist/bookmark-fill-731ae06c.mjs +0 -19
- package/dist/graphic-90b2d2fc.mjs +0 -20
|
@@ -2,182 +2,127 @@ import type { StoryObj } from "@storybook/vue3";
|
|
|
2
2
|
declare const meta: {
|
|
3
3
|
title: string;
|
|
4
4
|
component: {
|
|
5
|
-
new (...args: any[]): {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
5
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
view: {
|
|
7
|
+
type: import("vue").PropType<"compact" | "standard" | "preview">;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
title: {
|
|
11
|
+
type: import("vue").PropType<string>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
date: {
|
|
15
|
+
type: import("vue").PropType<string>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
dateDetail: {
|
|
19
|
+
type: import("vue").PropType<string>;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
location: {
|
|
23
|
+
type: import("vue").PropType<string | null>;
|
|
24
|
+
default: null;
|
|
25
|
+
};
|
|
26
|
+
noticeType: {
|
|
27
|
+
type: import("vue").PropType<{
|
|
24
28
|
iconName: "event" | "topic";
|
|
25
29
|
displayText: string;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
readonly partnerText: string | null;
|
|
29
|
-
readonly isPartnerTextVisible: boolean;
|
|
30
|
-
readonly topEntry: boolean;
|
|
31
|
-
readonly description: string;
|
|
32
|
-
readonly truncateTitle: boolean;
|
|
33
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
34
|
-
view: {
|
|
35
|
-
type: import("vue").PropType<"compact" | "standard" | "preview">;
|
|
36
|
-
required: true;
|
|
37
|
-
};
|
|
38
|
-
title: {
|
|
39
|
-
type: import("vue").PropType<string>;
|
|
40
|
-
required: true;
|
|
41
|
-
};
|
|
42
|
-
date: {
|
|
43
|
-
type: import("vue").PropType<string>;
|
|
44
|
-
required: true;
|
|
45
|
-
};
|
|
46
|
-
dateDetail: {
|
|
47
|
-
type: import("vue").PropType<string>;
|
|
48
|
-
default: string;
|
|
49
|
-
};
|
|
50
|
-
location: {
|
|
51
|
-
type: import("vue").PropType<string | null>;
|
|
52
|
-
default: null;
|
|
53
|
-
};
|
|
54
|
-
noticeType: {
|
|
55
|
-
type: import("vue").PropType<{
|
|
56
|
-
iconName: "event" | "topic";
|
|
57
|
-
displayText: string;
|
|
58
|
-
}>;
|
|
59
|
-
required: true;
|
|
60
|
-
};
|
|
61
|
-
comments: {
|
|
62
|
-
type: import("vue").PropType<string | null>;
|
|
63
|
-
default: null;
|
|
64
|
-
};
|
|
65
|
-
partnerText: {
|
|
66
|
-
type: import("vue").PropType<string | null>;
|
|
67
|
-
default: null;
|
|
68
|
-
};
|
|
69
|
-
isPartnerTextVisible: {
|
|
70
|
-
type: import("vue").PropType<boolean>;
|
|
71
|
-
default: boolean;
|
|
72
|
-
};
|
|
73
|
-
topEntry: {
|
|
74
|
-
type: import("vue").PropType<boolean>;
|
|
75
|
-
default: boolean;
|
|
76
|
-
};
|
|
77
|
-
description: {
|
|
78
|
-
type: import("vue").PropType<string>;
|
|
79
|
-
default: string;
|
|
80
|
-
};
|
|
81
|
-
truncateTitle: {
|
|
82
|
-
type: import("vue").PropType<boolean>;
|
|
83
|
-
default: boolean;
|
|
84
|
-
};
|
|
85
|
-
}>>, "dateDetail" | "location" | "comments" | "partnerText" | "isPartnerTextVisible" | "topEntry" | "description" | "truncateTitle">;
|
|
86
|
-
$attrs: {
|
|
87
|
-
[x: string]: unknown;
|
|
30
|
+
}>;
|
|
31
|
+
required: true;
|
|
88
32
|
};
|
|
89
|
-
|
|
90
|
-
|
|
33
|
+
comments: {
|
|
34
|
+
type: import("vue").PropType<string | null>;
|
|
35
|
+
default: null;
|
|
91
36
|
};
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
152
|
-
dateDetail: string;
|
|
153
|
-
location: string | null;
|
|
154
|
-
comments: string | null;
|
|
155
|
-
partnerText: string | null;
|
|
156
|
-
isPartnerTextVisible: boolean;
|
|
157
|
-
topEntry: boolean;
|
|
158
|
-
description: string;
|
|
159
|
-
truncateTitle: boolean;
|
|
160
|
-
}, {}, string, {}> & {
|
|
161
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
162
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
163
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
164
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
165
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
166
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
167
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
168
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
169
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
170
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
171
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
172
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
173
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
174
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
175
|
-
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;
|
|
37
|
+
partnerText: {
|
|
38
|
+
type: import("vue").PropType<string | null>;
|
|
39
|
+
default: null;
|
|
40
|
+
};
|
|
41
|
+
isPartnerTextVisible: {
|
|
42
|
+
type: import("vue").PropType<boolean>;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
topEntry: {
|
|
46
|
+
type: import("vue").PropType<boolean>;
|
|
47
|
+
default: boolean;
|
|
48
|
+
};
|
|
49
|
+
description: {
|
|
50
|
+
type: import("vue").PropType<string>;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
truncateTitle: {
|
|
54
|
+
type: import("vue").PropType<boolean>;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
57
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
58
|
+
view: {
|
|
59
|
+
type: import("vue").PropType<"compact" | "standard" | "preview">;
|
|
60
|
+
required: true;
|
|
61
|
+
};
|
|
62
|
+
title: {
|
|
63
|
+
type: import("vue").PropType<string>;
|
|
64
|
+
required: true;
|
|
65
|
+
};
|
|
66
|
+
date: {
|
|
67
|
+
type: import("vue").PropType<string>;
|
|
68
|
+
required: true;
|
|
69
|
+
};
|
|
70
|
+
dateDetail: {
|
|
71
|
+
type: import("vue").PropType<string>;
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
location: {
|
|
75
|
+
type: import("vue").PropType<string | null>;
|
|
76
|
+
default: null;
|
|
77
|
+
};
|
|
78
|
+
noticeType: {
|
|
79
|
+
type: import("vue").PropType<{
|
|
80
|
+
iconName: "event" | "topic";
|
|
81
|
+
displayText: string;
|
|
82
|
+
}>;
|
|
83
|
+
required: true;
|
|
84
|
+
};
|
|
85
|
+
comments: {
|
|
86
|
+
type: import("vue").PropType<string | null>;
|
|
87
|
+
default: null;
|
|
88
|
+
};
|
|
89
|
+
partnerText: {
|
|
90
|
+
type: import("vue").PropType<string | null>;
|
|
91
|
+
default: null;
|
|
92
|
+
};
|
|
93
|
+
isPartnerTextVisible: {
|
|
94
|
+
type: import("vue").PropType<boolean>;
|
|
95
|
+
default: boolean;
|
|
176
96
|
};
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
97
|
+
topEntry: {
|
|
98
|
+
type: import("vue").PropType<boolean>;
|
|
99
|
+
default: boolean;
|
|
100
|
+
};
|
|
101
|
+
description: {
|
|
102
|
+
type: import("vue").PropType<string>;
|
|
103
|
+
default: string;
|
|
104
|
+
};
|
|
105
|
+
truncateTitle: {
|
|
106
|
+
type: import("vue").PropType<boolean>;
|
|
107
|
+
default: boolean;
|
|
108
|
+
};
|
|
109
|
+
}>>, {
|
|
110
|
+
dateDetail: string;
|
|
111
|
+
location: string | null;
|
|
112
|
+
comments: string | null;
|
|
113
|
+
partnerText: string | null;
|
|
114
|
+
isPartnerTextVisible: boolean;
|
|
115
|
+
topEntry: boolean;
|
|
116
|
+
description: string;
|
|
117
|
+
truncateTitle: boolean;
|
|
118
|
+
}, true, {}, {}, {
|
|
119
|
+
P: {};
|
|
120
|
+
B: {};
|
|
121
|
+
D: {};
|
|
122
|
+
C: {};
|
|
123
|
+
M: {};
|
|
124
|
+
Defaults: {};
|
|
125
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
181
126
|
view: {
|
|
182
127
|
type: import("vue").PropType<"compact" | "standard" | "preview">;
|
|
183
128
|
required: true;
|
|
@@ -229,7 +174,16 @@ declare const meta: {
|
|
|
229
174
|
type: import("vue").PropType<boolean>;
|
|
230
175
|
default: boolean;
|
|
231
176
|
};
|
|
232
|
-
}
|
|
177
|
+
}>>, {}, {}, {}, {}, {
|
|
178
|
+
dateDetail: string;
|
|
179
|
+
location: string | null;
|
|
180
|
+
comments: string | null;
|
|
181
|
+
partnerText: string | null;
|
|
182
|
+
isPartnerTextVisible: boolean;
|
|
183
|
+
topEntry: boolean;
|
|
184
|
+
description: string;
|
|
185
|
+
truncateTitle: boolean;
|
|
186
|
+
}>;
|
|
233
187
|
__isFragment?: undefined;
|
|
234
188
|
__isTeleport?: undefined;
|
|
235
189
|
__isSuspense?: undefined;
|
|
@@ -377,182 +331,127 @@ declare const meta: {
|
|
|
377
331
|
};
|
|
378
332
|
components: {
|
|
379
333
|
DpaEventItem: {
|
|
380
|
-
new (...args: any[]): {
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
334
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
335
|
+
view: {
|
|
336
|
+
type: import("vue").PropType<"compact" | "standard" | "preview">;
|
|
337
|
+
required: true;
|
|
338
|
+
};
|
|
339
|
+
title: {
|
|
340
|
+
type: import("vue").PropType<string>;
|
|
341
|
+
required: true;
|
|
342
|
+
};
|
|
343
|
+
date: {
|
|
344
|
+
type: import("vue").PropType<string>;
|
|
345
|
+
required: true;
|
|
346
|
+
};
|
|
347
|
+
dateDetail: {
|
|
348
|
+
type: import("vue").PropType<string>;
|
|
349
|
+
default: string;
|
|
350
|
+
};
|
|
351
|
+
location: {
|
|
352
|
+
type: import("vue").PropType<string | null>;
|
|
353
|
+
default: null;
|
|
354
|
+
};
|
|
355
|
+
noticeType: {
|
|
356
|
+
type: import("vue").PropType<{
|
|
399
357
|
iconName: "event" | "topic";
|
|
400
358
|
displayText: string;
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
};
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
iconName: "event" | "topic";
|
|
498
|
-
displayText: string;
|
|
499
|
-
}>;
|
|
500
|
-
required: true;
|
|
501
|
-
};
|
|
502
|
-
comments: {
|
|
503
|
-
type: import("vue").PropType<string | null>;
|
|
504
|
-
default: null;
|
|
505
|
-
};
|
|
506
|
-
partnerText: {
|
|
507
|
-
type: import("vue").PropType<string | null>;
|
|
508
|
-
default: null;
|
|
509
|
-
};
|
|
510
|
-
isPartnerTextVisible: {
|
|
511
|
-
type: import("vue").PropType<boolean>;
|
|
512
|
-
default: boolean;
|
|
513
|
-
};
|
|
514
|
-
topEntry: {
|
|
515
|
-
type: import("vue").PropType<boolean>;
|
|
516
|
-
default: boolean;
|
|
517
|
-
};
|
|
518
|
-
description: {
|
|
519
|
-
type: import("vue").PropType<string>;
|
|
520
|
-
default: string;
|
|
521
|
-
};
|
|
522
|
-
truncateTitle: {
|
|
523
|
-
type: import("vue").PropType<boolean>;
|
|
524
|
-
default: boolean;
|
|
525
|
-
};
|
|
526
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
527
|
-
dateDetail: string;
|
|
528
|
-
location: string | null;
|
|
529
|
-
comments: string | null;
|
|
530
|
-
partnerText: string | null;
|
|
531
|
-
isPartnerTextVisible: boolean;
|
|
532
|
-
topEntry: boolean;
|
|
533
|
-
description: string;
|
|
534
|
-
truncateTitle: boolean;
|
|
535
|
-
}, {}, string, {}> & {
|
|
536
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
537
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
538
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
539
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
540
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
541
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
542
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
543
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
544
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
545
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
546
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
547
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
548
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
549
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
550
|
-
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;
|
|
551
|
-
};
|
|
552
|
-
$forceUpdate: () => void;
|
|
553
|
-
$nextTick: typeof import("vue").nextTick;
|
|
554
|
-
$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;
|
|
555
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
359
|
+
}>;
|
|
360
|
+
required: true;
|
|
361
|
+
};
|
|
362
|
+
comments: {
|
|
363
|
+
type: import("vue").PropType<string | null>;
|
|
364
|
+
default: null;
|
|
365
|
+
};
|
|
366
|
+
partnerText: {
|
|
367
|
+
type: import("vue").PropType<string | null>;
|
|
368
|
+
default: null;
|
|
369
|
+
};
|
|
370
|
+
isPartnerTextVisible: {
|
|
371
|
+
type: import("vue").PropType<boolean>;
|
|
372
|
+
default: boolean;
|
|
373
|
+
};
|
|
374
|
+
topEntry: {
|
|
375
|
+
type: import("vue").PropType<boolean>;
|
|
376
|
+
default: boolean;
|
|
377
|
+
};
|
|
378
|
+
description: {
|
|
379
|
+
type: import("vue").PropType<string>;
|
|
380
|
+
default: string;
|
|
381
|
+
};
|
|
382
|
+
truncateTitle: {
|
|
383
|
+
type: import("vue").PropType<boolean>;
|
|
384
|
+
default: boolean;
|
|
385
|
+
};
|
|
386
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
387
|
+
view: {
|
|
388
|
+
type: import("vue").PropType<"compact" | "standard" | "preview">;
|
|
389
|
+
required: true;
|
|
390
|
+
};
|
|
391
|
+
title: {
|
|
392
|
+
type: import("vue").PropType<string>;
|
|
393
|
+
required: true;
|
|
394
|
+
};
|
|
395
|
+
date: {
|
|
396
|
+
type: import("vue").PropType<string>;
|
|
397
|
+
required: true;
|
|
398
|
+
};
|
|
399
|
+
dateDetail: {
|
|
400
|
+
type: import("vue").PropType<string>;
|
|
401
|
+
default: string;
|
|
402
|
+
};
|
|
403
|
+
location: {
|
|
404
|
+
type: import("vue").PropType<string | null>;
|
|
405
|
+
default: null;
|
|
406
|
+
};
|
|
407
|
+
noticeType: {
|
|
408
|
+
type: import("vue").PropType<{
|
|
409
|
+
iconName: "event" | "topic";
|
|
410
|
+
displayText: string;
|
|
411
|
+
}>;
|
|
412
|
+
required: true;
|
|
413
|
+
};
|
|
414
|
+
comments: {
|
|
415
|
+
type: import("vue").PropType<string | null>;
|
|
416
|
+
default: null;
|
|
417
|
+
};
|
|
418
|
+
partnerText: {
|
|
419
|
+
type: import("vue").PropType<string | null>;
|
|
420
|
+
default: null;
|
|
421
|
+
};
|
|
422
|
+
isPartnerTextVisible: {
|
|
423
|
+
type: import("vue").PropType<boolean>;
|
|
424
|
+
default: boolean;
|
|
425
|
+
};
|
|
426
|
+
topEntry: {
|
|
427
|
+
type: import("vue").PropType<boolean>;
|
|
428
|
+
default: boolean;
|
|
429
|
+
};
|
|
430
|
+
description: {
|
|
431
|
+
type: import("vue").PropType<string>;
|
|
432
|
+
default: string;
|
|
433
|
+
};
|
|
434
|
+
truncateTitle: {
|
|
435
|
+
type: import("vue").PropType<boolean>;
|
|
436
|
+
default: boolean;
|
|
437
|
+
};
|
|
438
|
+
}>>, {
|
|
439
|
+
dateDetail: string;
|
|
440
|
+
location: string | null;
|
|
441
|
+
comments: string | null;
|
|
442
|
+
partnerText: string | null;
|
|
443
|
+
isPartnerTextVisible: boolean;
|
|
444
|
+
topEntry: boolean;
|
|
445
|
+
description: string;
|
|
446
|
+
truncateTitle: boolean;
|
|
447
|
+
}, true, {}, {}, {
|
|
448
|
+
P: {};
|
|
449
|
+
B: {};
|
|
450
|
+
D: {};
|
|
451
|
+
C: {};
|
|
452
|
+
M: {};
|
|
453
|
+
Defaults: {};
|
|
454
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
556
455
|
view: {
|
|
557
456
|
type: import("vue").PropType<"compact" | "standard" | "preview">;
|
|
558
457
|
required: true;
|
|
@@ -604,7 +503,16 @@ declare const meta: {
|
|
|
604
503
|
type: import("vue").PropType<boolean>;
|
|
605
504
|
default: boolean;
|
|
606
505
|
};
|
|
607
|
-
}
|
|
506
|
+
}>>, {}, {}, {}, {}, {
|
|
507
|
+
dateDetail: string;
|
|
508
|
+
location: string | null;
|
|
509
|
+
comments: string | null;
|
|
510
|
+
partnerText: string | null;
|
|
511
|
+
isPartnerTextVisible: boolean;
|
|
512
|
+
topEntry: boolean;
|
|
513
|
+
description: string;
|
|
514
|
+
truncateTitle: boolean;
|
|
515
|
+
}>;
|
|
608
516
|
__isFragment?: undefined;
|
|
609
517
|
__isTeleport?: undefined;
|
|
610
518
|
__isSuspense?: undefined;
|
|
@@ -678,93 +586,53 @@ declare const meta: {
|
|
|
678
586
|
};
|
|
679
587
|
});
|
|
680
588
|
UiFilterBadge: {
|
|
681
|
-
new (...args: any[]): {
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
}
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
};
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
default: string;
|
|
729
|
-
};
|
|
730
|
-
fill: {
|
|
731
|
-
type: import("vue").PropType<string>;
|
|
732
|
-
default: string;
|
|
733
|
-
};
|
|
734
|
-
color: {
|
|
735
|
-
type: import("vue").PropType<string>;
|
|
736
|
-
default: string;
|
|
737
|
-
};
|
|
738
|
-
iconIsFilled: {
|
|
739
|
-
type: import("vue").PropType<boolean>;
|
|
740
|
-
default: boolean;
|
|
741
|
-
};
|
|
742
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
743
|
-
size: "small" | "medium" | "large" | "xl";
|
|
744
|
-
fill: string;
|
|
745
|
-
color: string;
|
|
746
|
-
iconIsFilled: boolean;
|
|
747
|
-
}, {}, string, {}> & {
|
|
748
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
749
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
750
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
751
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
752
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
753
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
754
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
755
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
756
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
757
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
758
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
759
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
760
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
761
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
762
|
-
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;
|
|
763
|
-
};
|
|
764
|
-
$forceUpdate: () => void;
|
|
765
|
-
$nextTick: typeof import("vue").nextTick;
|
|
766
|
-
$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;
|
|
767
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
589
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
590
|
+
size: {
|
|
591
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "xl">;
|
|
592
|
+
default: string;
|
|
593
|
+
};
|
|
594
|
+
fill: {
|
|
595
|
+
type: import("vue").PropType<string>;
|
|
596
|
+
default: string;
|
|
597
|
+
};
|
|
598
|
+
color: {
|
|
599
|
+
type: import("vue").PropType<string>;
|
|
600
|
+
default: string;
|
|
601
|
+
};
|
|
602
|
+
iconIsFilled: {
|
|
603
|
+
type: import("vue").PropType<boolean>;
|
|
604
|
+
default: boolean;
|
|
605
|
+
};
|
|
606
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
607
|
+
size: {
|
|
608
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "xl">;
|
|
609
|
+
default: string;
|
|
610
|
+
};
|
|
611
|
+
fill: {
|
|
612
|
+
type: import("vue").PropType<string>;
|
|
613
|
+
default: string;
|
|
614
|
+
};
|
|
615
|
+
color: {
|
|
616
|
+
type: import("vue").PropType<string>;
|
|
617
|
+
default: string;
|
|
618
|
+
};
|
|
619
|
+
iconIsFilled: {
|
|
620
|
+
type: import("vue").PropType<boolean>;
|
|
621
|
+
default: boolean;
|
|
622
|
+
};
|
|
623
|
+
}>>, {
|
|
624
|
+
size: "small" | "medium" | "large" | "xl";
|
|
625
|
+
fill: string;
|
|
626
|
+
color: string;
|
|
627
|
+
iconIsFilled: boolean;
|
|
628
|
+
}, true, {}, {}, {
|
|
629
|
+
P: {};
|
|
630
|
+
B: {};
|
|
631
|
+
D: {};
|
|
632
|
+
C: {};
|
|
633
|
+
M: {};
|
|
634
|
+
Defaults: {};
|
|
635
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
768
636
|
size: {
|
|
769
637
|
type: import("vue").PropType<"small" | "medium" | "large" | "xl">;
|
|
770
638
|
default: string;
|
|
@@ -781,7 +649,12 @@ declare const meta: {
|
|
|
781
649
|
type: import("vue").PropType<boolean>;
|
|
782
650
|
default: boolean;
|
|
783
651
|
};
|
|
784
|
-
}
|
|
652
|
+
}>>, {}, {}, {}, {}, {
|
|
653
|
+
size: "small" | "medium" | "large" | "xl";
|
|
654
|
+
fill: string;
|
|
655
|
+
color: string;
|
|
656
|
+
iconIsFilled: boolean;
|
|
657
|
+
}>;
|
|
785
658
|
__isFragment?: undefined;
|
|
786
659
|
__isTeleport?: undefined;
|
|
787
660
|
__isSuspense?: undefined;
|
|
@@ -874,126 +747,7 @@ declare const meta: {
|
|
|
874
747
|
iconColor: "blue" | "white" | "gray";
|
|
875
748
|
}, {}>;
|
|
876
749
|
UiBadge: {
|
|
877
|
-
new (...args: any[]): {
|
|
878
|
-
$: import("vue").ComponentInternalInstance;
|
|
879
|
-
$data: {};
|
|
880
|
-
$props: Partial<{
|
|
881
|
-
text: string;
|
|
882
|
-
small: boolean;
|
|
883
|
-
trim: boolean;
|
|
884
|
-
color: "red" | "red-dark" | "orange" | "purple" | "blue" | "white" | "gray-300" | "gray-600" | "gray-800" | "black" | "neon-green" | "primary-green";
|
|
885
|
-
iconName: string | null;
|
|
886
|
-
mobileTrim: boolean;
|
|
887
|
-
screenReaderText: string;
|
|
888
|
-
}> & Omit<{
|
|
889
|
-
readonly small: boolean;
|
|
890
|
-
readonly trim: boolean;
|
|
891
|
-
readonly color: "red" | "red-dark" | "orange" | "purple" | "blue" | "white" | "gray-300" | "gray-600" | "gray-800" | "black" | "neon-green" | "primary-green";
|
|
892
|
-
readonly iconName: string | null;
|
|
893
|
-
readonly mobileTrim: boolean;
|
|
894
|
-
readonly screenReaderText: string;
|
|
895
|
-
readonly text?: string | undefined;
|
|
896
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
897
|
-
text: {
|
|
898
|
-
type: import("vue").PropType<string>;
|
|
899
|
-
default: undefined;
|
|
900
|
-
};
|
|
901
|
-
small: {
|
|
902
|
-
type: import("vue").PropType<boolean>;
|
|
903
|
-
default: boolean;
|
|
904
|
-
};
|
|
905
|
-
trim: {
|
|
906
|
-
type: import("vue").PropType<boolean>;
|
|
907
|
-
default: boolean;
|
|
908
|
-
};
|
|
909
|
-
color: {
|
|
910
|
-
type: import("vue").PropType<"red" | "red-dark" | "orange" | "purple" | "blue" | "white" | "gray-300" | "gray-600" | "gray-800" | "black" | "neon-green" | "primary-green">;
|
|
911
|
-
default: string;
|
|
912
|
-
};
|
|
913
|
-
iconName: {
|
|
914
|
-
type: import("vue").PropType<string | null>;
|
|
915
|
-
default: null;
|
|
916
|
-
};
|
|
917
|
-
mobileTrim: {
|
|
918
|
-
type: import("vue").PropType<boolean>;
|
|
919
|
-
default: boolean;
|
|
920
|
-
};
|
|
921
|
-
screenReaderText: {
|
|
922
|
-
type: import("vue").PropType<string>;
|
|
923
|
-
default: string;
|
|
924
|
-
};
|
|
925
|
-
}>>, "text" | "small" | "trim" | "color" | "iconName" | "mobileTrim" | "screenReaderText">;
|
|
926
|
-
$attrs: {
|
|
927
|
-
[x: string]: unknown;
|
|
928
|
-
};
|
|
929
|
-
$refs: {
|
|
930
|
-
[x: string]: unknown;
|
|
931
|
-
};
|
|
932
|
-
$slots: Readonly<{
|
|
933
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
934
|
-
}>;
|
|
935
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
936
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
937
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
938
|
-
$el: any;
|
|
939
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
940
|
-
text: {
|
|
941
|
-
type: import("vue").PropType<string>;
|
|
942
|
-
default: undefined;
|
|
943
|
-
};
|
|
944
|
-
small: {
|
|
945
|
-
type: import("vue").PropType<boolean>;
|
|
946
|
-
default: boolean;
|
|
947
|
-
};
|
|
948
|
-
trim: {
|
|
949
|
-
type: import("vue").PropType<boolean>;
|
|
950
|
-
default: boolean;
|
|
951
|
-
};
|
|
952
|
-
color: {
|
|
953
|
-
type: import("vue").PropType<"red" | "red-dark" | "orange" | "purple" | "blue" | "white" | "gray-300" | "gray-600" | "gray-800" | "black" | "neon-green" | "primary-green">;
|
|
954
|
-
default: string;
|
|
955
|
-
};
|
|
956
|
-
iconName: {
|
|
957
|
-
type: import("vue").PropType<string | null>;
|
|
958
|
-
default: null;
|
|
959
|
-
};
|
|
960
|
-
mobileTrim: {
|
|
961
|
-
type: import("vue").PropType<boolean>;
|
|
962
|
-
default: boolean;
|
|
963
|
-
};
|
|
964
|
-
screenReaderText: {
|
|
965
|
-
type: import("vue").PropType<string>;
|
|
966
|
-
default: string;
|
|
967
|
-
};
|
|
968
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
969
|
-
text: string;
|
|
970
|
-
small: boolean;
|
|
971
|
-
trim: boolean;
|
|
972
|
-
color: "red" | "red-dark" | "orange" | "purple" | "blue" | "white" | "gray-300" | "gray-600" | "gray-800" | "black" | "neon-green" | "primary-green";
|
|
973
|
-
iconName: string | null;
|
|
974
|
-
mobileTrim: boolean;
|
|
975
|
-
screenReaderText: string;
|
|
976
|
-
}, {}, string, {}> & {
|
|
977
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
978
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
979
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
980
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
981
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
982
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
983
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
984
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
985
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
986
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
987
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
988
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
989
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
990
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
991
|
-
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;
|
|
992
|
-
};
|
|
993
|
-
$forceUpdate: () => void;
|
|
994
|
-
$nextTick: typeof import("vue").nextTick;
|
|
995
|
-
$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;
|
|
996
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
750
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
997
751
|
text: {
|
|
998
752
|
type: import("vue").PropType<string>;
|
|
999
753
|
default: undefined;
|
|
@@ -1022,7 +776,88 @@ declare const meta: {
|
|
|
1022
776
|
type: import("vue").PropType<string>;
|
|
1023
777
|
default: string;
|
|
1024
778
|
};
|
|
1025
|
-
}
|
|
779
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
780
|
+
text: {
|
|
781
|
+
type: import("vue").PropType<string>;
|
|
782
|
+
default: undefined;
|
|
783
|
+
};
|
|
784
|
+
small: {
|
|
785
|
+
type: import("vue").PropType<boolean>;
|
|
786
|
+
default: boolean;
|
|
787
|
+
};
|
|
788
|
+
trim: {
|
|
789
|
+
type: import("vue").PropType<boolean>;
|
|
790
|
+
default: boolean;
|
|
791
|
+
};
|
|
792
|
+
color: {
|
|
793
|
+
type: import("vue").PropType<"red" | "red-dark" | "orange" | "purple" | "blue" | "white" | "gray-300" | "gray-600" | "gray-800" | "black" | "neon-green" | "primary-green">;
|
|
794
|
+
default: string;
|
|
795
|
+
};
|
|
796
|
+
iconName: {
|
|
797
|
+
type: import("vue").PropType<string | null>;
|
|
798
|
+
default: null;
|
|
799
|
+
};
|
|
800
|
+
mobileTrim: {
|
|
801
|
+
type: import("vue").PropType<boolean>;
|
|
802
|
+
default: boolean;
|
|
803
|
+
};
|
|
804
|
+
screenReaderText: {
|
|
805
|
+
type: import("vue").PropType<string>;
|
|
806
|
+
default: string;
|
|
807
|
+
};
|
|
808
|
+
}>>, {
|
|
809
|
+
text: string;
|
|
810
|
+
small: boolean;
|
|
811
|
+
trim: boolean;
|
|
812
|
+
color: "red" | "red-dark" | "orange" | "purple" | "blue" | "white" | "gray-300" | "gray-600" | "gray-800" | "black" | "neon-green" | "primary-green";
|
|
813
|
+
iconName: string | null;
|
|
814
|
+
mobileTrim: boolean;
|
|
815
|
+
screenReaderText: string;
|
|
816
|
+
}, true, {}, {}, {
|
|
817
|
+
P: {};
|
|
818
|
+
B: {};
|
|
819
|
+
D: {};
|
|
820
|
+
C: {};
|
|
821
|
+
M: {};
|
|
822
|
+
Defaults: {};
|
|
823
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
824
|
+
text: {
|
|
825
|
+
type: import("vue").PropType<string>;
|
|
826
|
+
default: undefined;
|
|
827
|
+
};
|
|
828
|
+
small: {
|
|
829
|
+
type: import("vue").PropType<boolean>;
|
|
830
|
+
default: boolean;
|
|
831
|
+
};
|
|
832
|
+
trim: {
|
|
833
|
+
type: import("vue").PropType<boolean>;
|
|
834
|
+
default: boolean;
|
|
835
|
+
};
|
|
836
|
+
color: {
|
|
837
|
+
type: import("vue").PropType<"red" | "red-dark" | "orange" | "purple" | "blue" | "white" | "gray-300" | "gray-600" | "gray-800" | "black" | "neon-green" | "primary-green">;
|
|
838
|
+
default: string;
|
|
839
|
+
};
|
|
840
|
+
iconName: {
|
|
841
|
+
type: import("vue").PropType<string | null>;
|
|
842
|
+
default: null;
|
|
843
|
+
};
|
|
844
|
+
mobileTrim: {
|
|
845
|
+
type: import("vue").PropType<boolean>;
|
|
846
|
+
default: boolean;
|
|
847
|
+
};
|
|
848
|
+
screenReaderText: {
|
|
849
|
+
type: import("vue").PropType<string>;
|
|
850
|
+
default: string;
|
|
851
|
+
};
|
|
852
|
+
}>>, {}, {}, {}, {}, {
|
|
853
|
+
text: string;
|
|
854
|
+
small: boolean;
|
|
855
|
+
trim: boolean;
|
|
856
|
+
color: "red" | "red-dark" | "orange" | "purple" | "blue" | "white" | "gray-300" | "gray-600" | "gray-800" | "black" | "neon-green" | "primary-green";
|
|
857
|
+
iconName: string | null;
|
|
858
|
+
mobileTrim: boolean;
|
|
859
|
+
screenReaderText: string;
|
|
860
|
+
}>;
|
|
1026
861
|
__isFragment?: undefined;
|
|
1027
862
|
__isTeleport?: undefined;
|
|
1028
863
|
__isSuspense?: undefined;
|