@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
|
@@ -98,6 +98,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
98
98
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
99
99
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
100
100
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
101
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
102
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
101
103
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
102
104
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
103
105
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -2,14 +2,28 @@ import { Value } from '../../../utils/type.utils';
|
|
|
2
2
|
|
|
3
3
|
export declare const CARD_PADDING_SIZES: {
|
|
4
4
|
readonly SMALL: "small";
|
|
5
|
+
readonly MEDIUM: "medium";
|
|
5
6
|
readonly LARGE: "large";
|
|
6
7
|
};
|
|
7
8
|
export type CardPaddingSize = Value<typeof CARD_PADDING_SIZES>;
|
|
8
9
|
export declare const CARD_BACKGROUND_COLORS: {
|
|
9
10
|
readonly DEFAULT: "default";
|
|
10
11
|
readonly NEUTRAL: "neutral";
|
|
12
|
+
readonly NONE: "none";
|
|
11
13
|
};
|
|
12
14
|
export type CardBackgroundColor = Value<typeof CARD_BACKGROUND_COLORS>;
|
|
15
|
+
export declare const CARD_ELEVATIONS: {
|
|
16
|
+
readonly DEFAULT: "default";
|
|
17
|
+
readonly TOP: "top";
|
|
18
|
+
readonly NONE: "none";
|
|
19
|
+
};
|
|
20
|
+
export type CardElevation = Value<typeof CARD_ELEVATIONS>;
|
|
21
|
+
export declare const CARD_RADIUSES: {
|
|
22
|
+
readonly ALL: "all";
|
|
23
|
+
readonly TOP: "top";
|
|
24
|
+
readonly NONE: "none";
|
|
25
|
+
};
|
|
26
|
+
export type CardRadius = Value<typeof CARD_RADIUSES>;
|
|
13
27
|
export declare const CARD_RIBBON_COLORS: {
|
|
14
28
|
readonly NEUTRAL: "neutral";
|
|
15
29
|
readonly NEUTRAL_HEAVY: "neutral-heavy";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { LoadingBarColors } from '../../LoadingBar';
|
|
2
|
-
import {
|
|
2
|
+
import { RemovedProp } from '../../../utils/type.utils';
|
|
3
|
+
import { CardBackgroundColor, CardElevation, CardRadius, CardRibbonColors, CardRibbonPositions, CardRibbonSizes, CardPaddingSize } from './Card.consts';
|
|
3
4
|
|
|
4
5
|
declare function __VLS_template(): Readonly<{
|
|
5
6
|
header?: () => any;
|
|
@@ -19,8 +20,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
19
20
|
paddingSize?: CardPaddingSize;
|
|
20
21
|
dividerUnderHeader?: boolean;
|
|
21
22
|
hasRibbon?: boolean;
|
|
22
|
-
|
|
23
|
+
elevation?: CardElevation;
|
|
24
|
+
radius?: CardRadius;
|
|
23
25
|
backgroundColor?: CardBackgroundColor;
|
|
26
|
+
isFlat?: boolean;
|
|
24
27
|
ribbonPosition?: CardRibbonPositions;
|
|
25
28
|
ribbonSize?: CardRibbonSizes;
|
|
26
29
|
ribbonColor?: CardRibbonColors;
|
|
@@ -28,8 +31,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
28
31
|
hasLoadingBar?: boolean;
|
|
29
32
|
loadingBarColor?: LoadingBarColors;
|
|
30
33
|
loadingBarTime?: string;
|
|
31
|
-
isFlat?: boolean;
|
|
32
34
|
isContentScrollable?: boolean;
|
|
35
|
+
hasRadius?: RemovedProp<"renamed to radius">;
|
|
33
36
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
34
37
|
contentHasPadding?: boolean;
|
|
35
38
|
headerHasPadding?: boolean;
|
|
@@ -37,8 +40,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
37
40
|
paddingSize?: CardPaddingSize;
|
|
38
41
|
dividerUnderHeader?: boolean;
|
|
39
42
|
hasRibbon?: boolean;
|
|
40
|
-
|
|
43
|
+
elevation?: CardElevation;
|
|
44
|
+
radius?: CardRadius;
|
|
41
45
|
backgroundColor?: CardBackgroundColor;
|
|
46
|
+
isFlat?: boolean;
|
|
42
47
|
ribbonPosition?: CardRibbonPositions;
|
|
43
48
|
ribbonSize?: CardRibbonSizes;
|
|
44
49
|
ribbonColor?: CardRibbonColors;
|
|
@@ -46,8 +51,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
46
51
|
hasLoadingBar?: boolean;
|
|
47
52
|
loadingBarColor?: LoadingBarColors;
|
|
48
53
|
loadingBarTime?: string;
|
|
49
|
-
isFlat?: boolean;
|
|
50
54
|
isContentScrollable?: boolean;
|
|
55
|
+
hasRadius?: RemovedProp<"renamed to radius">;
|
|
51
56
|
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
52
57
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
53
58
|
export default _default;
|
|
@@ -70,6 +70,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
70
70
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
71
71
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
72
72
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
73
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
74
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
73
75
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
74
76
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
75
77
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -383,12 +385,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
383
385
|
hasRibbon: {
|
|
384
386
|
type: import('vue').PropType<boolean>;
|
|
385
387
|
};
|
|
386
|
-
|
|
387
|
-
type: import('vue').PropType<
|
|
388
|
+
elevation: {
|
|
389
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardElevation>;
|
|
390
|
+
};
|
|
391
|
+
radius: {
|
|
392
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardRadius>;
|
|
388
393
|
};
|
|
389
394
|
backgroundColor: {
|
|
390
395
|
type: import('vue').PropType<import('../Card/Card.consts').CardBackgroundColor>;
|
|
391
396
|
};
|
|
397
|
+
isFlat: {
|
|
398
|
+
type: import('vue').PropType<boolean>;
|
|
399
|
+
};
|
|
392
400
|
ribbonPosition: {
|
|
393
401
|
type: import('vue').PropType<import('../Card/Card.consts').CardRibbonPositions>;
|
|
394
402
|
};
|
|
@@ -410,12 +418,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
410
418
|
loadingBarTime: {
|
|
411
419
|
type: import('vue').PropType<string>;
|
|
412
420
|
};
|
|
413
|
-
isFlat: {
|
|
414
|
-
type: import('vue').PropType<boolean>;
|
|
415
|
-
};
|
|
416
421
|
isContentScrollable: {
|
|
417
422
|
type: import('vue').PropType<boolean>;
|
|
418
423
|
};
|
|
424
|
+
hasRadius: {
|
|
425
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to radius">>;
|
|
426
|
+
};
|
|
419
427
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
420
428
|
P: {};
|
|
421
429
|
B: {};
|
|
@@ -442,12 +450,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
442
450
|
hasRibbon: {
|
|
443
451
|
type: import('vue').PropType<boolean>;
|
|
444
452
|
};
|
|
445
|
-
|
|
446
|
-
type: import('vue').PropType<
|
|
453
|
+
elevation: {
|
|
454
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardElevation>;
|
|
455
|
+
};
|
|
456
|
+
radius: {
|
|
457
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardRadius>;
|
|
447
458
|
};
|
|
448
459
|
backgroundColor: {
|
|
449
460
|
type: import('vue').PropType<import('../Card/Card.consts').CardBackgroundColor>;
|
|
450
461
|
};
|
|
462
|
+
isFlat: {
|
|
463
|
+
type: import('vue').PropType<boolean>;
|
|
464
|
+
};
|
|
451
465
|
ribbonPosition: {
|
|
452
466
|
type: import('vue').PropType<import('../Card/Card.consts').CardRibbonPositions>;
|
|
453
467
|
};
|
|
@@ -469,12 +483,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
469
483
|
loadingBarTime: {
|
|
470
484
|
type: import('vue').PropType<string>;
|
|
471
485
|
};
|
|
472
|
-
isFlat: {
|
|
473
|
-
type: import('vue').PropType<boolean>;
|
|
474
|
-
};
|
|
475
486
|
isContentScrollable: {
|
|
476
487
|
type: import('vue').PropType<boolean>;
|
|
477
488
|
};
|
|
489
|
+
hasRadius: {
|
|
490
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to radius">>;
|
|
491
|
+
};
|
|
478
492
|
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
479
493
|
__isFragment?: never;
|
|
480
494
|
__isTeleport?: never;
|
|
@@ -498,12 +512,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
498
512
|
hasRibbon: {
|
|
499
513
|
type: import('vue').PropType<boolean>;
|
|
500
514
|
};
|
|
501
|
-
|
|
502
|
-
type: import('vue').PropType<
|
|
515
|
+
elevation: {
|
|
516
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardElevation>;
|
|
517
|
+
};
|
|
518
|
+
radius: {
|
|
519
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardRadius>;
|
|
503
520
|
};
|
|
504
521
|
backgroundColor: {
|
|
505
522
|
type: import('vue').PropType<import('../Card/Card.consts').CardBackgroundColor>;
|
|
506
523
|
};
|
|
524
|
+
isFlat: {
|
|
525
|
+
type: import('vue').PropType<boolean>;
|
|
526
|
+
};
|
|
507
527
|
ribbonPosition: {
|
|
508
528
|
type: import('vue').PropType<import('../Card/Card.consts').CardRibbonPositions>;
|
|
509
529
|
};
|
|
@@ -525,12 +545,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
525
545
|
loadingBarTime: {
|
|
526
546
|
type: import('vue').PropType<string>;
|
|
527
547
|
};
|
|
528
|
-
isFlat: {
|
|
529
|
-
type: import('vue').PropType<boolean>;
|
|
530
|
-
};
|
|
531
548
|
isContentScrollable: {
|
|
532
549
|
type: import('vue').PropType<boolean>;
|
|
533
550
|
};
|
|
551
|
+
hasRadius: {
|
|
552
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to radius">>;
|
|
553
|
+
};
|
|
534
554
|
}>> & 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 () => {
|
|
535
555
|
$slots: Readonly<{
|
|
536
556
|
header?: () => any;
|
|
@@ -91,6 +91,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
91
91
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
92
92
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
93
93
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
94
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
95
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
94
96
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
95
97
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
96
98
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -858,6 +858,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
858
858
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
859
859
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
860
860
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
861
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
862
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
861
863
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
862
864
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
863
865
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -702,6 +702,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
702
702
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
703
703
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
704
704
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
705
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
706
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
705
707
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
706
708
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
707
709
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -123,6 +123,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
123
123
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
124
124
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
125
125
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
126
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
127
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
126
128
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
127
129
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
128
130
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -559,6 +561,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
559
561
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
560
562
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
561
563
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
564
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
565
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
562
566
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
563
567
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
564
568
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1099,6 +1103,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1099
1103
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1100
1104
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1101
1105
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1106
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1107
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1102
1108
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1103
1109
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1104
1110
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -3,6 +3,6 @@ import { MaybeRefOrGetter, Ref } from 'vue';
|
|
|
3
3
|
export declare function useInputFieldWithinForm(name: MaybeRefOrGetter<string | undefined>, modelValue: Ref<string | undefined>): {
|
|
4
4
|
onBlur: (event: Event) => void;
|
|
5
5
|
onInput: () => void;
|
|
6
|
-
value: Ref<string | undefined, string | undefined
|
|
6
|
+
value: Ref<string | undefined, string | undefined>;
|
|
7
7
|
errors: Ref<string[], string[]>;
|
|
8
8
|
};
|
|
@@ -64,6 +64,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
64
64
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
65
65
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
66
66
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
67
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
68
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
67
69
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
68
70
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
69
71
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { FormFieldProps, FormFieldSlots } from '../FormField';
|
|
2
|
+
import { IconItem } from '../../Icons/Icon';
|
|
3
|
+
|
|
4
|
+
export type SelectFieldValue = string | number;
|
|
5
|
+
export interface SelectFieldOption {
|
|
6
|
+
value: SelectFieldValue;
|
|
7
|
+
label: string;
|
|
8
|
+
iconLeft?: IconItem | null;
|
|
9
|
+
eyebrowText?: string;
|
|
10
|
+
isDisabled?: boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface SelectFieldOptionGroup {
|
|
13
|
+
label?: string;
|
|
14
|
+
options: Array<SelectFieldOption>;
|
|
15
|
+
}
|
|
16
|
+
export interface SelectFieldProps extends FormFieldProps {
|
|
17
|
+
options: Array<SelectFieldOption | SelectFieldOptionGroup>;
|
|
18
|
+
placeholder?: string;
|
|
19
|
+
leftIcon?: IconItem | null;
|
|
20
|
+
ariaLabel?: string;
|
|
21
|
+
maxHeight?: string | number;
|
|
22
|
+
name?: string;
|
|
23
|
+
autocomplete?: string;
|
|
24
|
+
isGroupLabelUppercase?: boolean;
|
|
25
|
+
}
|
|
26
|
+
export type SelectFieldSlots = Omit<FormFieldSlots, 'field'>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SelectFieldOption, SelectFieldOptionGroup } from './SelectField.types';
|
|
2
|
+
|
|
3
|
+
export declare function isSelectFieldOptionGroup(option: SelectFieldOption | SelectFieldOptionGroup): option is SelectFieldOptionGroup;
|
|
4
|
+
export declare function normalizeOptions(options: Array<SelectFieldOption | SelectFieldOptionGroup>): Array<SelectFieldOptionGroup>;
|
|
5
|
+
export declare function assertOptionValues(groups: Array<SelectFieldOptionGroup>): void;
|
|
6
|
+
export declare function toCssLength(value: string | number | undefined): string | undefined;
|
|
7
|
+
export declare function getOptionAccessibleName(option: SelectFieldOption): string;
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { SelectFieldSlots, SelectFieldValue } from './SelectField.types';
|
|
2
|
+
|
|
3
|
+
declare function __VLS_template(): Readonly<SelectFieldSlots> & SelectFieldSlots;
|
|
4
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
modelValue: import('vue').PropType<SelectFieldValue>;
|
|
6
|
+
options: {
|
|
7
|
+
type: import('vue').PropType<(import('./SelectField.types').SelectFieldOption | import('./SelectField.types').SelectFieldOptionGroup)[]>;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
placeholder: {
|
|
11
|
+
type: import('vue').PropType<string>;
|
|
12
|
+
};
|
|
13
|
+
leftIcon: import('../../Icons/Icon').IconItem | null;
|
|
14
|
+
ariaLabel: {
|
|
15
|
+
type: import('vue').PropType<string>;
|
|
16
|
+
};
|
|
17
|
+
maxHeight: {
|
|
18
|
+
type: import('vue').PropType<string | number>;
|
|
19
|
+
};
|
|
20
|
+
name: {
|
|
21
|
+
type: import('vue').PropType<string>;
|
|
22
|
+
};
|
|
23
|
+
autocomplete: {
|
|
24
|
+
type: import('vue').PropType<string>;
|
|
25
|
+
};
|
|
26
|
+
isGroupLabelUppercase: {
|
|
27
|
+
type: import('vue').PropType<boolean>;
|
|
28
|
+
};
|
|
29
|
+
label: {
|
|
30
|
+
type: import('vue').PropType<string>;
|
|
31
|
+
};
|
|
32
|
+
state: {
|
|
33
|
+
type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
|
|
34
|
+
};
|
|
35
|
+
hasRequiredIndicator: {
|
|
36
|
+
type: import('vue').PropType<boolean>;
|
|
37
|
+
};
|
|
38
|
+
labelInfo: {
|
|
39
|
+
type: import('vue').PropType<string>;
|
|
40
|
+
};
|
|
41
|
+
subLabel: {
|
|
42
|
+
type: import('vue').PropType<string>;
|
|
43
|
+
};
|
|
44
|
+
fieldId: {
|
|
45
|
+
type: import('vue').PropType<string>;
|
|
46
|
+
};
|
|
47
|
+
messageText: {
|
|
48
|
+
type: import('vue').PropType<string>;
|
|
49
|
+
};
|
|
50
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
51
|
+
"open-change": (isOpen: boolean) => void;
|
|
52
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
53
|
+
modelValue: import('vue').PropType<SelectFieldValue>;
|
|
54
|
+
options: {
|
|
55
|
+
type: import('vue').PropType<(import('./SelectField.types').SelectFieldOption | import('./SelectField.types').SelectFieldOptionGroup)[]>;
|
|
56
|
+
required: true;
|
|
57
|
+
};
|
|
58
|
+
placeholder: {
|
|
59
|
+
type: import('vue').PropType<string>;
|
|
60
|
+
};
|
|
61
|
+
leftIcon: import('../../Icons/Icon').IconItem | null;
|
|
62
|
+
ariaLabel: {
|
|
63
|
+
type: import('vue').PropType<string>;
|
|
64
|
+
};
|
|
65
|
+
maxHeight: {
|
|
66
|
+
type: import('vue').PropType<string | number>;
|
|
67
|
+
};
|
|
68
|
+
name: {
|
|
69
|
+
type: import('vue').PropType<string>;
|
|
70
|
+
};
|
|
71
|
+
autocomplete: {
|
|
72
|
+
type: import('vue').PropType<string>;
|
|
73
|
+
};
|
|
74
|
+
isGroupLabelUppercase: {
|
|
75
|
+
type: import('vue').PropType<boolean>;
|
|
76
|
+
};
|
|
77
|
+
label: {
|
|
78
|
+
type: import('vue').PropType<string>;
|
|
79
|
+
};
|
|
80
|
+
state: {
|
|
81
|
+
type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
|
|
82
|
+
};
|
|
83
|
+
hasRequiredIndicator: {
|
|
84
|
+
type: import('vue').PropType<boolean>;
|
|
85
|
+
};
|
|
86
|
+
labelInfo: {
|
|
87
|
+
type: import('vue').PropType<string>;
|
|
88
|
+
};
|
|
89
|
+
subLabel: {
|
|
90
|
+
type: import('vue').PropType<string>;
|
|
91
|
+
};
|
|
92
|
+
fieldId: {
|
|
93
|
+
type: import('vue').PropType<string>;
|
|
94
|
+
};
|
|
95
|
+
messageText: {
|
|
96
|
+
type: import('vue').PropType<string>;
|
|
97
|
+
};
|
|
98
|
+
}>> & Readonly<{
|
|
99
|
+
"onOpen-change"?: ((isOpen: boolean) => any) | undefined;
|
|
100
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
101
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
102
|
+
export default _default;
|
|
103
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
104
|
+
new (): {
|
|
105
|
+
$slots: S;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { SelectFieldOption as SelectFieldOptionType } from './SelectField.types';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
option: SelectFieldOptionType;
|
|
5
|
+
isSelected?: boolean;
|
|
6
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
option: SelectFieldOptionType;
|
|
8
|
+
isSelected?: boolean;
|
|
9
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
12
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
13
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
14
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
15
|
+
} : {
|
|
16
|
+
type: import('vue').PropType<T[K]>;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { MaybeRefOrGetter, Ref } from 'vue';
|
|
2
|
+
import { SelectFieldValue } from './SelectField.types';
|
|
3
|
+
|
|
4
|
+
export declare function useSelectFieldWithinForm(name: MaybeRefOrGetter<string | undefined>, modelValue: Ref<SelectFieldValue | undefined>): {
|
|
5
|
+
value: Ref<SelectFieldValue | undefined, SelectFieldValue | undefined>;
|
|
6
|
+
errors: Ref<string[], string[]>;
|
|
7
|
+
onClose: (event: Event) => void;
|
|
8
|
+
};
|
|
@@ -111,6 +111,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
111
111
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
112
112
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
113
113
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
114
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
115
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
114
116
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
115
117
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
116
118
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -530,6 +532,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
530
532
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
531
533
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
532
534
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
535
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
536
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
533
537
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
534
538
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
535
539
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -112,6 +112,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
112
112
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
113
113
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
114
114
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
115
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
116
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
115
117
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
116
118
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
117
119
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -652,6 +654,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
652
654
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
653
655
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
654
656
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
657
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
658
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
655
659
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
656
660
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
657
661
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -70,6 +70,8 @@ export declare const ICONS: {
|
|
|
70
70
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
71
71
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
72
72
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
73
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
74
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
73
75
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
74
76
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
75
77
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -159,6 +159,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
159
159
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
160
160
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
161
161
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
162
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
163
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
162
164
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
163
165
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
164
166
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -783,6 +785,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
783
785
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
784
786
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
785
787
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
788
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
789
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
786
790
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
787
791
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
788
792
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -294,6 +294,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
294
294
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
295
295
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
296
296
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
297
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
298
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
297
299
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
298
300
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
299
301
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -918,6 +920,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
918
920
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
919
921
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
920
922
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
923
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
924
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
921
925
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
922
926
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
923
927
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -109,6 +109,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
109
109
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
110
110
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
111
111
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
112
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
113
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
112
114
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
113
115
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
114
116
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -503,6 +505,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
503
505
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
504
506
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
505
507
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
508
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
509
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
506
510
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
507
511
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
508
512
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1206,9 +1210,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1206
1210
|
$slots: Readonly<{
|
|
1207
1211
|
accessory?: () => any;
|
|
1208
1212
|
metadata?: () => any;
|
|
1213
|
+
text?: () => any;
|
|
1209
1214
|
}> & {
|
|
1210
1215
|
accessory?: () => any;
|
|
1211
1216
|
metadata?: () => any;
|
|
1217
|
+
text?: () => any;
|
|
1212
1218
|
};
|
|
1213
1219
|
});
|
|
1214
1220
|
SelectList: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -135,6 +135,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
135
135
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
136
136
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
137
137
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
138
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
139
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
138
140
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
139
141
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
140
142
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -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;
|
|
@@ -608,6 +608,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
608
608
|
readonly FA_BADGE_PERCENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
609
609
|
readonly FA_BAN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
610
610
|
readonly FA_BARS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
611
|
+
readonly FA_BELL_SLASH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
612
|
+
readonly FA_BELL_ON_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
611
613
|
readonly FA_BELL_SLASH: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
612
614
|
readonly FA_BELL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
613
615
|
readonly FA_BOLT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|