@bethinkpl/design-system 30.3.2 → 30.4.1
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 +5646 -5353
- 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 +1 -0
- package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +1 -0
- package/dist/lib/js/components/Chip/Chip.vue.d.ts +2 -0
- package/dist/lib/js/components/DatePickers/DateBox/DateBox.vue.d.ts +1 -0
- package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +1 -0
- package/dist/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue.d.ts +1 -0
- package/dist/lib/js/components/Drawer/DrawerHeader/DrawerHeader.vue.d.ts +4 -0
- package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +1 -0
- package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +3 -0
- package/dist/lib/js/components/Form/RadioButton/RadioButton.vue.d.ts +1 -0
- package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +2 -0
- package/dist/lib/js/components/Headers/SectionHeader/SectionHeader.vue.d.ts +2 -0
- package/dist/lib/js/components/Icons/Icon/Icon.consts.d.ts +1 -0
- package/dist/lib/js/components/Modal/Modal.vue.d.ts +1 -0
- package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +2 -0
- package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +2 -0
- package/dist/lib/js/components/Outline/OutlineItem/OutlineItem.vue.d.ts +1 -0
- package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +3 -0
- package/dist/lib/js/components/ProgressBar/ProgressBar.vue.d.ts +1 -0
- package/dist/lib/js/components/ProgressDonutChart/ProgressDonutChart.vue.d.ts +1 -0
- package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +1 -0
- package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +1 -0
- package/dist/lib/js/components/SelectList/SelectListItem/SelectListItem.vue.d.ts +1 -0
- package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts +1 -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 +1 -0
- package/dist/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue.d.ts +1 -0
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +3 -0
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +3 -0
- package/dist/lib/js/components/Switch/Switch.vue.d.ts +1 -0
- package/dist/lib/js/components/Tile/Tile.sb.shared.d.ts +1 -0
- package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +1 -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 +1 -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 +2 -0
- package/lib/js/index.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ds.statsLayout.default.leftColumnLabel": "Range",
|
|
3
|
+
"ds.statsLayout.default.rightColumnLabel": "Results",
|
|
4
|
+
"ds.statsLayout.filtersDropdown.title": "Filter",
|
|
5
|
+
"ds.statsLayout.sectionHeader.title": "Your statistics",
|
|
6
|
+
"ds.statsLayout.statsErrorBanner.buttonText": "Try again",
|
|
7
|
+
"ds.statsLayout.statsErrorBanner.message": "Refresh the page to try again",
|
|
8
|
+
"ds.statsLayout.statsErrorBanner.title": "Failed to load statistics",
|
|
9
|
+
"ds.statsLayout.statsResetBanner.buttonText": "RESET STATISTICS",
|
|
10
|
+
"ds.statsLayout.statsResetBanner.message": "Statistics counted from",
|
|
11
|
+
"ds.statsLayout.statsResetBanner.title": "Reset statistics"
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ds.statsLayout.default.leftColumnLabel": "Zakres",
|
|
3
|
+
"ds.statsLayout.default.rightColumnLabel": "Wyniki",
|
|
4
|
+
"ds.statsLayout.filtersDropdown.title": "Filtruj",
|
|
5
|
+
"ds.statsLayout.sectionHeader.title": "Twoje statystyki",
|
|
6
|
+
"ds.statsLayout.statsErrorBanner.buttonText": "Spróbuj ponownie",
|
|
7
|
+
"ds.statsLayout.statsErrorBanner.message": "Odśwież stronę, aby spróbować ponownie",
|
|
8
|
+
"ds.statsLayout.statsErrorBanner.title": "Nie udało się załadować statystyk",
|
|
9
|
+
"ds.statsLayout.statsResetBanner.buttonText": "Resetuj statystyki",
|
|
10
|
+
"ds.statsLayout.statsResetBanner.message": "Statystyki liczone od",
|
|
11
|
+
"ds.statsLayout.statsResetBanner.title": "Reset statystyk"
|
|
12
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IconButtonSize } from '../IconButton';
|
|
1
2
|
import { ModalSize } from '../../Modals/Modal';
|
|
2
3
|
|
|
3
4
|
declare function __VLS_template(): Readonly<{
|
|
@@ -16,11 +17,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
16
17
|
isDisabled?: boolean;
|
|
17
18
|
modalTitle?: string;
|
|
18
19
|
modalSize?: ModalSize;
|
|
20
|
+
size?: IconButtonSize;
|
|
19
21
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
20
22
|
tooltipText?: string;
|
|
21
23
|
isDisabled?: boolean;
|
|
22
24
|
modalTitle?: string;
|
|
23
25
|
modalSize?: ModalSize;
|
|
26
|
+
size?: IconButtonSize;
|
|
24
27
|
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
25
28
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
26
29
|
export default _default;
|
|
@@ -225,6 +225,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
225
225
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
226
226
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
227
227
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
228
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
228
229
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
229
230
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
230
231
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -196,6 +196,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
196
196
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
197
197
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
198
198
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
199
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
199
200
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
200
201
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
201
202
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -215,6 +215,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
215
215
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
216
216
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
217
217
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
218
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
218
219
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
219
220
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
220
221
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -692,6 +693,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
692
693
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
693
694
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
694
695
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
696
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
695
697
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
696
698
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
697
699
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -216,6 +216,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
216
216
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
217
217
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
218
218
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
219
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
219
220
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
220
221
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
221
222
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -980,6 +980,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
980
980
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
981
981
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
982
982
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
983
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
983
984
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
984
985
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
985
986
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -823,6 +823,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
823
823
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
824
824
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
825
825
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
826
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
826
827
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
827
828
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
828
829
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -238,6 +238,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
238
238
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
239
239
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
240
240
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
241
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
241
242
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
242
243
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
243
244
|
readonly FA_MESSAGE_QUESTION_SOLID: 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;
|
|
@@ -1412,6 +1414,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1412
1414
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1413
1415
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1414
1416
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1417
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1415
1418
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1416
1419
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1417
1420
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1889,6 +1892,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1889
1892
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1890
1893
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1891
1894
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1895
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1892
1896
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1893
1897
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1894
1898
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -191,6 +191,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
191
191
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
192
192
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
193
193
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
194
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
194
195
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
195
196
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
196
197
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -249,6 +249,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
249
249
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
250
250
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
251
251
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
252
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
252
253
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
253
254
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
254
255
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -645,6 +646,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
645
646
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
646
647
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
647
648
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
649
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
648
650
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
649
651
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
650
652
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1147,6 +1149,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1147
1149
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1148
1150
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1149
1151
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1152
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1150
1153
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1151
1154
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1152
1155
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -192,6 +192,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
192
192
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
193
193
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
194
194
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
195
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
195
196
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
196
197
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
197
198
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -231,6 +231,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
231
231
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
232
232
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
233
233
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
234
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
234
235
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
235
236
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
236
237
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -609,6 +610,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
609
610
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
610
611
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
611
612
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
613
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
612
614
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
613
615
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
614
616
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -240,6 +240,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
240
240
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
241
241
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
242
242
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
243
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
243
244
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
244
245
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
245
246
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -742,6 +743,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
742
743
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
743
744
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
744
745
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
746
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
745
747
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
746
748
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
747
749
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -198,6 +198,7 @@ export declare const ICONS: {
|
|
|
198
198
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
199
199
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
200
200
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
201
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
201
202
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
202
203
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
203
204
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -179,6 +179,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
179
179
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
180
180
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
181
181
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
182
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
182
183
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
183
184
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
184
185
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -278,6 +278,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
278
278
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
279
279
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
280
280
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
281
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
281
282
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
282
283
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
283
284
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -848,6 +849,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
848
849
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
849
850
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
850
851
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
852
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
851
853
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
852
854
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
853
855
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -413,6 +413,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
413
413
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
414
414
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
415
415
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
416
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
416
417
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
417
418
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
418
419
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -983,6 +984,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
983
984
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
984
985
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
985
986
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
987
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
986
988
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
987
989
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
988
990
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -235,6 +235,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
235
235
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
236
236
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
237
237
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
238
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
238
239
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
239
240
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
240
241
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -231,6 +231,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
231
231
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
232
232
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
233
233
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
234
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
234
235
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
235
236
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
236
237
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -574,6 +575,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
574
575
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
575
576
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
576
577
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
578
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
577
579
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
578
580
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
579
581
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1242,6 +1244,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1242
1244
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1243
1245
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1244
1246
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1247
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1245
1248
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1246
1249
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1247
1250
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -259,6 +259,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
259
259
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
260
260
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
261
261
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
262
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
262
263
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
263
264
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
264
265
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -194,6 +194,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
194
194
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
195
195
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
196
196
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
197
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
197
198
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
198
199
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
199
200
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -844,6 +844,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
844
844
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
845
845
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
846
846
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
847
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
847
848
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
848
849
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
849
850
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -260,6 +260,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
260
260
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
261
261
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
262
262
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
263
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
263
264
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
264
265
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
265
266
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -219,6 +219,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
219
219
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
220
220
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
221
221
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
222
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
222
223
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
223
224
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
224
225
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts
CHANGED
|
@@ -306,6 +306,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
306
306
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
307
307
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
308
308
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
309
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
309
310
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
310
311
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
311
312
|
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
|
+
};
|
|
@@ -177,6 +177,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
177
177
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
178
178
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
179
179
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
180
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
180
181
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
181
182
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
182
183
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -175,6 +175,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
175
175
|
readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
176
176
|
readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
177
177
|
readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
178
|
+
readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
178
179
|
readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
179
180
|
readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
180
181
|
readonly FA_MESSAGE_QUESTION_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|