@telus-uds/theme-allium 0.0.2-prerelease.1 → 0.0.2-prerelease.5
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/CHANGELOG.md +47 -0
- package/lib/components/ActivityIndicator.js +35 -0
- package/lib/components/Box.js +89 -0
- package/lib/components/Button.js +252 -0
- package/lib/components/ButtonGroup.js +34 -0
- package/lib/components/ButtonGroupItem.js +108 -0
- package/lib/components/Card.js +120 -0
- package/lib/components/Checkbox.js +80 -0
- package/lib/components/ChevronLink.js +39 -0
- package/lib/components/Divider.js +44 -0
- package/lib/components/ExpandCollapse.js +23 -0
- package/lib/components/ExpandCollapseControl.js +49 -0
- package/lib/components/ExpandCollapsePanel.js +25 -0
- package/lib/components/Feedback.js +89 -0
- package/lib/components/Icon.js +47 -0
- package/lib/components/InputLabel.js +33 -0
- package/lib/components/InputSupports.js +19 -0
- package/lib/components/Link.js +241 -0
- package/lib/components/List.js +86 -0
- package/lib/components/Pagination.js +40 -0
- package/lib/components/PaginationPageButton.js +82 -0
- package/lib/components/PaginationSideButton.js +113 -0
- package/lib/components/Radio.js +78 -0
- package/lib/components/Select.js +102 -0
- package/lib/components/SideNav.js +23 -0
- package/lib/components/SideNavItem.js +118 -0
- package/lib/components/SideNavItemsGroup.js +49 -0
- package/lib/components/Skeleton.js +26 -0
- package/lib/components/StackView.js +22 -0
- package/lib/components/Tags.js +34 -0
- package/lib/components/TagsItem.js +133 -0
- package/lib/components/TextArea.js +20 -0
- package/lib/components/TextInput.js +97 -0
- package/lib/components/ToggleSwitch.js +144 -0
- package/lib/components/Tooltip.js +48 -0
- package/lib/components/TooltipButton.js +86 -0
- package/lib/components/Typography.js +370 -0
- package/lib/components/index.js +303 -0
- package/lib/components/spacingScale.js +163 -0
- package/lib/index.js +30 -0
- package/package.json +10 -7
- package/src/components/Box.js +12 -94
- package/src/components/Button.js +80 -111
- package/src/components/ButtonGroup.js +10 -16
- package/src/components/ButtonGroupItem.js +88 -0
- package/src/components/Card.js +99 -0
- package/src/components/Checkbox.js +65 -0
- package/src/components/ChevronLink.js +19 -0
- package/src/components/ExpandCollapse.js +3 -9
- package/src/components/ExpandCollapseControl.js +8 -21
- package/src/components/ExpandCollapsePanel.js +3 -14
- package/src/components/Feedback.js +75 -0
- package/src/components/Icon.js +6 -3
- package/src/components/InputLabel.js +29 -0
- package/src/components/InputSupports.js +9 -0
- package/src/components/Link.js +71 -92
- package/src/components/List.js +70 -0
- package/src/components/Pagination.js +10 -13
- package/src/components/PaginationPageButton.js +15 -25
- package/src/components/PaginationSideButton.js +23 -44
- package/src/components/Radio.js +64 -0
- package/src/components/Select.js +88 -0
- package/src/components/SideNav.js +3 -9
- package/src/components/SideNavItem.js +21 -22
- package/src/components/SideNavItemsGroup.js +11 -18
- package/src/components/Skeleton.js +16 -0
- package/src/components/StackView.js +12 -0
- package/src/components/Tags.js +16 -0
- package/src/components/TagsItem.js +118 -0
- package/src/components/TextArea.js +10 -0
- package/src/components/TextInput.js +83 -0
- package/src/components/ToggleSwitch.js +16 -23
- package/src/components/Tooltip.js +41 -0
- package/src/components/TooltipButton.js +68 -0
- package/src/components/Typography.js +112 -78
- package/src/components/index.js +37 -39
- package/src/components/spacingScale.js +36 -0
- package/src/index.js +1 -1
|
@@ -0,0 +1,370 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _paletteAllium = _interopRequireDefault(require("@telus-uds/palette-allium"));
|
|
9
|
+
|
|
10
|
+
var _rn = _interopRequireDefault(require("@telus-uds/system-themes/src/tokens/rn"));
|
|
11
|
+
|
|
12
|
+
var _schema = require("@telus-uds/system-themes/schema");
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
var _default = {
|
|
17
|
+
appearances: {
|
|
18
|
+
size: {
|
|
19
|
+
description: `Styles text as body or heading text with a given size. Smaller numbers indicate larger sizes,
|
|
20
|
+
"display" headings are larger than "h" headings. Default is medium size body text. Does not change
|
|
21
|
+
accessibility or SEO-related properties; use the heading prop if text should be treated semantically as a heading.`,
|
|
22
|
+
values: ['micro', 'small', 'large', 'eyebrow', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'display1', 'display2'],
|
|
23
|
+
type: 'variant'
|
|
24
|
+
},
|
|
25
|
+
colour: {
|
|
26
|
+
description: `Each typography variant has a default color, and at least a secondary color variant. In exceptional cases where a different colour is needed,
|
|
27
|
+
use the tokens prop.`,
|
|
28
|
+
values: ['secondary', 'tertiary'],
|
|
29
|
+
type: 'variant'
|
|
30
|
+
},
|
|
31
|
+
bold: {
|
|
32
|
+
description: 'Sets the font weight, to bold on some body text styles. Does not change accessibility properties.',
|
|
33
|
+
values: [true],
|
|
34
|
+
type: 'variant'
|
|
35
|
+
},
|
|
36
|
+
inverse: {
|
|
37
|
+
description: 'Styles the link white for use on dark backgrounds.',
|
|
38
|
+
values: [true],
|
|
39
|
+
type: 'variant'
|
|
40
|
+
},
|
|
41
|
+
compact: {
|
|
42
|
+
description: 'Reduces line height on some body text styles. For data-rich content, not for flow content',
|
|
43
|
+
values: [true],
|
|
44
|
+
type: 'variant'
|
|
45
|
+
},
|
|
46
|
+
viewport: _schema.appearances.system.viewport
|
|
47
|
+
},
|
|
48
|
+
tokens: {
|
|
49
|
+
// TODO: replace with font token
|
|
50
|
+
fontName: Object.keys(_paletteAllium.default.font)[0],
|
|
51
|
+
fontWeight: '400',
|
|
52
|
+
// font: palette.font.HelveticaNow[400]
|
|
53
|
+
fontSize: _paletteAllium.default.fontSize.size16,
|
|
54
|
+
color: _paletteAllium.default.color.greyThunder,
|
|
55
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio3to2,
|
|
56
|
+
letterSpacing: _rn.default.letterSpacing.none,
|
|
57
|
+
textTransform: _rn.default.textTransform.none,
|
|
58
|
+
fontScaleCap: _paletteAllium.default.fontSize.size64
|
|
59
|
+
},
|
|
60
|
+
rules: [
|
|
61
|
+
/**
|
|
62
|
+
* Colour rules: most variants are thunder / charcoal, but some heading sizes are purple / thunder, inverse is white for all
|
|
63
|
+
*/
|
|
64
|
+
{
|
|
65
|
+
if: {
|
|
66
|
+
colour: 'secondary'
|
|
67
|
+
},
|
|
68
|
+
tokens: {
|
|
69
|
+
color: _paletteAllium.default.color.greyCharcoal
|
|
70
|
+
}
|
|
71
|
+
}, {
|
|
72
|
+
if: {
|
|
73
|
+
size: ['display1', 'display2', 'h1', 'h2', 'h3']
|
|
74
|
+
},
|
|
75
|
+
tokens: {
|
|
76
|
+
color: _paletteAllium.default.color.purpleTelus
|
|
77
|
+
}
|
|
78
|
+
}, {
|
|
79
|
+
if: {
|
|
80
|
+
size: ['display1', 'display2', 'h1', 'h2', 'h3'],
|
|
81
|
+
colour: 'secondary'
|
|
82
|
+
},
|
|
83
|
+
tokens: {
|
|
84
|
+
color: _paletteAllium.default.color.greyThunder
|
|
85
|
+
}
|
|
86
|
+
}, {
|
|
87
|
+
if: {
|
|
88
|
+
size: 'h6',
|
|
89
|
+
colour: 'tertiary'
|
|
90
|
+
},
|
|
91
|
+
// TODO pending confirmation that this is necessary
|
|
92
|
+
tokens: {
|
|
93
|
+
color: _paletteAllium.default.color.greyShuttle
|
|
94
|
+
}
|
|
95
|
+
}, {
|
|
96
|
+
if: {
|
|
97
|
+
size: 'eyebrow'
|
|
98
|
+
},
|
|
99
|
+
tokens: {
|
|
100
|
+
color: _paletteAllium.default.color.greyCharcoal
|
|
101
|
+
}
|
|
102
|
+
}, {
|
|
103
|
+
if: {
|
|
104
|
+
size: 'eyebrow',
|
|
105
|
+
colour: 'secondary'
|
|
106
|
+
},
|
|
107
|
+
tokens: {
|
|
108
|
+
color: _paletteAllium.default.color.purpleTelus
|
|
109
|
+
}
|
|
110
|
+
}, {
|
|
111
|
+
if: {
|
|
112
|
+
inverse: true
|
|
113
|
+
},
|
|
114
|
+
tokens: {
|
|
115
|
+
color: _paletteAllium.default.color.white
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
/**
|
|
119
|
+
* Size/weight/line height/letter spacing rules
|
|
120
|
+
*/
|
|
121
|
+
|
|
122
|
+
/* Display 1 */
|
|
123
|
+
{
|
|
124
|
+
if: {
|
|
125
|
+
size: 'display1'
|
|
126
|
+
},
|
|
127
|
+
tokens: {
|
|
128
|
+
fontSize: _paletteAllium.default.fontSize.size40,
|
|
129
|
+
// TODO: replace with font token
|
|
130
|
+
fontWeight: '300',
|
|
131
|
+
// font: palette.font.HelveticaNow[300]
|
|
132
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio6to5,
|
|
133
|
+
letterSpacing: _paletteAllium.default.letterSpacing.medium
|
|
134
|
+
}
|
|
135
|
+
}, {
|
|
136
|
+
if: {
|
|
137
|
+
size: 'display1',
|
|
138
|
+
viewport: ['lg', 'xl']
|
|
139
|
+
},
|
|
140
|
+
tokens: {
|
|
141
|
+
fontSize: _paletteAllium.default.fontSize.size64,
|
|
142
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio9to8
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
/* Display 2 */
|
|
146
|
+
{
|
|
147
|
+
if: {
|
|
148
|
+
size: 'display2'
|
|
149
|
+
},
|
|
150
|
+
tokens: {
|
|
151
|
+
fontSize: _paletteAllium.default.fontSize.size36,
|
|
152
|
+
// TODO: replace with font token
|
|
153
|
+
fontWeight: '400',
|
|
154
|
+
// font: palette.font.HelveticaNow[400]
|
|
155
|
+
letterSpacing: _paletteAllium.default.letterSpacing.medium,
|
|
156
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio11to9
|
|
157
|
+
}
|
|
158
|
+
}, {
|
|
159
|
+
if: {
|
|
160
|
+
size: 'display2',
|
|
161
|
+
viewport: ['lg', 'xl']
|
|
162
|
+
},
|
|
163
|
+
tokens: {
|
|
164
|
+
fontSize: _paletteAllium.default.fontSize.size56,
|
|
165
|
+
// TODO: replace with font token
|
|
166
|
+
fontWeight: '300',
|
|
167
|
+
// font: palette.font.HelveticaNow[300]
|
|
168
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio8to7,
|
|
169
|
+
letterSpacing: _paletteAllium.default.letterSpacing.condensed
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
/* h1 */
|
|
173
|
+
{
|
|
174
|
+
if: {
|
|
175
|
+
size: 'h1'
|
|
176
|
+
},
|
|
177
|
+
tokens: {
|
|
178
|
+
fontSize: _paletteAllium.default.fontSize.size28,
|
|
179
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio9to7,
|
|
180
|
+
letterSpacing: _paletteAllium.default.letterSpacing.loose
|
|
181
|
+
}
|
|
182
|
+
}, {
|
|
183
|
+
if: {
|
|
184
|
+
size: 'h1',
|
|
185
|
+
viewport: ['lg', 'xl']
|
|
186
|
+
},
|
|
187
|
+
tokens: {
|
|
188
|
+
fontSize: _paletteAllium.default.fontSize.size40,
|
|
189
|
+
// TODO: replace with font token
|
|
190
|
+
fontWeight: '300',
|
|
191
|
+
// font: palette.font.HelveticaNow[300]
|
|
192
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio6to5,
|
|
193
|
+
letterSpacing: _paletteAllium.default.letterSpacing.medium
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
/* h2 */
|
|
197
|
+
{
|
|
198
|
+
if: {
|
|
199
|
+
size: 'h2'
|
|
200
|
+
},
|
|
201
|
+
tokens: {
|
|
202
|
+
fontSize: _paletteAllium.default.fontSize.size24,
|
|
203
|
+
// TODO: replace with font token
|
|
204
|
+
fontWeight: '500',
|
|
205
|
+
// font: palette.font.HelveticaNow[500]
|
|
206
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio4to3
|
|
207
|
+
}
|
|
208
|
+
}, {
|
|
209
|
+
if: {
|
|
210
|
+
size: 'h2',
|
|
211
|
+
viewport: ['lg', 'xl']
|
|
212
|
+
},
|
|
213
|
+
tokens: {
|
|
214
|
+
fontSize: _paletteAllium.default.fontSize.size28,
|
|
215
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio9to7,
|
|
216
|
+
letterSpacing: _paletteAllium.default.letterSpacing.loose
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
/* h3 */
|
|
220
|
+
{
|
|
221
|
+
if: {
|
|
222
|
+
size: 'h3'
|
|
223
|
+
},
|
|
224
|
+
tokens: {
|
|
225
|
+
fontSize: _paletteAllium.default.fontSize.size20,
|
|
226
|
+
// TODO: replace with font token
|
|
227
|
+
fontWeight: '500',
|
|
228
|
+
// font: palette.font.HelveticaNow[500]
|
|
229
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio7to5
|
|
230
|
+
}
|
|
231
|
+
}, {
|
|
232
|
+
if: {
|
|
233
|
+
size: 'h3',
|
|
234
|
+
viewport: ['lg', 'xl']
|
|
235
|
+
},
|
|
236
|
+
tokens: {
|
|
237
|
+
fontSize: _paletteAllium.default.fontSize.size24,
|
|
238
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio4to3
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
/* h4 */
|
|
242
|
+
{
|
|
243
|
+
if: {
|
|
244
|
+
size: 'h4'
|
|
245
|
+
},
|
|
246
|
+
tokens: {
|
|
247
|
+
fontSize: _paletteAllium.default.fontSize.size16,
|
|
248
|
+
// TODO: replace with font token
|
|
249
|
+
fontWeight: '500',
|
|
250
|
+
// font: palette.font.HelveticaNow[500]
|
|
251
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio3to2
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
/* h5 */
|
|
255
|
+
{
|
|
256
|
+
if: {
|
|
257
|
+
size: 'h5'
|
|
258
|
+
},
|
|
259
|
+
tokens: {
|
|
260
|
+
fontSize: _paletteAllium.default.fontSize.size14,
|
|
261
|
+
// TODO: replace with font token
|
|
262
|
+
fontWeight: '500',
|
|
263
|
+
// font: palette.font.HelveticaNow[500]
|
|
264
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio9to7
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
/* h6 */
|
|
268
|
+
{
|
|
269
|
+
if: {
|
|
270
|
+
size: 'h6'
|
|
271
|
+
},
|
|
272
|
+
tokens: {
|
|
273
|
+
fontSize: _paletteAllium.default.fontSize.size12,
|
|
274
|
+
// TODO: replace with font token
|
|
275
|
+
fontWeight: '700',
|
|
276
|
+
// font: palette.font.HelveticaNow[700]
|
|
277
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio4to3
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
/* large */
|
|
281
|
+
{
|
|
282
|
+
if: {
|
|
283
|
+
size: 'large'
|
|
284
|
+
},
|
|
285
|
+
tokens: {
|
|
286
|
+
fontSize: _paletteAllium.default.fontSize.size20,
|
|
287
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio8to5
|
|
288
|
+
}
|
|
289
|
+
}, {
|
|
290
|
+
if: {
|
|
291
|
+
size: 'large',
|
|
292
|
+
compact: true
|
|
293
|
+
},
|
|
294
|
+
tokens: {
|
|
295
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio6to5
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
/* default (medium) */
|
|
299
|
+
{
|
|
300
|
+
if: {
|
|
301
|
+
size: null,
|
|
302
|
+
compact: true
|
|
303
|
+
},
|
|
304
|
+
description: "The compact line height for the 'default' font size, but doesn't apply for any other styles",
|
|
305
|
+
tokens: {
|
|
306
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio5to4
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
/* small */
|
|
310
|
+
{
|
|
311
|
+
if: {
|
|
312
|
+
size: 'small'
|
|
313
|
+
},
|
|
314
|
+
tokens: {
|
|
315
|
+
fontSize: _paletteAllium.default.fontSize.size14,
|
|
316
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio10to7
|
|
317
|
+
}
|
|
318
|
+
}, {
|
|
319
|
+
if: {
|
|
320
|
+
size: 'small',
|
|
321
|
+
compact: true
|
|
322
|
+
},
|
|
323
|
+
tokens: {
|
|
324
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio8to7
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
/* micro */
|
|
328
|
+
{
|
|
329
|
+
if: {
|
|
330
|
+
size: 'micro'
|
|
331
|
+
},
|
|
332
|
+
tokens: {
|
|
333
|
+
fontSize: _paletteAllium.default.fontSize.size12,
|
|
334
|
+
// TODO: replace with font token
|
|
335
|
+
fontWeight: '500',
|
|
336
|
+
// font: palette.font.HelveticaNow[500]
|
|
337
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio4to3
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
/* eyebrow */
|
|
341
|
+
{
|
|
342
|
+
if: {
|
|
343
|
+
size: 'eyebrow'
|
|
344
|
+
},
|
|
345
|
+
tokens: {
|
|
346
|
+
fontSize: _paletteAllium.default.fontSize.size14,
|
|
347
|
+
// TODO: replace with font token
|
|
348
|
+
fontWeight: '700',
|
|
349
|
+
// font: palette.font.HelveticaNow[700]
|
|
350
|
+
textTransform: _rn.default.textTransform.uppercase,
|
|
351
|
+
lineHeight: _paletteAllium.default.lineHeight.ratio9to7
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
/**
|
|
355
|
+
* bold styles
|
|
356
|
+
*/
|
|
357
|
+
{
|
|
358
|
+
if: {
|
|
359
|
+
size: ['large', null, 'small', 'micro'],
|
|
360
|
+
bold: true
|
|
361
|
+
},
|
|
362
|
+
description: 'Bold is only available on body text styles, not headings',
|
|
363
|
+
tokens: {
|
|
364
|
+
// TODO: replace with font token
|
|
365
|
+
fontWeight: '700' // font: palette.font.HelveticaNow[700]
|
|
366
|
+
|
|
367
|
+
}
|
|
368
|
+
}]
|
|
369
|
+
};
|
|
370
|
+
exports.default = _default;
|
|
@@ -0,0 +1,303 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "ActivityIndicator", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _ActivityIndicator.default;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "Box", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _Box.default;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "Button", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function () {
|
|
21
|
+
return _Button.default;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "ButtonGroup", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function () {
|
|
27
|
+
return _ButtonGroup.default;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "ButtonGroupItem", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function () {
|
|
33
|
+
return _ButtonGroupItem.default;
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
Object.defineProperty(exports, "Card", {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function () {
|
|
39
|
+
return _Card.default;
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
Object.defineProperty(exports, "Checkbox", {
|
|
43
|
+
enumerable: true,
|
|
44
|
+
get: function () {
|
|
45
|
+
return _Checkbox.default;
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
Object.defineProperty(exports, "ChevronLink", {
|
|
49
|
+
enumerable: true,
|
|
50
|
+
get: function () {
|
|
51
|
+
return _ChevronLink.default;
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
Object.defineProperty(exports, "Divider", {
|
|
55
|
+
enumerable: true,
|
|
56
|
+
get: function () {
|
|
57
|
+
return _Divider.default;
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
Object.defineProperty(exports, "ExpandCollapse", {
|
|
61
|
+
enumerable: true,
|
|
62
|
+
get: function () {
|
|
63
|
+
return _ExpandCollapse.default;
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
Object.defineProperty(exports, "ExpandCollapseControl", {
|
|
67
|
+
enumerable: true,
|
|
68
|
+
get: function () {
|
|
69
|
+
return _ExpandCollapseControl.default;
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
Object.defineProperty(exports, "ExpandCollapsePanel", {
|
|
73
|
+
enumerable: true,
|
|
74
|
+
get: function () {
|
|
75
|
+
return _ExpandCollapsePanel.default;
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
Object.defineProperty(exports, "Feedback", {
|
|
79
|
+
enumerable: true,
|
|
80
|
+
get: function () {
|
|
81
|
+
return _Feedback.default;
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
Object.defineProperty(exports, "Icon", {
|
|
85
|
+
enumerable: true,
|
|
86
|
+
get: function () {
|
|
87
|
+
return _Icon.default;
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
Object.defineProperty(exports, "InputLabel", {
|
|
91
|
+
enumerable: true,
|
|
92
|
+
get: function () {
|
|
93
|
+
return _InputLabel.default;
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
Object.defineProperty(exports, "InputSupports", {
|
|
97
|
+
enumerable: true,
|
|
98
|
+
get: function () {
|
|
99
|
+
return _InputSupports.default;
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
Object.defineProperty(exports, "Link", {
|
|
103
|
+
enumerable: true,
|
|
104
|
+
get: function () {
|
|
105
|
+
return _Link.default;
|
|
106
|
+
}
|
|
107
|
+
});
|
|
108
|
+
Object.defineProperty(exports, "List", {
|
|
109
|
+
enumerable: true,
|
|
110
|
+
get: function () {
|
|
111
|
+
return _List.default;
|
|
112
|
+
}
|
|
113
|
+
});
|
|
114
|
+
Object.defineProperty(exports, "Pagination", {
|
|
115
|
+
enumerable: true,
|
|
116
|
+
get: function () {
|
|
117
|
+
return _Pagination.default;
|
|
118
|
+
}
|
|
119
|
+
});
|
|
120
|
+
Object.defineProperty(exports, "PaginationPageButton", {
|
|
121
|
+
enumerable: true,
|
|
122
|
+
get: function () {
|
|
123
|
+
return _PaginationPageButton.default;
|
|
124
|
+
}
|
|
125
|
+
});
|
|
126
|
+
Object.defineProperty(exports, "PaginationSideButton", {
|
|
127
|
+
enumerable: true,
|
|
128
|
+
get: function () {
|
|
129
|
+
return _PaginationSideButton.default;
|
|
130
|
+
}
|
|
131
|
+
});
|
|
132
|
+
Object.defineProperty(exports, "Radio", {
|
|
133
|
+
enumerable: true,
|
|
134
|
+
get: function () {
|
|
135
|
+
return _Radio.default;
|
|
136
|
+
}
|
|
137
|
+
});
|
|
138
|
+
Object.defineProperty(exports, "Select", {
|
|
139
|
+
enumerable: true,
|
|
140
|
+
get: function () {
|
|
141
|
+
return _Select.default;
|
|
142
|
+
}
|
|
143
|
+
});
|
|
144
|
+
Object.defineProperty(exports, "SideNav", {
|
|
145
|
+
enumerable: true,
|
|
146
|
+
get: function () {
|
|
147
|
+
return _SideNav.default;
|
|
148
|
+
}
|
|
149
|
+
});
|
|
150
|
+
Object.defineProperty(exports, "SideNavItem", {
|
|
151
|
+
enumerable: true,
|
|
152
|
+
get: function () {
|
|
153
|
+
return _SideNavItem.default;
|
|
154
|
+
}
|
|
155
|
+
});
|
|
156
|
+
Object.defineProperty(exports, "SideNavItemsGroup", {
|
|
157
|
+
enumerable: true,
|
|
158
|
+
get: function () {
|
|
159
|
+
return _SideNavItemsGroup.default;
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
Object.defineProperty(exports, "Skeleton", {
|
|
163
|
+
enumerable: true,
|
|
164
|
+
get: function () {
|
|
165
|
+
return _Skeleton.default;
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
Object.defineProperty(exports, "StackView", {
|
|
169
|
+
enumerable: true,
|
|
170
|
+
get: function () {
|
|
171
|
+
return _StackView.default;
|
|
172
|
+
}
|
|
173
|
+
});
|
|
174
|
+
Object.defineProperty(exports, "Tags", {
|
|
175
|
+
enumerable: true,
|
|
176
|
+
get: function () {
|
|
177
|
+
return _Tags.default;
|
|
178
|
+
}
|
|
179
|
+
});
|
|
180
|
+
Object.defineProperty(exports, "TagsItem", {
|
|
181
|
+
enumerable: true,
|
|
182
|
+
get: function () {
|
|
183
|
+
return _TagsItem.default;
|
|
184
|
+
}
|
|
185
|
+
});
|
|
186
|
+
Object.defineProperty(exports, "TextArea", {
|
|
187
|
+
enumerable: true,
|
|
188
|
+
get: function () {
|
|
189
|
+
return _TextArea.default;
|
|
190
|
+
}
|
|
191
|
+
});
|
|
192
|
+
Object.defineProperty(exports, "TextInput", {
|
|
193
|
+
enumerable: true,
|
|
194
|
+
get: function () {
|
|
195
|
+
return _TextInput.default;
|
|
196
|
+
}
|
|
197
|
+
});
|
|
198
|
+
Object.defineProperty(exports, "ToggleSwitch", {
|
|
199
|
+
enumerable: true,
|
|
200
|
+
get: function () {
|
|
201
|
+
return _ToggleSwitch.default;
|
|
202
|
+
}
|
|
203
|
+
});
|
|
204
|
+
Object.defineProperty(exports, "Tooltip", {
|
|
205
|
+
enumerable: true,
|
|
206
|
+
get: function () {
|
|
207
|
+
return _Tooltip.default;
|
|
208
|
+
}
|
|
209
|
+
});
|
|
210
|
+
Object.defineProperty(exports, "TooltipButton", {
|
|
211
|
+
enumerable: true,
|
|
212
|
+
get: function () {
|
|
213
|
+
return _TooltipButton.default;
|
|
214
|
+
}
|
|
215
|
+
});
|
|
216
|
+
Object.defineProperty(exports, "Typography", {
|
|
217
|
+
enumerable: true,
|
|
218
|
+
get: function () {
|
|
219
|
+
return _Typography.default;
|
|
220
|
+
}
|
|
221
|
+
});
|
|
222
|
+
Object.defineProperty(exports, "spacingScale", {
|
|
223
|
+
enumerable: true,
|
|
224
|
+
get: function () {
|
|
225
|
+
return _spacingScale.default;
|
|
226
|
+
}
|
|
227
|
+
});
|
|
228
|
+
|
|
229
|
+
var _ActivityIndicator = _interopRequireDefault(require("./ActivityIndicator"));
|
|
230
|
+
|
|
231
|
+
var _Box = _interopRequireDefault(require("./Box"));
|
|
232
|
+
|
|
233
|
+
var _Button = _interopRequireDefault(require("./Button"));
|
|
234
|
+
|
|
235
|
+
var _ButtonGroup = _interopRequireDefault(require("./ButtonGroup"));
|
|
236
|
+
|
|
237
|
+
var _ButtonGroupItem = _interopRequireDefault(require("./ButtonGroupItem"));
|
|
238
|
+
|
|
239
|
+
var _Card = _interopRequireDefault(require("./Card"));
|
|
240
|
+
|
|
241
|
+
var _Checkbox = _interopRequireDefault(require("./Checkbox"));
|
|
242
|
+
|
|
243
|
+
var _ChevronLink = _interopRequireDefault(require("./ChevronLink"));
|
|
244
|
+
|
|
245
|
+
var _Divider = _interopRequireDefault(require("./Divider"));
|
|
246
|
+
|
|
247
|
+
var _ExpandCollapse = _interopRequireDefault(require("./ExpandCollapse"));
|
|
248
|
+
|
|
249
|
+
var _ExpandCollapseControl = _interopRequireDefault(require("./ExpandCollapseControl"));
|
|
250
|
+
|
|
251
|
+
var _ExpandCollapsePanel = _interopRequireDefault(require("./ExpandCollapsePanel"));
|
|
252
|
+
|
|
253
|
+
var _Feedback = _interopRequireDefault(require("./Feedback"));
|
|
254
|
+
|
|
255
|
+
var _Icon = _interopRequireDefault(require("./Icon"));
|
|
256
|
+
|
|
257
|
+
var _InputLabel = _interopRequireDefault(require("./InputLabel"));
|
|
258
|
+
|
|
259
|
+
var _InputSupports = _interopRequireDefault(require("./InputSupports"));
|
|
260
|
+
|
|
261
|
+
var _Link = _interopRequireDefault(require("./Link"));
|
|
262
|
+
|
|
263
|
+
var _List = _interopRequireDefault(require("./List"));
|
|
264
|
+
|
|
265
|
+
var _Pagination = _interopRequireDefault(require("./Pagination"));
|
|
266
|
+
|
|
267
|
+
var _PaginationPageButton = _interopRequireDefault(require("./PaginationPageButton"));
|
|
268
|
+
|
|
269
|
+
var _PaginationSideButton = _interopRequireDefault(require("./PaginationSideButton"));
|
|
270
|
+
|
|
271
|
+
var _Radio = _interopRequireDefault(require("./Radio"));
|
|
272
|
+
|
|
273
|
+
var _Select = _interopRequireDefault(require("./Select"));
|
|
274
|
+
|
|
275
|
+
var _SideNav = _interopRequireDefault(require("./SideNav"));
|
|
276
|
+
|
|
277
|
+
var _SideNavItem = _interopRequireDefault(require("./SideNavItem"));
|
|
278
|
+
|
|
279
|
+
var _SideNavItemsGroup = _interopRequireDefault(require("./SideNavItemsGroup"));
|
|
280
|
+
|
|
281
|
+
var _Skeleton = _interopRequireDefault(require("./Skeleton"));
|
|
282
|
+
|
|
283
|
+
var _StackView = _interopRequireDefault(require("./StackView"));
|
|
284
|
+
|
|
285
|
+
var _Tags = _interopRequireDefault(require("./Tags"));
|
|
286
|
+
|
|
287
|
+
var _TagsItem = _interopRequireDefault(require("./TagsItem"));
|
|
288
|
+
|
|
289
|
+
var _TextArea = _interopRequireDefault(require("./TextArea"));
|
|
290
|
+
|
|
291
|
+
var _TextInput = _interopRequireDefault(require("./TextInput"));
|
|
292
|
+
|
|
293
|
+
var _ToggleSwitch = _interopRequireDefault(require("./ToggleSwitch"));
|
|
294
|
+
|
|
295
|
+
var _Tooltip = _interopRequireDefault(require("./Tooltip"));
|
|
296
|
+
|
|
297
|
+
var _TooltipButton = _interopRequireDefault(require("./TooltipButton"));
|
|
298
|
+
|
|
299
|
+
var _Typography = _interopRequireDefault(require("./Typography"));
|
|
300
|
+
|
|
301
|
+
var _spacingScale = _interopRequireDefault(require("./spacingScale"));
|
|
302
|
+
|
|
303
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|