@bethinkpl/design-system 22.2.0 → 22.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.storybook/manager.js +3 -1
- package/dist/design-system.umd.js +3960 -154
- package/dist/design-system.umd.js.map +1 -1
- package/dist/lib/js/components/Banner/Banner.vue.d.ts +3 -0
- package/dist/lib/js/components/Buttons/Button/Button.vue.d.ts +3 -0
- package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +3 -0
- package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +3 -0
- package/dist/lib/js/components/Chip/Chip.vue.d.ts +3 -0
- package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.consts.d.ts +26 -0
- package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.stories.d.ts +5 -0
- package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +107 -0
- package/dist/lib/js/components/DatePickers/DatePicker/index.d.ts +3 -0
- package/dist/lib/js/components/DatePickers/DatePickerBox/DatePickerBox.vue.d.ts +268 -0
- package/dist/lib/js/components/DatePickers/DatePickerBox/index.d.ts +2 -0
- package/dist/lib/js/components/Drawer/DrawerHeader/DrawerHeader.vue.d.ts +3 -288
- package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +3 -234
- package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +3 -0
- package/dist/lib/js/components/Drawer/DrawerTile/DrawerTile.vue.d.ts +6 -2
- package/dist/lib/js/components/Form/Checkbox/Checkbox.vue.d.ts +3 -0
- package/dist/lib/js/components/Form/RadioButton/RadioButton.vue.d.ts +3 -0
- package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +3 -0
- package/dist/lib/js/components/Headers/SectionHeader/SectionHeader.vue.d.ts +3 -0
- package/dist/lib/js/components/Icons/Icon/Icon.consts.d.ts +3 -0
- package/dist/lib/js/components/Modal/Modal.vue.d.ts +3 -0
- package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +3 -0
- package/dist/lib/js/components/Outline/OutlineItem/OutlineItem.vue.d.ts +3 -0
- package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +3 -0
- package/dist/lib/js/components/ProgressBar/ProgressBar.vue.d.ts +3 -0
- package/dist/lib/js/components/ProgressDonutChart/ProgressDonutChart.vue.d.ts +3 -0
- package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +3 -0
- package/dist/lib/js/components/SelectList/SelectList.vue.d.ts +3 -4
- package/dist/lib/js/components/SelectList/SelectListItem/SelectListItem.vue.d.ts +3 -264
- package/dist/lib/js/components/SelectList/SelectListItemDivider/SelectListItemDivider.vue.d.ts +3 -8
- package/dist/lib/js/components/SelectList/SelectListItemTile/SelectListItemTile.vue.d.ts +6 -2
- package/dist/lib/js/components/SelectionTile/SelectionTile.vue.d.ts +5 -2
- package/dist/lib/js/components/Statuses/AccessStatus/AccessStatus.vue.d.ts +3 -0
- package/dist/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue.d.ts +3 -0
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +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 +3 -0
- package/dist/lib/js/components/Tile/Tile.consts.d.ts +3 -0
- package/dist/lib/js/components/Tile/Tile.sb.shared.d.ts +3 -0
- package/dist/lib/js/components/Tile/Tile.shared.d.ts +8 -3
- package/dist/lib/js/components/Tile/Tile.vue.d.ts +9 -2
- package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +3 -0
- package/dist/lib/js/icons/fontawesome.d.ts +3 -0
- package/dist/lib/js/index.d.ts +58 -0
- package/dist/tools/importers/helpers/modifiers.d.ts +9 -0
- package/docs/166.463f1d4f.iframe.bundle.js +2 -0
- package/docs/{39.bfc720d8.iframe.bundle.js → 39.0fa13ab1.iframe.bundle.js} +2 -2
- package/docs/iframe.html +1 -1
- package/docs/index.html +1 -1
- package/docs/main.ec4e5d4f1933fc03f588.manager.bundle.js +1 -0
- package/docs/main.f33ff81a.iframe.bundle.js +2 -0
- package/docs/main.f33ff81a.iframe.bundle.js.LICENSE.txt +1 -0
- package/docs/project.json +1 -1
- package/docs/{runtime~main.b2826aa6.iframe.bundle.js → runtime~main.c8f2837a.iframe.bundle.js} +1 -1
- package/lib/js/components/DatePickers/DatePicker/DatePicker.consts.ts +33 -0
- package/lib/js/components/DatePickers/DatePicker/DatePicker.stories.ts +138 -0
- package/lib/js/components/DatePickers/DatePicker/DatePicker.vue +333 -0
- package/lib/js/components/DatePickers/DatePicker/index.ts +5 -0
- package/lib/js/components/DatePickers/DatePickerBox/DatePickerBox.vue +291 -0
- package/lib/js/components/DatePickers/DatePickerBox/index.ts +3 -0
- package/lib/js/components/Headers/OverlayHeader/OverlayHeader.stories.ts +1 -1
- package/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue +11 -4
- package/lib/js/components/Tile/Tile.consts.ts +6 -0
- package/lib/js/components/Tile/Tile.sb.shared.ts +2 -0
- package/lib/js/components/Tile/Tile.shared.ts +8 -4
- package/lib/js/components/Tile/Tile.vue +10 -0
- package/lib/js/icons/fontawesome.ts +6 -0
- package/lib/js/index.ts +58 -0
- package/package.json +7 -3
- package/docs/531.90dff866.iframe.bundle.js +0 -2
- package/docs/main.115da493.iframe.bundle.js +0 -1
- package/docs/main.44a93c1fb278828c899f.manager.bundle.js +0 -1
- /package/docs/{531.90dff866.iframe.bundle.js.LICENSE.txt → 166.463f1d4f.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/docs/{39.bfc720d8.iframe.bundle.js.LICENSE.txt → 39.0fa13ab1.iframe.bundle.js.LICENSE.txt} +0 -0
|
@@ -39,6 +39,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
39
39
|
readonly FA_BOX: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
40
40
|
readonly FA_BOX_ARCHIVE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
41
41
|
readonly FA_CALENDAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
42
|
+
readonly FA_CALENDAR_CLOCK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
42
43
|
readonly FA_CALENDAR_CIRCLE_EXCLAMATION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
43
44
|
readonly FA_CALENDAR_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
44
45
|
readonly FA_CALENDAR_DAY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -80,6 +81,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
80
81
|
readonly FA_COMMENTS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
81
82
|
readonly FA_COMMENTS_QUESTION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
82
83
|
readonly FA_COMMENTS_QUESTION_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
84
|
+
readonly FA_COMPASS_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
83
85
|
readonly FA_COMPRESS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
84
86
|
readonly FA_COPY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
85
87
|
readonly FA_CREDIT_CARD: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -95,6 +97,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
95
97
|
readonly FA_FACE_MEH: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
96
98
|
readonly FA_FACE_SMILE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
97
99
|
readonly FA_FACEBOOK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
100
|
+
readonly FA_FILE_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
98
101
|
readonly FA_FILE_INVOICE_DOLLAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
99
102
|
readonly FA_FILE_LINES: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
100
103
|
readonly FA_FILE_LINES_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -231,11 +234,11 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
231
234
|
onIconClick(event: Event): void;
|
|
232
235
|
onInputFocus(): void;
|
|
233
236
|
onInputBlur(): void;
|
|
234
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
237
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("icon-click" | "update:is-selected")[], "icon-click" | "update:is-selected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<readonly string[] | import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
|
235
238
|
[x: string]: unknown;
|
|
236
239
|
}>>>> & {
|
|
237
|
-
"onUpdate:is-selected"?: ((...args: any[]) => any) | undefined;
|
|
238
240
|
"onIcon-click"?: ((...args: any[]) => any) | undefined;
|
|
241
|
+
"onUpdate:is-selected"?: ((...args: any[]) => any) | undefined;
|
|
239
242
|
}, {
|
|
240
243
|
[x: number]: string;
|
|
241
244
|
} | {}>;
|
|
@@ -49,6 +49,7 @@ declare const _default: {
|
|
|
49
49
|
readonly FA_BOX: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
50
50
|
readonly FA_BOX_ARCHIVE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
51
51
|
readonly FA_CALENDAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
52
|
+
readonly FA_CALENDAR_CLOCK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
52
53
|
readonly FA_CALENDAR_CIRCLE_EXCLAMATION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
53
54
|
readonly FA_CALENDAR_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
54
55
|
readonly FA_CALENDAR_DAY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -90,6 +91,7 @@ declare const _default: {
|
|
|
90
91
|
readonly FA_COMMENTS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
91
92
|
readonly FA_COMMENTS_QUESTION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
92
93
|
readonly FA_COMMENTS_QUESTION_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
94
|
+
readonly FA_COMPASS_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
93
95
|
readonly FA_COMPRESS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
94
96
|
readonly FA_COPY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
95
97
|
readonly FA_CREDIT_CARD: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -105,6 +107,7 @@ declare const _default: {
|
|
|
105
107
|
readonly FA_FACE_MEH: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
106
108
|
readonly FA_FACE_SMILE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
107
109
|
readonly FA_FACEBOOK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
110
|
+
readonly FA_FILE_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
108
111
|
readonly FA_FILE_INVOICE_DOLLAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
109
112
|
readonly FA_FILE_LINES: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
110
113
|
readonly FA_FILE_LINES_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -49,6 +49,7 @@ declare const _default: {
|
|
|
49
49
|
readonly FA_BOX: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
50
50
|
readonly FA_BOX_ARCHIVE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
51
51
|
readonly FA_CALENDAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
52
|
+
readonly FA_CALENDAR_CLOCK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
52
53
|
readonly FA_CALENDAR_CIRCLE_EXCLAMATION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
53
54
|
readonly FA_CALENDAR_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
54
55
|
readonly FA_CALENDAR_DAY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -90,6 +91,7 @@ declare const _default: {
|
|
|
90
91
|
readonly FA_COMMENTS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
91
92
|
readonly FA_COMMENTS_QUESTION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
92
93
|
readonly FA_COMMENTS_QUESTION_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
94
|
+
readonly FA_COMPASS_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
93
95
|
readonly FA_COMPRESS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
94
96
|
readonly FA_COPY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
95
97
|
readonly FA_CREDIT_CARD: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -105,6 +107,7 @@ declare const _default: {
|
|
|
105
107
|
readonly FA_FACE_MEH: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
106
108
|
readonly FA_FACE_SMILE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
107
109
|
readonly FA_FACEBOOK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
110
|
+
readonly FA_FILE_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
108
111
|
readonly FA_FILE_INVOICE_DOLLAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
109
112
|
readonly FA_FILE_LINES: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
110
113
|
readonly FA_FILE_LINES_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -69,6 +69,7 @@ declare const _default: {
|
|
|
69
69
|
readonly FA_BOX: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
70
70
|
readonly FA_BOX_ARCHIVE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
71
71
|
readonly FA_CALENDAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
72
|
+
readonly FA_CALENDAR_CLOCK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
72
73
|
readonly FA_CALENDAR_CIRCLE_EXCLAMATION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
73
74
|
readonly FA_CALENDAR_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
74
75
|
readonly FA_CALENDAR_DAY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -110,6 +111,7 @@ declare const _default: {
|
|
|
110
111
|
readonly FA_COMMENTS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
111
112
|
readonly FA_COMMENTS_QUESTION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
112
113
|
readonly FA_COMMENTS_QUESTION_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
114
|
+
readonly FA_COMPASS_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
113
115
|
readonly FA_COMPRESS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
114
116
|
readonly FA_COPY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
115
117
|
readonly FA_CREDIT_CARD: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -125,6 +127,7 @@ declare const _default: {
|
|
|
125
127
|
readonly FA_FACE_MEH: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
126
128
|
readonly FA_FACE_SMILE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
127
129
|
readonly FA_FACEBOOK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
130
|
+
readonly FA_FILE_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
128
131
|
readonly FA_FILE_INVOICE_DOLLAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
129
132
|
readonly FA_FILE_LINES: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
130
133
|
readonly FA_FILE_LINES_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ declare const _default: {
|
|
|
89
89
|
readonly FA_BOX: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
90
90
|
readonly FA_BOX_ARCHIVE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
91
91
|
readonly FA_CALENDAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
92
|
+
readonly FA_CALENDAR_CLOCK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
92
93
|
readonly FA_CALENDAR_CIRCLE_EXCLAMATION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
93
94
|
readonly FA_CALENDAR_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
94
95
|
readonly FA_CALENDAR_DAY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -130,6 +131,7 @@ declare const _default: {
|
|
|
130
131
|
readonly FA_COMMENTS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
131
132
|
readonly FA_COMMENTS_QUESTION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
132
133
|
readonly FA_COMMENTS_QUESTION_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
134
|
+
readonly FA_COMPASS_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
133
135
|
readonly FA_COMPRESS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
134
136
|
readonly FA_COPY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
135
137
|
readonly FA_CREDIT_CARD: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -145,6 +147,7 @@ declare const _default: {
|
|
|
145
147
|
readonly FA_FACE_MEH: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
146
148
|
readonly FA_FACE_SMILE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
147
149
|
readonly FA_FACEBOOK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
150
|
+
readonly FA_FILE_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
148
151
|
readonly FA_FILE_INVOICE_DOLLAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
149
152
|
readonly FA_FILE_LINES: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
150
153
|
readonly FA_FILE_LINES_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -86,6 +86,7 @@ declare const _default: {
|
|
|
86
86
|
readonly FA_BOX: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
87
87
|
readonly FA_BOX_ARCHIVE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
88
88
|
readonly FA_CALENDAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
89
|
+
readonly FA_CALENDAR_CLOCK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
89
90
|
readonly FA_CALENDAR_CIRCLE_EXCLAMATION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
90
91
|
readonly FA_CALENDAR_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
91
92
|
readonly FA_CALENDAR_DAY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -127,6 +128,7 @@ declare const _default: {
|
|
|
127
128
|
readonly FA_COMMENTS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
128
129
|
readonly FA_COMMENTS_QUESTION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
129
130
|
readonly FA_COMMENTS_QUESTION_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
131
|
+
readonly FA_COMPASS_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
130
132
|
readonly FA_COMPRESS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
131
133
|
readonly FA_COPY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
132
134
|
readonly FA_CREDIT_CARD: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -142,6 +144,7 @@ declare const _default: {
|
|
|
142
144
|
readonly FA_FACE_MEH: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
143
145
|
readonly FA_FACE_SMILE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
144
146
|
readonly FA_FACEBOOK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
147
|
+
readonly FA_FILE_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
145
148
|
readonly FA_FILE_INVOICE_DOLLAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
146
149
|
readonly FA_FILE_LINES: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
147
150
|
readonly FA_FILE_LINES_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Value } from '../../utils/type.utils';
|
|
1
2
|
export declare const TILE_COLORS: {
|
|
2
3
|
readonly NEUTRAL: "neutral";
|
|
3
4
|
readonly NEUTRAL_WEAK: "neutralWeak";
|
|
@@ -7,8 +8,10 @@ export declare const TILE_COLORS: {
|
|
|
7
8
|
readonly WARNING: "warning";
|
|
8
9
|
readonly INFO: "info";
|
|
9
10
|
};
|
|
11
|
+
export declare type TileColors = Value<typeof TILE_COLORS>;
|
|
10
12
|
export declare const TILE_STATES: {
|
|
11
13
|
readonly DEFAULT: "default";
|
|
12
14
|
readonly DISABLED: "disabled";
|
|
13
15
|
readonly LOADING: "loading";
|
|
14
16
|
};
|
|
17
|
+
export declare type TileStates = Value<typeof TILE_STATES>;
|
|
@@ -39,6 +39,7 @@ export declare const data: () => {
|
|
|
39
39
|
readonly FA_BOX: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
40
40
|
readonly FA_BOX_ARCHIVE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
41
41
|
readonly FA_CALENDAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
42
|
+
readonly FA_CALENDAR_CLOCK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
42
43
|
readonly FA_CALENDAR_CIRCLE_EXCLAMATION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
43
44
|
readonly FA_CALENDAR_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
44
45
|
readonly FA_CALENDAR_DAY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -80,6 +81,7 @@ export declare const data: () => {
|
|
|
80
81
|
readonly FA_COMMENTS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
81
82
|
readonly FA_COMMENTS_QUESTION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
82
83
|
readonly FA_COMMENTS_QUESTION_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
84
|
+
readonly FA_COMPASS_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
83
85
|
readonly FA_COMPRESS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
84
86
|
readonly FA_COPY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
85
87
|
readonly FA_CREDIT_CARD: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -95,6 +97,7 @@ export declare const data: () => {
|
|
|
95
97
|
readonly FA_FACE_MEH: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
96
98
|
readonly FA_FACE_SMILE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
97
99
|
readonly FA_FACEBOOK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
100
|
+
readonly FA_FILE_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
98
101
|
readonly FA_FILE_INVOICE_DOLLAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
99
102
|
readonly FA_FILE_LINES: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
100
103
|
readonly FA_FILE_LINES_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { TILE_STATES, TileColors, TileStates } from './Tile.consts';
|
|
2
3
|
import { Value } from '../../utils/type.utils';
|
|
3
4
|
export declare const props: {
|
|
4
5
|
interactive: {
|
|
@@ -15,6 +16,10 @@ export declare const props: {
|
|
|
15
16
|
default: null;
|
|
16
17
|
validator(iconRight: any): boolean;
|
|
17
18
|
};
|
|
19
|
+
isIconRightHiddenOnMobile: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
18
23
|
text: {
|
|
19
24
|
type: StringConstructor;
|
|
20
25
|
required: boolean;
|
|
@@ -28,7 +33,7 @@ export declare const props: {
|
|
|
28
33
|
default: null;
|
|
29
34
|
};
|
|
30
35
|
color: {
|
|
31
|
-
type:
|
|
36
|
+
type: PropType<TileColors>;
|
|
32
37
|
default: "neutral";
|
|
33
38
|
validator(color: any): boolean;
|
|
34
39
|
};
|
|
@@ -37,7 +42,7 @@ export declare const props: {
|
|
|
37
42
|
default: boolean;
|
|
38
43
|
};
|
|
39
44
|
state: {
|
|
40
|
-
type:
|
|
45
|
+
type: PropType<TileStates>;
|
|
41
46
|
default: "default";
|
|
42
47
|
validator(value: Value<typeof TILE_STATES>): boolean;
|
|
43
48
|
};
|
|
@@ -19,6 +19,10 @@ declare const _default: {
|
|
|
19
19
|
default: null;
|
|
20
20
|
validator(iconRight: any): boolean;
|
|
21
21
|
};
|
|
22
|
+
isIconRightHiddenOnMobile: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
22
26
|
text: {
|
|
23
27
|
type: StringConstructor;
|
|
24
28
|
required: boolean;
|
|
@@ -32,7 +36,7 @@ declare const _default: {
|
|
|
32
36
|
default: null;
|
|
33
37
|
};
|
|
34
38
|
color: {
|
|
35
|
-
type:
|
|
39
|
+
type: import("vue").PropType<import("./Tile.consts").TileColors>;
|
|
36
40
|
default: "neutral";
|
|
37
41
|
validator(color: any): boolean;
|
|
38
42
|
};
|
|
@@ -41,7 +45,7 @@ declare const _default: {
|
|
|
41
45
|
default: boolean;
|
|
42
46
|
};
|
|
43
47
|
state: {
|
|
44
|
-
type:
|
|
48
|
+
type: import("vue").PropType<import("./Tile.consts").TileStates>;
|
|
45
49
|
default: "default";
|
|
46
50
|
validator(value: import("../../utils/type.utils").Value<{
|
|
47
51
|
readonly DEFAULT: "default";
|
|
@@ -97,6 +101,7 @@ declare const _default: {
|
|
|
97
101
|
readonly FA_BOX: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
98
102
|
readonly FA_BOX_ARCHIVE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
99
103
|
readonly FA_CALENDAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
104
|
+
readonly FA_CALENDAR_CLOCK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
100
105
|
readonly FA_CALENDAR_CIRCLE_EXCLAMATION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
101
106
|
readonly FA_CALENDAR_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
102
107
|
readonly FA_CALENDAR_DAY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -138,6 +143,7 @@ declare const _default: {
|
|
|
138
143
|
readonly FA_COMMENTS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
139
144
|
readonly FA_COMMENTS_QUESTION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
140
145
|
readonly FA_COMMENTS_QUESTION_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
146
|
+
readonly FA_COMPASS_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
141
147
|
readonly FA_COMPRESS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
142
148
|
readonly FA_COPY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
143
149
|
readonly FA_CREDIT_CARD: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -153,6 +159,7 @@ declare const _default: {
|
|
|
153
159
|
readonly FA_FACE_MEH: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
154
160
|
readonly FA_FACE_SMILE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
155
161
|
readonly FA_FACEBOOK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
162
|
+
readonly FA_FILE_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
156
163
|
readonly FA_FILE_INVOICE_DOLLAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
157
164
|
readonly FA_FILE_LINES: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
158
165
|
readonly FA_FILE_LINES_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -104,6 +104,7 @@ declare const _default: {
|
|
|
104
104
|
readonly FA_BOX: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
105
105
|
readonly FA_BOX_ARCHIVE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
106
106
|
readonly FA_CALENDAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
107
|
+
readonly FA_CALENDAR_CLOCK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
107
108
|
readonly FA_CALENDAR_CIRCLE_EXCLAMATION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
108
109
|
readonly FA_CALENDAR_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
109
110
|
readonly FA_CALENDAR_DAY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -145,6 +146,7 @@ declare const _default: {
|
|
|
145
146
|
readonly FA_COMMENTS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
146
147
|
readonly FA_COMMENTS_QUESTION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
147
148
|
readonly FA_COMMENTS_QUESTION_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
149
|
+
readonly FA_COMPASS_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
148
150
|
readonly FA_COMPRESS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
149
151
|
readonly FA_COPY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
150
152
|
readonly FA_CREDIT_CARD: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -160,6 +162,7 @@ declare const _default: {
|
|
|
160
162
|
readonly FA_FACE_MEH: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
161
163
|
readonly FA_FACE_SMILE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
162
164
|
readonly FA_FACEBOOK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
165
|
+
readonly FA_FILE_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
163
166
|
readonly FA_FILE_INVOICE_DOLLAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
164
167
|
readonly FA_FILE_LINES: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
165
168
|
readonly FA_FILE_LINES_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -30,6 +30,7 @@ export declare const FONTAWESOME_ICONS: {
|
|
|
30
30
|
readonly FA_BOX: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
31
31
|
readonly FA_BOX_ARCHIVE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
32
32
|
readonly FA_CALENDAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
33
|
+
readonly FA_CALENDAR_CLOCK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
33
34
|
readonly FA_CALENDAR_CIRCLE_EXCLAMATION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
34
35
|
readonly FA_CALENDAR_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
35
36
|
readonly FA_CALENDAR_DAY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -71,6 +72,7 @@ export declare const FONTAWESOME_ICONS: {
|
|
|
71
72
|
readonly FA_COMMENTS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
72
73
|
readonly FA_COMMENTS_QUESTION: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
73
74
|
readonly FA_COMMENTS_QUESTION_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
75
|
+
readonly FA_COMPASS_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
74
76
|
readonly FA_COMPRESS: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
75
77
|
readonly FA_COPY: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
76
78
|
readonly FA_CREDIT_CARD: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -86,6 +88,7 @@ export declare const FONTAWESOME_ICONS: {
|
|
|
86
88
|
readonly FA_FACE_MEH: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
87
89
|
readonly FA_FACE_SMILE: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
88
90
|
readonly FA_FACEBOOK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
91
|
+
readonly FA_FILE_CHECK: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
89
92
|
readonly FA_FILE_INVOICE_DOLLAR: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
90
93
|
readonly FA_FILE_LINES: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
91
94
|
readonly FA_FILE_LINES_SOLID: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
package/dist/lib/js/index.d.ts
CHANGED
|
@@ -1,99 +1,157 @@
|
|
|
1
1
|
export { default as BadgeScore } from './components/BadgeScore';
|
|
2
|
+
export { default as DsBadgeScore } from './components/BadgeScore';
|
|
2
3
|
export * from './components/BadgeScore/BadgeScore.consts';
|
|
3
4
|
export { default as Banner } from './components/Banner';
|
|
5
|
+
export { default as DsBanner } from './components/Banner';
|
|
4
6
|
export * from './components/Banner/Banner.consts';
|
|
5
7
|
export { default as Button } from './components/Buttons/Button';
|
|
8
|
+
export { default as DsButton } from './components/Buttons/Button';
|
|
6
9
|
export * from './components/Buttons/Button/Button.consts';
|
|
7
10
|
export { default as ToggleButton } from './components/Toggles/ToggleButton';
|
|
11
|
+
export { default as DsToggleButton } from './components/Toggles/ToggleButton';
|
|
8
12
|
export * from './components/Toggles/ToggleButton/ToggleButton.consts';
|
|
9
13
|
export { default as Card } from './components/Cards/Card/';
|
|
14
|
+
export { default as DsCard } from './components/Cards/Card/';
|
|
10
15
|
export { default as CardExpandable } from './components/Cards/CardExpandable/';
|
|
16
|
+
export { default as DsCardExpandable } from './components/Cards/CardExpandable/';
|
|
17
|
+
export { default as DatePicker } from './components/DatePickers/DatePicker';
|
|
18
|
+
export { default as DsDatePicker } from './components/DatePickers/DatePicker';
|
|
19
|
+
export * from './components/DatePickers/DatePicker';
|
|
11
20
|
export { default as Divider } from './components/Divider';
|
|
21
|
+
export { default as DsDivider } from './components/Divider';
|
|
12
22
|
export * from './components/Divider/Divider.consts';
|
|
13
23
|
export { default as FeatureIcon } from './components/Icons/FeatureIcon';
|
|
24
|
+
export { default as DsFeatureIcon } from './components/Icons/FeatureIcon';
|
|
14
25
|
export * from './components/Icons/FeatureIcon/FeatureIcon.consts';
|
|
15
26
|
export { default as Icon } from './components/Icons/Icon';
|
|
27
|
+
export { default as DsIcon } from './components/Icons/Icon';
|
|
16
28
|
export * from './components/Icons/Icon/Icon.consts';
|
|
17
29
|
export { default as IconButton } from './components/Buttons/IconButton';
|
|
30
|
+
export { default as DsIconButton } from './components/Buttons/IconButton';
|
|
18
31
|
export * from './components/Buttons/IconButton/IconButton.consts';
|
|
19
32
|
export { default as Modal } from './components/Modal';
|
|
20
33
|
export { default as DsModal } from './components/Modals/Modal';
|
|
21
34
|
export * from './components/Modals/Modal/Modal.consts';
|
|
22
35
|
export { default as DsModalDialog } from './components/Modals/ModalDialog';
|
|
23
36
|
export { default as NumberInCircle } from './components/NumberInCircle';
|
|
37
|
+
export { default as DsNumberInCircle } from './components/NumberInCircle';
|
|
24
38
|
export * from './components/NumberInCircle/NumberInCircle.consts';
|
|
25
39
|
export { default as TabItem } from './components/TabItem';
|
|
40
|
+
export { default as DsTabItem } from './components/TabItem';
|
|
26
41
|
export * from './components/TabItem/TabItem.consts';
|
|
27
42
|
export { default as Tile } from './components/Tile';
|
|
43
|
+
export { default as DsTile } from './components/Tile';
|
|
28
44
|
export * from './components/Tile/Tile.consts';
|
|
29
45
|
export { default as AccessStatus } from './components/Statuses/AccessStatus/';
|
|
46
|
+
export { default as DsAccessStatus } from './components/Statuses/AccessStatus/';
|
|
30
47
|
export { default as BlockadeStatus } from './components/Statuses/BlockadeStatus/';
|
|
48
|
+
export { default as DsBlockadeStatus } from './components/Statuses/BlockadeStatus/';
|
|
31
49
|
export * from './consts/colors';
|
|
32
50
|
export { default as SurveyToggle } from './components/SurveyToggle/';
|
|
51
|
+
export { default as DsSurveyToggle } from './components/SurveyToggle/';
|
|
33
52
|
export * from './components/SurveyToggle/SurveyToggle.consts';
|
|
34
53
|
export { default as SurveyQuestionScale } from './components/SurveyQuestions/SurveyQuestionScale/';
|
|
54
|
+
export { default as DsSurveyQuestionScale } from './components/SurveyQuestions/SurveyQuestionScale/';
|
|
35
55
|
export { default as SurveyQuestionOpenEnded } from './components/SurveyQuestions/SurveyQuestionOpenEnded/';
|
|
56
|
+
export { default as DsSurveyQuestionOpenEnded } from './components/SurveyQuestions/SurveyQuestionOpenEnded/';
|
|
36
57
|
export * from './components/SurveyQuestions/SurveyQuestion.consts';
|
|
37
58
|
export * from './components/SurveyQuestions/SurveyQuestion.domain';
|
|
38
59
|
export { default as SectionHeader } from './components/Headers/SectionHeader';
|
|
60
|
+
export { default as DsSectionHeader } from './components/Headers/SectionHeader';
|
|
39
61
|
export * from './components/Headers/SectionHeader/SectionHeader.consts';
|
|
40
62
|
export { default as PageHeader } from './components/Headers/PageHeader';
|
|
63
|
+
export { default as DsPageHeader } from './components/Headers/PageHeader';
|
|
41
64
|
export * from './components/Headers/PageHeader/PageHeader.consts';
|
|
42
65
|
export { default as SectionTitle } from './components/SectionTitle/SectionTitle.vue';
|
|
66
|
+
export { default as DsSectionTitle } from './components/SectionTitle/SectionTitle.vue';
|
|
43
67
|
export * from './components/SectionTitle/SectionTitle.consts';
|
|
44
68
|
export { default as Drawer } from './components/Drawer';
|
|
69
|
+
export { default as DsDrawer } from './components/Drawer';
|
|
45
70
|
export * from './components/Drawer/Drawer.consts';
|
|
46
71
|
export { default as DrawerContent } from './components/Drawer/DrawerContent/DrawerContent.vue';
|
|
72
|
+
export { default as DsDrawerContent } from './components/Drawer/DrawerContent/DrawerContent.vue';
|
|
47
73
|
export { default as DrawerDivider } from './components/Drawer/DrawerDivider/DrawerDivider.vue';
|
|
74
|
+
export { default as DsDrawerDivider } from './components/Drawer/DrawerDivider/DrawerDivider.vue';
|
|
48
75
|
export { default as DrawerHeader } from './components/Drawer/DrawerHeader/DrawerHeader.vue';
|
|
76
|
+
export { default as DsDrawerHeader } from './components/Drawer/DrawerHeader/DrawerHeader.vue';
|
|
49
77
|
export * from './components/Drawer/DrawerHeader/DrawerHeader.consts';
|
|
50
78
|
export { default as DrawerListItem } from './components/Drawer/DrawerListItem/DrawerListItem.vue';
|
|
79
|
+
export { default as DsDrawerListItem } from './components/Drawer/DrawerListItem/DrawerListItem.vue';
|
|
51
80
|
export { default as DrawerListItemGroup } from './components/Drawer/DrawerListItemGroup/DrawerListItemGroup.vue';
|
|
81
|
+
export { default as DsDrawerListItemGroup } from './components/Drawer/DrawerListItemGroup/DrawerListItemGroup.vue';
|
|
52
82
|
export * from './components/Drawer/DrawerListItem/DrawerListItem.consts';
|
|
53
83
|
export { default as DrawerTile } from './components/Drawer/DrawerTile/DrawerTile.vue';
|
|
84
|
+
export { default as DsDrawerTile } from './components/Drawer/DrawerTile/DrawerTile.vue';
|
|
54
85
|
export { default as DrawerSection } from './components/Drawer/DrawerSection/DrawerSection.vue';
|
|
86
|
+
export { default as DsDrawerSection } from './components/Drawer/DrawerSection/DrawerSection.vue';
|
|
55
87
|
export { default as OutlineItem } from './components/Outline/OutlineItem';
|
|
88
|
+
export { default as DsOutlineItem } from './components/Outline/OutlineItem';
|
|
56
89
|
export * from './components/Outline/OutlineItem/OutlineItem.consts';
|
|
57
90
|
export { default as OutlineDivider } from './components/Outline/OutlineDivider';
|
|
91
|
+
export { default as DsOutlineDivider } from './components/Outline/OutlineDivider';
|
|
58
92
|
export { default as OutlineSectionHeader } from './components/Outline/OutlineSectionHeader';
|
|
93
|
+
export { default as DsOutlineSectionHeader } from './components/Outline/OutlineSectionHeader';
|
|
59
94
|
export { default as Chip } from './components/Chip';
|
|
95
|
+
export { default as DsChip } from './components/Chip';
|
|
60
96
|
export * from './components/Chip/Chip.consts';
|
|
61
97
|
export { default as CounterToggle } from './components/Toggles/CounterToggle';
|
|
98
|
+
export { default as DsCounterToggle } from './components/Toggles/CounterToggle';
|
|
62
99
|
export * from './components/Toggles/CounterToggle/CounterToggle.consts';
|
|
63
100
|
export { default as SelectList } from './components/SelectList/SelectList.vue';
|
|
101
|
+
export { default as DsSelectList } from './components/SelectList/SelectList.vue';
|
|
64
102
|
export { default as SelectListItem } from './components/SelectList/SelectListItem/SelectListItem.vue';
|
|
103
|
+
export { default as DsSelectListItem } from './components/SelectList/SelectListItem/SelectListItem.vue';
|
|
65
104
|
export { default as SelectListItemDivider } from './components/SelectList/SelectListItemDivider/SelectListItemDivider.vue';
|
|
105
|
+
export { default as DsSelectListItemDivider } from './components/SelectList/SelectListItemDivider/SelectListItemDivider.vue';
|
|
66
106
|
export { default as SelectListItemToggle } from './components/SelectList/SelectListItemToggle/SelectListItemToggle.vue';
|
|
107
|
+
export { default as DsSelectListItemToggle } from './components/SelectList/SelectListItemToggle/SelectListItemToggle.vue';
|
|
67
108
|
export { default as SelectListItemTile } from './components/SelectList/SelectListItemTile/SelectListItemTile.vue';
|
|
109
|
+
export { default as DsSelectListItemTile } from './components/SelectList/SelectListItemTile/SelectListItemTile.vue';
|
|
68
110
|
export { default as SelectListSectionTitle } from './components/SelectList/SelectListSectionTitle/SelectListSectionTitle.vue';
|
|
111
|
+
export { default as DsSelectListSectionTitle } from './components/SelectList/SelectListSectionTitle/SelectListSectionTitle.vue';
|
|
69
112
|
export * from './components/SelectList/SelectListItem/SelectListItem.consts';
|
|
70
113
|
export { default as SelectionTile } from './components/SelectionTile';
|
|
114
|
+
export { default as DsSelectionTile } from './components/SelectionTile';
|
|
71
115
|
export * from './components/SelectionTile';
|
|
72
116
|
export { default as LoadingBar } from './components/LoadingBar';
|
|
117
|
+
export { default as DsLoadingBar } from './components/LoadingBar';
|
|
73
118
|
export * from './components/LoadingBar';
|
|
74
119
|
export { default as PopOver } from './components/PopOver';
|
|
120
|
+
export { default as DsPopOver } from './components/PopOver';
|
|
75
121
|
export * from './components/PopOver/PopOver.consts';
|
|
76
122
|
export { default as Dropdown } from './components/Dropdown';
|
|
123
|
+
export { default as DsDropdown } from './components/Dropdown';
|
|
77
124
|
export * from './components/Dropdown/Dropdown.consts';
|
|
78
125
|
export { default as ProgressBar } from './components/ProgressBar';
|
|
126
|
+
export { default as DsProgressBar } from './components/ProgressBar';
|
|
79
127
|
export * from './components/ProgressBar/ProgressBar.consts';
|
|
80
128
|
export { default as ProgressDonutChart } from './components/ProgressDonutChart';
|
|
129
|
+
export { default as DsProgressDonutChart } from './components/ProgressDonutChart';
|
|
81
130
|
export * from './components/ProgressDonutChart/ProgressDonutChart.consts';
|
|
82
131
|
export { default as IconText } from './components/IconText';
|
|
132
|
+
export { default as DsIconText } from './components/IconText';
|
|
83
133
|
export * from './components/IconText/IconText.consts';
|
|
84
134
|
export { default as Pagination } from './components/Pagination';
|
|
135
|
+
export { default as DsPagination } from './components/Pagination';
|
|
85
136
|
export * from './components/Pagination/Pagination.consts';
|
|
86
137
|
export { default as OverlayHeader } from './components/Headers/OverlayHeader';
|
|
138
|
+
export { default as DsOverlayHeader } from './components/Headers/OverlayHeader';
|
|
87
139
|
export * from './components/Headers/OverlayHeader/OverlayHeader.consts';
|
|
88
140
|
export { default as Well } from './components/Well';
|
|
141
|
+
export { default as DsWell } from './components/Well';
|
|
89
142
|
export * from './components/Well/Well.consts';
|
|
90
143
|
export { default as ThreeColumnLayout } from './components/Layouts/ThreeColumnLayout';
|
|
144
|
+
export { default as DsThreeColumnLayout } from './components/Layouts/ThreeColumnLayout';
|
|
91
145
|
export * from './components/Layouts/ThreeColumnLayout/ThreeColumnLayout.consts';
|
|
92
146
|
export { default as RichListItem } from './components/RichList/RichListItem';
|
|
147
|
+
export { default as DsRichListItem } from './components/RichList/RichListItem';
|
|
93
148
|
export * from './components/RichList/RichListItem/RichListItem.consts';
|
|
94
149
|
export { default as BasicRichListItem } from './components/RichList/BasicRichListItem';
|
|
150
|
+
export { default as DsBasicRichListItem } from './components/RichList/BasicRichListItem';
|
|
95
151
|
export { default as GroupRichListItem } from './components/RichList/GroupRichListItem';
|
|
152
|
+
export { default as DsGroupRichListItem } from './components/RichList/GroupRichListItem';
|
|
96
153
|
export { default as Switch } from './components/Switch';
|
|
154
|
+
export { default as DsSwitch } from './components/Switch';
|
|
97
155
|
export * from './components/Switch/Switch.consts';
|
|
98
156
|
export { default as DsTooltip } from './components/Tooltip';
|
|
99
157
|
export * from './components/Tooltip/Tooltip.consts';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const pascalCase: (str: string) => string;
|
|
2
|
+
export declare const capitalizeFirstLetter: (str: string) => string;
|
|
3
|
+
export declare const camelize: (str: string) => string;
|
|
4
|
+
export declare const kebabize: (str: any) => any;
|
|
5
|
+
export declare const cssFileFirstLine: (isTheme: boolean, themeName: string | undefined) => string;
|
|
6
|
+
export declare const cssFileRootFirstLine: () => string;
|
|
7
|
+
export declare const mixinNameLine: (token: string) => string;
|
|
8
|
+
export declare const tokenAsCssPropertyLine: (token: string) => string;
|
|
9
|
+
export declare const closeBracketLine: () => string;
|