@bethinkpl/design-system 41.1.4 → 42.0.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/design-system.css +1 -1
- package/dist/design-system.js +8208 -8264
- package/dist/design-system.js.map +1 -1
- package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +3 -0
- package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +3 -0
- package/dist/lib/js/components/DatePickers/DateBox/DateBox.vue.d.ts +3 -0
- package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +3 -0
- package/dist/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue.d.ts +3 -0
- package/dist/lib/js/components/Drawer/Drawer.consts.d.ts +6 -0
- package/dist/lib/js/components/Drawer/Drawer.vue.d.ts +13 -1
- package/dist/lib/js/components/Drawer/DrawerHeader/DrawerHeader.consts.d.ts +5 -0
- package/dist/lib/js/components/Drawer/DrawerHeader/DrawerHeader.vue.d.ts +63 -1394
- package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +9 -0
- package/dist/lib/js/components/Form/RadioButton/RadioButton.vue.d.ts +3 -0
- package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +6 -0
- package/dist/lib/js/components/Headers/SectionHeader/SectionHeader.vue.d.ts +6 -0
- package/dist/lib/js/components/Icons/Icon/Icon.consts.d.ts +3 -0
- package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +6 -0
- package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +6 -0
- package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +6 -0
- package/dist/lib/js/components/ProgressBar/ProgressBar.vue.d.ts +3 -0
- package/dist/lib/js/components/ProgressDonutChart/ProgressDonutChart.vue.d.ts +3 -0
- package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +3 -0
- package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +3 -0
- package/dist/lib/js/components/Statuses/AccessStatus/AccessStatus.vue.d.ts +3 -0
- package/dist/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue.d.ts +3 -0
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +979 -154
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +970 -145
- package/dist/lib/js/components/Switch/Switch.vue.d.ts +3 -0
- package/dist/lib/js/components/Tile/Tile.sb.shared.d.ts +3 -0
- package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +3 -0
- package/dist/lib/js/icons/fontawesome.d.ts +3 -0
- package/dist/lib/js/index.d.ts +0 -1
- package/lib/js/components/Drawer/Drawer.consts.ts +9 -0
- package/lib/js/components/Drawer/Drawer.spec.ts +36 -0
- package/lib/js/components/Drawer/Drawer.stories.ts +7 -2
- package/lib/js/components/Drawer/Drawer.vue +35 -2
- package/lib/js/components/Drawer/DrawerHeader/DrawerHeader.consts.ts +8 -0
- package/lib/js/components/Drawer/DrawerHeader/DrawerHeader.spec.ts +40 -1
- package/lib/js/components/Drawer/DrawerHeader/DrawerHeader.stories.ts +22 -8
- package/lib/js/components/Drawer/DrawerHeader/DrawerHeader.vue +129 -146
- package/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue +7 -12
- package/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue +7 -12
- package/lib/js/icons/fontawesome.ts +6 -0
- package/lib/js/index.ts +0 -1
- package/package.json +1 -1
- package/dist/lib/js/components/Modal/Modal.vue.d.ts +0 -394
- package/dist/lib/js/components/Modal/index.d.ts +0 -3
- package/lib/js/components/Modal/Modal.spec.ts +0 -58
- package/lib/js/components/Modal/Modal.vue +0 -137
- package/lib/js/components/Modal/index.ts +0 -3
|
@@ -66,6 +66,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
66
66
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
67
67
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
68
68
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
69
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
70
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
69
71
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
70
72
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
71
73
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -133,6 +135,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
133
135
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
134
136
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
135
137
|
readonly FA_COMMENTS_QUESTION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
138
|
+
readonly FA_COMMENTS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
136
139
|
readonly FA_COMMENTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
137
140
|
readonly FA_COMPASS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
138
141
|
readonly FA_COMPRESS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -328,11 +331,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
328
331
|
X_LARGE: string;
|
|
329
332
|
XX_LARGE: string;
|
|
330
333
|
}>;
|
|
331
|
-
BUTTON_TYPES: Readonly<{
|
|
332
|
-
readonly FILLED: "filled";
|
|
333
|
-
readonly OUTLINED: "outlined";
|
|
334
|
-
readonly TEXT: "text";
|
|
335
|
-
}>;
|
|
336
334
|
SURVEY_QUESTION_STATES: Readonly<{
|
|
337
335
|
readonly DEFAULT: "default";
|
|
338
336
|
readonly DISABLED: "disabled";
|
|
@@ -401,95 +399,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
401
399
|
disabled: boolean;
|
|
402
400
|
placeholder: string;
|
|
403
401
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
404
|
-
DsButton: {
|
|
405
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
406
|
-
size: {
|
|
407
|
-
type: import('vue').PropType<string>;
|
|
408
|
-
};
|
|
409
|
-
type: {
|
|
410
|
-
type: import('vue').PropType<string>;
|
|
411
|
-
};
|
|
412
|
-
color: {
|
|
413
|
-
type: import('vue').PropType<string | null>;
|
|
414
|
-
};
|
|
415
|
-
radius: {
|
|
416
|
-
type: import('vue').PropType<string>;
|
|
417
|
-
};
|
|
418
|
-
state: {
|
|
419
|
-
type: import('vue').PropType<string>;
|
|
420
|
-
};
|
|
421
|
-
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
422
|
-
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
423
|
-
elevation: {
|
|
424
|
-
type: import('vue').PropType<string>;
|
|
425
|
-
};
|
|
426
|
-
as: {
|
|
427
|
-
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
428
|
-
};
|
|
429
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
430
|
-
P: {};
|
|
431
|
-
B: {};
|
|
432
|
-
D: {};
|
|
433
|
-
C: {};
|
|
434
|
-
M: {};
|
|
435
|
-
Defaults: {};
|
|
436
|
-
}, Readonly<import('vue').ExtractPropTypes<{
|
|
437
|
-
size: {
|
|
438
|
-
type: import('vue').PropType<string>;
|
|
439
|
-
};
|
|
440
|
-
type: {
|
|
441
|
-
type: import('vue').PropType<string>;
|
|
442
|
-
};
|
|
443
|
-
color: {
|
|
444
|
-
type: import('vue').PropType<string | null>;
|
|
445
|
-
};
|
|
446
|
-
radius: {
|
|
447
|
-
type: import('vue').PropType<string>;
|
|
448
|
-
};
|
|
449
|
-
state: {
|
|
450
|
-
type: import('vue').PropType<string>;
|
|
451
|
-
};
|
|
452
|
-
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
453
|
-
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
454
|
-
elevation: {
|
|
455
|
-
type: import('vue').PropType<string>;
|
|
456
|
-
};
|
|
457
|
-
as: {
|
|
458
|
-
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
459
|
-
};
|
|
460
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
461
|
-
__isFragment?: never;
|
|
462
|
-
__isTeleport?: never;
|
|
463
|
-
__isSuspense?: never;
|
|
464
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
465
|
-
size: {
|
|
466
|
-
type: import('vue').PropType<string>;
|
|
467
|
-
};
|
|
468
|
-
type: {
|
|
469
|
-
type: import('vue').PropType<string>;
|
|
470
|
-
};
|
|
471
|
-
color: {
|
|
472
|
-
type: import('vue').PropType<string | null>;
|
|
473
|
-
};
|
|
474
|
-
radius: {
|
|
475
|
-
type: import('vue').PropType<string>;
|
|
476
|
-
};
|
|
477
|
-
state: {
|
|
478
|
-
type: import('vue').PropType<string>;
|
|
479
|
-
};
|
|
480
|
-
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
481
|
-
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
482
|
-
elevation: {
|
|
483
|
-
type: import('vue').PropType<string>;
|
|
484
|
-
};
|
|
485
|
-
as: {
|
|
486
|
-
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
487
|
-
};
|
|
488
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
489
|
-
$slots: {
|
|
490
|
-
default?(_: {}): any;
|
|
491
|
-
};
|
|
492
|
-
});
|
|
493
402
|
DsCard: {
|
|
494
403
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
495
404
|
contentHasPadding: {
|
|
@@ -680,7 +589,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
680
589
|
radius: {
|
|
681
590
|
type: StringConstructor;
|
|
682
591
|
default: "capsule";
|
|
683
|
-
validator(value: import('
|
|
592
|
+
validator(value: import('../../..').ButtonRadius): boolean;
|
|
684
593
|
};
|
|
685
594
|
type: {
|
|
686
595
|
type: StringConstructor;
|
|
@@ -705,7 +614,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
705
614
|
elevation: {
|
|
706
615
|
type: StringConstructor;
|
|
707
616
|
default: "none";
|
|
708
|
-
validator(value: import('
|
|
617
|
+
validator(value: import('../../..').ButtonElevation): boolean;
|
|
709
618
|
};
|
|
710
619
|
touchableDeprecated: {
|
|
711
620
|
type: BooleanConstructor;
|
|
@@ -717,7 +626,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
717
626
|
validator(value: import('../../../utils/type.utils').Value<typeof import('../../Buttons/IconButton').ICON_BUTTON_STATES>): boolean;
|
|
718
627
|
};
|
|
719
628
|
}>, {
|
|
720
|
-
ICON_BUTTON_STATE_MAP: Record<import('../../Buttons/IconButton').IconButtonState, import('
|
|
629
|
+
ICON_BUTTON_STATE_MAP: Record<import('../../Buttons/IconButton').IconButtonState, import('../../..').ButtonState>;
|
|
721
630
|
isHovered: import('vue').Ref<boolean>;
|
|
722
631
|
mouseOver: () => void;
|
|
723
632
|
mouseLeave: () => void;
|
|
@@ -767,6 +676,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
767
676
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
768
677
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
769
678
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
679
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
680
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
770
681
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
771
682
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
772
683
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -834,6 +745,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
834
745
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
835
746
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
836
747
|
readonly FA_COMMENTS_QUESTION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
748
|
+
readonly FA_COMMENTS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
837
749
|
readonly FA_COMMENTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
838
750
|
readonly FA_COMPASS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
839
751
|
readonly FA_COMPRESS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1075,7 +987,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1075
987
|
radius: {
|
|
1076
988
|
type: StringConstructor;
|
|
1077
989
|
default: "capsule";
|
|
1078
|
-
validator(value: import('
|
|
990
|
+
validator(value: import('../../..').ButtonRadius): boolean;
|
|
1079
991
|
};
|
|
1080
992
|
type: {
|
|
1081
993
|
type: StringConstructor;
|
|
@@ -1100,7 +1012,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1100
1012
|
elevation: {
|
|
1101
1013
|
type: StringConstructor;
|
|
1102
1014
|
default: "none";
|
|
1103
|
-
validator(value: import('
|
|
1015
|
+
validator(value: import('../../..').ButtonElevation): boolean;
|
|
1104
1016
|
};
|
|
1105
1017
|
touchableDeprecated: {
|
|
1106
1018
|
type: BooleanConstructor;
|
|
@@ -1287,16 +1199,120 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1287
1199
|
});
|
|
1288
1200
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1289
1201
|
DsModal: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1290
|
-
|
|
1202
|
+
size: {
|
|
1203
|
+
type: StringConstructor;
|
|
1204
|
+
default: "medium";
|
|
1205
|
+
validator: (value: import('../../Modals/Modal').ModalSize) => boolean;
|
|
1206
|
+
};
|
|
1207
|
+
danger: {
|
|
1291
1208
|
type: BooleanConstructor;
|
|
1292
1209
|
default: boolean;
|
|
1293
1210
|
};
|
|
1294
|
-
|
|
1211
|
+
headerTitleSize: {
|
|
1212
|
+
type: StringConstructor;
|
|
1213
|
+
default: "medium";
|
|
1214
|
+
validator: (value: import('../../Modals/Modal').ModalHeaderTitleSize) => boolean;
|
|
1215
|
+
};
|
|
1216
|
+
headerTitle: {
|
|
1217
|
+
type: StringConstructor;
|
|
1218
|
+
default: null;
|
|
1219
|
+
};
|
|
1220
|
+
headerSubtitle: {
|
|
1221
|
+
type: StringConstructor;
|
|
1222
|
+
default: null;
|
|
1223
|
+
};
|
|
1224
|
+
headerFeatureIcon: {
|
|
1225
|
+
type: ObjectConstructor;
|
|
1226
|
+
default: null;
|
|
1227
|
+
validator(icon: unknown): boolean;
|
|
1228
|
+
};
|
|
1229
|
+
headerFeatureIconColor: {
|
|
1230
|
+
type: StringConstructor;
|
|
1231
|
+
default: "neutral";
|
|
1232
|
+
validator(color: import('../../..').FeatureIconColor): boolean;
|
|
1233
|
+
};
|
|
1234
|
+
contentCentered: {
|
|
1295
1235
|
type: BooleanConstructor;
|
|
1296
1236
|
default: boolean;
|
|
1297
1237
|
};
|
|
1298
|
-
|
|
1299
|
-
|
|
1238
|
+
headerImage: {
|
|
1239
|
+
type: StringConstructor;
|
|
1240
|
+
default: null;
|
|
1241
|
+
};
|
|
1242
|
+
footerPrimaryButtonText: {
|
|
1243
|
+
type: StringConstructor;
|
|
1244
|
+
default: null;
|
|
1245
|
+
};
|
|
1246
|
+
footerPrimaryButtonIcon: {
|
|
1247
|
+
type: ObjectConstructor;
|
|
1248
|
+
default: null;
|
|
1249
|
+
validator(icon: unknown): boolean;
|
|
1250
|
+
};
|
|
1251
|
+
footerPrimaryButtonState: {
|
|
1252
|
+
type: StringConstructor;
|
|
1253
|
+
default: "default";
|
|
1254
|
+
validator(state: import('../../..').ButtonState): boolean;
|
|
1255
|
+
};
|
|
1256
|
+
footerSecondaryButtonText: {
|
|
1257
|
+
type: StringConstructor;
|
|
1258
|
+
default: null;
|
|
1259
|
+
};
|
|
1260
|
+
footerSecondaryButtonIcon: {
|
|
1261
|
+
type: ObjectConstructor;
|
|
1262
|
+
default: null;
|
|
1263
|
+
validator(icon: unknown): boolean;
|
|
1264
|
+
};
|
|
1265
|
+
footerSecondaryButtonState: {
|
|
1266
|
+
type: StringConstructor;
|
|
1267
|
+
default: "default";
|
|
1268
|
+
validator(state: import('../../..').ButtonState): boolean;
|
|
1269
|
+
};
|
|
1270
|
+
footerTertiaryButtonText: {
|
|
1271
|
+
type: StringConstructor;
|
|
1272
|
+
default: null;
|
|
1273
|
+
};
|
|
1274
|
+
footerTertiaryButtonIcon: {
|
|
1275
|
+
type: ObjectConstructor;
|
|
1276
|
+
default: null;
|
|
1277
|
+
validator(icon: unknown): boolean;
|
|
1278
|
+
};
|
|
1279
|
+
footerTertiaryButtonState: {
|
|
1280
|
+
type: StringConstructor;
|
|
1281
|
+
default: "default";
|
|
1282
|
+
validator(state: import('../../..').ButtonState): boolean;
|
|
1283
|
+
};
|
|
1284
|
+
footerCheckboxText: {
|
|
1285
|
+
type: StringConstructor;
|
|
1286
|
+
default: null;
|
|
1287
|
+
};
|
|
1288
|
+
isFooterSticky: {
|
|
1289
|
+
type: BooleanConstructor;
|
|
1290
|
+
default: boolean;
|
|
1291
|
+
};
|
|
1292
|
+
isFullHeight: {
|
|
1293
|
+
type: BooleanConstructor;
|
|
1294
|
+
default: boolean;
|
|
1295
|
+
};
|
|
1296
|
+
}>, {
|
|
1297
|
+
BUTTON_COLORS: {
|
|
1298
|
+
readonly PRIMARY: "primary";
|
|
1299
|
+
readonly NEUTRAL: "neutral";
|
|
1300
|
+
readonly DANGER: "danger";
|
|
1301
|
+
readonly SUCCESS: "success";
|
|
1302
|
+
readonly INVERTED: "inverted";
|
|
1303
|
+
readonly MAGIC: "magic";
|
|
1304
|
+
};
|
|
1305
|
+
BUTTON_ELEVATIONS: {
|
|
1306
|
+
readonly NONE: "none";
|
|
1307
|
+
readonly X_SMALL: "x-small";
|
|
1308
|
+
readonly SMALL: "small";
|
|
1309
|
+
};
|
|
1310
|
+
BUTTON_TYPES: {
|
|
1311
|
+
readonly FILLED: "filled";
|
|
1312
|
+
readonly OUTLINED: "outlined";
|
|
1313
|
+
readonly TEXT: "text";
|
|
1314
|
+
};
|
|
1315
|
+
ICONS: {
|
|
1300
1316
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
1301
1317
|
readonly CHANGE: VueConstructor<Vue>;
|
|
1302
1318
|
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
@@ -1339,6 +1355,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1339
1355
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1340
1356
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1341
1357
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1358
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1359
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1342
1360
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1343
1361
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1344
1362
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1406,6 +1424,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1406
1424
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1407
1425
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1408
1426
|
readonly FA_COMMENTS_QUESTION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1427
|
+
readonly FA_COMMENTS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1409
1428
|
readonly FA_COMMENTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1410
1429
|
readonly FA_COMPASS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1411
1430
|
readonly FA_COMPRESS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1577,8 +1596,21 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1577
1596
|
readonly FAD_SQUARE_MINUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1578
1597
|
readonly FAD_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1579
1598
|
readonly FAD_SQUARE_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1580
|
-
}
|
|
1581
|
-
|
|
1599
|
+
};
|
|
1600
|
+
ICON_BUTTON_COLORS: {
|
|
1601
|
+
readonly PRIMARY: "primary";
|
|
1602
|
+
readonly NEUTRAL: "neutral";
|
|
1603
|
+
readonly NEUTRAL_WEAK: "neutral-weak";
|
|
1604
|
+
readonly FAIL: "fail";
|
|
1605
|
+
readonly DANGER: "danger";
|
|
1606
|
+
readonly SUCCESS: "success";
|
|
1607
|
+
readonly INVERTED: "inverted";
|
|
1608
|
+
readonly WARNING: "warning";
|
|
1609
|
+
readonly INFO: "info";
|
|
1610
|
+
readonly MAGIC: "magic";
|
|
1611
|
+
readonly ACCENT: "accent";
|
|
1612
|
+
};
|
|
1613
|
+
ICON_SIZES: {
|
|
1582
1614
|
XXX_SMALL: string;
|
|
1583
1615
|
XX_SMALL: string;
|
|
1584
1616
|
X_SMALL: string;
|
|
@@ -1587,96 +1619,889 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1587
1619
|
LARGE: string;
|
|
1588
1620
|
X_LARGE: string;
|
|
1589
1621
|
XX_LARGE: string;
|
|
1590
|
-
}
|
|
1591
|
-
|
|
1592
|
-
|
|
1622
|
+
};
|
|
1623
|
+
MODAL_SIZES: {
|
|
1624
|
+
readonly SMALL: "small";
|
|
1625
|
+
readonly MEDIUM: "medium";
|
|
1626
|
+
};
|
|
1627
|
+
MODAL_HEADER_TITLE_SIZES: {
|
|
1628
|
+
readonly SMALL: "small";
|
|
1629
|
+
readonly MEDIUM: "medium";
|
|
1630
|
+
};
|
|
1631
|
+
FEATURE_ICON_SIZES: {
|
|
1632
|
+
readonly X_SMALL: "xSmall";
|
|
1633
|
+
readonly SMALL: "small";
|
|
1634
|
+
readonly MEDIUM: "medium";
|
|
1635
|
+
readonly LARGE: "large";
|
|
1636
|
+
readonly X_LARGE: "xLarge";
|
|
1637
|
+
};
|
|
1638
|
+
}, {}, {
|
|
1639
|
+
calcHeaderFeatureIconColor(): any;
|
|
1640
|
+
calcFooterPrimaryButtonColor(): "neutral" | "primary";
|
|
1641
|
+
calcFooterSecondaryButtonColor(): "danger" | "neutral";
|
|
1642
|
+
calcSingleColumn(): boolean;
|
|
1643
|
+
displayFooter(): any;
|
|
1644
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1645
|
+
'tertiary-button-click': () => true;
|
|
1646
|
+
'checkbox-change': (checked: boolean) => true;
|
|
1647
|
+
'close-modal': () => true;
|
|
1648
|
+
'secondary-button-click': () => true;
|
|
1649
|
+
'primary-button-click': () => true;
|
|
1650
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1651
|
+
size: {
|
|
1652
|
+
type: StringConstructor;
|
|
1653
|
+
default: "medium";
|
|
1654
|
+
validator: (value: import('../../Modals/Modal').ModalSize) => boolean;
|
|
1655
|
+
};
|
|
1656
|
+
danger: {
|
|
1593
1657
|
type: BooleanConstructor;
|
|
1594
1658
|
default: boolean;
|
|
1595
1659
|
};
|
|
1596
|
-
|
|
1660
|
+
headerTitleSize: {
|
|
1661
|
+
type: StringConstructor;
|
|
1662
|
+
default: "medium";
|
|
1663
|
+
validator: (value: import('../../Modals/Modal').ModalHeaderTitleSize) => boolean;
|
|
1664
|
+
};
|
|
1665
|
+
headerTitle: {
|
|
1666
|
+
type: StringConstructor;
|
|
1667
|
+
default: null;
|
|
1668
|
+
};
|
|
1669
|
+
headerSubtitle: {
|
|
1670
|
+
type: StringConstructor;
|
|
1671
|
+
default: null;
|
|
1672
|
+
};
|
|
1673
|
+
headerFeatureIcon: {
|
|
1674
|
+
type: ObjectConstructor;
|
|
1675
|
+
default: null;
|
|
1676
|
+
validator(icon: unknown): boolean;
|
|
1677
|
+
};
|
|
1678
|
+
headerFeatureIconColor: {
|
|
1679
|
+
type: StringConstructor;
|
|
1680
|
+
default: "neutral";
|
|
1681
|
+
validator(color: import('../../..').FeatureIconColor): boolean;
|
|
1682
|
+
};
|
|
1683
|
+
contentCentered: {
|
|
1684
|
+
type: BooleanConstructor;
|
|
1685
|
+
default: boolean;
|
|
1686
|
+
};
|
|
1687
|
+
headerImage: {
|
|
1688
|
+
type: StringConstructor;
|
|
1689
|
+
default: null;
|
|
1690
|
+
};
|
|
1691
|
+
footerPrimaryButtonText: {
|
|
1692
|
+
type: StringConstructor;
|
|
1693
|
+
default: null;
|
|
1694
|
+
};
|
|
1695
|
+
footerPrimaryButtonIcon: {
|
|
1696
|
+
type: ObjectConstructor;
|
|
1697
|
+
default: null;
|
|
1698
|
+
validator(icon: unknown): boolean;
|
|
1699
|
+
};
|
|
1700
|
+
footerPrimaryButtonState: {
|
|
1701
|
+
type: StringConstructor;
|
|
1702
|
+
default: "default";
|
|
1703
|
+
validator(state: import('../../..').ButtonState): boolean;
|
|
1704
|
+
};
|
|
1705
|
+
footerSecondaryButtonText: {
|
|
1706
|
+
type: StringConstructor;
|
|
1707
|
+
default: null;
|
|
1708
|
+
};
|
|
1709
|
+
footerSecondaryButtonIcon: {
|
|
1710
|
+
type: ObjectConstructor;
|
|
1711
|
+
default: null;
|
|
1712
|
+
validator(icon: unknown): boolean;
|
|
1713
|
+
};
|
|
1714
|
+
footerSecondaryButtonState: {
|
|
1715
|
+
type: StringConstructor;
|
|
1716
|
+
default: "default";
|
|
1717
|
+
validator(state: import('../../..').ButtonState): boolean;
|
|
1718
|
+
};
|
|
1719
|
+
footerTertiaryButtonText: {
|
|
1720
|
+
type: StringConstructor;
|
|
1721
|
+
default: null;
|
|
1722
|
+
};
|
|
1723
|
+
footerTertiaryButtonIcon: {
|
|
1724
|
+
type: ObjectConstructor;
|
|
1725
|
+
default: null;
|
|
1726
|
+
validator(icon: unknown): boolean;
|
|
1727
|
+
};
|
|
1728
|
+
footerTertiaryButtonState: {
|
|
1729
|
+
type: StringConstructor;
|
|
1730
|
+
default: "default";
|
|
1731
|
+
validator(state: import('../../..').ButtonState): boolean;
|
|
1732
|
+
};
|
|
1733
|
+
footerCheckboxText: {
|
|
1734
|
+
type: StringConstructor;
|
|
1735
|
+
default: null;
|
|
1736
|
+
};
|
|
1737
|
+
isFooterSticky: {
|
|
1738
|
+
type: BooleanConstructor;
|
|
1739
|
+
default: boolean;
|
|
1740
|
+
};
|
|
1741
|
+
isFullHeight: {
|
|
1597
1742
|
type: BooleanConstructor;
|
|
1598
1743
|
default: boolean;
|
|
1599
1744
|
};
|
|
1600
1745
|
}>> & Readonly<{
|
|
1601
|
-
"
|
|
1746
|
+
"onTertiary-button-click"?: (() => any) | undefined;
|
|
1747
|
+
"onCheckbox-change"?: ((checked: boolean) => any) | undefined;
|
|
1748
|
+
"onClose-modal"?: (() => any) | undefined;
|
|
1749
|
+
"onSecondary-button-click"?: (() => any) | undefined;
|
|
1750
|
+
"onPrimary-button-click"?: (() => any) | undefined;
|
|
1602
1751
|
}>, {
|
|
1603
|
-
|
|
1604
|
-
|
|
1752
|
+
danger: boolean;
|
|
1753
|
+
size: string;
|
|
1754
|
+
headerTitleSize: string;
|
|
1755
|
+
headerTitle: string;
|
|
1756
|
+
headerSubtitle: string;
|
|
1757
|
+
headerFeatureIcon: Record<string, any>;
|
|
1758
|
+
headerFeatureIconColor: string;
|
|
1759
|
+
contentCentered: boolean;
|
|
1760
|
+
headerImage: string;
|
|
1761
|
+
footerPrimaryButtonText: string;
|
|
1762
|
+
footerPrimaryButtonIcon: Record<string, any>;
|
|
1763
|
+
footerPrimaryButtonState: string;
|
|
1764
|
+
footerSecondaryButtonText: string;
|
|
1765
|
+
footerSecondaryButtonIcon: Record<string, any>;
|
|
1766
|
+
footerSecondaryButtonState: string;
|
|
1767
|
+
footerTertiaryButtonText: string;
|
|
1768
|
+
footerTertiaryButtonIcon: Record<string, any>;
|
|
1769
|
+
footerTertiaryButtonState: string;
|
|
1770
|
+
footerCheckboxText: string;
|
|
1771
|
+
isFooterSticky: boolean;
|
|
1772
|
+
isFullHeight: boolean;
|
|
1605
1773
|
}, {}, {
|
|
1606
|
-
|
|
1774
|
+
FeatureIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1775
|
+
icon: import('../../Icons/Icon').IconItem;
|
|
1776
|
+
size: {
|
|
1777
|
+
type: import('vue').PropType<import('../../..').FeatureIconSize>;
|
|
1778
|
+
};
|
|
1779
|
+
color: {
|
|
1780
|
+
type: import('vue').PropType<import('../../..').FeatureIconColor>;
|
|
1781
|
+
required: true;
|
|
1782
|
+
};
|
|
1783
|
+
doubleBackground: {
|
|
1784
|
+
type: import('vue').PropType<boolean>;
|
|
1785
|
+
};
|
|
1786
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1787
|
+
icon: import('../../Icons/Icon').IconItem;
|
|
1788
|
+
size: {
|
|
1789
|
+
type: import('vue').PropType<import('../../..').FeatureIconSize>;
|
|
1790
|
+
};
|
|
1791
|
+
color: {
|
|
1792
|
+
type: import('vue').PropType<import('../../..').FeatureIconColor>;
|
|
1793
|
+
required: true;
|
|
1794
|
+
};
|
|
1795
|
+
doubleBackground: {
|
|
1796
|
+
type: import('vue').PropType<boolean>;
|
|
1797
|
+
};
|
|
1798
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1799
|
+
WnlButton: {
|
|
1800
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
1801
|
+
size: {
|
|
1802
|
+
type: import('vue').PropType<string>;
|
|
1803
|
+
};
|
|
1804
|
+
type: {
|
|
1805
|
+
type: import('vue').PropType<string>;
|
|
1806
|
+
};
|
|
1807
|
+
color: {
|
|
1808
|
+
type: import('vue').PropType<string | null>;
|
|
1809
|
+
};
|
|
1810
|
+
radius: {
|
|
1811
|
+
type: import('vue').PropType<string>;
|
|
1812
|
+
};
|
|
1813
|
+
state: {
|
|
1814
|
+
type: import('vue').PropType<string>;
|
|
1815
|
+
};
|
|
1816
|
+
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
1817
|
+
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
1818
|
+
elevation: {
|
|
1819
|
+
type: import('vue').PropType<string>;
|
|
1820
|
+
};
|
|
1821
|
+
as: {
|
|
1822
|
+
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
1823
|
+
};
|
|
1824
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1825
|
+
P: {};
|
|
1826
|
+
B: {};
|
|
1827
|
+
D: {};
|
|
1828
|
+
C: {};
|
|
1829
|
+
M: {};
|
|
1830
|
+
Defaults: {};
|
|
1831
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
1832
|
+
size: {
|
|
1833
|
+
type: import('vue').PropType<string>;
|
|
1834
|
+
};
|
|
1835
|
+
type: {
|
|
1836
|
+
type: import('vue').PropType<string>;
|
|
1837
|
+
};
|
|
1838
|
+
color: {
|
|
1839
|
+
type: import('vue').PropType<string | null>;
|
|
1840
|
+
};
|
|
1841
|
+
radius: {
|
|
1842
|
+
type: import('vue').PropType<string>;
|
|
1843
|
+
};
|
|
1844
|
+
state: {
|
|
1845
|
+
type: import('vue').PropType<string>;
|
|
1846
|
+
};
|
|
1847
|
+
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
1848
|
+
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
1849
|
+
elevation: {
|
|
1850
|
+
type: import('vue').PropType<string>;
|
|
1851
|
+
};
|
|
1852
|
+
as: {
|
|
1853
|
+
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
1854
|
+
};
|
|
1855
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
1856
|
+
__isFragment?: never;
|
|
1857
|
+
__isTeleport?: never;
|
|
1858
|
+
__isSuspense?: never;
|
|
1859
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
1860
|
+
size: {
|
|
1861
|
+
type: import('vue').PropType<string>;
|
|
1862
|
+
};
|
|
1863
|
+
type: {
|
|
1864
|
+
type: import('vue').PropType<string>;
|
|
1865
|
+
};
|
|
1866
|
+
color: {
|
|
1867
|
+
type: import('vue').PropType<string | null>;
|
|
1868
|
+
};
|
|
1869
|
+
radius: {
|
|
1870
|
+
type: import('vue').PropType<string>;
|
|
1871
|
+
};
|
|
1872
|
+
state: {
|
|
1873
|
+
type: import('vue').PropType<string>;
|
|
1874
|
+
};
|
|
1875
|
+
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
1876
|
+
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
1877
|
+
elevation: {
|
|
1878
|
+
type: import('vue').PropType<string>;
|
|
1879
|
+
};
|
|
1880
|
+
as: {
|
|
1881
|
+
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
1882
|
+
};
|
|
1883
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1884
|
+
$slots: {
|
|
1885
|
+
default?(_: {}): any;
|
|
1886
|
+
};
|
|
1887
|
+
});
|
|
1888
|
+
WnlIconButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1889
|
+
size: {
|
|
1890
|
+
type: StringConstructor;
|
|
1891
|
+
default: "large";
|
|
1892
|
+
validator(value: import('../../Buttons/IconButton').IconButtonSize): boolean;
|
|
1893
|
+
};
|
|
1894
|
+
radius: {
|
|
1895
|
+
type: StringConstructor;
|
|
1896
|
+
default: "capsule";
|
|
1897
|
+
validator(value: import('../../..').ButtonRadius): boolean;
|
|
1898
|
+
};
|
|
1899
|
+
type: {
|
|
1900
|
+
type: StringConstructor;
|
|
1901
|
+
default: "icon-only";
|
|
1902
|
+
validator(value: import('../../Buttons/IconButton').IconButtonType): boolean;
|
|
1903
|
+
};
|
|
1607
1904
|
icon: {
|
|
1608
1905
|
type: ObjectConstructor;
|
|
1609
1906
|
required: true;
|
|
1610
1907
|
validator(icon: unknown): boolean;
|
|
1611
1908
|
};
|
|
1612
|
-
|
|
1909
|
+
color: {
|
|
1613
1910
|
type: StringConstructor;
|
|
1614
|
-
default:
|
|
1615
|
-
validator
|
|
1911
|
+
default: "primary";
|
|
1912
|
+
validator(value: import('../../Buttons/IconButton').IconButtonColor): boolean;
|
|
1616
1913
|
};
|
|
1617
|
-
|
|
1618
|
-
type:
|
|
1619
|
-
default:
|
|
1620
|
-
|
|
1621
|
-
flippedVertical: {
|
|
1622
|
-
type: BooleanConstructor;
|
|
1623
|
-
default: boolean;
|
|
1914
|
+
colorScheme: {
|
|
1915
|
+
type: StringConstructor;
|
|
1916
|
+
default: "all-in-color";
|
|
1917
|
+
validator(value: import('../../Buttons/IconButton').IconButtonColorScheme): boolean;
|
|
1624
1918
|
};
|
|
1625
|
-
|
|
1626
|
-
type:
|
|
1627
|
-
default:
|
|
1919
|
+
elevation: {
|
|
1920
|
+
type: StringConstructor;
|
|
1921
|
+
default: "none";
|
|
1922
|
+
validator(value: import('../../..').ButtonElevation): boolean;
|
|
1628
1923
|
};
|
|
1629
1924
|
touchableDeprecated: {
|
|
1630
1925
|
type: BooleanConstructor;
|
|
1631
1926
|
default: boolean;
|
|
1632
1927
|
};
|
|
1633
|
-
|
|
1634
|
-
type:
|
|
1635
|
-
default:
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1928
|
+
state: {
|
|
1929
|
+
type: StringConstructor;
|
|
1930
|
+
default: "default";
|
|
1931
|
+
validator(value: import('../../../utils/type.utils').Value<typeof import('../../Buttons/IconButton').ICON_BUTTON_STATES>): boolean;
|
|
1932
|
+
};
|
|
1933
|
+
}>, {
|
|
1934
|
+
ICON_BUTTON_STATE_MAP: Record<import('../../Buttons/IconButton').IconButtonState, import('../../..').ButtonState>;
|
|
1935
|
+
isHovered: import('vue').Ref<boolean>;
|
|
1936
|
+
mouseOver: () => void;
|
|
1937
|
+
mouseLeave: () => void;
|
|
1938
|
+
touchStart: () => void;
|
|
1939
|
+
touchEnd: () => void;
|
|
1940
|
+
}, {
|
|
1941
|
+
ICONS: Readonly<{
|
|
1942
|
+
readonly ANSWERS: VueConstructor<Vue>;
|
|
1943
|
+
readonly CHANGE: VueConstructor<Vue>;
|
|
1944
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
1945
|
+
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
1946
|
+
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
1947
|
+
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
1948
|
+
readonly RIBBON: VueConstructor<Vue>;
|
|
1949
|
+
readonly SIDEBAR_FLIP_SOLID: VueConstructor<Vue>;
|
|
1950
|
+
readonly SLIDERS_SEARCH: VueConstructor<Vue>;
|
|
1951
|
+
readonly CLOUD_DISCONNECTED: VueConstructor<Vue>;
|
|
1952
|
+
readonly BALLOT_CHECK_TIME: VueConstructor<Vue>;
|
|
1953
|
+
readonly RECTANGLES_VERTICAL: VueConstructor<Vue>;
|
|
1954
|
+
readonly FA_ADDRESS_CARD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1955
|
+
readonly FA_ANGLE_DOWN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1956
|
+
readonly FA_ANGLE_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1957
|
+
readonly FA_ANGLE_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1958
|
+
readonly FA_ANGLE_UP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1959
|
+
readonly FA_ARROW_DOWN_BIG_SMALL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1960
|
+
readonly FA_ARROW_DOWN_LEFT_AND_ARROW_UP_RIGHT_TO_CENTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1961
|
+
readonly FA_ARROW_DOWN_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1962
|
+
readonly FA_ARROW_DOWN_TO_LINE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1963
|
+
readonly FA_ARROW_LEFT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1964
|
+
readonly FA_ARROW_LEFT_TO_DOTTED_LINE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1965
|
+
readonly FA_ARROW_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1966
|
+
readonly FA_ARROW_RIGHT_FROM_BRACKET: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1967
|
+
readonly FA_ARROW_RIGHT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1968
|
+
readonly FA_ARROW_ROTATE_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1969
|
+
readonly FA_ARROW_ROTATE_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1970
|
+
readonly FA_ARROW_UP_BIG_SMALL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1971
|
+
readonly FA_ARROW_UP_RIGHT_AND_ARROW_DOWN_LEFT_FROM_CENTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1972
|
+
readonly FA_ARROW_UP_RIGHT_FROM_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1973
|
+
readonly FA_ARROW_UP_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1974
|
+
readonly FA_ARROWS_LEFT_RIGHT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1975
|
+
readonly FA_ARROW_LEFT_ARROW_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1976
|
+
readonly FA_ARROWS_FROM_DOTTED_LINE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1977
|
+
readonly FA_ARROWS_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1978
|
+
readonly FA_ARROWS_ROTATE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1979
|
+
readonly FA_ARROWS_TO_DOTTED_LINE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1980
|
+
readonly FA_ATOM_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1981
|
+
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1982
|
+
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1983
|
+
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1984
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1985
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1986
|
+
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1987
|
+
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1988
|
+
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1989
|
+
readonly FA_BOOK_BLANK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1990
|
+
readonly FA_BOOK_COPY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1991
|
+
readonly FA_BOOK_OPEN_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1992
|
+
readonly FA_BOOK_SKULL_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1993
|
+
readonly FA_BOOK_MEDICAL_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1994
|
+
readonly FA_BOOK_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1995
|
+
readonly FA_BOOK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1996
|
+
readonly FA_BOOKMARK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1997
|
+
readonly FA_BOOKS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1998
|
+
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1999
|
+
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2000
|
+
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2001
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2002
|
+
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2003
|
+
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2004
|
+
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2005
|
+
readonly FA_CALENDAR_CIRCLE_EXCLAMATION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2006
|
+
readonly FA_CALENDAR_CLOCK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2007
|
+
readonly FA_CALENDAR_DAY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2008
|
+
readonly FA_CALENDAR_DAYS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2009
|
+
readonly FA_CALENDAR_RANGE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2010
|
+
readonly FA_CALENDAR_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2011
|
+
readonly FA_CALENDAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2012
|
+
readonly FA_CAMERA_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2013
|
+
readonly FA_CARDS_BLANK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2014
|
+
readonly FA_CARET_SQUARE_RIGHT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2015
|
+
readonly FA_CART_SHOPPING: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2016
|
+
readonly FA_CHART_COLUMN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2017
|
+
readonly FA_CHART_LINE_UP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2018
|
+
readonly FA_CHECK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2019
|
+
readonly FA_CHECK_TO_SLOT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2020
|
+
readonly FA_CHECK_TO_SLOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2021
|
+
readonly FA_CHEVRON_DOWN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2022
|
+
readonly FA_CHEVRON_LEFT_LIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2023
|
+
readonly FA_CHEVRON_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2024
|
+
readonly FA_CHEVRON_RIGHT_LIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2025
|
+
readonly FA_CHEVRON_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2026
|
+
readonly FA_CHEVRON_UP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2027
|
+
readonly FA_CIRCLE_ARROW_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2028
|
+
readonly FA_CIRCLE_ARROW_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2029
|
+
readonly FA_CIRCLE_CHECK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2030
|
+
readonly FA_CIRCLE_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2031
|
+
readonly FA_CIRCLE_ELLIPSIS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2032
|
+
readonly FA_CIRCLE_EXCLAMATION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2033
|
+
readonly FA_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2034
|
+
readonly FA_CIRCLE_NOTCH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2035
|
+
readonly FA_CIRCLE_PLAY_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2036
|
+
readonly FA_CIRCLE_QUESTION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2037
|
+
readonly FA_CIRCLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2038
|
+
readonly FA_CIRCLE_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2039
|
+
readonly FA_CIRCLE_XMARK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2040
|
+
readonly FA_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2041
|
+
readonly FA_CLIPBOARD_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2042
|
+
readonly FA_CLIPBOARD_MEDICAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2043
|
+
readonly FA_CLOCK_ROTATE_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2044
|
+
readonly FA_CLOCK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2045
|
+
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2046
|
+
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2047
|
+
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2048
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2049
|
+
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2050
|
+
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2051
|
+
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2052
|
+
readonly FA_COMMENTS_QUESTION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2053
|
+
readonly FA_COMMENTS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2054
|
+
readonly FA_COMMENTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2055
|
+
readonly FA_COMPASS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2056
|
+
readonly FA_COMPRESS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2057
|
+
readonly FA_COPY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2058
|
+
readonly FA_CREDIT_CARD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2059
|
+
readonly FA_DNA_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2060
|
+
readonly FA_DOT_CIRCLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2061
|
+
readonly FA_DOT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2062
|
+
readonly FA_EARTH_AMERICAS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2063
|
+
readonly FA_ELLIPSIS_VERTICAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2064
|
+
readonly FA_ELLIPSIS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2065
|
+
readonly FA_ENVELOPE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2066
|
+
readonly FA_EXCLAMATION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2067
|
+
readonly FA_EYE_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2068
|
+
readonly FA_EYE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2069
|
+
readonly FA_FACE_FROWN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2070
|
+
readonly FA_FACE_GRIMACE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2071
|
+
readonly FA_FACE_MEH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2072
|
+
readonly FA_FACE_SMILE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2073
|
+
readonly FA_FACEBOOK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2074
|
+
readonly FA_FACEBOOK_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2075
|
+
readonly FA_FILE_ARROW_DOWN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2076
|
+
readonly FA_FILE_EXPORT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2077
|
+
readonly FA_FILE_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2078
|
+
readonly FA_FILE_INVOICE_DOLLAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2079
|
+
readonly FA_FILE_LINES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2080
|
+
readonly FA_FILE_LINES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2081
|
+
readonly FA_FILE_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2082
|
+
readonly FA_FILE_PEN_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2083
|
+
readonly FA_FILM: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2084
|
+
readonly FA_FILTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2085
|
+
readonly FA_FLAG_CHECKERED_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2086
|
+
readonly FA_FLAG: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2087
|
+
readonly FA_FLASK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2088
|
+
readonly FA_FLOPPY_DISK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2089
|
+
readonly FA_FOLDER_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2090
|
+
readonly FA_FORWARD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2091
|
+
readonly FA_GAUGE_HIGH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2092
|
+
readonly FA_GEAR_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2093
|
+
readonly FA_GEAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2094
|
+
readonly FA_GEARS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2095
|
+
readonly FA_GEM: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2096
|
+
readonly FA_GIFT_CARD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2097
|
+
readonly FA_GIFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2098
|
+
readonly FA_GLOBE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2099
|
+
readonly FA_GRADUATION_CAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2100
|
+
readonly FA_GRID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2101
|
+
readonly FA_HAND_POINT_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2102
|
+
readonly FA_HAND_POINT_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2103
|
+
readonly FA_HAND_SPOCK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2104
|
+
readonly FA_HANDS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2105
|
+
readonly FA_HEAD_SIDE_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2106
|
+
readonly FA_HEART_PULSE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2107
|
+
readonly FA_HEART_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2108
|
+
readonly FA_HOURGLASS_END: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2109
|
+
readonly FA_HOURGLASS_START: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2110
|
+
readonly FA_HOURGLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2111
|
+
readonly FA_HOUSE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2112
|
+
readonly FA_IMAGE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2113
|
+
readonly FA_IMAGE_CIRCLE_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2114
|
+
readonly FA_IMAGE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2115
|
+
readonly FA_IMAGES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2116
|
+
readonly FA_IMAGES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2117
|
+
readonly FA_INBOX_IN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2118
|
+
readonly FA_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2119
|
+
readonly FA_INSTAGRAM: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2120
|
+
readonly FA_KEY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2121
|
+
readonly FA_KEYBOARD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2122
|
+
readonly FA_LIGHTBULB_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2123
|
+
readonly FA_LIGHTBULB: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2124
|
+
readonly FA_LINK_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2125
|
+
readonly FA_LINK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2126
|
+
readonly FA_LIST_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2127
|
+
readonly FA_LIST_OL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2128
|
+
readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2129
|
+
readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2130
|
+
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2131
|
+
readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2132
|
+
readonly FA_MARKER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2133
|
+
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2134
|
+
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2135
|
+
readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2136
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2137
|
+
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2138
|
+
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2139
|
+
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2140
|
+
readonly FA_MESSAGE_QUESTION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2141
|
+
readonly FA_MESSAGE_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2142
|
+
readonly FA_MESSAGE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2143
|
+
readonly FA_MESSAGES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2144
|
+
readonly FA_MINUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2145
|
+
readonly FA_MOBILE_ROTATE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2146
|
+
readonly FA_MONEY_BILL1: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2147
|
+
readonly FA_MOON_STAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2148
|
+
readonly FA_MOON_STAR_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2149
|
+
readonly FA_MUSIC: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2150
|
+
readonly FA_NOTES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2151
|
+
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2152
|
+
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2153
|
+
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2154
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2155
|
+
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2156
|
+
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2157
|
+
readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2158
|
+
readonly FA_PENCIL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2159
|
+
readonly FA_PLAY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2160
|
+
readonly FA_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2161
|
+
readonly FA_PRESENTATION_SCREEN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2162
|
+
readonly FA_PRINT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2163
|
+
readonly FA_PUZZLE_PIECE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2164
|
+
readonly FA_QUESTION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2165
|
+
readonly FA_RECTANGLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2166
|
+
readonly FA_RECTANGLE_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2167
|
+
readonly FA_RECTANGLE_HISTORY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2168
|
+
readonly FA_RECTANGLE_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2169
|
+
readonly FA_REPLY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2170
|
+
readonly FA_ROTATE_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2171
|
+
readonly FA_SHARE_NODES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2172
|
+
readonly FA_SHARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2173
|
+
readonly FA_SHIELD_HALVED: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2174
|
+
readonly FA_SIDEBAR_FLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2175
|
+
readonly FA_SIGNAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2176
|
+
readonly FA_SIGN_POST: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2177
|
+
readonly FA_SITEMAP_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2178
|
+
readonly FA_SITEMAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2179
|
+
readonly FA_SLIDERS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2180
|
+
readonly FA_SPELL_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2181
|
+
readonly FA_SQUARE_CARET_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2182
|
+
readonly FA_SQUARE_CHECK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2183
|
+
readonly FA_SQUARE_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2184
|
+
readonly FA_SQUARE_LIST_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2185
|
+
readonly FA_SQUARE_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2186
|
+
readonly FA_SQUARE_MINUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2187
|
+
readonly FA_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2188
|
+
readonly FA_SQUARE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2189
|
+
readonly FA_STAR_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2190
|
+
readonly FA_STAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2191
|
+
readonly FA_STETHOSCOPE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2192
|
+
readonly FA_STOPWATCH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2193
|
+
readonly FA_TAG: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2194
|
+
readonly FA_TAGS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2195
|
+
readonly FA_TEXT_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2196
|
+
readonly FA_TEXT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2197
|
+
readonly FA_THUMBS_UP_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2198
|
+
readonly FA_THUMBS_UP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2199
|
+
readonly FA_THUMBTACK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2200
|
+
readonly FA_THUMBTACK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2201
|
+
readonly FA_TIKTOK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2202
|
+
readonly FA_TRASH_CAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2203
|
+
readonly FA_TREE_PALM: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2204
|
+
readonly FA_TRIANGLE_EXCLAMATION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2205
|
+
readonly FA_TRIANGLE_EXCLAMATION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2206
|
+
readonly FA_TROPHY_STAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2207
|
+
readonly FA_UNLOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2208
|
+
readonly FA_UPLOAD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2209
|
+
readonly FA_USER_DOCTOR_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2210
|
+
readonly FA_USER_GEAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2211
|
+
readonly FA_USER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2212
|
+
readonly FA_USERS_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2213
|
+
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2214
|
+
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2215
|
+
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2216
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2217
|
+
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2218
|
+
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2219
|
+
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2220
|
+
readonly FA_YOUTUBE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2221
|
+
readonly FAD_SPINNER_THIRD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2222
|
+
readonly FAD_SQUARE_MINUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2223
|
+
readonly FAD_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2224
|
+
readonly FAD_SQUARE_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2225
|
+
}>;
|
|
2226
|
+
ICON_SIZES: Readonly<{
|
|
2227
|
+
XXX_SMALL: string;
|
|
2228
|
+
XX_SMALL: string;
|
|
2229
|
+
X_SMALL: string;
|
|
2230
|
+
SMALL: string;
|
|
2231
|
+
MEDIUM: string;
|
|
2232
|
+
LARGE: string;
|
|
2233
|
+
X_LARGE: string;
|
|
2234
|
+
XX_LARGE: string;
|
|
2235
|
+
}>;
|
|
2236
|
+
ICON_BUTTON_SIZES: Readonly<{
|
|
2237
|
+
readonly XX_SMALL: "xx-small";
|
|
2238
|
+
readonly X_SMALL: "x-small";
|
|
2239
|
+
readonly SMALL: "small";
|
|
2240
|
+
readonly MEDIUM: "medium";
|
|
2241
|
+
readonly LARGE: "large";
|
|
2242
|
+
}>;
|
|
2243
|
+
ICON_BUTTON_COLOR_SCHEMES: Readonly<{
|
|
2244
|
+
readonly ALL_IN_COLOR: "all-in-color";
|
|
2245
|
+
readonly NEUTRAL_LABEL: "neutral-label";
|
|
2246
|
+
}>;
|
|
2247
|
+
ICON_BUTTON_TYPES: Readonly<{
|
|
2248
|
+
readonly ICON_ONLY: "icon-only";
|
|
2249
|
+
readonly OUTLINED: "outlined";
|
|
2250
|
+
readonly FILLED: "filled";
|
|
2251
|
+
}>;
|
|
2252
|
+
ICON_BUTTON_STATES: Readonly<{
|
|
2253
|
+
readonly DEFAULT: "default";
|
|
2254
|
+
readonly HOVERED: "hovered";
|
|
2255
|
+
readonly FOCUSED: "focused";
|
|
2256
|
+
readonly DISABLED: "disabled";
|
|
2257
|
+
readonly LOADING: "loading";
|
|
2258
|
+
}>;
|
|
2259
|
+
ICON_BUTTON_COLORS: Readonly<{
|
|
2260
|
+
readonly PRIMARY: "primary";
|
|
2261
|
+
readonly NEUTRAL: "neutral";
|
|
2262
|
+
readonly NEUTRAL_WEAK: "neutral-weak";
|
|
2263
|
+
readonly FAIL: "fail";
|
|
2264
|
+
readonly DANGER: "danger";
|
|
2265
|
+
readonly SUCCESS: "success";
|
|
2266
|
+
readonly INVERTED: "inverted";
|
|
2267
|
+
readonly WARNING: "warning";
|
|
2268
|
+
readonly INFO: "info";
|
|
2269
|
+
readonly MAGIC: "magic";
|
|
2270
|
+
readonly ACCENT: "accent";
|
|
2271
|
+
}>;
|
|
2272
|
+
BUTTON_COLORS: Readonly<{
|
|
2273
|
+
readonly PRIMARY: "primary";
|
|
2274
|
+
readonly NEUTRAL: "neutral";
|
|
2275
|
+
readonly DANGER: "danger";
|
|
2276
|
+
readonly SUCCESS: "success";
|
|
2277
|
+
readonly INVERTED: "inverted";
|
|
2278
|
+
readonly MAGIC: "magic";
|
|
2279
|
+
}>;
|
|
2280
|
+
}, {
|
|
2281
|
+
iconSize(): string;
|
|
2282
|
+
buttonType(): string;
|
|
2283
|
+
computedColor(): string | undefined;
|
|
2284
|
+
isButtonColor(): boolean;
|
|
2285
|
+
colorClassName(): string;
|
|
1640
2286
|
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
2287
|
+
size: {
|
|
2288
|
+
type: StringConstructor;
|
|
2289
|
+
default: "large";
|
|
2290
|
+
validator(value: import('../../Buttons/IconButton').IconButtonSize): boolean;
|
|
2291
|
+
};
|
|
2292
|
+
radius: {
|
|
2293
|
+
type: StringConstructor;
|
|
2294
|
+
default: "capsule";
|
|
2295
|
+
validator(value: import('../../..').ButtonRadius): boolean;
|
|
2296
|
+
};
|
|
2297
|
+
type: {
|
|
2298
|
+
type: StringConstructor;
|
|
2299
|
+
default: "icon-only";
|
|
2300
|
+
validator(value: import('../../Buttons/IconButton').IconButtonType): boolean;
|
|
2301
|
+
};
|
|
1641
2302
|
icon: {
|
|
1642
2303
|
type: ObjectConstructor;
|
|
1643
2304
|
required: true;
|
|
1644
2305
|
validator(icon: unknown): boolean;
|
|
1645
2306
|
};
|
|
1646
|
-
|
|
2307
|
+
color: {
|
|
1647
2308
|
type: StringConstructor;
|
|
1648
|
-
default:
|
|
1649
|
-
validator
|
|
2309
|
+
default: "primary";
|
|
2310
|
+
validator(value: import('../../Buttons/IconButton').IconButtonColor): boolean;
|
|
1650
2311
|
};
|
|
1651
|
-
|
|
1652
|
-
type:
|
|
1653
|
-
default:
|
|
1654
|
-
|
|
1655
|
-
flippedVertical: {
|
|
1656
|
-
type: BooleanConstructor;
|
|
1657
|
-
default: boolean;
|
|
2312
|
+
colorScheme: {
|
|
2313
|
+
type: StringConstructor;
|
|
2314
|
+
default: "all-in-color";
|
|
2315
|
+
validator(value: import('../../Buttons/IconButton').IconButtonColorScheme): boolean;
|
|
1658
2316
|
};
|
|
1659
|
-
|
|
1660
|
-
type:
|
|
1661
|
-
default:
|
|
2317
|
+
elevation: {
|
|
2318
|
+
type: StringConstructor;
|
|
2319
|
+
default: "none";
|
|
2320
|
+
validator(value: import('../../..').ButtonElevation): boolean;
|
|
1662
2321
|
};
|
|
1663
2322
|
touchableDeprecated: {
|
|
1664
2323
|
type: BooleanConstructor;
|
|
1665
2324
|
default: boolean;
|
|
1666
2325
|
};
|
|
1667
|
-
|
|
1668
|
-
type:
|
|
1669
|
-
default:
|
|
2326
|
+
state: {
|
|
2327
|
+
type: StringConstructor;
|
|
2328
|
+
default: "default";
|
|
2329
|
+
validator(value: import('../../../utils/type.utils').Value<typeof import('../../Buttons/IconButton').ICON_BUTTON_STATES>): boolean;
|
|
1670
2330
|
};
|
|
1671
2331
|
}>> & Readonly<{}>, {
|
|
1672
|
-
rotation: number | null;
|
|
1673
2332
|
size: string;
|
|
1674
|
-
|
|
1675
|
-
flippedHorizontal: boolean;
|
|
2333
|
+
type: string;
|
|
1676
2334
|
touchableDeprecated: boolean;
|
|
1677
|
-
|
|
2335
|
+
color: string;
|
|
2336
|
+
radius: string;
|
|
2337
|
+
state: string;
|
|
2338
|
+
elevation: string;
|
|
2339
|
+
colorScheme: string;
|
|
1678
2340
|
}, {}, {
|
|
1679
|
-
|
|
2341
|
+
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2342
|
+
icon: {
|
|
2343
|
+
type: ObjectConstructor;
|
|
2344
|
+
required: true;
|
|
2345
|
+
validator(icon: unknown): boolean;
|
|
2346
|
+
};
|
|
2347
|
+
size: {
|
|
2348
|
+
type: StringConstructor;
|
|
2349
|
+
default: string;
|
|
2350
|
+
validator: (value: string) => boolean;
|
|
2351
|
+
};
|
|
2352
|
+
rotation: {
|
|
2353
|
+
type: (NumberConstructor | null)[];
|
|
2354
|
+
default: null;
|
|
2355
|
+
};
|
|
2356
|
+
flippedVertical: {
|
|
2357
|
+
type: BooleanConstructor;
|
|
2358
|
+
default: boolean;
|
|
2359
|
+
};
|
|
2360
|
+
flippedHorizontal: {
|
|
2361
|
+
type: BooleanConstructor;
|
|
2362
|
+
default: boolean;
|
|
2363
|
+
};
|
|
2364
|
+
touchableDeprecated: {
|
|
2365
|
+
type: BooleanConstructor;
|
|
2366
|
+
default: boolean;
|
|
2367
|
+
};
|
|
2368
|
+
spinning: {
|
|
2369
|
+
type: BooleanConstructor;
|
|
2370
|
+
default: boolean;
|
|
2371
|
+
};
|
|
2372
|
+
}>, {}, {}, {
|
|
2373
|
+
sizeClassName(): string;
|
|
2374
|
+
isFontawesomeIcon(): boolean;
|
|
2375
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
2376
|
+
icon: {
|
|
2377
|
+
type: ObjectConstructor;
|
|
2378
|
+
required: true;
|
|
2379
|
+
validator(icon: unknown): boolean;
|
|
2380
|
+
};
|
|
2381
|
+
size: {
|
|
2382
|
+
type: StringConstructor;
|
|
2383
|
+
default: string;
|
|
2384
|
+
validator: (value: string) => boolean;
|
|
2385
|
+
};
|
|
2386
|
+
rotation: {
|
|
2387
|
+
type: (NumberConstructor | null)[];
|
|
2388
|
+
default: null;
|
|
2389
|
+
};
|
|
2390
|
+
flippedVertical: {
|
|
2391
|
+
type: BooleanConstructor;
|
|
2392
|
+
default: boolean;
|
|
2393
|
+
};
|
|
2394
|
+
flippedHorizontal: {
|
|
2395
|
+
type: BooleanConstructor;
|
|
2396
|
+
default: boolean;
|
|
2397
|
+
};
|
|
2398
|
+
touchableDeprecated: {
|
|
2399
|
+
type: BooleanConstructor;
|
|
2400
|
+
default: boolean;
|
|
2401
|
+
};
|
|
2402
|
+
spinning: {
|
|
2403
|
+
type: BooleanConstructor;
|
|
2404
|
+
default: boolean;
|
|
2405
|
+
};
|
|
2406
|
+
}>> & Readonly<{}>, {
|
|
2407
|
+
rotation: number | null;
|
|
2408
|
+
size: string;
|
|
2409
|
+
flippedVertical: boolean;
|
|
2410
|
+
flippedHorizontal: boolean;
|
|
2411
|
+
touchableDeprecated: boolean;
|
|
2412
|
+
spinning: boolean;
|
|
2413
|
+
}, {}, {
|
|
2414
|
+
FontAwesomeIcon: import('vue').DefineComponent<import('@fortawesome/vue-fontawesome').FontAwesomeIconProps>;
|
|
2415
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2416
|
+
WnlButton: {
|
|
2417
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
2418
|
+
size: {
|
|
2419
|
+
type: import('vue').PropType<string>;
|
|
2420
|
+
};
|
|
2421
|
+
type: {
|
|
2422
|
+
type: import('vue').PropType<string>;
|
|
2423
|
+
};
|
|
2424
|
+
color: {
|
|
2425
|
+
type: import('vue').PropType<string | null>;
|
|
2426
|
+
};
|
|
2427
|
+
radius: {
|
|
2428
|
+
type: import('vue').PropType<string>;
|
|
2429
|
+
};
|
|
2430
|
+
state: {
|
|
2431
|
+
type: import('vue').PropType<string>;
|
|
2432
|
+
};
|
|
2433
|
+
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
2434
|
+
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
2435
|
+
elevation: {
|
|
2436
|
+
type: import('vue').PropType<string>;
|
|
2437
|
+
};
|
|
2438
|
+
as: {
|
|
2439
|
+
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
2440
|
+
};
|
|
2441
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
2442
|
+
P: {};
|
|
2443
|
+
B: {};
|
|
2444
|
+
D: {};
|
|
2445
|
+
C: {};
|
|
2446
|
+
M: {};
|
|
2447
|
+
Defaults: {};
|
|
2448
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
2449
|
+
size: {
|
|
2450
|
+
type: import('vue').PropType<string>;
|
|
2451
|
+
};
|
|
2452
|
+
type: {
|
|
2453
|
+
type: import('vue').PropType<string>;
|
|
2454
|
+
};
|
|
2455
|
+
color: {
|
|
2456
|
+
type: import('vue').PropType<string | null>;
|
|
2457
|
+
};
|
|
2458
|
+
radius: {
|
|
2459
|
+
type: import('vue').PropType<string>;
|
|
2460
|
+
};
|
|
2461
|
+
state: {
|
|
2462
|
+
type: import('vue').PropType<string>;
|
|
2463
|
+
};
|
|
2464
|
+
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
2465
|
+
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
2466
|
+
elevation: {
|
|
2467
|
+
type: import('vue').PropType<string>;
|
|
2468
|
+
};
|
|
2469
|
+
as: {
|
|
2470
|
+
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
2471
|
+
};
|
|
2472
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
2473
|
+
__isFragment?: never;
|
|
2474
|
+
__isTeleport?: never;
|
|
2475
|
+
__isSuspense?: never;
|
|
2476
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
2477
|
+
size: {
|
|
2478
|
+
type: import('vue').PropType<string>;
|
|
2479
|
+
};
|
|
2480
|
+
type: {
|
|
2481
|
+
type: import('vue').PropType<string>;
|
|
2482
|
+
};
|
|
2483
|
+
color: {
|
|
2484
|
+
type: import('vue').PropType<string | null>;
|
|
2485
|
+
};
|
|
2486
|
+
radius: {
|
|
2487
|
+
type: import('vue').PropType<string>;
|
|
2488
|
+
};
|
|
2489
|
+
state: {
|
|
2490
|
+
type: import('vue').PropType<string>;
|
|
2491
|
+
};
|
|
2492
|
+
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
2493
|
+
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
2494
|
+
elevation: {
|
|
2495
|
+
type: import('vue').PropType<string>;
|
|
2496
|
+
};
|
|
2497
|
+
as: {
|
|
2498
|
+
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
2499
|
+
};
|
|
2500
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
2501
|
+
$slots: {
|
|
2502
|
+
default?(_: {}): any;
|
|
2503
|
+
};
|
|
2504
|
+
});
|
|
1680
2505
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1681
2506
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1682
2507
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|