@bethinkpl/design-system 40.0.1 → 41.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 +7456 -7361
- package/dist/design-system.js.map +1 -1
- package/dist/lib/js/components/Cards/Card/Card.consts.d.ts +1 -0
- package/dist/lib/js/components/Cards/Card/Card.vue.d.ts +0 -9
- package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +0 -36
- package/dist/lib/js/components/ContainerRibbon/ContainerRibbon.consts.d.ts +1 -0
- package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +1 -1
- package/dist/lib/js/components/Drawer/DrawerTile/DrawerTile.vue.d.ts +2 -2
- package/dist/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.consts.d.ts +17 -0
- package/dist/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.vue.d.ts +27 -0
- package/dist/lib/js/components/LabelValue/LabelValueItemGroup/LabelValueItemGroup.vue.d.ts +13 -0
- package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +6 -2
- package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +3 -12
- package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +1 -1
- package/dist/lib/js/components/SelectList/SelectListItem/SelectListItem.vue.d.ts +6 -2
- package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts +6 -2
- package/dist/lib/js/components/Stepper/Stepper.vue.d.ts +23 -0
- package/dist/lib/js/components/Stepper/index.d.ts +3 -0
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +0 -36
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +0 -36
- package/dist/lib/js/components/TextGroup/TextGroup.vue.d.ts +0 -3
- package/dist/lib/js/components/Tile/Tile.vue.d.ts +1 -1
- package/dist/lib/js/components/Toast/Toast.vue.d.ts +0 -36
- package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +1 -1
- package/dist/lib/js/components/TopNav/TopNav/TopNav.vue.d.ts +17 -0
- package/dist/lib/js/components/TopNav/TopNavBranding/TopNavBranding.vue.d.ts +33 -0
- package/dist/lib/js/components/TopNav/topNavStoryLogo.d.ts +1 -0
- package/dist/lib/js/components/Well/Well.consts.d.ts +1 -0
- package/dist/lib/js/index.d.ts +6 -5
- package/lib/js/components/Cards/Card/Card.vue +0 -11
- package/lib/js/components/ContainerRibbon/ContainerRibbon.consts.ts +1 -0
- package/lib/js/components/ContainerRibbon/ContainerRibbon.spec.ts +9 -6
- package/lib/js/components/ContainerRibbon/ContainerRibbon.vue +11 -0
- package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.consts.ts +20 -0
- package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.spec.ts +125 -0
- package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.stories.ts +69 -0
- package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.vue +101 -0
- package/lib/js/components/LabelValue/LabelValueItemGroup/LabelValueItemGroup.spec.ts +24 -0
- package/lib/js/components/LabelValue/LabelValueItemGroup/LabelValueItemGroup.stories.ts +31 -0
- package/lib/js/components/LabelValue/LabelValueItemGroup/LabelValueItemGroup.vue +19 -0
- package/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.stories.ts +93 -8
- package/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue +3 -0
- package/lib/js/components/RichList/RichListItem/RichListItem.stories.ts +83 -0
- package/lib/js/components/RichList/RichListItem/RichListItem.vue +11 -4
- package/lib/js/components/SelectList/SelectListItem/SelectListItem.stories.ts +7 -0
- package/lib/js/components/SelectList/SelectListItem/SelectListItem.vue +9 -3
- package/lib/js/components/Stepper/Stepper.spec.ts +99 -0
- package/lib/js/components/Stepper/Stepper.stories.ts +62 -0
- package/lib/js/components/Stepper/Stepper.vue +97 -0
- package/lib/js/components/Stepper/index.ts +3 -0
- package/lib/js/components/TextGroup/TextGroup.vue +0 -5
- package/lib/js/components/TopNav/TopNav/TopNav.spec.ts +56 -0
- package/lib/js/components/TopNav/TopNav/TopNav.stories.ts +99 -0
- package/lib/js/components/TopNav/TopNav/TopNav.vue +79 -0
- package/lib/js/components/TopNav/TopNavBranding/TopNavBranding.spec.ts +103 -0
- package/lib/js/components/TopNav/TopNavBranding/TopNavBranding.stories.ts +107 -0
- package/lib/js/components/TopNav/TopNavBranding/TopNavBranding.vue +102 -0
- package/lib/js/components/TopNav/topNavStoryLogo.ts +19 -0
- package/lib/js/index.ts +6 -5
- package/lib/js/styles/Radiuses/Radiuses.stories.ts +44 -0
- package/lib/js/styles/Shadows/Shadows.stories.scss +33 -0
- package/lib/js/styles/Shadows/Shadows.stories.ts +37 -0
- package/package.json +1 -1
- package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.consts.d.ts +0 -5
- package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +0 -406
- package/dist/lib/js/components/Drawer/DrawerListItemGroup/DrawerListItemGroup.vue.d.ts +0 -2
- package/lib/js/components/Drawer/DrawerListItem/DrawerListItem.consts.ts +0 -7
- package/lib/js/components/Drawer/DrawerListItem/DrawerListItem.stories.ts +0 -44
- package/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue +0 -83
- package/lib/js/components/Drawer/DrawerListItemGroup/DrawerListItemGroup.stories.ts +0 -31
- package/lib/js/components/Drawer/DrawerListItemGroup/DrawerListItemGroup.vue +0 -21
|
@@ -24,6 +24,7 @@ export declare const CARD_RIBBON_COLORS: {
|
|
|
24
24
|
};
|
|
25
25
|
export type CardRibbonColors = Value<typeof CARD_RIBBON_COLORS>;
|
|
26
26
|
export declare const CARD_RIBBON_SIZES: {
|
|
27
|
+
readonly X_SMALL: "x-small";
|
|
27
28
|
readonly SMALL: "small";
|
|
28
29
|
readonly MEDIUM: "medium";
|
|
29
30
|
readonly LARGE: "large";
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { RemovedProp } from '../../../utils/type.utils';
|
|
2
1
|
import { LoadingBarColors } from '../../LoadingBar';
|
|
3
2
|
import { CardBackgroundColor, CardRibbonColors, CardRibbonPositions, CardRibbonSizes, CardPaddingSize } from './Card.consts';
|
|
4
3
|
|
|
@@ -29,10 +28,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
29
28
|
loadingBarTime?: string;
|
|
30
29
|
isFlat?: boolean;
|
|
31
30
|
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">;
|
|
36
31
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
37
32
|
contentHasPadding?: boolean;
|
|
38
33
|
headerHasPadding?: boolean;
|
|
@@ -51,10 +46,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
51
46
|
loadingBarTime?: string;
|
|
52
47
|
isFlat?: boolean;
|
|
53
48
|
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">;
|
|
58
49
|
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
59
50
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
60
51
|
export default _default;
|
|
@@ -413,18 +413,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
413
413
|
isContentScrollable: {
|
|
414
414
|
type: import('vue').PropType<boolean>;
|
|
415
415
|
};
|
|
416
|
-
hasBorder: {
|
|
417
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
418
|
-
};
|
|
419
|
-
borderPosition: {
|
|
420
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
421
|
-
};
|
|
422
|
-
borderSize: {
|
|
423
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
424
|
-
};
|
|
425
|
-
borderColor: {
|
|
426
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
427
|
-
};
|
|
428
416
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
429
417
|
P: {};
|
|
430
418
|
B: {};
|
|
@@ -484,18 +472,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
484
472
|
isContentScrollable: {
|
|
485
473
|
type: import('vue').PropType<boolean>;
|
|
486
474
|
};
|
|
487
|
-
hasBorder: {
|
|
488
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
489
|
-
};
|
|
490
|
-
borderPosition: {
|
|
491
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
492
|
-
};
|
|
493
|
-
borderSize: {
|
|
494
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
495
|
-
};
|
|
496
|
-
borderColor: {
|
|
497
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
498
|
-
};
|
|
499
475
|
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
500
476
|
__isFragment?: never;
|
|
501
477
|
__isTeleport?: never;
|
|
@@ -552,18 +528,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
552
528
|
isContentScrollable: {
|
|
553
529
|
type: import('vue').PropType<boolean>;
|
|
554
530
|
};
|
|
555
|
-
hasBorder: {
|
|
556
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
557
|
-
};
|
|
558
|
-
borderPosition: {
|
|
559
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
560
|
-
};
|
|
561
|
-
borderSize: {
|
|
562
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
563
|
-
};
|
|
564
|
-
borderColor: {
|
|
565
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
566
|
-
};
|
|
567
531
|
}>> & 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 () => {
|
|
568
532
|
$slots: Readonly<{
|
|
569
533
|
header?: () => any;
|
|
@@ -760,11 +760,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
760
760
|
state: TileState;
|
|
761
761
|
iconLeft: Record<string, any>;
|
|
762
762
|
iconRight: Record<string, any>;
|
|
763
|
-
borderColor: import('../../Tile').TileBorderColors;
|
|
764
763
|
interactive: boolean;
|
|
765
764
|
additionalText: string;
|
|
766
765
|
eyebrowEllipsis: boolean;
|
|
767
766
|
textEllipsis: boolean;
|
|
767
|
+
borderColor: import('../../Tile').TileBorderColors;
|
|
768
768
|
additionalTextMaxWidth: import('../../Tile').TileAdditionalTextMaxWidth;
|
|
769
769
|
compactLayout: import('../../Tile').TileCompactLayout;
|
|
770
770
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -135,11 +135,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
135
135
|
state: import('../../Tile').TileState;
|
|
136
136
|
iconLeft: Record<string, any>;
|
|
137
137
|
iconRight: Record<string, any>;
|
|
138
|
-
borderColor: import('../../Tile').TileBorderColors;
|
|
139
138
|
interactive: boolean;
|
|
140
139
|
additionalText: string;
|
|
141
140
|
eyebrowEllipsis: boolean;
|
|
142
141
|
textEllipsis: boolean;
|
|
142
|
+
borderColor: import('../../Tile').TileBorderColors;
|
|
143
143
|
additionalTextMaxWidth: import('../../Tile').TileAdditionalTextMaxWidth;
|
|
144
144
|
compactLayout: import('../../Tile').TileCompactLayout;
|
|
145
145
|
}, {}, {
|
|
@@ -276,11 +276,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
276
276
|
state: import('../../Tile').TileState;
|
|
277
277
|
iconLeft: Record<string, any>;
|
|
278
278
|
iconRight: Record<string, any>;
|
|
279
|
-
borderColor: import('../../Tile').TileBorderColors;
|
|
280
279
|
interactive: boolean;
|
|
281
280
|
additionalText: string;
|
|
282
281
|
eyebrowEllipsis: boolean;
|
|
283
282
|
textEllipsis: boolean;
|
|
283
|
+
borderColor: import('../../Tile').TileBorderColors;
|
|
284
284
|
additionalTextMaxWidth: import('../../Tile').TileAdditionalTextMaxWidth;
|
|
285
285
|
compactLayout: import('../../Tile').TileCompactLayout;
|
|
286
286
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Value } from '../../../utils/type.utils';
|
|
2
|
+
|
|
3
|
+
export declare const LABEL_VALUE_ITEM_STATES: {
|
|
4
|
+
readonly DEFAULT: "default";
|
|
5
|
+
readonly LOADING: "loading";
|
|
6
|
+
};
|
|
7
|
+
export declare const LABEL_VALUE_ITEM_SIZES: {
|
|
8
|
+
readonly MEDIUM: "medium";
|
|
9
|
+
readonly LARGE: "large";
|
|
10
|
+
};
|
|
11
|
+
export declare const LABEL_VALUE_ITEM_VALUE_COLORS: {
|
|
12
|
+
readonly NEUTRAL: "neutral";
|
|
13
|
+
readonly PRIMARY: "primary";
|
|
14
|
+
};
|
|
15
|
+
export type LabelValueItemState = Value<typeof LABEL_VALUE_ITEM_STATES>;
|
|
16
|
+
export type LabelValueItemSize = Value<typeof LABEL_VALUE_ITEM_SIZES>;
|
|
17
|
+
export type LabelValueItemValueColor = Value<typeof LABEL_VALUE_ITEM_VALUE_COLORS>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { LabelValueItemSize, LabelValueItemState, LabelValueItemValueColor } from './LabelValueItem.consts';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
state?: LabelValueItemState;
|
|
5
|
+
label: string;
|
|
6
|
+
valueText: string;
|
|
7
|
+
size?: LabelValueItemSize;
|
|
8
|
+
isLabelStrong?: boolean;
|
|
9
|
+
valueColor?: LabelValueItemValueColor;
|
|
10
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
11
|
+
state?: LabelValueItemState;
|
|
12
|
+
label: string;
|
|
13
|
+
valueText: string;
|
|
14
|
+
size?: LabelValueItemSize;
|
|
15
|
+
isLabelStrong?: boolean;
|
|
16
|
+
valueColor?: LabelValueItemValueColor;
|
|
17
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
20
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
21
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
22
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
23
|
+
} : {
|
|
24
|
+
type: import('vue').PropType<T[K]>;
|
|
25
|
+
required: true;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare function __VLS_template(): Readonly<{
|
|
2
|
+
default?: () => any;
|
|
3
|
+
}> & {
|
|
4
|
+
default?: () => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
7
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -1176,8 +1176,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1176
1176
|
type: import('vue').PropType<import('../..').SelectListItemState>;
|
|
1177
1177
|
};
|
|
1178
1178
|
}>> & 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 () => {
|
|
1179
|
-
$slots: {
|
|
1180
|
-
accessory
|
|
1179
|
+
$slots: Readonly<{
|
|
1180
|
+
accessory?: () => any;
|
|
1181
|
+
metadata?: () => any;
|
|
1182
|
+
}> & {
|
|
1183
|
+
accessory?: () => any;
|
|
1184
|
+
metadata?: () => any;
|
|
1181
1185
|
};
|
|
1182
1186
|
});
|
|
1183
1187
|
SelectList: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -268,15 +268,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
268
268
|
isInteractive: boolean;
|
|
269
269
|
state: RichListItemState;
|
|
270
270
|
isSupportingTextTooltipEnabled: boolean;
|
|
271
|
-
isSelected: boolean;
|
|
272
271
|
elevation: "small";
|
|
273
272
|
backgroundColor: RichListItemBackgroundColor;
|
|
274
273
|
iconColor: string;
|
|
275
274
|
layout: RichListItemLayout;
|
|
276
|
-
borderColor: RichListItemBorderColor;
|
|
277
275
|
eyebrowEllipsis: boolean;
|
|
278
276
|
textEllipsis: boolean;
|
|
277
|
+
borderColor: RichListItemBorderColor;
|
|
279
278
|
eyebrow: string;
|
|
279
|
+
isSelected: boolean;
|
|
280
280
|
isDimmed: boolean;
|
|
281
281
|
isDraggable: boolean;
|
|
282
282
|
iconColorHex: string;
|
|
@@ -346,9 +346,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
346
346
|
supportingTextTooltipContent: {
|
|
347
347
|
type: PropType<string>;
|
|
348
348
|
};
|
|
349
|
-
isSelected: {
|
|
350
|
-
type: PropType<import('../../../utils/type.utils').RemovedProp<"use mainTextColor=primary instead">>;
|
|
351
|
-
};
|
|
352
349
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
353
350
|
P: {};
|
|
354
351
|
B: {};
|
|
@@ -414,9 +411,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
414
411
|
supportingTextTooltipContent: {
|
|
415
412
|
type: PropType<string>;
|
|
416
413
|
};
|
|
417
|
-
isSelected: {
|
|
418
|
-
type: PropType<import('../../../utils/type.utils').RemovedProp<"use mainTextColor=primary instead">>;
|
|
419
|
-
};
|
|
420
414
|
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
421
415
|
__isFragment?: never;
|
|
422
416
|
__isTeleport?: never;
|
|
@@ -479,9 +473,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
479
473
|
supportingTextTooltipContent: {
|
|
480
474
|
type: PropType<string>;
|
|
481
475
|
};
|
|
482
|
-
isSelected: {
|
|
483
|
-
type: PropType<import('../../../utils/type.utils').RemovedProp<"use mainTextColor=primary instead">>;
|
|
484
|
-
};
|
|
485
476
|
}>> & 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 () => {
|
|
486
477
|
$slots: {
|
|
487
478
|
mainText?(_: {}): any;
|
|
@@ -995,12 +986,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
995
986
|
type: RichListItemType;
|
|
996
987
|
isInteractive: boolean;
|
|
997
988
|
state: RichListItemState;
|
|
998
|
-
isSelected: boolean;
|
|
999
989
|
elevation: "small";
|
|
1000
990
|
backgroundColor: RichListItemBackgroundColor;
|
|
1001
991
|
iconColor: string;
|
|
1002
992
|
layout: RichListItemLayout;
|
|
1003
993
|
borderColor: RichListItemBorderColor;
|
|
994
|
+
isSelected: boolean;
|
|
1004
995
|
isDimmed: boolean;
|
|
1005
996
|
isDraggable: boolean;
|
|
1006
997
|
iconColorHex: string;
|
|
@@ -510,12 +510,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
510
510
|
type: RichListItemType;
|
|
511
511
|
isInteractive: boolean;
|
|
512
512
|
state: RichListItemState;
|
|
513
|
-
isSelected: boolean;
|
|
514
513
|
elevation: "small";
|
|
515
514
|
backgroundColor: RichListItemBackgroundColor;
|
|
516
515
|
iconColor: string;
|
|
517
516
|
layout: RichListItemLayout;
|
|
518
517
|
borderColor: RichListItemBorderColor;
|
|
518
|
+
isSelected: boolean;
|
|
519
519
|
isDimmed: boolean;
|
|
520
520
|
isDraggable: boolean;
|
|
521
521
|
iconColorHex: string;
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { SelectListItemSelectionMode, SelectListItemSize, SelectListItemState } from './SelectListItem.consts';
|
|
2
2
|
import { IconItem } from '../../Icons/Icon';
|
|
3
3
|
|
|
4
|
-
declare function __VLS_template(): {
|
|
5
|
-
accessory
|
|
4
|
+
declare function __VLS_template(): Readonly<{
|
|
5
|
+
accessory?: () => any;
|
|
6
|
+
metadata?: () => any;
|
|
7
|
+
}> & {
|
|
8
|
+
accessory?: () => any;
|
|
9
|
+
metadata?: () => any;
|
|
6
10
|
};
|
|
7
11
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
12
|
iconLeft?: IconItem | null;
|
package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts
CHANGED
|
@@ -173,8 +173,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
173
173
|
type: PropType<SelectListItemState>;
|
|
174
174
|
};
|
|
175
175
|
}>> & 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 () => {
|
|
176
|
-
$slots: {
|
|
177
|
-
accessory
|
|
176
|
+
$slots: Readonly<{
|
|
177
|
+
accessory?: () => any;
|
|
178
|
+
metadata?: () => any;
|
|
179
|
+
}> & {
|
|
180
|
+
accessory?: () => any;
|
|
181
|
+
metadata?: () => any;
|
|
178
182
|
};
|
|
179
183
|
});
|
|
180
184
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
title?: string;
|
|
3
|
+
counterLabel?: string;
|
|
4
|
+
hasCounterValue?: boolean;
|
|
5
|
+
totalSteps: number;
|
|
6
|
+
currentStep: number;
|
|
7
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
|
+
title?: string;
|
|
9
|
+
counterLabel?: string;
|
|
10
|
+
hasCounterValue?: boolean;
|
|
11
|
+
totalSteps: number;
|
|
12
|
+
currentStep: number;
|
|
13
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
18
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
19
|
+
} : {
|
|
20
|
+
type: import('vue').PropType<T[K]>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -540,18 +540,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
540
540
|
isContentScrollable: {
|
|
541
541
|
type: import('vue').PropType<boolean>;
|
|
542
542
|
};
|
|
543
|
-
hasBorder: {
|
|
544
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
545
|
-
};
|
|
546
|
-
borderPosition: {
|
|
547
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
548
|
-
};
|
|
549
|
-
borderSize: {
|
|
550
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
551
|
-
};
|
|
552
|
-
borderColor: {
|
|
553
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
554
|
-
};
|
|
555
543
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
556
544
|
P: {};
|
|
557
545
|
B: {};
|
|
@@ -611,18 +599,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
611
599
|
isContentScrollable: {
|
|
612
600
|
type: import('vue').PropType<boolean>;
|
|
613
601
|
};
|
|
614
|
-
hasBorder: {
|
|
615
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
616
|
-
};
|
|
617
|
-
borderPosition: {
|
|
618
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
619
|
-
};
|
|
620
|
-
borderSize: {
|
|
621
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
622
|
-
};
|
|
623
|
-
borderColor: {
|
|
624
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
625
|
-
};
|
|
626
602
|
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
627
603
|
__isFragment?: never;
|
|
628
604
|
__isTeleport?: never;
|
|
@@ -679,18 +655,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
679
655
|
isContentScrollable: {
|
|
680
656
|
type: import('vue').PropType<boolean>;
|
|
681
657
|
};
|
|
682
|
-
hasBorder: {
|
|
683
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
684
|
-
};
|
|
685
|
-
borderPosition: {
|
|
686
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
687
|
-
};
|
|
688
|
-
borderSize: {
|
|
689
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
690
|
-
};
|
|
691
|
-
borderColor: {
|
|
692
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
693
|
-
};
|
|
694
658
|
}>> & 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 () => {
|
|
695
659
|
$slots: Readonly<{
|
|
696
660
|
header?: () => any;
|
package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts
CHANGED
|
@@ -512,18 +512,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
512
512
|
isContentScrollable: {
|
|
513
513
|
type: import('vue').PropType<boolean>;
|
|
514
514
|
};
|
|
515
|
-
hasBorder: {
|
|
516
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
517
|
-
};
|
|
518
|
-
borderPosition: {
|
|
519
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
520
|
-
};
|
|
521
|
-
borderSize: {
|
|
522
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
523
|
-
};
|
|
524
|
-
borderColor: {
|
|
525
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
526
|
-
};
|
|
527
515
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
528
516
|
P: {};
|
|
529
517
|
B: {};
|
|
@@ -583,18 +571,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
583
571
|
isContentScrollable: {
|
|
584
572
|
type: import('vue').PropType<boolean>;
|
|
585
573
|
};
|
|
586
|
-
hasBorder: {
|
|
587
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
588
|
-
};
|
|
589
|
-
borderPosition: {
|
|
590
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
591
|
-
};
|
|
592
|
-
borderSize: {
|
|
593
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
594
|
-
};
|
|
595
|
-
borderColor: {
|
|
596
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
597
|
-
};
|
|
598
574
|
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
599
575
|
__isFragment?: never;
|
|
600
576
|
__isTeleport?: never;
|
|
@@ -651,18 +627,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
651
627
|
isContentScrollable: {
|
|
652
628
|
type: import('vue').PropType<boolean>;
|
|
653
629
|
};
|
|
654
|
-
hasBorder: {
|
|
655
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
656
|
-
};
|
|
657
|
-
borderPosition: {
|
|
658
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
659
|
-
};
|
|
660
|
-
borderSize: {
|
|
661
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
662
|
-
};
|
|
663
|
-
borderColor: {
|
|
664
|
-
type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
665
|
-
};
|
|
666
630
|
}>> & 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 () => {
|
|
667
631
|
$slots: Readonly<{
|
|
668
632
|
header?: () => any;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { TextGroupAlign, TextGroupMainTextColor, TextGroupProminence, TextGroupLoadingSize, TextGroupSize, TextGroupState } from './TextGroup.consts';
|
|
2
|
-
import { RemovedProp } from '../../utils/type.utils';
|
|
3
2
|
|
|
4
3
|
declare function __VLS_template(): {
|
|
5
4
|
mainText?(_: {}): any;
|
|
@@ -24,7 +23,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
24
23
|
isSupportingTextTooltipEnabledOnMobile?: boolean;
|
|
25
24
|
isSupportingTextTooltipAutoFilledWithContent?: boolean;
|
|
26
25
|
supportingTextTooltipContent?: string;
|
|
27
|
-
isSelected?: RemovedProp<"use mainTextColor=primary instead">;
|
|
28
26
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
29
27
|
size?: TextGroupSize;
|
|
30
28
|
align?: TextGroupAlign;
|
|
@@ -45,7 +43,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
45
43
|
isSupportingTextTooltipEnabledOnMobile?: boolean;
|
|
46
44
|
isSupportingTextTooltipAutoFilledWithContent?: boolean;
|
|
47
45
|
supportingTextTooltipContent?: string;
|
|
48
|
-
isSelected?: RemovedProp<"use mainTextColor=primary instead">;
|
|
49
46
|
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
50
47
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
51
48
|
export default _default;
|
|
@@ -131,11 +131,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
131
131
|
state: import('./Tile.consts').TileState;
|
|
132
132
|
iconLeft: Record<string, any>;
|
|
133
133
|
iconRight: Record<string, any>;
|
|
134
|
-
borderColor: import('./Tile.consts').TileBorderColors;
|
|
135
134
|
interactive: boolean;
|
|
136
135
|
additionalText: string;
|
|
137
136
|
eyebrowEllipsis: boolean;
|
|
138
137
|
textEllipsis: boolean;
|
|
138
|
+
borderColor: import('./Tile.consts').TileBorderColors;
|
|
139
139
|
additionalTextMaxWidth: import('./Tile.consts').TileAdditionalTextMaxWidth;
|
|
140
140
|
compactLayout: import('./Tile.consts').TileCompactLayout;
|
|
141
141
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -289,18 +289,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
289
289
|
isContentScrollable: {
|
|
290
290
|
type: PropType<boolean>;
|
|
291
291
|
};
|
|
292
|
-
hasBorder: {
|
|
293
|
-
type: PropType<import('../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
294
|
-
};
|
|
295
|
-
borderPosition: {
|
|
296
|
-
type: PropType<import('../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
297
|
-
};
|
|
298
|
-
borderSize: {
|
|
299
|
-
type: PropType<import('../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
300
|
-
};
|
|
301
|
-
borderColor: {
|
|
302
|
-
type: PropType<import('../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
303
|
-
};
|
|
304
292
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
305
293
|
P: {};
|
|
306
294
|
B: {};
|
|
@@ -360,18 +348,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
360
348
|
isContentScrollable: {
|
|
361
349
|
type: PropType<boolean>;
|
|
362
350
|
};
|
|
363
|
-
hasBorder: {
|
|
364
|
-
type: PropType<import('../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
365
|
-
};
|
|
366
|
-
borderPosition: {
|
|
367
|
-
type: PropType<import('../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
368
|
-
};
|
|
369
|
-
borderSize: {
|
|
370
|
-
type: PropType<import('../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
371
|
-
};
|
|
372
|
-
borderColor: {
|
|
373
|
-
type: PropType<import('../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
374
|
-
};
|
|
375
351
|
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
376
352
|
__isFragment?: never;
|
|
377
353
|
__isTeleport?: never;
|
|
@@ -428,18 +404,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
428
404
|
isContentScrollable: {
|
|
429
405
|
type: PropType<boolean>;
|
|
430
406
|
};
|
|
431
|
-
hasBorder: {
|
|
432
|
-
type: PropType<import('../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
|
|
433
|
-
};
|
|
434
|
-
borderPosition: {
|
|
435
|
-
type: PropType<import('../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
|
|
436
|
-
};
|
|
437
|
-
borderSize: {
|
|
438
|
-
type: PropType<import('../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
|
|
439
|
-
};
|
|
440
|
-
borderColor: {
|
|
441
|
-
type: PropType<import('../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
|
|
442
|
-
};
|
|
443
407
|
}>> & 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 () => {
|
|
444
408
|
$slots: Readonly<{
|
|
445
409
|
header?: () => any;
|
|
@@ -430,10 +430,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
430
430
|
radius: ToggleButtonRadius;
|
|
431
431
|
isInteractive: boolean;
|
|
432
432
|
state: ToggleButtonState;
|
|
433
|
-
isSelected: boolean;
|
|
434
433
|
iconLeft: any;
|
|
435
434
|
iconRight: any;
|
|
436
435
|
isLabelUppercase: boolean;
|
|
436
|
+
isSelected: boolean;
|
|
437
437
|
hasSmallHorizontalPadding: boolean;
|
|
438
438
|
labelSize: ToggleButtonLabelSize;
|
|
439
439
|
}, {}, {
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare function __VLS_template(): Readonly<{
|
|
2
|
+
leading?: () => any;
|
|
3
|
+
default?: () => any;
|
|
4
|
+
trailing?: () => any;
|
|
5
|
+
}> & {
|
|
6
|
+
leading?: () => any;
|
|
7
|
+
default?: () => any;
|
|
8
|
+
trailing?: () => any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
type RouterLocation = string | Record<string, unknown>;
|
|
2
|
+
declare function __VLS_template(): Readonly<{
|
|
3
|
+
logo?: () => any;
|
|
4
|
+
accessory?: () => any;
|
|
5
|
+
}> & {
|
|
6
|
+
logo?: () => any;
|
|
7
|
+
accessory?: () => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
+
title: string;
|
|
11
|
+
href?: string;
|
|
12
|
+
to?: RouterLocation;
|
|
13
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
14
|
+
title: string;
|
|
15
|
+
href?: string;
|
|
16
|
+
to?: RouterLocation;
|
|
17
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
21
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
22
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
23
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
24
|
+
} : {
|
|
25
|
+
type: import('vue').PropType<T[K]>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|