@bethinkpl/design-system 30.3.2 → 30.4.2
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 +5682 -5362
- package/dist/design-system.js.map +1 -1
- package/dist/i18n/en/globals.json +2 -1
- package/dist/i18n/en/statsLayout.json +12 -0
- package/dist/i18n/pl/globals.json +2 -1
- package/dist/i18n/pl/statsLayout.json +12 -0
- package/dist/lib/js/components/Buttons/HelpButton/HelpButton.vue.d.ts +3 -0
- package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +2 -0
- package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +2 -0
- package/dist/lib/js/components/Chip/Chip.vue.d.ts +4 -0
- package/dist/lib/js/components/DatePickers/DateBox/DateBox.vue.d.ts +2 -0
- package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +2 -0
- package/dist/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue.d.ts +2 -0
- package/dist/lib/js/components/Drawer/DrawerHeader/DrawerHeader.vue.d.ts +8 -0
- package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +2 -0
- package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +6 -0
- package/dist/lib/js/components/Form/RadioButton/RadioButton.vue.d.ts +2 -0
- package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +4 -0
- package/dist/lib/js/components/Headers/SectionHeader/SectionHeader.vue.d.ts +4 -0
- package/dist/lib/js/components/Icons/Icon/Icon.consts.d.ts +2 -0
- package/dist/lib/js/components/Modal/Modal.vue.d.ts +2 -0
- package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +4 -0
- package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +4 -0
- package/dist/lib/js/components/Outline/OutlineItem/OutlineItem.vue.d.ts +2 -0
- package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +6 -0
- package/dist/lib/js/components/ProgressBar/ProgressBar.vue.d.ts +2 -0
- package/dist/lib/js/components/ProgressDonutChart/ProgressDonutChart.vue.d.ts +2 -0
- package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +2 -0
- package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +2 -0
- package/dist/lib/js/components/SelectList/SelectListItem/SelectListItem.vue.d.ts +2 -0
- package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts +2 -0
- package/dist/lib/js/components/SpinnerLoading/SpinnerLoading.vue.d.ts +15 -0
- package/dist/lib/js/components/StatsLayout/StatsErrorBanner/StatsErrorBanner.vue.d.ts +6 -0
- package/dist/lib/js/components/StatsLayout/StatsFiltersDropdown/StatsFiltersDropdown.vue.d.ts +23 -0
- package/dist/lib/js/components/StatsLayout/StatsLayout.vue.d.ts +41 -0
- package/dist/lib/js/components/StatsLayout/StatsResetBanner/StatsResetBanner.vue.d.ts +34 -0
- package/dist/lib/js/components/StatsLayout/StatsSectionHeader/StatsSectionHeader.vue.d.ts +40 -0
- package/dist/lib/js/components/Statuses/AccessStatus/AccessStatus.vue.d.ts +2 -0
- package/dist/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue.d.ts +2 -0
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +6 -0
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +6 -0
- package/dist/lib/js/components/Switch/Switch.vue.d.ts +2 -0
- package/dist/lib/js/components/Tile/Tile.sb.shared.d.ts +2 -0
- package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +2 -0
- package/dist/lib/js/i18n/en.d.ts +11 -0
- package/dist/lib/js/i18n/index.d.ts +22 -0
- package/dist/lib/js/i18n/pl.d.ts +11 -0
- package/dist/lib/js/icons/fontawesome.d.ts +2 -0
- package/dist/lib/js/index.d.ts +3 -0
- package/lib/js/components/Buttons/HelpButton/HelpButton.vue +20 -3
- package/lib/js/components/SpinnerLoading/SpinnerLoading.stories.ts +42 -0
- package/lib/js/components/SpinnerLoading/SpinnerLoading.vue +33 -0
- package/lib/js/components/StatsLayout/StatsErrorBanner/StatsErrorBanner.stories.ts +32 -0
- package/lib/js/components/StatsLayout/StatsErrorBanner/StatsErrorBanner.vue +24 -0
- package/lib/js/components/StatsLayout/StatsFiltersDropdown/StatsFiltersDropdown.stories.ts +50 -0
- package/lib/js/components/StatsLayout/StatsFiltersDropdown/StatsFiltersDropdown.vue +55 -0
- package/lib/js/components/StatsLayout/StatsLayout.spec.ts +169 -0
- package/lib/js/components/StatsLayout/StatsLayout.stories.ts +156 -0
- package/lib/js/components/StatsLayout/StatsLayout.vue +173 -0
- package/lib/js/components/StatsLayout/StatsResetBanner/StatsResetBanner.stories.ts +48 -0
- package/lib/js/components/StatsLayout/StatsResetBanner/StatsResetBanner.vue +51 -0
- package/lib/js/components/StatsLayout/StatsSectionHeader/StatsSectionHeader.stories.ts +68 -0
- package/lib/js/components/StatsLayout/StatsSectionHeader/StatsSectionHeader.vue +72 -0
- package/lib/js/i18n/en/globals.json +2 -1
- package/lib/js/i18n/en/statsLayout.json +12 -0
- package/lib/js/i18n/en.ts +2 -0
- package/lib/js/i18n/pl/globals.json +2 -1
- package/lib/js/i18n/pl/statsLayout.json +12 -0
- package/lib/js/i18n/pl.ts +2 -0
- package/lib/js/icons/fontawesome.ts +5 -1
- package/lib/js/index.ts +3 -0
- package/package.json +1 -1
|
@@ -74,6 +74,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
74
74
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
75
75
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
76
76
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
77
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
77
78
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
78
79
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
79
80
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -194,6 +195,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
194
195
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
195
196
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
196
197
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
198
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
197
199
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
198
200
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
199
201
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -724,6 +724,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
724
724
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
725
725
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
726
726
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
727
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
727
728
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
728
729
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
729
730
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -844,6 +845,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
844
845
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
845
846
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
846
847
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
848
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
847
849
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
848
850
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
849
851
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -140,6 +140,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
140
140
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
141
141
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
142
142
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
143
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
143
144
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
144
145
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
145
146
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -260,6 +261,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
260
261
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
261
262
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
262
263
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
264
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
263
265
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
264
266
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
265
267
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -99,6 +99,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
99
99
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
100
100
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
101
101
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
102
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
102
103
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
103
104
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
104
105
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -219,6 +220,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
219
220
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
220
221
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
221
222
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
223
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
222
224
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
223
225
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
224
226
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts
CHANGED
|
@@ -186,6 +186,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
186
186
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
187
187
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
188
188
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
189
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
189
190
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
190
191
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
191
192
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -306,6 +307,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
306
307
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
307
308
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
308
309
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
310
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
309
311
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
310
312
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
311
313
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
message?: string;
|
|
3
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
message?: string;
|
|
5
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
export default _default;
|
|
7
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
8
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
9
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
10
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
11
|
+
} : {
|
|
12
|
+
type: import('vue').PropType<T[K]>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2
|
+
"button-clicked": () => void;
|
|
3
|
+
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
4
|
+
"onButton-clicked"?: (() => any) | undefined;
|
|
5
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
interface FilterItem {
|
|
2
|
+
key: string;
|
|
3
|
+
label: string;
|
|
4
|
+
}
|
|
5
|
+
export interface StatsFiltersDropdownProps {
|
|
6
|
+
filterItems?: Array<FilterItem>;
|
|
7
|
+
selectedFilterKey?: string | null;
|
|
8
|
+
}
|
|
9
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<StatsFiltersDropdownProps>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
+
select: (key: string) => void;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<StatsFiltersDropdownProps>>> & Readonly<{
|
|
12
|
+
onSelect?: ((key: string) => any) | undefined;
|
|
13
|
+
}>, {}, {}, {}, {}, 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
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
interface StatsLayoutProps {
|
|
2
|
+
hasGridHeader?: boolean;
|
|
3
|
+
hasRightColumn?: boolean;
|
|
4
|
+
leftColumnLabel?: string;
|
|
5
|
+
rightColumnLabel?: string;
|
|
6
|
+
statsItemsHeaderLabel?: string;
|
|
7
|
+
isLoading?: boolean;
|
|
8
|
+
hasError?: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare function __VLS_template(): Readonly<{
|
|
11
|
+
[key: `statsItem-${number}`]: (() => any) | undefined;
|
|
12
|
+
sectionHeader?: () => any;
|
|
13
|
+
overallStatsItem?: () => any;
|
|
14
|
+
resetBanner?: () => any;
|
|
15
|
+
}> & {
|
|
16
|
+
[key: `statsItem-${number}`]: (() => any) | undefined;
|
|
17
|
+
sectionHeader?: () => any;
|
|
18
|
+
overallStatsItem?: () => any;
|
|
19
|
+
resetBanner?: () => any;
|
|
20
|
+
};
|
|
21
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<StatsLayoutProps>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
|
+
retryClicked: () => void;
|
|
23
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<StatsLayoutProps>>> & Readonly<{
|
|
24
|
+
onRetryClicked?: (() => any) | undefined;
|
|
25
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
26
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
27
|
+
export default _default;
|
|
28
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
29
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
30
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
31
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
32
|
+
} : {
|
|
33
|
+
type: import('vue').PropType<T[K]>;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
38
|
+
new (): {
|
|
39
|
+
$slots: S;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare function __VLS_template(): Readonly<{
|
|
2
|
+
infoModalContent?: () => any;
|
|
3
|
+
resetModal?: (props: {
|
|
4
|
+
onClose: () => void;
|
|
5
|
+
}) => any;
|
|
6
|
+
}> & {
|
|
7
|
+
infoModalContent?: () => any;
|
|
8
|
+
resetModal?: (props: {
|
|
9
|
+
onClose: () => void;
|
|
10
|
+
}) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
13
|
+
timeMarker: string;
|
|
14
|
+
infoModalTitle?: string;
|
|
15
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
16
|
+
timeMarker: string;
|
|
17
|
+
infoModalTitle?: string;
|
|
18
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
19
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
22
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
23
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
24
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
25
|
+
} : {
|
|
26
|
+
type: import('vue').PropType<T[K]>;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
interface FilterItem {
|
|
2
|
+
key: string;
|
|
3
|
+
label: string;
|
|
4
|
+
}
|
|
5
|
+
declare function __VLS_template(): Readonly<{
|
|
6
|
+
accessory?: string;
|
|
7
|
+
infoModalContent?: string;
|
|
8
|
+
}> & {
|
|
9
|
+
accessory?: string;
|
|
10
|
+
infoModalContent?: string;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
13
|
+
filterItems?: Array<FilterItem>;
|
|
14
|
+
selectedFilterKey?: string | null;
|
|
15
|
+
infoModalTitle?: string;
|
|
16
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
|
+
"select-filter": (filterKey: string) => void;
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
19
|
+
filterItems?: Array<FilterItem>;
|
|
20
|
+
selectedFilterKey?: string | null;
|
|
21
|
+
infoModalTitle?: string;
|
|
22
|
+
}>>> & Readonly<{
|
|
23
|
+
"onSelect-filter"?: ((filterKey: string) => any) | undefined;
|
|
24
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
25
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
26
|
+
export default _default;
|
|
27
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
28
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
29
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
30
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
31
|
+
} : {
|
|
32
|
+
type: import('vue').PropType<T[K]>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
37
|
+
new (): {
|
|
38
|
+
$slots: S;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
@@ -57,6 +57,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
57
57
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
58
58
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
59
59
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
60
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
60
61
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
61
62
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
62
63
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -177,6 +178,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
177
178
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
178
179
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
179
180
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
181
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
180
182
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
181
183
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
182
184
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -55,6 +55,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
55
55
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
56
56
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
57
57
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
58
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
58
59
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
59
60
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
60
61
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -175,6 +176,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
175
176
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
176
177
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
177
178
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
179
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
178
180
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
179
181
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
180
182
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -74,6 +74,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
74
74
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
75
75
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
76
76
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
77
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
77
78
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
78
79
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
79
80
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -194,6 +195,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
194
195
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
195
196
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
196
197
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
198
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
197
199
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
198
200
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
199
201
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -712,6 +714,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
712
714
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
713
715
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
714
716
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
717
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
715
718
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
716
719
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
717
720
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -832,6 +835,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
832
835
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
833
836
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
834
837
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
838
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
835
839
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
836
840
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
837
841
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1247,6 +1251,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1247
1251
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1248
1252
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1249
1253
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1254
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1250
1255
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1251
1256
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1252
1257
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1367,6 +1372,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1367
1372
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1368
1373
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1369
1374
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1375
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1370
1376
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1371
1377
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1372
1378
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts
CHANGED
|
@@ -93,6 +93,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
93
93
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
94
94
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
95
95
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
96
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
96
97
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
97
98
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
98
99
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -213,6 +214,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
213
214
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
214
215
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
215
216
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
217
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
216
218
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
217
219
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
218
220
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -685,6 +687,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
685
687
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
686
688
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
687
689
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
690
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
688
691
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
689
692
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
690
693
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -805,6 +808,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
805
808
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
806
809
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
807
810
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
811
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
808
812
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
809
813
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
810
814
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1393,6 +1397,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1393
1397
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1394
1398
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1395
1399
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1400
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1396
1401
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1397
1402
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1398
1403
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1513,6 +1518,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1513
1518
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1514
1519
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1515
1520
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1521
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1516
1522
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1517
1523
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1518
1524
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -93,6 +93,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
93
93
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
94
94
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
95
95
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
96
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
96
97
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
97
98
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
98
99
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -213,6 +214,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
213
214
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
214
215
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
215
216
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
217
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
216
218
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
217
219
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
218
220
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -53,6 +53,7 @@ export declare const data: () => {
|
|
|
53
53
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
54
54
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
55
55
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
56
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
56
57
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
57
58
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
58
59
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -173,6 +174,7 @@ export declare const data: () => {
|
|
|
173
174
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
174
175
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
175
176
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
177
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
176
178
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
177
179
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
178
180
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -109,6 +109,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
109
109
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
110
110
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
111
111
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
112
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
112
113
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
113
114
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
114
115
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -229,6 +230,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
229
230
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
230
231
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
231
232
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
233
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
232
234
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
233
235
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
234
236
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
package/dist/lib/js/i18n/en.d.ts
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
+
"ds.statsLayout.default.leftColumnLabel": string;
|
|
3
|
+
"ds.statsLayout.default.rightColumnLabel": string;
|
|
4
|
+
"ds.statsLayout.filtersDropdown.title": string;
|
|
5
|
+
"ds.statsLayout.sectionHeader.title": string;
|
|
6
|
+
"ds.statsLayout.statsErrorBanner.buttonText": string;
|
|
7
|
+
"ds.statsLayout.statsErrorBanner.message": string;
|
|
8
|
+
"ds.statsLayout.statsErrorBanner.title": string;
|
|
9
|
+
"ds.statsLayout.statsResetBanner.buttonText": string;
|
|
10
|
+
"ds.statsLayout.statsResetBanner.message": string;
|
|
11
|
+
"ds.statsLayout.statsResetBanner.title": string;
|
|
2
12
|
"ds.pagination.from": string;
|
|
3
13
|
"ds.accessStatus.status.active": string;
|
|
4
14
|
"ds.accessStatus.status.awaiting": string;
|
|
@@ -7,5 +17,6 @@ declare const _default: {
|
|
|
7
17
|
"ds.accessStatus.status.suspended": string;
|
|
8
18
|
"ds.globals.back": string;
|
|
9
19
|
"ds.globals.confirmation": string;
|
|
20
|
+
"ds.globals.loading": string;
|
|
10
21
|
};
|
|
11
22
|
export default _default;
|
|
@@ -4,6 +4,16 @@ import { default as pl } from './pl';
|
|
|
4
4
|
export type MessageSchema = typeof pl;
|
|
5
5
|
export declare const messages: {
|
|
6
6
|
pl: {
|
|
7
|
+
"ds.statsLayout.default.leftColumnLabel": string;
|
|
8
|
+
"ds.statsLayout.default.rightColumnLabel": string;
|
|
9
|
+
"ds.statsLayout.filtersDropdown.title": string;
|
|
10
|
+
"ds.statsLayout.sectionHeader.title": string;
|
|
11
|
+
"ds.statsLayout.statsErrorBanner.buttonText": string;
|
|
12
|
+
"ds.statsLayout.statsErrorBanner.message": string;
|
|
13
|
+
"ds.statsLayout.statsErrorBanner.title": string;
|
|
14
|
+
"ds.statsLayout.statsResetBanner.buttonText": string;
|
|
15
|
+
"ds.statsLayout.statsResetBanner.message": string;
|
|
16
|
+
"ds.statsLayout.statsResetBanner.title": string;
|
|
7
17
|
"ds.pagination.from": string;
|
|
8
18
|
"ds.accessStatus.status.active": string;
|
|
9
19
|
"ds.accessStatus.status.awaiting": string;
|
|
@@ -12,8 +22,19 @@ export declare const messages: {
|
|
|
12
22
|
"ds.accessStatus.status.suspended": string;
|
|
13
23
|
"ds.globals.back": string;
|
|
14
24
|
"ds.globals.confirmation": string;
|
|
25
|
+
"ds.globals.loading": string;
|
|
15
26
|
};
|
|
16
27
|
en: {
|
|
28
|
+
"ds.statsLayout.default.leftColumnLabel": string;
|
|
29
|
+
"ds.statsLayout.default.rightColumnLabel": string;
|
|
30
|
+
"ds.statsLayout.filtersDropdown.title": string;
|
|
31
|
+
"ds.statsLayout.sectionHeader.title": string;
|
|
32
|
+
"ds.statsLayout.statsErrorBanner.buttonText": string;
|
|
33
|
+
"ds.statsLayout.statsErrorBanner.message": string;
|
|
34
|
+
"ds.statsLayout.statsErrorBanner.title": string;
|
|
35
|
+
"ds.statsLayout.statsResetBanner.buttonText": string;
|
|
36
|
+
"ds.statsLayout.statsResetBanner.message": string;
|
|
37
|
+
"ds.statsLayout.statsResetBanner.title": string;
|
|
17
38
|
"ds.pagination.from": string;
|
|
18
39
|
"ds.accessStatus.status.active": string;
|
|
19
40
|
"ds.accessStatus.status.awaiting": string;
|
|
@@ -22,6 +43,7 @@ export declare const messages: {
|
|
|
22
43
|
"ds.accessStatus.status.suspended": string;
|
|
23
44
|
"ds.globals.back": string;
|
|
24
45
|
"ds.globals.confirmation": string;
|
|
46
|
+
"ds.globals.loading": string;
|
|
25
47
|
};
|
|
26
48
|
};
|
|
27
49
|
export type ValidI18nKey = keyof MessageSchema;
|
package/dist/lib/js/i18n/pl.d.ts
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
+
"ds.statsLayout.default.leftColumnLabel": string;
|
|
3
|
+
"ds.statsLayout.default.rightColumnLabel": string;
|
|
4
|
+
"ds.statsLayout.filtersDropdown.title": string;
|
|
5
|
+
"ds.statsLayout.sectionHeader.title": string;
|
|
6
|
+
"ds.statsLayout.statsErrorBanner.buttonText": string;
|
|
7
|
+
"ds.statsLayout.statsErrorBanner.message": string;
|
|
8
|
+
"ds.statsLayout.statsErrorBanner.title": string;
|
|
9
|
+
"ds.statsLayout.statsResetBanner.buttonText": string;
|
|
10
|
+
"ds.statsLayout.statsResetBanner.message": string;
|
|
11
|
+
"ds.statsLayout.statsResetBanner.title": string;
|
|
2
12
|
"ds.pagination.from": string;
|
|
3
13
|
"ds.accessStatus.status.active": string;
|
|
4
14
|
"ds.accessStatus.status.awaiting": string;
|
|
@@ -7,5 +17,6 @@ declare const _default: {
|
|
|
7
17
|
"ds.accessStatus.status.suspended": string;
|
|
8
18
|
"ds.globals.back": string;
|
|
9
19
|
"ds.globals.confirmation": string;
|
|
20
|
+
"ds.globals.loading": string;
|
|
10
21
|
};
|
|
11
22
|
export default _default;
|
|
@@ -40,6 +40,7 @@ export declare const FONTAWESOME_ICONS: {
|
|
|
40
40
|
readonly FA_BOX_ARCHIVE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
41
41
|
readonly FA_BOX: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
42
42
|
readonly FA_BULLSEYE_ARROW: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
43
|
+
readonly FA_BULLSEYE_POINTER: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
43
44
|
readonly FA_BRAIN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
44
45
|
readonly FA_CALCULATOR_SIMPLE_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
45
46
|
readonly FA_CALENDAR_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -160,6 +161,7 @@ export declare const FONTAWESOME_ICONS: {
|
|
|
160
161
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
161
162
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
162
163
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
164
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
163
165
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
164
166
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
165
167
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
package/dist/lib/js/index.d.ts
CHANGED
|
@@ -179,6 +179,9 @@ export * from './components/Tooltip/Tooltip.consts';
|
|
|
179
179
|
export { default as DsImage } from './components/Image';
|
|
180
180
|
export * from './components/Skeleton/Skeleton.consts';
|
|
181
181
|
export { default as DsSkeleton } from './components/Skeleton/Skeleton.vue';
|
|
182
|
+
export { default as DsStatsLayout } from './components/StatsLayout/StatsLayout.vue';
|
|
183
|
+
export { default as DsStatsResetBanner } from './components/StatsLayout/StatsResetBanner/StatsResetBanner.vue';
|
|
184
|
+
export { default as DsStatsSectionHeader } from './components/StatsLayout/StatsSectionHeader/StatsSectionHeader.vue';
|
|
182
185
|
export { initializePrimeVue } from './primevue';
|
|
183
186
|
export { initialize as initializeIcons, initializeWithDomWatcher as initializeIconsWithDomWatcher, } from './icons/fontawesome';
|
|
184
187
|
export type { IconDefinition } from './icons/fontawesome';
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<icon-button
|
|
4
4
|
:icon="ICONS.FA_CIRCLE_QUESTION"
|
|
5
5
|
:color="ICON_BUTTON_COLORS.NEUTRAL_WEAK"
|
|
6
|
-
:size="
|
|
6
|
+
:size="size"
|
|
7
7
|
:state="isDisabled ? ICON_BUTTON_STATES.DISABLED : ICON_BUTTON_STATES.DEFAULT"
|
|
8
8
|
:touchable="false"
|
|
9
9
|
v-bind="$attrs"
|
|
@@ -11,7 +11,13 @@
|
|
|
11
11
|
/>
|
|
12
12
|
</tooltip>
|
|
13
13
|
<slot v-if="isOpen" name="modal" :on-close="onClose">
|
|
14
|
-
<modal
|
|
14
|
+
<modal
|
|
15
|
+
:header-title="modalTitle"
|
|
16
|
+
:size="modalSize"
|
|
17
|
+
:footer-primary-button-text="t('ds.globals.confirmation')"
|
|
18
|
+
@close-modal="onClose"
|
|
19
|
+
@primary-button-click="onClose"
|
|
20
|
+
>
|
|
15
21
|
<slot name="modalContent" />
|
|
16
22
|
</modal>
|
|
17
23
|
</slot>
|
|
@@ -23,16 +29,27 @@ import IconButton, {
|
|
|
23
29
|
ICON_BUTTON_COLORS,
|
|
24
30
|
ICON_BUTTON_SIZES,
|
|
25
31
|
ICON_BUTTON_STATES,
|
|
32
|
+
IconButtonSize,
|
|
26
33
|
} from '../IconButton';
|
|
27
34
|
import Tooltip from '../../Tooltip';
|
|
28
35
|
import { ICONS } from '../../Icons/Icon';
|
|
29
36
|
import Modal, { ModalSize } from '../../Modals/Modal';
|
|
37
|
+
import { useLegacyI18n } from '../../../composables/useLegacyI18n';
|
|
30
38
|
|
|
31
|
-
|
|
39
|
+
const { t } = useLegacyI18n();
|
|
40
|
+
|
|
41
|
+
const {
|
|
42
|
+
tooltipText,
|
|
43
|
+
isDisabled,
|
|
44
|
+
modalTitle,
|
|
45
|
+
modalSize,
|
|
46
|
+
size = ICON_BUTTON_SIZES.X_SMALL,
|
|
47
|
+
} = defineProps<{
|
|
32
48
|
tooltipText?: string;
|
|
33
49
|
isDisabled?: boolean;
|
|
34
50
|
modalTitle?: string;
|
|
35
51
|
modalSize?: ModalSize;
|
|
52
|
+
size?: IconButtonSize;
|
|
36
53
|
}>();
|
|
37
54
|
|
|
38
55
|
defineSlots<{
|