baseui 15.0.1 → 16.0.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/button/button-internals.d.ts +2 -2
- package/button/button-internals.js +56 -7
- package/button/button.d.ts +2 -2
- package/button/button.js +80 -8
- package/button/constants.d.ts +22 -0
- package/button/constants.js +31 -3
- package/button/default-props.d.ts +5 -3
- package/button/default-props.js +5 -3
- package/button/index.d.ts +1 -1
- package/button/index.js +21 -0
- package/button/styled-components.d.ts +7 -0
- package/button/styled-components.js +476 -66
- package/button/types.d.ts +39 -3
- package/button/utils.d.ts +2 -2
- package/button/utils.js +9 -3
- package/button-group/button-group.d.ts +1 -0
- package/button-group/button-group.js +22 -33
- package/button-group/constants.d.ts +5 -0
- package/button-group/constants.js +6 -1
- package/button-group/index.d.ts +10 -1
- package/button-group/index.js +33 -4
- package/button-group/styled-components.d.ts +5 -2
- package/button-group/styled-components.js +47 -6
- package/button-group/types.d.ts +9 -2
- package/checkbox/styled-components.js +2 -6
- package/modal/modal-button.d.ts +8 -1
- package/package.json +1 -1
- package/tag/constants.d.ts +31 -5
- package/tag/constants.js +18 -11
- package/tag/deprecated-styles.d.ts +119 -0
- package/tag/deprecated-styles.js +179 -0
- package/tag/index.d.ts +1 -1
- package/tag/index.js +15 -1
- package/tag/styled-components.js +199 -230
- package/tag/tag.js +10 -4
- package/tag/types.d.ts +16 -11
- package/tag-group/index.d.ts +5 -0
- package/tag-group/index.js +51 -0
- package/tag-group/styled-components.d.ts +3 -0
- package/tag-group/styled-components.js +46 -0
- package/tag-group/tag-group.d.ts +4 -0
- package/tag-group/tag-group.js +65 -0
- package/tag-group/types.d.ts +18 -0
- package/tag-group/types.js +1 -0
- package/themes/dark-theme/color-component-tokens.js +56 -3
- package/themes/dark-theme/color-semantic-tokens.js +104 -0
- package/themes/light-theme/color-component-tokens.js +55 -2
- package/themes/light-theme/color-semantic-tokens.js +104 -0
- package/themes/shared/animation.js +30 -5
- package/themes/types.d.ts +76 -1
|
@@ -62,6 +62,7 @@ foundation = _colorFoundationTokens.default) => {
|
|
|
62
62
|
contentNegative: _colorPrimitiveTokens.default.red600,
|
|
63
63
|
contentWarning: _colorPrimitiveTokens.default.yellow600,
|
|
64
64
|
contentPositive: _colorPrimitiveTokens.default.green600,
|
|
65
|
+
tagRedContentSecondary: _colorPrimitiveTokens.default.red700,
|
|
65
66
|
// Border
|
|
66
67
|
borderStateDisabled: _colorPrimitiveTokens.default.gray50,
|
|
67
68
|
borderAccent: _colorPrimitiveTokens.default.blue600,
|
|
@@ -72,6 +73,7 @@ foundation = _colorFoundationTokens.default) => {
|
|
|
72
73
|
borderWarningLight: _colorPrimitiveTokens.default.yellow200,
|
|
73
74
|
borderPositive: _colorPrimitiveTokens.default.green600,
|
|
74
75
|
borderPositiveLight: _colorPrimitiveTokens.default.green300,
|
|
76
|
+
tagRedBorderSecondarySelected: _colorPrimitiveTokens.default.red700,
|
|
75
77
|
// Programs
|
|
76
78
|
safety: _colorPrimitiveTokens.default.blue600,
|
|
77
79
|
eatsGreen400: _colorPrimitiveTokens.default.green600,
|
|
@@ -92,9 +94,111 @@ foundation = _colorFoundationTokens.default) => {
|
|
|
92
94
|
backgroundLightWarning: coreExtensions.backgroundWarningLight,
|
|
93
95
|
backgroundLightNegative: coreExtensions.backgroundNegativeLight
|
|
94
96
|
};
|
|
97
|
+
const tagTokens = {
|
|
98
|
+
tagGrayBackgroundPrimary: _colorPrimitiveTokens.default.gray600,
|
|
99
|
+
tagGrayBackgroundSecondary: _colorPrimitiveTokens.default.gray50,
|
|
100
|
+
tagGrayContentPrimary: _colorPrimitiveTokens.default.white,
|
|
101
|
+
tagGrayContentSecondary: _colorPrimitiveTokens.default.gray700,
|
|
102
|
+
tagGrayBackgroundStateDisabled: _colorPrimitiveTokens.default.gray50,
|
|
103
|
+
tagGrayContentStateDisabled: _colorPrimitiveTokens.default.gray300,
|
|
104
|
+
tagGrayBorderPrimaryUnselected: _colorPrimitiveTokens.default.gray700,
|
|
105
|
+
tagGrayBorderSecondaryUnselected: _colorPrimitiveTokens.default.gray100,
|
|
106
|
+
tagGrayBorderSecondarySelected: _colorPrimitiveTokens.default.gray600,
|
|
107
|
+
tagRedBackgroundPrimary: _colorPrimitiveTokens.default.red600,
|
|
108
|
+
tagRedBackgroundSecondary: _colorPrimitiveTokens.default.red50,
|
|
109
|
+
tagRedContentPrimary: _colorPrimitiveTokens.default.white,
|
|
110
|
+
tagRedContentSecondary: _colorPrimitiveTokens.default.red700,
|
|
111
|
+
tagRedBackgroundStateDisabled: _colorPrimitiveTokens.default.red50,
|
|
112
|
+
tagRedContentStateDisabled: _colorPrimitiveTokens.default.red300,
|
|
113
|
+
tagRedBorderPrimaryUnselected: _colorPrimitiveTokens.default.red700,
|
|
114
|
+
tagRedBorderSecondaryUnselected: _colorPrimitiveTokens.default.red100,
|
|
115
|
+
tagRedBorderSecondarySelected: _colorPrimitiveTokens.default.red700,
|
|
116
|
+
tagOrangeBackgroundPrimary: _colorPrimitiveTokens.default.orange600,
|
|
117
|
+
tagOrangeBackgroundSecondary: _colorPrimitiveTokens.default.orange50,
|
|
118
|
+
tagOrangeContentPrimary: _colorPrimitiveTokens.default.white,
|
|
119
|
+
tagOrangeContentSecondary: _colorPrimitiveTokens.default.orange700,
|
|
120
|
+
tagOrangeBackgroundStateDisabled: _colorPrimitiveTokens.default.orange50,
|
|
121
|
+
tagOrangeContentStateDisabled: _colorPrimitiveTokens.default.orange300,
|
|
122
|
+
tagYellowBackgroundPrimary: _colorPrimitiveTokens.default.yellow300,
|
|
123
|
+
tagOrangeBorderPrimaryUnselected: _colorPrimitiveTokens.default.orange700,
|
|
124
|
+
tagYellowBackgroundSecondary: _colorPrimitiveTokens.default.yellow50,
|
|
125
|
+
tagOrangeBorderSecondaryUnselected: _colorPrimitiveTokens.default.orange100,
|
|
126
|
+
tagOrangeBorderSecondarySelected: _colorPrimitiveTokens.default.orange700,
|
|
127
|
+
tagYellowContentPrimary: _colorPrimitiveTokens.default.black,
|
|
128
|
+
tagYellowContentSecondary: _colorPrimitiveTokens.default.yellow700,
|
|
129
|
+
tagYellowBackgroundStateDisabled: _colorPrimitiveTokens.default.yellow50,
|
|
130
|
+
tagYellowContentStateDisabled: _colorPrimitiveTokens.default.yellow200,
|
|
131
|
+
tagYellowBorderPrimaryUnselected: _colorPrimitiveTokens.default.yellow400,
|
|
132
|
+
tagYellowBorderSecondaryUnselected: _colorPrimitiveTokens.default.yellow100,
|
|
133
|
+
tagYellowBorderSecondarySelected: _colorPrimitiveTokens.default.yellow700,
|
|
134
|
+
tagGreenBackgroundPrimary: _colorPrimitiveTokens.default.green600,
|
|
135
|
+
tagGreenBackgroundSecondary: _colorPrimitiveTokens.default.green50,
|
|
136
|
+
tagGreenContentPrimary: _colorPrimitiveTokens.default.white,
|
|
137
|
+
tagGreenContentSecondary: _colorPrimitiveTokens.default.green700,
|
|
138
|
+
tagGreenBackgroundStateDisabled: _colorPrimitiveTokens.default.green50,
|
|
139
|
+
tagGreenContentStateDisabled: _colorPrimitiveTokens.default.green300,
|
|
140
|
+
tagGreenBorderPrimaryUnselected: _colorPrimitiveTokens.default.green700,
|
|
141
|
+
tagBlueBackgroundPrimary: _colorPrimitiveTokens.default.blue600,
|
|
142
|
+
tagBlueBackgroundSecondary: _colorPrimitiveTokens.default.blue50,
|
|
143
|
+
tagGreenBorderSecondaryUnselected: _colorPrimitiveTokens.default.green100,
|
|
144
|
+
tagBlueContentPrimary: _colorPrimitiveTokens.default.white,
|
|
145
|
+
tagGreenBorderSecondarySelected: _colorPrimitiveTokens.default.green700,
|
|
146
|
+
tagBlueContentSecondary: _colorPrimitiveTokens.default.blue700,
|
|
147
|
+
tagBlueBackgroundStateDisabled: _colorPrimitiveTokens.default.blue50,
|
|
148
|
+
tagBlueContentStateDisabled: _colorPrimitiveTokens.default.blue300,
|
|
149
|
+
tagBlueBorderPrimaryUnselected: _colorPrimitiveTokens.default.blue700,
|
|
150
|
+
tagPurpleBackgroundPrimary: _colorPrimitiveTokens.default.purple600,
|
|
151
|
+
tagPurpleBackgroundSecondary: _colorPrimitiveTokens.default.purple50,
|
|
152
|
+
tagBlueBorderSecondaryUnselected: _colorPrimitiveTokens.default.blue100,
|
|
153
|
+
tagBlueBorderSecondarySelected: _colorPrimitiveTokens.default.blue700,
|
|
154
|
+
tagPurpleContentPrimary: _colorPrimitiveTokens.default.white,
|
|
155
|
+
tagPurpleContentSecondary: _colorPrimitiveTokens.default.purple700,
|
|
156
|
+
tagPurpleBackgroundStateDisabled: _colorPrimitiveTokens.default.purple50,
|
|
157
|
+
tagPurpleContentStateDisabled: _colorPrimitiveTokens.default.purple300,
|
|
158
|
+
tagPurpleBorderPrimaryUnselected: _colorPrimitiveTokens.default.purple700,
|
|
159
|
+
tagMagentaBackgroundPrimary: _colorPrimitiveTokens.default.magenta600,
|
|
160
|
+
tagPurpleBorderSecondaryUnselected: _colorPrimitiveTokens.default.purple100,
|
|
161
|
+
tagMagentaBackgroundSecondary: _colorPrimitiveTokens.default.magenta50,
|
|
162
|
+
tagPurpleBorderSecondarySelected: _colorPrimitiveTokens.default.purple700,
|
|
163
|
+
tagMagentaContentPrimary: _colorPrimitiveTokens.default.white,
|
|
164
|
+
tagMagentaContentSecondary: _colorPrimitiveTokens.default.magenta700,
|
|
165
|
+
tagMagentaBackgroundStateDisabled: _colorPrimitiveTokens.default.magenta50,
|
|
166
|
+
tagMagentaContentStateDisabled: _colorPrimitiveTokens.default.magenta300,
|
|
167
|
+
tagMagentaBorderPrimaryUnselected: _colorPrimitiveTokens.default.magenta700,
|
|
168
|
+
tagMagentaBorderSecondaryUnselected: _colorPrimitiveTokens.default.magenta100,
|
|
169
|
+
tagMagentaBorderSecondarySelected: _colorPrimitiveTokens.default.magenta700,
|
|
170
|
+
tagTealBackgroundPrimary: _colorPrimitiveTokens.default.teal600,
|
|
171
|
+
tagTealBackgroundSecondary: _colorPrimitiveTokens.default.teal50,
|
|
172
|
+
tagTealContentPrimary: _colorPrimitiveTokens.default.white,
|
|
173
|
+
tagTealContentSecondary: _colorPrimitiveTokens.default.teal700,
|
|
174
|
+
tagTealBackgroundStateDisabled: _colorPrimitiveTokens.default.teal50,
|
|
175
|
+
tagTealContentStateDisabled: _colorPrimitiveTokens.default.teal300,
|
|
176
|
+
tagTealBorderPrimaryUnselected: _colorPrimitiveTokens.default.teal700,
|
|
177
|
+
tagTealBorderSecondaryUnselected: _colorPrimitiveTokens.default.teal100,
|
|
178
|
+
tagTealBorderSecondarySelected: _colorPrimitiveTokens.default.teal700,
|
|
179
|
+
tagLimeBackgroundPrimary: _colorPrimitiveTokens.default.lime600,
|
|
180
|
+
tagLimeBackgroundSecondary: _colorPrimitiveTokens.default.lime50,
|
|
181
|
+
tagLimeContentPrimary: _colorPrimitiveTokens.default.white,
|
|
182
|
+
tagLimeContentSecondary: _colorPrimitiveTokens.default.lime700,
|
|
183
|
+
tagLimeBackgroundStateDisabled: _colorPrimitiveTokens.default.lime50,
|
|
184
|
+
tagLimeContentStateDisabled: _colorPrimitiveTokens.default.lime300,
|
|
185
|
+
tagLimeBorderPrimaryUnselected: _colorPrimitiveTokens.default.lime700,
|
|
186
|
+
tagLimeBorderSecondaryUnselected: _colorPrimitiveTokens.default.lime100,
|
|
187
|
+
tagLimeBorderSecondarySelected: _colorPrimitiveTokens.default.lime700
|
|
188
|
+
};
|
|
189
|
+
const hoveredAndPressedColors = {
|
|
190
|
+
hoverOverlayInverseAlpha: 'rgba(255, 255, 255, 0.1)',
|
|
191
|
+
hoverOverlayAlpha: 'rgba(0, 0, 0, 0.04)',
|
|
192
|
+
hoverNegativeAlpha: 'rgba(222, 17, 53, 0.1)',
|
|
193
|
+
pressedOverlayAlpha: 'rgba(0, 0, 0, 0.08)',
|
|
194
|
+
pressedOverlayInverseAlpha: 'rgba(255, 255, 255, 0.2)',
|
|
195
|
+
pressedNegativeAlpha: 'rgba(222, 17, 53, 0.15)'
|
|
196
|
+
};
|
|
95
197
|
return {
|
|
96
198
|
...core,
|
|
97
199
|
...coreExtensions,
|
|
200
|
+
...tagTokens,
|
|
201
|
+
...hoveredAndPressedColors,
|
|
98
202
|
...deprecated
|
|
99
203
|
};
|
|
100
204
|
};
|
|
@@ -12,8 +12,11 @@ LICENSE file in the root directory of this source tree.
|
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
14
|
const animation = {
|
|
15
|
+
timing0: '0',
|
|
15
16
|
timing100: '100ms',
|
|
17
|
+
timing150: '150ms',
|
|
16
18
|
timing200: '200ms',
|
|
19
|
+
timing250: '250ms',
|
|
17
20
|
timing300: '300ms',
|
|
18
21
|
timing400: '400ms',
|
|
19
22
|
timing500: '500ms',
|
|
@@ -22,12 +25,34 @@ const animation = {
|
|
|
22
25
|
timing800: '800ms',
|
|
23
26
|
timing900: '900ms',
|
|
24
27
|
timing1000: '1000ms',
|
|
25
|
-
|
|
28
|
+
timing1500: '1500ms',
|
|
29
|
+
timing3000: '3000ms',
|
|
30
|
+
timing5000: '5000ms',
|
|
31
|
+
timing7000: '7000ms',
|
|
32
|
+
// Moves at constant speed. Commonly used for opacity and color changes.
|
|
33
|
+
easeLinear: 'cubic-bezier(0, 0, 1, 1)',
|
|
34
|
+
linearCurve: 'cubic-bezier(0, 0, 1, 1)',
|
|
35
|
+
// use easeLinear
|
|
36
|
+
// Motion starts at top speed and comes to a very gradual stop.
|
|
37
|
+
// Commonly used for entering elements.
|
|
38
|
+
easeDecelerate: 'cubic-bezier(0.22, 1, 0.36, 1)',
|
|
39
|
+
easeOutQuinticCurve: 'cubic-bezier(0.22, 1, 0.36, 1)',
|
|
40
|
+
// use easeDecelerate
|
|
26
41
|
easeOutCurve: 'cubic-bezier(.2, .8, .4, 1)',
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
42
|
+
// Motion begins very gradually and ends at top speed.
|
|
43
|
+
// Commonly used for exiting elements.
|
|
44
|
+
easeAccelerate: 'cubic-bezier(0.64, 0, 0.78, 0)',
|
|
45
|
+
easeInQuinticCurve: 'cubic-bezier(0.64, 0, 0.78, 0)',
|
|
46
|
+
// use easeAccelerate
|
|
47
|
+
easeInCurve: 'cubic-bezier(.8, .2, .6, 1)',
|
|
48
|
+
// Motion begins and ends very gradually with high velocity movement
|
|
49
|
+
// in the middle.A good default for most motion.
|
|
50
|
+
easeAccelerateDecelerate: 'cubic-bezier(0.83, 0, 0.17, 1)',
|
|
30
51
|
easeInOutQuinticCurve: 'cubic-bezier(0.86, 0, 0.07, 1)',
|
|
31
|
-
|
|
52
|
+
// use easeAccelerateDecelerate
|
|
53
|
+
easeInOutCurve: 'cubic-bezier(0.4, 0, 0.2, 1)',
|
|
54
|
+
// Motion begins naturally and speeds up slightly. Good for feeling
|
|
55
|
+
// of responsiveness when paired with short durations.
|
|
56
|
+
easeResponsiveAccelerate: 'cubic-bezier(0.11, 0, 0.5, 0)'
|
|
32
57
|
};
|
|
33
58
|
var _default = exports.default = animation;
|
package/themes/types.d.ts
CHANGED
|
@@ -155,6 +155,7 @@ export type CoreExtensionSemanticColors = {
|
|
|
155
155
|
contentNegative: string;
|
|
156
156
|
contentWarning: string;
|
|
157
157
|
contentPositive: string;
|
|
158
|
+
tagRedContentSecondary: string;
|
|
158
159
|
borderStateDisabled: string;
|
|
159
160
|
borderAccent: string;
|
|
160
161
|
borderAccentLight: string;
|
|
@@ -164,6 +165,7 @@ export type CoreExtensionSemanticColors = {
|
|
|
164
165
|
borderNegativeLight: string;
|
|
165
166
|
borderWarningLight: string;
|
|
166
167
|
borderPositiveLight: string;
|
|
168
|
+
tagRedBorderSecondarySelected: string;
|
|
167
169
|
safety: string;
|
|
168
170
|
eatsGreen400: string;
|
|
169
171
|
freightBlue400: string;
|
|
@@ -189,7 +191,15 @@ export type DeprecatedSemanticColors = {
|
|
|
189
191
|
/** @deprecated this color token is deprecated */
|
|
190
192
|
backgroundLightNegative: string;
|
|
191
193
|
};
|
|
192
|
-
export type
|
|
194
|
+
export type HoveredAndPressedSemanticColors = {
|
|
195
|
+
hoverOverlayInverseAlpha: string;
|
|
196
|
+
pressedOverlayInverseAlpha: string;
|
|
197
|
+
hoverOverlayAlpha: string;
|
|
198
|
+
pressedOverlayAlpha: string;
|
|
199
|
+
hoverNegativeAlpha: string;
|
|
200
|
+
pressedNegativeAlpha: string;
|
|
201
|
+
};
|
|
202
|
+
export type SemanticColors = {} & CoreSemanticColors & CoreExtensionSemanticColors & DeprecatedSemanticColors & HoveredAndPressedSemanticColors;
|
|
193
203
|
export type ComponentColors = {
|
|
194
204
|
bannerActionLowInfo: string;
|
|
195
205
|
bannerActionLowNegative: string;
|
|
@@ -205,34 +215,87 @@ export type ComponentColors = {
|
|
|
205
215
|
buttonPrimaryText: string;
|
|
206
216
|
buttonPrimaryHover: string;
|
|
207
217
|
buttonPrimaryActive: string;
|
|
218
|
+
buttonPrimaryHoverOverlay: string;
|
|
219
|
+
buttonPrimaryActiveOverlay: string;
|
|
208
220
|
buttonPrimarySelectedText: string;
|
|
209
221
|
buttonPrimarySelectedFill: string;
|
|
222
|
+
buttonPrimaryLoadingFill: string;
|
|
210
223
|
buttonPrimarySpinnerForeground: string;
|
|
211
224
|
buttonPrimarySpinnerBackground: string;
|
|
212
225
|
buttonSecondaryFill: string;
|
|
213
226
|
buttonSecondaryText: string;
|
|
214
227
|
buttonSecondaryHover: string;
|
|
215
228
|
buttonSecondaryActive: string;
|
|
229
|
+
buttonSecondaryHoverOverlay: string;
|
|
230
|
+
buttonSecondaryActiveOverlay: string;
|
|
216
231
|
buttonSecondarySelectedText: string;
|
|
217
232
|
buttonSecondarySelectedFill: string;
|
|
233
|
+
buttonSecondaryLoadingFill: string;
|
|
218
234
|
buttonSecondarySpinnerForeground: string;
|
|
219
235
|
buttonSecondarySpinnerBackground: string;
|
|
220
236
|
buttonTertiaryFill: string;
|
|
221
237
|
buttonTertiaryText: string;
|
|
222
238
|
buttonTertiaryHover: string;
|
|
223
239
|
buttonTertiaryActive: string;
|
|
240
|
+
buttonTertiaryHoverOverlay: string;
|
|
241
|
+
buttonTertiaryActiveOverlay: string;
|
|
224
242
|
buttonTertiarySelectedText: string;
|
|
225
243
|
buttonTertiarySelectedFill: string;
|
|
244
|
+
buttonTertiaryLoadingFill: string;
|
|
245
|
+
buttonTertiaryFocusFill: string;
|
|
226
246
|
buttonTertiaryDisabledActiveFill: string;
|
|
227
247
|
buttonTertiaryDisabledActiveText: string;
|
|
228
248
|
buttonTertiarySpinnerForeground: string;
|
|
229
249
|
buttonTertiarySpinnerBackground: string;
|
|
250
|
+
buttonDangerPrimaryFill: string;
|
|
251
|
+
buttonDangerPrimaryText: string;
|
|
252
|
+
buttonDangerPrimaryHoverOverlay: string;
|
|
253
|
+
buttonDangerPrimaryActiveOverlay: string;
|
|
254
|
+
buttonDangerPrimarySelectedText: string;
|
|
255
|
+
buttonDangerPrimarySelectedFill: string;
|
|
256
|
+
buttonDangerPrimaryLoadingFill: string;
|
|
257
|
+
buttonDangerPrimarySpinnerForeground: string;
|
|
258
|
+
buttonDangerPrimarySpinnerBackground: string;
|
|
259
|
+
buttonDangerSecondaryFill: string;
|
|
260
|
+
buttonDangerSecondaryText: string;
|
|
261
|
+
buttonDangerSecondaryHoverOverlay: string;
|
|
262
|
+
buttonDangerSecondaryActiveOverlay: string;
|
|
263
|
+
buttonDangerSecondarySelectedText: string;
|
|
264
|
+
buttonDangerSecondarySelectedFill: string;
|
|
265
|
+
buttonDangerSecondaryLoadingFill: string;
|
|
266
|
+
buttonDangerSecondarySpinnerForeground: string;
|
|
267
|
+
buttonDangerSecondarySpinnerBackground: string;
|
|
268
|
+
buttonDangerTertiaryFill: string;
|
|
269
|
+
buttonDangerTertiaryText: string;
|
|
270
|
+
buttonDangerTertiaryHoverOverlay: string;
|
|
271
|
+
buttonDangerTertiaryActiveOverlay: string;
|
|
272
|
+
buttonDangerTertiarySelectedText: string;
|
|
273
|
+
buttonDangerTertiarySelectedFill: string;
|
|
274
|
+
buttonDangerTertiaryLoadingFill: string;
|
|
275
|
+
buttonDangerTertiarySpinnerForeground: string;
|
|
276
|
+
buttonDangerTertiarySpinnerBackground: string;
|
|
277
|
+
buttonOutlineFill: string;
|
|
278
|
+
buttonOutlineText: string;
|
|
279
|
+
buttonOutlineHoverOverlay: string;
|
|
280
|
+
buttonOutlineActiveOverlay: string;
|
|
281
|
+
buttonOutlineSelectedFill: string;
|
|
282
|
+
buttonOutlineSelectedText: string;
|
|
283
|
+
buttonOutlineFocusFill: string;
|
|
284
|
+
buttonOutlineLoadingFill: string;
|
|
285
|
+
buttonOutlineSpinnerForeground: string;
|
|
286
|
+
buttonOutlineSpinnerBackground: string;
|
|
230
287
|
buttonDisabledFill: string;
|
|
231
288
|
buttonDisabledText: string;
|
|
232
289
|
buttonDisabledActiveFill: string;
|
|
233
290
|
buttonDisabledActiveText: string;
|
|
234
291
|
buttonDisabledSpinnerForeground: string;
|
|
235
292
|
buttonDisabledSpinnerBackground: string;
|
|
293
|
+
buttonOuterBorder: string;
|
|
294
|
+
buttonOutlineOuterBorder: string;
|
|
295
|
+
buttonDangerTertiaryOuterBorder: string;
|
|
296
|
+
buttonTransparentBorder: string;
|
|
297
|
+
buttonInnerBorder: string;
|
|
298
|
+
buttonFocusOuterBorder: string;
|
|
236
299
|
breadcrumbsText: string;
|
|
237
300
|
breadcrumbsSeparatorFill: string;
|
|
238
301
|
calendarBackground: string;
|
|
@@ -629,8 +692,11 @@ export type Lighting = {
|
|
|
629
692
|
deepBelow: string;
|
|
630
693
|
};
|
|
631
694
|
export type Animation = {
|
|
695
|
+
timing0: string;
|
|
632
696
|
timing100: string;
|
|
697
|
+
timing150: string;
|
|
633
698
|
timing200: string;
|
|
699
|
+
timing250: string;
|
|
634
700
|
timing300: string;
|
|
635
701
|
timing400: string;
|
|
636
702
|
timing500: string;
|
|
@@ -639,6 +705,10 @@ export type Animation = {
|
|
|
639
705
|
timing800: string;
|
|
640
706
|
timing900: string;
|
|
641
707
|
timing1000: string;
|
|
708
|
+
timing1500: string;
|
|
709
|
+
timing3000: string;
|
|
710
|
+
timing5000: string;
|
|
711
|
+
timing7000: string;
|
|
642
712
|
easeOutCurve: string;
|
|
643
713
|
easeInCurve: string;
|
|
644
714
|
easeInOutCurve: string;
|
|
@@ -646,6 +716,11 @@ export type Animation = {
|
|
|
646
716
|
easeOutQuinticCurve: string;
|
|
647
717
|
easeInOutQuinticCurve: string;
|
|
648
718
|
linearCurve: string;
|
|
719
|
+
easeLinear: string;
|
|
720
|
+
easeDecelerate: string;
|
|
721
|
+
easeAccelerate: string;
|
|
722
|
+
easeAccelerateDecelerate: string;
|
|
723
|
+
easeResponsiveAccelerate: string;
|
|
649
724
|
};
|
|
650
725
|
export type Border = {
|
|
651
726
|
borderColor: Properties['borderColor'];
|