@bethinkpl/design-system 39.1.0 → 40.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 +19329 -19161
- package/dist/design-system.js.map +1 -1
- package/dist/lib/js/components/ActionContent/ActionContent.vue.d.ts +42 -0
- package/dist/lib/js/components/ActionContent/index.d.ts +3 -0
- package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +3 -1
- package/dist/lib/js/components/Cards/Card/Card.consts.d.ts +13 -8
- package/dist/lib/js/components/Cards/Card/Card.vue.d.ts +22 -9
- package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +77 -21
- package/dist/lib/js/components/Chip/Chip.vue.d.ts +2 -0
- package/dist/lib/js/components/DatePickers/DateBox/DateBox.vue.d.ts +3 -1
- package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +7 -5
- package/dist/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue.d.ts +4 -2
- package/dist/lib/js/components/Divider/Divider.vue.d.ts +1 -1
- package/dist/lib/js/components/Drawer/DrawerDivider/DrawerDivider.vue.d.ts +1 -1
- package/dist/lib/js/components/Drawer/DrawerHeader/DrawerHeader.vue.d.ts +10 -3
- package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +2 -0
- package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +10 -4
- package/dist/lib/js/components/Drawer/DrawerTile/DrawerTile.vue.d.ts +4 -4
- package/dist/lib/js/components/Dropdown/Dropdown.vue.d.ts +1 -1
- package/dist/lib/js/components/Form/FormField/FormField.utils.d.ts +1 -1
- package/dist/lib/js/components/Form/InputField/InputField.vue.d.ts +2 -2
- package/dist/lib/js/components/Form/PasswordField/PasswordField.vue.d.ts +2 -2
- package/dist/lib/js/components/Form/RadioButton/RadioButton.vue.d.ts +2 -0
- package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +9 -5
- package/dist/lib/js/components/Headers/PageHeader/PageHeader.vue.d.ts +1 -1
- package/dist/lib/js/components/Headers/SectionHeader/SectionHeader.vue.d.ts +7 -3
- package/dist/lib/js/components/IconText/IconText.vue.d.ts +1 -1
- package/dist/lib/js/components/Icons/Icon/Icon.consts.d.ts +2 -0
- package/dist/lib/js/components/Image/Image.vue.d.ts +1 -1
- package/dist/lib/js/components/Menu/MenuDivider/MenuDivider.vue.d.ts +1 -1
- package/dist/lib/js/components/Modal/Modal.vue.d.ts +2 -0
- package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +6 -2
- package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +6 -2
- package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +6 -2
- 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 +44 -23
- package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +6 -4
- package/dist/lib/js/components/SelectList/SelectListItemDivider/SelectListItemDivider.vue.d.ts +1 -1
- package/dist/lib/js/components/Skeleton/Skeleton.vue.d.ts +1 -1
- 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 +82 -22
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +82 -22
- package/dist/lib/js/components/Switch/Switch.vue.d.ts +2 -0
- package/dist/lib/js/components/TextGroup/TextGroup.consts.d.ts +14 -3
- package/dist/lib/js/components/TextGroup/TextGroup.vue.d.ts +8 -3
- package/dist/lib/js/components/Tile/Tile.sb.shared.d.ts +4 -2
- package/dist/lib/js/components/Tile/Tile.vue.d.ts +2 -2
- package/dist/lib/js/components/Toast/Toast.vue.d.ts +76 -22
- package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +4 -2
- package/dist/lib/js/components/Well/Well.consts.d.ts +24 -0
- package/dist/lib/js/components/Well/Well.vue.d.ts +13 -1
- package/dist/lib/js/icons/fontawesome.d.ts +1 -0
- package/dist/lib/js/index.d.ts +2 -0
- package/dist/lib/js/utils/type.utils.d.ts +3 -0
- package/lib/images/icons/comment-lock.svg +1 -0
- package/lib/js/components/ActionContent/ActionContent.spec.ts +99 -0
- package/lib/js/components/ActionContent/ActionContent.stories.ts +141 -0
- package/lib/js/components/ActionContent/ActionContent.vue +104 -0
- package/lib/js/components/ActionContent/index.ts +3 -0
- package/lib/js/components/Cards/Card/Card.consts.ts +15 -8
- package/lib/js/components/Cards/Card/Card.spec.ts +61 -1
- package/lib/js/components/Cards/Card/Card.stories.ts +20 -13
- package/lib/js/components/Cards/Card/Card.vue +65 -34
- package/lib/js/components/Chip/Chip.spec.ts +28 -0
- package/lib/js/components/Chip/Chip.stories.ts +7 -2
- package/lib/js/components/Chip/Chip.vue +14 -3
- package/lib/js/components/Icons/Icon/Icon.consts.ts +2 -0
- package/lib/js/components/ProgressDonutChart/ProgressDonutChart.spec.ts +3 -3
- package/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue +8 -1
- package/lib/js/components/TextGroup/TextGroup.consts.ts +15 -1
- package/lib/js/components/TextGroup/TextGroup.stories.ts +14 -5
- package/lib/js/components/TextGroup/TextGroup.vue +51 -28
- package/lib/js/components/Well/Well.consts.ts +16 -0
- package/lib/js/components/Well/Well.spec.ts +112 -0
- package/lib/js/components/Well/Well.stories.ts +90 -1
- package/lib/js/components/Well/Well.vue +135 -4
- package/lib/js/icons/fontawesome.ts +2 -0
- package/lib/js/index.ts +2 -0
- package/lib/js/utils/type.utils.ts +16 -0
- package/package.json +14 -6
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { IconItem } from '../Icons/Icon';
|
|
2
|
+
|
|
3
|
+
declare function __VLS_template(): Readonly<{
|
|
4
|
+
actions?: () => any;
|
|
5
|
+
}> & {
|
|
6
|
+
actions?: () => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
+
icon?: IconItem | null;
|
|
10
|
+
mainText?: string | null;
|
|
11
|
+
supportingText?: string | null;
|
|
12
|
+
buttonLabel?: string;
|
|
13
|
+
buttonIcon?: IconItem | null;
|
|
14
|
+
isActionVertical?: boolean;
|
|
15
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
"button-clicked": () => void;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
18
|
+
icon?: IconItem | null;
|
|
19
|
+
mainText?: string | null;
|
|
20
|
+
supportingText?: string | null;
|
|
21
|
+
buttonLabel?: string;
|
|
22
|
+
buttonIcon?: IconItem | null;
|
|
23
|
+
isActionVertical?: boolean;
|
|
24
|
+
}>>> & Readonly<{
|
|
25
|
+
"onButton-clicked"?: (() => any) | undefined;
|
|
26
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
30
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
31
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
32
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
33
|
+
} : {
|
|
34
|
+
type: import('vue').PropType<T[K]>;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
39
|
+
new (): {
|
|
40
|
+
$slots: S;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
@@ -58,6 +58,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
58
58
|
ICONS: Readonly<{
|
|
59
59
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
60
60
|
readonly CHANGE: VueConstructor<Vue>;
|
|
61
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
61
62
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
62
63
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
63
64
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -159,6 +160,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
159
160
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
160
161
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
161
162
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
163
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
162
164
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
163
165
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
164
166
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -441,9 +443,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
441
443
|
type: string;
|
|
442
444
|
touchableDeprecated: boolean;
|
|
443
445
|
color: string;
|
|
444
|
-
elevation: string;
|
|
445
446
|
radius: string;
|
|
446
447
|
state: string;
|
|
448
|
+
elevation: string;
|
|
447
449
|
colorScheme: string;
|
|
448
450
|
}, {}, {
|
|
449
451
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -5,7 +5,12 @@ export declare const CARD_PADDING_SIZES: {
|
|
|
5
5
|
readonly LARGE: "large";
|
|
6
6
|
};
|
|
7
7
|
export type CardPaddingSize = Value<typeof CARD_PADDING_SIZES>;
|
|
8
|
-
export declare const
|
|
8
|
+
export declare const CARD_BACKGROUND_COLORS: {
|
|
9
|
+
readonly DEFAULT: "default";
|
|
10
|
+
readonly NEUTRAL: "neutral";
|
|
11
|
+
};
|
|
12
|
+
export type CardBackgroundColor = Value<typeof CARD_BACKGROUND_COLORS>;
|
|
13
|
+
export declare const CARD_RIBBON_COLORS: {
|
|
9
14
|
readonly NEUTRAL: "neutral";
|
|
10
15
|
readonly NEUTRAL_HEAVY: "neutral-heavy";
|
|
11
16
|
readonly NEUTRAL_STRONG: "neutral-strong";
|
|
@@ -17,21 +22,21 @@ export declare const CARD_BORDER_COLORS: {
|
|
|
17
22
|
readonly INFO: "info";
|
|
18
23
|
readonly TRANSPARENT: "transparent";
|
|
19
24
|
};
|
|
20
|
-
export type
|
|
21
|
-
export declare const
|
|
25
|
+
export type CardRibbonColors = Value<typeof CARD_RIBBON_COLORS>;
|
|
26
|
+
export declare const CARD_RIBBON_SIZES: {
|
|
22
27
|
readonly SMALL: "small";
|
|
23
28
|
readonly MEDIUM: "medium";
|
|
24
29
|
readonly LARGE: "large";
|
|
25
30
|
};
|
|
26
|
-
export type
|
|
27
|
-
export declare const
|
|
31
|
+
export type CardRibbonSizes = Value<typeof CARD_RIBBON_SIZES>;
|
|
32
|
+
export declare const CARD_RIBBON_POSITIONS: {
|
|
28
33
|
readonly TOP: "top";
|
|
29
34
|
readonly LEFT: "left";
|
|
30
35
|
};
|
|
31
|
-
export type
|
|
32
|
-
export declare const
|
|
36
|
+
export type CardRibbonPositions = Value<typeof CARD_RIBBON_POSITIONS>;
|
|
37
|
+
export declare const CARD_RIBBON_RADIUS: {
|
|
33
38
|
readonly NONE: "none";
|
|
34
39
|
readonly RIGHT: "right";
|
|
35
40
|
readonly BOTTOM: "bottom";
|
|
36
41
|
};
|
|
37
|
-
export type
|
|
42
|
+
export type CardRibbonRadius = Value<typeof CARD_RIBBON_RADIUS>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { RemovedProp } from '../../../utils/type.utils';
|
|
1
2
|
import { LoadingBarColors } from '../../LoadingBar';
|
|
2
|
-
import {
|
|
3
|
+
import { CardBackgroundColor, CardRibbonColors, CardRibbonPositions, CardRibbonSizes, CardPaddingSize } from './Card.consts';
|
|
3
4
|
|
|
4
5
|
declare function __VLS_template(): Readonly<{
|
|
5
6
|
header?: () => any;
|
|
@@ -16,32 +17,44 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
16
17
|
footerHasPadding?: boolean;
|
|
17
18
|
paddingSize?: CardPaddingSize;
|
|
18
19
|
dividerUnderHeader?: boolean;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
hasRibbon?: boolean;
|
|
21
|
+
hasRadius?: boolean;
|
|
22
|
+
backgroundColor?: CardBackgroundColor;
|
|
23
|
+
ribbonPosition?: CardRibbonPositions;
|
|
24
|
+
ribbonSize?: CardRibbonSizes;
|
|
25
|
+
ribbonColor?: CardRibbonColors;
|
|
23
26
|
hasRibbonRadius?: boolean;
|
|
24
27
|
hasLoadingBar?: boolean;
|
|
25
28
|
loadingBarColor?: LoadingBarColors;
|
|
26
29
|
loadingBarTime?: string;
|
|
27
30
|
isFlat?: boolean;
|
|
28
31
|
isContentScrollable?: boolean;
|
|
32
|
+
hasBorder?: RemovedProp<"renamed to hasRibbon">;
|
|
33
|
+
borderPosition?: RemovedProp<"renamed to ribbonPosition">;
|
|
34
|
+
borderSize?: RemovedProp<"renamed to ribbonSize">;
|
|
35
|
+
borderColor?: RemovedProp<"renamed to ribbonColor">;
|
|
29
36
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
30
37
|
contentHasPadding?: boolean;
|
|
31
38
|
headerHasPadding?: boolean;
|
|
32
39
|
footerHasPadding?: boolean;
|
|
33
40
|
paddingSize?: CardPaddingSize;
|
|
34
41
|
dividerUnderHeader?: boolean;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
42
|
+
hasRibbon?: boolean;
|
|
43
|
+
hasRadius?: boolean;
|
|
44
|
+
backgroundColor?: CardBackgroundColor;
|
|
45
|
+
ribbonPosition?: CardRibbonPositions;
|
|
46
|
+
ribbonSize?: CardRibbonSizes;
|
|
47
|
+
ribbonColor?: CardRibbonColors;
|
|
39
48
|
hasRibbonRadius?: boolean;
|
|
40
49
|
hasLoadingBar?: boolean;
|
|
41
50
|
loadingBarColor?: LoadingBarColors;
|
|
42
51
|
loadingBarTime?: string;
|
|
43
52
|
isFlat?: boolean;
|
|
44
53
|
isContentScrollable?: boolean;
|
|
54
|
+
hasBorder?: RemovedProp<"renamed to hasRibbon">;
|
|
55
|
+
borderPosition?: RemovedProp<"renamed to ribbonPosition">;
|
|
56
|
+
borderSize?: RemovedProp<"renamed to ribbonSize">;
|
|
57
|
+
borderColor?: RemovedProp<"renamed to ribbonColor">;
|
|
45
58
|
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
46
59
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
47
60
|
export default _default;
|
|
@@ -30,6 +30,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
30
30
|
ICONS: Readonly<{
|
|
31
31
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
32
32
|
readonly CHANGE: VueConstructor<Vue>;
|
|
33
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
33
34
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
34
35
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
35
36
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -131,6 +132,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
131
132
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
132
133
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
133
134
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
135
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
134
136
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
135
137
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
136
138
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -374,17 +376,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
374
376
|
dividerUnderHeader: {
|
|
375
377
|
type: import('vue').PropType<boolean>;
|
|
376
378
|
};
|
|
377
|
-
|
|
379
|
+
hasRibbon: {
|
|
378
380
|
type: import('vue').PropType<boolean>;
|
|
379
381
|
};
|
|
380
|
-
|
|
381
|
-
type: import('vue').PropType<
|
|
382
|
+
hasRadius: {
|
|
383
|
+
type: import('vue').PropType<boolean>;
|
|
382
384
|
};
|
|
383
|
-
|
|
384
|
-
type: import('vue').PropType<import('../Card/Card.consts').
|
|
385
|
+
backgroundColor: {
|
|
386
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardBackgroundColor>;
|
|
385
387
|
};
|
|
386
|
-
|
|
387
|
-
type: import('vue').PropType<import('../Card/Card.consts').
|
|
388
|
+
ribbonPosition: {
|
|
389
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardRibbonPositions>;
|
|
390
|
+
};
|
|
391
|
+
ribbonSize: {
|
|
392
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardRibbonSizes>;
|
|
393
|
+
};
|
|
394
|
+
ribbonColor: {
|
|
395
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardRibbonColors>;
|
|
388
396
|
};
|
|
389
397
|
hasRibbonRadius: {
|
|
390
398
|
type: import('vue').PropType<boolean>;
|
|
@@ -404,6 +412,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
404
412
|
isContentScrollable: {
|
|
405
413
|
type: import('vue').PropType<boolean>;
|
|
406
414
|
};
|
|
415
|
+
hasBorder: {
|
|
416
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
417
|
+
};
|
|
418
|
+
borderPosition: {
|
|
419
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
420
|
+
};
|
|
421
|
+
borderSize: {
|
|
422
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
423
|
+
};
|
|
424
|
+
borderColor: {
|
|
425
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
426
|
+
};
|
|
407
427
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
408
428
|
P: {};
|
|
409
429
|
B: {};
|
|
@@ -427,17 +447,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
427
447
|
dividerUnderHeader: {
|
|
428
448
|
type: import('vue').PropType<boolean>;
|
|
429
449
|
};
|
|
430
|
-
|
|
450
|
+
hasRibbon: {
|
|
431
451
|
type: import('vue').PropType<boolean>;
|
|
432
452
|
};
|
|
433
|
-
|
|
434
|
-
type: import('vue').PropType<
|
|
453
|
+
hasRadius: {
|
|
454
|
+
type: import('vue').PropType<boolean>;
|
|
435
455
|
};
|
|
436
|
-
|
|
437
|
-
type: import('vue').PropType<import('../Card/Card.consts').
|
|
456
|
+
backgroundColor: {
|
|
457
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardBackgroundColor>;
|
|
438
458
|
};
|
|
439
|
-
|
|
440
|
-
type: import('vue').PropType<import('../Card/Card.consts').
|
|
459
|
+
ribbonPosition: {
|
|
460
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardRibbonPositions>;
|
|
461
|
+
};
|
|
462
|
+
ribbonSize: {
|
|
463
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardRibbonSizes>;
|
|
464
|
+
};
|
|
465
|
+
ribbonColor: {
|
|
466
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardRibbonColors>;
|
|
441
467
|
};
|
|
442
468
|
hasRibbonRadius: {
|
|
443
469
|
type: import('vue').PropType<boolean>;
|
|
@@ -457,6 +483,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
457
483
|
isContentScrollable: {
|
|
458
484
|
type: import('vue').PropType<boolean>;
|
|
459
485
|
};
|
|
486
|
+
hasBorder: {
|
|
487
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
488
|
+
};
|
|
489
|
+
borderPosition: {
|
|
490
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
491
|
+
};
|
|
492
|
+
borderSize: {
|
|
493
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
494
|
+
};
|
|
495
|
+
borderColor: {
|
|
496
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
497
|
+
};
|
|
460
498
|
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
461
499
|
__isFragment?: never;
|
|
462
500
|
__isTeleport?: never;
|
|
@@ -477,17 +515,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
477
515
|
dividerUnderHeader: {
|
|
478
516
|
type: import('vue').PropType<boolean>;
|
|
479
517
|
};
|
|
480
|
-
|
|
518
|
+
hasRibbon: {
|
|
481
519
|
type: import('vue').PropType<boolean>;
|
|
482
520
|
};
|
|
483
|
-
|
|
484
|
-
type: import('vue').PropType<
|
|
521
|
+
hasRadius: {
|
|
522
|
+
type: import('vue').PropType<boolean>;
|
|
485
523
|
};
|
|
486
|
-
|
|
487
|
-
type: import('vue').PropType<import('../Card/Card.consts').
|
|
524
|
+
backgroundColor: {
|
|
525
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardBackgroundColor>;
|
|
488
526
|
};
|
|
489
|
-
|
|
490
|
-
type: import('vue').PropType<import('../Card/Card.consts').
|
|
527
|
+
ribbonPosition: {
|
|
528
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardRibbonPositions>;
|
|
529
|
+
};
|
|
530
|
+
ribbonSize: {
|
|
531
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardRibbonSizes>;
|
|
532
|
+
};
|
|
533
|
+
ribbonColor: {
|
|
534
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardRibbonColors>;
|
|
491
535
|
};
|
|
492
536
|
hasRibbonRadius: {
|
|
493
537
|
type: import('vue').PropType<boolean>;
|
|
@@ -507,6 +551,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
507
551
|
isContentScrollable: {
|
|
508
552
|
type: import('vue').PropType<boolean>;
|
|
509
553
|
};
|
|
554
|
+
hasBorder: {
|
|
555
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
556
|
+
};
|
|
557
|
+
borderPosition: {
|
|
558
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
559
|
+
};
|
|
560
|
+
borderSize: {
|
|
561
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
562
|
+
};
|
|
563
|
+
borderColor: {
|
|
564
|
+
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
565
|
+
};
|
|
510
566
|
}>> & 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 () => {
|
|
511
567
|
$slots: Readonly<{
|
|
512
568
|
header?: () => any;
|
|
@@ -8,6 +8,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
8
8
|
label?: string | null;
|
|
9
9
|
isLabelUppercase?: boolean;
|
|
10
10
|
leftIcon?: IconItem | null;
|
|
11
|
+
rightIcon?: IconItem | null;
|
|
11
12
|
radius?: ChipRadius;
|
|
12
13
|
size?: ChipSize;
|
|
13
14
|
color?: ChipColor;
|
|
@@ -22,6 +23,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
22
23
|
label?: string | null;
|
|
23
24
|
isLabelUppercase?: boolean;
|
|
24
25
|
leftIcon?: IconItem | null;
|
|
26
|
+
rightIcon?: IconItem | null;
|
|
25
27
|
radius?: ChipRadius;
|
|
26
28
|
size?: ChipSize;
|
|
27
29
|
color?: ChipColor;
|
|
@@ -51,6 +51,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
51
51
|
ICONS: Readonly<{
|
|
52
52
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
53
53
|
readonly CHANGE: VueConstructor<Vue>;
|
|
54
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
54
55
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
55
56
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
56
57
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -152,6 +153,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
152
153
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
153
154
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
154
155
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
156
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
155
157
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
156
158
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
157
159
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -397,9 +399,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
397
399
|
};
|
|
398
400
|
}>> & Readonly<{}>, {
|
|
399
401
|
color: string;
|
|
402
|
+
isInteractive: boolean;
|
|
400
403
|
state: string;
|
|
401
404
|
isOpen: boolean;
|
|
402
|
-
isInteractive: boolean;
|
|
403
405
|
placeholder: string;
|
|
404
406
|
startDate: Date;
|
|
405
407
|
endDate: Date;
|
|
@@ -580,7 +580,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
580
580
|
readonly ICON_RIGHT_ONLY: "iconRightOnly";
|
|
581
581
|
};
|
|
582
582
|
}, {}, {
|
|
583
|
-
borderColor(): "
|
|
583
|
+
borderColor(): "danger" | "neutralWeak" | "primary" | "warning" | "dangerWeak" | "warningWeak";
|
|
584
584
|
resolvedPlaceholder(): any;
|
|
585
585
|
eyebrowText(): string;
|
|
586
586
|
text(): any;
|
|
@@ -611,11 +611,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
611
611
|
icon: any;
|
|
612
612
|
label: string;
|
|
613
613
|
color: string;
|
|
614
|
+
isInteractive: boolean;
|
|
614
615
|
state: string;
|
|
615
616
|
isIconHiddenOnMobile: boolean;
|
|
616
617
|
date: Date;
|
|
617
618
|
isLabelUppercase: boolean;
|
|
618
|
-
isInteractive: boolean;
|
|
619
619
|
placeholder: string;
|
|
620
620
|
additionalText: string;
|
|
621
621
|
triggerType: string;
|
|
@@ -755,14 +755,14 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
755
755
|
};
|
|
756
756
|
}>> & Readonly<{}>, {
|
|
757
757
|
color: TileColor;
|
|
758
|
+
eyebrowText: string;
|
|
759
|
+
isEyebrowTextUppercase: boolean;
|
|
758
760
|
state: TileState;
|
|
759
761
|
iconLeft: Record<string, any>;
|
|
760
762
|
iconRight: Record<string, any>;
|
|
761
763
|
borderColor: import('../../Tile').TileBorderColors;
|
|
762
764
|
interactive: boolean;
|
|
763
|
-
eyebrowText: string;
|
|
764
765
|
additionalText: string;
|
|
765
|
-
isEyebrowTextUppercase: boolean;
|
|
766
766
|
eyebrowEllipsis: boolean;
|
|
767
767
|
textEllipsis: boolean;
|
|
768
768
|
additionalTextMaxWidth: import('../../Tile').TileAdditionalTextMaxWidth;
|
|
@@ -818,6 +818,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
818
818
|
ICONS: Readonly<{
|
|
819
819
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
820
820
|
readonly CHANGE: VueConstructor<Vue>;
|
|
821
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
821
822
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
822
823
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
823
824
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -919,6 +920,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
919
920
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
920
921
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
921
922
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
923
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
922
924
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
923
925
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
924
926
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1164,9 +1166,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1164
1166
|
};
|
|
1165
1167
|
}>> & Readonly<{}>, {
|
|
1166
1168
|
color: string;
|
|
1169
|
+
isInteractive: boolean;
|
|
1167
1170
|
state: string;
|
|
1168
1171
|
isOpen: boolean;
|
|
1169
|
-
isInteractive: boolean;
|
|
1170
1172
|
placeholder: string;
|
|
1171
1173
|
startDate: Date;
|
|
1172
1174
|
endDate: Date;
|
|
@@ -597,8 +597,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
597
597
|
}) => any) | undefined;
|
|
598
598
|
}>, {
|
|
599
599
|
color: string;
|
|
600
|
-
state: string;
|
|
601
600
|
isInteractive: boolean;
|
|
601
|
+
state: string;
|
|
602
602
|
placeholder: string;
|
|
603
603
|
startDate: Date;
|
|
604
604
|
endDate: Date;
|
|
@@ -662,6 +662,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
662
662
|
ICONS: Readonly<{
|
|
663
663
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
664
664
|
readonly CHANGE: VueConstructor<Vue>;
|
|
665
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
665
666
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
666
667
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
667
668
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -763,6 +764,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
763
764
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
764
765
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
765
766
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
767
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
766
768
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
767
769
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
768
770
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1008,9 +1010,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1008
1010
|
};
|
|
1009
1011
|
}>> & Readonly<{}>, {
|
|
1010
1012
|
color: string;
|
|
1013
|
+
isInteractive: boolean;
|
|
1011
1014
|
state: string;
|
|
1012
1015
|
isOpen: boolean;
|
|
1013
|
-
isInteractive: boolean;
|
|
1014
1016
|
placeholder: string;
|
|
1015
1017
|
startDate: Date;
|
|
1016
1018
|
endDate: Date;
|
|
@@ -38,7 +38,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
38
38
|
};
|
|
39
39
|
}>> & Readonly<{}>, {
|
|
40
40
|
size: string;
|
|
41
|
-
isVertical: boolean;
|
|
42
41
|
prominence: string;
|
|
42
|
+
isVertical: boolean;
|
|
43
43
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
44
44
|
export default _default;
|
|
@@ -64,8 +64,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
64
64
|
};
|
|
65
65
|
}>> & Readonly<{}>, {
|
|
66
66
|
size: string;
|
|
67
|
-
isVertical: boolean;
|
|
68
67
|
prominence: string;
|
|
68
|
+
isVertical: boolean;
|
|
69
69
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
70
70
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
71
71
|
export default _default;
|
|
@@ -70,6 +70,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
70
70
|
ICONS: {
|
|
71
71
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
72
72
|
readonly CHANGE: VueConstructor<Vue>;
|
|
73
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
73
74
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
74
75
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
75
76
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -171,6 +172,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
171
172
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
172
173
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
173
174
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
175
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
174
176
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
175
177
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
176
178
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -431,8 +433,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
431
433
|
onEyebrowClicked?: ((...args: any[]) => any) | undefined;
|
|
432
434
|
}>, {
|
|
433
435
|
title: string;
|
|
434
|
-
leftIcon: Record<string, any> | null;
|
|
435
436
|
eyebrowText: string;
|
|
437
|
+
leftIcon: Record<string, any> | null;
|
|
436
438
|
eyebrowEllipsis: boolean;
|
|
437
439
|
isInteractiveEyebrow: boolean;
|
|
438
440
|
titleEllipsis: boolean;
|
|
@@ -572,8 +574,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
572
574
|
};
|
|
573
575
|
}>> & Readonly<{}>, {
|
|
574
576
|
size: string;
|
|
575
|
-
isVertical: boolean;
|
|
576
577
|
prominence: string;
|
|
578
|
+
isVertical: boolean;
|
|
577
579
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
578
580
|
Icon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
579
581
|
icon: {
|
|
@@ -706,6 +708,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
706
708
|
ICONS: Readonly<{
|
|
707
709
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
708
710
|
readonly CHANGE: VueConstructor<Vue>;
|
|
711
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
709
712
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
710
713
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
711
714
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -807,6 +810,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
807
810
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
808
811
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
809
812
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
813
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
810
814
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
811
815
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
812
816
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1089,9 +1093,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1089
1093
|
type: string;
|
|
1090
1094
|
touchableDeprecated: boolean;
|
|
1091
1095
|
color: string;
|
|
1092
|
-
elevation: string;
|
|
1093
1096
|
radius: string;
|
|
1094
1097
|
state: string;
|
|
1098
|
+
elevation: string;
|
|
1095
1099
|
colorScheme: string;
|
|
1096
1100
|
}, {}, {
|
|
1097
1101
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1268,6 +1272,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1268
1272
|
type: PropType<boolean>;
|
|
1269
1273
|
};
|
|
1270
1274
|
leftIcon: import('../../Icons/Icon').IconItem | null;
|
|
1275
|
+
rightIcon: import('../../Icons/Icon').IconItem | null;
|
|
1271
1276
|
radius: {
|
|
1272
1277
|
type: PropType<import('../../Chip').ChipRadius>;
|
|
1273
1278
|
};
|
|
@@ -1310,6 +1315,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1310
1315
|
type: PropType<boolean>;
|
|
1311
1316
|
};
|
|
1312
1317
|
leftIcon: import('../../Icons/Icon').IconItem | null;
|
|
1318
|
+
rightIcon: import('../../Icons/Icon').IconItem | null;
|
|
1313
1319
|
radius: {
|
|
1314
1320
|
type: PropType<import('../../Chip').ChipRadius>;
|
|
1315
1321
|
};
|
|
@@ -1346,6 +1352,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1346
1352
|
type: PropType<boolean>;
|
|
1347
1353
|
};
|
|
1348
1354
|
leftIcon: import('../../Icons/Icon').IconItem | null;
|
|
1355
|
+
rightIcon: import('../../Icons/Icon').IconItem | null;
|
|
1349
1356
|
radius: {
|
|
1350
1357
|
type: PropType<import('../../Chip').ChipRadius>;
|
|
1351
1358
|
};
|
|
@@ -23,6 +23,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
23
23
|
ICONS: Readonly<{
|
|
24
24
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
25
25
|
readonly CHANGE: VueConstructor<Vue>;
|
|
26
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
26
27
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
27
28
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
28
29
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -124,6 +125,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
124
125
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
125
126
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
126
127
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
128
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
127
129
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
128
130
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
129
131
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|