@bethinkpl/design-system 41.1.5 → 43.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 +16800 -13061
- package/dist/design-system.js.map +1 -1
- package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +2 -0
- package/dist/lib/js/components/Cards/Card/Card.consts.d.ts +14 -0
- package/dist/lib/js/components/Cards/Card/Card.vue.d.ts +10 -5
- package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +35 -15
- package/dist/lib/js/components/DatePickers/DateBox/DateBox.vue.d.ts +2 -0
- package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +2 -0
- package/dist/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue.d.ts +2 -0
- package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +6 -0
- package/dist/lib/js/components/Form/InputField/useInputFieldWithinForm.d.ts +1 -1
- package/dist/lib/js/components/Form/RadioButton/RadioButton.vue.d.ts +2 -0
- package/dist/lib/js/components/Form/SelectField/SelectField.types.d.ts +26 -0
- package/dist/lib/js/components/Form/SelectField/SelectField.utils.d.ts +7 -0
- package/dist/lib/js/components/Form/SelectField/SelectField.vue.d.ts +107 -0
- package/dist/lib/js/components/Form/SelectField/SelectFieldOption.vue.d.ts +19 -0
- package/dist/lib/js/components/Form/SelectField/index.d.ts +4 -0
- package/dist/lib/js/components/Form/SelectField/useSelectFieldWithinForm.d.ts +8 -0
- package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +4 -0
- package/dist/lib/js/components/Headers/SectionHeader/SectionHeader.vue.d.ts +4 -0
- package/dist/lib/js/components/Icons/Icon/Icon.consts.d.ts +2 -0
- package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +4 -0
- package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +4 -0
- package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +6 -0
- package/dist/lib/js/components/ProgressBar/ProgressBar.vue.d.ts +2 -0
- package/dist/lib/js/components/ProgressDonutChart/ProgressDonutChart.vue.d.ts +2 -0
- package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +2 -0
- package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +2 -0
- package/dist/lib/js/components/SelectList/SelectListItem/SelectListItem.vue.d.ts +2 -0
- package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts +2 -0
- package/dist/lib/js/components/Statuses/AccessStatus/AccessStatus.vue.d.ts +2 -0
- package/dist/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue.d.ts +2 -0
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +1009 -169
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +1000 -160
- package/dist/lib/js/components/Switch/Switch.vue.d.ts +2 -0
- package/dist/lib/js/components/Tile/Tile.sb.shared.d.ts +2 -0
- package/dist/lib/js/components/Toast/Toast.vue.d.ts +33 -15
- package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +2 -0
- package/dist/lib/js/composables/useFormFieldWithinForm.d.ts +3 -3
- package/dist/lib/js/icons/fontawesome.d.ts +2 -0
- package/dist/lib/js/index.d.ts +2 -1
- package/lib/js/components/Cards/Card/Card.consts.ts +18 -0
- package/lib/js/components/Cards/Card/Card.spec.ts +159 -33
- package/lib/js/components/Cards/Card/Card.stories.ts +21 -2
- package/lib/js/components/Cards/Card/Card.vue +90 -23
- package/lib/js/components/Dropdown/Dropdown.vue +6 -10
- package/lib/js/components/Form/Form.stories.ts +15 -1
- package/lib/js/components/Form/SelectField/SelectField.spec.ts +495 -0
- package/lib/js/components/Form/SelectField/SelectField.stories.ts +287 -0
- package/lib/js/components/Form/SelectField/SelectField.types.ts +65 -0
- package/lib/js/components/Form/SelectField/SelectField.utils.ts +83 -0
- package/lib/js/components/Form/SelectField/SelectField.vue +342 -0
- package/lib/js/components/Form/SelectField/SelectFieldOption.vue +51 -0
- package/lib/js/components/Form/SelectField/index.ts +5 -0
- package/lib/js/components/Form/SelectField/useSelectFieldWithinForm.ts +27 -0
- package/lib/js/components/SelectList/SelectListItem/SelectListItem.spec.ts +77 -0
- package/lib/js/components/SelectList/SelectListItem/SelectListItem.vue +4 -1
- package/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue +7 -12
- package/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue +7 -12
- package/lib/js/composables/useFormFieldWithinForm.ts +4 -4
- package/lib/js/icons/fontawesome.ts +4 -0
- package/lib/js/index.ts +2 -1
- package/lib/js/styles/Shadows/Shadows.stories.scss +16 -0
- package/lib/js/styles/Shadows/Shadows.stories.ts +4 -0
- package/lib/styles/mixins/_dropdown-surface.scss +24 -0
- package/lib/styles/settings/_shadows.scss +18 -0
- package/package.json +1 -1
- package/dist/lib/js/components/Modal/Modal.vue.d.ts +0 -395
- 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
package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts
CHANGED
|
@@ -85,6 +85,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
85
85
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
86
86
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
87
87
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
88
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
89
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
88
90
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
89
91
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
90
92
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -348,11 +350,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
348
350
|
readonly MAGIC: "magic";
|
|
349
351
|
readonly ACCENT: "accent";
|
|
350
352
|
}>;
|
|
351
|
-
BUTTON_TYPES: Readonly<{
|
|
352
|
-
readonly FILLED: "filled";
|
|
353
|
-
readonly OUTLINED: "outlined";
|
|
354
|
-
readonly TEXT: "text";
|
|
355
|
-
}>;
|
|
356
353
|
SURVEY_TOGGLE_COLORS: Readonly<{
|
|
357
354
|
readonly PRIMARY: "primary";
|
|
358
355
|
readonly NEUTRAL: "neutral";
|
|
@@ -483,12 +480,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
483
480
|
hasRibbon: {
|
|
484
481
|
type: import('vue').PropType<boolean>;
|
|
485
482
|
};
|
|
486
|
-
|
|
487
|
-
type: import('vue').PropType<
|
|
483
|
+
elevation: {
|
|
484
|
+
type: import('vue').PropType<import('../../Cards/Card').CardElevation>;
|
|
485
|
+
};
|
|
486
|
+
radius: {
|
|
487
|
+
type: import('vue').PropType<import('../../Cards/Card').CardRadius>;
|
|
488
488
|
};
|
|
489
489
|
backgroundColor: {
|
|
490
490
|
type: import('vue').PropType<import('../../Cards/Card').CardBackgroundColor>;
|
|
491
491
|
};
|
|
492
|
+
isFlat: {
|
|
493
|
+
type: import('vue').PropType<boolean>;
|
|
494
|
+
};
|
|
492
495
|
ribbonPosition: {
|
|
493
496
|
type: import('vue').PropType<import('../../Cards/Card').CardRibbonPositions>;
|
|
494
497
|
};
|
|
@@ -510,12 +513,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
510
513
|
loadingBarTime: {
|
|
511
514
|
type: import('vue').PropType<string>;
|
|
512
515
|
};
|
|
513
|
-
isFlat: {
|
|
514
|
-
type: import('vue').PropType<boolean>;
|
|
515
|
-
};
|
|
516
516
|
isContentScrollable: {
|
|
517
517
|
type: import('vue').PropType<boolean>;
|
|
518
518
|
};
|
|
519
|
+
hasRadius: {
|
|
520
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to radius">>;
|
|
521
|
+
};
|
|
519
522
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
520
523
|
P: {};
|
|
521
524
|
B: {};
|
|
@@ -542,12 +545,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
542
545
|
hasRibbon: {
|
|
543
546
|
type: import('vue').PropType<boolean>;
|
|
544
547
|
};
|
|
545
|
-
|
|
546
|
-
type: import('vue').PropType<
|
|
548
|
+
elevation: {
|
|
549
|
+
type: import('vue').PropType<import('../../Cards/Card').CardElevation>;
|
|
550
|
+
};
|
|
551
|
+
radius: {
|
|
552
|
+
type: import('vue').PropType<import('../../Cards/Card').CardRadius>;
|
|
547
553
|
};
|
|
548
554
|
backgroundColor: {
|
|
549
555
|
type: import('vue').PropType<import('../../Cards/Card').CardBackgroundColor>;
|
|
550
556
|
};
|
|
557
|
+
isFlat: {
|
|
558
|
+
type: import('vue').PropType<boolean>;
|
|
559
|
+
};
|
|
551
560
|
ribbonPosition: {
|
|
552
561
|
type: import('vue').PropType<import('../../Cards/Card').CardRibbonPositions>;
|
|
553
562
|
};
|
|
@@ -569,12 +578,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
569
578
|
loadingBarTime: {
|
|
570
579
|
type: import('vue').PropType<string>;
|
|
571
580
|
};
|
|
572
|
-
isFlat: {
|
|
573
|
-
type: import('vue').PropType<boolean>;
|
|
574
|
-
};
|
|
575
581
|
isContentScrollable: {
|
|
576
582
|
type: import('vue').PropType<boolean>;
|
|
577
583
|
};
|
|
584
|
+
hasRadius: {
|
|
585
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to radius">>;
|
|
586
|
+
};
|
|
578
587
|
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
579
588
|
__isFragment?: never;
|
|
580
589
|
__isTeleport?: never;
|
|
@@ -598,12 +607,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
598
607
|
hasRibbon: {
|
|
599
608
|
type: import('vue').PropType<boolean>;
|
|
600
609
|
};
|
|
601
|
-
|
|
602
|
-
type: import('vue').PropType<
|
|
610
|
+
elevation: {
|
|
611
|
+
type: import('vue').PropType<import('../../Cards/Card').CardElevation>;
|
|
612
|
+
};
|
|
613
|
+
radius: {
|
|
614
|
+
type: import('vue').PropType<import('../../Cards/Card').CardRadius>;
|
|
603
615
|
};
|
|
604
616
|
backgroundColor: {
|
|
605
617
|
type: import('vue').PropType<import('../../Cards/Card').CardBackgroundColor>;
|
|
606
618
|
};
|
|
619
|
+
isFlat: {
|
|
620
|
+
type: import('vue').PropType<boolean>;
|
|
621
|
+
};
|
|
607
622
|
ribbonPosition: {
|
|
608
623
|
type: import('vue').PropType<import('../../Cards/Card').CardRibbonPositions>;
|
|
609
624
|
};
|
|
@@ -625,12 +640,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
625
640
|
loadingBarTime: {
|
|
626
641
|
type: import('vue').PropType<string>;
|
|
627
642
|
};
|
|
628
|
-
isFlat: {
|
|
629
|
-
type: import('vue').PropType<boolean>;
|
|
630
|
-
};
|
|
631
643
|
isContentScrollable: {
|
|
632
644
|
type: import('vue').PropType<boolean>;
|
|
633
645
|
};
|
|
646
|
+
hasRadius: {
|
|
647
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to radius">>;
|
|
648
|
+
};
|
|
634
649
|
}>> & 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 () => {
|
|
635
650
|
$slots: Readonly<{
|
|
636
651
|
header?: () => any;
|
|
@@ -653,7 +668,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
653
668
|
radius: {
|
|
654
669
|
type: StringConstructor;
|
|
655
670
|
default: "capsule";
|
|
656
|
-
validator(value: import('
|
|
671
|
+
validator(value: import('../../..').ButtonRadius): boolean;
|
|
657
672
|
};
|
|
658
673
|
type: {
|
|
659
674
|
type: StringConstructor;
|
|
@@ -678,7 +693,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
678
693
|
elevation: {
|
|
679
694
|
type: StringConstructor;
|
|
680
695
|
default: "none";
|
|
681
|
-
validator(value: import('
|
|
696
|
+
validator(value: import('../../..').ButtonElevation): boolean;
|
|
682
697
|
};
|
|
683
698
|
touchableDeprecated: {
|
|
684
699
|
type: BooleanConstructor;
|
|
@@ -690,7 +705,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
690
705
|
validator(value: import('../../../utils/type.utils').Value<typeof import('../../Buttons/IconButton').ICON_BUTTON_STATES>): boolean;
|
|
691
706
|
};
|
|
692
707
|
}>, {
|
|
693
|
-
ICON_BUTTON_STATE_MAP: Record<import('../../Buttons/IconButton').IconButtonState, import('
|
|
708
|
+
ICON_BUTTON_STATE_MAP: Record<import('../../Buttons/IconButton').IconButtonState, import('../../..').ButtonState>;
|
|
694
709
|
isHovered: import('vue').Ref<boolean>;
|
|
695
710
|
mouseOver: () => void;
|
|
696
711
|
mouseLeave: () => void;
|
|
@@ -740,6 +755,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
740
755
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
741
756
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
742
757
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
758
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
759
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
743
760
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
744
761
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
745
762
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1049,7 +1066,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1049
1066
|
radius: {
|
|
1050
1067
|
type: StringConstructor;
|
|
1051
1068
|
default: "capsule";
|
|
1052
|
-
validator(value: import('
|
|
1069
|
+
validator(value: import('../../..').ButtonRadius): boolean;
|
|
1053
1070
|
};
|
|
1054
1071
|
type: {
|
|
1055
1072
|
type: StringConstructor;
|
|
@@ -1074,7 +1091,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1074
1091
|
elevation: {
|
|
1075
1092
|
type: StringConstructor;
|
|
1076
1093
|
default: "none";
|
|
1077
|
-
validator(value: import('
|
|
1094
|
+
validator(value: import('../../..').ButtonElevation): boolean;
|
|
1078
1095
|
};
|
|
1079
1096
|
touchableDeprecated: {
|
|
1080
1097
|
type: BooleanConstructor;
|
|
@@ -1434,16 +1451,120 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1434
1451
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1435
1452
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1436
1453
|
DsModal: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1437
|
-
|
|
1454
|
+
size: {
|
|
1455
|
+
type: StringConstructor;
|
|
1456
|
+
default: "medium";
|
|
1457
|
+
validator: (value: import('../../Modals/Modal').ModalSize) => boolean;
|
|
1458
|
+
};
|
|
1459
|
+
danger: {
|
|
1438
1460
|
type: BooleanConstructor;
|
|
1439
1461
|
default: boolean;
|
|
1440
1462
|
};
|
|
1441
|
-
|
|
1463
|
+
headerTitleSize: {
|
|
1464
|
+
type: StringConstructor;
|
|
1465
|
+
default: "medium";
|
|
1466
|
+
validator: (value: import('../../Modals/Modal').ModalHeaderTitleSize) => boolean;
|
|
1467
|
+
};
|
|
1468
|
+
headerTitle: {
|
|
1469
|
+
type: StringConstructor;
|
|
1470
|
+
default: null;
|
|
1471
|
+
};
|
|
1472
|
+
headerSubtitle: {
|
|
1473
|
+
type: StringConstructor;
|
|
1474
|
+
default: null;
|
|
1475
|
+
};
|
|
1476
|
+
headerFeatureIcon: {
|
|
1477
|
+
type: ObjectConstructor;
|
|
1478
|
+
default: null;
|
|
1479
|
+
validator(icon: unknown): boolean;
|
|
1480
|
+
};
|
|
1481
|
+
headerFeatureIconColor: {
|
|
1482
|
+
type: StringConstructor;
|
|
1483
|
+
default: "neutral";
|
|
1484
|
+
validator(color: import('../../..').FeatureIconColor): boolean;
|
|
1485
|
+
};
|
|
1486
|
+
contentCentered: {
|
|
1442
1487
|
type: BooleanConstructor;
|
|
1443
1488
|
default: boolean;
|
|
1444
1489
|
};
|
|
1445
|
-
|
|
1446
|
-
|
|
1490
|
+
headerImage: {
|
|
1491
|
+
type: StringConstructor;
|
|
1492
|
+
default: null;
|
|
1493
|
+
};
|
|
1494
|
+
footerPrimaryButtonText: {
|
|
1495
|
+
type: StringConstructor;
|
|
1496
|
+
default: null;
|
|
1497
|
+
};
|
|
1498
|
+
footerPrimaryButtonIcon: {
|
|
1499
|
+
type: ObjectConstructor;
|
|
1500
|
+
default: null;
|
|
1501
|
+
validator(icon: unknown): boolean;
|
|
1502
|
+
};
|
|
1503
|
+
footerPrimaryButtonState: {
|
|
1504
|
+
type: StringConstructor;
|
|
1505
|
+
default: "default";
|
|
1506
|
+
validator(state: import('../../..').ButtonState): boolean;
|
|
1507
|
+
};
|
|
1508
|
+
footerSecondaryButtonText: {
|
|
1509
|
+
type: StringConstructor;
|
|
1510
|
+
default: null;
|
|
1511
|
+
};
|
|
1512
|
+
footerSecondaryButtonIcon: {
|
|
1513
|
+
type: ObjectConstructor;
|
|
1514
|
+
default: null;
|
|
1515
|
+
validator(icon: unknown): boolean;
|
|
1516
|
+
};
|
|
1517
|
+
footerSecondaryButtonState: {
|
|
1518
|
+
type: StringConstructor;
|
|
1519
|
+
default: "default";
|
|
1520
|
+
validator(state: import('../../..').ButtonState): boolean;
|
|
1521
|
+
};
|
|
1522
|
+
footerTertiaryButtonText: {
|
|
1523
|
+
type: StringConstructor;
|
|
1524
|
+
default: null;
|
|
1525
|
+
};
|
|
1526
|
+
footerTertiaryButtonIcon: {
|
|
1527
|
+
type: ObjectConstructor;
|
|
1528
|
+
default: null;
|
|
1529
|
+
validator(icon: unknown): boolean;
|
|
1530
|
+
};
|
|
1531
|
+
footerTertiaryButtonState: {
|
|
1532
|
+
type: StringConstructor;
|
|
1533
|
+
default: "default";
|
|
1534
|
+
validator(state: import('../../..').ButtonState): boolean;
|
|
1535
|
+
};
|
|
1536
|
+
footerCheckboxText: {
|
|
1537
|
+
type: StringConstructor;
|
|
1538
|
+
default: null;
|
|
1539
|
+
};
|
|
1540
|
+
isFooterSticky: {
|
|
1541
|
+
type: BooleanConstructor;
|
|
1542
|
+
default: boolean;
|
|
1543
|
+
};
|
|
1544
|
+
isFullHeight: {
|
|
1545
|
+
type: BooleanConstructor;
|
|
1546
|
+
default: boolean;
|
|
1547
|
+
};
|
|
1548
|
+
}>, {
|
|
1549
|
+
BUTTON_COLORS: {
|
|
1550
|
+
readonly PRIMARY: "primary";
|
|
1551
|
+
readonly NEUTRAL: "neutral";
|
|
1552
|
+
readonly DANGER: "danger";
|
|
1553
|
+
readonly SUCCESS: "success";
|
|
1554
|
+
readonly INVERTED: "inverted";
|
|
1555
|
+
readonly MAGIC: "magic";
|
|
1556
|
+
};
|
|
1557
|
+
BUTTON_ELEVATIONS: {
|
|
1558
|
+
readonly NONE: "none";
|
|
1559
|
+
readonly X_SMALL: "x-small";
|
|
1560
|
+
readonly SMALL: "small";
|
|
1561
|
+
};
|
|
1562
|
+
BUTTON_TYPES: {
|
|
1563
|
+
readonly FILLED: "filled";
|
|
1564
|
+
readonly OUTLINED: "outlined";
|
|
1565
|
+
readonly TEXT: "text";
|
|
1566
|
+
};
|
|
1567
|
+
ICONS: {
|
|
1447
1568
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
1448
1569
|
readonly CHANGE: VueConstructor<Vue>;
|
|
1449
1570
|
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
@@ -1486,6 +1607,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1486
1607
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1487
1608
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1488
1609
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1610
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1611
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1489
1612
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1490
1613
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1491
1614
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1725,8 +1848,21 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1725
1848
|
readonly FAD_SQUARE_MINUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1726
1849
|
readonly FAD_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1727
1850
|
readonly FAD_SQUARE_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1728
|
-
}
|
|
1729
|
-
|
|
1851
|
+
};
|
|
1852
|
+
ICON_BUTTON_COLORS: {
|
|
1853
|
+
readonly PRIMARY: "primary";
|
|
1854
|
+
readonly NEUTRAL: "neutral";
|
|
1855
|
+
readonly NEUTRAL_WEAK: "neutral-weak";
|
|
1856
|
+
readonly FAIL: "fail";
|
|
1857
|
+
readonly DANGER: "danger";
|
|
1858
|
+
readonly SUCCESS: "success";
|
|
1859
|
+
readonly INVERTED: "inverted";
|
|
1860
|
+
readonly WARNING: "warning";
|
|
1861
|
+
readonly INFO: "info";
|
|
1862
|
+
readonly MAGIC: "magic";
|
|
1863
|
+
readonly ACCENT: "accent";
|
|
1864
|
+
};
|
|
1865
|
+
ICON_SIZES: {
|
|
1730
1866
|
XXX_SMALL: string;
|
|
1731
1867
|
XX_SMALL: string;
|
|
1732
1868
|
X_SMALL: string;
|
|
@@ -1735,100 +1871,244 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1735
1871
|
LARGE: string;
|
|
1736
1872
|
X_LARGE: string;
|
|
1737
1873
|
XX_LARGE: string;
|
|
1738
|
-
}
|
|
1739
|
-
|
|
1740
|
-
|
|
1874
|
+
};
|
|
1875
|
+
MODAL_SIZES: {
|
|
1876
|
+
readonly SMALL: "small";
|
|
1877
|
+
readonly MEDIUM: "medium";
|
|
1878
|
+
};
|
|
1879
|
+
MODAL_HEADER_TITLE_SIZES: {
|
|
1880
|
+
readonly SMALL: "small";
|
|
1881
|
+
readonly MEDIUM: "medium";
|
|
1882
|
+
};
|
|
1883
|
+
FEATURE_ICON_SIZES: {
|
|
1884
|
+
readonly X_SMALL: "xSmall";
|
|
1885
|
+
readonly SMALL: "small";
|
|
1886
|
+
readonly MEDIUM: "medium";
|
|
1887
|
+
readonly LARGE: "large";
|
|
1888
|
+
readonly X_LARGE: "xLarge";
|
|
1889
|
+
};
|
|
1890
|
+
}, {}, {
|
|
1891
|
+
calcHeaderFeatureIconColor(): any;
|
|
1892
|
+
calcFooterPrimaryButtonColor(): "neutral" | "primary";
|
|
1893
|
+
calcFooterSecondaryButtonColor(): "danger" | "neutral";
|
|
1894
|
+
calcSingleColumn(): boolean;
|
|
1895
|
+
displayFooter(): any;
|
|
1896
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1897
|
+
'tertiary-button-click': () => true;
|
|
1898
|
+
'checkbox-change': (checked: boolean) => true;
|
|
1899
|
+
'close-modal': () => true;
|
|
1900
|
+
'secondary-button-click': () => true;
|
|
1901
|
+
'primary-button-click': () => true;
|
|
1902
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1903
|
+
size: {
|
|
1904
|
+
type: StringConstructor;
|
|
1905
|
+
default: "medium";
|
|
1906
|
+
validator: (value: import('../../Modals/Modal').ModalSize) => boolean;
|
|
1907
|
+
};
|
|
1908
|
+
danger: {
|
|
1909
|
+
type: BooleanConstructor;
|
|
1910
|
+
default: boolean;
|
|
1911
|
+
};
|
|
1912
|
+
headerTitleSize: {
|
|
1913
|
+
type: StringConstructor;
|
|
1914
|
+
default: "medium";
|
|
1915
|
+
validator: (value: import('../../Modals/Modal').ModalHeaderTitleSize) => boolean;
|
|
1916
|
+
};
|
|
1917
|
+
headerTitle: {
|
|
1918
|
+
type: StringConstructor;
|
|
1919
|
+
default: null;
|
|
1920
|
+
};
|
|
1921
|
+
headerSubtitle: {
|
|
1922
|
+
type: StringConstructor;
|
|
1923
|
+
default: null;
|
|
1924
|
+
};
|
|
1925
|
+
headerFeatureIcon: {
|
|
1926
|
+
type: ObjectConstructor;
|
|
1927
|
+
default: null;
|
|
1928
|
+
validator(icon: unknown): boolean;
|
|
1929
|
+
};
|
|
1930
|
+
headerFeatureIconColor: {
|
|
1931
|
+
type: StringConstructor;
|
|
1932
|
+
default: "neutral";
|
|
1933
|
+
validator(color: import('../../..').FeatureIconColor): boolean;
|
|
1934
|
+
};
|
|
1935
|
+
contentCentered: {
|
|
1936
|
+
type: BooleanConstructor;
|
|
1937
|
+
default: boolean;
|
|
1938
|
+
};
|
|
1939
|
+
headerImage: {
|
|
1940
|
+
type: StringConstructor;
|
|
1941
|
+
default: null;
|
|
1942
|
+
};
|
|
1943
|
+
footerPrimaryButtonText: {
|
|
1944
|
+
type: StringConstructor;
|
|
1945
|
+
default: null;
|
|
1946
|
+
};
|
|
1947
|
+
footerPrimaryButtonIcon: {
|
|
1948
|
+
type: ObjectConstructor;
|
|
1949
|
+
default: null;
|
|
1950
|
+
validator(icon: unknown): boolean;
|
|
1951
|
+
};
|
|
1952
|
+
footerPrimaryButtonState: {
|
|
1953
|
+
type: StringConstructor;
|
|
1954
|
+
default: "default";
|
|
1955
|
+
validator(state: import('../../..').ButtonState): boolean;
|
|
1956
|
+
};
|
|
1957
|
+
footerSecondaryButtonText: {
|
|
1958
|
+
type: StringConstructor;
|
|
1959
|
+
default: null;
|
|
1960
|
+
};
|
|
1961
|
+
footerSecondaryButtonIcon: {
|
|
1962
|
+
type: ObjectConstructor;
|
|
1963
|
+
default: null;
|
|
1964
|
+
validator(icon: unknown): boolean;
|
|
1965
|
+
};
|
|
1966
|
+
footerSecondaryButtonState: {
|
|
1967
|
+
type: StringConstructor;
|
|
1968
|
+
default: "default";
|
|
1969
|
+
validator(state: import('../../..').ButtonState): boolean;
|
|
1970
|
+
};
|
|
1971
|
+
footerTertiaryButtonText: {
|
|
1972
|
+
type: StringConstructor;
|
|
1973
|
+
default: null;
|
|
1974
|
+
};
|
|
1975
|
+
footerTertiaryButtonIcon: {
|
|
1976
|
+
type: ObjectConstructor;
|
|
1977
|
+
default: null;
|
|
1978
|
+
validator(icon: unknown): boolean;
|
|
1979
|
+
};
|
|
1980
|
+
footerTertiaryButtonState: {
|
|
1981
|
+
type: StringConstructor;
|
|
1982
|
+
default: "default";
|
|
1983
|
+
validator(state: import('../../..').ButtonState): boolean;
|
|
1984
|
+
};
|
|
1985
|
+
footerCheckboxText: {
|
|
1986
|
+
type: StringConstructor;
|
|
1987
|
+
default: null;
|
|
1988
|
+
};
|
|
1989
|
+
isFooterSticky: {
|
|
1741
1990
|
type: BooleanConstructor;
|
|
1742
1991
|
default: boolean;
|
|
1743
1992
|
};
|
|
1744
|
-
|
|
1993
|
+
isFullHeight: {
|
|
1745
1994
|
type: BooleanConstructor;
|
|
1746
1995
|
default: boolean;
|
|
1747
1996
|
};
|
|
1748
1997
|
}>> & Readonly<{
|
|
1749
|
-
"
|
|
1998
|
+
"onTertiary-button-click"?: (() => any) | undefined;
|
|
1999
|
+
"onCheckbox-change"?: ((checked: boolean) => any) | undefined;
|
|
2000
|
+
"onClose-modal"?: (() => any) | undefined;
|
|
2001
|
+
"onSecondary-button-click"?: (() => any) | undefined;
|
|
2002
|
+
"onPrimary-button-click"?: (() => any) | undefined;
|
|
1750
2003
|
}>, {
|
|
1751
|
-
|
|
1752
|
-
|
|
2004
|
+
danger: boolean;
|
|
2005
|
+
size: string;
|
|
2006
|
+
headerTitleSize: string;
|
|
2007
|
+
headerTitle: string;
|
|
2008
|
+
headerSubtitle: string;
|
|
2009
|
+
headerFeatureIcon: Record<string, any>;
|
|
2010
|
+
headerFeatureIconColor: string;
|
|
2011
|
+
contentCentered: boolean;
|
|
2012
|
+
headerImage: string;
|
|
2013
|
+
footerPrimaryButtonText: string;
|
|
2014
|
+
footerPrimaryButtonIcon: Record<string, any>;
|
|
2015
|
+
footerPrimaryButtonState: string;
|
|
2016
|
+
footerSecondaryButtonText: string;
|
|
2017
|
+
footerSecondaryButtonIcon: Record<string, any>;
|
|
2018
|
+
footerSecondaryButtonState: string;
|
|
2019
|
+
footerTertiaryButtonText: string;
|
|
2020
|
+
footerTertiaryButtonIcon: Record<string, any>;
|
|
2021
|
+
footerTertiaryButtonState: string;
|
|
2022
|
+
footerCheckboxText: string;
|
|
2023
|
+
isFooterSticky: boolean;
|
|
2024
|
+
isFullHeight: boolean;
|
|
1753
2025
|
}, {}, {
|
|
1754
|
-
|
|
1755
|
-
icon:
|
|
1756
|
-
type: ObjectConstructor;
|
|
1757
|
-
required: true;
|
|
1758
|
-
validator(icon: unknown): boolean;
|
|
1759
|
-
};
|
|
2026
|
+
FeatureIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2027
|
+
icon: import('../../Icons/Icon').IconItem;
|
|
1760
2028
|
size: {
|
|
1761
|
-
type:
|
|
1762
|
-
default: string;
|
|
1763
|
-
validator: (value: string) => boolean;
|
|
1764
|
-
};
|
|
1765
|
-
rotation: {
|
|
1766
|
-
type: (NumberConstructor | null)[];
|
|
1767
|
-
default: null;
|
|
1768
|
-
};
|
|
1769
|
-
flippedVertical: {
|
|
1770
|
-
type: BooleanConstructor;
|
|
1771
|
-
default: boolean;
|
|
1772
|
-
};
|
|
1773
|
-
flippedHorizontal: {
|
|
1774
|
-
type: BooleanConstructor;
|
|
1775
|
-
default: boolean;
|
|
1776
|
-
};
|
|
1777
|
-
touchableDeprecated: {
|
|
1778
|
-
type: BooleanConstructor;
|
|
1779
|
-
default: boolean;
|
|
1780
|
-
};
|
|
1781
|
-
spinning: {
|
|
1782
|
-
type: BooleanConstructor;
|
|
1783
|
-
default: boolean;
|
|
2029
|
+
type: import('vue').PropType<import('../../..').FeatureIconSize>;
|
|
1784
2030
|
};
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
isFontawesomeIcon(): boolean;
|
|
1788
|
-
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1789
|
-
icon: {
|
|
1790
|
-
type: ObjectConstructor;
|
|
2031
|
+
color: {
|
|
2032
|
+
type: import('vue').PropType<import('../../..').FeatureIconColor>;
|
|
1791
2033
|
required: true;
|
|
1792
|
-
validator(icon: unknown): boolean;
|
|
1793
2034
|
};
|
|
1794
|
-
|
|
1795
|
-
type:
|
|
1796
|
-
default: string;
|
|
1797
|
-
validator: (value: string) => boolean;
|
|
1798
|
-
};
|
|
1799
|
-
rotation: {
|
|
1800
|
-
type: (NumberConstructor | null)[];
|
|
1801
|
-
default: null;
|
|
1802
|
-
};
|
|
1803
|
-
flippedVertical: {
|
|
1804
|
-
type: BooleanConstructor;
|
|
1805
|
-
default: boolean;
|
|
2035
|
+
doubleBackground: {
|
|
2036
|
+
type: import('vue').PropType<boolean>;
|
|
1806
2037
|
};
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
2038
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
2039
|
+
icon: import('../../Icons/Icon').IconItem;
|
|
2040
|
+
size: {
|
|
2041
|
+
type: import('vue').PropType<import('../../..').FeatureIconSize>;
|
|
1810
2042
|
};
|
|
1811
|
-
|
|
1812
|
-
type:
|
|
1813
|
-
|
|
2043
|
+
color: {
|
|
2044
|
+
type: import('vue').PropType<import('../../..').FeatureIconColor>;
|
|
2045
|
+
required: true;
|
|
1814
2046
|
};
|
|
1815
|
-
|
|
1816
|
-
type:
|
|
1817
|
-
default: boolean;
|
|
2047
|
+
doubleBackground: {
|
|
2048
|
+
type: import('vue').PropType<boolean>;
|
|
1818
2049
|
};
|
|
1819
|
-
}>> & Readonly<{}>, {
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
2050
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2051
|
+
WnlButton: {
|
|
2052
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
2053
|
+
size: {
|
|
2054
|
+
type: import('vue').PropType<string>;
|
|
2055
|
+
};
|
|
2056
|
+
type: {
|
|
2057
|
+
type: import('vue').PropType<string>;
|
|
2058
|
+
};
|
|
2059
|
+
color: {
|
|
2060
|
+
type: import('vue').PropType<string | null>;
|
|
2061
|
+
};
|
|
2062
|
+
radius: {
|
|
2063
|
+
type: import('vue').PropType<string>;
|
|
2064
|
+
};
|
|
2065
|
+
state: {
|
|
2066
|
+
type: import('vue').PropType<string>;
|
|
2067
|
+
};
|
|
2068
|
+
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
2069
|
+
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
2070
|
+
elevation: {
|
|
2071
|
+
type: import('vue').PropType<string>;
|
|
2072
|
+
};
|
|
2073
|
+
as: {
|
|
2074
|
+
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
2075
|
+
};
|
|
2076
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
2077
|
+
P: {};
|
|
2078
|
+
B: {};
|
|
2079
|
+
D: {};
|
|
2080
|
+
C: {};
|
|
2081
|
+
M: {};
|
|
2082
|
+
Defaults: {};
|
|
2083
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
2084
|
+
size: {
|
|
2085
|
+
type: import('vue').PropType<string>;
|
|
2086
|
+
};
|
|
2087
|
+
type: {
|
|
2088
|
+
type: import('vue').PropType<string>;
|
|
2089
|
+
};
|
|
2090
|
+
color: {
|
|
2091
|
+
type: import('vue').PropType<string | null>;
|
|
2092
|
+
};
|
|
2093
|
+
radius: {
|
|
2094
|
+
type: import('vue').PropType<string>;
|
|
2095
|
+
};
|
|
2096
|
+
state: {
|
|
2097
|
+
type: import('vue').PropType<string>;
|
|
2098
|
+
};
|
|
2099
|
+
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
2100
|
+
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
2101
|
+
elevation: {
|
|
2102
|
+
type: import('vue').PropType<string>;
|
|
2103
|
+
};
|
|
2104
|
+
as: {
|
|
2105
|
+
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
2106
|
+
};
|
|
2107
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
2108
|
+
__isFragment?: never;
|
|
2109
|
+
__isTeleport?: never;
|
|
2110
|
+
__isSuspense?: never;
|
|
2111
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
1832
2112
|
size: {
|
|
1833
2113
|
type: import('vue').PropType<string>;
|
|
1834
2114
|
};
|
|
@@ -1852,69 +2132,629 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1852
2132
|
as: {
|
|
1853
2133
|
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
1854
2134
|
};
|
|
1855
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {},
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
Defaults: {};
|
|
1862
|
-
}, Readonly<import('vue').ExtractPropTypes<{
|
|
2135
|
+
}>> & 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 () => {
|
|
2136
|
+
$slots: {
|
|
2137
|
+
default?(_: {}): any;
|
|
2138
|
+
};
|
|
2139
|
+
});
|
|
2140
|
+
WnlIconButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1863
2141
|
size: {
|
|
1864
|
-
type:
|
|
2142
|
+
type: StringConstructor;
|
|
2143
|
+
default: "large";
|
|
2144
|
+
validator(value: import('../../Buttons/IconButton').IconButtonSize): boolean;
|
|
2145
|
+
};
|
|
2146
|
+
radius: {
|
|
2147
|
+
type: StringConstructor;
|
|
2148
|
+
default: "capsule";
|
|
2149
|
+
validator(value: import('../../..').ButtonRadius): boolean;
|
|
1865
2150
|
};
|
|
1866
2151
|
type: {
|
|
1867
|
-
type:
|
|
2152
|
+
type: StringConstructor;
|
|
2153
|
+
default: "icon-only";
|
|
2154
|
+
validator(value: import('../../Buttons/IconButton').IconButtonType): boolean;
|
|
2155
|
+
};
|
|
2156
|
+
icon: {
|
|
2157
|
+
type: ObjectConstructor;
|
|
2158
|
+
required: true;
|
|
2159
|
+
validator(icon: unknown): boolean;
|
|
1868
2160
|
};
|
|
1869
2161
|
color: {
|
|
1870
|
-
type:
|
|
2162
|
+
type: StringConstructor;
|
|
2163
|
+
default: "primary";
|
|
2164
|
+
validator(value: import('../../Buttons/IconButton').IconButtonColor): boolean;
|
|
1871
2165
|
};
|
|
1872
|
-
|
|
1873
|
-
type:
|
|
2166
|
+
colorScheme: {
|
|
2167
|
+
type: StringConstructor;
|
|
2168
|
+
default: "all-in-color";
|
|
2169
|
+
validator(value: import('../../Buttons/IconButton').IconButtonColorScheme): boolean;
|
|
2170
|
+
};
|
|
2171
|
+
elevation: {
|
|
2172
|
+
type: StringConstructor;
|
|
2173
|
+
default: "none";
|
|
2174
|
+
validator(value: import('../../..').ButtonElevation): boolean;
|
|
2175
|
+
};
|
|
2176
|
+
touchableDeprecated: {
|
|
2177
|
+
type: BooleanConstructor;
|
|
2178
|
+
default: boolean;
|
|
1874
2179
|
};
|
|
1875
2180
|
state: {
|
|
1876
|
-
type:
|
|
2181
|
+
type: StringConstructor;
|
|
2182
|
+
default: "default";
|
|
2183
|
+
validator(value: import('../../../utils/type.utils').Value<typeof import('../../Buttons/IconButton').ICON_BUTTON_STATES>): boolean;
|
|
2184
|
+
};
|
|
2185
|
+
}>, {
|
|
2186
|
+
ICON_BUTTON_STATE_MAP: Record<import('../../Buttons/IconButton').IconButtonState, import('../../..').ButtonState>;
|
|
2187
|
+
isHovered: import('vue').Ref<boolean>;
|
|
2188
|
+
mouseOver: () => void;
|
|
2189
|
+
mouseLeave: () => void;
|
|
2190
|
+
touchStart: () => void;
|
|
2191
|
+
touchEnd: () => void;
|
|
2192
|
+
}, {
|
|
2193
|
+
ICONS: Readonly<{
|
|
2194
|
+
readonly ANSWERS: VueConstructor<Vue>;
|
|
2195
|
+
readonly CHANGE: VueConstructor<Vue>;
|
|
2196
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
2197
|
+
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
2198
|
+
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
2199
|
+
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
2200
|
+
readonly RIBBON: VueConstructor<Vue>;
|
|
2201
|
+
readonly SIDEBAR_FLIP_SOLID: VueConstructor<Vue>;
|
|
2202
|
+
readonly SLIDERS_SEARCH: VueConstructor<Vue>;
|
|
2203
|
+
readonly CLOUD_DISCONNECTED: VueConstructor<Vue>;
|
|
2204
|
+
readonly BALLOT_CHECK_TIME: VueConstructor<Vue>;
|
|
2205
|
+
readonly RECTANGLES_VERTICAL: VueConstructor<Vue>;
|
|
2206
|
+
readonly FA_ADDRESS_CARD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2207
|
+
readonly FA_ANGLE_DOWN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2208
|
+
readonly FA_ANGLE_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2209
|
+
readonly FA_ANGLE_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2210
|
+
readonly FA_ANGLE_UP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2211
|
+
readonly FA_ARROW_DOWN_BIG_SMALL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2212
|
+
readonly FA_ARROW_DOWN_LEFT_AND_ARROW_UP_RIGHT_TO_CENTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2213
|
+
readonly FA_ARROW_DOWN_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2214
|
+
readonly FA_ARROW_DOWN_TO_LINE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2215
|
+
readonly FA_ARROW_LEFT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2216
|
+
readonly FA_ARROW_LEFT_TO_DOTTED_LINE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2217
|
+
readonly FA_ARROW_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2218
|
+
readonly FA_ARROW_RIGHT_FROM_BRACKET: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2219
|
+
readonly FA_ARROW_RIGHT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2220
|
+
readonly FA_ARROW_ROTATE_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2221
|
+
readonly FA_ARROW_ROTATE_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2222
|
+
readonly FA_ARROW_UP_BIG_SMALL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2223
|
+
readonly FA_ARROW_UP_RIGHT_AND_ARROW_DOWN_LEFT_FROM_CENTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2224
|
+
readonly FA_ARROW_UP_RIGHT_FROM_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2225
|
+
readonly FA_ARROW_UP_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2226
|
+
readonly FA_ARROWS_LEFT_RIGHT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2227
|
+
readonly FA_ARROW_LEFT_ARROW_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2228
|
+
readonly FA_ARROWS_FROM_DOTTED_LINE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2229
|
+
readonly FA_ARROWS_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2230
|
+
readonly FA_ARROWS_ROTATE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2231
|
+
readonly FA_ARROWS_TO_DOTTED_LINE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2232
|
+
readonly FA_ATOM_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2233
|
+
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2234
|
+
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2235
|
+
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2236
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2237
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2238
|
+
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2239
|
+
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2240
|
+
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2241
|
+
readonly FA_BOOK_BLANK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2242
|
+
readonly FA_BOOK_COPY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2243
|
+
readonly FA_BOOK_OPEN_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2244
|
+
readonly FA_BOOK_SKULL_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2245
|
+
readonly FA_BOOK_MEDICAL_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2246
|
+
readonly FA_BOOK_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2247
|
+
readonly FA_BOOK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2248
|
+
readonly FA_BOOKMARK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2249
|
+
readonly FA_BOOKS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2250
|
+
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2251
|
+
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2252
|
+
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2253
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2254
|
+
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2255
|
+
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2256
|
+
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2257
|
+
readonly FA_CALENDAR_CIRCLE_EXCLAMATION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2258
|
+
readonly FA_CALENDAR_CLOCK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2259
|
+
readonly FA_CALENDAR_DAY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2260
|
+
readonly FA_CALENDAR_DAYS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2261
|
+
readonly FA_CALENDAR_RANGE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2262
|
+
readonly FA_CALENDAR_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2263
|
+
readonly FA_CALENDAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2264
|
+
readonly FA_CAMERA_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2265
|
+
readonly FA_CARDS_BLANK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2266
|
+
readonly FA_CARET_SQUARE_RIGHT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2267
|
+
readonly FA_CART_SHOPPING: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2268
|
+
readonly FA_CHART_COLUMN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2269
|
+
readonly FA_CHART_LINE_UP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2270
|
+
readonly FA_CHECK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2271
|
+
readonly FA_CHECK_TO_SLOT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2272
|
+
readonly FA_CHECK_TO_SLOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2273
|
+
readonly FA_CHEVRON_DOWN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2274
|
+
readonly FA_CHEVRON_LEFT_LIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2275
|
+
readonly FA_CHEVRON_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2276
|
+
readonly FA_CHEVRON_RIGHT_LIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2277
|
+
readonly FA_CHEVRON_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2278
|
+
readonly FA_CHEVRON_UP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2279
|
+
readonly FA_CIRCLE_ARROW_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2280
|
+
readonly FA_CIRCLE_ARROW_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2281
|
+
readonly FA_CIRCLE_CHECK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2282
|
+
readonly FA_CIRCLE_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2283
|
+
readonly FA_CIRCLE_ELLIPSIS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2284
|
+
readonly FA_CIRCLE_EXCLAMATION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2285
|
+
readonly FA_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2286
|
+
readonly FA_CIRCLE_NOTCH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2287
|
+
readonly FA_CIRCLE_PLAY_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2288
|
+
readonly FA_CIRCLE_QUESTION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2289
|
+
readonly FA_CIRCLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2290
|
+
readonly FA_CIRCLE_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2291
|
+
readonly FA_CIRCLE_XMARK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2292
|
+
readonly FA_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2293
|
+
readonly FA_CLIPBOARD_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2294
|
+
readonly FA_CLIPBOARD_MEDICAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2295
|
+
readonly FA_CLOCK_ROTATE_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2296
|
+
readonly FA_CLOCK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2297
|
+
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2298
|
+
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2299
|
+
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2300
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2301
|
+
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2302
|
+
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2303
|
+
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2304
|
+
readonly FA_COMMENTS_QUESTION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2305
|
+
readonly FA_COMMENTS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2306
|
+
readonly FA_COMMENTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2307
|
+
readonly FA_COMPASS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2308
|
+
readonly FA_COMPRESS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2309
|
+
readonly FA_COPY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2310
|
+
readonly FA_CREDIT_CARD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2311
|
+
readonly FA_DNA_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2312
|
+
readonly FA_DOT_CIRCLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2313
|
+
readonly FA_DOT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2314
|
+
readonly FA_EARTH_AMERICAS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2315
|
+
readonly FA_ELLIPSIS_VERTICAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2316
|
+
readonly FA_ELLIPSIS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2317
|
+
readonly FA_ENVELOPE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2318
|
+
readonly FA_EXCLAMATION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2319
|
+
readonly FA_EYE_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2320
|
+
readonly FA_EYE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2321
|
+
readonly FA_FACE_FROWN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2322
|
+
readonly FA_FACE_GRIMACE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2323
|
+
readonly FA_FACE_MEH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2324
|
+
readonly FA_FACE_SMILE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2325
|
+
readonly FA_FACEBOOK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2326
|
+
readonly FA_FACEBOOK_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2327
|
+
readonly FA_FILE_ARROW_DOWN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2328
|
+
readonly FA_FILE_EXPORT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2329
|
+
readonly FA_FILE_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2330
|
+
readonly FA_FILE_INVOICE_DOLLAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2331
|
+
readonly FA_FILE_LINES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2332
|
+
readonly FA_FILE_LINES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2333
|
+
readonly FA_FILE_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2334
|
+
readonly FA_FILE_PEN_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2335
|
+
readonly FA_FILM: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2336
|
+
readonly FA_FILTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2337
|
+
readonly FA_FLAG_CHECKERED_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2338
|
+
readonly FA_FLAG: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2339
|
+
readonly FA_FLASK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2340
|
+
readonly FA_FLOPPY_DISK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2341
|
+
readonly FA_FOLDER_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2342
|
+
readonly FA_FORWARD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2343
|
+
readonly FA_GAUGE_HIGH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2344
|
+
readonly FA_GEAR_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2345
|
+
readonly FA_GEAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2346
|
+
readonly FA_GEARS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2347
|
+
readonly FA_GEM: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2348
|
+
readonly FA_GIFT_CARD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2349
|
+
readonly FA_GIFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2350
|
+
readonly FA_GLOBE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2351
|
+
readonly FA_GRADUATION_CAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2352
|
+
readonly FA_GRID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2353
|
+
readonly FA_HAND_POINT_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2354
|
+
readonly FA_HAND_POINT_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2355
|
+
readonly FA_HAND_SPOCK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2356
|
+
readonly FA_HANDS_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2357
|
+
readonly FA_HEAD_SIDE_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2358
|
+
readonly FA_HEART_PULSE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2359
|
+
readonly FA_HEART_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2360
|
+
readonly FA_HOURGLASS_END: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2361
|
+
readonly FA_HOURGLASS_START: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2362
|
+
readonly FA_HOURGLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2363
|
+
readonly FA_HOUSE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2364
|
+
readonly FA_IMAGE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2365
|
+
readonly FA_IMAGE_CIRCLE_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2366
|
+
readonly FA_IMAGE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2367
|
+
readonly FA_IMAGES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2368
|
+
readonly FA_IMAGES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2369
|
+
readonly FA_INBOX_IN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2370
|
+
readonly FA_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2371
|
+
readonly FA_INSTAGRAM: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2372
|
+
readonly FA_KEY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2373
|
+
readonly FA_KEYBOARD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2374
|
+
readonly FA_LIGHTBULB_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2375
|
+
readonly FA_LIGHTBULB: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2376
|
+
readonly FA_LINK_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2377
|
+
readonly FA_LINK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2378
|
+
readonly FA_LIST_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2379
|
+
readonly FA_LIST_OL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2380
|
+
readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2381
|
+
readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2382
|
+
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2383
|
+
readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2384
|
+
readonly FA_MARKER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2385
|
+
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2386
|
+
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2387
|
+
readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2388
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2389
|
+
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2390
|
+
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2391
|
+
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2392
|
+
readonly FA_MESSAGE_QUESTION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2393
|
+
readonly FA_MESSAGE_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2394
|
+
readonly FA_MESSAGE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2395
|
+
readonly FA_MESSAGES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2396
|
+
readonly FA_MINUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2397
|
+
readonly FA_MOBILE_ROTATE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2398
|
+
readonly FA_MONEY_BILL1: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2399
|
+
readonly FA_MOON_STAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2400
|
+
readonly FA_MOON_STAR_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2401
|
+
readonly FA_MUSIC: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2402
|
+
readonly FA_NOTES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2403
|
+
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2404
|
+
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2405
|
+
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2406
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2407
|
+
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2408
|
+
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2409
|
+
readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2410
|
+
readonly FA_PENCIL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2411
|
+
readonly FA_PLAY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2412
|
+
readonly FA_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2413
|
+
readonly FA_PRESENTATION_SCREEN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2414
|
+
readonly FA_PRINT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2415
|
+
readonly FA_PUZZLE_PIECE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2416
|
+
readonly FA_QUESTION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2417
|
+
readonly FA_RECTANGLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2418
|
+
readonly FA_RECTANGLE_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2419
|
+
readonly FA_RECTANGLE_HISTORY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2420
|
+
readonly FA_RECTANGLE_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2421
|
+
readonly FA_REPLY: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2422
|
+
readonly FA_ROTATE_LEFT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2423
|
+
readonly FA_SHARE_NODES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2424
|
+
readonly FA_SHARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2425
|
+
readonly FA_SHIELD_HALVED: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2426
|
+
readonly FA_SIDEBAR_FLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2427
|
+
readonly FA_SIGNAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2428
|
+
readonly FA_SIGN_POST: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2429
|
+
readonly FA_SITEMAP_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2430
|
+
readonly FA_SITEMAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2431
|
+
readonly FA_SLIDERS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2432
|
+
readonly FA_SPELL_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2433
|
+
readonly FA_SQUARE_CARET_RIGHT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2434
|
+
readonly FA_SQUARE_CHECK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2435
|
+
readonly FA_SQUARE_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2436
|
+
readonly FA_SQUARE_LIST_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2437
|
+
readonly FA_SQUARE_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2438
|
+
readonly FA_SQUARE_MINUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2439
|
+
readonly FA_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2440
|
+
readonly FA_SQUARE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2441
|
+
readonly FA_STAR_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2442
|
+
readonly FA_STAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2443
|
+
readonly FA_STETHOSCOPE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2444
|
+
readonly FA_STOPWATCH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2445
|
+
readonly FA_TAG: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2446
|
+
readonly FA_TAGS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2447
|
+
readonly FA_TEXT_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2448
|
+
readonly FA_TEXT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2449
|
+
readonly FA_THUMBS_UP_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2450
|
+
readonly FA_THUMBS_UP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2451
|
+
readonly FA_THUMBTACK_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2452
|
+
readonly FA_THUMBTACK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2453
|
+
readonly FA_TIKTOK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2454
|
+
readonly FA_TRASH_CAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2455
|
+
readonly FA_TREE_PALM: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2456
|
+
readonly FA_TRIANGLE_EXCLAMATION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2457
|
+
readonly FA_TRIANGLE_EXCLAMATION: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2458
|
+
readonly FA_TROPHY_STAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2459
|
+
readonly FA_UNLOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2460
|
+
readonly FA_UPLOAD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2461
|
+
readonly FA_USER_DOCTOR_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2462
|
+
readonly FA_USER_GEAR: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2463
|
+
readonly FA_USER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2464
|
+
readonly FA_USERS_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2465
|
+
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2466
|
+
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2467
|
+
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2468
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2469
|
+
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2470
|
+
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2471
|
+
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2472
|
+
readonly FA_YOUTUBE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2473
|
+
readonly FAD_SPINNER_THIRD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2474
|
+
readonly FAD_SQUARE_MINUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2475
|
+
readonly FAD_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2476
|
+
readonly FAD_SQUARE_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
2477
|
+
}>;
|
|
2478
|
+
ICON_SIZES: Readonly<{
|
|
2479
|
+
XXX_SMALL: string;
|
|
2480
|
+
XX_SMALL: string;
|
|
2481
|
+
X_SMALL: string;
|
|
2482
|
+
SMALL: string;
|
|
2483
|
+
MEDIUM: string;
|
|
2484
|
+
LARGE: string;
|
|
2485
|
+
X_LARGE: string;
|
|
2486
|
+
XX_LARGE: string;
|
|
2487
|
+
}>;
|
|
2488
|
+
ICON_BUTTON_SIZES: Readonly<{
|
|
2489
|
+
readonly XX_SMALL: "xx-small";
|
|
2490
|
+
readonly X_SMALL: "x-small";
|
|
2491
|
+
readonly SMALL: "small";
|
|
2492
|
+
readonly MEDIUM: "medium";
|
|
2493
|
+
readonly LARGE: "large";
|
|
2494
|
+
}>;
|
|
2495
|
+
ICON_BUTTON_COLOR_SCHEMES: Readonly<{
|
|
2496
|
+
readonly ALL_IN_COLOR: "all-in-color";
|
|
2497
|
+
readonly NEUTRAL_LABEL: "neutral-label";
|
|
2498
|
+
}>;
|
|
2499
|
+
ICON_BUTTON_TYPES: Readonly<{
|
|
2500
|
+
readonly ICON_ONLY: "icon-only";
|
|
2501
|
+
readonly OUTLINED: "outlined";
|
|
2502
|
+
readonly FILLED: "filled";
|
|
2503
|
+
}>;
|
|
2504
|
+
ICON_BUTTON_STATES: Readonly<{
|
|
2505
|
+
readonly DEFAULT: "default";
|
|
2506
|
+
readonly HOVERED: "hovered";
|
|
2507
|
+
readonly FOCUSED: "focused";
|
|
2508
|
+
readonly DISABLED: "disabled";
|
|
2509
|
+
readonly LOADING: "loading";
|
|
2510
|
+
}>;
|
|
2511
|
+
ICON_BUTTON_COLORS: Readonly<{
|
|
2512
|
+
readonly PRIMARY: "primary";
|
|
2513
|
+
readonly NEUTRAL: "neutral";
|
|
2514
|
+
readonly NEUTRAL_WEAK: "neutral-weak";
|
|
2515
|
+
readonly FAIL: "fail";
|
|
2516
|
+
readonly DANGER: "danger";
|
|
2517
|
+
readonly SUCCESS: "success";
|
|
2518
|
+
readonly INVERTED: "inverted";
|
|
2519
|
+
readonly WARNING: "warning";
|
|
2520
|
+
readonly INFO: "info";
|
|
2521
|
+
readonly MAGIC: "magic";
|
|
2522
|
+
readonly ACCENT: "accent";
|
|
2523
|
+
}>;
|
|
2524
|
+
BUTTON_COLORS: Readonly<{
|
|
2525
|
+
readonly PRIMARY: "primary";
|
|
2526
|
+
readonly NEUTRAL: "neutral";
|
|
2527
|
+
readonly DANGER: "danger";
|
|
2528
|
+
readonly SUCCESS: "success";
|
|
2529
|
+
readonly INVERTED: "inverted";
|
|
2530
|
+
readonly MAGIC: "magic";
|
|
2531
|
+
}>;
|
|
2532
|
+
}, {
|
|
2533
|
+
iconSize(): string;
|
|
2534
|
+
buttonType(): string;
|
|
2535
|
+
computedColor(): string | undefined;
|
|
2536
|
+
isButtonColor(): boolean;
|
|
2537
|
+
colorClassName(): string;
|
|
2538
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
2539
|
+
size: {
|
|
2540
|
+
type: StringConstructor;
|
|
2541
|
+
default: "large";
|
|
2542
|
+
validator(value: import('../../Buttons/IconButton').IconButtonSize): boolean;
|
|
2543
|
+
};
|
|
2544
|
+
radius: {
|
|
2545
|
+
type: StringConstructor;
|
|
2546
|
+
default: "capsule";
|
|
2547
|
+
validator(value: import('../../..').ButtonRadius): boolean;
|
|
2548
|
+
};
|
|
2549
|
+
type: {
|
|
2550
|
+
type: StringConstructor;
|
|
2551
|
+
default: "icon-only";
|
|
2552
|
+
validator(value: import('../../Buttons/IconButton').IconButtonType): boolean;
|
|
2553
|
+
};
|
|
2554
|
+
icon: {
|
|
2555
|
+
type: ObjectConstructor;
|
|
2556
|
+
required: true;
|
|
2557
|
+
validator(icon: unknown): boolean;
|
|
2558
|
+
};
|
|
2559
|
+
color: {
|
|
2560
|
+
type: StringConstructor;
|
|
2561
|
+
default: "primary";
|
|
2562
|
+
validator(value: import('../../Buttons/IconButton').IconButtonColor): boolean;
|
|
2563
|
+
};
|
|
2564
|
+
colorScheme: {
|
|
2565
|
+
type: StringConstructor;
|
|
2566
|
+
default: "all-in-color";
|
|
2567
|
+
validator(value: import('../../Buttons/IconButton').IconButtonColorScheme): boolean;
|
|
1877
2568
|
};
|
|
1878
|
-
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
1879
|
-
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
1880
2569
|
elevation: {
|
|
1881
|
-
type:
|
|
2570
|
+
type: StringConstructor;
|
|
2571
|
+
default: "none";
|
|
2572
|
+
validator(value: import('../../..').ButtonElevation): boolean;
|
|
1882
2573
|
};
|
|
1883
|
-
|
|
1884
|
-
type:
|
|
2574
|
+
touchableDeprecated: {
|
|
2575
|
+
type: BooleanConstructor;
|
|
2576
|
+
default: boolean;
|
|
1885
2577
|
};
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
2578
|
+
state: {
|
|
2579
|
+
type: StringConstructor;
|
|
2580
|
+
default: "default";
|
|
2581
|
+
validator(value: import('../../../utils/type.utils').Value<typeof import('../../Buttons/IconButton').ICON_BUTTON_STATES>): boolean;
|
|
2582
|
+
};
|
|
2583
|
+
}>> & Readonly<{}>, {
|
|
2584
|
+
size: string;
|
|
2585
|
+
type: string;
|
|
2586
|
+
touchableDeprecated: boolean;
|
|
2587
|
+
color: string;
|
|
2588
|
+
radius: string;
|
|
2589
|
+
state: string;
|
|
2590
|
+
elevation: string;
|
|
2591
|
+
colorScheme: string;
|
|
2592
|
+
}, {}, {
|
|
2593
|
+
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2594
|
+
icon: {
|
|
2595
|
+
type: ObjectConstructor;
|
|
2596
|
+
required: true;
|
|
2597
|
+
validator(icon: unknown): boolean;
|
|
2598
|
+
};
|
|
2599
|
+
size: {
|
|
2600
|
+
type: StringConstructor;
|
|
2601
|
+
default: string;
|
|
2602
|
+
validator: (value: string) => boolean;
|
|
2603
|
+
};
|
|
2604
|
+
rotation: {
|
|
2605
|
+
type: (NumberConstructor | null)[];
|
|
2606
|
+
default: null;
|
|
2607
|
+
};
|
|
2608
|
+
flippedVertical: {
|
|
2609
|
+
type: BooleanConstructor;
|
|
2610
|
+
default: boolean;
|
|
2611
|
+
};
|
|
2612
|
+
flippedHorizontal: {
|
|
2613
|
+
type: BooleanConstructor;
|
|
2614
|
+
default: boolean;
|
|
2615
|
+
};
|
|
2616
|
+
touchableDeprecated: {
|
|
2617
|
+
type: BooleanConstructor;
|
|
2618
|
+
default: boolean;
|
|
2619
|
+
};
|
|
2620
|
+
spinning: {
|
|
2621
|
+
type: BooleanConstructor;
|
|
2622
|
+
default: boolean;
|
|
2623
|
+
};
|
|
2624
|
+
}>, {}, {}, {
|
|
2625
|
+
sizeClassName(): string;
|
|
2626
|
+
isFontawesomeIcon(): boolean;
|
|
2627
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
2628
|
+
icon: {
|
|
2629
|
+
type: ObjectConstructor;
|
|
2630
|
+
required: true;
|
|
2631
|
+
validator(icon: unknown): boolean;
|
|
2632
|
+
};
|
|
2633
|
+
size: {
|
|
2634
|
+
type: StringConstructor;
|
|
2635
|
+
default: string;
|
|
2636
|
+
validator: (value: string) => boolean;
|
|
2637
|
+
};
|
|
2638
|
+
rotation: {
|
|
2639
|
+
type: (NumberConstructor | null)[];
|
|
2640
|
+
default: null;
|
|
2641
|
+
};
|
|
2642
|
+
flippedVertical: {
|
|
2643
|
+
type: BooleanConstructor;
|
|
2644
|
+
default: boolean;
|
|
2645
|
+
};
|
|
2646
|
+
flippedHorizontal: {
|
|
2647
|
+
type: BooleanConstructor;
|
|
2648
|
+
default: boolean;
|
|
2649
|
+
};
|
|
2650
|
+
touchableDeprecated: {
|
|
2651
|
+
type: BooleanConstructor;
|
|
2652
|
+
default: boolean;
|
|
2653
|
+
};
|
|
2654
|
+
spinning: {
|
|
2655
|
+
type: BooleanConstructor;
|
|
2656
|
+
default: boolean;
|
|
2657
|
+
};
|
|
2658
|
+
}>> & Readonly<{}>, {
|
|
2659
|
+
rotation: number | null;
|
|
2660
|
+
size: string;
|
|
2661
|
+
flippedVertical: boolean;
|
|
2662
|
+
flippedHorizontal: boolean;
|
|
2663
|
+
touchableDeprecated: boolean;
|
|
2664
|
+
spinning: boolean;
|
|
2665
|
+
}, {}, {
|
|
2666
|
+
FontAwesomeIcon: import('vue').DefineComponent<import('@fortawesome/vue-fontawesome').FontAwesomeIconProps>;
|
|
2667
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2668
|
+
WnlButton: {
|
|
2669
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
2670
|
+
size: {
|
|
2671
|
+
type: import('vue').PropType<string>;
|
|
2672
|
+
};
|
|
2673
|
+
type: {
|
|
2674
|
+
type: import('vue').PropType<string>;
|
|
2675
|
+
};
|
|
2676
|
+
color: {
|
|
2677
|
+
type: import('vue').PropType<string | null>;
|
|
2678
|
+
};
|
|
2679
|
+
radius: {
|
|
2680
|
+
type: import('vue').PropType<string>;
|
|
2681
|
+
};
|
|
2682
|
+
state: {
|
|
2683
|
+
type: import('vue').PropType<string>;
|
|
2684
|
+
};
|
|
2685
|
+
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
2686
|
+
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
2687
|
+
elevation: {
|
|
2688
|
+
type: import('vue').PropType<string>;
|
|
2689
|
+
};
|
|
2690
|
+
as: {
|
|
2691
|
+
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
2692
|
+
};
|
|
2693
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
2694
|
+
P: {};
|
|
2695
|
+
B: {};
|
|
2696
|
+
D: {};
|
|
2697
|
+
C: {};
|
|
2698
|
+
M: {};
|
|
2699
|
+
Defaults: {};
|
|
2700
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
2701
|
+
size: {
|
|
2702
|
+
type: import('vue').PropType<string>;
|
|
2703
|
+
};
|
|
2704
|
+
type: {
|
|
2705
|
+
type: import('vue').PropType<string>;
|
|
2706
|
+
};
|
|
2707
|
+
color: {
|
|
2708
|
+
type: import('vue').PropType<string | null>;
|
|
2709
|
+
};
|
|
2710
|
+
radius: {
|
|
2711
|
+
type: import('vue').PropType<string>;
|
|
2712
|
+
};
|
|
2713
|
+
state: {
|
|
2714
|
+
type: import('vue').PropType<string>;
|
|
2715
|
+
};
|
|
2716
|
+
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
2717
|
+
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
2718
|
+
elevation: {
|
|
2719
|
+
type: import('vue').PropType<string>;
|
|
2720
|
+
};
|
|
2721
|
+
as: {
|
|
2722
|
+
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
2723
|
+
};
|
|
2724
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
2725
|
+
__isFragment?: never;
|
|
2726
|
+
__isTeleport?: never;
|
|
2727
|
+
__isSuspense?: never;
|
|
2728
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
2729
|
+
size: {
|
|
2730
|
+
type: import('vue').PropType<string>;
|
|
2731
|
+
};
|
|
2732
|
+
type: {
|
|
2733
|
+
type: import('vue').PropType<string>;
|
|
2734
|
+
};
|
|
2735
|
+
color: {
|
|
2736
|
+
type: import('vue').PropType<string | null>;
|
|
2737
|
+
};
|
|
2738
|
+
radius: {
|
|
2739
|
+
type: import('vue').PropType<string>;
|
|
2740
|
+
};
|
|
2741
|
+
state: {
|
|
2742
|
+
type: import('vue').PropType<string>;
|
|
2743
|
+
};
|
|
2744
|
+
iconLeft: import('../../Icons/Icon').IconItem | null;
|
|
2745
|
+
iconRight: import('../../Icons/Icon').IconItem | null;
|
|
2746
|
+
elevation: {
|
|
2747
|
+
type: import('vue').PropType<string>;
|
|
2748
|
+
};
|
|
2749
|
+
as: {
|
|
2750
|
+
type: import('vue').PropType<"a" | "button" | "span" | "router-link" | "nuxt-link">;
|
|
2751
|
+
};
|
|
2752
|
+
}>> & 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 () => {
|
|
2753
|
+
$slots: {
|
|
2754
|
+
default?(_: {}): any;
|
|
2755
|
+
};
|
|
2756
|
+
});
|
|
2757
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2758
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1919
2759
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1920
2760
|
export default _default;
|