@pathscale/ui 3.0.0 → 3.2.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/README.md +13 -2
- package/dist/components/accordion/Accordion.css +24 -1
- package/dist/components/alert/Alert.css +11 -1
- package/dist/components/auth-field-group/AuthFieldGroup.css +11 -3
- package/dist/components/button/Button.css +37 -10
- package/dist/components/calendar/Calendar.generated.d.ts +19 -2
- package/dist/components/calendar/Calendar.generated.js +30 -23
- package/dist/components/calendar/index.d.ts +1 -1
- package/dist/components/card/Card.generated.d.ts +38 -2
- package/dist/components/card/Card.generated.js +99 -45
- package/dist/components/card/Card.interactions.d.ts +70 -0
- package/dist/components/card/Card.interactions.js +19 -0
- package/dist/components/card/index.d.ts +1 -1
- package/dist/components/checkbox/Checkbox.generated.d.ts +23 -2
- package/dist/components/checkbox/Checkbox.generated.js +14 -6
- package/dist/components/collapsible/Collapsible.css +17 -1
- package/dist/components/color-wheel-flower/ColorWheelFlower.generated.d.ts +8 -0
- package/dist/components/color-wheel-flower/ColorWheelFlower.generated.js +14 -1
- package/dist/components/color-wheel-flower/colorWheelFlowerContext.d.ts +9 -2
- package/dist/components/color-wheel-flower/colorWheelFlowerContext.js +2 -4
- package/dist/components/connection-settings/ConnectionSettings.css +76 -0
- package/dist/components/connection-settings/ConnectionSettings.generated.d.ts +45 -0
- package/dist/components/connection-settings/ConnectionSettings.generated.js +300 -0
- package/dist/components/connection-settings/ConnectionSettings.recipe.d.ts +54 -0
- package/dist/components/connection-settings/ConnectionSettings.recipe.js +111 -0
- package/dist/components/connection-settings/index.d.ts +2 -0
- package/dist/components/connection-settings/index.js +1 -0
- package/dist/components/date-picker/DatePicker.generated.d.ts +3 -1
- package/dist/components/date-picker/DatePicker.generated.js +8 -5
- package/dist/components/date-range-picker/DateRangePicker.generated.d.ts +3 -1
- package/dist/components/date-range-picker/DateRangePicker.generated.js +9 -6
- package/dist/components/dialog/Dialog.generated.js +17 -79
- package/dist/components/drawer/Drawer.a11y.d.ts +1 -3
- package/dist/components/drawer/Drawer.a11y.js +2 -30
- package/dist/components/drawer/Drawer.generated.d.ts +24 -0
- package/dist/components/drawer/Drawer.generated.js +65 -58
- package/dist/components/grid/Grid.generated.js +3 -3
- package/dist/components/icon/Icon.generated.d.ts +15 -0
- package/dist/components/icon/Icon.generated.js +11 -2
- package/dist/components/immersive-landing/ImmersiveLanding.css +1 -1
- package/dist/components/immersive-landing/components/CookieConsent.interactions.d.ts +24 -0
- package/dist/components/immersive-landing/components/CookieConsent.interactions.js +2 -0
- package/dist/components/immersive-landing/components/CookieConsent.js +52 -47
- package/dist/components/immersive-landing/components/FirefoxPWABanner.js +10 -10
- package/dist/components/immersive-landing/types.d.ts +15 -0
- package/dist/components/input/Input.css +5 -3
- package/dist/components/input/Input.generated.js +6 -3
- package/dist/components/language-switcher/LanguageSwitcher.generated.js +1 -1
- package/dist/components/live-chat/LiveChatPanel.generated.js +2 -6
- package/dist/components/live-chat/LiveChatPanel.interactions.d.ts +21 -0
- package/dist/components/live-chat/LiveChatPanel.interactions.js +10 -0
- package/dist/components/password-field/PasswordField.generated.d.ts +9 -1
- package/dist/components/password-field/PasswordField.generated.js +2 -2
- package/dist/components/password-field/PasswordField.interactions.d.ts +2 -2
- package/dist/components/password-field/PasswordField.interactions.js +2 -2
- package/dist/components/popover/Popover.a11y.d.ts +47 -0
- package/dist/components/popover/Popover.a11y.js +19 -0
- package/dist/components/popover/Popover.generated.d.ts +26 -0
- package/dist/components/popover/Popover.generated.js +119 -46
- package/dist/components/radio/Radio.generated.d.ts +26 -2
- package/dist/components/radio/Radio.generated.js +9 -5
- package/dist/components/range-calendar/RangeCalendar.generated.d.ts +3 -1
- package/dist/components/range-calendar/RangeCalendar.generated.js +4 -1
- package/dist/components/select/Select.generated.js +5 -0
- package/dist/components/slider/Slider.generated.d.ts +14 -1
- package/dist/components/slider/Slider.generated.js +3 -2
- package/dist/components/switch/Switch.css +0 -3
- package/dist/components/switch/Switch.generated.d.ts +23 -2
- package/dist/components/switch/Switch.generated.js +21 -44
- package/dist/components/switch/Switch.recipe.d.ts +61 -38
- package/dist/components/switch/Switch.recipe.js +88 -68
- package/dist/components/table/MobileListView.generated.js +1 -1
- package/dist/components/text/Text.generated.d.ts +26 -1
- package/dist/components/text/Text.generated.js +14 -13
- package/dist/components/text/Text.recipe.d.ts +17 -5
- package/dist/components/text/Text.recipe.js +7 -13
- package/dist/components/text/index.d.ts +1 -1
- package/dist/components/theme-color-picker/ThemeColorPicker.generated.js +1 -1
- package/dist/hooks/connection/createConnectionSettings.d.ts +128 -0
- package/dist/hooks/connection/createConnectionSettings.js +211 -0
- package/dist/hooks/connection/index.d.ts +2 -0
- package/dist/hooks/connection/index.js +1 -0
- package/dist/hooks/date/date.names.d.ts +107 -0
- package/dist/hooks/date/date.names.js +74 -0
- package/dist/hooks/date/date.utils.d.ts +11 -1
- package/dist/hooks/date/date.utils.js +3 -6
- package/dist/hooks/date/index.d.ts +1 -0
- package/dist/hooks/date/index.js +1 -0
- package/dist/hooks/date/useCalendarState.d.ts +12 -5
- package/dist/hooks/date/useCalendarState.js +7 -19
- package/dist/hooks/form/createForm.d.ts +4 -4
- package/dist/hooks/form/createForm.js +7 -9
- package/dist/index.d.ts +8 -4
- package/dist/index.js +3 -1
- package/dist/layouts.manifest.json +4 -1
- package/dist/lib/focus.d.ts +31 -0
- package/dist/lib/focus.js +39 -0
- package/dist/lib/overlay.d.ts +94 -0
- package/dist/lib/overlay.js +72 -0
- package/dist/purge-manifest.json +14427 -15269
- package/dist/responsive-classes.txt +450 -0
- package/dist/styles/base/index.css +42 -0
- package/package.json +11 -6
|
@@ -0,0 +1,450 @@
|
|
|
1
|
+
auto-cols-fr
|
|
2
|
+
auto-cols-max
|
|
3
|
+
auto-cols-min
|
|
4
|
+
auto-rows-fr
|
|
5
|
+
auto-rows-max
|
|
6
|
+
auto-rows-min
|
|
7
|
+
basis-0
|
|
8
|
+
basis-16
|
|
9
|
+
basis-24
|
|
10
|
+
basis-32
|
|
11
|
+
basis-8
|
|
12
|
+
flex-col
|
|
13
|
+
flex-col-reverse
|
|
14
|
+
flex-grow
|
|
15
|
+
flex-grow-0
|
|
16
|
+
flex-nowrap
|
|
17
|
+
flex-row
|
|
18
|
+
flex-row-reverse
|
|
19
|
+
flex-shrink
|
|
20
|
+
flex-shrink-0
|
|
21
|
+
flex-wrap
|
|
22
|
+
flex-wrap-reverse
|
|
23
|
+
gap-0
|
|
24
|
+
gap-2
|
|
25
|
+
gap-4
|
|
26
|
+
gap-6
|
|
27
|
+
gap-8
|
|
28
|
+
gap-x-0
|
|
29
|
+
gap-x-2
|
|
30
|
+
gap-x-4
|
|
31
|
+
gap-x-6
|
|
32
|
+
gap-x-8
|
|
33
|
+
gap-y-0
|
|
34
|
+
gap-y-2
|
|
35
|
+
gap-y-4
|
|
36
|
+
gap-y-6
|
|
37
|
+
gap-y-8
|
|
38
|
+
grid-cols-1
|
|
39
|
+
grid-cols-10
|
|
40
|
+
grid-cols-11
|
|
41
|
+
grid-cols-12
|
|
42
|
+
grid-cols-2
|
|
43
|
+
grid-cols-3
|
|
44
|
+
grid-cols-4
|
|
45
|
+
grid-cols-5
|
|
46
|
+
grid-cols-6
|
|
47
|
+
grid-cols-7
|
|
48
|
+
grid-cols-8
|
|
49
|
+
grid-cols-9
|
|
50
|
+
grid-flow-col
|
|
51
|
+
grid-flow-col-dense
|
|
52
|
+
grid-flow-row
|
|
53
|
+
grid-flow-row-dense
|
|
54
|
+
grid-rows-1
|
|
55
|
+
grid-rows-10
|
|
56
|
+
grid-rows-11
|
|
57
|
+
grid-rows-12
|
|
58
|
+
grid-rows-2
|
|
59
|
+
grid-rows-3
|
|
60
|
+
grid-rows-4
|
|
61
|
+
grid-rows-5
|
|
62
|
+
grid-rows-6
|
|
63
|
+
grid-rows-7
|
|
64
|
+
grid-rows-8
|
|
65
|
+
grid-rows-9
|
|
66
|
+
h-full
|
|
67
|
+
items-baseline
|
|
68
|
+
items-center
|
|
69
|
+
items-end
|
|
70
|
+
items-start
|
|
71
|
+
items-stretch
|
|
72
|
+
justify-around
|
|
73
|
+
justify-between
|
|
74
|
+
justify-center
|
|
75
|
+
justify-end
|
|
76
|
+
justify-evenly
|
|
77
|
+
justify-start
|
|
78
|
+
lg:auto-cols-fr
|
|
79
|
+
lg:auto-cols-max
|
|
80
|
+
lg:auto-cols-min
|
|
81
|
+
lg:auto-rows-fr
|
|
82
|
+
lg:auto-rows-max
|
|
83
|
+
lg:auto-rows-min
|
|
84
|
+
lg:basis-0
|
|
85
|
+
lg:basis-16
|
|
86
|
+
lg:basis-24
|
|
87
|
+
lg:basis-32
|
|
88
|
+
lg:basis-8
|
|
89
|
+
lg:flex-col
|
|
90
|
+
lg:flex-col-reverse
|
|
91
|
+
lg:flex-grow
|
|
92
|
+
lg:flex-grow-0
|
|
93
|
+
lg:flex-nowrap
|
|
94
|
+
lg:flex-row
|
|
95
|
+
lg:flex-row-reverse
|
|
96
|
+
lg:flex-shrink
|
|
97
|
+
lg:flex-shrink-0
|
|
98
|
+
lg:flex-wrap
|
|
99
|
+
lg:flex-wrap-reverse
|
|
100
|
+
lg:gap-0
|
|
101
|
+
lg:gap-2
|
|
102
|
+
lg:gap-4
|
|
103
|
+
lg:gap-6
|
|
104
|
+
lg:gap-8
|
|
105
|
+
lg:gap-x-0
|
|
106
|
+
lg:gap-x-2
|
|
107
|
+
lg:gap-x-4
|
|
108
|
+
lg:gap-x-6
|
|
109
|
+
lg:gap-x-8
|
|
110
|
+
lg:gap-y-0
|
|
111
|
+
lg:gap-y-2
|
|
112
|
+
lg:gap-y-4
|
|
113
|
+
lg:gap-y-6
|
|
114
|
+
lg:gap-y-8
|
|
115
|
+
lg:grid-cols-1
|
|
116
|
+
lg:grid-cols-10
|
|
117
|
+
lg:grid-cols-11
|
|
118
|
+
lg:grid-cols-12
|
|
119
|
+
lg:grid-cols-2
|
|
120
|
+
lg:grid-cols-3
|
|
121
|
+
lg:grid-cols-4
|
|
122
|
+
lg:grid-cols-5
|
|
123
|
+
lg:grid-cols-6
|
|
124
|
+
lg:grid-cols-7
|
|
125
|
+
lg:grid-cols-8
|
|
126
|
+
lg:grid-cols-9
|
|
127
|
+
lg:grid-flow-col
|
|
128
|
+
lg:grid-flow-col-dense
|
|
129
|
+
lg:grid-flow-row
|
|
130
|
+
lg:grid-flow-row-dense
|
|
131
|
+
lg:grid-rows-1
|
|
132
|
+
lg:grid-rows-10
|
|
133
|
+
lg:grid-rows-11
|
|
134
|
+
lg:grid-rows-12
|
|
135
|
+
lg:grid-rows-2
|
|
136
|
+
lg:grid-rows-3
|
|
137
|
+
lg:grid-rows-4
|
|
138
|
+
lg:grid-rows-5
|
|
139
|
+
lg:grid-rows-6
|
|
140
|
+
lg:grid-rows-7
|
|
141
|
+
lg:grid-rows-8
|
|
142
|
+
lg:grid-rows-9
|
|
143
|
+
lg:h-full
|
|
144
|
+
lg:items-baseline
|
|
145
|
+
lg:items-center
|
|
146
|
+
lg:items-end
|
|
147
|
+
lg:items-start
|
|
148
|
+
lg:items-stretch
|
|
149
|
+
lg:justify-around
|
|
150
|
+
lg:justify-between
|
|
151
|
+
lg:justify-center
|
|
152
|
+
lg:justify-end
|
|
153
|
+
lg:justify-evenly
|
|
154
|
+
lg:justify-start
|
|
155
|
+
lg:min-h-0
|
|
156
|
+
lg:min-w-0
|
|
157
|
+
lg:px-0
|
|
158
|
+
lg:px-2
|
|
159
|
+
lg:px-4
|
|
160
|
+
lg:px-6
|
|
161
|
+
lg:px-8
|
|
162
|
+
lg:py-0
|
|
163
|
+
lg:py-2
|
|
164
|
+
lg:py-4
|
|
165
|
+
lg:py-6
|
|
166
|
+
lg:py-8
|
|
167
|
+
lg:w-full
|
|
168
|
+
md:auto-cols-fr
|
|
169
|
+
md:auto-cols-max
|
|
170
|
+
md:auto-cols-min
|
|
171
|
+
md:auto-rows-fr
|
|
172
|
+
md:auto-rows-max
|
|
173
|
+
md:auto-rows-min
|
|
174
|
+
md:basis-0
|
|
175
|
+
md:basis-16
|
|
176
|
+
md:basis-24
|
|
177
|
+
md:basis-32
|
|
178
|
+
md:basis-8
|
|
179
|
+
md:flex-col
|
|
180
|
+
md:flex-col-reverse
|
|
181
|
+
md:flex-grow
|
|
182
|
+
md:flex-grow-0
|
|
183
|
+
md:flex-nowrap
|
|
184
|
+
md:flex-row
|
|
185
|
+
md:flex-row-reverse
|
|
186
|
+
md:flex-shrink
|
|
187
|
+
md:flex-shrink-0
|
|
188
|
+
md:flex-wrap
|
|
189
|
+
md:flex-wrap-reverse
|
|
190
|
+
md:gap-0
|
|
191
|
+
md:gap-2
|
|
192
|
+
md:gap-4
|
|
193
|
+
md:gap-6
|
|
194
|
+
md:gap-8
|
|
195
|
+
md:gap-x-0
|
|
196
|
+
md:gap-x-2
|
|
197
|
+
md:gap-x-4
|
|
198
|
+
md:gap-x-6
|
|
199
|
+
md:gap-x-8
|
|
200
|
+
md:gap-y-0
|
|
201
|
+
md:gap-y-2
|
|
202
|
+
md:gap-y-4
|
|
203
|
+
md:gap-y-6
|
|
204
|
+
md:gap-y-8
|
|
205
|
+
md:grid-cols-1
|
|
206
|
+
md:grid-cols-10
|
|
207
|
+
md:grid-cols-11
|
|
208
|
+
md:grid-cols-12
|
|
209
|
+
md:grid-cols-2
|
|
210
|
+
md:grid-cols-3
|
|
211
|
+
md:grid-cols-4
|
|
212
|
+
md:grid-cols-5
|
|
213
|
+
md:grid-cols-6
|
|
214
|
+
md:grid-cols-7
|
|
215
|
+
md:grid-cols-8
|
|
216
|
+
md:grid-cols-9
|
|
217
|
+
md:grid-flow-col
|
|
218
|
+
md:grid-flow-col-dense
|
|
219
|
+
md:grid-flow-row
|
|
220
|
+
md:grid-flow-row-dense
|
|
221
|
+
md:grid-rows-1
|
|
222
|
+
md:grid-rows-10
|
|
223
|
+
md:grid-rows-11
|
|
224
|
+
md:grid-rows-12
|
|
225
|
+
md:grid-rows-2
|
|
226
|
+
md:grid-rows-3
|
|
227
|
+
md:grid-rows-4
|
|
228
|
+
md:grid-rows-5
|
|
229
|
+
md:grid-rows-6
|
|
230
|
+
md:grid-rows-7
|
|
231
|
+
md:grid-rows-8
|
|
232
|
+
md:grid-rows-9
|
|
233
|
+
md:h-full
|
|
234
|
+
md:items-baseline
|
|
235
|
+
md:items-center
|
|
236
|
+
md:items-end
|
|
237
|
+
md:items-start
|
|
238
|
+
md:items-stretch
|
|
239
|
+
md:justify-around
|
|
240
|
+
md:justify-between
|
|
241
|
+
md:justify-center
|
|
242
|
+
md:justify-end
|
|
243
|
+
md:justify-evenly
|
|
244
|
+
md:justify-start
|
|
245
|
+
md:min-h-0
|
|
246
|
+
md:min-w-0
|
|
247
|
+
md:px-0
|
|
248
|
+
md:px-2
|
|
249
|
+
md:px-4
|
|
250
|
+
md:px-6
|
|
251
|
+
md:px-8
|
|
252
|
+
md:py-0
|
|
253
|
+
md:py-2
|
|
254
|
+
md:py-4
|
|
255
|
+
md:py-6
|
|
256
|
+
md:py-8
|
|
257
|
+
md:w-full
|
|
258
|
+
min-h-0
|
|
259
|
+
min-w-0
|
|
260
|
+
px-0
|
|
261
|
+
px-2
|
|
262
|
+
px-4
|
|
263
|
+
px-6
|
|
264
|
+
px-8
|
|
265
|
+
py-0
|
|
266
|
+
py-2
|
|
267
|
+
py-4
|
|
268
|
+
py-6
|
|
269
|
+
py-8
|
|
270
|
+
sm:auto-cols-fr
|
|
271
|
+
sm:auto-cols-max
|
|
272
|
+
sm:auto-cols-min
|
|
273
|
+
sm:auto-rows-fr
|
|
274
|
+
sm:auto-rows-max
|
|
275
|
+
sm:auto-rows-min
|
|
276
|
+
sm:basis-0
|
|
277
|
+
sm:basis-16
|
|
278
|
+
sm:basis-24
|
|
279
|
+
sm:basis-32
|
|
280
|
+
sm:basis-8
|
|
281
|
+
sm:flex-col
|
|
282
|
+
sm:flex-col-reverse
|
|
283
|
+
sm:flex-grow
|
|
284
|
+
sm:flex-grow-0
|
|
285
|
+
sm:flex-nowrap
|
|
286
|
+
sm:flex-row
|
|
287
|
+
sm:flex-row-reverse
|
|
288
|
+
sm:flex-shrink
|
|
289
|
+
sm:flex-shrink-0
|
|
290
|
+
sm:flex-wrap
|
|
291
|
+
sm:flex-wrap-reverse
|
|
292
|
+
sm:gap-0
|
|
293
|
+
sm:gap-2
|
|
294
|
+
sm:gap-4
|
|
295
|
+
sm:gap-6
|
|
296
|
+
sm:gap-8
|
|
297
|
+
sm:gap-x-0
|
|
298
|
+
sm:gap-x-2
|
|
299
|
+
sm:gap-x-4
|
|
300
|
+
sm:gap-x-6
|
|
301
|
+
sm:gap-x-8
|
|
302
|
+
sm:gap-y-0
|
|
303
|
+
sm:gap-y-2
|
|
304
|
+
sm:gap-y-4
|
|
305
|
+
sm:gap-y-6
|
|
306
|
+
sm:gap-y-8
|
|
307
|
+
sm:grid-cols-1
|
|
308
|
+
sm:grid-cols-10
|
|
309
|
+
sm:grid-cols-11
|
|
310
|
+
sm:grid-cols-12
|
|
311
|
+
sm:grid-cols-2
|
|
312
|
+
sm:grid-cols-3
|
|
313
|
+
sm:grid-cols-4
|
|
314
|
+
sm:grid-cols-5
|
|
315
|
+
sm:grid-cols-6
|
|
316
|
+
sm:grid-cols-7
|
|
317
|
+
sm:grid-cols-8
|
|
318
|
+
sm:grid-cols-9
|
|
319
|
+
sm:grid-flow-col
|
|
320
|
+
sm:grid-flow-col-dense
|
|
321
|
+
sm:grid-flow-row
|
|
322
|
+
sm:grid-flow-row-dense
|
|
323
|
+
sm:grid-rows-1
|
|
324
|
+
sm:grid-rows-10
|
|
325
|
+
sm:grid-rows-11
|
|
326
|
+
sm:grid-rows-12
|
|
327
|
+
sm:grid-rows-2
|
|
328
|
+
sm:grid-rows-3
|
|
329
|
+
sm:grid-rows-4
|
|
330
|
+
sm:grid-rows-5
|
|
331
|
+
sm:grid-rows-6
|
|
332
|
+
sm:grid-rows-7
|
|
333
|
+
sm:grid-rows-8
|
|
334
|
+
sm:grid-rows-9
|
|
335
|
+
sm:h-full
|
|
336
|
+
sm:items-baseline
|
|
337
|
+
sm:items-center
|
|
338
|
+
sm:items-end
|
|
339
|
+
sm:items-start
|
|
340
|
+
sm:items-stretch
|
|
341
|
+
sm:justify-around
|
|
342
|
+
sm:justify-between
|
|
343
|
+
sm:justify-center
|
|
344
|
+
sm:justify-end
|
|
345
|
+
sm:justify-evenly
|
|
346
|
+
sm:justify-start
|
|
347
|
+
sm:min-h-0
|
|
348
|
+
sm:min-w-0
|
|
349
|
+
sm:px-0
|
|
350
|
+
sm:px-2
|
|
351
|
+
sm:px-4
|
|
352
|
+
sm:px-6
|
|
353
|
+
sm:px-8
|
|
354
|
+
sm:py-0
|
|
355
|
+
sm:py-2
|
|
356
|
+
sm:py-4
|
|
357
|
+
sm:py-6
|
|
358
|
+
sm:py-8
|
|
359
|
+
sm:w-full
|
|
360
|
+
w-full
|
|
361
|
+
xl:auto-cols-fr
|
|
362
|
+
xl:auto-cols-max
|
|
363
|
+
xl:auto-cols-min
|
|
364
|
+
xl:auto-rows-fr
|
|
365
|
+
xl:auto-rows-max
|
|
366
|
+
xl:auto-rows-min
|
|
367
|
+
xl:basis-0
|
|
368
|
+
xl:basis-16
|
|
369
|
+
xl:basis-24
|
|
370
|
+
xl:basis-32
|
|
371
|
+
xl:basis-8
|
|
372
|
+
xl:flex-col
|
|
373
|
+
xl:flex-col-reverse
|
|
374
|
+
xl:flex-grow
|
|
375
|
+
xl:flex-grow-0
|
|
376
|
+
xl:flex-nowrap
|
|
377
|
+
xl:flex-row
|
|
378
|
+
xl:flex-row-reverse
|
|
379
|
+
xl:flex-shrink
|
|
380
|
+
xl:flex-shrink-0
|
|
381
|
+
xl:flex-wrap
|
|
382
|
+
xl:flex-wrap-reverse
|
|
383
|
+
xl:gap-0
|
|
384
|
+
xl:gap-2
|
|
385
|
+
xl:gap-4
|
|
386
|
+
xl:gap-6
|
|
387
|
+
xl:gap-8
|
|
388
|
+
xl:gap-x-0
|
|
389
|
+
xl:gap-x-2
|
|
390
|
+
xl:gap-x-4
|
|
391
|
+
xl:gap-x-6
|
|
392
|
+
xl:gap-x-8
|
|
393
|
+
xl:gap-y-0
|
|
394
|
+
xl:gap-y-2
|
|
395
|
+
xl:gap-y-4
|
|
396
|
+
xl:gap-y-6
|
|
397
|
+
xl:gap-y-8
|
|
398
|
+
xl:grid-cols-1
|
|
399
|
+
xl:grid-cols-10
|
|
400
|
+
xl:grid-cols-11
|
|
401
|
+
xl:grid-cols-12
|
|
402
|
+
xl:grid-cols-2
|
|
403
|
+
xl:grid-cols-3
|
|
404
|
+
xl:grid-cols-4
|
|
405
|
+
xl:grid-cols-5
|
|
406
|
+
xl:grid-cols-6
|
|
407
|
+
xl:grid-cols-7
|
|
408
|
+
xl:grid-cols-8
|
|
409
|
+
xl:grid-cols-9
|
|
410
|
+
xl:grid-flow-col
|
|
411
|
+
xl:grid-flow-col-dense
|
|
412
|
+
xl:grid-flow-row
|
|
413
|
+
xl:grid-flow-row-dense
|
|
414
|
+
xl:grid-rows-1
|
|
415
|
+
xl:grid-rows-10
|
|
416
|
+
xl:grid-rows-11
|
|
417
|
+
xl:grid-rows-12
|
|
418
|
+
xl:grid-rows-2
|
|
419
|
+
xl:grid-rows-3
|
|
420
|
+
xl:grid-rows-4
|
|
421
|
+
xl:grid-rows-5
|
|
422
|
+
xl:grid-rows-6
|
|
423
|
+
xl:grid-rows-7
|
|
424
|
+
xl:grid-rows-8
|
|
425
|
+
xl:grid-rows-9
|
|
426
|
+
xl:h-full
|
|
427
|
+
xl:items-baseline
|
|
428
|
+
xl:items-center
|
|
429
|
+
xl:items-end
|
|
430
|
+
xl:items-start
|
|
431
|
+
xl:items-stretch
|
|
432
|
+
xl:justify-around
|
|
433
|
+
xl:justify-between
|
|
434
|
+
xl:justify-center
|
|
435
|
+
xl:justify-end
|
|
436
|
+
xl:justify-evenly
|
|
437
|
+
xl:justify-start
|
|
438
|
+
xl:min-h-0
|
|
439
|
+
xl:min-w-0
|
|
440
|
+
xl:px-0
|
|
441
|
+
xl:px-2
|
|
442
|
+
xl:px-4
|
|
443
|
+
xl:px-6
|
|
444
|
+
xl:px-8
|
|
445
|
+
xl:py-0
|
|
446
|
+
xl:py-2
|
|
447
|
+
xl:py-4
|
|
448
|
+
xl:py-6
|
|
449
|
+
xl:py-8
|
|
450
|
+
xl:w-full
|
|
@@ -1,4 +1,46 @@
|
|
|
1
1
|
@layer base {
|
|
2
|
+
/*
|
|
3
|
+
* One height scale for controls that sit next to each other.
|
|
4
|
+
*
|
|
5
|
+
* `Button` and `Input` both took `size="sm"` and disagreed about what that
|
|
6
|
+
* measured: 2.25rem against 2rem. `md` and `lg` already matched, so a
|
|
7
|
+
* button-and-input row was aligned at two sizes out of three and off by 4px
|
|
8
|
+
* at the third -- the kind of thing an application fixes with a corrective
|
|
9
|
+
* class, once per row, forever.
|
|
10
|
+
*
|
|
11
|
+
* In the base layer rather than a theme, because a control's height is not a
|
|
12
|
+
* theme decision: `light.css` and `dark.css` carry colour, radius and depth,
|
|
13
|
+
* and nothing here changes between them.
|
|
14
|
+
*
|
|
15
|
+
* Not every control has to be the same height. Two controls a person reads as
|
|
16
|
+
* one row do.
|
|
17
|
+
*/
|
|
18
|
+
/*
|
|
19
|
+
* One spacing scale for the components that name their gap.
|
|
20
|
+
*
|
|
21
|
+
* `Flex` spells these as Tailwind utilities -- `gap-2`, `gap-4`, `gap-6` --
|
|
22
|
+
* and `AuthFieldGroup` wrote its own rem values, which agreed at `md` and
|
|
23
|
+
* `lg` and disagreed at `sm`: 0.75rem against 0.5rem. Two components naming
|
|
24
|
+
* the same size and meaning two spacings is the same defect the control
|
|
25
|
+
* heights below were added for.
|
|
26
|
+
*
|
|
27
|
+
* The values are Tailwind's, because Flex's utilities are not going to stop
|
|
28
|
+
* being Tailwind's. Anything that cannot use a utility reads these instead of
|
|
29
|
+
* guessing.
|
|
30
|
+
*/
|
|
31
|
+
:root {
|
|
32
|
+
--gap-sm: 0.5rem;
|
|
33
|
+
--gap-md: 1rem;
|
|
34
|
+
--gap-lg: 1.5rem;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
:root {
|
|
38
|
+
--control-h-xs: 1.75rem;
|
|
39
|
+
--control-h-sm: 2.25rem;
|
|
40
|
+
--control-h-md: 2.5rem;
|
|
41
|
+
--control-h-lg: 2.75rem;
|
|
42
|
+
}
|
|
43
|
+
|
|
2
44
|
html {
|
|
3
45
|
scrollbar-color: var(--color-base-300) transparent;
|
|
4
46
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pathscale/ui",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"author": "pathscale",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -43,6 +43,10 @@
|
|
|
43
43
|
"types": "./dist/lab.d.ts",
|
|
44
44
|
"import": "./dist/lab.js"
|
|
45
45
|
},
|
|
46
|
+
"./passwordRules": {
|
|
47
|
+
"types": "./dist/passwordRules.d.ts",
|
|
48
|
+
"import": "./dist/passwordRules.js"
|
|
49
|
+
},
|
|
46
50
|
"./layouts": "./dist/layouts.manifest.json",
|
|
47
51
|
"./components/*": {
|
|
48
52
|
"types": "./dist/components/*/index.d.ts",
|
|
@@ -75,7 +79,7 @@
|
|
|
75
79
|
"@rsbuild/plugin-solid": "^1.2.1",
|
|
76
80
|
"@rslib/core": "^0.22.0",
|
|
77
81
|
"@solidjs/h": "^2.0.0-rc.0",
|
|
78
|
-
"@solidjs/web": "
|
|
82
|
+
"@solidjs/web": "2.0.0-rc.4",
|
|
79
83
|
"@standard-schema/spec": "^1.1.0",
|
|
80
84
|
"@tailwindcss/postcss": "^4.3.3",
|
|
81
85
|
"@types/bun": "^1.3.14",
|
|
@@ -87,14 +91,15 @@
|
|
|
87
91
|
"postcss-cli": "^11.0.1",
|
|
88
92
|
"postcss-selector-parser": "^7.1.1",
|
|
89
93
|
"rsbuild-plugin-solid-layouts": "^0.2.1",
|
|
90
|
-
"solid-js": "
|
|
91
|
-
"solid-layouts": "^0.2.
|
|
92
|
-
"solid-layouts-oxc": "^0.2.
|
|
94
|
+
"solid-js": "2.0.0-rc.4",
|
|
95
|
+
"solid-layouts": "^0.2.4",
|
|
96
|
+
"solid-layouts-oxc": "^0.2.3",
|
|
93
97
|
"svgo": "^3.3.3",
|
|
94
98
|
"tailwindcss": "^4.3.3",
|
|
95
99
|
"typescript": "^6.0.3"
|
|
96
100
|
},
|
|
97
101
|
"overrides": {
|
|
102
|
+
"@solidjs/signals": "2.0.0-rc.4",
|
|
98
103
|
"babel-preset-solid": "^2.0.0-rc.0"
|
|
99
104
|
},
|
|
100
105
|
"dependencies": {
|
|
@@ -106,7 +111,7 @@
|
|
|
106
111
|
"@solidjs/web": ">=2.0.0-rc.0",
|
|
107
112
|
"popmotion": "^11.0.5",
|
|
108
113
|
"solid-js": ">=2.0.0-rc.0",
|
|
109
|
-
"solid-layouts": "^0.2.
|
|
114
|
+
"solid-layouts": "^0.2.4"
|
|
110
115
|
},
|
|
111
116
|
"peerDependenciesMeta": {
|
|
112
117
|
"@standard-schema/spec": {
|