@box/blueprint-web-assets 4.56.8 → 4.57.2
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/dist/icons/Medium/ChevronDown.d.ts +3 -0
- package/dist/icons/Medium/ChevronDown.js +5 -0
- package/dist/icons/Medium/ChevronLeft.d.ts +3 -0
- package/dist/icons/Medium/ChevronLeft.js +5 -0
- package/dist/icons/Medium/ChevronRight.d.ts +3 -0
- package/dist/icons/Medium/ChevronRight.js +5 -0
- package/dist/icons/Medium/ChevronUp.d.ts +3 -0
- package/dist/icons/Medium/ChevronUp.js +5 -0
- package/dist/icons/Medium/index.d.ts +4 -0
- package/dist/icons/Medium/index.js +4 -0
- package/dist/tokens/BP2/dark_mode_value/px-tokens.d.ts +187 -114
- package/dist/tokens/BP2/dark_mode_value/px-tokens.js +199 -126
- package/dist/tokens/BP2/dark_mode_value/tokens.css +195 -122
- package/dist/tokens/BP2/dark_mode_value/tokens.d.ts +187 -114
- package/dist/tokens/BP2/dark_mode_value/tokens.js +199 -126
- package/dist/tokens/BP2/dark_mode_value/tokens.json +199 -126
- package/dist/tokens/BP2/light_mode_value/px-tokens.d.ts +187 -114
- package/dist/tokens/BP2/light_mode_value/px-tokens.js +199 -126
- package/dist/tokens/BP2/light_mode_value/tokens.css +194 -121
- package/dist/tokens/BP2/light_mode_value/tokens.d.ts +187 -114
- package/dist/tokens/BP2/light_mode_value/tokens.js +199 -126
- package/dist/tokens/BP2/light_mode_value/tokens.json +199 -126
- package/dist/tokens/px-tokens.js +199 -126
- package/dist/tokens/tokens-css-vars.scss +194 -121
- package/dist/tokens/tokens.js +199 -126
- package/dist/tokens/tokens.json +199 -126
- package/package.json +2 -2
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const SvgChevronDown = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M18.293 9.293a1 1 0 1 1 1.414 1.414L13.414 17a2 2 0 0 1-2.828 0l-6.293-6.293a1 1 0 1 1 1.414-1.414L12 15.586l6.293-6.293Z" }) }));
|
|
4
|
+
const ForwardRef = forwardRef(SvgChevronDown);
|
|
5
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const SvgChevronLeft = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M13.293 4.293a1 1 0 1 1 1.414 1.414L8.414 12l6.293 6.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L7 13.414a2 2 0 0 1 0-2.828l6.293-6.293Z" }) }));
|
|
4
|
+
const ForwardRef = forwardRef(SvgChevronLeft);
|
|
5
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const SvgChevronRight = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M9.293 4.293a1 1 0 0 1 1.414 0L17 10.586a2 2 0 0 1 0 2.828l-6.293 6.293a1 1 0 0 1-1.414-1.414L15.586 12 9.293 5.707a1 1 0 0 1 0-1.414Z" }) }));
|
|
4
|
+
const ForwardRef = forwardRef(SvgChevronRight);
|
|
5
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const SvgChevronUp = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M10.586 7a2 2 0 0 1 2.828 0l6.293 6.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L12 8.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L10.586 7Z" }) }));
|
|
4
|
+
const ForwardRef = forwardRef(SvgChevronUp);
|
|
5
|
+
export default ForwardRef;
|
|
@@ -29,6 +29,10 @@ export { default as ChartDonut } from './ChartDonut';
|
|
|
29
29
|
export { default as ChartLine } from './ChartLine';
|
|
30
30
|
export { default as Check } from './Check';
|
|
31
31
|
export { default as CheckList } from './CheckList';
|
|
32
|
+
export { default as ChevronDown } from './ChevronDown';
|
|
33
|
+
export { default as ChevronLeft } from './ChevronLeft';
|
|
34
|
+
export { default as ChevronRight } from './ChevronRight';
|
|
35
|
+
export { default as ChevronUp } from './ChevronUp';
|
|
32
36
|
export { default as Clipboard } from './Clipboard';
|
|
33
37
|
export { default as ClipboardList } from './ClipboardList';
|
|
34
38
|
export { default as Clock } from './Clock';
|
|
@@ -29,6 +29,10 @@ export { default as ChartDonut } from './ChartDonut';
|
|
|
29
29
|
export { default as ChartLine } from './ChartLine';
|
|
30
30
|
export { default as Check } from './Check';
|
|
31
31
|
export { default as CheckList } from './CheckList';
|
|
32
|
+
export { default as ChevronDown } from './ChevronDown';
|
|
33
|
+
export { default as ChevronLeft } from './ChevronLeft';
|
|
34
|
+
export { default as ChevronRight } from './ChevronRight';
|
|
35
|
+
export { default as ChevronUp } from './ChevronUp';
|
|
32
36
|
export { default as Clipboard } from './Clipboard';
|
|
33
37
|
export { default as ClipboardList } from './ClipboardList';
|
|
34
38
|
export { default as Clock } from './Clock';
|
|
@@ -13,8 +13,9 @@ export const bpBorderCheckboxBorder: string;
|
|
|
13
13
|
export const bpBorderCheckboxBorderHover: string;
|
|
14
14
|
export const bpBorderCheckboxBorderSelected: string;
|
|
15
15
|
export const bpBorderCheckboxBorderSelectedHover: string;
|
|
16
|
-
export const
|
|
17
|
-
export const
|
|
16
|
+
export const bpBorderCollapsibleSectionBorder: string;
|
|
17
|
+
export const bpBorderContentButtonBorderHoverActive: string;
|
|
18
|
+
export const bpBorderContentButtonBorderSelected: string;
|
|
18
19
|
export const bpBorderCtaBorderOutline: string;
|
|
19
20
|
export const bpBorderCtaBorderOutlineDisabled: string;
|
|
20
21
|
export const bpBorderCtaBorderOutlineHover: string;
|
|
@@ -23,27 +24,40 @@ export const bpBorderCtaBorderSecondary: string;
|
|
|
23
24
|
export const bpBorderCtaBorderSecondaryDisabled: string;
|
|
24
25
|
export const bpBorderCtaBorderSecondaryHover: string;
|
|
25
26
|
export const bpBorderCtaBorderSecondaryPressed: string;
|
|
27
|
+
export const bpBorderDatePickerDayBorderFocus: string;
|
|
28
|
+
export const bpBorderDatePickerDayBorderSelectedFocus: string;
|
|
29
|
+
export const bpBorderDatePickerBorderActive: string;
|
|
30
|
+
export const bpBorderDatePickerBorderComplete: string;
|
|
31
|
+
export const bpBorderDatePickerBorderDefault: string;
|
|
32
|
+
export const bpBorderDatePickerBorderDisabled: string;
|
|
33
|
+
export const bpBorderDatePickerBorderError: string;
|
|
34
|
+
export const bpBorderDatePickerBorderFocus: string;
|
|
35
|
+
export const bpBorderDatePickerBorderHover: string;
|
|
26
36
|
export const bpBorderDividerBorder: string;
|
|
27
37
|
export const bpBorderDividerBorderBrand: string;
|
|
38
|
+
export const bpBorderDropdownSecondaryBorder: string;
|
|
28
39
|
export const bpBorderDropdownBorder: string;
|
|
29
40
|
export const bpBorderDropdownBorderError: string;
|
|
30
41
|
export const bpBorderDropdownBorderErrorFocus: string;
|
|
31
42
|
export const bpBorderDropdownBorderErrorHover: string;
|
|
32
43
|
export const bpBorderDropdownBorderFocus: string;
|
|
33
44
|
export const bpBorderDropdownBorderHover: string;
|
|
34
|
-
export const
|
|
35
|
-
export const
|
|
36
|
-
export const
|
|
45
|
+
export const bpBorderFilterChipBorderMultiOn: string;
|
|
46
|
+
export const bpBorderFilterChipBorderMultiOnHover: string;
|
|
47
|
+
export const bpBorderGridThumbnailBorder: string;
|
|
37
48
|
export const bpBorderInputBorder: string;
|
|
38
49
|
export const bpBorderInputBorderError: string;
|
|
39
50
|
export const bpBorderInputBorderErrorFocus: string;
|
|
40
51
|
export const bpBorderInputBorderErrorHover: string;
|
|
41
52
|
export const bpBorderInputBorderFocus: string;
|
|
42
53
|
export const bpBorderInputBorderHover: string;
|
|
43
|
-
export const
|
|
54
|
+
export const bpBorderInputChipBorderError: string;
|
|
55
|
+
export const bpBorderItemSmallBorderSelected: string;
|
|
44
56
|
export const bpBorderItemBorderHover: string;
|
|
45
57
|
export const bpBorderItemBorderSelected: string;
|
|
46
|
-
export const
|
|
58
|
+
export const bpBorderListItemBorder: string;
|
|
59
|
+
export const bpBorderListItemBorderSelected: string;
|
|
60
|
+
export const bpBorderMenuBorder: string;
|
|
47
61
|
export const bpBorderMessageBorderError: string;
|
|
48
62
|
export const bpBorderMessageBorderErrorSecondary: string;
|
|
49
63
|
export const bpBorderMessageBorderGeneric: string;
|
|
@@ -58,12 +72,18 @@ export const bpBorderRadioBorder: string;
|
|
|
58
72
|
export const bpBorderRadioBorderHover: string;
|
|
59
73
|
export const bpBorderRadioBorderSelected: string;
|
|
60
74
|
export const bpBorderRadioBorderSelectedHover: string;
|
|
61
|
-
export const
|
|
62
|
-
export const
|
|
63
|
-
export const
|
|
75
|
+
export const bpBorderRadioTileBorder: string;
|
|
76
|
+
export const bpBorderRadioTileBorderHover: string;
|
|
77
|
+
export const bpBorderRadioTileBorderSelected: string;
|
|
78
|
+
export const bpBorderSearchGlobalBorderHover: string;
|
|
64
79
|
export const bpBorderSearchBorder: string;
|
|
65
80
|
export const bpBorderSearchBorderHover: string;
|
|
66
|
-
export const
|
|
81
|
+
export const bpBorderSelectBorderActive: string;
|
|
82
|
+
export const bpBorderSelectBorderDefault: string;
|
|
83
|
+
export const bpBorderSelectBorderDisabled: string;
|
|
84
|
+
export const bpBorderSelectBorderError: string;
|
|
85
|
+
export const bpBorderSelectBorderHover: string;
|
|
86
|
+
export const bpBorderSelectBorderReadOnly: string;
|
|
67
87
|
export const bpBorderStatusBorderHover: string;
|
|
68
88
|
export const bpBorderSwitchBorder: string;
|
|
69
89
|
export const bpBorderSwitchBorderHover: string;
|
|
@@ -73,14 +93,15 @@ export const bpBorderTabBorderSelected: string;
|
|
|
73
93
|
export const bpBorderTabBorderSelectedFocus: string;
|
|
74
94
|
export const bpBorderTabBorderSelectedHover: string;
|
|
75
95
|
export const bpBorderToggleBorder: string;
|
|
96
|
+
export const bpBorderToggleBorderOff: string;
|
|
76
97
|
export const bpBorderToggleBorderOn: string;
|
|
77
|
-
export const
|
|
78
|
-
export const
|
|
79
|
-
export const
|
|
80
|
-
export const
|
|
81
|
-
export const
|
|
82
|
-
export const
|
|
83
|
-
export const
|
|
98
|
+
export const bpBorderToggleTextBorderOff: string;
|
|
99
|
+
export const bpBorderToggleTextBorderOffAi: string;
|
|
100
|
+
export const bpBorderToggleTextBorderOffHover: string;
|
|
101
|
+
export const bpBorderToggleTextBorderOffPressed: string;
|
|
102
|
+
export const bpBorderToggleTextBorderOn: string;
|
|
103
|
+
export const bpBorderToggleTextBorderOnHover: string;
|
|
104
|
+
export const bpBorderToggleTextBorderOnPressed: string;
|
|
84
105
|
export const bpBorderTooltipBorderError: string;
|
|
85
106
|
export const bpBorder00: string;
|
|
86
107
|
export const bpBorder01: string;
|
|
@@ -100,14 +121,6 @@ export const bpIconCtaIconPressed: string;
|
|
|
100
121
|
export const bpIconCtaIconUtility: string;
|
|
101
122
|
export const bpIconCtaIconUtilityHover: string;
|
|
102
123
|
export const bpIconCtaIconUtilityPressed: string;
|
|
103
|
-
export const bpIconIconBlue: string;
|
|
104
|
-
export const bpIconIconDestructiveOnLight: string;
|
|
105
|
-
export const bpIconIconErrorOnLight: string;
|
|
106
|
-
export const bpIconIconOnDark: string;
|
|
107
|
-
export const bpIconIconOnLight: string;
|
|
108
|
-
export const bpIconIconOnLightSecondary: string;
|
|
109
|
-
export const bpIconIconOnLightTertiary: string;
|
|
110
|
-
export const bpIconIconRequiredOnLight: string;
|
|
111
124
|
export const bpIconNavIconOnDark: string;
|
|
112
125
|
export const bpIconNavIconOnDarkFocus: string;
|
|
113
126
|
export const bpIconNavIconOnDarkHover: string;
|
|
@@ -116,40 +129,73 @@ export const bpIconNavIconOnLight: string;
|
|
|
116
129
|
export const bpIconNavIconOnLightFocus: string;
|
|
117
130
|
export const bpIconNavIconOnLightHover: string;
|
|
118
131
|
export const bpIconNavIconOnLightSelected: string;
|
|
132
|
+
export const bpIconIconBlue: string;
|
|
133
|
+
export const bpIconIconDestructiveOnLight: string;
|
|
134
|
+
export const bpIconIconErrorOnLight: string;
|
|
135
|
+
export const bpIconIconIllustrator: string;
|
|
136
|
+
export const bpIconIconIndesign: string;
|
|
137
|
+
export const bpIconIconOnDark: string;
|
|
138
|
+
export const bpIconIconOnLight: string;
|
|
139
|
+
export const bpIconIconOnLightSecondary: string;
|
|
140
|
+
export const bpIconIconOnLightTertiary: string;
|
|
141
|
+
export const bpIconIconPhotoshop: string;
|
|
142
|
+
export const bpIconIconRequiredOnLight: string;
|
|
119
143
|
export const bpOutlineFocusOnDark: string;
|
|
120
144
|
export const bpOutlineFocusOnLight: string;
|
|
121
145
|
export const bpOverlayModalOverlay: string;
|
|
122
|
-
export const
|
|
146
|
+
export const bpOverlaySidePanelOverlay: string;
|
|
123
147
|
export const bpSurfaceAccordionSurface: string;
|
|
124
148
|
export const bpSurfaceAccordionSurfaceHover: string;
|
|
125
|
-
export const
|
|
126
|
-
export const
|
|
127
|
-
export const
|
|
128
|
-
export const
|
|
129
|
-
export const
|
|
130
|
-
export const
|
|
131
|
-
export const
|
|
132
|
-
export const
|
|
133
|
-
export const
|
|
134
|
-
export const
|
|
135
|
-
export const
|
|
136
|
-
export const
|
|
137
|
-
export const
|
|
138
|
-
export const
|
|
139
|
-
export const
|
|
140
|
-
export const
|
|
141
|
-
export const
|
|
142
|
-
export const
|
|
143
|
-
export const
|
|
144
|
-
export const
|
|
145
|
-
export const
|
|
146
|
-
export const
|
|
147
|
-
export const
|
|
148
|
-
export const
|
|
149
|
-
export const
|
|
150
|
-
export const
|
|
151
|
-
export const
|
|
152
|
-
export const
|
|
149
|
+
export const bpSurfaceBadgeIllustratorSurface: string;
|
|
150
|
+
export const bpSurfaceBadgeIndesignSurface: string;
|
|
151
|
+
export const bpSurfaceBadgeNumbersSurface: string;
|
|
152
|
+
export const bpSurfaceBadgePhotoshopSurface: string;
|
|
153
|
+
export const bpSurfaceBadgePowerpointSurface: string;
|
|
154
|
+
export const bpSurfaceBadgePresentationSurface: string;
|
|
155
|
+
export const bpSurfaceBadgeSpreadsheetSurface: string;
|
|
156
|
+
export const bpSurfaceBadgeSurfaceAdmin: string;
|
|
157
|
+
export const bpSurfaceBadgeSurfaceAnnotation: string;
|
|
158
|
+
export const bpSurfaceBadgeSurfaceAudio: string;
|
|
159
|
+
export const bpSurfaceBadgeSurfaceBookmark: string;
|
|
160
|
+
export const bpSurfaceBadgeSurfaceBoxapps: string;
|
|
161
|
+
export const bpSurfaceBadgeSurfaceBoxnote: string;
|
|
162
|
+
export const bpSurfaceBadgeSurfaceCanvas: string;
|
|
163
|
+
export const bpSurfaceBadgeSurfaceCoadmin: string;
|
|
164
|
+
export const bpSurfaceBadgeSurfaceCode: string;
|
|
165
|
+
export const bpSurfaceBadgeSurfaceCollection: string;
|
|
166
|
+
export const bpSurfaceBadgeSurfaceCompleted: string;
|
|
167
|
+
export const bpSurfaceBadgeSurfaceDefault: string;
|
|
168
|
+
export const bpSurfaceBadgeSurfaceDocs: string;
|
|
169
|
+
export const bpSurfaceBadgeSurfaceDrawing: string;
|
|
170
|
+
export const bpSurfaceBadgeSurfaceError: string;
|
|
171
|
+
export const bpSurfaceBadgeSurfaceExcel: string;
|
|
172
|
+
export const bpSurfaceBadgeSurfaceExternal: string;
|
|
173
|
+
export const bpSurfaceBadgeSurfaceFolderexternal: string;
|
|
174
|
+
export const bpSurfaceBadgeSurfaceFoldershared: string;
|
|
175
|
+
export const bpSurfaceBadgeSurfaceHubs: string;
|
|
176
|
+
export const bpSurfaceBadgeSurfaceImage: string;
|
|
177
|
+
export const bpSurfaceBadgeSurfaceKeynote: string;
|
|
178
|
+
export const bpSurfaceBadgeSurfaceMention: string;
|
|
179
|
+
export const bpSurfaceBadgeSurfaceNotification: string;
|
|
180
|
+
export const bpSurfaceBadgeSurfaceOffline: string;
|
|
181
|
+
export const bpSurfaceBadgeSurfaceOnline: string;
|
|
182
|
+
export const bpSurfaceBadgeSurfacePages: string;
|
|
183
|
+
export const bpSurfaceBadgeSurfacePdf: string;
|
|
184
|
+
export const bpSurfaceBadgeSurfacePin: string;
|
|
185
|
+
export const bpSurfaceBadgeSurfaceProgress: string;
|
|
186
|
+
export const bpSurfaceBadgeSurfaceRejected: string;
|
|
187
|
+
export const bpSurfaceBadgeSurfaceRelay: string;
|
|
188
|
+
export const bpSurfaceBadgeSurfaceSheets: string;
|
|
189
|
+
export const bpSurfaceBadgeSurfaceSlides: string;
|
|
190
|
+
export const bpSurfaceBadgeSurfaceTask: string;
|
|
191
|
+
export const bpSurfaceBadgeSurfaceTaskapproval: string;
|
|
192
|
+
export const bpSurfaceBadgeSurfaceVideo: string;
|
|
193
|
+
export const bpSurfaceBadgeTextSurface: string;
|
|
194
|
+
export const bpSurfaceBadgeThreeDSurface: string;
|
|
195
|
+
export const bpSurfaceBadgeVectorSurface: string;
|
|
196
|
+
export const bpSurfaceBadgeWordSurface: string;
|
|
197
|
+
export const bpSurfaceBadgeZipSurface: string;
|
|
198
|
+
export const bpSurfaceCalendarSurface: string;
|
|
153
199
|
export const bpSurfaceCardSurface: string;
|
|
154
200
|
export const bpSurfaceCardSurfaceFocus: string;
|
|
155
201
|
export const bpSurfaceCardSurfaceHover: string;
|
|
@@ -160,9 +206,16 @@ export const bpSurfaceCheckboxSurfaceSelected: string;
|
|
|
160
206
|
export const bpSurfaceCheckboxSurfaceSelectedHover: string;
|
|
161
207
|
export const bpSurfaceChipButtonSurface: string;
|
|
162
208
|
export const bpSurfaceChipButtonSurfaceHover: string;
|
|
163
|
-
export const
|
|
164
|
-
export const
|
|
165
|
-
export const
|
|
209
|
+
export const bpSurfaceComboboxSurface: string;
|
|
210
|
+
export const bpSurfaceContentButtonSurfaceFocus: string;
|
|
211
|
+
export const bpSurfaceContentButtonSurfaceFocusDefault: string;
|
|
212
|
+
export const bpSurfaceContentButtonSurfaceHoverActive: string;
|
|
213
|
+
export const bpSurfaceContentButtonSurfaceHoverDefault: string;
|
|
214
|
+
export const bpSurfaceContentButtonSurfaceSelected: string;
|
|
215
|
+
export const bpSurfaceContentSwitcherSurface: string;
|
|
216
|
+
export const bpSurfaceCtaDestructiveSurfaceTeratiaryHover: string;
|
|
217
|
+
export const bpSurfaceCtaDestructiveSurfaceTeratiaryPressed: string;
|
|
218
|
+
export const bpSurfaceCtaDestructiveSurfaceTertiary: string;
|
|
166
219
|
export const bpSurfaceCtaSurfaceIcon: string;
|
|
167
220
|
export const bpSurfaceCtaSurfaceIconDisabled: string;
|
|
168
221
|
export const bpSurfaceCtaSurfaceIconHover: string;
|
|
@@ -171,7 +224,6 @@ export const bpSurfaceCtaSurfaceIconUtility: string;
|
|
|
171
224
|
export const bpSurfaceCtaSurfaceIconUtilityHover: string;
|
|
172
225
|
export const bpSurfaceCtaSurfaceIconUtilityPressed: string;
|
|
173
226
|
export const bpSurfaceCtaSurfaceOutline: string;
|
|
174
|
-
export const bpSurfaceCtaSurfaceOutline2: string;
|
|
175
227
|
export const bpSurfaceCtaSurfaceOutlineHover: string;
|
|
176
228
|
export const bpSurfaceCtaSurfaceOutlinePressed: string;
|
|
177
229
|
export const bpSurfaceCtaSurfacePromo: string;
|
|
@@ -194,18 +246,27 @@ export const bpSurfaceCtaSurfaceTertiaryPromoFocus: string;
|
|
|
194
246
|
export const bpSurfaceCtaSurfaceTertiaryPromoFocusPressed: string;
|
|
195
247
|
export const bpSurfaceCtaSurfaceTertiaryPromoHover: string;
|
|
196
248
|
export const bpSurfaceCtaSurfaceTertiaryPromoPressed: string;
|
|
197
|
-
export const
|
|
198
|
-
export const
|
|
199
|
-
export const
|
|
200
|
-
export const
|
|
201
|
-
export const
|
|
202
|
-
export const
|
|
203
|
-
export const
|
|
249
|
+
export const bpSurfaceDatePickerDaySurfaceDefault: string;
|
|
250
|
+
export const bpSurfaceDatePickerDaySurfaceDisabled: string;
|
|
251
|
+
export const bpSurfaceDatePickerDaySurfaceFocus: string;
|
|
252
|
+
export const bpSurfaceDatePickerDaySurfaceHover: string;
|
|
253
|
+
export const bpSurfaceDatePickerDaySurfaceSelected: string;
|
|
254
|
+
export const bpSurfaceDatePickerDaySurfaceSelectedFocus: string;
|
|
255
|
+
export const bpSurfaceDatePickerDaySurfaceSelectedHover: string;
|
|
256
|
+
export const bpSurfaceDatePickerSurfaceActive: string;
|
|
257
|
+
export const bpSurfaceDatePickerSurfaceComplete: string;
|
|
258
|
+
export const bpSurfaceDatePickerSurfaceDefault: string;
|
|
259
|
+
export const bpSurfaceDatePickerSurfaceDisabled: string;
|
|
260
|
+
export const bpSurfaceDatePickerSurfaceError: string;
|
|
261
|
+
export const bpSurfaceDatePickerSurfaceFocus: string;
|
|
262
|
+
export const bpSurfaceDatePickerSurfaceHover: string;
|
|
204
263
|
export const bpSurfaceDropdownPrimarySurfaceHover: string;
|
|
205
264
|
export const bpSurfaceDropdownPrimarySurfacePressed: string;
|
|
206
265
|
export const bpSurfaceDropdownSecondarySurface: string;
|
|
207
266
|
export const bpSurfaceDropdownSecondarySurfaceHover: string;
|
|
208
267
|
export const bpSurfaceDropdownSecondarySurfacePressed: string;
|
|
268
|
+
export const bpSurfaceDropdownTertiarySurfaceHover: string;
|
|
269
|
+
export const bpSurfaceDropdownTertiarySurfacePressed: string;
|
|
209
270
|
export const bpSurfaceDropdownSurface: string;
|
|
210
271
|
export const bpSurfaceDropdownSurfaceError: string;
|
|
211
272
|
export const bpSurfaceDropdownSurfaceErrorFocus: string;
|
|
@@ -217,43 +278,47 @@ export const bpSurfaceFilterSurfaceFocus: string;
|
|
|
217
278
|
export const bpSurfaceFilterSurfaceHover: string;
|
|
218
279
|
export const bpSurfaceFilterSurfaceSelected: string;
|
|
219
280
|
export const bpSurfaceFilterSurfaceSelectedFocus: string;
|
|
220
|
-
export const
|
|
221
|
-
export const
|
|
222
|
-
export const
|
|
223
|
-
export const
|
|
224
|
-
export const
|
|
225
|
-
export const
|
|
226
|
-
export const
|
|
227
|
-
export const
|
|
281
|
+
export const bpSurfaceFilterChipSurfaceMulti: string;
|
|
282
|
+
export const bpSurfaceFilterChipSurfaceMultiHover: string;
|
|
283
|
+
export const bpSurfaceFilterChipSurfaceMultiOn: string;
|
|
284
|
+
export const bpSurfaceFilterChipSurfaceMultiOnHover: string;
|
|
285
|
+
export const bpSurfaceFilterChipSurfaceSingle: string;
|
|
286
|
+
export const bpSurfaceFilterChipSurfaceSingleHover: string;
|
|
287
|
+
export const bpSurfaceFilterChipSurfaceSingleOn: string;
|
|
288
|
+
export const bpSurfaceFilterChipSurfaceSingleOnHover: string;
|
|
228
289
|
export const bpSurfaceGhostSurface: string;
|
|
229
290
|
export const bpSurfaceGhostSurfaceSecondary: string;
|
|
230
291
|
export const bpSurfaceIllustrationSurfaceBox: string;
|
|
231
292
|
export const bpSurfaceIllustrationSurfaceBoxNeutral: string;
|
|
293
|
+
export const bpSurfaceInlineNoticeSurfaceError: string;
|
|
294
|
+
export const bpSurfaceInlineNoticeSurfaceInfo: string;
|
|
295
|
+
export const bpSurfaceInlineNoticeSurfaceSuccess: string;
|
|
296
|
+
export const bpSurfaceInlineNoticeSurfaceWarning: string;
|
|
297
|
+
export const bpSurfaceInputSearchSurface: string;
|
|
298
|
+
export const bpSurfaceInputSearchSurfaceFocus: string;
|
|
299
|
+
export const bpSurfaceInputSearchSurfaceFocusPressed: string;
|
|
300
|
+
export const bpSurfaceInputSearchSurfaceHover: string;
|
|
232
301
|
export const bpSurfaceInputSurface: string;
|
|
233
302
|
export const bpSurfaceInputSurfaceError: string;
|
|
234
303
|
export const bpSurfaceInputSurfaceErrorFocus: string;
|
|
235
304
|
export const bpSurfaceInputSurfaceErrorHover: string;
|
|
236
305
|
export const bpSurfaceInputSurfaceFocus: string;
|
|
237
306
|
export const bpSurfaceInputSurfaceHover: string;
|
|
238
|
-
export const
|
|
239
|
-
export const
|
|
240
|
-
export const
|
|
307
|
+
export const bpSurfaceInputChipSurface: string;
|
|
308
|
+
export const bpSurfaceInputChipSurfaceError: string;
|
|
309
|
+
export const bpSurfaceInputChipSurfaceHover: string;
|
|
241
310
|
export const bpSurfaceItemSmallSurface: string;
|
|
242
311
|
export const bpSurfaceItemSmallSurfaceHover: string;
|
|
243
312
|
export const bpSurfaceItemSmallSurfaceSelected: string;
|
|
244
313
|
export const bpSurfaceItemSurfaceHover: string;
|
|
245
314
|
export const bpSurfaceItemSurfaceSelected: string;
|
|
315
|
+
export const bpSurfaceListItemSurface: string;
|
|
316
|
+
export const bpSurfaceListItemSurfaceSelected: string;
|
|
246
317
|
export const bpSurfaceMenuSurface: string;
|
|
247
|
-
export const
|
|
248
|
-
export const
|
|
249
|
-
export const
|
|
250
|
-
export const
|
|
251
|
-
export const bpSurfaceMessageSurfaceGeneric: string;
|
|
252
|
-
export const bpSurfaceMessageSurfaceGenericSecondary: string;
|
|
253
|
-
export const bpSurfaceMessageSurfaceInfoSecondary: string;
|
|
254
|
-
export const bpSurfaceMessageSurfacePromoSecondary: string;
|
|
255
|
-
export const bpSurfaceMessageSurfaceSuccessSecondary: string;
|
|
256
|
-
export const bpSurfaceMessageSurfaceWarningSecondary: string;
|
|
318
|
+
export const bpSurfaceMenuItemSurfaceDefault: string;
|
|
319
|
+
export const bpSurfaceMenuItemSurfaceHover: string;
|
|
320
|
+
export const bpSurfaceMenuItemSurfaceLoading: string;
|
|
321
|
+
export const bpSurfaceMenuItemSurfacePressed: string;
|
|
257
322
|
export const bpSurfaceNavSurfaceBrand: string;
|
|
258
323
|
export const bpSurfaceOptionGridSurfaceHover: string;
|
|
259
324
|
export const bpSurfaceOptionGridSurfaceSelected: string;
|
|
@@ -261,22 +326,28 @@ export const bpSurfacePageSurface: string;
|
|
|
261
326
|
export const bpSurfacePillSurface: string;
|
|
262
327
|
export const bpSurfacePillSurfaceFocus: string;
|
|
263
328
|
export const bpSurfacePillSurfaceHover: string;
|
|
264
|
-
export const
|
|
329
|
+
export const bpSurfaceProgressBarSurfaceBrand: string;
|
|
265
330
|
export const bpSurfaceRadioSurface: string;
|
|
266
331
|
export const bpSurfaceRadioSurfaceHover: string;
|
|
267
332
|
export const bpSurfaceRadioSurfaceSelected: string;
|
|
268
333
|
export const bpSurfaceRadioSurfaceSelectedHover: string;
|
|
269
|
-
export const
|
|
270
|
-
export const
|
|
271
|
-
export const
|
|
334
|
+
export const bpSurfaceRadioTileSurface: string;
|
|
335
|
+
export const bpSurfaceRadioTileSurfaceHover: string;
|
|
336
|
+
export const bpSurfaceRadioTileSurfaceSelected: string;
|
|
272
337
|
export const bpSurfaceScrollbarSurface: string;
|
|
273
338
|
export const bpSurfaceSearchGlobalSurface: string;
|
|
274
339
|
export const bpSurfaceSearchSurface: string;
|
|
275
340
|
export const bpSurfaceSearchSurfaceFocused: string;
|
|
276
341
|
export const bpSurfaceSearchSurfaceHover: string;
|
|
277
|
-
export const
|
|
278
|
-
export const
|
|
279
|
-
export const
|
|
342
|
+
export const bpSurfaceSelectSurfaceActive: string;
|
|
343
|
+
export const bpSurfaceSelectSurfaceDefault: string;
|
|
344
|
+
export const bpSurfaceSelectSurfaceDisabled: string;
|
|
345
|
+
export const bpSurfaceSelectSurfaceError: string;
|
|
346
|
+
export const bpSurfaceSelectSurfaceHover: string;
|
|
347
|
+
export const bpSurfaceSelectSurfaceReadOnly: string;
|
|
348
|
+
export const bpSurfaceSliderThumbSurface: string;
|
|
349
|
+
export const bpSurfaceSliderThumbSurfaceHover: string;
|
|
350
|
+
export const bpSurfaceSliderTrackSurface: string;
|
|
280
351
|
export const bpSurfaceStatusSurfaceBoxblue: string;
|
|
281
352
|
export const bpSurfaceStatusSurfaceBoxblueFocus: string;
|
|
282
353
|
export const bpSurfaceStatusSurfaceBoxblueHover: string;
|
|
@@ -311,19 +382,6 @@ export const bpSurfaceStatusSurfaceUploading: string;
|
|
|
311
382
|
export const bpSurfaceStatusSurfaceYellow: string;
|
|
312
383
|
export const bpSurfaceStatusSurfaceYellowFocus: string;
|
|
313
384
|
export const bpSurfaceStatusSurfaceYellowHover: string;
|
|
314
|
-
export const bpSurfaceSurface: string;
|
|
315
|
-
export const bpSurfaceSurfaceBrand: string;
|
|
316
|
-
export const bpSurfaceSurfaceBrandBusy: string;
|
|
317
|
-
export const bpSurfaceSurfaceBrandDisabled: string;
|
|
318
|
-
export const bpSurfaceSurfaceBrandHover: string;
|
|
319
|
-
export const bpSurfaceSurfaceBrandPressed: string;
|
|
320
|
-
export const bpSurfaceSurfaceBrandSecondary: string;
|
|
321
|
-
export const bpSurfaceSurfaceHover: string;
|
|
322
|
-
export const bpSurfaceSurfaceQuaternary: string;
|
|
323
|
-
export const bpSurfaceSurfaceSecondary: string;
|
|
324
|
-
export const bpSurfaceSurfaceSecondaryFocus: string;
|
|
325
|
-
export const bpSurfaceSurfaceSecondaryHover: string;
|
|
326
|
-
export const bpSurfaceSurfaceTertiary: string;
|
|
327
385
|
export const bpSurfaceSwitchSurface: string;
|
|
328
386
|
export const bpSurfaceSwitchSurfaceHover: string;
|
|
329
387
|
export const bpSurfaceSwitchSurfaceOff: string;
|
|
@@ -342,16 +400,29 @@ export const bpSurfaceToggleSurfaceOnHover: string;
|
|
|
342
400
|
export const bpSurfaceToggleSurfaceOnPressed: string;
|
|
343
401
|
export const bpSurfaceToggleSurfacePressed: string;
|
|
344
402
|
export const bpSurfaceToggleSurfacePressedHover: string;
|
|
345
|
-
export const
|
|
346
|
-
export const
|
|
347
|
-
export const
|
|
348
|
-
export const
|
|
349
|
-
export const
|
|
350
|
-
export const
|
|
403
|
+
export const bpSurfaceToggleTextSurfaceOff: string;
|
|
404
|
+
export const bpSurfaceToggleTextSurfaceOffHover: string;
|
|
405
|
+
export const bpSurfaceToggleTextSurfaceOffPressed: string;
|
|
406
|
+
export const bpSurfaceToggleTextSurfaceOn: string;
|
|
407
|
+
export const bpSurfaceToggleTextSurfaceOnHover: string;
|
|
408
|
+
export const bpSurfaceToggleTextSurfaceOnPressed: string;
|
|
351
409
|
export const bpSurfaceToolbarSurface: string;
|
|
352
410
|
export const bpSurfaceTooltipSurface: string;
|
|
353
411
|
export const bpSurfaceTooltipSurfaceError: string;
|
|
354
412
|
export const bpSurfaceUploadSurfaceBrandNeutral: string;
|
|
413
|
+
export const bpSurfaceSurface: string;
|
|
414
|
+
export const bpSurfaceSurfaceBrand: string;
|
|
415
|
+
export const bpSurfaceSurfaceBrandBusy: string;
|
|
416
|
+
export const bpSurfaceSurfaceBrandDisabled: string;
|
|
417
|
+
export const bpSurfaceSurfaceBrandHover: string;
|
|
418
|
+
export const bpSurfaceSurfaceBrandPressed: string;
|
|
419
|
+
export const bpSurfaceSurfaceBrandSecondary: string;
|
|
420
|
+
export const bpSurfaceSurfaceHover: string;
|
|
421
|
+
export const bpSurfaceSurfaceQuaternary: string;
|
|
422
|
+
export const bpSurfaceSurfaceSecondary: string;
|
|
423
|
+
export const bpSurfaceSurfaceSecondaryFocus: string;
|
|
424
|
+
export const bpSurfaceSurfaceSecondaryHover: string;
|
|
425
|
+
export const bpSurfaceSurfaceTertiary: string;
|
|
355
426
|
export const bpTextCtaLink: string;
|
|
356
427
|
export const bpTextCtaLinkDisabled: string;
|
|
357
428
|
export const bpTextCtaLinkHover: string;
|
|
@@ -368,6 +439,7 @@ export const bpTextNavTextOnLight: string;
|
|
|
368
439
|
export const bpTextNavTextOnLightFocus: string;
|
|
369
440
|
export const bpTextNavTextOnLightHover: string;
|
|
370
441
|
export const bpTextNavTextOnLightSelected: string;
|
|
442
|
+
export const bpTextToggleTextText: string;
|
|
371
443
|
export const bpTextTextBrandOnColor: string;
|
|
372
444
|
export const bpTextTextDestructiveOnLight: string;
|
|
373
445
|
export const bpTextTextErrorOnLight: string;
|
|
@@ -377,7 +449,6 @@ export const bpTextTextOnLightDisabled: string;
|
|
|
377
449
|
export const bpTextTextOnLightSecondary: string;
|
|
378
450
|
export const bpTextTextOnLightSecondaryHover: string;
|
|
379
451
|
export const bpTextTextOnLightTertiary: string;
|
|
380
|
-
export const bpTextToggletextText: string;
|
|
381
452
|
export const bpBoxBlue10: string;
|
|
382
453
|
export const bpBoxBlue20: string;
|
|
383
454
|
export const bpBoxBlue30: string;
|
|
@@ -675,6 +746,8 @@ export const bpFontLineHeight04: string;
|
|
|
675
746
|
export const bpFontLineHeight05: string;
|
|
676
747
|
export const bpFontLineHeight06: string;
|
|
677
748
|
export const bpFontLineHeight07: string;
|
|
749
|
+
export const bpFontSize10: string;
|
|
750
|
+
export const bpFontSize11: string;
|
|
678
751
|
export const bpFontSize01: string;
|
|
679
752
|
export const bpFontSize02: string;
|
|
680
753
|
export const bpFontSize03: string;
|