uswds-extended 3.14.0 → 3.14.1

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.
Files changed (56) hide show
  1. package/gulpfile.js +4 -1
  2. package/package.json +2 -1
  3. package/packages/uswds-core/src/styles/functions/_index.scss +1 -0
  4. package/packages/uswds-core/src/styles/functions/theme/_index.scss +3 -0
  5. package/packages/uswds-core/src/styles/functions/theme/theme.scss +360 -0
  6. package/packages/uswds-utilities/src/styles/rules/_index.scss +37 -0
  7. package/packages/uswds-utilities/src/styles/rules/_package.scss +227 -1
  8. package/packages/uswds-utilities/src/styles/rules/accessibility.scss +91 -0
  9. package/packages/uswds-utilities/src/styles/rules/animation-keyframes.scss +167 -0
  10. package/packages/uswds-utilities/src/styles/rules/animation.scss +372 -0
  11. package/packages/uswds-utilities/src/styles/rules/aspect-ratio.scss +48 -0
  12. package/packages/uswds-utilities/src/styles/rules/backdrop-filters.scss +255 -0
  13. package/packages/uswds-utilities/src/styles/rules/background-extended.scss +171 -0
  14. package/packages/uswds-utilities/src/styles/rules/blend-modes.scss +72 -0
  15. package/packages/uswds-utilities/src/styles/rules/columns.scss +134 -0
  16. package/packages/uswds-utilities/src/styles/rules/container.scss +83 -0
  17. package/packages/uswds-utilities/src/styles/rules/content.scss +76 -0
  18. package/packages/uswds-utilities/src/styles/rules/divide.scss +128 -0
  19. package/packages/uswds-utilities/src/styles/rules/effects-extended.scss +246 -0
  20. package/packages/uswds-utilities/src/styles/rules/filters.scss +247 -0
  21. package/packages/uswds-utilities/src/styles/rules/flex-extended.scss +133 -0
  22. package/packages/uswds-utilities/src/styles/rules/gradients.scss +121 -0
  23. package/packages/uswds-utilities/src/styles/rules/grid-extended.scss +188 -0
  24. package/packages/uswds-utilities/src/styles/rules/interactivity-extended.scss +236 -0
  25. package/packages/uswds-utilities/src/styles/rules/interactivity.scss +300 -0
  26. package/packages/uswds-utilities/src/styles/rules/isolation.scss +40 -0
  27. package/packages/uswds-utilities/src/styles/rules/logical-properties.scss +444 -0
  28. package/packages/uswds-utilities/src/styles/rules/object-fit.scss +66 -0
  29. package/packages/uswds-utilities/src/styles/rules/outline-extended.scss +61 -0
  30. package/packages/uswds-utilities/src/styles/rules/overscroll.scss +44 -0
  31. package/packages/uswds-utilities/src/styles/rules/place.scss +88 -0
  32. package/packages/uswds-utilities/src/styles/rules/ring-base.scss +119 -0
  33. package/packages/uswds-utilities/src/styles/rules/ring.scss +153 -0
  34. package/packages/uswds-utilities/src/styles/rules/size.scss +117 -0
  35. package/packages/uswds-utilities/src/styles/rules/space.scss +93 -0
  36. package/packages/uswds-utilities/src/styles/rules/svg.scss +144 -0
  37. package/packages/uswds-utilities/src/styles/rules/tables.scss +126 -0
  38. package/packages/uswds-utilities/src/styles/rules/transforms-extended.scss +128 -0
  39. package/packages/uswds-utilities/src/styles/rules/transition-extended.scss +34 -0
  40. package/packages/uswds-utilities/src/styles/rules/typography-advanced.scss +163 -0
  41. package/packages/uswds-utilities/src/styles/rules/typography-extras.scss +230 -0
  42. package/packages/uswds-utilities/src/styles/rules/visibility.scss +37 -0
  43. package/tasks/jit/generator.js +330 -0
  44. package/tasks/jit/index.js +161 -0
  45. package/tasks/jit/scanner.js +274 -0
  46. package/tasks/jit/utility-definitions.js +1586 -0
  47. package/tasks/jit-scanner.js +224 -0
  48. package/tasks/postcss-plugins/container-queries.js +108 -0
  49. package/tasks/postcss-plugins/css-layers.js +177 -0
  50. package/tasks/postcss-plugins/dark-mode.js +121 -0
  51. package/tasks/sass.js +72 -2
  52. package/tasks/watch.js +24 -3
  53. package/uswds-extended.config.js +50 -50
  54. package/dist/css/uswds.css +0 -52678
  55. package/dist/css/uswds.min.css +0 -4
  56. package/dist/css/uswds.min.css.map +0 -1
package/gulpfile.js CHANGED
@@ -13,10 +13,11 @@ const { lintSass, typecheck } = require("./tasks/lint");
13
13
  const { build } = require("./tasks/build");
14
14
  const { release } = require("./tasks/release");
15
15
  const { watch } = require("./tasks/watch");
16
- const { compileSass } = require("./tasks/sass");
16
+ const { compileSass, jitScan } = require("./tasks/sass");
17
17
  const { compileCustomCSS } = require("./tasks/custom-css");
18
18
  const { purgeSass, reportPurgeStats } = require("./tasks/purge");
19
19
  const { cleanDist } = require("./tasks/clean");
20
+ const { gulpJIT } = require("./tasks/jit");
20
21
 
21
22
  /**
22
23
  * *Flags*
@@ -63,9 +64,11 @@ exports.test = series(
63
64
  exports.buildSpriteStandalone = buildSpriteStandalone;
64
65
  exports.buildSprite = buildSprite;
65
66
  exports.compileSass = compileSass;
67
+ exports.jitScan = jitScan;
66
68
  exports.compileCustomCSS = compileCustomCSS;
67
69
  exports.purgeSass = purgeSass;
68
70
  exports.reportPurgeStats = reportPurgeStats;
71
+ exports.jitBuild = gulpJIT; // Full JIT mode - generates only used utilities
69
72
  exports.buildSass = series(lintSass, compileSass);
70
73
  exports.buildJS = series(typeCheck, compileJS);
71
74
  exports.buildUSWDS = build;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uswds-extended",
3
- "version": "3.14.0",
3
+ "version": "3.14.1",
4
4
  "description": "USWDS with Tailwind-style utilities: color opacity, arbitrary values, @apply directive, and more",
5
5
  "engines": {
6
6
  "node": ">= 18"
@@ -163,6 +163,7 @@
163
163
  "eslint-plugin-no-unsanitized": "4.1.2",
164
164
  "fancy-log": "2.0.0",
165
165
  "file-loader": "6.2.0",
166
+ "glob": "^13.0.0",
166
167
  "gulp": "4.0.2",
167
168
  "gulp-concat": "^2.6.1",
168
169
  "gulp-mocha": "9.0.0",
@@ -4,5 +4,6 @@
4
4
  @forward "grid";
5
5
  @forward "math";
6
6
  @forward "output";
7
+ @forward "theme";
7
8
  @forward "units";
8
9
  @forward "utilities";
@@ -0,0 +1,3 @@
1
+ // Theme functions - Tailwind-style token access
2
+ // All helper functions are prefixed with theme- to avoid conflicts with existing USWDS functions
3
+ @forward "theme" show theme, theme-spacing, theme-font-size, theme-radius, theme-shadow, theme-z, theme-breakpoint, theme-duration, theme-easing;
@@ -0,0 +1,360 @@
1
+ // theme() - Unified token access function
2
+ // Similar to Tailwind's theme() function
3
+ //
4
+ // Usage:
5
+ // theme('colors.primary') -> #005ea2
6
+ // theme('colors.primary-light') -> #73b3e7
7
+ // theme('spacing.2') -> 1rem
8
+ // theme('spacing.4') -> 2rem
9
+ // theme('font-size.lg') -> 1.22rem
10
+ // theme('font-weight.bold') -> 700
11
+ // theme('border-radius.lg') -> 0.5rem
12
+ // theme('z-index.500') -> 500
13
+ // theme('breakpoints.tablet') -> 40em
14
+
15
+ @use "sass:list";
16
+ @use "sass:map";
17
+ @use "sass:meta";
18
+ @use "sass:string";
19
+ @use "../../functions/general/str-split" as *;
20
+ @use "../../functions/utilities/color" as *;
21
+ @use "../../functions/units/units" as *;
22
+ @use "../../tokens/color/shortcodes-color-all" as *;
23
+ @use "../../variables/project-spacing" as spacing-vars;
24
+
25
+ // Token registry - maps token paths to their values
26
+ // This is the central registry of all available tokens
27
+
28
+ $-font-sizes: (
29
+ "3xs": 0.69rem,
30
+ "2xs": 0.79rem,
31
+ "xs": 0.87rem,
32
+ "sm": 0.93rem,
33
+ "md": 1rem,
34
+ "lg": 1.22rem,
35
+ "xl": 1.34rem,
36
+ "2xl": 1.49rem,
37
+ "3xl": 1.76rem,
38
+ );
39
+
40
+ $-font-weights: (
41
+ "thin": 100,
42
+ "light": 300,
43
+ "normal": 400,
44
+ "medium": 500,
45
+ "semibold": 600,
46
+ "bold": 700,
47
+ "black": 900,
48
+ );
49
+
50
+ $-line-heights: (
51
+ "1": 1,
52
+ "2": 1.15,
53
+ "3": 1.35,
54
+ "4": 1.5,
55
+ "5": 1.62,
56
+ "6": 1.75,
57
+ );
58
+
59
+ $-letter-spacing: (
60
+ "tightest": -0.03em,
61
+ "tighter": -0.02em,
62
+ "tight": -0.01em,
63
+ "auto": initial,
64
+ "wide": 0.025em,
65
+ "wider": 0.05em,
66
+ "widest": 0.1em,
67
+ );
68
+
69
+ $-border-radius: (
70
+ "0": 0,
71
+ "sm": 0.125rem,
72
+ "md": 0.25rem,
73
+ "lg": 0.5rem,
74
+ "xl": 1rem,
75
+ "2xl": 1.5rem,
76
+ "full": 9999px,
77
+ "pill": 99rem,
78
+ );
79
+
80
+ $-border-widths: (
81
+ "0": 0,
82
+ "1px": 1px,
83
+ "2px": 2px,
84
+ "05": 0.25rem,
85
+ "1": 0.5rem,
86
+ );
87
+
88
+ $-z-index: (
89
+ "auto": auto,
90
+ "0": 0,
91
+ "100": 100,
92
+ "200": 200,
93
+ "300": 300,
94
+ "400": 400,
95
+ "500": 500,
96
+ );
97
+
98
+ $-opacity: (
99
+ "0": 0,
100
+ "5": 0.05,
101
+ "10": 0.1,
102
+ "20": 0.2,
103
+ "25": 0.25,
104
+ "30": 0.3,
105
+ "40": 0.4,
106
+ "50": 0.5,
107
+ "60": 0.6,
108
+ "70": 0.7,
109
+ "75": 0.75,
110
+ "80": 0.8,
111
+ "90": 0.9,
112
+ "95": 0.95,
113
+ "100": 1,
114
+ );
115
+
116
+ $-shadows: (
117
+ "none": none,
118
+ "1": 0 1px 4px 0 rgba(0, 0, 0, 0.1),
119
+ "2": 0 4px 8px 0 rgba(0, 0, 0, 0.1),
120
+ "3": 0 8px 16px 0 rgba(0, 0, 0, 0.1),
121
+ "4": 0 12px 24px 0 rgba(0, 0, 0, 0.1),
122
+ "5": 0 16px 32px 0 rgba(0, 0, 0, 0.1),
123
+ );
124
+
125
+ $-breakpoints: (
126
+ "mobile-lg": 30em,
127
+ "tablet": 40em,
128
+ "tablet-lg": 55em,
129
+ "desktop": 64em,
130
+ "desktop-lg": 75em,
131
+ "widescreen": 87.5em,
132
+ );
133
+
134
+ $-transitions: (
135
+ "none": none,
136
+ "all": all 150ms ease-in-out,
137
+ "colors": color 150ms ease-in-out#{","} background-color 150ms ease-in-out#{","} border-color 150ms ease-in-out,
138
+ "opacity": opacity 150ms ease-in-out,
139
+ "shadow": box-shadow 150ms ease-in-out,
140
+ "transform": transform 150ms ease-in-out,
141
+ );
142
+
143
+ $-duration: (
144
+ "75": 75ms,
145
+ "100": 100ms,
146
+ "150": 150ms,
147
+ "200": 200ms,
148
+ "300": 300ms,
149
+ "500": 500ms,
150
+ "700": 700ms,
151
+ "1000": 1000ms,
152
+ );
153
+
154
+ $-easing: (
155
+ "linear": linear,
156
+ "ease": ease,
157
+ "ease-in": ease-in,
158
+ "ease-out": ease-out,
159
+ "ease-in-out": ease-in-out,
160
+ );
161
+
162
+ // Main theme function
163
+ @function theme($path) {
164
+ // Parse the path (e.g., "colors.primary" or "spacing.2")
165
+ $parts: str-split($path, ".");
166
+ $category: list.nth($parts, 1);
167
+
168
+ // Get the key (everything after the first dot)
169
+ $key: null;
170
+ @if list.length($parts) > 1 {
171
+ $key: list.nth($parts, 2);
172
+ // Handle nested keys like "colors.primary.light"
173
+ @if list.length($parts) > 2 {
174
+ @for $i from 3 through list.length($parts) {
175
+ $key: $key + "-" + list.nth($parts, $i);
176
+ }
177
+ }
178
+ }
179
+
180
+ // Route to appropriate token map
181
+ @if $category == "colors" or $category == "color" {
182
+ @if $key == null {
183
+ @error "theme(): color requires a key, e.g., theme('colors.primary')";
184
+ }
185
+ @return color($key);
186
+ }
187
+
188
+ @if $category == "spacing" or $category == "space" {
189
+ @if $key == null {
190
+ @error "theme(): spacing requires a key, e.g., theme('spacing.2')";
191
+ }
192
+ @return units($key);
193
+ }
194
+
195
+ @if $category == "font-size" or $category == "fontSize" {
196
+ @if $key == null {
197
+ @return $-font-sizes;
198
+ }
199
+ @if not map.has-key($-font-sizes, $key) {
200
+ @error "theme(): Unknown font-size '#{$key}'. Available: #{map.keys($-font-sizes)}";
201
+ }
202
+ @return map.get($-font-sizes, $key);
203
+ }
204
+
205
+ @if $category == "font-weight" or $category == "fontWeight" {
206
+ @if $key == null {
207
+ @return $-font-weights;
208
+ }
209
+ @if not map.has-key($-font-weights, $key) {
210
+ @error "theme(): Unknown font-weight '#{$key}'. Available: #{map.keys($-font-weights)}";
211
+ }
212
+ @return map.get($-font-weights, $key);
213
+ }
214
+
215
+ @if $category == "line-height" or $category == "lineHeight" {
216
+ @if $key == null {
217
+ @return $-line-heights;
218
+ }
219
+ @if not map.has-key($-line-heights, $key) {
220
+ @error "theme(): Unknown line-height '#{$key}'. Available: #{map.keys($-line-heights)}";
221
+ }
222
+ @return map.get($-line-heights, $key);
223
+ }
224
+
225
+ @if $category == "letter-spacing" or $category == "letterSpacing" {
226
+ @if $key == null {
227
+ @return $-letter-spacing;
228
+ }
229
+ @if not map.has-key($-letter-spacing, $key) {
230
+ @error "theme(): Unknown letter-spacing '#{$key}'. Available: #{map.keys($-letter-spacing)}";
231
+ }
232
+ @return map.get($-letter-spacing, $key);
233
+ }
234
+
235
+ @if $category == "border-radius" or $category == "borderRadius" or $category == "radius" {
236
+ @if $key == null {
237
+ @return $-border-radius;
238
+ }
239
+ @if not map.has-key($-border-radius, $key) {
240
+ @error "theme(): Unknown border-radius '#{$key}'. Available: #{map.keys($-border-radius)}";
241
+ }
242
+ @return map.get($-border-radius, $key);
243
+ }
244
+
245
+ @if $category == "border-width" or $category == "borderWidth" {
246
+ @if $key == null {
247
+ @return $-border-widths;
248
+ }
249
+ @if not map.has-key($-border-widths, $key) {
250
+ @error "theme(): Unknown border-width '#{$key}'. Available: #{map.keys($-border-widths)}";
251
+ }
252
+ @return map.get($-border-widths, $key);
253
+ }
254
+
255
+ @if $category == "z-index" or $category == "zIndex" {
256
+ @if $key == null {
257
+ @return $-z-index;
258
+ }
259
+ @if not map.has-key($-z-index, $key) {
260
+ @error "theme(): Unknown z-index '#{$key}'. Available: #{map.keys($-z-index)}";
261
+ }
262
+ @return map.get($-z-index, $key);
263
+ }
264
+
265
+ @if $category == "opacity" {
266
+ @if $key == null {
267
+ @return $-opacity;
268
+ }
269
+ @if not map.has-key($-opacity, $key) {
270
+ @error "theme(): Unknown opacity '#{$key}'. Available: #{map.keys($-opacity)}";
271
+ }
272
+ @return map.get($-opacity, $key);
273
+ }
274
+
275
+ @if $category == "shadow" or $category == "shadows" or $category == "boxShadow" {
276
+ @if $key == null {
277
+ @return $-shadows;
278
+ }
279
+ @if not map.has-key($-shadows, $key) {
280
+ @error "theme(): Unknown shadow '#{$key}'. Available: #{map.keys($-shadows)}";
281
+ }
282
+ @return map.get($-shadows, $key);
283
+ }
284
+
285
+ @if $category == "breakpoints" or $category == "screens" {
286
+ @if $key == null {
287
+ @return $-breakpoints;
288
+ }
289
+ @if not map.has-key($-breakpoints, $key) {
290
+ @error "theme(): Unknown breakpoint '#{$key}'. Available: #{map.keys($-breakpoints)}";
291
+ }
292
+ @return map.get($-breakpoints, $key);
293
+ }
294
+
295
+ @if $category == "transition" or $category == "transitions" {
296
+ @if $key == null {
297
+ @return $-transitions;
298
+ }
299
+ @if not map.has-key($-transitions, $key) {
300
+ @error "theme(): Unknown transition '#{$key}'. Available: #{map.keys($-transitions)}";
301
+ }
302
+ @return map.get($-transitions, $key);
303
+ }
304
+
305
+ @if $category == "duration" {
306
+ @if $key == null {
307
+ @return $-duration;
308
+ }
309
+ @if not map.has-key($-duration, $key) {
310
+ @error "theme(): Unknown duration '#{$key}'. Available: #{map.keys($-duration)}";
311
+ }
312
+ @return map.get($-duration, $key);
313
+ }
314
+
315
+ @if $category == "easing" or $category == "timing" {
316
+ @if $key == null {
317
+ @return $-easing;
318
+ }
319
+ @if not map.has-key($-easing, $key) {
320
+ @error "theme(): Unknown easing '#{$key}'. Available: #{map.keys($-easing)}";
321
+ }
322
+ @return map.get($-easing, $key);
323
+ }
324
+
325
+ @error "theme(): Unknown category '#{$category}'. Available categories: colors, spacing, font-size, font-weight, line-height, letter-spacing, border-radius, border-width, z-index, opacity, shadow, breakpoints, transition, duration, easing";
326
+ }
327
+
328
+ // Alias functions for common token access
329
+ // All prefixed with theme- to avoid conflicts with existing USWDS functions
330
+ @function theme-spacing($key) {
331
+ @return theme("spacing.#{$key}");
332
+ }
333
+
334
+ @function theme-font-size($key) {
335
+ @return theme("font-size.#{$key}");
336
+ }
337
+
338
+ @function theme-radius($key) {
339
+ @return theme("border-radius.#{$key}");
340
+ }
341
+
342
+ @function theme-shadow($key) {
343
+ @return theme("shadow.#{$key}");
344
+ }
345
+
346
+ @function theme-z($key) {
347
+ @return theme("z-index.#{$key}");
348
+ }
349
+
350
+ @function theme-breakpoint($key) {
351
+ @return theme("breakpoints.#{$key}");
352
+ }
353
+
354
+ @function theme-duration($key) {
355
+ @return theme("duration.#{$key}");
356
+ }
357
+
358
+ @function theme-easing($key) {
359
+ @return theme("easing.#{$key}");
360
+ }
@@ -57,3 +57,40 @@
57
57
  @forward "whitespace";
58
58
  @forward "width";
59
59
  @forward "z-index";
60
+
61
+ // Extended utilities
62
+ @forward "accessibility";
63
+ @forward "animation";
64
+ @forward "animation-keyframes";
65
+ @forward "aspect-ratio";
66
+ @forward "backdrop-filters";
67
+ @forward "background-extended";
68
+ @forward "blend-modes";
69
+ @forward "columns";
70
+ @forward "container";
71
+ @forward "content";
72
+ @forward "divide";
73
+ @forward "effects-extended";
74
+ @forward "filters";
75
+ @forward "flex-extended";
76
+ @forward "gradients";
77
+ @forward "grid-extended";
78
+ @forward "interactivity";
79
+ @forward "interactivity-extended";
80
+ @forward "isolation";
81
+ @forward "logical-properties";
82
+ @forward "object-fit";
83
+ @forward "outline-extended";
84
+ @forward "overscroll";
85
+ @forward "place";
86
+ @forward "ring";
87
+ @forward "ring-base";
88
+ @forward "size";
89
+ @forward "space";
90
+ @forward "svg";
91
+ @forward "tables";
92
+ @forward "transforms-extended";
93
+ @forward "transition-extended";
94
+ @forward "typography-advanced";
95
+ @forward "typography-extras";
96
+ @forward "visibility";
@@ -63,5 +63,231 @@ $utilities-package: map-collect(
63
63
  $u-whitespace,
64
64
  $u-width,
65
65
  $u-z-index,
66
- $u-css-grid
66
+ $u-css-grid,
67
+
68
+ // Animation utilities
69
+ $u-transition,
70
+ $u-duration,
71
+ $u-ease,
72
+ $u-delay,
73
+ $u-scale,
74
+ $u-rotate,
75
+ $u-translate,
76
+ $u-skew,
77
+ $u-origin,
78
+ $u-animate,
79
+ $u-animation-state,
80
+
81
+ // Container utilities
82
+ $u-container-type,
83
+ $u-container-name,
84
+ $u-container,
85
+
86
+ // Logical properties
87
+ $u-margin-logical,
88
+ $u-padding-logical,
89
+ $u-inset-logical,
90
+ $u-border-logical,
91
+ $u-text-align-logical,
92
+ $u-size-logical,
93
+ $u-radius-logical,
94
+ $u-scroll-logical,
95
+ $u-float-logical,
96
+ $u-clear-logical,
97
+
98
+ // Filter utilities
99
+ $u-blur,
100
+ $u-brightness,
101
+ $u-contrast,
102
+ $u-grayscale,
103
+ $u-hue-rotate,
104
+ $u-invert,
105
+ $u-saturate,
106
+ $u-sepia,
107
+ $u-drop-shadow,
108
+ $u-filter-none,
109
+
110
+ // Backdrop filter utilities
111
+ $u-backdrop-blur,
112
+ $u-backdrop-brightness,
113
+ $u-backdrop-contrast,
114
+ $u-backdrop-grayscale,
115
+ $u-backdrop-hue-rotate,
116
+ $u-backdrop-invert,
117
+ $u-backdrop-opacity,
118
+ $u-backdrop-saturate,
119
+ $u-backdrop-sepia,
120
+ $u-backdrop-filter-none,
121
+
122
+ // Ring utilities
123
+ $u-ring,
124
+ $u-ring-color,
125
+ $u-ring-offset,
126
+ $u-ring-offset-color,
127
+ $u-ring-inset,
128
+
129
+ // Interactivity utilities
130
+ $u-accent-color,
131
+ $u-caret-color,
132
+ $u-appearance,
133
+ $u-pointer-events,
134
+ $u-resize,
135
+ $u-scroll-behavior,
136
+ $u-scroll-snap-type,
137
+ $u-scroll-snap-align,
138
+ $u-scroll-snap-stop,
139
+ $u-touch-action,
140
+ $u-user-select,
141
+ $u-will-change,
142
+
143
+ // Aspect ratio utilities
144
+ $u-aspect-ratio,
145
+
146
+ // Columns utilities
147
+ $u-columns,
148
+ $u-break-after,
149
+ $u-break-before,
150
+ $u-break-inside,
151
+
152
+ // Object fit/position utilities
153
+ $u-object-fit,
154
+ $u-object-position,
155
+
156
+ // Visibility utilities
157
+ $u-visibility,
158
+
159
+ // Isolation utilities
160
+ $u-isolation,
161
+
162
+ // Overscroll utilities
163
+ $u-overscroll,
164
+
165
+ // Place utilities
166
+ $u-place-content,
167
+ $u-place-items,
168
+ $u-place-self,
169
+
170
+ // Content utilities
171
+ $u-content,
172
+ $u-box-decoration,
173
+ $u-box-sizing,
174
+
175
+ // SVG utilities
176
+ $u-fill,
177
+ $u-stroke,
178
+ $u-stroke-width,
179
+ $u-stroke-linecap,
180
+ $u-stroke-linejoin,
181
+
182
+ // Table utilities
183
+ $u-table-layout,
184
+ $u-border-collapse,
185
+ $u-border-spacing,
186
+ $u-caption,
187
+ $u-empty-cells,
188
+
189
+ // Typography extras
190
+ $u-hyphens,
191
+ $u-word-break,
192
+ $u-overflow-wrap,
193
+ $u-text-overflow,
194
+ $u-text-wrap,
195
+ $u-writing-mode,
196
+ $u-text-orientation,
197
+ $u-list-style-type,
198
+ $u-list-style-position,
199
+ $u-list-style-image,
200
+
201
+ // Blend mode utilities
202
+ $u-mix-blend,
203
+ $u-bg-blend,
204
+
205
+ // Flex extended utilities
206
+ $u-flex-grow,
207
+ $u-flex-shrink,
208
+ $u-flex-basis,
209
+
210
+ // Accessibility utilities
211
+ $u-sr-only,
212
+ $u-not-sr-only,
213
+ $u-forced-color-adjust,
214
+
215
+ // Divide utilities
216
+ $u-divide-y,
217
+ $u-divide-x,
218
+ $u-divide-color,
219
+ $u-divide-style,
220
+
221
+ // Size utilities
222
+ $u-size,
223
+ $u-min-size,
224
+ $u-max-size,
225
+
226
+ // Gradient utilities
227
+ $u-gradient-direction,
228
+ $u-from-color,
229
+ $u-via-color,
230
+ $u-to-color,
231
+
232
+ // Background extended utilities
233
+ $u-bg-attachment,
234
+ $u-bg-clip,
235
+ $u-bg-origin,
236
+ $u-bg-position,
237
+ $u-bg-repeat,
238
+ $u-bg-size,
239
+ $u-bg-image,
240
+
241
+ // Space utilities
242
+ $u-space-x,
243
+ $u-space-y,
244
+
245
+ // Grid extended utilities
246
+ $u-auto-cols,
247
+ $u-auto-rows,
248
+ $u-justify-items,
249
+ $u-justify-self,
250
+ $u-align-content,
251
+ $u-line-clamp,
252
+ $u-subgrid,
253
+
254
+ // Typography advanced utilities
255
+ $u-font-smoothing,
256
+ $u-font-stretch,
257
+ $u-font-variant-numeric,
258
+ $u-text-decoration-style,
259
+ $u-text-decoration-thickness,
260
+ $u-text-underline-offset,
261
+
262
+ // Outline extended utilities
263
+ $u-outline-style,
264
+ $u-outline-offset,
265
+
266
+ // Effects extended utilities
267
+ $u-text-shadow,
268
+ $u-mask-image,
269
+ $u-mask-size,
270
+ $u-mask-repeat,
271
+ $u-mask-position,
272
+ $u-mask-origin,
273
+ $u-mask-clip,
274
+ $u-mask-composite,
275
+ $u-mask-mode,
276
+ $u-mask-type,
277
+
278
+ // Transforms extended utilities
279
+ $u-backface,
280
+ $u-perspective,
281
+ $u-perspective-origin,
282
+ $u-transform-style,
283
+ $u-transform,
284
+
285
+ // Interactivity extended utilities
286
+ $u-color-scheme,
287
+ $u-field-sizing,
288
+ $u-scroll-margin,
289
+ $u-scroll-padding,
290
+
291
+ // Transition extended utilities
292
+ $u-transition-behavior
67
293
  );