@helsenorge/designsystem-react 13.0.0-workspaces-beta.5 → 13.0.0-workspaces-beta.6
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/lib/Button.js +1 -1
- package/lib/Button.js.map +1 -1
- package/lib/CHANGELOG.md +2 -0
- package/lib/DictionaryTrigger.js +1 -1
- package/lib/DictionaryTrigger.js.map +1 -1
- package/lib/Drawer.js +1 -1
- package/lib/Drawer.js.map +1 -1
- package/lib/HelpTriggerIcon.js +1 -1
- package/lib/HelpTriggerIcon.js.map +1 -1
- package/lib/HelpTriggerStandalone.js +1 -1
- package/lib/HelpTriggerStandalone.js.map +1 -1
- package/lib/Highlighter.js +1 -1
- package/lib/Highlighter.js.map +1 -1
- package/lib/HorizontalScroll.js +1 -1
- package/lib/HorizontalScroll.js.map +1 -1
- package/lib/Icon.js +1 -1
- package/lib/Icon.js.map +1 -1
- package/lib/Illustration.js +1 -1
- package/lib/Illustration.js.map +1 -1
- package/lib/Input.js +1 -1
- package/lib/Input.js.map +1 -1
- package/lib/LazyIcon.js +1 -1
- package/lib/LazyIcon.js.map +1 -1
- package/lib/LazyIllustration.js +1 -1
- package/lib/LazyIllustration.js.map +1 -1
- package/lib/LinkList.js +1 -1
- package/lib/LinkList.js.map +1 -1
- package/lib/RadioButton.js +1 -1
- package/lib/RadioButton.js.map +1 -1
- package/lib/Select.js +1 -1
- package/lib/Select.js.map +1 -1
- package/lib/SingleSelectItem.js +1 -1
- package/lib/SingleSelectItem.js.map +1 -1
- package/lib/Slider.js +1 -1
- package/lib/Slider.js.map +1 -1
- package/lib/Table.js +1 -1
- package/lib/Table.js.map +1 -1
- package/lib/TableBody.js +1 -1
- package/lib/TableBody.js.map +1 -1
- package/lib/TableCell.js +1 -1
- package/lib/TableCell.js.map +1 -1
- package/lib/TableHead.js +1 -1
- package/lib/TableHead.js.map +1 -1
- package/lib/TableHeadCell.js +1 -1
- package/lib/TableHeadCell.js.map +1 -1
- package/lib/TableRow.js +1 -1
- package/lib/TableRow.js.map +1 -1
- package/lib/Textarea.js +1 -1
- package/lib/Textarea.js.map +1 -1
- package/lib/components/FavoriteButton/index.js +1 -1
- package/lib/components/FavoriteButton/index.js.map +1 -1
- package/lib/components/HelpTriggerInline/index.js +1 -1
- package/lib/components/HelpTriggerInline/index.js.map +1 -1
- package/lib/components/Illustrations/BabyMobile.js +1 -1
- package/lib/components/Illustrations/BabyMobile.js.map +1 -1
- package/lib/components/Illustrations/Child.js +1 -1
- package/lib/components/Illustrations/Child.js.map +1 -1
- package/lib/components/Illustrations/Doctor.js +1 -1
- package/lib/components/Illustrations/Doctor.js.map +1 -1
- package/lib/components/Illustrations/FacialRecognitionFingerprint.js +1 -1
- package/lib/components/Illustrations/FacialRecognitionFingerprint.js.map +1 -1
- package/lib/components/Illustrations/GiveBabyFood.js +1 -1
- package/lib/components/Illustrations/GiveBabyFood.js.map +1 -1
- package/lib/components/Illustrations/HealthcarePersonnel.js +1 -1
- package/lib/components/Illustrations/HealthcarePersonnel.js.map +1 -1
- package/lib/components/Illustrations/ReadLetters.js +1 -1
- package/lib/components/Illustrations/ReadLetters.js.map +1 -1
- package/lib/components/Illustrations/Stroller.js +1 -1
- package/lib/components/Illustrations/Stroller.js.map +1 -1
- package/lib/components/Illustrations/Support2.js +1 -1
- package/lib/components/Illustrations/Support2.js.map +1 -1
- package/lib/components/StickyNote/index.js +1 -1
- package/lib/components/StickyNote/index.js.map +1 -1
- package/lib/floating-ui.react.js +6 -6
- package/lib/floating-ui.react.js.map +1 -1
- package/package.json +614 -9
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@helsenorge/designsystem-react",
|
|
3
3
|
"sideEffects": false,
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "13.0.0-workspaces-beta.
|
|
5
|
+
"version": "13.0.0-workspaces-beta.6",
|
|
6
6
|
"description": "The official design system for Helsenorge built with React.",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -29,7 +29,9 @@
|
|
|
29
29
|
"exports": {
|
|
30
30
|
".": {
|
|
31
31
|
"types": "./lib/index.d.ts",
|
|
32
|
-
"import": "./lib/index.js"
|
|
32
|
+
"import": "./lib/index.js",
|
|
33
|
+
"require": "./lib/index.js",
|
|
34
|
+
"default": "./lib/index.js"
|
|
33
35
|
},
|
|
34
36
|
"./components/Icons/*": {
|
|
35
37
|
"types": "./lib/components/Icons/*.d.ts",
|
|
@@ -39,11 +41,6 @@
|
|
|
39
41
|
"types": "./lib/components/Illustrations/*.d.ts",
|
|
40
42
|
"import": "./lib/components/Illustrations/*.js"
|
|
41
43
|
},
|
|
42
|
-
"./components/*/*": {
|
|
43
|
-
"types": "./lib/components/*/*.d.ts",
|
|
44
|
-
"import": "./lib/components/*/index.js"
|
|
45
|
-
},
|
|
46
|
-
"./components/*/*.scss": "./lib/components/*/*.scss",
|
|
47
44
|
"./components/*": {
|
|
48
45
|
"types": "./lib/components/*/index.d.ts",
|
|
49
46
|
"import": "./lib/components/*/index.js"
|
|
@@ -70,9 +67,617 @@
|
|
|
70
67
|
},
|
|
71
68
|
"./scss/*": {
|
|
72
69
|
"types": "./lib/scss/*.d.ts",
|
|
73
|
-
"import": "./
|
|
70
|
+
"import": "./scss/*",
|
|
71
|
+
"require": "./scss/*",
|
|
72
|
+
"default": "./scss/*"
|
|
73
|
+
},
|
|
74
|
+
"./fonts/*": "./lib/fonts/*",
|
|
75
|
+
"./components/AnchorLink/AnchorLink": {
|
|
76
|
+
"types": "./lib/components/AnchorLink/AnchorLink.d.ts",
|
|
77
|
+
"import": "./lib/components/AnchorLink/index.js",
|
|
78
|
+
"require": "./lib/components/AnchorLink/index.js",
|
|
79
|
+
"default": "./lib/components/AnchorLink/index.js"
|
|
80
|
+
},
|
|
81
|
+
"./components/ArticleTeaser/ArticleTeaser": {
|
|
82
|
+
"types": "./lib/components/ArticleTeaser/ArticleTeaser.d.ts",
|
|
83
|
+
"import": "./lib/components/ArticleTeaser/index.js",
|
|
84
|
+
"require": "./lib/components/ArticleTeaser/index.js",
|
|
85
|
+
"default": "./lib/components/ArticleTeaser/index.js"
|
|
86
|
+
},
|
|
87
|
+
"./components/AsChildSlot/AsChildSlot": {
|
|
88
|
+
"types": "./lib/components/AsChildSlot/AsChildSlot.d.ts",
|
|
89
|
+
"import": "./lib/components/AsChildSlot/index.js",
|
|
90
|
+
"require": "./lib/components/AsChildSlot/index.js",
|
|
91
|
+
"default": "./lib/components/AsChildSlot/index.js"
|
|
92
|
+
},
|
|
93
|
+
"./components/Avatar/Avatar": {
|
|
94
|
+
"types": "./lib/components/Avatar/Avatar.d.ts",
|
|
95
|
+
"import": "./lib/components/Avatar/index.js",
|
|
96
|
+
"require": "./lib/components/Avatar/index.js",
|
|
97
|
+
"default": "./lib/components/Avatar/index.js"
|
|
98
|
+
},
|
|
99
|
+
"./components/Badge/Badge": {
|
|
100
|
+
"types": "./lib/components/Badge/Badge.d.ts",
|
|
101
|
+
"import": "./lib/components/Badge/index.js",
|
|
102
|
+
"require": "./lib/components/Badge/index.js",
|
|
103
|
+
"default": "./lib/components/Badge/index.js"
|
|
104
|
+
},
|
|
105
|
+
"./components/Badge/NotificationBadge": {
|
|
106
|
+
"types": "./lib/components/Badge/NotificationBadge.d.ts",
|
|
107
|
+
"import": "./lib/components/Badge/index.js",
|
|
108
|
+
"require": "./lib/components/Badge/index.js",
|
|
109
|
+
"default": "./lib/components/Badge/index.js"
|
|
110
|
+
},
|
|
111
|
+
"./components/Button/Button": {
|
|
112
|
+
"types": "./lib/components/Button/Button.d.ts",
|
|
113
|
+
"import": "./lib/components/Button/index.js",
|
|
114
|
+
"require": "./lib/components/Button/index.js",
|
|
115
|
+
"default": "./lib/components/Button/index.js"
|
|
116
|
+
},
|
|
117
|
+
"./components/Checkbox/Checkbox": {
|
|
118
|
+
"types": "./lib/components/Checkbox/Checkbox.d.ts",
|
|
119
|
+
"import": "./lib/components/Checkbox/index.js",
|
|
120
|
+
"require": "./lib/components/Checkbox/index.js",
|
|
121
|
+
"default": "./lib/components/Checkbox/index.js"
|
|
122
|
+
},
|
|
123
|
+
"./components/Chip/Chip": {
|
|
124
|
+
"types": "./lib/components/Chip/Chip.d.ts",
|
|
125
|
+
"import": "./lib/components/Chip/index.js",
|
|
126
|
+
"require": "./lib/components/Chip/index.js",
|
|
127
|
+
"default": "./lib/components/Chip/index.js"
|
|
128
|
+
},
|
|
129
|
+
"./components/Close/Close": {
|
|
130
|
+
"types": "./lib/components/Close/Close.d.ts",
|
|
131
|
+
"import": "./lib/components/Close/index.js",
|
|
132
|
+
"require": "./lib/components/Close/index.js",
|
|
133
|
+
"default": "./lib/components/Close/index.js"
|
|
134
|
+
},
|
|
135
|
+
"./components/DictionaryTrigger/DictionaryTrigger": {
|
|
136
|
+
"types": "./lib/components/DictionaryTrigger/DictionaryTrigger.d.ts",
|
|
137
|
+
"import": "./lib/components/DictionaryTrigger/index.js",
|
|
138
|
+
"require": "./lib/components/DictionaryTrigger/index.js",
|
|
139
|
+
"default": "./lib/components/DictionaryTrigger/index.js"
|
|
140
|
+
},
|
|
141
|
+
"./components/Drawer/Drawer": {
|
|
142
|
+
"types": "./lib/components/Drawer/Drawer.d.ts",
|
|
143
|
+
"import": "./lib/components/Drawer/index.js",
|
|
144
|
+
"require": "./lib/components/Drawer/index.js",
|
|
145
|
+
"default": "./lib/components/Drawer/index.js"
|
|
146
|
+
},
|
|
147
|
+
"./components/Dropdown/Dropdown": {
|
|
148
|
+
"types": "./lib/components/Dropdown/Dropdown.d.ts",
|
|
149
|
+
"import": "./lib/components/Dropdown/index.js",
|
|
150
|
+
"require": "./lib/components/Dropdown/index.js",
|
|
151
|
+
"default": "./lib/components/Dropdown/index.js"
|
|
152
|
+
},
|
|
153
|
+
"./components/DropdownOld/DropdownOld": {
|
|
154
|
+
"types": "./lib/components/DropdownOld/DropdownOld.d.ts",
|
|
155
|
+
"import": "./lib/components/DropdownOld/index.js",
|
|
156
|
+
"require": "./lib/components/DropdownOld/index.js",
|
|
157
|
+
"default": "./lib/components/DropdownOld/index.js"
|
|
158
|
+
},
|
|
159
|
+
"./components/Duolist/Duolist": {
|
|
160
|
+
"types": "./lib/components/Duolist/Duolist.d.ts",
|
|
161
|
+
"import": "./lib/components/Duolist/index.js",
|
|
162
|
+
"require": "./lib/components/Duolist/index.js",
|
|
163
|
+
"default": "./lib/components/Duolist/index.js"
|
|
164
|
+
},
|
|
165
|
+
"./components/ElementHeader/ElementHeader": {
|
|
166
|
+
"types": "./lib/components/ElementHeader/ElementHeader.d.ts",
|
|
167
|
+
"import": "./lib/components/ElementHeader/index.js",
|
|
168
|
+
"require": "./lib/components/ElementHeader/index.js",
|
|
169
|
+
"default": "./lib/components/ElementHeader/index.js"
|
|
170
|
+
},
|
|
171
|
+
"./components/EmptyState/EmptyBoxBeeMedium": {
|
|
172
|
+
"types": "./lib/components/EmptyState/EmptyBoxBeeMedium.d.ts",
|
|
173
|
+
"import": "./lib/components/EmptyState/index.js",
|
|
174
|
+
"require": "./lib/components/EmptyState/index.js",
|
|
175
|
+
"default": "./lib/components/EmptyState/index.js"
|
|
176
|
+
},
|
|
177
|
+
"./components/EmptyState/EmptyBoxBeeSmall": {
|
|
178
|
+
"types": "./lib/components/EmptyState/EmptyBoxBeeSmall.d.ts",
|
|
179
|
+
"import": "./lib/components/EmptyState/index.js",
|
|
180
|
+
"require": "./lib/components/EmptyState/index.js",
|
|
181
|
+
"default": "./lib/components/EmptyState/index.js"
|
|
182
|
+
},
|
|
183
|
+
"./components/EmptyState/EmptyState": {
|
|
184
|
+
"types": "./lib/components/EmptyState/EmptyState.d.ts",
|
|
185
|
+
"import": "./lib/components/EmptyState/index.js",
|
|
186
|
+
"require": "./lib/components/EmptyState/index.js",
|
|
187
|
+
"default": "./lib/components/EmptyState/index.js"
|
|
188
|
+
},
|
|
189
|
+
"./components/ErrorWrapper/ErrorWrapper": {
|
|
190
|
+
"types": "./lib/components/ErrorWrapper/ErrorWrapper.d.ts",
|
|
191
|
+
"import": "./lib/components/ErrorWrapper/index.js",
|
|
192
|
+
"require": "./lib/components/ErrorWrapper/index.js",
|
|
193
|
+
"default": "./lib/components/ErrorWrapper/index.js"
|
|
194
|
+
},
|
|
195
|
+
"./components/Expander/Expander": {
|
|
196
|
+
"types": "./lib/components/Expander/Expander.d.ts",
|
|
197
|
+
"import": "./lib/components/Expander/index.js",
|
|
198
|
+
"require": "./lib/components/Expander/index.js",
|
|
199
|
+
"default": "./lib/components/Expander/index.js"
|
|
200
|
+
},
|
|
201
|
+
"./components/ExpanderHierarchy/Expander": {
|
|
202
|
+
"types": "./lib/components/ExpanderHierarchy/Expander.d.ts",
|
|
203
|
+
"import": "./lib/components/ExpanderHierarchy/index.js",
|
|
204
|
+
"require": "./lib/components/ExpanderHierarchy/index.js",
|
|
205
|
+
"default": "./lib/components/ExpanderHierarchy/index.js"
|
|
206
|
+
},
|
|
207
|
+
"./components/ExpanderHierarchy/ExpanderButton": {
|
|
208
|
+
"types": "./lib/components/ExpanderHierarchy/ExpanderButton.d.ts",
|
|
209
|
+
"import": "./lib/components/ExpanderHierarchy/index.js",
|
|
210
|
+
"require": "./lib/components/ExpanderHierarchy/index.js",
|
|
211
|
+
"default": "./lib/components/ExpanderHierarchy/index.js"
|
|
212
|
+
},
|
|
213
|
+
"./components/ExpanderHierarchy/ExpanderHierarchy": {
|
|
214
|
+
"types": "./lib/components/ExpanderHierarchy/ExpanderHierarchy.d.ts",
|
|
215
|
+
"import": "./lib/components/ExpanderHierarchy/index.js",
|
|
216
|
+
"require": "./lib/components/ExpanderHierarchy/index.js",
|
|
217
|
+
"default": "./lib/components/ExpanderHierarchy/index.js"
|
|
218
|
+
},
|
|
219
|
+
"./components/ExpanderList/ExpanderList": {
|
|
220
|
+
"types": "./lib/components/ExpanderList/ExpanderList.d.ts",
|
|
221
|
+
"import": "./lib/components/ExpanderList/index.js",
|
|
222
|
+
"require": "./lib/components/ExpanderList/index.js",
|
|
223
|
+
"default": "./lib/components/ExpanderList/index.js"
|
|
224
|
+
},
|
|
225
|
+
"./components/EyebrowHeader/EyebrowHeader": {
|
|
226
|
+
"types": "./lib/components/EyebrowHeader/EyebrowHeader.d.ts",
|
|
227
|
+
"import": "./lib/components/EyebrowHeader/index.js",
|
|
228
|
+
"require": "./lib/components/EyebrowHeader/index.js",
|
|
229
|
+
"default": "./lib/components/EyebrowHeader/index.js"
|
|
230
|
+
},
|
|
231
|
+
"./components/FavoriteButton/FavoriteButton": {
|
|
232
|
+
"types": "./lib/components/FavoriteButton/FavoriteButton.d.ts",
|
|
233
|
+
"import": "./lib/components/FavoriteButton/index.js",
|
|
234
|
+
"require": "./lib/components/FavoriteButton/index.js",
|
|
235
|
+
"default": "./lib/components/FavoriteButton/index.js"
|
|
236
|
+
},
|
|
237
|
+
"./components/FavoriteButton/StarIcon": {
|
|
238
|
+
"types": "./lib/components/FavoriteButton/StarIcon.d.ts",
|
|
239
|
+
"import": "./lib/components/FavoriteButton/index.js",
|
|
240
|
+
"require": "./lib/components/FavoriteButton/index.js",
|
|
241
|
+
"default": "./lib/components/FavoriteButton/index.js"
|
|
242
|
+
},
|
|
243
|
+
"./components/FormFieldTag/FormFieldTag": {
|
|
244
|
+
"types": "./lib/components/FormFieldTag/FormFieldTag.d.ts",
|
|
245
|
+
"import": "./lib/components/FormFieldTag/index.js",
|
|
246
|
+
"require": "./lib/components/FormFieldTag/index.js",
|
|
247
|
+
"default": "./lib/components/FormFieldTag/index.js"
|
|
248
|
+
},
|
|
249
|
+
"./components/FormGroup/FormGroup": {
|
|
250
|
+
"types": "./lib/components/FormGroup/FormGroup.d.ts",
|
|
251
|
+
"import": "./lib/components/FormGroup/index.js",
|
|
252
|
+
"require": "./lib/components/FormGroup/index.js",
|
|
253
|
+
"default": "./lib/components/FormGroup/index.js"
|
|
254
|
+
},
|
|
255
|
+
"./components/FormLayout/FormLayout": {
|
|
256
|
+
"types": "./lib/components/FormLayout/FormLayout.d.ts",
|
|
257
|
+
"import": "./lib/components/FormLayout/index.js",
|
|
258
|
+
"require": "./lib/components/FormLayout/index.js",
|
|
259
|
+
"default": "./lib/components/FormLayout/index.js"
|
|
260
|
+
},
|
|
261
|
+
"./components/HelpBubble/HelpBubble": {
|
|
262
|
+
"types": "./lib/components/HelpBubble/HelpBubble.d.ts",
|
|
263
|
+
"import": "./lib/components/HelpBubble/index.js",
|
|
264
|
+
"require": "./lib/components/HelpBubble/index.js",
|
|
265
|
+
"default": "./lib/components/HelpBubble/index.js"
|
|
266
|
+
},
|
|
267
|
+
"./components/HelpDrawer/HelpDrawer": {
|
|
268
|
+
"types": "./lib/components/HelpDrawer/HelpDrawer.d.ts",
|
|
269
|
+
"import": "./lib/components/HelpDrawer/index.js",
|
|
270
|
+
"require": "./lib/components/HelpDrawer/index.js",
|
|
271
|
+
"default": "./lib/components/HelpDrawer/index.js"
|
|
272
|
+
},
|
|
273
|
+
"./components/HelpExpanderInline/HelpExpanderInline": {
|
|
274
|
+
"types": "./lib/components/HelpExpanderInline/HelpExpanderInline.d.ts",
|
|
275
|
+
"import": "./lib/components/HelpExpanderInline/index.js",
|
|
276
|
+
"require": "./lib/components/HelpExpanderInline/index.js",
|
|
277
|
+
"default": "./lib/components/HelpExpanderInline/index.js"
|
|
278
|
+
},
|
|
279
|
+
"./components/HelpExpanderStandalone/HelpExpanderStandalone": {
|
|
280
|
+
"types": "./lib/components/HelpExpanderStandalone/HelpExpanderStandalone.d.ts",
|
|
281
|
+
"import": "./lib/components/HelpExpanderStandalone/index.js",
|
|
282
|
+
"require": "./lib/components/HelpExpanderStandalone/index.js",
|
|
283
|
+
"default": "./lib/components/HelpExpanderStandalone/index.js"
|
|
284
|
+
},
|
|
285
|
+
"./components/HelpPanel/HelpPanel": {
|
|
286
|
+
"types": "./lib/components/HelpPanel/HelpPanel.d.ts",
|
|
287
|
+
"import": "./lib/components/HelpPanel/index.js",
|
|
288
|
+
"require": "./lib/components/HelpPanel/index.js",
|
|
289
|
+
"default": "./lib/components/HelpPanel/index.js"
|
|
290
|
+
},
|
|
291
|
+
"./components/HelpTeaser/HelpTeaser": {
|
|
292
|
+
"types": "./lib/components/HelpTeaser/HelpTeaser.d.ts",
|
|
293
|
+
"import": "./lib/components/HelpTeaser/index.js",
|
|
294
|
+
"require": "./lib/components/HelpTeaser/index.js",
|
|
295
|
+
"default": "./lib/components/HelpTeaser/index.js"
|
|
296
|
+
},
|
|
297
|
+
"./components/HelpTooltip/HelpTooltip": {
|
|
298
|
+
"types": "./lib/components/HelpTooltip/HelpTooltip.d.ts",
|
|
299
|
+
"import": "./lib/components/HelpTooltip/index.js",
|
|
300
|
+
"require": "./lib/components/HelpTooltip/index.js",
|
|
301
|
+
"default": "./lib/components/HelpTooltip/index.js"
|
|
302
|
+
},
|
|
303
|
+
"./components/HelpTriggerIcon/HelpSign": {
|
|
304
|
+
"types": "./lib/components/HelpTriggerIcon/HelpSign.d.ts",
|
|
305
|
+
"import": "./lib/components/HelpTriggerIcon/index.js",
|
|
306
|
+
"require": "./lib/components/HelpTriggerIcon/index.js",
|
|
307
|
+
"default": "./lib/components/HelpTriggerIcon/index.js"
|
|
308
|
+
},
|
|
309
|
+
"./components/HelpTriggerIcon/HelpTriggerIcon": {
|
|
310
|
+
"types": "./lib/components/HelpTriggerIcon/HelpTriggerIcon.d.ts",
|
|
311
|
+
"import": "./lib/components/HelpTriggerIcon/index.js",
|
|
312
|
+
"require": "./lib/components/HelpTriggerIcon/index.js",
|
|
313
|
+
"default": "./lib/components/HelpTriggerIcon/index.js"
|
|
314
|
+
},
|
|
315
|
+
"./components/HelpTriggerInline/HelpTriggerInline": {
|
|
316
|
+
"types": "./lib/components/HelpTriggerInline/HelpTriggerInline.d.ts",
|
|
317
|
+
"import": "./lib/components/HelpTriggerInline/index.js",
|
|
318
|
+
"require": "./lib/components/HelpTriggerInline/index.js",
|
|
319
|
+
"default": "./lib/components/HelpTriggerInline/index.js"
|
|
320
|
+
},
|
|
321
|
+
"./components/HelpTriggerStandalone/HelpTriggerStandalone": {
|
|
322
|
+
"types": "./lib/components/HelpTriggerStandalone/HelpTriggerStandalone.d.ts",
|
|
323
|
+
"import": "./lib/components/HelpTriggerStandalone/index.js",
|
|
324
|
+
"require": "./lib/components/HelpTriggerStandalone/index.js",
|
|
325
|
+
"default": "./lib/components/HelpTriggerStandalone/index.js"
|
|
326
|
+
},
|
|
327
|
+
"./components/HighlightPanel/HighlightPanel": {
|
|
328
|
+
"types": "./lib/components/HighlightPanel/HighlightPanel.d.ts",
|
|
329
|
+
"import": "./lib/components/HighlightPanel/index.js",
|
|
330
|
+
"require": "./lib/components/HighlightPanel/index.js",
|
|
331
|
+
"default": "./lib/components/HighlightPanel/index.js"
|
|
332
|
+
},
|
|
333
|
+
"./components/Highlighter/Highlighter": {
|
|
334
|
+
"types": "./lib/components/Highlighter/Highlighter.d.ts",
|
|
335
|
+
"import": "./lib/components/Highlighter/index.js",
|
|
336
|
+
"require": "./lib/components/Highlighter/index.js",
|
|
337
|
+
"default": "./lib/components/Highlighter/index.js"
|
|
338
|
+
},
|
|
339
|
+
"./components/HorizontalScroll/HorizontalScroll": {
|
|
340
|
+
"types": "./lib/components/HorizontalScroll/HorizontalScroll.d.ts",
|
|
341
|
+
"import": "./lib/components/HorizontalScroll/index.js",
|
|
342
|
+
"require": "./lib/components/HorizontalScroll/index.js",
|
|
343
|
+
"default": "./lib/components/HorizontalScroll/index.js"
|
|
344
|
+
},
|
|
345
|
+
"./components/Icon/Icon": {
|
|
346
|
+
"types": "./lib/components/Icon/Icon.d.ts",
|
|
347
|
+
"import": "./lib/components/Icon/index.js",
|
|
348
|
+
"require": "./lib/components/Icon/index.js",
|
|
349
|
+
"default": "./lib/components/Icon/index.js"
|
|
350
|
+
},
|
|
351
|
+
"./components/Illustration/Illustration": {
|
|
352
|
+
"types": "./lib/components/Illustration/Illustration.d.ts",
|
|
353
|
+
"import": "./lib/components/Illustration/index.js",
|
|
354
|
+
"require": "./lib/components/Illustration/index.js",
|
|
355
|
+
"default": "./lib/components/Illustration/index.js"
|
|
356
|
+
},
|
|
357
|
+
"./components/InfoTeaser/InfoTeaser": {
|
|
358
|
+
"types": "./lib/components/InfoTeaser/InfoTeaser.d.ts",
|
|
359
|
+
"import": "./lib/components/InfoTeaser/index.js",
|
|
360
|
+
"require": "./lib/components/InfoTeaser/index.js",
|
|
361
|
+
"default": "./lib/components/InfoTeaser/index.js"
|
|
362
|
+
},
|
|
363
|
+
"./components/Input/Input": {
|
|
364
|
+
"types": "./lib/components/Input/Input.d.ts",
|
|
365
|
+
"import": "./lib/components/Input/index.js",
|
|
366
|
+
"require": "./lib/components/Input/index.js",
|
|
367
|
+
"default": "./lib/components/Input/index.js"
|
|
368
|
+
},
|
|
369
|
+
"./components/Label/Label": {
|
|
370
|
+
"types": "./lib/components/Label/Label.d.ts",
|
|
371
|
+
"import": "./lib/components/Label/index.js",
|
|
372
|
+
"require": "./lib/components/Label/index.js",
|
|
373
|
+
"default": "./lib/components/Label/index.js"
|
|
74
374
|
},
|
|
75
|
-
"./
|
|
375
|
+
"./components/Label/SubLabel": {
|
|
376
|
+
"types": "./lib/components/Label/SubLabel.d.ts",
|
|
377
|
+
"import": "./lib/components/Label/index.js",
|
|
378
|
+
"require": "./lib/components/Label/index.js",
|
|
379
|
+
"default": "./lib/components/Label/index.js"
|
|
380
|
+
},
|
|
381
|
+
"./components/LazyIcon/ErrorBoundary": {
|
|
382
|
+
"types": "./lib/components/LazyIcon/ErrorBoundary.d.ts",
|
|
383
|
+
"import": "./lib/components/LazyIcon/index.js",
|
|
384
|
+
"require": "./lib/components/LazyIcon/index.js",
|
|
385
|
+
"default": "./lib/components/LazyIcon/index.js"
|
|
386
|
+
},
|
|
387
|
+
"./components/LazyIcon/LazyIcon": {
|
|
388
|
+
"types": "./lib/components/LazyIcon/LazyIcon.d.ts",
|
|
389
|
+
"import": "./lib/components/LazyIcon/index.js",
|
|
390
|
+
"require": "./lib/components/LazyIcon/index.js",
|
|
391
|
+
"default": "./lib/components/LazyIcon/index.js"
|
|
392
|
+
},
|
|
393
|
+
"./components/LazyIllustration/LazyIllustration": {
|
|
394
|
+
"types": "./lib/components/LazyIllustration/LazyIllustration.d.ts",
|
|
395
|
+
"import": "./lib/components/LazyIllustration/index.js",
|
|
396
|
+
"require": "./lib/components/LazyIllustration/index.js",
|
|
397
|
+
"default": "./lib/components/LazyIllustration/index.js"
|
|
398
|
+
},
|
|
399
|
+
"./components/LinkList/LinkList": {
|
|
400
|
+
"types": "./lib/components/LinkList/LinkList.d.ts",
|
|
401
|
+
"import": "./lib/components/LinkList/index.js",
|
|
402
|
+
"require": "./lib/components/LinkList/index.js",
|
|
403
|
+
"default": "./lib/components/LinkList/index.js"
|
|
404
|
+
},
|
|
405
|
+
"./components/List/List": {
|
|
406
|
+
"types": "./lib/components/List/List.d.ts",
|
|
407
|
+
"import": "./lib/components/List/index.js",
|
|
408
|
+
"require": "./lib/components/List/index.js",
|
|
409
|
+
"default": "./lib/components/List/index.js"
|
|
410
|
+
},
|
|
411
|
+
"./components/ListEditMode/ListEditMode": {
|
|
412
|
+
"types": "./lib/components/ListEditMode/ListEditMode.d.ts",
|
|
413
|
+
"import": "./lib/components/ListEditMode/index.js",
|
|
414
|
+
"require": "./lib/components/ListEditMode/index.js",
|
|
415
|
+
"default": "./lib/components/ListEditMode/index.js"
|
|
416
|
+
},
|
|
417
|
+
"./components/Loader/Loader": {
|
|
418
|
+
"types": "./lib/components/Loader/Loader.d.ts",
|
|
419
|
+
"import": "./lib/components/Loader/index.js",
|
|
420
|
+
"require": "./lib/components/Loader/index.js",
|
|
421
|
+
"default": "./lib/components/Loader/index.js"
|
|
422
|
+
},
|
|
423
|
+
"./components/Logo/Logo": {
|
|
424
|
+
"types": "./lib/components/Logo/Logo.d.ts",
|
|
425
|
+
"import": "./lib/components/Logo/index.js",
|
|
426
|
+
"require": "./lib/components/Logo/index.js",
|
|
427
|
+
"default": "./lib/components/Logo/index.js"
|
|
428
|
+
},
|
|
429
|
+
"./components/Modal/Modal": {
|
|
430
|
+
"types": "./lib/components/Modal/Modal.d.ts",
|
|
431
|
+
"import": "./lib/components/Modal/index.js",
|
|
432
|
+
"require": "./lib/components/Modal/index.js",
|
|
433
|
+
"default": "./lib/components/Modal/index.js"
|
|
434
|
+
},
|
|
435
|
+
"./components/NotificationPanel/NotificationPanel": {
|
|
436
|
+
"types": "./lib/components/NotificationPanel/NotificationPanel.d.ts",
|
|
437
|
+
"import": "./lib/components/NotificationPanel/index.js",
|
|
438
|
+
"require": "./lib/components/NotificationPanel/index.js",
|
|
439
|
+
"default": "./lib/components/NotificationPanel/index.js"
|
|
440
|
+
},
|
|
441
|
+
"./components/Panel/Panel": {
|
|
442
|
+
"types": "./lib/components/Panel/Panel.d.ts",
|
|
443
|
+
"import": "./lib/components/Panel/index.js",
|
|
444
|
+
"require": "./lib/components/Panel/index.js",
|
|
445
|
+
"default": "./lib/components/Panel/index.js"
|
|
446
|
+
},
|
|
447
|
+
"./components/Panel/PanelExamples": {
|
|
448
|
+
"types": "./lib/components/Panel/PanelExamples.d.ts",
|
|
449
|
+
"import": "./lib/components/Panel/index.js",
|
|
450
|
+
"require": "./lib/components/Panel/index.js",
|
|
451
|
+
"default": "./lib/components/Panel/index.js"
|
|
452
|
+
},
|
|
453
|
+
"./components/Panel/Paneldocs": {
|
|
454
|
+
"types": "./lib/components/Panel/Paneldocs.d.ts",
|
|
455
|
+
"import": "./lib/components/Panel/index.js",
|
|
456
|
+
"require": "./lib/components/Panel/index.js",
|
|
457
|
+
"default": "./lib/components/Panel/index.js"
|
|
458
|
+
},
|
|
459
|
+
"./components/PanelList/PanelList": {
|
|
460
|
+
"types": "./lib/components/PanelList/PanelList.d.ts",
|
|
461
|
+
"import": "./lib/components/PanelList/index.js",
|
|
462
|
+
"require": "./lib/components/PanelList/index.js",
|
|
463
|
+
"default": "./lib/components/PanelList/index.js"
|
|
464
|
+
},
|
|
465
|
+
"./components/PanelListOld/PanelListOld": {
|
|
466
|
+
"types": "./lib/components/PanelListOld/PanelListOld.d.ts",
|
|
467
|
+
"import": "./lib/components/PanelListOld/index.js",
|
|
468
|
+
"require": "./lib/components/PanelListOld/index.js",
|
|
469
|
+
"default": "./lib/components/PanelListOld/index.js"
|
|
470
|
+
},
|
|
471
|
+
"./components/PanelOld/PanelOld": {
|
|
472
|
+
"types": "./lib/components/PanelOld/PanelOld.d.ts",
|
|
473
|
+
"import": "./lib/components/PanelOld/index.js",
|
|
474
|
+
"require": "./lib/components/PanelOld/index.js",
|
|
475
|
+
"default": "./lib/components/PanelOld/index.js"
|
|
476
|
+
},
|
|
477
|
+
"./components/PopMenu/PopMenu": {
|
|
478
|
+
"types": "./lib/components/PopMenu/PopMenu.d.ts",
|
|
479
|
+
"import": "./lib/components/PopMenu/index.js",
|
|
480
|
+
"require": "./lib/components/PopMenu/index.js",
|
|
481
|
+
"default": "./lib/components/PopMenu/index.js"
|
|
482
|
+
},
|
|
483
|
+
"./components/PopOver/PopOver": {
|
|
484
|
+
"types": "./lib/components/PopOver/PopOver.d.ts",
|
|
485
|
+
"import": "./lib/components/PopOver/index.js",
|
|
486
|
+
"require": "./lib/components/PopOver/index.js",
|
|
487
|
+
"default": "./lib/components/PopOver/index.js"
|
|
488
|
+
},
|
|
489
|
+
"./components/Progressbar/Progressbar": {
|
|
490
|
+
"types": "./lib/components/Progressbar/Progressbar.d.ts",
|
|
491
|
+
"import": "./lib/components/Progressbar/index.js",
|
|
492
|
+
"require": "./lib/components/Progressbar/index.js",
|
|
493
|
+
"default": "./lib/components/Progressbar/index.js"
|
|
494
|
+
},
|
|
495
|
+
"./components/PromoPanel/PromoPanel": {
|
|
496
|
+
"types": "./lib/components/PromoPanel/PromoPanel.d.ts",
|
|
497
|
+
"import": "./lib/components/PromoPanel/index.js",
|
|
498
|
+
"require": "./lib/components/PromoPanel/index.js",
|
|
499
|
+
"default": "./lib/components/PromoPanel/index.js"
|
|
500
|
+
},
|
|
501
|
+
"./components/RadioButton/RadioButton": {
|
|
502
|
+
"types": "./lib/components/RadioButton/RadioButton.d.ts",
|
|
503
|
+
"import": "./lib/components/RadioButton/index.js",
|
|
504
|
+
"require": "./lib/components/RadioButton/index.js",
|
|
505
|
+
"default": "./lib/components/RadioButton/index.js"
|
|
506
|
+
},
|
|
507
|
+
"./components/Select/Select": {
|
|
508
|
+
"types": "./lib/components/Select/Select.d.ts",
|
|
509
|
+
"import": "./lib/components/Select/index.js",
|
|
510
|
+
"require": "./lib/components/Select/index.js",
|
|
511
|
+
"default": "./lib/components/Select/index.js"
|
|
512
|
+
},
|
|
513
|
+
"./components/ServiceMessage/ServiceMessage": {
|
|
514
|
+
"types": "./lib/components/ServiceMessage/ServiceMessage.d.ts",
|
|
515
|
+
"import": "./lib/components/ServiceMessage/index.js",
|
|
516
|
+
"require": "./lib/components/ServiceMessage/index.js",
|
|
517
|
+
"default": "./lib/components/ServiceMessage/index.js"
|
|
518
|
+
},
|
|
519
|
+
"./components/SharingStatus/SharingStatus": {
|
|
520
|
+
"types": "./lib/components/SharingStatus/SharingStatus.d.ts",
|
|
521
|
+
"import": "./lib/components/SharingStatus/index.js",
|
|
522
|
+
"require": "./lib/components/SharingStatus/index.js",
|
|
523
|
+
"default": "./lib/components/SharingStatus/index.js"
|
|
524
|
+
},
|
|
525
|
+
"./components/Slider/Slider": {
|
|
526
|
+
"types": "./lib/components/Slider/Slider.d.ts",
|
|
527
|
+
"import": "./lib/components/Slider/index.js",
|
|
528
|
+
"require": "./lib/components/Slider/index.js",
|
|
529
|
+
"default": "./lib/components/Slider/index.js"
|
|
530
|
+
},
|
|
531
|
+
"./components/Spacer/Spacer": {
|
|
532
|
+
"types": "./lib/components/Spacer/Spacer.d.ts",
|
|
533
|
+
"import": "./lib/components/Spacer/index.js",
|
|
534
|
+
"require": "./lib/components/Spacer/index.js",
|
|
535
|
+
"default": "./lib/components/Spacer/index.js"
|
|
536
|
+
},
|
|
537
|
+
"./components/StatusDot/StatusDot": {
|
|
538
|
+
"types": "./lib/components/StatusDot/StatusDot.d.ts",
|
|
539
|
+
"import": "./lib/components/StatusDot/index.js",
|
|
540
|
+
"require": "./lib/components/StatusDot/index.js",
|
|
541
|
+
"default": "./lib/components/StatusDot/index.js"
|
|
542
|
+
},
|
|
543
|
+
"./components/Step/Step": {
|
|
544
|
+
"types": "./lib/components/Step/Step.d.ts",
|
|
545
|
+
"import": "./lib/components/Step/index.js",
|
|
546
|
+
"require": "./lib/components/Step/index.js",
|
|
547
|
+
"default": "./lib/components/Step/index.js"
|
|
548
|
+
},
|
|
549
|
+
"./components/StepButtons/StepButtons": {
|
|
550
|
+
"types": "./lib/components/StepButtons/StepButtons.d.ts",
|
|
551
|
+
"import": "./lib/components/StepButtons/index.js",
|
|
552
|
+
"require": "./lib/components/StepButtons/index.js",
|
|
553
|
+
"default": "./lib/components/StepButtons/index.js"
|
|
554
|
+
},
|
|
555
|
+
"./components/Stepper/Dot": {
|
|
556
|
+
"types": "./lib/components/Stepper/Dot.d.ts",
|
|
557
|
+
"import": "./lib/components/Stepper/index.js",
|
|
558
|
+
"require": "./lib/components/Stepper/index.js",
|
|
559
|
+
"default": "./lib/components/Stepper/index.js"
|
|
560
|
+
},
|
|
561
|
+
"./components/Stepper/DotList": {
|
|
562
|
+
"types": "./lib/components/Stepper/DotList.d.ts",
|
|
563
|
+
"import": "./lib/components/Stepper/index.js",
|
|
564
|
+
"require": "./lib/components/Stepper/index.js",
|
|
565
|
+
"default": "./lib/components/Stepper/index.js"
|
|
566
|
+
},
|
|
567
|
+
"./components/Stepper/Stepper": {
|
|
568
|
+
"types": "./lib/components/Stepper/Stepper.d.ts",
|
|
569
|
+
"import": "./lib/components/Stepper/index.js",
|
|
570
|
+
"require": "./lib/components/Stepper/index.js",
|
|
571
|
+
"default": "./lib/components/Stepper/index.js"
|
|
572
|
+
},
|
|
573
|
+
"./components/StickyNote/Close": {
|
|
574
|
+
"types": "./lib/components/StickyNote/Close.d.ts",
|
|
575
|
+
"import": "./lib/components/StickyNote/index.js",
|
|
576
|
+
"require": "./lib/components/StickyNote/index.js",
|
|
577
|
+
"default": "./lib/components/StickyNote/index.js"
|
|
578
|
+
},
|
|
579
|
+
"./components/StickyNote/StickyNote": {
|
|
580
|
+
"types": "./lib/components/StickyNote/StickyNote.d.ts",
|
|
581
|
+
"import": "./lib/components/StickyNote/index.js",
|
|
582
|
+
"require": "./lib/components/StickyNote/index.js",
|
|
583
|
+
"default": "./lib/components/StickyNote/index.js"
|
|
584
|
+
},
|
|
585
|
+
"./components/StickyNote/Triangle": {
|
|
586
|
+
"types": "./lib/components/StickyNote/Triangle.d.ts",
|
|
587
|
+
"import": "./lib/components/StickyNote/index.js",
|
|
588
|
+
"require": "./lib/components/StickyNote/index.js",
|
|
589
|
+
"default": "./lib/components/StickyNote/index.js"
|
|
590
|
+
},
|
|
591
|
+
"./components/Table/Table": {
|
|
592
|
+
"types": "./lib/components/Table/Table.d.ts",
|
|
593
|
+
"import": "./lib/components/Table/index.js",
|
|
594
|
+
"require": "./lib/components/Table/index.js",
|
|
595
|
+
"default": "./lib/components/Table/index.js"
|
|
596
|
+
},
|
|
597
|
+
"./components/Tabs/Tab": {
|
|
598
|
+
"types": "./lib/components/Tabs/Tab.d.ts",
|
|
599
|
+
"import": "./lib/components/Tabs/index.js",
|
|
600
|
+
"require": "./lib/components/Tabs/index.js",
|
|
601
|
+
"default": "./lib/components/Tabs/index.js"
|
|
602
|
+
},
|
|
603
|
+
"./components/Tabs/Tabs": {
|
|
604
|
+
"types": "./lib/components/Tabs/Tabs.d.ts",
|
|
605
|
+
"import": "./lib/components/Tabs/index.js",
|
|
606
|
+
"require": "./lib/components/Tabs/index.js",
|
|
607
|
+
"default": "./lib/components/Tabs/index.js"
|
|
608
|
+
},
|
|
609
|
+
"./components/Tag/Tag": {
|
|
610
|
+
"types": "./lib/components/Tag/Tag.d.ts",
|
|
611
|
+
"import": "./lib/components/Tag/index.js",
|
|
612
|
+
"require": "./lib/components/Tag/index.js",
|
|
613
|
+
"default": "./lib/components/Tag/index.js"
|
|
614
|
+
},
|
|
615
|
+
"./components/TagList/TagList": {
|
|
616
|
+
"types": "./lib/components/TagList/TagList.d.ts",
|
|
617
|
+
"import": "./lib/components/TagList/index.js",
|
|
618
|
+
"require": "./lib/components/TagList/index.js",
|
|
619
|
+
"default": "./lib/components/TagList/index.js"
|
|
620
|
+
},
|
|
621
|
+
"./components/Textarea/Textarea": {
|
|
622
|
+
"types": "./lib/components/Textarea/Textarea.d.ts",
|
|
623
|
+
"import": "./lib/components/Textarea/index.js",
|
|
624
|
+
"require": "./lib/components/Textarea/index.js",
|
|
625
|
+
"default": "./lib/components/Textarea/index.js"
|
|
626
|
+
},
|
|
627
|
+
"./components/Tile/Tile": {
|
|
628
|
+
"types": "./lib/components/Tile/Tile.d.ts",
|
|
629
|
+
"import": "./lib/components/Tile/index.js",
|
|
630
|
+
"require": "./lib/components/Tile/index.js",
|
|
631
|
+
"default": "./lib/components/Tile/index.js"
|
|
632
|
+
},
|
|
633
|
+
"./components/Title/Title": {
|
|
634
|
+
"types": "./lib/components/Title/Title.d.ts",
|
|
635
|
+
"import": "./lib/components/Title/index.js",
|
|
636
|
+
"require": "./lib/components/Title/index.js",
|
|
637
|
+
"default": "./lib/components/Title/index.js"
|
|
638
|
+
},
|
|
639
|
+
"./components/Toast/Toast": {
|
|
640
|
+
"types": "./lib/components/Toast/Toast.d.ts",
|
|
641
|
+
"import": "./lib/components/Toast/index.js",
|
|
642
|
+
"require": "./lib/components/Toast/index.js",
|
|
643
|
+
"default": "./lib/components/Toast/index.js"
|
|
644
|
+
},
|
|
645
|
+
"./components/ToastList/ToastList": {
|
|
646
|
+
"types": "./lib/components/ToastList/ToastList.d.ts",
|
|
647
|
+
"import": "./lib/components/ToastList/index.js",
|
|
648
|
+
"require": "./lib/components/ToastList/index.js",
|
|
649
|
+
"default": "./lib/components/ToastList/index.js"
|
|
650
|
+
},
|
|
651
|
+
"./components/Toggle/Toggle": {
|
|
652
|
+
"types": "./lib/components/Toggle/Toggle.d.ts",
|
|
653
|
+
"import": "./lib/components/Toggle/index.js",
|
|
654
|
+
"require": "./lib/components/Toggle/index.js",
|
|
655
|
+
"default": "./lib/components/Toggle/index.js"
|
|
656
|
+
},
|
|
657
|
+
"./components/Validation/ErrorList": {
|
|
658
|
+
"types": "./lib/components/Validation/ErrorList.d.ts",
|
|
659
|
+
"import": "./lib/components/Validation/index.js",
|
|
660
|
+
"require": "./lib/components/Validation/index.js",
|
|
661
|
+
"default": "./lib/components/Validation/index.js"
|
|
662
|
+
},
|
|
663
|
+
"./components/Validation/ErrorListItem": {
|
|
664
|
+
"types": "./lib/components/Validation/ErrorListItem.d.ts",
|
|
665
|
+
"import": "./lib/components/Validation/index.js",
|
|
666
|
+
"require": "./lib/components/Validation/index.js",
|
|
667
|
+
"default": "./lib/components/Validation/index.js"
|
|
668
|
+
},
|
|
669
|
+
"./components/Validation/Validation": {
|
|
670
|
+
"types": "./lib/components/Validation/Validation.d.ts",
|
|
671
|
+
"import": "./lib/components/Validation/index.js",
|
|
672
|
+
"require": "./lib/components/Validation/index.js",
|
|
673
|
+
"default": "./lib/components/Validation/index.js"
|
|
674
|
+
},
|
|
675
|
+
"./components/Validation/ValidationSummary": {
|
|
676
|
+
"types": "./lib/components/Validation/ValidationSummary.d.ts",
|
|
677
|
+
"import": "./lib/components/Validation/index.js",
|
|
678
|
+
"require": "./lib/components/Validation/index.js",
|
|
679
|
+
"default": "./lib/components/Validation/index.js"
|
|
680
|
+
}
|
|
76
681
|
},
|
|
77
682
|
"scripts": {
|
|
78
683
|
"start": "storybook dev",
|