@bethinkpl/design-system 39.0.1 → 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/README.md +1 -1
- package/dist/design-system.css +1 -1
- package/dist/design-system.js +19314 -19127
- 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 +4 -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 +78 -21
- package/dist/lib/js/components/Chip/Chip.vue.d.ts +2 -0
- package/dist/lib/js/components/DatePickers/DateBox/DateBox.vue.d.ts +4 -1
- package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +8 -5
- package/dist/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue.d.ts +5 -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 +12 -3
- package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +3 -0
- package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +13 -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 +3 -0
- package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +11 -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 +9 -3
- package/dist/lib/js/components/IconText/IconText.vue.d.ts +1 -1
- package/dist/lib/js/components/Icons/Icon/Icon.consts.d.ts +3 -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 +3 -0
- package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +8 -2
- package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +8 -2
- package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +8 -2
- package/dist/lib/js/components/ProgressBar/ProgressBar.vue.d.ts +3 -0
- package/dist/lib/js/components/ProgressDonutChart/ProgressDonutChart.vue.d.ts +3 -0
- package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +45 -23
- package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +7 -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 +3 -0
- package/dist/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue.d.ts +3 -0
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +85 -22
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +85 -22
- package/dist/lib/js/components/Switch/Switch.vue.d.ts +3 -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 +5 -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 +5 -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 +2 -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 +4 -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;
|
|
@@ -322,6 +324,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
322
324
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
323
325
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
324
326
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
327
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
325
328
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
326
329
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
327
330
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -440,9 +443,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
440
443
|
type: string;
|
|
441
444
|
touchableDeprecated: boolean;
|
|
442
445
|
color: string;
|
|
443
|
-
elevation: string;
|
|
444
446
|
radius: string;
|
|
445
447
|
state: string;
|
|
448
|
+
elevation: string;
|
|
446
449
|
colorScheme: string;
|
|
447
450
|
}, {}, {
|
|
448
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;
|
|
@@ -294,6 +296,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
294
296
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
295
297
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
296
298
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
299
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
297
300
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
298
301
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
299
302
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -373,17 +376,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
373
376
|
dividerUnderHeader: {
|
|
374
377
|
type: import('vue').PropType<boolean>;
|
|
375
378
|
};
|
|
376
|
-
|
|
379
|
+
hasRibbon: {
|
|
377
380
|
type: import('vue').PropType<boolean>;
|
|
378
381
|
};
|
|
379
|
-
|
|
380
|
-
type: import('vue').PropType<
|
|
382
|
+
hasRadius: {
|
|
383
|
+
type: import('vue').PropType<boolean>;
|
|
381
384
|
};
|
|
382
|
-
|
|
383
|
-
type: import('vue').PropType<import('../Card/Card.consts').
|
|
385
|
+
backgroundColor: {
|
|
386
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardBackgroundColor>;
|
|
384
387
|
};
|
|
385
|
-
|
|
386
|
-
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>;
|
|
387
396
|
};
|
|
388
397
|
hasRibbonRadius: {
|
|
389
398
|
type: import('vue').PropType<boolean>;
|
|
@@ -403,6 +412,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
403
412
|
isContentScrollable: {
|
|
404
413
|
type: import('vue').PropType<boolean>;
|
|
405
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
|
+
};
|
|
406
427
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
407
428
|
P: {};
|
|
408
429
|
B: {};
|
|
@@ -426,17 +447,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
426
447
|
dividerUnderHeader: {
|
|
427
448
|
type: import('vue').PropType<boolean>;
|
|
428
449
|
};
|
|
429
|
-
|
|
450
|
+
hasRibbon: {
|
|
430
451
|
type: import('vue').PropType<boolean>;
|
|
431
452
|
};
|
|
432
|
-
|
|
433
|
-
type: import('vue').PropType<
|
|
453
|
+
hasRadius: {
|
|
454
|
+
type: import('vue').PropType<boolean>;
|
|
434
455
|
};
|
|
435
|
-
|
|
436
|
-
type: import('vue').PropType<import('../Card/Card.consts').
|
|
456
|
+
backgroundColor: {
|
|
457
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardBackgroundColor>;
|
|
437
458
|
};
|
|
438
|
-
|
|
439
|
-
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>;
|
|
440
467
|
};
|
|
441
468
|
hasRibbonRadius: {
|
|
442
469
|
type: import('vue').PropType<boolean>;
|
|
@@ -456,6 +483,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
456
483
|
isContentScrollable: {
|
|
457
484
|
type: import('vue').PropType<boolean>;
|
|
458
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
|
+
};
|
|
459
498
|
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
460
499
|
__isFragment?: never;
|
|
461
500
|
__isTeleport?: never;
|
|
@@ -476,17 +515,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
476
515
|
dividerUnderHeader: {
|
|
477
516
|
type: import('vue').PropType<boolean>;
|
|
478
517
|
};
|
|
479
|
-
|
|
518
|
+
hasRibbon: {
|
|
480
519
|
type: import('vue').PropType<boolean>;
|
|
481
520
|
};
|
|
482
|
-
|
|
483
|
-
type: import('vue').PropType<
|
|
521
|
+
hasRadius: {
|
|
522
|
+
type: import('vue').PropType<boolean>;
|
|
484
523
|
};
|
|
485
|
-
|
|
486
|
-
type: import('vue').PropType<import('../Card/Card.consts').
|
|
524
|
+
backgroundColor: {
|
|
525
|
+
type: import('vue').PropType<import('../Card/Card.consts').CardBackgroundColor>;
|
|
487
526
|
};
|
|
488
|
-
|
|
489
|
-
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>;
|
|
490
535
|
};
|
|
491
536
|
hasRibbonRadius: {
|
|
492
537
|
type: import('vue').PropType<boolean>;
|
|
@@ -506,6 +551,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
506
551
|
isContentScrollable: {
|
|
507
552
|
type: import('vue').PropType<boolean>;
|
|
508
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
|
+
};
|
|
509
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 () => {
|
|
510
567
|
$slots: Readonly<{
|
|
511
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;
|
|
@@ -315,6 +317,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
315
317
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
316
318
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
317
319
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
320
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
318
321
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
319
322
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
320
323
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -396,9 +399,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
396
399
|
};
|
|
397
400
|
}>> & Readonly<{}>, {
|
|
398
401
|
color: string;
|
|
402
|
+
isInteractive: boolean;
|
|
399
403
|
state: string;
|
|
400
404
|
isOpen: boolean;
|
|
401
|
-
isInteractive: boolean;
|
|
402
405
|
placeholder: string;
|
|
403
406
|
startDate: Date;
|
|
404
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;
|
|
@@ -1082,6 +1084,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1082
1084
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1083
1085
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1084
1086
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1087
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1085
1088
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1086
1089
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1087
1090
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1163,9 +1166,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1163
1166
|
};
|
|
1164
1167
|
}>> & Readonly<{}>, {
|
|
1165
1168
|
color: string;
|
|
1169
|
+
isInteractive: boolean;
|
|
1166
1170
|
state: string;
|
|
1167
1171
|
isOpen: boolean;
|
|
1168
|
-
isInteractive: boolean;
|
|
1169
1172
|
placeholder: string;
|
|
1170
1173
|
startDate: Date;
|
|
1171
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;
|
|
@@ -926,6 +928,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
926
928
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
927
929
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
928
930
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
931
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
929
932
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
930
933
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
931
934
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1007,9 +1010,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
1007
1010
|
};
|
|
1008
1011
|
}>> & Readonly<{}>, {
|
|
1009
1012
|
color: string;
|
|
1013
|
+
isInteractive: boolean;
|
|
1010
1014
|
state: string;
|
|
1011
1015
|
isOpen: boolean;
|
|
1012
|
-
isInteractive: boolean;
|
|
1013
1016
|
placeholder: string;
|
|
1014
1017
|
startDate: Date;
|
|
1015
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;
|