@carbon/themes 10.25.0-rc.0 → 10.26.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/docs/sass.md +1 -1
- package/es/index.js +38 -33
- package/lib/index.js +670 -358
- package/package.json +9 -8
- package/umd/index.js +669 -357
package/umd/index.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
2
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('color'), require('@carbon/colors'), require('@carbon/type'), require('@carbon/layout')) :
|
|
3
3
|
typeof define === 'function' && define.amd ? define(['exports', 'color', '@carbon/colors', '@carbon/type', '@carbon/layout'], factory) :
|
|
4
|
-
(factory(
|
|
5
|
-
}(this, (function (exports,Color,colors,type,layout) { 'use strict';
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.CarbonThemes = {}, global.Color, global.CarbonColors, global.CarbonType, global.CarbonLayout));
|
|
5
|
+
}(this, (function (exports, Color, colors$1, type, layout) { 'use strict';
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
8
|
+
|
|
9
|
+
var Color__default = /*#__PURE__*/_interopDefaultLegacy(Color);
|
|
8
10
|
|
|
9
11
|
function _defineProperty(obj, key, value) {
|
|
10
12
|
if (key in obj) {
|
|
@@ -66,8 +68,8 @@
|
|
|
66
68
|
*/
|
|
67
69
|
|
|
68
70
|
function adjustLightness(token, shift) {
|
|
69
|
-
var original =
|
|
70
|
-
return
|
|
71
|
+
var original = Color__default['default'](token).hsl().object();
|
|
72
|
+
return Color__default['default'](_objectSpread2(_objectSpread2({}, original), {}, {
|
|
71
73
|
l: original.l += shift
|
|
72
74
|
})).round().hex().toLowerCase();
|
|
73
75
|
}
|
|
@@ -78,72 +80,72 @@
|
|
|
78
80
|
* This source code is licensed under the Apache-2.0 license found in the
|
|
79
81
|
* LICENSE file in the root directory of this source tree.
|
|
80
82
|
*/
|
|
81
|
-
var interactive01 = colors.blue60;
|
|
82
|
-
var interactive02 = colors.gray80;
|
|
83
|
-
var interactive03 = colors.blue60;
|
|
84
|
-
var interactive04 = colors.blue60;
|
|
85
|
-
var uiBackground = colors.white;
|
|
86
|
-
var ui01 = colors.gray10;
|
|
87
|
-
var ui02 = colors.white;
|
|
88
|
-
var ui03 = colors.gray20;
|
|
89
|
-
var ui04 = colors.gray50;
|
|
90
|
-
var ui05 = colors.gray100;
|
|
91
|
-
var text01 = colors.gray100;
|
|
92
|
-
var text02 = colors.gray70;
|
|
93
|
-
var text03 = colors.gray40;
|
|
94
|
-
var text04 = colors.white;
|
|
95
|
-
var text05 = colors.gray60;
|
|
96
|
-
var textError = colors.red60;
|
|
97
|
-
var icon01 = colors.gray100;
|
|
98
|
-
var icon02 = colors.gray70;
|
|
99
|
-
var icon03 = colors.white;
|
|
100
|
-
var link01 = colors.blue60;
|
|
101
|
-
var inverseLink = colors.blue40;
|
|
102
|
-
var field01 = colors.gray10;
|
|
103
|
-
var field02 = colors.white;
|
|
104
|
-
var inverse01 = colors.white;
|
|
105
|
-
var inverse02 = colors.gray80;
|
|
106
|
-
var support01 = colors.red60;
|
|
107
|
-
var support02 = colors.green50;
|
|
108
|
-
var support03 = colors.yellow;
|
|
109
|
-
var support04 = colors.blue70;
|
|
110
|
-
var inverseSupport01 = colors.red50;
|
|
111
|
-
var inverseSupport02 = colors.green40;
|
|
112
|
-
var inverseSupport03 = colors.yellow;
|
|
113
|
-
var inverseSupport04 = colors.blue50;
|
|
114
|
-
var overlay01 = colors.rgba(colors.gray100, 0.5);
|
|
115
|
-
var danger01 = colors.red60;
|
|
116
|
-
var danger02 = colors.red60; // Interaction states
|
|
83
|
+
var interactive01 = colors$1.blue60;
|
|
84
|
+
var interactive02 = colors$1.gray80;
|
|
85
|
+
var interactive03 = colors$1.blue60;
|
|
86
|
+
var interactive04 = colors$1.blue60;
|
|
87
|
+
var uiBackground = colors$1.white;
|
|
88
|
+
var ui01 = colors$1.gray10;
|
|
89
|
+
var ui02 = colors$1.white;
|
|
90
|
+
var ui03 = colors$1.gray20;
|
|
91
|
+
var ui04 = colors$1.gray50;
|
|
92
|
+
var ui05 = colors$1.gray100;
|
|
93
|
+
var text01 = colors$1.gray100;
|
|
94
|
+
var text02 = colors$1.gray70;
|
|
95
|
+
var text03 = colors$1.gray40;
|
|
96
|
+
var text04 = colors$1.white;
|
|
97
|
+
var text05 = colors$1.gray60;
|
|
98
|
+
var textError = colors$1.red60;
|
|
99
|
+
var icon01 = colors$1.gray100;
|
|
100
|
+
var icon02 = colors$1.gray70;
|
|
101
|
+
var icon03 = colors$1.white;
|
|
102
|
+
var link01 = colors$1.blue60;
|
|
103
|
+
var inverseLink = colors$1.blue40;
|
|
104
|
+
var field01 = colors$1.gray10;
|
|
105
|
+
var field02 = colors$1.white;
|
|
106
|
+
var inverse01 = colors$1.white;
|
|
107
|
+
var inverse02 = colors$1.gray80;
|
|
108
|
+
var support01 = colors$1.red60;
|
|
109
|
+
var support02 = colors$1.green50;
|
|
110
|
+
var support03 = colors$1.yellow;
|
|
111
|
+
var support04 = colors$1.blue70;
|
|
112
|
+
var inverseSupport01 = colors$1.red50;
|
|
113
|
+
var inverseSupport02 = colors$1.green40;
|
|
114
|
+
var inverseSupport03 = colors$1.yellow;
|
|
115
|
+
var inverseSupport04 = colors$1.blue50;
|
|
116
|
+
var overlay01 = colors$1.rgba(colors$1.gray100, 0.5);
|
|
117
|
+
var danger01 = colors$1.red60;
|
|
118
|
+
var danger02 = colors$1.red60; // Interaction states
|
|
117
119
|
|
|
118
|
-
var focus = colors.blue60;
|
|
119
|
-
var inverseFocusUi = colors.white;
|
|
120
|
+
var focus = colors$1.blue60;
|
|
121
|
+
var inverseFocusUi = colors$1.white;
|
|
120
122
|
var hoverPrimary = '#0353e9';
|
|
121
|
-
var activePrimary = colors.blue80;
|
|
122
|
-
var hoverPrimaryText = colors.blue70;
|
|
123
|
+
var activePrimary = colors$1.blue80;
|
|
124
|
+
var hoverPrimaryText = colors$1.blue70;
|
|
123
125
|
var hoverSecondary = '#4c4c4c';
|
|
124
|
-
var activeSecondary = colors.gray60;
|
|
126
|
+
var activeSecondary = colors$1.gray60;
|
|
125
127
|
var hoverTertiary = '#0353e9';
|
|
126
|
-
var activeTertiary = colors.blue80;
|
|
128
|
+
var activeTertiary = colors$1.blue80;
|
|
127
129
|
var hoverUI = '#e5e5e5';
|
|
128
130
|
var hoverLightUI = '#e5e5e5';
|
|
129
|
-
var activeUI = colors.gray30;
|
|
130
|
-
var activeLightUI = colors.gray30;
|
|
131
|
-
var selectedUI = colors.gray20;
|
|
132
|
-
var selectedLightUI = colors.gray20;
|
|
131
|
+
var activeUI = colors$1.gray30;
|
|
132
|
+
var activeLightUI = colors$1.gray30;
|
|
133
|
+
var selectedUI = colors$1.gray20;
|
|
134
|
+
var selectedLightUI = colors$1.gray20;
|
|
133
135
|
var inverseHoverUI = '#4c4c4c';
|
|
134
136
|
var hoverSelectedUI = '#cacaca';
|
|
135
137
|
var hoverDanger = adjustLightness(danger01, -8);
|
|
136
|
-
var activeDanger = colors.red80;
|
|
138
|
+
var activeDanger = colors$1.red80;
|
|
137
139
|
var hoverRow = '#e5e5e5';
|
|
138
|
-
var visitedLink = colors.purple60;
|
|
139
|
-
var disabled01 = colors.gray10;
|
|
140
|
-
var disabled02 = colors.gray30;
|
|
141
|
-
var disabled03 = colors.gray50;
|
|
142
|
-
var highlight = colors.blue20;
|
|
143
|
-
var decorative01 = colors.gray20;
|
|
140
|
+
var visitedLink = colors$1.purple60;
|
|
141
|
+
var disabled01 = colors$1.gray10;
|
|
142
|
+
var disabled02 = colors$1.gray30;
|
|
143
|
+
var disabled03 = colors$1.gray50;
|
|
144
|
+
var highlight = colors$1.blue20;
|
|
145
|
+
var decorative01 = colors$1.gray20;
|
|
144
146
|
var buttonSeparator = '#e0e0e0';
|
|
145
147
|
var skeleton01 = '#e5e5e5';
|
|
146
|
-
var skeleton02 = colors.gray30; // Type
|
|
148
|
+
var skeleton02 = colors$1.gray30; // Type
|
|
147
149
|
|
|
148
150
|
var brand01 = interactive01;
|
|
149
151
|
var brand02 = interactive02;
|
|
@@ -153,6 +155,7 @@
|
|
|
153
155
|
var danger = danger01;
|
|
154
156
|
|
|
155
157
|
var white = /*#__PURE__*/Object.freeze({
|
|
158
|
+
__proto__: null,
|
|
156
159
|
interactive01: interactive01,
|
|
157
160
|
interactive02: interactive02,
|
|
158
161
|
interactive03: interactive03,
|
|
@@ -293,72 +296,72 @@
|
|
|
293
296
|
* This source code is licensed under the Apache-2.0 license found in the
|
|
294
297
|
* LICENSE file in the root directory of this source tree.
|
|
295
298
|
*/
|
|
296
|
-
var interactive01$1 = colors.blue60;
|
|
297
|
-
var interactive02$1 = colors.gray80;
|
|
298
|
-
var interactive03$1 = colors.blue60;
|
|
299
|
-
var interactive04$1 = colors.blue60;
|
|
300
|
-
var uiBackground$1 = colors.gray10;
|
|
301
|
-
var ui01$1 = colors.white;
|
|
302
|
-
var ui02$1 = colors.gray10;
|
|
303
|
-
var ui03$1 = colors.gray20;
|
|
304
|
-
var ui04$1 = colors.gray50;
|
|
305
|
-
var ui05$1 = colors.gray100;
|
|
306
|
-
var text01$1 = colors.gray100;
|
|
307
|
-
var text02$1 = colors.gray70;
|
|
308
|
-
var text03$1 = colors.gray40;
|
|
309
|
-
var text04$1 = colors.white;
|
|
310
|
-
var text05$1 = colors.gray60;
|
|
311
|
-
var textError$1 = colors.red60;
|
|
312
|
-
var icon01$1 = colors.gray100;
|
|
313
|
-
var icon02$1 = colors.gray70;
|
|
314
|
-
var icon03$1 = colors.white;
|
|
315
|
-
var link01$1 = colors.blue60;
|
|
316
|
-
var inverseLink$1 = colors.blue40;
|
|
317
|
-
var field01$1 = colors.white;
|
|
318
|
-
var field02$1 = colors.gray10;
|
|
319
|
-
var inverse01$1 = colors.white;
|
|
320
|
-
var inverse02$1 = colors.gray80;
|
|
321
|
-
var support01$1 = colors.red60;
|
|
322
|
-
var support02$1 = colors.green50;
|
|
323
|
-
var support03$1 = colors.yellow;
|
|
324
|
-
var support04$1 = colors.blue70;
|
|
325
|
-
var inverseSupport01$1 = colors.red50;
|
|
326
|
-
var inverseSupport02$1 = colors.green40;
|
|
327
|
-
var inverseSupport03$1 = colors.yellow;
|
|
328
|
-
var inverseSupport04$1 = colors.blue50;
|
|
329
|
-
var overlay01$1 = colors.rgba(colors.gray100, 0.5);
|
|
330
|
-
var danger01$1 = colors.red60;
|
|
331
|
-
var danger02$1 = colors.red60; // Interaction states
|
|
299
|
+
var interactive01$1 = colors$1.blue60;
|
|
300
|
+
var interactive02$1 = colors$1.gray80;
|
|
301
|
+
var interactive03$1 = colors$1.blue60;
|
|
302
|
+
var interactive04$1 = colors$1.blue60;
|
|
303
|
+
var uiBackground$1 = colors$1.gray10;
|
|
304
|
+
var ui01$1 = colors$1.white;
|
|
305
|
+
var ui02$1 = colors$1.gray10;
|
|
306
|
+
var ui03$1 = colors$1.gray20;
|
|
307
|
+
var ui04$1 = colors$1.gray50;
|
|
308
|
+
var ui05$1 = colors$1.gray100;
|
|
309
|
+
var text01$1 = colors$1.gray100;
|
|
310
|
+
var text02$1 = colors$1.gray70;
|
|
311
|
+
var text03$1 = colors$1.gray40;
|
|
312
|
+
var text04$1 = colors$1.white;
|
|
313
|
+
var text05$1 = colors$1.gray60;
|
|
314
|
+
var textError$1 = colors$1.red60;
|
|
315
|
+
var icon01$1 = colors$1.gray100;
|
|
316
|
+
var icon02$1 = colors$1.gray70;
|
|
317
|
+
var icon03$1 = colors$1.white;
|
|
318
|
+
var link01$1 = colors$1.blue60;
|
|
319
|
+
var inverseLink$1 = colors$1.blue40;
|
|
320
|
+
var field01$1 = colors$1.white;
|
|
321
|
+
var field02$1 = colors$1.gray10;
|
|
322
|
+
var inverse01$1 = colors$1.white;
|
|
323
|
+
var inverse02$1 = colors$1.gray80;
|
|
324
|
+
var support01$1 = colors$1.red60;
|
|
325
|
+
var support02$1 = colors$1.green50;
|
|
326
|
+
var support03$1 = colors$1.yellow;
|
|
327
|
+
var support04$1 = colors$1.blue70;
|
|
328
|
+
var inverseSupport01$1 = colors$1.red50;
|
|
329
|
+
var inverseSupport02$1 = colors$1.green40;
|
|
330
|
+
var inverseSupport03$1 = colors$1.yellow;
|
|
331
|
+
var inverseSupport04$1 = colors$1.blue50;
|
|
332
|
+
var overlay01$1 = colors$1.rgba(colors$1.gray100, 0.5);
|
|
333
|
+
var danger01$1 = colors$1.red60;
|
|
334
|
+
var danger02$1 = colors$1.red60; // Interaction states
|
|
332
335
|
|
|
333
|
-
var focus$1 = colors.blue60;
|
|
334
|
-
var inverseFocusUi$1 = colors.white;
|
|
336
|
+
var focus$1 = colors$1.blue60;
|
|
337
|
+
var inverseFocusUi$1 = colors$1.white;
|
|
335
338
|
var hoverPrimary$1 = '#0353e9';
|
|
336
|
-
var activePrimary$1 = colors.blue80;
|
|
337
|
-
var hoverPrimaryText$1 = colors.blue70;
|
|
339
|
+
var activePrimary$1 = colors$1.blue80;
|
|
340
|
+
var hoverPrimaryText$1 = colors$1.blue70;
|
|
338
341
|
var hoverSecondary$1 = '#4c4c4c';
|
|
339
|
-
var activeSecondary$1 = colors.gray60;
|
|
342
|
+
var activeSecondary$1 = colors$1.gray60;
|
|
340
343
|
var hoverTertiary$1 = '#0353e9';
|
|
341
|
-
var activeTertiary$1 = colors.blue80;
|
|
344
|
+
var activeTertiary$1 = colors$1.blue80;
|
|
342
345
|
var hoverUI$1 = '#e5e5e5';
|
|
343
346
|
var hoverLightUI$1 = '#e5e5e5';
|
|
344
|
-
var activeUI$1 = colors.gray30;
|
|
345
|
-
var activeLightUI$1 = colors.gray30;
|
|
346
|
-
var selectedUI$1 = colors.gray20;
|
|
347
|
-
var selectedLightUI$1 = colors.gray20;
|
|
347
|
+
var activeUI$1 = colors$1.gray30;
|
|
348
|
+
var activeLightUI$1 = colors$1.gray30;
|
|
349
|
+
var selectedUI$1 = colors$1.gray20;
|
|
350
|
+
var selectedLightUI$1 = colors$1.gray20;
|
|
348
351
|
var inverseHoverUI$1 = '#4c4c4c';
|
|
349
352
|
var hoverSelectedUI$1 = '#cacaca';
|
|
350
353
|
var hoverDanger$1 = adjustLightness(danger01$1, -8);
|
|
351
|
-
var activeDanger$1 = colors.red80;
|
|
354
|
+
var activeDanger$1 = colors$1.red80;
|
|
352
355
|
var hoverRow$1 = '#e5e5e5';
|
|
353
|
-
var visitedLink$1 = colors.purple60;
|
|
354
|
-
var disabled01$1 = colors.white;
|
|
355
|
-
var disabled02$1 = colors.gray30;
|
|
356
|
-
var disabled03$1 = colors.gray50;
|
|
357
|
-
var highlight$1 = colors.blue10;
|
|
358
|
-
var decorative01$1 = colors.gray20;
|
|
356
|
+
var visitedLink$1 = colors$1.purple60;
|
|
357
|
+
var disabled01$1 = colors$1.white;
|
|
358
|
+
var disabled02$1 = colors$1.gray30;
|
|
359
|
+
var disabled03$1 = colors$1.gray50;
|
|
360
|
+
var highlight$1 = colors$1.blue10;
|
|
361
|
+
var decorative01$1 = colors$1.gray20;
|
|
359
362
|
var buttonSeparator$1 = '#e0e0e0';
|
|
360
363
|
var skeleton01$1 = '#e5e5e5';
|
|
361
|
-
var skeleton02$1 = colors.gray30;
|
|
364
|
+
var skeleton02$1 = colors$1.gray30;
|
|
362
365
|
|
|
363
366
|
var brand01$1 = interactive01$1;
|
|
364
367
|
var brand02$1 = interactive02$1;
|
|
@@ -368,6 +371,7 @@
|
|
|
368
371
|
var danger$1 = danger01$1;
|
|
369
372
|
|
|
370
373
|
var g10 = /*#__PURE__*/Object.freeze({
|
|
374
|
+
__proto__: null,
|
|
371
375
|
interactive01: interactive01$1,
|
|
372
376
|
interactive02: interactive02$1,
|
|
373
377
|
interactive03: interactive03$1,
|
|
@@ -508,72 +512,72 @@
|
|
|
508
512
|
* This source code is licensed under the Apache-2.0 license found in the
|
|
509
513
|
* LICENSE file in the root directory of this source tree.
|
|
510
514
|
*/
|
|
511
|
-
var interactive01$2 = colors.blue60;
|
|
512
|
-
var interactive02$2 = colors.gray60;
|
|
513
|
-
var interactive03$2 = colors.white;
|
|
514
|
-
var interactive04$2 = colors.blue50;
|
|
515
|
-
var uiBackground$2 = colors.gray100;
|
|
516
|
-
var ui01$2 = colors.gray90;
|
|
517
|
-
var ui02$2 = colors.gray80;
|
|
518
|
-
var ui03$2 = colors.gray80;
|
|
519
|
-
var ui04$2 = colors.gray60;
|
|
520
|
-
var ui05$2 = colors.gray10;
|
|
521
|
-
var text01$2 = colors.gray10;
|
|
522
|
-
var text02$2 = colors.gray30;
|
|
523
|
-
var text03$2 = colors.gray60;
|
|
524
|
-
var text04$2 = colors.white;
|
|
525
|
-
var text05$2 = colors.gray50;
|
|
526
|
-
var textError$2 = colors.red40;
|
|
527
|
-
var icon01$2 = colors.gray10;
|
|
528
|
-
var icon02$2 = colors.gray30;
|
|
529
|
-
var icon03$2 = colors.white;
|
|
530
|
-
var link01$2 = colors.blue40;
|
|
531
|
-
var inverseLink$2 = colors.blue60;
|
|
532
|
-
var field01$2 = colors.gray90;
|
|
533
|
-
var field02$2 = colors.gray80;
|
|
534
|
-
var inverse01$2 = colors.gray100;
|
|
535
|
-
var inverse02$2 = colors.gray10;
|
|
536
|
-
var support01$2 = colors.red50;
|
|
537
|
-
var support02$2 = colors.green40;
|
|
538
|
-
var support03$2 = colors.yellow;
|
|
539
|
-
var support04$2 = colors.blue50;
|
|
540
|
-
var inverseSupport01$2 = colors.red60;
|
|
541
|
-
var inverseSupport02$2 = colors.green50;
|
|
542
|
-
var inverseSupport03$2 = colors.yellow;
|
|
543
|
-
var inverseSupport04$2 = colors.blue60;
|
|
544
|
-
var overlay01$2 = colors.rgba(colors.gray100, 0.7);
|
|
545
|
-
var danger01$2 = colors.red60;
|
|
546
|
-
var danger02$2 = colors.red50; // Interaction states
|
|
515
|
+
var interactive01$2 = colors$1.blue60;
|
|
516
|
+
var interactive02$2 = colors$1.gray60;
|
|
517
|
+
var interactive03$2 = colors$1.white;
|
|
518
|
+
var interactive04$2 = colors$1.blue50;
|
|
519
|
+
var uiBackground$2 = colors$1.gray100;
|
|
520
|
+
var ui01$2 = colors$1.gray90;
|
|
521
|
+
var ui02$2 = colors$1.gray80;
|
|
522
|
+
var ui03$2 = colors$1.gray80;
|
|
523
|
+
var ui04$2 = colors$1.gray60;
|
|
524
|
+
var ui05$2 = colors$1.gray10;
|
|
525
|
+
var text01$2 = colors$1.gray10;
|
|
526
|
+
var text02$2 = colors$1.gray30;
|
|
527
|
+
var text03$2 = colors$1.gray60;
|
|
528
|
+
var text04$2 = colors$1.white;
|
|
529
|
+
var text05$2 = colors$1.gray50;
|
|
530
|
+
var textError$2 = colors$1.red40;
|
|
531
|
+
var icon01$2 = colors$1.gray10;
|
|
532
|
+
var icon02$2 = colors$1.gray30;
|
|
533
|
+
var icon03$2 = colors$1.white;
|
|
534
|
+
var link01$2 = colors$1.blue40;
|
|
535
|
+
var inverseLink$2 = colors$1.blue60;
|
|
536
|
+
var field01$2 = colors$1.gray90;
|
|
537
|
+
var field02$2 = colors$1.gray80;
|
|
538
|
+
var inverse01$2 = colors$1.gray100;
|
|
539
|
+
var inverse02$2 = colors$1.gray10;
|
|
540
|
+
var support01$2 = colors$1.red50;
|
|
541
|
+
var support02$2 = colors$1.green40;
|
|
542
|
+
var support03$2 = colors$1.yellow;
|
|
543
|
+
var support04$2 = colors$1.blue50;
|
|
544
|
+
var inverseSupport01$2 = colors$1.red60;
|
|
545
|
+
var inverseSupport02$2 = colors$1.green50;
|
|
546
|
+
var inverseSupport03$2 = colors$1.yellow;
|
|
547
|
+
var inverseSupport04$2 = colors$1.blue60;
|
|
548
|
+
var overlay01$2 = colors$1.rgba(colors$1.gray100, 0.7);
|
|
549
|
+
var danger01$2 = colors$1.red60;
|
|
550
|
+
var danger02$2 = colors$1.red50; // Interaction states
|
|
547
551
|
|
|
548
|
-
var focus$2 = colors.white;
|
|
549
|
-
var inverseFocusUi$2 = colors.blue60;
|
|
552
|
+
var focus$2 = colors$1.white;
|
|
553
|
+
var inverseFocusUi$2 = colors$1.blue60;
|
|
550
554
|
var hoverPrimary$2 = '#0353e9';
|
|
551
|
-
var activePrimary$2 = colors.blue80;
|
|
552
|
-
var hoverPrimaryText$2 = colors.blue30;
|
|
555
|
+
var activePrimary$2 = colors$1.blue80;
|
|
556
|
+
var hoverPrimaryText$2 = colors$1.blue30;
|
|
553
557
|
var hoverSecondary$2 = '#606060';
|
|
554
|
-
var activeSecondary$2 = colors.gray80;
|
|
555
|
-
var hoverTertiary$2 = colors.gray10;
|
|
556
|
-
var activeTertiary$2 = colors.gray30;
|
|
558
|
+
var activeSecondary$2 = colors$1.gray80;
|
|
559
|
+
var hoverTertiary$2 = colors$1.gray10;
|
|
560
|
+
var activeTertiary$2 = colors$1.gray30;
|
|
557
561
|
var hoverUI$2 = '#353535';
|
|
558
562
|
var hoverLightUI$2 = '#4c4c4c';
|
|
559
|
-
var activeUI$2 = colors.gray70;
|
|
560
|
-
var activeLightUI$2 = colors.gray60;
|
|
561
|
-
var selectedUI$2 = colors.gray80;
|
|
562
|
-
var selectedLightUI$2 = colors.gray70;
|
|
563
|
+
var activeUI$2 = colors$1.gray70;
|
|
564
|
+
var activeLightUI$2 = colors$1.gray60;
|
|
565
|
+
var selectedUI$2 = colors$1.gray80;
|
|
566
|
+
var selectedLightUI$2 = colors$1.gray70;
|
|
563
567
|
var inverseHoverUI$2 = '#e5e5e5';
|
|
564
568
|
var hoverSelectedUI$2 = '#4c4c4c';
|
|
565
569
|
var hoverDanger$2 = adjustLightness(danger01$2, -8);
|
|
566
|
-
var activeDanger$2 = colors.red80;
|
|
570
|
+
var activeDanger$2 = colors$1.red80;
|
|
567
571
|
var hoverRow$2 = '#353535';
|
|
568
|
-
var visitedLink$2 = colors.purple40;
|
|
569
|
-
var disabled01$2 = colors.gray90;
|
|
570
|
-
var disabled02$2 = colors.gray70;
|
|
571
|
-
var disabled03$2 = colors.gray50;
|
|
572
|
-
var highlight$2 = colors.blue80;
|
|
573
|
-
var decorative01$2 = colors.gray70;
|
|
572
|
+
var visitedLink$2 = colors$1.purple40;
|
|
573
|
+
var disabled01$2 = colors$1.gray90;
|
|
574
|
+
var disabled02$2 = colors$1.gray70;
|
|
575
|
+
var disabled03$2 = colors$1.gray50;
|
|
576
|
+
var highlight$2 = colors$1.blue80;
|
|
577
|
+
var decorative01$2 = colors$1.gray70;
|
|
574
578
|
var buttonSeparator$2 = '#161616';
|
|
575
579
|
var skeleton01$2 = '#353535';
|
|
576
|
-
var skeleton02$2 = colors.gray80;
|
|
580
|
+
var skeleton02$2 = colors$1.gray80;
|
|
577
581
|
|
|
578
582
|
var brand01$2 = interactive01$2;
|
|
579
583
|
var brand02$2 = interactive02$2;
|
|
@@ -583,6 +587,7 @@
|
|
|
583
587
|
var danger$2 = danger01$2;
|
|
584
588
|
|
|
585
589
|
var g100 = /*#__PURE__*/Object.freeze({
|
|
590
|
+
__proto__: null,
|
|
586
591
|
interactive01: interactive01$2,
|
|
587
592
|
interactive02: interactive02$2,
|
|
588
593
|
interactive03: interactive03$2,
|
|
@@ -723,72 +728,72 @@
|
|
|
723
728
|
* This source code is licensed under the Apache-2.0 license found in the
|
|
724
729
|
* LICENSE file in the root directory of this source tree.
|
|
725
730
|
*/
|
|
726
|
-
var interactive01$3 = colors.blue60;
|
|
727
|
-
var interactive02$3 = colors.gray60;
|
|
728
|
-
var interactive03$3 = colors.white;
|
|
729
|
-
var interactive04$3 = colors.blue50;
|
|
730
|
-
var uiBackground$3 = colors.gray90;
|
|
731
|
-
var ui01$3 = colors.gray80;
|
|
732
|
-
var ui02$3 = colors.gray70;
|
|
733
|
-
var ui03$3 = colors.gray70;
|
|
734
|
-
var ui04$3 = colors.gray50;
|
|
735
|
-
var ui05$3 = colors.gray10;
|
|
736
|
-
var text01$3 = colors.gray10;
|
|
737
|
-
var text02$3 = colors.gray30;
|
|
738
|
-
var text03$3 = colors.gray60;
|
|
739
|
-
var text04$3 = colors.white;
|
|
740
|
-
var text05$3 = colors.gray50;
|
|
741
|
-
var textError$3 = colors.red30;
|
|
742
|
-
var icon01$3 = colors.gray10;
|
|
743
|
-
var icon02$3 = colors.gray30;
|
|
744
|
-
var icon03$3 = colors.white;
|
|
745
|
-
var link01$3 = colors.blue40;
|
|
746
|
-
var inverseLink$3 = colors.blue60;
|
|
747
|
-
var field01$3 = colors.gray80;
|
|
748
|
-
var field02$3 = colors.gray70;
|
|
749
|
-
var inverse01$3 = colors.gray100;
|
|
750
|
-
var inverse02$3 = colors.gray10;
|
|
751
|
-
var support01$3 = colors.red40;
|
|
752
|
-
var support02$3 = colors.green40;
|
|
753
|
-
var support03$3 = colors.yellow;
|
|
754
|
-
var support04$3 = colors.blue50;
|
|
755
|
-
var inverseSupport01$3 = colors.red60;
|
|
756
|
-
var inverseSupport02$3 = colors.green50;
|
|
757
|
-
var inverseSupport03$3 = colors.yellow;
|
|
758
|
-
var inverseSupport04$3 = colors.blue60;
|
|
759
|
-
var overlay01$3 = colors.rgba(colors.gray100, 0.7);
|
|
760
|
-
var danger01$3 = colors.red60;
|
|
761
|
-
var danger02$3 = colors.red40; // Interaction states
|
|
731
|
+
var interactive01$3 = colors$1.blue60;
|
|
732
|
+
var interactive02$3 = colors$1.gray60;
|
|
733
|
+
var interactive03$3 = colors$1.white;
|
|
734
|
+
var interactive04$3 = colors$1.blue50;
|
|
735
|
+
var uiBackground$3 = colors$1.gray90;
|
|
736
|
+
var ui01$3 = colors$1.gray80;
|
|
737
|
+
var ui02$3 = colors$1.gray70;
|
|
738
|
+
var ui03$3 = colors$1.gray70;
|
|
739
|
+
var ui04$3 = colors$1.gray50;
|
|
740
|
+
var ui05$3 = colors$1.gray10;
|
|
741
|
+
var text01$3 = colors$1.gray10;
|
|
742
|
+
var text02$3 = colors$1.gray30;
|
|
743
|
+
var text03$3 = colors$1.gray60;
|
|
744
|
+
var text04$3 = colors$1.white;
|
|
745
|
+
var text05$3 = colors$1.gray50;
|
|
746
|
+
var textError$3 = colors$1.red30;
|
|
747
|
+
var icon01$3 = colors$1.gray10;
|
|
748
|
+
var icon02$3 = colors$1.gray30;
|
|
749
|
+
var icon03$3 = colors$1.white;
|
|
750
|
+
var link01$3 = colors$1.blue40;
|
|
751
|
+
var inverseLink$3 = colors$1.blue60;
|
|
752
|
+
var field01$3 = colors$1.gray80;
|
|
753
|
+
var field02$3 = colors$1.gray70;
|
|
754
|
+
var inverse01$3 = colors$1.gray100;
|
|
755
|
+
var inverse02$3 = colors$1.gray10;
|
|
756
|
+
var support01$3 = colors$1.red40;
|
|
757
|
+
var support02$3 = colors$1.green40;
|
|
758
|
+
var support03$3 = colors$1.yellow;
|
|
759
|
+
var support04$3 = colors$1.blue50;
|
|
760
|
+
var inverseSupport01$3 = colors$1.red60;
|
|
761
|
+
var inverseSupport02$3 = colors$1.green50;
|
|
762
|
+
var inverseSupport03$3 = colors$1.yellow;
|
|
763
|
+
var inverseSupport04$3 = colors$1.blue60;
|
|
764
|
+
var overlay01$3 = colors$1.rgba(colors$1.gray100, 0.7);
|
|
765
|
+
var danger01$3 = colors$1.red60;
|
|
766
|
+
var danger02$3 = colors$1.red40; // Interaction states
|
|
762
767
|
|
|
763
|
-
var focus$3 = colors.white;
|
|
764
|
-
var inverseFocusUi$3 = colors.blue60;
|
|
768
|
+
var focus$3 = colors$1.white;
|
|
769
|
+
var inverseFocusUi$3 = colors$1.blue60;
|
|
765
770
|
var hoverPrimary$3 = '#0353e9';
|
|
766
|
-
var activePrimary$3 = colors.blue80;
|
|
767
|
-
var hoverPrimaryText$3 = colors.blue30;
|
|
771
|
+
var activePrimary$3 = colors$1.blue80;
|
|
772
|
+
var hoverPrimaryText$3 = colors$1.blue30;
|
|
768
773
|
var hoverSecondary$3 = '#606060';
|
|
769
|
-
var activeSecondary$3 = colors.gray80;
|
|
770
|
-
var hoverTertiary$3 = colors.gray10;
|
|
771
|
-
var activeTertiary$3 = colors.gray30;
|
|
774
|
+
var activeSecondary$3 = colors$1.gray80;
|
|
775
|
+
var hoverTertiary$3 = colors$1.gray10;
|
|
776
|
+
var activeTertiary$3 = colors$1.gray30;
|
|
772
777
|
var hoverUI$3 = '#4c4c4c';
|
|
773
778
|
var hoverLightUI$3 = '#656565';
|
|
774
|
-
var activeUI$3 = colors.gray60;
|
|
775
|
-
var activeLightUI$3 = colors.gray50;
|
|
776
|
-
var selectedUI$3 = colors.gray70;
|
|
777
|
-
var selectedLightUI$3 = colors.gray60;
|
|
779
|
+
var activeUI$3 = colors$1.gray60;
|
|
780
|
+
var activeLightUI$3 = colors$1.gray50;
|
|
781
|
+
var selectedUI$3 = colors$1.gray70;
|
|
782
|
+
var selectedLightUI$3 = colors$1.gray60;
|
|
778
783
|
var inverseHoverUI$3 = '#e5e5e5';
|
|
779
784
|
var hoverSelectedUI$3 = '#656565';
|
|
780
785
|
var hoverDanger$3 = adjustLightness(danger01$3, -8);
|
|
781
|
-
var activeDanger$3 = colors.red80;
|
|
786
|
+
var activeDanger$3 = colors$1.red80;
|
|
782
787
|
var hoverRow$3 = '#4c4c4c';
|
|
783
|
-
var visitedLink$3 = colors.purple40;
|
|
784
|
-
var disabled01$3 = colors.gray80;
|
|
785
|
-
var disabled02$3 = colors.gray60;
|
|
786
|
-
var disabled03$3 = colors.gray40;
|
|
787
|
-
var highlight$3 = colors.blue70;
|
|
788
|
-
var decorative01$3 = colors.gray60;
|
|
788
|
+
var visitedLink$3 = colors$1.purple40;
|
|
789
|
+
var disabled01$3 = colors$1.gray80;
|
|
790
|
+
var disabled02$3 = colors$1.gray60;
|
|
791
|
+
var disabled03$3 = colors$1.gray40;
|
|
792
|
+
var highlight$3 = colors$1.blue70;
|
|
793
|
+
var decorative01$3 = colors$1.gray60;
|
|
789
794
|
var buttonSeparator$3 = '#161616';
|
|
790
795
|
var skeleton01$3 = '#353535';
|
|
791
|
-
var skeleton02$3 = colors.gray70;
|
|
796
|
+
var skeleton02$3 = colors$1.gray70;
|
|
792
797
|
|
|
793
798
|
var brand01$3 = interactive01$3;
|
|
794
799
|
var brand02$3 = interactive02$3;
|
|
@@ -798,6 +803,7 @@
|
|
|
798
803
|
var danger$3 = danger01$3;
|
|
799
804
|
|
|
800
805
|
var g90 = /*#__PURE__*/Object.freeze({
|
|
806
|
+
__proto__: null,
|
|
801
807
|
interactive01: interactive01$3,
|
|
802
808
|
interactive02: interactive02$3,
|
|
803
809
|
interactive03: interactive03$3,
|
|
@@ -943,7 +949,7 @@
|
|
|
943
949
|
var interactive03$4 = '#3d70b2';
|
|
944
950
|
var interactive04$4 = '#3d70b2';
|
|
945
951
|
var uiBackground$4 = '#f4f7fb';
|
|
946
|
-
var ui01$4 = colors.white;
|
|
952
|
+
var ui01$4 = colors$1.white;
|
|
947
953
|
var ui02$4 = '#f4f7fb';
|
|
948
954
|
var ui03$4 = '#dfe3e6';
|
|
949
955
|
var ui04$4 = '#8897a2';
|
|
@@ -951,17 +957,17 @@
|
|
|
951
957
|
var text01$4 = '#152935';
|
|
952
958
|
var text02$4 = '#5a6872';
|
|
953
959
|
var text03$4 = '#cdd1d4';
|
|
954
|
-
var text04$4 = colors.white;
|
|
960
|
+
var text04$4 = colors$1.white;
|
|
955
961
|
var text05$4 = '#5a6872';
|
|
956
962
|
var textError$4 = '#e0182d';
|
|
957
963
|
var icon01$4 = '#3d70b2';
|
|
958
964
|
var icon02$4 = '#5a6872';
|
|
959
|
-
var icon03$4 = colors.white;
|
|
965
|
+
var icon03$4 = colors$1.white;
|
|
960
966
|
var link01$4 = '#3d70b2';
|
|
961
967
|
var inverseLink$4 = '#5596e6';
|
|
962
|
-
var field01$4 = colors.white;
|
|
968
|
+
var field01$4 = colors$1.white;
|
|
963
969
|
var field02$4 = '#f4f7fb';
|
|
964
|
-
var inverse01$4 = colors.white;
|
|
970
|
+
var inverse01$4 = colors$1.white;
|
|
965
971
|
var inverse02$4 = '#272d33';
|
|
966
972
|
var support01$4 = '#e0182d';
|
|
967
973
|
var support02$4 = '#5aa700';
|
|
@@ -972,8 +978,8 @@
|
|
|
972
978
|
var inverseSupport03$4 = '#FDD600';
|
|
973
979
|
var inverseSupport04$4 = '#5aaafa';
|
|
974
980
|
var overlay01$4 = 'rgba(223, 227, 230, 0.5)';
|
|
975
|
-
var danger01$4 = colors.red60;
|
|
976
|
-
var danger02$4 = colors.red60; // Interaction states
|
|
981
|
+
var danger01$4 = colors$1.red60;
|
|
982
|
+
var danger02$4 = colors$1.red60; // Interaction states
|
|
977
983
|
|
|
978
984
|
var focus$4 = '#3d70b2';
|
|
979
985
|
var inverseFocusUi$4 = '#3d70b2';
|
|
@@ -1013,6 +1019,7 @@
|
|
|
1013
1019
|
var danger$4 = danger01$4;
|
|
1014
1020
|
|
|
1015
1021
|
var v9 = /*#__PURE__*/Object.freeze({
|
|
1022
|
+
__proto__: null,
|
|
1016
1023
|
interactive01: interactive01$4,
|
|
1017
1024
|
interactive02: interactive02$4,
|
|
1018
1025
|
interactive03: interactive03$4,
|
|
@@ -1155,7 +1162,7 @@
|
|
|
1155
1162
|
*/
|
|
1156
1163
|
// exported as in JavaScript
|
|
1157
1164
|
|
|
1158
|
-
var colors
|
|
1165
|
+
var colors = [// Core
|
|
1159
1166
|
'interactive01', 'interactive02', 'interactive03', 'interactive04', 'uiBackground', 'ui01', 'ui02', 'ui03', 'ui04', 'ui05', 'text01', 'text02', 'text03', 'text04', 'text05', 'textError', 'icon01', 'icon02', 'icon03', 'link01', 'inverseLink', 'field01', 'field02', 'inverse01', 'inverse02', 'support01', 'support02', 'support03', 'support04', 'inverseSupport01', 'inverseSupport02', 'inverseSupport03', 'inverseSupport04', 'overlay01', 'danger01', 'danger02', // Interactive states
|
|
1160
1167
|
'focus', 'inverseFocusUi', 'hoverPrimary', 'activePrimary', 'hoverPrimaryText', 'hoverSecondary', 'activeSecondary', 'hoverTertiary', 'activeTertiary', 'hoverUI', 'hoverLightUI', 'hoverSelectedUI', 'activeUI', 'activeLightUI', 'selectedUI', 'selectedLightUI', 'inverseHoverUI', 'hoverDanger', 'activeDanger', 'hoverRow', 'visitedLink', 'disabled01', 'disabled02', 'disabled03', 'highlight', 'decorative01', 'buttonSeparator', 'skeleton01', 'skeleton02', // Deprecated
|
|
1161
1168
|
'brand01', 'brand02', 'brand03', 'active01', 'hoverField', 'danger'];
|
|
@@ -1199,7 +1206,7 @@
|
|
|
1199
1206
|
return string;
|
|
1200
1207
|
}
|
|
1201
1208
|
var tokens = {
|
|
1202
|
-
colors: colors
|
|
1209
|
+
colors: colors,
|
|
1203
1210
|
type: type.unstable_tokens,
|
|
1204
1211
|
layout: layout.unstable_tokens
|
|
1205
1212
|
};
|
|
@@ -1228,147 +1235,452 @@
|
|
|
1228
1235
|
v9: v9
|
|
1229
1236
|
};
|
|
1230
1237
|
|
|
1231
|
-
exports
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
exports
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
exports
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
exports
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
exports
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
exports
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
exports
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
exports
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
exports
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
exports
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
exports
|
|
1238
|
+
Object.defineProperty(exports, 'bodyLong01', {
|
|
1239
|
+
enumerable: true,
|
|
1240
|
+
get: function () {
|
|
1241
|
+
return type.bodyLong01;
|
|
1242
|
+
}
|
|
1243
|
+
});
|
|
1244
|
+
Object.defineProperty(exports, 'bodyLong02', {
|
|
1245
|
+
enumerable: true,
|
|
1246
|
+
get: function () {
|
|
1247
|
+
return type.bodyLong02;
|
|
1248
|
+
}
|
|
1249
|
+
});
|
|
1250
|
+
Object.defineProperty(exports, 'bodyShort01', {
|
|
1251
|
+
enumerable: true,
|
|
1252
|
+
get: function () {
|
|
1253
|
+
return type.bodyShort01;
|
|
1254
|
+
}
|
|
1255
|
+
});
|
|
1256
|
+
Object.defineProperty(exports, 'bodyShort02', {
|
|
1257
|
+
enumerable: true,
|
|
1258
|
+
get: function () {
|
|
1259
|
+
return type.bodyShort02;
|
|
1260
|
+
}
|
|
1261
|
+
});
|
|
1262
|
+
Object.defineProperty(exports, 'caption01', {
|
|
1263
|
+
enumerable: true,
|
|
1264
|
+
get: function () {
|
|
1265
|
+
return type.caption01;
|
|
1266
|
+
}
|
|
1267
|
+
});
|
|
1268
|
+
Object.defineProperty(exports, 'code01', {
|
|
1269
|
+
enumerable: true,
|
|
1270
|
+
get: function () {
|
|
1271
|
+
return type.code01;
|
|
1272
|
+
}
|
|
1273
|
+
});
|
|
1274
|
+
Object.defineProperty(exports, 'code02', {
|
|
1275
|
+
enumerable: true,
|
|
1276
|
+
get: function () {
|
|
1277
|
+
return type.code02;
|
|
1278
|
+
}
|
|
1279
|
+
});
|
|
1280
|
+
Object.defineProperty(exports, 'display01', {
|
|
1281
|
+
enumerable: true,
|
|
1282
|
+
get: function () {
|
|
1283
|
+
return type.display01;
|
|
1284
|
+
}
|
|
1285
|
+
});
|
|
1286
|
+
Object.defineProperty(exports, 'display02', {
|
|
1287
|
+
enumerable: true,
|
|
1288
|
+
get: function () {
|
|
1289
|
+
return type.display02;
|
|
1290
|
+
}
|
|
1291
|
+
});
|
|
1292
|
+
Object.defineProperty(exports, 'display03', {
|
|
1293
|
+
enumerable: true,
|
|
1294
|
+
get: function () {
|
|
1295
|
+
return type.display03;
|
|
1296
|
+
}
|
|
1297
|
+
});
|
|
1298
|
+
Object.defineProperty(exports, 'display04', {
|
|
1299
|
+
enumerable: true,
|
|
1300
|
+
get: function () {
|
|
1301
|
+
return type.display04;
|
|
1302
|
+
}
|
|
1303
|
+
});
|
|
1304
|
+
Object.defineProperty(exports, 'expressiveHeading01', {
|
|
1305
|
+
enumerable: true,
|
|
1306
|
+
get: function () {
|
|
1307
|
+
return type.expressiveHeading01;
|
|
1308
|
+
}
|
|
1309
|
+
});
|
|
1310
|
+
Object.defineProperty(exports, 'expressiveHeading02', {
|
|
1311
|
+
enumerable: true,
|
|
1312
|
+
get: function () {
|
|
1313
|
+
return type.expressiveHeading02;
|
|
1314
|
+
}
|
|
1315
|
+
});
|
|
1316
|
+
Object.defineProperty(exports, 'expressiveHeading03', {
|
|
1317
|
+
enumerable: true,
|
|
1318
|
+
get: function () {
|
|
1319
|
+
return type.expressiveHeading03;
|
|
1320
|
+
}
|
|
1321
|
+
});
|
|
1322
|
+
Object.defineProperty(exports, 'expressiveHeading04', {
|
|
1323
|
+
enumerable: true,
|
|
1324
|
+
get: function () {
|
|
1325
|
+
return type.expressiveHeading04;
|
|
1326
|
+
}
|
|
1327
|
+
});
|
|
1328
|
+
Object.defineProperty(exports, 'expressiveHeading05', {
|
|
1329
|
+
enumerable: true,
|
|
1330
|
+
get: function () {
|
|
1331
|
+
return type.expressiveHeading05;
|
|
1332
|
+
}
|
|
1333
|
+
});
|
|
1334
|
+
Object.defineProperty(exports, 'expressiveHeading06', {
|
|
1335
|
+
enumerable: true,
|
|
1336
|
+
get: function () {
|
|
1337
|
+
return type.expressiveHeading06;
|
|
1338
|
+
}
|
|
1339
|
+
});
|
|
1340
|
+
Object.defineProperty(exports, 'expressiveParagraph01', {
|
|
1341
|
+
enumerable: true,
|
|
1342
|
+
get: function () {
|
|
1343
|
+
return type.expressiveParagraph01;
|
|
1344
|
+
}
|
|
1345
|
+
});
|
|
1346
|
+
Object.defineProperty(exports, 'heading01', {
|
|
1347
|
+
enumerable: true,
|
|
1348
|
+
get: function () {
|
|
1349
|
+
return type.heading01;
|
|
1350
|
+
}
|
|
1351
|
+
});
|
|
1352
|
+
Object.defineProperty(exports, 'heading02', {
|
|
1353
|
+
enumerable: true,
|
|
1354
|
+
get: function () {
|
|
1355
|
+
return type.heading02;
|
|
1356
|
+
}
|
|
1357
|
+
});
|
|
1358
|
+
Object.defineProperty(exports, 'helperText01', {
|
|
1359
|
+
enumerable: true,
|
|
1360
|
+
get: function () {
|
|
1361
|
+
return type.helperText01;
|
|
1362
|
+
}
|
|
1363
|
+
});
|
|
1364
|
+
Object.defineProperty(exports, 'label01', {
|
|
1365
|
+
enumerable: true,
|
|
1366
|
+
get: function () {
|
|
1367
|
+
return type.label01;
|
|
1368
|
+
}
|
|
1369
|
+
});
|
|
1370
|
+
Object.defineProperty(exports, 'productiveHeading01', {
|
|
1371
|
+
enumerable: true,
|
|
1372
|
+
get: function () {
|
|
1373
|
+
return type.productiveHeading01;
|
|
1374
|
+
}
|
|
1375
|
+
});
|
|
1376
|
+
Object.defineProperty(exports, 'productiveHeading02', {
|
|
1377
|
+
enumerable: true,
|
|
1378
|
+
get: function () {
|
|
1379
|
+
return type.productiveHeading02;
|
|
1380
|
+
}
|
|
1381
|
+
});
|
|
1382
|
+
Object.defineProperty(exports, 'productiveHeading03', {
|
|
1383
|
+
enumerable: true,
|
|
1384
|
+
get: function () {
|
|
1385
|
+
return type.productiveHeading03;
|
|
1386
|
+
}
|
|
1387
|
+
});
|
|
1388
|
+
Object.defineProperty(exports, 'productiveHeading04', {
|
|
1389
|
+
enumerable: true,
|
|
1390
|
+
get: function () {
|
|
1391
|
+
return type.productiveHeading04;
|
|
1392
|
+
}
|
|
1393
|
+
});
|
|
1394
|
+
Object.defineProperty(exports, 'productiveHeading05', {
|
|
1395
|
+
enumerable: true,
|
|
1396
|
+
get: function () {
|
|
1397
|
+
return type.productiveHeading05;
|
|
1398
|
+
}
|
|
1399
|
+
});
|
|
1400
|
+
Object.defineProperty(exports, 'productiveHeading06', {
|
|
1401
|
+
enumerable: true,
|
|
1402
|
+
get: function () {
|
|
1403
|
+
return type.productiveHeading06;
|
|
1404
|
+
}
|
|
1405
|
+
});
|
|
1406
|
+
Object.defineProperty(exports, 'productiveHeading07', {
|
|
1407
|
+
enumerable: true,
|
|
1408
|
+
get: function () {
|
|
1409
|
+
return type.productiveHeading07;
|
|
1410
|
+
}
|
|
1411
|
+
});
|
|
1412
|
+
Object.defineProperty(exports, 'quotation01', {
|
|
1413
|
+
enumerable: true,
|
|
1414
|
+
get: function () {
|
|
1415
|
+
return type.quotation01;
|
|
1416
|
+
}
|
|
1417
|
+
});
|
|
1418
|
+
Object.defineProperty(exports, 'quotation02', {
|
|
1419
|
+
enumerable: true,
|
|
1420
|
+
get: function () {
|
|
1421
|
+
return type.quotation02;
|
|
1422
|
+
}
|
|
1423
|
+
});
|
|
1424
|
+
Object.defineProperty(exports, 'container01', {
|
|
1425
|
+
enumerable: true,
|
|
1426
|
+
get: function () {
|
|
1427
|
+
return layout.container01;
|
|
1428
|
+
}
|
|
1429
|
+
});
|
|
1430
|
+
Object.defineProperty(exports, 'container02', {
|
|
1431
|
+
enumerable: true,
|
|
1432
|
+
get: function () {
|
|
1433
|
+
return layout.container02;
|
|
1434
|
+
}
|
|
1435
|
+
});
|
|
1436
|
+
Object.defineProperty(exports, 'container03', {
|
|
1437
|
+
enumerable: true,
|
|
1438
|
+
get: function () {
|
|
1439
|
+
return layout.container03;
|
|
1440
|
+
}
|
|
1441
|
+
});
|
|
1442
|
+
Object.defineProperty(exports, 'container04', {
|
|
1443
|
+
enumerable: true,
|
|
1444
|
+
get: function () {
|
|
1445
|
+
return layout.container04;
|
|
1446
|
+
}
|
|
1447
|
+
});
|
|
1448
|
+
Object.defineProperty(exports, 'container05', {
|
|
1449
|
+
enumerable: true,
|
|
1450
|
+
get: function () {
|
|
1451
|
+
return layout.container05;
|
|
1452
|
+
}
|
|
1453
|
+
});
|
|
1454
|
+
Object.defineProperty(exports, 'fluidSpacing01', {
|
|
1455
|
+
enumerable: true,
|
|
1456
|
+
get: function () {
|
|
1457
|
+
return layout.fluidSpacing01;
|
|
1458
|
+
}
|
|
1459
|
+
});
|
|
1460
|
+
Object.defineProperty(exports, 'fluidSpacing02', {
|
|
1461
|
+
enumerable: true,
|
|
1462
|
+
get: function () {
|
|
1463
|
+
return layout.fluidSpacing02;
|
|
1464
|
+
}
|
|
1465
|
+
});
|
|
1466
|
+
Object.defineProperty(exports, 'fluidSpacing03', {
|
|
1467
|
+
enumerable: true,
|
|
1468
|
+
get: function () {
|
|
1469
|
+
return layout.fluidSpacing03;
|
|
1470
|
+
}
|
|
1471
|
+
});
|
|
1472
|
+
Object.defineProperty(exports, 'fluidSpacing04', {
|
|
1473
|
+
enumerable: true,
|
|
1474
|
+
get: function () {
|
|
1475
|
+
return layout.fluidSpacing04;
|
|
1476
|
+
}
|
|
1477
|
+
});
|
|
1478
|
+
Object.defineProperty(exports, 'iconSize01', {
|
|
1479
|
+
enumerable: true,
|
|
1480
|
+
get: function () {
|
|
1481
|
+
return layout.iconSize01;
|
|
1482
|
+
}
|
|
1483
|
+
});
|
|
1484
|
+
Object.defineProperty(exports, 'iconSize02', {
|
|
1485
|
+
enumerable: true,
|
|
1486
|
+
get: function () {
|
|
1487
|
+
return layout.iconSize02;
|
|
1488
|
+
}
|
|
1489
|
+
});
|
|
1490
|
+
Object.defineProperty(exports, 'layout01', {
|
|
1491
|
+
enumerable: true,
|
|
1492
|
+
get: function () {
|
|
1493
|
+
return layout.layout01;
|
|
1494
|
+
}
|
|
1495
|
+
});
|
|
1496
|
+
Object.defineProperty(exports, 'layout02', {
|
|
1497
|
+
enumerable: true,
|
|
1498
|
+
get: function () {
|
|
1499
|
+
return layout.layout02;
|
|
1500
|
+
}
|
|
1501
|
+
});
|
|
1502
|
+
Object.defineProperty(exports, 'layout03', {
|
|
1503
|
+
enumerable: true,
|
|
1504
|
+
get: function () {
|
|
1505
|
+
return layout.layout03;
|
|
1506
|
+
}
|
|
1507
|
+
});
|
|
1508
|
+
Object.defineProperty(exports, 'layout04', {
|
|
1509
|
+
enumerable: true,
|
|
1510
|
+
get: function () {
|
|
1511
|
+
return layout.layout04;
|
|
1512
|
+
}
|
|
1513
|
+
});
|
|
1514
|
+
Object.defineProperty(exports, 'layout05', {
|
|
1515
|
+
enumerable: true,
|
|
1516
|
+
get: function () {
|
|
1517
|
+
return layout.layout05;
|
|
1518
|
+
}
|
|
1519
|
+
});
|
|
1520
|
+
Object.defineProperty(exports, 'layout06', {
|
|
1521
|
+
enumerable: true,
|
|
1522
|
+
get: function () {
|
|
1523
|
+
return layout.layout06;
|
|
1524
|
+
}
|
|
1525
|
+
});
|
|
1526
|
+
Object.defineProperty(exports, 'layout07', {
|
|
1527
|
+
enumerable: true,
|
|
1528
|
+
get: function () {
|
|
1529
|
+
return layout.layout07;
|
|
1530
|
+
}
|
|
1531
|
+
});
|
|
1532
|
+
Object.defineProperty(exports, 'spacing01', {
|
|
1533
|
+
enumerable: true,
|
|
1534
|
+
get: function () {
|
|
1535
|
+
return layout.spacing01;
|
|
1536
|
+
}
|
|
1537
|
+
});
|
|
1538
|
+
Object.defineProperty(exports, 'spacing02', {
|
|
1539
|
+
enumerable: true,
|
|
1540
|
+
get: function () {
|
|
1541
|
+
return layout.spacing02;
|
|
1542
|
+
}
|
|
1543
|
+
});
|
|
1544
|
+
Object.defineProperty(exports, 'spacing03', {
|
|
1545
|
+
enumerable: true,
|
|
1546
|
+
get: function () {
|
|
1547
|
+
return layout.spacing03;
|
|
1548
|
+
}
|
|
1549
|
+
});
|
|
1550
|
+
Object.defineProperty(exports, 'spacing04', {
|
|
1551
|
+
enumerable: true,
|
|
1552
|
+
get: function () {
|
|
1553
|
+
return layout.spacing04;
|
|
1554
|
+
}
|
|
1555
|
+
});
|
|
1556
|
+
Object.defineProperty(exports, 'spacing05', {
|
|
1557
|
+
enumerable: true,
|
|
1558
|
+
get: function () {
|
|
1559
|
+
return layout.spacing05;
|
|
1560
|
+
}
|
|
1561
|
+
});
|
|
1562
|
+
Object.defineProperty(exports, 'spacing06', {
|
|
1563
|
+
enumerable: true,
|
|
1564
|
+
get: function () {
|
|
1565
|
+
return layout.spacing06;
|
|
1566
|
+
}
|
|
1567
|
+
});
|
|
1568
|
+
Object.defineProperty(exports, 'spacing07', {
|
|
1569
|
+
enumerable: true,
|
|
1570
|
+
get: function () {
|
|
1571
|
+
return layout.spacing07;
|
|
1572
|
+
}
|
|
1573
|
+
});
|
|
1574
|
+
Object.defineProperty(exports, 'spacing08', {
|
|
1575
|
+
enumerable: true,
|
|
1576
|
+
get: function () {
|
|
1577
|
+
return layout.spacing08;
|
|
1578
|
+
}
|
|
1579
|
+
});
|
|
1580
|
+
Object.defineProperty(exports, 'spacing09', {
|
|
1581
|
+
enumerable: true,
|
|
1582
|
+
get: function () {
|
|
1583
|
+
return layout.spacing09;
|
|
1584
|
+
}
|
|
1585
|
+
});
|
|
1586
|
+
Object.defineProperty(exports, 'spacing10', {
|
|
1587
|
+
enumerable: true,
|
|
1588
|
+
get: function () {
|
|
1589
|
+
return layout.spacing10;
|
|
1590
|
+
}
|
|
1591
|
+
});
|
|
1592
|
+
Object.defineProperty(exports, 'spacing11', {
|
|
1593
|
+
enumerable: true,
|
|
1594
|
+
get: function () {
|
|
1595
|
+
return layout.spacing11;
|
|
1596
|
+
}
|
|
1597
|
+
});
|
|
1598
|
+
Object.defineProperty(exports, 'spacing12', {
|
|
1599
|
+
enumerable: true,
|
|
1600
|
+
get: function () {
|
|
1601
|
+
return layout.spacing12;
|
|
1602
|
+
}
|
|
1603
|
+
});
|
|
1604
|
+
exports.active01 = active01;
|
|
1605
|
+
exports.activeDanger = activeDanger;
|
|
1606
|
+
exports.activeLightUI = activeLightUI;
|
|
1607
|
+
exports.activePrimary = activePrimary;
|
|
1608
|
+
exports.activeSecondary = activeSecondary;
|
|
1609
|
+
exports.activeTertiary = activeTertiary;
|
|
1610
|
+
exports.activeUI = activeUI;
|
|
1611
|
+
exports.brand01 = brand01;
|
|
1612
|
+
exports.brand02 = brand02;
|
|
1613
|
+
exports.brand03 = brand03;
|
|
1614
|
+
exports.buttonSeparator = buttonSeparator;
|
|
1615
|
+
exports.danger = danger;
|
|
1616
|
+
exports.danger01 = danger01;
|
|
1617
|
+
exports.danger02 = danger02;
|
|
1618
|
+
exports.decorative01 = decorative01;
|
|
1619
|
+
exports.disabled01 = disabled01;
|
|
1620
|
+
exports.disabled02 = disabled02;
|
|
1621
|
+
exports.disabled03 = disabled03;
|
|
1622
|
+
exports.field01 = field01;
|
|
1623
|
+
exports.field02 = field02;
|
|
1624
|
+
exports.focus = focus;
|
|
1625
|
+
exports.formatTokenName = formatTokenName;
|
|
1292
1626
|
exports.g10 = g10;
|
|
1293
|
-
exports.g90 = g90;
|
|
1294
1627
|
exports.g100 = g100;
|
|
1295
|
-
exports.
|
|
1296
|
-
exports.
|
|
1297
|
-
exports.
|
|
1298
|
-
exports.
|
|
1299
|
-
exports.
|
|
1300
|
-
exports.
|
|
1628
|
+
exports.g90 = g90;
|
|
1629
|
+
exports.highlight = highlight;
|
|
1630
|
+
exports.hoverDanger = hoverDanger;
|
|
1631
|
+
exports.hoverField = hoverField;
|
|
1632
|
+
exports.hoverLightUI = hoverLightUI;
|
|
1633
|
+
exports.hoverPrimary = hoverPrimary;
|
|
1634
|
+
exports.hoverPrimaryText = hoverPrimaryText;
|
|
1635
|
+
exports.hoverRow = hoverRow;
|
|
1636
|
+
exports.hoverSecondary = hoverSecondary;
|
|
1637
|
+
exports.hoverSelectedUI = hoverSelectedUI;
|
|
1638
|
+
exports.hoverTertiary = hoverTertiary;
|
|
1639
|
+
exports.hoverUI = hoverUI;
|
|
1640
|
+
exports.icon01 = icon01;
|
|
1641
|
+
exports.icon02 = icon02;
|
|
1642
|
+
exports.icon03 = icon03;
|
|
1301
1643
|
exports.interactive01 = interactive01;
|
|
1302
1644
|
exports.interactive02 = interactive02;
|
|
1303
1645
|
exports.interactive03 = interactive03;
|
|
1304
1646
|
exports.interactive04 = interactive04;
|
|
1305
|
-
exports.uiBackground = uiBackground;
|
|
1306
|
-
exports.ui01 = ui01;
|
|
1307
|
-
exports.ui02 = ui02;
|
|
1308
|
-
exports.ui03 = ui03;
|
|
1309
|
-
exports.ui04 = ui04;
|
|
1310
|
-
exports.ui05 = ui05;
|
|
1311
|
-
exports.text01 = text01;
|
|
1312
|
-
exports.text02 = text02;
|
|
1313
|
-
exports.text03 = text03;
|
|
1314
|
-
exports.text04 = text04;
|
|
1315
|
-
exports.text05 = text05;
|
|
1316
|
-
exports.textError = textError;
|
|
1317
|
-
exports.icon01 = icon01;
|
|
1318
|
-
exports.icon02 = icon02;
|
|
1319
|
-
exports.icon03 = icon03;
|
|
1320
|
-
exports.link01 = link01;
|
|
1321
|
-
exports.inverseLink = inverseLink;
|
|
1322
|
-
exports.field01 = field01;
|
|
1323
|
-
exports.field02 = field02;
|
|
1324
1647
|
exports.inverse01 = inverse01;
|
|
1325
1648
|
exports.inverse02 = inverse02;
|
|
1326
|
-
exports.
|
|
1327
|
-
exports.
|
|
1328
|
-
exports.
|
|
1329
|
-
exports.support04 = support04;
|
|
1649
|
+
exports.inverseFocusUi = inverseFocusUi;
|
|
1650
|
+
exports.inverseHoverUI = inverseHoverUI;
|
|
1651
|
+
exports.inverseLink = inverseLink;
|
|
1330
1652
|
exports.inverseSupport01 = inverseSupport01;
|
|
1331
1653
|
exports.inverseSupport02 = inverseSupport02;
|
|
1332
1654
|
exports.inverseSupport03 = inverseSupport03;
|
|
1333
1655
|
exports.inverseSupport04 = inverseSupport04;
|
|
1656
|
+
exports.link01 = link01;
|
|
1334
1657
|
exports.overlay01 = overlay01;
|
|
1335
|
-
exports.danger01 = danger01;
|
|
1336
|
-
exports.danger02 = danger02;
|
|
1337
|
-
exports.focus = focus;
|
|
1338
|
-
exports.inverseFocusUi = inverseFocusUi;
|
|
1339
|
-
exports.hoverPrimary = hoverPrimary;
|
|
1340
|
-
exports.activePrimary = activePrimary;
|
|
1341
|
-
exports.hoverPrimaryText = hoverPrimaryText;
|
|
1342
|
-
exports.hoverSecondary = hoverSecondary;
|
|
1343
|
-
exports.activeSecondary = activeSecondary;
|
|
1344
|
-
exports.hoverTertiary = hoverTertiary;
|
|
1345
|
-
exports.activeTertiary = activeTertiary;
|
|
1346
|
-
exports.hoverUI = hoverUI;
|
|
1347
|
-
exports.hoverLightUI = hoverLightUI;
|
|
1348
|
-
exports.activeUI = activeUI;
|
|
1349
|
-
exports.activeLightUI = activeLightUI;
|
|
1350
|
-
exports.selectedUI = selectedUI;
|
|
1351
1658
|
exports.selectedLightUI = selectedLightUI;
|
|
1352
|
-
exports.
|
|
1353
|
-
exports.hoverSelectedUI = hoverSelectedUI;
|
|
1354
|
-
exports.hoverDanger = hoverDanger;
|
|
1355
|
-
exports.activeDanger = activeDanger;
|
|
1356
|
-
exports.hoverRow = hoverRow;
|
|
1357
|
-
exports.visitedLink = visitedLink;
|
|
1358
|
-
exports.disabled01 = disabled01;
|
|
1359
|
-
exports.disabled02 = disabled02;
|
|
1360
|
-
exports.disabled03 = disabled03;
|
|
1361
|
-
exports.highlight = highlight;
|
|
1362
|
-
exports.decorative01 = decorative01;
|
|
1363
|
-
exports.buttonSeparator = buttonSeparator;
|
|
1659
|
+
exports.selectedUI = selectedUI;
|
|
1364
1660
|
exports.skeleton01 = skeleton01;
|
|
1365
1661
|
exports.skeleton02 = skeleton02;
|
|
1366
|
-
exports.
|
|
1367
|
-
exports.
|
|
1368
|
-
exports.
|
|
1369
|
-
exports.
|
|
1370
|
-
exports.
|
|
1371
|
-
exports.
|
|
1662
|
+
exports.support01 = support01;
|
|
1663
|
+
exports.support02 = support02;
|
|
1664
|
+
exports.support03 = support03;
|
|
1665
|
+
exports.support04 = support04;
|
|
1666
|
+
exports.text01 = text01;
|
|
1667
|
+
exports.text02 = text02;
|
|
1668
|
+
exports.text03 = text03;
|
|
1669
|
+
exports.text04 = text04;
|
|
1670
|
+
exports.text05 = text05;
|
|
1671
|
+
exports.textError = textError;
|
|
1672
|
+
exports.themes = themes;
|
|
1673
|
+
exports.tokens = tokens;
|
|
1674
|
+
exports.ui01 = ui01;
|
|
1675
|
+
exports.ui02 = ui02;
|
|
1676
|
+
exports.ui03 = ui03;
|
|
1677
|
+
exports.ui04 = ui04;
|
|
1678
|
+
exports.ui05 = ui05;
|
|
1679
|
+
exports.uiBackground = uiBackground;
|
|
1680
|
+
exports.unstable__meta = unstable__meta;
|
|
1681
|
+
exports.v9 = v9;
|
|
1682
|
+
exports.visitedLink = visitedLink;
|
|
1683
|
+
exports.white = white;
|
|
1372
1684
|
|
|
1373
1685
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
1374
1686
|
|