@tokenami/config 0.0.11

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/index.js ADDED
@@ -0,0 +1,725 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+
30
+ // src/index.ts
31
+ var src_exports = {};
32
+ __export(src_exports, {
33
+ ArbitraryValue: () => ArbitraryValue,
34
+ GridValue: () => GridValue,
35
+ TokenProperty: () => TokenProperty,
36
+ TokenValue: () => TokenValue,
37
+ arbitraryValue: () => arbitraryValue,
38
+ createConfig: () => createConfig,
39
+ defaultConfig: () => config_default_default,
40
+ getTokenPropertyName: () => getTokenPropertyName,
41
+ getTokenValueParts: () => getTokenValueParts,
42
+ properties: () => properties,
43
+ tokenProperty: () => tokenProperty,
44
+ tokenValue: () => tokenValue,
45
+ variantProperty: () => variantProperty
46
+ });
47
+ module.exports = __toCommonJS(src_exports);
48
+
49
+ // src/config.ts
50
+ var v = __toESM(require("valibot"));
51
+ function tokenProperty(name) {
52
+ return `--${name}`;
53
+ }
54
+ function variantProperty(variant, name) {
55
+ return `--${variant}_${name}`;
56
+ }
57
+ function tokenValue(themeKey, name) {
58
+ return `var(--${themeKey}_${name})`;
59
+ }
60
+ function arbitraryValue(value) {
61
+ return `var(---,${value})`;
62
+ }
63
+ var tokenPropertyRegex = /--((\w)([\w-]+)?)/;
64
+ var tokenValueRegex = /var\(--([\w-]+)_([\w-]+)\)/;
65
+ var aritraryValueRegex = /var\(---,(.+)\)/;
66
+ var gridValueSchema = v.number();
67
+ var GridValue = { safeParse: (input) => v.safeParse(gridValueSchema, input) };
68
+ var tokenPropertySchema = v.string([v.regex(tokenPropertyRegex)]);
69
+ var TokenProperty = { safeParse: (input) => v.safeParse(tokenPropertySchema, input) };
70
+ var tokenValueSchema = v.string([v.regex(tokenValueRegex)]);
71
+ var TokenValue = { safeParse: (input) => v.safeParse(tokenValueSchema, input) };
72
+ var ArbitraryValue = v.string([v.regex(aritraryValueRegex)]);
73
+ var createConfig = (obj) => {
74
+ return obj;
75
+ };
76
+ function getTokenPropertyName(tokenProperty2) {
77
+ return tokenProperty2.replace(tokenPropertyRegex, "$1");
78
+ }
79
+ function getTokenValueParts(tokenValue2) {
80
+ const [, key, token] = tokenValue2.split(tokenValueRegex);
81
+ return key && token ? { themeKey: key, token } : void 0;
82
+ }
83
+
84
+ // src/config.default.ts
85
+ var defaultConfig = createConfig({
86
+ include: [],
87
+ grid: "0.25rem",
88
+ responsive: {},
89
+ theme: {},
90
+ aliases: {},
91
+ selectors: {
92
+ active: "&:active",
93
+ "any-link": "&:any-link",
94
+ checked: "&:checked",
95
+ current: "&:current",
96
+ default: "&:default",
97
+ defined: "&:defined",
98
+ disabled: "&:disabled",
99
+ empty: "&:empty",
100
+ enabled: "&:enabled",
101
+ first: "&:first",
102
+ "first-child": "&:first-child",
103
+ "first-of-type": "&:first-of-type",
104
+ focus: "&:focus",
105
+ "focus-visible": "&:focus-visible",
106
+ "focus-within": "&:focus-within",
107
+ fullscreen: "&:fullscreen",
108
+ hover: "&:hover",
109
+ "in-range": "&:in-range",
110
+ indeterminate: "&:indeterminate",
111
+ invalid: "&:invalid",
112
+ "last-child": "&:last-child",
113
+ "last-of-type": "&:last-of-type",
114
+ left: "&:left",
115
+ link: "&:link",
116
+ "local-link": "&:local-link",
117
+ "nth-col": "&:nth-col",
118
+ "nth-last-col": "&:nth-last-col",
119
+ "only-child": "&:only-child",
120
+ "only-of-type": "&:only-of-type",
121
+ optional: "&:optional",
122
+ "out-of-range": "&:out-of-range",
123
+ paused: "&:paused",
124
+ "picture-in-picture": "&:picture-in-picture",
125
+ "placeholder-shown": "&:placeholder-shown",
126
+ playing: "&:playing",
127
+ "read-only": "&:read-only",
128
+ "read-write": "&:read-write",
129
+ required: "&:required",
130
+ right: "&:right",
131
+ root: "&:root",
132
+ scope: "&:scope",
133
+ target: "&:target",
134
+ "user-invalid": "&:user-invalid",
135
+ "user-valid": "&:user-valid",
136
+ valid: "&:valid",
137
+ visited: "&:visited",
138
+ after: "&::after",
139
+ backdrop: "&::backdrop",
140
+ before: "&::before",
141
+ cue: "&::cue",
142
+ "cue-region": "&::cue-region",
143
+ "file-selector-button": "&::file-selector-button",
144
+ "first-letter": "&::first-letter",
145
+ "first-line": "&::first-line",
146
+ marker: "&::marker",
147
+ placeholder: "&::placeholder",
148
+ selection: "&::selection"
149
+ },
150
+ properties: {
151
+ "accent-color": ["color"],
152
+ animation: ["anim"],
153
+ "animation-timing-function": ["ease"],
154
+ background: ["color", "surface"],
155
+ "background-color": ["color"],
156
+ "background-image": ["surface"],
157
+ "background-position": ["grid"],
158
+ "background-position-x": ["grid"],
159
+ "background-position-y": ["grid"],
160
+ "block-size": ["grid", "size"],
161
+ border: ["border"],
162
+ "border-block": ["border"],
163
+ "border-block-color": ["color"],
164
+ "border-block-end": ["border"],
165
+ "border-block-end-color": ["color"],
166
+ "border-block-end-style": ["line-style"],
167
+ "border-block-end-width": ["grid"],
168
+ "border-block-start": ["border"],
169
+ "border-block-start-color": ["color"],
170
+ "border-block-start-style": ["line-style"],
171
+ "border-block-start-width": ["grid"],
172
+ "border-block-style": ["line-style"],
173
+ "border-block-width": ["grid"],
174
+ "border-bottom": ["border"],
175
+ "border-bottom-color": ["color"],
176
+ "border-bottom-left-radius": ["radii"],
177
+ "border-bottom-right-radius": ["radii"],
178
+ "border-bottom-style": ["line-style"],
179
+ "border-bottom-width": ["grid"],
180
+ "border-color": ["color"],
181
+ "border-end-end-radius": ["radii"],
182
+ "border-end-start-radius": ["radii"],
183
+ "border-inline": ["border"],
184
+ "border-inline-color": ["color"],
185
+ "border-inline-end": ["border"],
186
+ "border-inline-end-color": ["color"],
187
+ "border-inline-end-style": ["line-style"],
188
+ "border-inline-end-width": ["grid"],
189
+ "border-inline-start": ["border"],
190
+ "border-inline-start-color": ["color"],
191
+ "border-inline-start-style": ["line-style"],
192
+ "border-inline-start-width": ["grid"],
193
+ "border-inline-style": ["line-style"],
194
+ "border-inline-width": ["grid"],
195
+ "border-left": ["border"],
196
+ "border-left-color": ["color"],
197
+ "border-left-style": ["line-style"],
198
+ "border-left-width": ["grid"],
199
+ "border-radius": ["radii"],
200
+ "border-right": ["border"],
201
+ "border-right-color": ["color"],
202
+ "border-right-style": ["line-style"],
203
+ "border-right-width": ["grid"],
204
+ "border-start-end-radius": ["radii"],
205
+ "border-start-start-radius": ["radii"],
206
+ "border-style": ["line-style"],
207
+ "border-top": ["border"],
208
+ "border-top-color": ["color"],
209
+ "border-top-left-radius": ["radii"],
210
+ "border-top-right-radius": ["radii"],
211
+ "border-top-style": ["line-style"],
212
+ "border-top-width": ["grid"],
213
+ "border-width": ["grid"],
214
+ bottom: ["grid"],
215
+ "box-shadow": ["shadow"],
216
+ "caret-color": ["color"],
217
+ color: ["color"],
218
+ "column-gap": ["grid"],
219
+ "column-rule-color": ["color"],
220
+ "column-rule-width": ["grid"],
221
+ "column-width": ["grid", "size"],
222
+ "flex-basis": ["grid", "size"],
223
+ "font-family": ["font"],
224
+ "font-size": ["font-size"],
225
+ "font-weight": ["weight"],
226
+ gap: ["grid"],
227
+ height: ["grid", "size"],
228
+ "inline-size": ["grid", "size"],
229
+ inset: ["grid"],
230
+ "inset-block": ["grid"],
231
+ "inset-block-end": ["grid"],
232
+ "inset-block-start": ["grid"],
233
+ "inset-inline": ["grid"],
234
+ "inset-inline-end": ["grid"],
235
+ "inset-inline-start": ["grid"],
236
+ left: ["grid"],
237
+ "letter-spacing": ["tracking"],
238
+ "line-height": ["leading"],
239
+ margin: ["grid"],
240
+ "margin-block": ["grid"],
241
+ "margin-block-end": ["grid"],
242
+ "margin-block-start": ["grid"],
243
+ "margin-bottom": ["grid"],
244
+ "margin-inline": ["grid"],
245
+ "margin-inline-end": ["grid"],
246
+ "margin-inline-start": ["grid"],
247
+ "margin-left": ["grid"],
248
+ "margin-right": ["grid"],
249
+ "margin-top": ["grid"],
250
+ "max-block-size": ["grid", "size"],
251
+ "max-height": ["grid", "size"],
252
+ "max-inline-size": ["grid", "size"],
253
+ "max-width": ["grid", "size"],
254
+ "min-block-size": ["grid", "size"],
255
+ "min-height": ["grid", "size"],
256
+ "min-inline-size": ["grid", "size"],
257
+ "min-width": ["grid", "size"],
258
+ opacity: ["alpha"],
259
+ "outline-color": ["color"],
260
+ padding: ["grid"],
261
+ "padding-block": ["grid"],
262
+ "padding-block-end": ["grid"],
263
+ "padding-block-start": ["grid"],
264
+ "padding-bottom": ["grid"],
265
+ "padding-inline": ["grid"],
266
+ "padding-inline-end": ["grid"],
267
+ "padding-inline-start": ["grid"],
268
+ "padding-left": ["grid"],
269
+ "padding-right": ["grid"],
270
+ "padding-top": ["grid"],
271
+ right: ["grid"],
272
+ "row-gap": ["grid"],
273
+ "scroll-margin": ["grid"],
274
+ "scroll-margin-bottom": ["grid"],
275
+ "scroll-margin-left": ["grid"],
276
+ "scroll-margin-right": ["grid"],
277
+ "scroll-margin-top": ["grid"],
278
+ "scroll-padding": ["grid"],
279
+ "scroll-padding-bottom": ["grid"],
280
+ "scroll-padding-left": ["grid"],
281
+ "scroll-padding-right": ["grid"],
282
+ "scroll-padding-top": ["grid"],
283
+ "text-decoration-color": ["color"],
284
+ "text-shadow": ["shadow"],
285
+ top: ["grid"],
286
+ transition: ["transition"],
287
+ "transition-timing-function": ["ease"],
288
+ width: ["grid", "size"],
289
+ "z-index": ["z"]
290
+ }
291
+ });
292
+ var config_default_default = defaultConfig;
293
+
294
+ // src/supports.ts
295
+ var properties = [
296
+ "-webkit-line-clamp",
297
+ "accent-color",
298
+ "align-tracks",
299
+ "all",
300
+ "animation",
301
+ "animation-composition",
302
+ "animation-delay",
303
+ "animation-direction",
304
+ "animation-duration",
305
+ "animation-fill-mode",
306
+ "animation-iteration-count",
307
+ "animation-name",
308
+ "animation-play-state",
309
+ "animation-timeline",
310
+ "animation-timing-function",
311
+ "appearance",
312
+ "aspect-ratio",
313
+ "backdrop-filter",
314
+ "backface-visibility",
315
+ "background",
316
+ "background-attachment",
317
+ "background-blend-mode",
318
+ "background-clip",
319
+ "background-color",
320
+ "background-image",
321
+ "background-origin",
322
+ "background-position",
323
+ "background-position-x",
324
+ "background-position-y",
325
+ "background-repeat",
326
+ "background-size",
327
+ "block-overflow",
328
+ "block-size",
329
+ "border",
330
+ "border-style",
331
+ "border-color",
332
+ "border-width",
333
+ "border-top",
334
+ "border-top-color",
335
+ "border-top-style",
336
+ "border-top-width",
337
+ "border-right",
338
+ "border-right-color",
339
+ "border-right-style",
340
+ "border-right-width",
341
+ "border-bottom",
342
+ "border-bottom-color",
343
+ "border-bottom-style",
344
+ "border-bottom-width",
345
+ "border-left",
346
+ "border-left-color",
347
+ "border-left-style",
348
+ "border-left-width",
349
+ "border-block",
350
+ "border-block-width",
351
+ "border-block-style",
352
+ "border-block-color",
353
+ "border-block-start",
354
+ "border-block-end",
355
+ "border-block-start-color",
356
+ "border-block-start-style",
357
+ "border-block-start-width",
358
+ "border-block-end-color",
359
+ "border-block-end-style",
360
+ "border-block-end-width",
361
+ "border-image",
362
+ "border-image-outset",
363
+ "border-image-repeat",
364
+ "border-image-slice",
365
+ "border-image-source",
366
+ "border-image-width",
367
+ "border-inline",
368
+ "border-inline-color",
369
+ "border-inline-style",
370
+ "border-inline-width",
371
+ "border-inline-start",
372
+ "border-inline-end",
373
+ "border-inline-start-color",
374
+ "border-inline-start-style",
375
+ "border-inline-start-width",
376
+ "border-inline-end-color",
377
+ "border-inline-end-style",
378
+ "border-inline-end-width",
379
+ "border-radius",
380
+ "border-top-left-radius",
381
+ "border-top-right-radius",
382
+ "border-bottom-left-radius",
383
+ "border-bottom-right-radius",
384
+ "border-start-end-radius",
385
+ "border-start-start-radius",
386
+ "border-end-end-radius",
387
+ "border-end-start-radius",
388
+ "border-collapse",
389
+ "border-spacing",
390
+ "box-decoration-break",
391
+ "box-shadow",
392
+ "box-sizing",
393
+ "break-after",
394
+ "break-before",
395
+ "break-inside",
396
+ "caption-side",
397
+ "caret",
398
+ "caret-color",
399
+ "caret-shape",
400
+ "clear",
401
+ "clip",
402
+ "clip-path",
403
+ "color",
404
+ "color-scheme",
405
+ "column-fill",
406
+ "column-span",
407
+ "column-rule",
408
+ "column-rule-color",
409
+ "column-rule-style",
410
+ "column-rule-width",
411
+ "columns",
412
+ "column-count",
413
+ "column-width",
414
+ "contain",
415
+ "contain-intrinsic-block-size",
416
+ "contain-intrinsic-height",
417
+ "contain-intrinsic-inline-size",
418
+ "contain-intrinsic-size",
419
+ "contain-intrinsic-width",
420
+ "container",
421
+ "container-name",
422
+ "container-type",
423
+ "content",
424
+ "content-visibility",
425
+ "counter-increment",
426
+ "counter-reset",
427
+ "counter-set",
428
+ "cursor",
429
+ "direction",
430
+ "display",
431
+ "empty-cells",
432
+ "filter",
433
+ "flex",
434
+ "flex-basis",
435
+ "flex-direction",
436
+ "flex-flow",
437
+ "flex-grow",
438
+ "flex-shrink",
439
+ "flex-wrap",
440
+ "float",
441
+ "font",
442
+ "font-family",
443
+ "font-feature-settings",
444
+ "font-kerning",
445
+ "font-language-override",
446
+ "font-optical-sizing",
447
+ "font-palette",
448
+ "font-size",
449
+ "font-size-adjust",
450
+ "font-stretch",
451
+ "font-style",
452
+ "font-synthesis",
453
+ "font-variant",
454
+ "font-variant-alternates",
455
+ "font-variant-caps",
456
+ "font-variant-east-asian",
457
+ "font-variant-emoji",
458
+ "font-variant-ligatures",
459
+ "font-variant-numeric",
460
+ "font-variant-position",
461
+ "font-variation-settings",
462
+ "font-weight",
463
+ "forced-color-adjust",
464
+ "gap",
465
+ "row-gap",
466
+ "column-gap",
467
+ "grid",
468
+ "grid-area",
469
+ "grid-auto-rows",
470
+ "grid-auto-columns",
471
+ "grid-auto-flow",
472
+ "grid-column",
473
+ "grid-column-end",
474
+ "grid-column-start",
475
+ "grid-row",
476
+ "grid-row-end",
477
+ "grid-row-start",
478
+ "grid-template",
479
+ "grid-template-rows",
480
+ "grid-template-columns",
481
+ "grid-template-areas",
482
+ "hanging-punctuation",
483
+ "height",
484
+ "hyphenate-character",
485
+ "hyphenate-limit-chars",
486
+ "hyphens",
487
+ "image-orientation",
488
+ "image-rendering",
489
+ "image-resolution",
490
+ "initial-letter",
491
+ "inline-size",
492
+ "input-security",
493
+ "inset",
494
+ "top",
495
+ "right",
496
+ "bottom",
497
+ "left",
498
+ "inset-block",
499
+ "inset-block-end",
500
+ "inset-block-start",
501
+ "inset-inline",
502
+ "inset-inline-end",
503
+ "inset-inline-start",
504
+ "isolation",
505
+ "justify-tracks",
506
+ "letter-spacing",
507
+ "line-break",
508
+ "line-clamp",
509
+ "line-height",
510
+ "line-height-step",
511
+ "list-style",
512
+ "list-style-image",
513
+ "list-style-position",
514
+ "list-style-type",
515
+ "margin",
516
+ "margin-top",
517
+ "margin-right",
518
+ "margin-bottom",
519
+ "margin-left",
520
+ "margin-block",
521
+ "margin-block-end",
522
+ "margin-block-start",
523
+ "margin-inline",
524
+ "margin-inline-end",
525
+ "margin-inline-start",
526
+ "margin-trim",
527
+ "mask",
528
+ "mask-border",
529
+ "mask-border-mode",
530
+ "mask-border-outset",
531
+ "mask-border-repeat",
532
+ "mask-border-slice",
533
+ "mask-border-source",
534
+ "mask-border-width",
535
+ "mask-clip",
536
+ "mask-composite",
537
+ "mask-image",
538
+ "mask-mode",
539
+ "mask-origin",
540
+ "mask-position",
541
+ "mask-repeat",
542
+ "mask-size",
543
+ "mask-type",
544
+ "math-depth",
545
+ "math-shift",
546
+ "math-style",
547
+ "max-block-size",
548
+ "max-height",
549
+ "max-inline-size",
550
+ "max-lines",
551
+ "max-width",
552
+ "min-block-size",
553
+ "min-height",
554
+ "min-inline-size",
555
+ "min-width",
556
+ "mix-blend-mode",
557
+ "object-fit",
558
+ "object-position",
559
+ "offset",
560
+ "offset-anchor",
561
+ "offset-distance",
562
+ "offset-path",
563
+ "offset-position",
564
+ "offset-rotate",
565
+ "opacity",
566
+ "order",
567
+ "orphans",
568
+ "outline",
569
+ "outline-color",
570
+ "outline-offset",
571
+ "outline-style",
572
+ "outline-width",
573
+ "overflow",
574
+ "overflow-anchor",
575
+ "overflow-block",
576
+ "overflow-clip-margin",
577
+ "overflow-inline",
578
+ "overflow-wrap",
579
+ "overflow-x",
580
+ "overflow-y",
581
+ "overscroll-behavior",
582
+ "overscroll-behavior-block",
583
+ "overscroll-behavior-inline",
584
+ "overscroll-behavior-x",
585
+ "overscroll-behavior-y",
586
+ "padding",
587
+ "padding-top",
588
+ "padding-right",
589
+ "padding-bottom",
590
+ "padding-left",
591
+ "padding-block",
592
+ "padding-block-end",
593
+ "padding-block-start",
594
+ "padding-inline",
595
+ "padding-inline-end",
596
+ "padding-inline-start",
597
+ "page",
598
+ "page-break-after",
599
+ "page-break-before",
600
+ "page-break-inside",
601
+ "paint-order",
602
+ "perspective",
603
+ "perspective-origin",
604
+ "place-content",
605
+ "align-content",
606
+ "justify-content",
607
+ "place-items",
608
+ "align-items",
609
+ "justify-items",
610
+ "place-self",
611
+ "align-self",
612
+ "justify-self",
613
+ "pointer-events",
614
+ "position",
615
+ "print-color-adjust",
616
+ "quotes",
617
+ "resize",
618
+ "rotate",
619
+ "ruby-align",
620
+ "ruby-merge",
621
+ "ruby-position",
622
+ "scale",
623
+ "scroll-behavior",
624
+ "scroll-margin",
625
+ "scroll-margin-top",
626
+ "scroll-margin-right",
627
+ "scroll-margin-bottom",
628
+ "scroll-margin-left",
629
+ "scroll-margin-block",
630
+ "scroll-margin-block-end",
631
+ "scroll-margin-block-start",
632
+ "scroll-margin-inline",
633
+ "scroll-margin-inline-end",
634
+ "scroll-margin-inline-start",
635
+ "scroll-padding",
636
+ "scroll-padding-top",
637
+ "scroll-padding-right",
638
+ "scroll-padding-bottom",
639
+ "scroll-padding-left",
640
+ "scroll-padding-block",
641
+ "scroll-padding-block-end",
642
+ "scroll-padding-block-start",
643
+ "scroll-padding-inline",
644
+ "scroll-padding-inline-end",
645
+ "scroll-padding-inline-start",
646
+ "scroll-snap-align",
647
+ "scroll-snap-stop",
648
+ "scroll-snap-type",
649
+ "scroll-timeline",
650
+ "scroll-timeline-axis",
651
+ "scroll-timeline-name",
652
+ "scrollbar-color",
653
+ "scrollbar-gutter",
654
+ "scrollbar-width",
655
+ "shape-image-threshold",
656
+ "shape-margin",
657
+ "shape-outside",
658
+ "tab-size",
659
+ "table-layout",
660
+ "text-align",
661
+ "text-align-last",
662
+ "text-combine-upright",
663
+ "text-decoration",
664
+ "text-decoration-color",
665
+ "text-decoration-line",
666
+ "text-decoration-style",
667
+ "text-decoration-thickness",
668
+ "text-decoration-skip-ink",
669
+ "text-emphasis",
670
+ "text-emphasis-color",
671
+ "text-emphasis-position",
672
+ "text-emphasis-style",
673
+ "text-indent",
674
+ "text-justify",
675
+ "text-orientation",
676
+ "text-overflow",
677
+ "text-rendering",
678
+ "text-shadow",
679
+ "text-size-adjust",
680
+ "text-transform",
681
+ "text-underline-offset",
682
+ "text-underline-position",
683
+ "touch-action",
684
+ "transform",
685
+ "transform-box",
686
+ "transform-origin",
687
+ "transform-style",
688
+ "transition",
689
+ "transition-delay",
690
+ "transition-duration",
691
+ "transition-property",
692
+ "transition-timing-function",
693
+ "translate",
694
+ "unicode-bidi",
695
+ "user-select",
696
+ "vertical-align",
697
+ "view-transition-name",
698
+ "visibility",
699
+ "white-space",
700
+ "widows",
701
+ "width",
702
+ "will-change",
703
+ "word-break",
704
+ "word-spacing",
705
+ "word-wrap",
706
+ "writing-mode",
707
+ "z-index",
708
+ "zoom"
709
+ ];
710
+ // Annotate the CommonJS export names for ESM import in node:
711
+ 0 && (module.exports = {
712
+ ArbitraryValue,
713
+ GridValue,
714
+ TokenProperty,
715
+ TokenValue,
716
+ arbitraryValue,
717
+ createConfig,
718
+ defaultConfig,
719
+ getTokenPropertyName,
720
+ getTokenValueParts,
721
+ properties,
722
+ tokenProperty,
723
+ tokenValue,
724
+ variantProperty
725
+ });