@homebound/beam 2.351.0 → 2.353.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/dist/Css.d.ts +109 -133
- package/dist/Css.js +109 -133
- package/dist/components/Accordion.js +2 -2
- package/dist/components/Avatar/Avatar.js +1 -1
- package/dist/components/Avatar/AvatarGroup.js +1 -1
- package/dist/components/Button.js +1 -1
- package/dist/components/ButtonGroup.js +2 -2
- package/dist/components/Chip.d.ts +2 -0
- package/dist/components/Chip.js +5 -4
- package/dist/components/DnDGrid/DnDGridItemHandle.js +2 -2
- package/dist/components/Filters/FilterModal.js +1 -1
- package/dist/components/Icon.d.ts +1 -1
- package/dist/components/IconButton.js +2 -2
- package/dist/components/Label.js +1 -1
- package/dist/components/Layout/PreventBrowserScroll.js +1 -1
- package/dist/components/Layout/RightPaneLayout/RightPaneLayout.js +2 -2
- package/dist/components/Layout/ScrollableContent.d.ts +1 -1
- package/dist/components/Layout/ScrollableContent.js +1 -1
- package/dist/components/Layout/ScrollableParent.js +2 -2
- package/dist/components/Modal/Modal.js +3 -3
- package/dist/components/Pagination.js +1 -1
- package/dist/components/ScrollShadows.js +2 -2
- package/dist/components/Stepper.js +1 -1
- package/dist/components/SuperDrawer/SuperDrawer.js +2 -2
- package/dist/components/SuperDrawer/SuperDrawerContent.js +2 -2
- package/dist/components/SuperDrawer/components/SuperDrawerHeader.js +1 -1
- package/dist/components/Table/TableStyles.js +9 -9
- package/dist/components/Table/components/ExpandableHeader.js +1 -1
- package/dist/components/Table/components/Row.js +4 -4
- package/dist/components/Table/components/SortHeader.js +1 -1
- package/dist/components/Table/components/cell.js +2 -2
- package/dist/components/Tabs.js +4 -4
- package/dist/components/Tag.js +1 -1
- package/dist/components/ToggleChip.js +1 -1
- package/dist/components/internal/CompoundField.js +4 -4
- package/dist/components/internal/ContextualModal.js +1 -1
- package/dist/components/internal/DatePicker/Day.js +2 -2
- package/dist/components/internal/Menu.js +1 -1
- package/dist/components/internal/MenuSection.js +1 -1
- package/dist/forms/StepperFormApp.js +3 -3
- package/dist/inputs/CheckboxBase.js +5 -5
- package/dist/inputs/ChipSelectField.js +3 -3
- package/dist/inputs/IconCard.js +3 -3
- package/dist/inputs/NumberField.js +1 -1
- package/dist/inputs/RadioGroupField.js +4 -4
- package/dist/inputs/RichTextField.js +4 -4
- package/dist/inputs/Switch.js +1 -1
- package/dist/inputs/TextFieldBase.js +7 -7
- package/dist/inputs/ToggleButton.js +2 -2
- package/dist/inputs/internal/ListBox.js +1 -1
- package/dist/inputs/internal/ListBoxChip.js +1 -1
- package/dist/inputs/internal/ListBoxSection.js +1 -1
- package/dist/inputs/internal/Option.js +1 -1
- package/package.json +2 -2
package/dist/Css.js
CHANGED
|
@@ -44,291 +44,291 @@ class CssBuilder {
|
|
|
44
44
|
}
|
|
45
45
|
// borderColor
|
|
46
46
|
/** Sets `borderColor: "rgba(255,255,255,1)"`. */
|
|
47
|
-
get
|
|
47
|
+
get bcWhite() {
|
|
48
48
|
return this.add("borderColor", "rgba(255,255,255,1)");
|
|
49
49
|
}
|
|
50
50
|
/** Sets `borderColor: "rgba(0,0,0,0)"`. */
|
|
51
|
-
get
|
|
51
|
+
get bcTransparent() {
|
|
52
52
|
return this.add("borderColor", "rgba(0,0,0,0)");
|
|
53
53
|
}
|
|
54
54
|
/** Sets `borderColor: "rgba(255, 253, 253, 1)"`. */
|
|
55
|
-
get
|
|
55
|
+
get bcGray50() {
|
|
56
56
|
return this.add("borderColor", "rgba(255, 253, 253, 1)");
|
|
57
57
|
}
|
|
58
58
|
/** Sets `borderColor: "rgba(247, 245, 245, 1)"`. */
|
|
59
|
-
get
|
|
59
|
+
get bcGray100() {
|
|
60
60
|
return this.add("borderColor", "rgba(247, 245, 245, 1)");
|
|
61
61
|
}
|
|
62
62
|
/** Sets `borderColor: "rgba(236, 235, 235, 1)"`. */
|
|
63
|
-
get
|
|
63
|
+
get bcGray200() {
|
|
64
64
|
return this.add("borderColor", "rgba(236, 235, 235, 1)");
|
|
65
65
|
}
|
|
66
66
|
/** Sets `borderColor: "rgba(221, 220, 220, 1)"`. */
|
|
67
|
-
get
|
|
67
|
+
get bcGray300() {
|
|
68
68
|
return this.add("borderColor", "rgba(221, 220, 220, 1)");
|
|
69
69
|
}
|
|
70
70
|
/** Sets `borderColor: "rgba(201, 201, 201, 1)"`. */
|
|
71
|
-
get
|
|
71
|
+
get bcGray400() {
|
|
72
72
|
return this.add("borderColor", "rgba(201, 201, 201, 1)");
|
|
73
73
|
}
|
|
74
74
|
/** Sets `borderColor: "rgba(175, 175, 175, 1)"`. */
|
|
75
|
-
get
|
|
75
|
+
get bcGray500() {
|
|
76
76
|
return this.add("borderColor", "rgba(175, 175, 175, 1)");
|
|
77
77
|
}
|
|
78
78
|
/** Sets `borderColor: "rgba(141, 141, 141, 1)"`. */
|
|
79
|
-
get
|
|
79
|
+
get bcGray600() {
|
|
80
80
|
return this.add("borderColor", "rgba(141, 141, 141, 1)");
|
|
81
81
|
}
|
|
82
82
|
/** Sets `borderColor: "rgba(100, 100, 100, 1)"`. */
|
|
83
|
-
get
|
|
83
|
+
get bcGray700() {
|
|
84
84
|
return this.add("borderColor", "rgba(100, 100, 100, 1)");
|
|
85
85
|
}
|
|
86
86
|
/** Sets `borderColor: "rgba(53, 53, 53, 1)"`. */
|
|
87
|
-
get
|
|
87
|
+
get bcGray800() {
|
|
88
88
|
return this.add("borderColor", "rgba(53, 53, 53, 1)");
|
|
89
89
|
}
|
|
90
90
|
/** Sets `borderColor: "rgba(36, 36, 36, 1)"`. */
|
|
91
|
-
get
|
|
91
|
+
get bcGray900() {
|
|
92
92
|
return this.add("borderColor", "rgba(36, 36, 36, 1)");
|
|
93
93
|
}
|
|
94
94
|
/** Sets `borderColor: "rgba(239, 246, 255, 1)"`. */
|
|
95
|
-
get
|
|
95
|
+
get bcBlue50() {
|
|
96
96
|
return this.add("borderColor", "rgba(239, 246, 255, 1)");
|
|
97
97
|
}
|
|
98
98
|
/** Sets `borderColor: "rgba(219, 234, 254, 1)"`. */
|
|
99
|
-
get
|
|
99
|
+
get bcBlue100() {
|
|
100
100
|
return this.add("borderColor", "rgba(219, 234, 254, 1)");
|
|
101
101
|
}
|
|
102
102
|
/** Sets `borderColor: "rgba(191, 219, 254, 1)"`. */
|
|
103
|
-
get
|
|
103
|
+
get bcBlue200() {
|
|
104
104
|
return this.add("borderColor", "rgba(191, 219, 254, 1)");
|
|
105
105
|
}
|
|
106
106
|
/** Sets `borderColor: "rgba(147, 197, 253, 1)"`. */
|
|
107
|
-
get
|
|
107
|
+
get bcBlue300() {
|
|
108
108
|
return this.add("borderColor", "rgba(147, 197, 253, 1)");
|
|
109
109
|
}
|
|
110
110
|
/** Sets `borderColor: "rgba(96, 165, 250, 1)"`. */
|
|
111
|
-
get
|
|
111
|
+
get bcBlue400() {
|
|
112
112
|
return this.add("borderColor", "rgba(96, 165, 250, 1)");
|
|
113
113
|
}
|
|
114
114
|
/** Sets `borderColor: "rgba(59, 130, 246, 1)"`. */
|
|
115
|
-
get
|
|
115
|
+
get bcBlue500() {
|
|
116
116
|
return this.add("borderColor", "rgba(59, 130, 246, 1)");
|
|
117
117
|
}
|
|
118
118
|
/** Sets `borderColor: "rgba(37, 99, 235, 1)"`. */
|
|
119
|
-
get
|
|
119
|
+
get bcBlue600() {
|
|
120
120
|
return this.add("borderColor", "rgba(37, 99, 235, 1)");
|
|
121
121
|
}
|
|
122
122
|
/** Sets `borderColor: "rgba(29, 78, 216, 1)"`. */
|
|
123
|
-
get
|
|
123
|
+
get bcBlue700() {
|
|
124
124
|
return this.add("borderColor", "rgba(29, 78, 216, 1)");
|
|
125
125
|
}
|
|
126
126
|
/** Sets `borderColor: "rgba(30, 64, 175, 1)"`. */
|
|
127
|
-
get
|
|
127
|
+
get bcBlue800() {
|
|
128
128
|
return this.add("borderColor", "rgba(30, 64, 175, 1)");
|
|
129
129
|
}
|
|
130
130
|
/** Sets `borderColor: "rgba(30, 58, 138, 1)"`. */
|
|
131
|
-
get
|
|
131
|
+
get bcBlue900() {
|
|
132
132
|
return this.add("borderColor", "rgba(30, 58, 138, 1)");
|
|
133
133
|
}
|
|
134
134
|
/** Sets `borderColor: "rgba(254, 242, 242, 1)"`. */
|
|
135
|
-
get
|
|
135
|
+
get bcRed50() {
|
|
136
136
|
return this.add("borderColor", "rgba(254, 242, 242, 1)");
|
|
137
137
|
}
|
|
138
138
|
/** Sets `borderColor: "rgba(254, 226, 226, 1)"`. */
|
|
139
|
-
get
|
|
139
|
+
get bcRed100() {
|
|
140
140
|
return this.add("borderColor", "rgba(254, 226, 226, 1)");
|
|
141
141
|
}
|
|
142
142
|
/** Sets `borderColor: "rgba(254, 202, 202, 1)"`. */
|
|
143
|
-
get
|
|
143
|
+
get bcRed200() {
|
|
144
144
|
return this.add("borderColor", "rgba(254, 202, 202, 1)");
|
|
145
145
|
}
|
|
146
146
|
/** Sets `borderColor: "rgba(252, 165, 165, 1)"`. */
|
|
147
|
-
get
|
|
147
|
+
get bcRed300() {
|
|
148
148
|
return this.add("borderColor", "rgba(252, 165, 165, 1)");
|
|
149
149
|
}
|
|
150
150
|
/** Sets `borderColor: "rgba(248, 113, 113, 1)"`. */
|
|
151
|
-
get
|
|
151
|
+
get bcRed400() {
|
|
152
152
|
return this.add("borderColor", "rgba(248, 113, 113, 1)");
|
|
153
153
|
}
|
|
154
154
|
/** Sets `borderColor: "rgba(239, 68, 68, 1)"`. */
|
|
155
|
-
get
|
|
155
|
+
get bcRed500() {
|
|
156
156
|
return this.add("borderColor", "rgba(239, 68, 68, 1)");
|
|
157
157
|
}
|
|
158
158
|
/** Sets `borderColor: "rgba(220, 38, 38, 1)"`. */
|
|
159
|
-
get
|
|
159
|
+
get bcRed600() {
|
|
160
160
|
return this.add("borderColor", "rgba(220, 38, 38, 1)");
|
|
161
161
|
}
|
|
162
162
|
/** Sets `borderColor: "rgba(185, 28, 28, 1)"`. */
|
|
163
|
-
get
|
|
163
|
+
get bcRed700() {
|
|
164
164
|
return this.add("borderColor", "rgba(185, 28, 28, 1)");
|
|
165
165
|
}
|
|
166
166
|
/** Sets `borderColor: "rgba(153, 27, 27, 1)"`. */
|
|
167
|
-
get
|
|
167
|
+
get bcRed800() {
|
|
168
168
|
return this.add("borderColor", "rgba(153, 27, 27, 1)");
|
|
169
169
|
}
|
|
170
170
|
/** Sets `borderColor: "rgba(127, 29, 29, 1)"`. */
|
|
171
|
-
get
|
|
171
|
+
get bcRed900() {
|
|
172
172
|
return this.add("borderColor", "rgba(127, 29, 29, 1)");
|
|
173
173
|
}
|
|
174
174
|
/** Sets `borderColor: "rgba(254, 252, 232, 1)"`. */
|
|
175
|
-
get
|
|
175
|
+
get bcYellow50() {
|
|
176
176
|
return this.add("borderColor", "rgba(254, 252, 232, 1)");
|
|
177
177
|
}
|
|
178
178
|
/** Sets `borderColor: "rgba(254, 249, 195, 1)"`. */
|
|
179
|
-
get
|
|
179
|
+
get bcYellow100() {
|
|
180
180
|
return this.add("borderColor", "rgba(254, 249, 195, 1)");
|
|
181
181
|
}
|
|
182
182
|
/** Sets `borderColor: "rgba(254, 240, 138, 1)"`. */
|
|
183
|
-
get
|
|
183
|
+
get bcYellow200() {
|
|
184
184
|
return this.add("borderColor", "rgba(254, 240, 138, 1)");
|
|
185
185
|
}
|
|
186
186
|
/** Sets `borderColor: "rgba(253, 224, 71, 1)"`. */
|
|
187
|
-
get
|
|
187
|
+
get bcYellow300() {
|
|
188
188
|
return this.add("borderColor", "rgba(253, 224, 71, 1)");
|
|
189
189
|
}
|
|
190
190
|
/** Sets `borderColor: "rgba(250, 204, 21, 1)"`. */
|
|
191
|
-
get
|
|
191
|
+
get bcYellow400() {
|
|
192
192
|
return this.add("borderColor", "rgba(250, 204, 21, 1)");
|
|
193
193
|
}
|
|
194
194
|
/** Sets `borderColor: "rgba(234, 179, 8, 1)"`. */
|
|
195
|
-
get
|
|
195
|
+
get bcYellow500() {
|
|
196
196
|
return this.add("borderColor", "rgba(234, 179, 8, 1)");
|
|
197
197
|
}
|
|
198
198
|
/** Sets `borderColor: "rgba(202, 138, 4, 1)"`. */
|
|
199
|
-
get
|
|
199
|
+
get bcYellow600() {
|
|
200
200
|
return this.add("borderColor", "rgba(202, 138, 4, 1)");
|
|
201
201
|
}
|
|
202
202
|
/** Sets `borderColor: "rgba(161, 98, 7, 1)"`. */
|
|
203
|
-
get
|
|
203
|
+
get bcYellow700() {
|
|
204
204
|
return this.add("borderColor", "rgba(161, 98, 7, 1)");
|
|
205
205
|
}
|
|
206
206
|
/** Sets `borderColor: "rgba(133, 77, 14, 1)"`. */
|
|
207
|
-
get
|
|
207
|
+
get bcYellow800() {
|
|
208
208
|
return this.add("borderColor", "rgba(133, 77, 14, 1)");
|
|
209
209
|
}
|
|
210
210
|
/** Sets `borderColor: "rgba(113, 63, 18, 1)"`. */
|
|
211
|
-
get
|
|
211
|
+
get bcYellow900() {
|
|
212
212
|
return this.add("borderColor", "rgba(113, 63, 18, 1)");
|
|
213
213
|
}
|
|
214
214
|
/** Sets `borderColor: "rgba(236, 253, 245, 1)"`. */
|
|
215
|
-
get
|
|
215
|
+
get bcGreen50() {
|
|
216
216
|
return this.add("borderColor", "rgba(236, 253, 245, 1)");
|
|
217
217
|
}
|
|
218
218
|
/** Sets `borderColor: "rgba(209, 250, 229, 1)"`. */
|
|
219
|
-
get
|
|
219
|
+
get bcGreen100() {
|
|
220
220
|
return this.add("borderColor", "rgba(209, 250, 229, 1)");
|
|
221
221
|
}
|
|
222
222
|
/** Sets `borderColor: "rgba(167, 243, 208, 1)"`. */
|
|
223
|
-
get
|
|
223
|
+
get bcGreen200() {
|
|
224
224
|
return this.add("borderColor", "rgba(167, 243, 208, 1)");
|
|
225
225
|
}
|
|
226
226
|
/** Sets `borderColor: "rgba(110, 231, 183, 1)"`. */
|
|
227
|
-
get
|
|
227
|
+
get bcGreen300() {
|
|
228
228
|
return this.add("borderColor", "rgba(110, 231, 183, 1)");
|
|
229
229
|
}
|
|
230
230
|
/** Sets `borderColor: "rgba(52, 211, 153, 1)"`. */
|
|
231
|
-
get
|
|
231
|
+
get bcGreen400() {
|
|
232
232
|
return this.add("borderColor", "rgba(52, 211, 153, 1)");
|
|
233
233
|
}
|
|
234
234
|
/** Sets `borderColor: "rgba(16, 185, 129, 1)"`. */
|
|
235
|
-
get
|
|
235
|
+
get bcGreen500() {
|
|
236
236
|
return this.add("borderColor", "rgba(16, 185, 129, 1)");
|
|
237
237
|
}
|
|
238
238
|
/** Sets `borderColor: "rgba(5, 150, 105, 1)"`. */
|
|
239
|
-
get
|
|
239
|
+
get bcGreen600() {
|
|
240
240
|
return this.add("borderColor", "rgba(5, 150, 105, 1)");
|
|
241
241
|
}
|
|
242
242
|
/** Sets `borderColor: "rgba(4, 120, 87, 1)"`. */
|
|
243
|
-
get
|
|
243
|
+
get bcGreen700() {
|
|
244
244
|
return this.add("borderColor", "rgba(4, 120, 87, 1)");
|
|
245
245
|
}
|
|
246
246
|
/** Sets `borderColor: "rgba(6, 95, 70, 1)"`. */
|
|
247
|
-
get
|
|
247
|
+
get bcGreen800() {
|
|
248
248
|
return this.add("borderColor", "rgba(6, 95, 70, 1)");
|
|
249
249
|
}
|
|
250
250
|
/** Sets `borderColor: "rgba(6, 78, 59, 1)"`. */
|
|
251
|
-
get
|
|
251
|
+
get bcGreen900() {
|
|
252
252
|
return this.add("borderColor", "rgba(6, 78, 59, 1)");
|
|
253
253
|
}
|
|
254
254
|
/** Sets `borderColor: "rgba(245, 243, 255, 1)"`. */
|
|
255
|
-
get
|
|
255
|
+
get bcPurple50() {
|
|
256
256
|
return this.add("borderColor", "rgba(245, 243, 255, 1)");
|
|
257
257
|
}
|
|
258
258
|
/** Sets `borderColor: "rgba(237, 233, 254, 1)"`. */
|
|
259
|
-
get
|
|
259
|
+
get bcPurple100() {
|
|
260
260
|
return this.add("borderColor", "rgba(237, 233, 254, 1)");
|
|
261
261
|
}
|
|
262
262
|
/** Sets `borderColor: "rgba(221, 214, 254, 1)"`. */
|
|
263
|
-
get
|
|
263
|
+
get bcPurple200() {
|
|
264
264
|
return this.add("borderColor", "rgba(221, 214, 254, 1)");
|
|
265
265
|
}
|
|
266
266
|
/** Sets `borderColor: "rgba(196, 181, 253, 1)"`. */
|
|
267
|
-
get
|
|
267
|
+
get bcPurple300() {
|
|
268
268
|
return this.add("borderColor", "rgba(196, 181, 253, 1)");
|
|
269
269
|
}
|
|
270
270
|
/** Sets `borderColor: "rgba(167, 139, 250, 1)"`. */
|
|
271
|
-
get
|
|
271
|
+
get bcPurple400() {
|
|
272
272
|
return this.add("borderColor", "rgba(167, 139, 250, 1)");
|
|
273
273
|
}
|
|
274
274
|
/** Sets `borderColor: "rgba(139, 92, 246, 1)"`. */
|
|
275
|
-
get
|
|
275
|
+
get bcPurple500() {
|
|
276
276
|
return this.add("borderColor", "rgba(139, 92, 246, 1)");
|
|
277
277
|
}
|
|
278
278
|
/** Sets `borderColor: "rgba(124, 58, 237, 1)"`. */
|
|
279
|
-
get
|
|
279
|
+
get bcPurple600() {
|
|
280
280
|
return this.add("borderColor", "rgba(124, 58, 237, 1)");
|
|
281
281
|
}
|
|
282
282
|
/** Sets `borderColor: "rgba(109, 40, 217, 1)"`. */
|
|
283
|
-
get
|
|
283
|
+
get bcPurple700() {
|
|
284
284
|
return this.add("borderColor", "rgba(109, 40, 217, 1)");
|
|
285
285
|
}
|
|
286
286
|
/** Sets `borderColor: "rgba(91, 33, 182, 1)"`. */
|
|
287
|
-
get
|
|
287
|
+
get bcPurple800() {
|
|
288
288
|
return this.add("borderColor", "rgba(91, 33, 182, 1)");
|
|
289
289
|
}
|
|
290
290
|
/** Sets `borderColor: "rgba(76, 29, 149, 1)"`. */
|
|
291
|
-
get
|
|
291
|
+
get bcPurple900() {
|
|
292
292
|
return this.add("borderColor", "rgba(76, 29, 149, 1)");
|
|
293
293
|
}
|
|
294
294
|
/** Sets `borderColor: "rgba(255, 247, 237, 1)"`. */
|
|
295
|
-
get
|
|
295
|
+
get bcOrange50() {
|
|
296
296
|
return this.add("borderColor", "rgba(255, 247, 237, 1)");
|
|
297
297
|
}
|
|
298
298
|
/** Sets `borderColor: "rgba(255, 237, 213, 1)"`. */
|
|
299
|
-
get
|
|
299
|
+
get bcOrange100() {
|
|
300
300
|
return this.add("borderColor", "rgba(255, 237, 213, 1)");
|
|
301
301
|
}
|
|
302
302
|
/** Sets `borderColor: "rgba(254, 215, 170, 1)"`. */
|
|
303
|
-
get
|
|
303
|
+
get bcOrange200() {
|
|
304
304
|
return this.add("borderColor", "rgba(254, 215, 170, 1)");
|
|
305
305
|
}
|
|
306
306
|
/** Sets `borderColor: "rgba(253, 186, 116, 1)"`. */
|
|
307
|
-
get
|
|
307
|
+
get bcOrange300() {
|
|
308
308
|
return this.add("borderColor", "rgba(253, 186, 116, 1)");
|
|
309
309
|
}
|
|
310
310
|
/** Sets `borderColor: "rgba(251, 146, 60, 1)"`. */
|
|
311
|
-
get
|
|
311
|
+
get bcOrange400() {
|
|
312
312
|
return this.add("borderColor", "rgba(251, 146, 60, 1)");
|
|
313
313
|
}
|
|
314
314
|
/** Sets `borderColor: "rgba(249, 115, 22, 1)"`. */
|
|
315
|
-
get
|
|
315
|
+
get bcOrange500() {
|
|
316
316
|
return this.add("borderColor", "rgba(249, 115, 22, 1)");
|
|
317
317
|
}
|
|
318
318
|
/** Sets `borderColor: "rgba(234, 88, 12, 1)"`. */
|
|
319
|
-
get
|
|
319
|
+
get bcOrange600() {
|
|
320
320
|
return this.add("borderColor", "rgba(234, 88, 12, 1)");
|
|
321
321
|
}
|
|
322
322
|
/** Sets `borderColor: "rgba(194, 65, 12, 1)"`. */
|
|
323
|
-
get
|
|
323
|
+
get bcOrange700() {
|
|
324
324
|
return this.add("borderColor", "rgba(194, 65, 12, 1)");
|
|
325
325
|
}
|
|
326
326
|
/** Sets `borderColor: "rgba(154, 52, 18, 1)"`. */
|
|
327
|
-
get
|
|
327
|
+
get bcOrange800() {
|
|
328
328
|
return this.add("borderColor", "rgba(154, 52, 18, 1)");
|
|
329
329
|
}
|
|
330
330
|
/** Sets `borderColor: "rgba(124, 45, 18, 1)"`. */
|
|
331
|
-
get
|
|
331
|
+
get bcOrange900() {
|
|
332
332
|
return this.add("borderColor", "rgba(124, 45, 18, 1)");
|
|
333
333
|
}
|
|
334
334
|
/** Sets `borderColor: value`. */
|
|
@@ -386,11 +386,11 @@ class CssBuilder {
|
|
|
386
386
|
return this.add("borderStyle", "dotted");
|
|
387
387
|
}
|
|
388
388
|
/** Sets `borderStyle: "none"`. */
|
|
389
|
-
get
|
|
389
|
+
get bsn() {
|
|
390
390
|
return this.add("borderStyle", "none");
|
|
391
391
|
}
|
|
392
392
|
/** Sets `borderStyle: "solid"`. */
|
|
393
|
-
get
|
|
393
|
+
get bss() {
|
|
394
394
|
return this.add("borderStyle", "solid");
|
|
395
395
|
}
|
|
396
396
|
/** Sets `borderStyle: value`. */
|
|
@@ -1016,18 +1016,6 @@ class CssBuilder {
|
|
|
1016
1016
|
fb(value) {
|
|
1017
1017
|
return this.add("flexBasis", value);
|
|
1018
1018
|
}
|
|
1019
|
-
/** Sets `flex: "auto"`. */
|
|
1020
|
-
get flexAuto() {
|
|
1021
|
-
return this.add("flex", "auto");
|
|
1022
|
-
}
|
|
1023
|
-
/** Sets `flex: "none"`. */
|
|
1024
|
-
get flexNone() {
|
|
1025
|
-
return this.add("flex", "none");
|
|
1026
|
-
}
|
|
1027
|
-
/** Sets `flex: value`. */
|
|
1028
|
-
flex(value) {
|
|
1029
|
-
return this.add("flex", value);
|
|
1030
|
-
}
|
|
1031
1019
|
/** Sets `flexGrow: 0`. */
|
|
1032
1020
|
get fg0() {
|
|
1033
1021
|
return this.add("flexGrow", 0);
|
|
@@ -1107,11 +1095,11 @@ class CssBuilder {
|
|
|
1107
1095
|
}
|
|
1108
1096
|
// fontWeight
|
|
1109
1097
|
/** Sets `fontWeight: "normal"`. */
|
|
1110
|
-
get
|
|
1098
|
+
get fwn() {
|
|
1111
1099
|
return this.add("fontWeight", "normal");
|
|
1112
1100
|
}
|
|
1113
1101
|
/** Sets `fontWeight: "bold"`. */
|
|
1114
|
-
get
|
|
1102
|
+
get fwb() {
|
|
1115
1103
|
return this.add("fontWeight", "bold");
|
|
1116
1104
|
}
|
|
1117
1105
|
/** Sets `fontWeight: 100`. */
|
|
@@ -1570,19 +1558,19 @@ class CssBuilder {
|
|
|
1570
1558
|
}
|
|
1571
1559
|
// overflow
|
|
1572
1560
|
/** Sets `overflow: "visible"`. */
|
|
1573
|
-
get
|
|
1561
|
+
get ov() {
|
|
1574
1562
|
return this.add("overflow", "visible");
|
|
1575
1563
|
}
|
|
1576
1564
|
/** Sets `overflow: "hidden"`. */
|
|
1577
|
-
get
|
|
1565
|
+
get oh() {
|
|
1578
1566
|
return this.add("overflow", "hidden");
|
|
1579
1567
|
}
|
|
1580
1568
|
/** Sets `overflow: "scroll"`. */
|
|
1581
|
-
get
|
|
1569
|
+
get os() {
|
|
1582
1570
|
return this.add("overflow", "scroll");
|
|
1583
1571
|
}
|
|
1584
1572
|
/** Sets `overflow: "auto"`. */
|
|
1585
|
-
get
|
|
1573
|
+
get oa() {
|
|
1586
1574
|
return this.add("overflow", "auto");
|
|
1587
1575
|
}
|
|
1588
1576
|
/** Sets `overflow: value`. */
|
|
@@ -1590,19 +1578,19 @@ class CssBuilder {
|
|
|
1590
1578
|
return this.add("overflow", value);
|
|
1591
1579
|
}
|
|
1592
1580
|
/** Sets `overflowY: "visible"`. */
|
|
1593
|
-
get
|
|
1581
|
+
get oyv() {
|
|
1594
1582
|
return this.add("overflowY", "visible");
|
|
1595
1583
|
}
|
|
1596
1584
|
/** Sets `overflowY: "hidden"`. */
|
|
1597
|
-
get
|
|
1585
|
+
get oyh() {
|
|
1598
1586
|
return this.add("overflowY", "hidden");
|
|
1599
1587
|
}
|
|
1600
1588
|
/** Sets `overflowY: "scroll"`. */
|
|
1601
|
-
get
|
|
1589
|
+
get oys() {
|
|
1602
1590
|
return this.add("overflowY", "scroll");
|
|
1603
1591
|
}
|
|
1604
1592
|
/** Sets `overflowY: "auto"`. */
|
|
1605
|
-
get
|
|
1593
|
+
get oya() {
|
|
1606
1594
|
return this.add("overflowY", "auto");
|
|
1607
1595
|
}
|
|
1608
1596
|
/** Sets `overflowY: value`. */
|
|
@@ -1610,19 +1598,19 @@ class CssBuilder {
|
|
|
1610
1598
|
return this.add("overflowY", value);
|
|
1611
1599
|
}
|
|
1612
1600
|
/** Sets `overflowX: "visible"`. */
|
|
1613
|
-
get
|
|
1601
|
+
get oxv() {
|
|
1614
1602
|
return this.add("overflowX", "visible");
|
|
1615
1603
|
}
|
|
1616
1604
|
/** Sets `overflowX: "hidden"`. */
|
|
1617
|
-
get
|
|
1605
|
+
get oxh() {
|
|
1618
1606
|
return this.add("overflowX", "hidden");
|
|
1619
1607
|
}
|
|
1620
1608
|
/** Sets `overflowX: "scroll"`. */
|
|
1621
|
-
get
|
|
1609
|
+
get oxs() {
|
|
1622
1610
|
return this.add("overflowX", "scroll");
|
|
1623
1611
|
}
|
|
1624
1612
|
/** Sets `overflowX: "auto"`. */
|
|
1625
|
-
get
|
|
1613
|
+
get oxa() {
|
|
1626
1614
|
return this.add("overflowX", "auto");
|
|
1627
1615
|
}
|
|
1628
1616
|
/** Sets `overflowX: value`. */
|
|
@@ -3178,19 +3166,19 @@ class CssBuilder {
|
|
|
3178
3166
|
}
|
|
3179
3167
|
// textAlign
|
|
3180
3168
|
/** Sets `textAlign: "left"`. */
|
|
3181
|
-
get
|
|
3169
|
+
get tal() {
|
|
3182
3170
|
return this.add("textAlign", "left");
|
|
3183
3171
|
}
|
|
3184
3172
|
/** Sets `textAlign: "center"`. */
|
|
3185
|
-
get
|
|
3173
|
+
get tac() {
|
|
3186
3174
|
return this.add("textAlign", "center");
|
|
3187
3175
|
}
|
|
3188
3176
|
/** Sets `textAlign: "right"`. */
|
|
3189
|
-
get
|
|
3177
|
+
get tar() {
|
|
3190
3178
|
return this.add("textAlign", "right");
|
|
3191
3179
|
}
|
|
3192
3180
|
/** Sets `textAlign: "justify"`. */
|
|
3193
|
-
get
|
|
3181
|
+
get taj() {
|
|
3194
3182
|
return this.add("textAlign", "justify");
|
|
3195
3183
|
}
|
|
3196
3184
|
/** Sets `textAlign: value`. */
|
|
@@ -3199,15 +3187,15 @@ class CssBuilder {
|
|
|
3199
3187
|
}
|
|
3200
3188
|
// textDecoration
|
|
3201
3189
|
/** Sets `textDecoration: "none"`. */
|
|
3202
|
-
get
|
|
3190
|
+
get tdn() {
|
|
3203
3191
|
return this.add("textDecoration", "none");
|
|
3204
3192
|
}
|
|
3205
3193
|
/** Sets `textDecoration: "line-through"`. */
|
|
3206
|
-
get
|
|
3194
|
+
get tdlt() {
|
|
3207
3195
|
return this.add("textDecoration", "line-through");
|
|
3208
3196
|
}
|
|
3209
3197
|
/** Sets `textDecoration: "underline"`. */
|
|
3210
|
-
get
|
|
3198
|
+
get tdu() {
|
|
3211
3199
|
return this.add("textDecoration", "underline");
|
|
3212
3200
|
}
|
|
3213
3201
|
/** Sets `textDecoration: value`. */
|
|
@@ -3427,19 +3415,19 @@ class CssBuilder {
|
|
|
3427
3415
|
}
|
|
3428
3416
|
// userSelect
|
|
3429
3417
|
/** Sets `userSelect: "none"`. */
|
|
3430
|
-
get
|
|
3418
|
+
get usn() {
|
|
3431
3419
|
return this.add("userSelect", "none");
|
|
3432
3420
|
}
|
|
3433
3421
|
/** Sets `userSelect: "text"`. */
|
|
3434
|
-
get
|
|
3422
|
+
get ust() {
|
|
3435
3423
|
return this.add("userSelect", "text");
|
|
3436
3424
|
}
|
|
3437
3425
|
/** Sets `userSelect: "all"`. */
|
|
3438
|
-
get
|
|
3426
|
+
get usAll() {
|
|
3439
3427
|
return this.add("userSelect", "all");
|
|
3440
3428
|
}
|
|
3441
3429
|
/** Sets `userSelect: "auto"`. */
|
|
3442
|
-
get
|
|
3430
|
+
get usAuto() {
|
|
3443
3431
|
return this.add("userSelect", "auto");
|
|
3444
3432
|
}
|
|
3445
3433
|
/** Sets `userSelect: value`. */
|
|
@@ -3448,19 +3436,19 @@ class CssBuilder {
|
|
|
3448
3436
|
}
|
|
3449
3437
|
// verticalAlign
|
|
3450
3438
|
/** Sets `verticalAlign: "baseline"`. */
|
|
3451
|
-
get
|
|
3439
|
+
get vaBaseline() {
|
|
3452
3440
|
return this.add("verticalAlign", "baseline");
|
|
3453
3441
|
}
|
|
3454
3442
|
/** Sets `verticalAlign: "middle"`. */
|
|
3455
|
-
get
|
|
3443
|
+
get vam() {
|
|
3456
3444
|
return this.add("verticalAlign", "middle");
|
|
3457
3445
|
}
|
|
3458
3446
|
/** Sets `verticalAlign: "top"`. */
|
|
3459
|
-
get
|
|
3447
|
+
get vat() {
|
|
3460
3448
|
return this.add("verticalAlign", "top");
|
|
3461
3449
|
}
|
|
3462
3450
|
/** Sets `verticalAlign: "bottom"`. */
|
|
3463
|
-
get
|
|
3451
|
+
get vaBottom() {
|
|
3464
3452
|
return this.add("verticalAlign", "bottom");
|
|
3465
3453
|
}
|
|
3466
3454
|
/** Sets `verticalAlign: value`. */
|
|
@@ -3469,11 +3457,11 @@ class CssBuilder {
|
|
|
3469
3457
|
}
|
|
3470
3458
|
// visibility
|
|
3471
3459
|
/** Sets `visibility: "visible"`. */
|
|
3472
|
-
get
|
|
3460
|
+
get vv() {
|
|
3473
3461
|
return this.add("visibility", "visible");
|
|
3474
3462
|
}
|
|
3475
3463
|
/** Sets `visibility: "hidden"`. */
|
|
3476
|
-
get
|
|
3464
|
+
get vh() {
|
|
3477
3465
|
return this.add("visibility", "hidden");
|
|
3478
3466
|
}
|
|
3479
3467
|
/** Sets `visibility: value`. */
|
|
@@ -3481,18 +3469,6 @@ class CssBuilder {
|
|
|
3481
3469
|
return this.add("visibility", value);
|
|
3482
3470
|
}
|
|
3483
3471
|
// whitespace
|
|
3484
|
-
/** Sets `whiteSpace: "nowrap"`. */
|
|
3485
|
-
get nowrap() {
|
|
3486
|
-
return this.add("whiteSpace", "nowrap");
|
|
3487
|
-
}
|
|
3488
|
-
/** Sets `whiteSpace: "pre"`. */
|
|
3489
|
-
get pre() {
|
|
3490
|
-
return this.add("whiteSpace", "pre");
|
|
3491
|
-
}
|
|
3492
|
-
/** Sets `whiteSpace: "normal"`. */
|
|
3493
|
-
get wsNormal() {
|
|
3494
|
-
return this.add("whiteSpace", "normal");
|
|
3495
|
-
}
|
|
3496
3472
|
/** Sets `whiteSpace: "pre"`. */
|
|
3497
3473
|
get wsp() {
|
|
3498
3474
|
return this.add("whiteSpace", "pre");
|
|
@@ -3680,19 +3656,19 @@ class CssBuilder {
|
|
|
3680
3656
|
}
|
|
3681
3657
|
// wordBreak
|
|
3682
3658
|
/** Sets `wordBreak: "normal"`. */
|
|
3683
|
-
get
|
|
3659
|
+
get wbn() {
|
|
3684
3660
|
return this.add("wordBreak", "normal");
|
|
3685
3661
|
}
|
|
3686
3662
|
/** Sets `wordBreak: "break-all"`. */
|
|
3687
|
-
get
|
|
3663
|
+
get wbba() {
|
|
3688
3664
|
return this.add("wordBreak", "break-all");
|
|
3689
3665
|
}
|
|
3690
3666
|
/** Sets `wordBreak: "keep-all"`. */
|
|
3691
|
-
get
|
|
3667
|
+
get wbka() {
|
|
3692
3668
|
return this.add("wordBreak", "keep-all");
|
|
3693
3669
|
}
|
|
3694
3670
|
/** Sets `wordBreak: "break-word"`. */
|
|
3695
|
-
get
|
|
3671
|
+
get wbbw() {
|
|
3696
3672
|
return this.add("wordBreak", "break-word");
|
|
3697
3673
|
}
|
|
3698
3674
|
/** Sets `wordBreak: value`. */
|
|
@@ -50,9 +50,9 @@ function Accordion(props) {
|
|
|
50
50
|
...xss,
|
|
51
51
|
}), [compact, disabled, isFocusVisible, titleOnClick, xss]);
|
|
52
52
|
return ((0, jsx_runtime_1.jsxs)("div", { ...tid.container, css: {
|
|
53
|
-
...Css_1.Css.
|
|
53
|
+
...Css_1.Css.bcGray300.if(topBorder).bt.if(bottomBorder).bb.$,
|
|
54
54
|
...(size ? Css_1.Css.wPx(accordionSizes[size]).$ : {}),
|
|
55
|
-
}, children: [titleOnClick ? ((0, jsx_runtime_1.jsxs)("div", { ...focusProps, "aria-controls": id, "aria-expanded": expanded, css: Css_1.Css.df.$, children: [(0, jsx_runtime_1.jsx)("button", { ...tid.title, disabled: disabled, css: { ...touchableStyle, ...Css_1.Css.fg1.$ }, onClick: titleOnClick, children: title }), (0, jsx_runtime_1.jsx)("button", { ...tid.toggle, disabled: disabled, css: { ...touchableStyle, ...Css_1.Css.px2.jcfe.if(compact).pxPx(10).$ }, onClick: toggle, children: (0, jsx_runtime_1.jsx)(RotatingChevronIcon, { expanded: expanded }) })] })) : ((0, jsx_runtime_1.jsxs)("button", { ...tid.title, ...focusProps, "aria-controls": id, "aria-expanded": expanded, disabled: disabled, css: { ...Css_1.Css.w100.$, ...touchableStyle }, onClick: toggle, children: [(0, jsx_runtime_1.jsx)("span", { css: Css_1.Css.fg1.
|
|
55
|
+
}, children: [titleOnClick ? ((0, jsx_runtime_1.jsxs)("div", { ...focusProps, "aria-controls": id, "aria-expanded": expanded, css: Css_1.Css.df.$, children: [(0, jsx_runtime_1.jsx)("button", { ...tid.title, disabled: disabled, css: { ...touchableStyle, ...Css_1.Css.fg1.$ }, onClick: titleOnClick, children: title }), (0, jsx_runtime_1.jsx)("button", { ...tid.toggle, disabled: disabled, css: { ...touchableStyle, ...Css_1.Css.px2.jcfe.if(compact).pxPx(10).$ }, onClick: toggle, children: (0, jsx_runtime_1.jsx)(RotatingChevronIcon, { expanded: expanded }) })] })) : ((0, jsx_runtime_1.jsxs)("button", { ...tid.title, ...focusProps, "aria-controls": id, "aria-expanded": expanded, disabled: disabled, css: { ...Css_1.Css.w100.$, ...touchableStyle }, onClick: toggle, children: [(0, jsx_runtime_1.jsx)("span", { css: Css_1.Css.fg1.tal.$, children: title }), (0, jsx_runtime_1.jsx)(RotatingChevronIcon, { expanded: expanded })] })), (0, jsx_runtime_1.jsx)("div", { ...tid.details, id: id, "aria-hidden": !expanded, css: Css_1.Css.oh.h(contentHeight).add("transition", "height 250ms ease-in-out").$, children: expanded && ((0, jsx_runtime_1.jsx)("div", { css: Css_1.Css.px2.pb2.pt1.if(omitPadding).p0.$, ref: contentRef, ...tid.content, children: children })) })] }));
|
|
56
56
|
}
|
|
57
57
|
exports.Accordion = Accordion;
|
|
58
58
|
function RotatingChevronIcon(props) {
|
|
@@ -12,7 +12,7 @@ function Avatar({ src, name, size = "md", showName = false, disableTooltip = fal
|
|
|
12
12
|
const px = sizeToPixel[size];
|
|
13
13
|
const [showFallback, setShowFallback] = (0, react_1.useState)(src === undefined);
|
|
14
14
|
// Define min-width as well as width to prevent the image from shrinking when displayed within a flex-child that allows shrinking.
|
|
15
|
-
const styles = Css_1.Css.br100.wPx(px).hPx(px).mwPx(px).
|
|
15
|
+
const styles = Css_1.Css.br100.wPx(px).hPx(px).mwPx(px).oh.$;
|
|
16
16
|
const img = showFallback ? ((0, jsx_runtime_1.jsx)("div", { css: { ...styles, ...Css_1.Css[sizeToFallbackTypeScale[size]].bgGray400.gray100.df.aic.jcc.$ }, ...tid, children: name ? nameToInitials(name) : (0, jsx_runtime_1.jsx)(Icon_1.Icon, { icon: "userCircle", inc: sizeToIconInc[size] }) })) : ((0, jsx_runtime_1.jsx)("img", { src: src, alt: name, css: { ...styles, ...Css_1.Css.objectCover.$ }, onError: () => setShowFallback(true), loading: "lazy", ...tid }));
|
|
17
17
|
return showName && name ? ((0, jsx_runtime_1.jsxs)("div", { css: Css_1.Css.dif.aic.gap1.if(size === "lg" || size === "xl").fdc.$, children: [img, (0, jsx_runtime_1.jsx)("span", { css: Css_1.Css[sizeToTypeScale[size]].$, children: name })] })) : ((0, Tooltip_1.maybeTooltip)({ title: disableTooltip ? undefined : name, children: img, placement: "top" }));
|
|
18
18
|
}
|
|
@@ -13,7 +13,7 @@ function AvatarGroup(props) {
|
|
|
13
13
|
const menuAvatars = avatars.slice(maxVisibleAvatars);
|
|
14
14
|
return ((0, jsx_runtime_1.jsxs)("div", { css: Css_1.Css.df.aic.gap1.xsSb.$, children: [(0, jsx_runtime_1.jsx)("div", { css: Css_1.Css.df.aic.$, children: visibleAvatars.map((avatar, idx) => {
|
|
15
15
|
var _a;
|
|
16
|
-
return ((0, jsx_runtime_1.jsx)("div", { css: Css_1.Css.br100.ba.
|
|
16
|
+
return ((0, jsx_runtime_1.jsx)("div", { css: Css_1.Css.br100.ba.bcWhite
|
|
17
17
|
.add("borderWidth", "3px")
|
|
18
18
|
.if(idx > 0)
|
|
19
19
|
.mlPx(-1 * sizeToOverlap[size]).$, children: (0, jsx_runtime_1.jsx)(Avatar_1.Avatar, { src: avatar.src, name: avatar.name, size: size }) }, (_a = avatar.src) !== null && _a !== void 0 ? _a : idx));
|