@tokenami/node 0.0.96--canary.bootstrap.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.
@@ -0,0 +1,2977 @@
1
+ import * as CSS from 'csstype';
2
+ import * as Tokenami from '@tokenami/config';
3
+ import ts from 'typescript/lib/tsserverlibrary.js';
4
+ import * as lightning from 'lightningcss';
5
+
6
+ type Merge<A, B> = B extends never ? A : Omit<A, keyof B> & B;
7
+ interface TokenamiConfig {
8
+ }
9
+ interface TokenamiFinalConfig extends Merge<Tokenami.Config, TokenamiConfig> {
10
+ }
11
+ type ThemeConfig = TokenamiFinalConfig['theme'];
12
+ type AliasConfig = Omit<NonNullable<TokenamiFinalConfig['aliases']>, Tokenami.CSSProperty>;
13
+ type NativePropertyConfig = NonNullable<TokenamiFinalConfig['properties']>;
14
+ type CustomPropertyConfig = NonNullable<TokenamiFinalConfig['customProperties']>;
15
+ type ExperimentalProperty = Exclude<keyof NativePropertyConfig, keyof SupportedTokenPropertiesMap>;
16
+ type PropertyConfig = NativePropertyConfig & CustomPropertyConfig;
17
+ type AliasedProperties = keyof AliasConfig;
18
+ type CustomProperties = (keyof CustomPropertyConfig | ExperimentalProperty) extends `${infer K}` ? K : never;
19
+ type Theme = ThemeConfig extends Tokenami.ThemeModes<infer T> ? T & ThemeConfig['root'] : Omit<ThemeConfig, 'modes' | 'root'>;
20
+ type AliasedPropertiesMap = {
21
+ [A in AliasedProperties as AliasConfig[A][number]]: AliasKey<A>;
22
+ };
23
+ type AliasKey<A extends string> = Tokenami.TokenProperty<A> | Tokenami.VariantProperty<A, string>;
24
+ type AliasedProperty<P extends string> = P extends keyof AliasedPropertiesMap ? AliasedPropertiesMap[P] : never;
25
+ type PropertyThemeValue<P extends string> = P extends keyof PropertyConfig ? NonNullable<PropertyConfig[P]>[number] extends `${infer ThemeKey}` ? Tokenami.ArbitraryValue | CSS.Globals | TokenValue<ThemeKey> : never : P extends keyof Tokenami.CSSProperties ? Tokenami.CSSProperties[P] : never;
26
+ type TokenValue<ThemeKey extends string> = (ThemeKey extends keyof TokensByThemeKey ? TokensByThemeKey[ThemeKey] : never) | (ThemeKey extends 'grid' | 'number' ? Tokenami.GridValue : never);
27
+ type TokensByThemeKey = {
28
+ [K in keyof Theme]: keyof Theme[K] extends `${infer Token}` ? Tokenami.TokenValue<K, Token> : never;
29
+ };
30
+ type AllKeys = Tokenami.TokenProperty<'all'> | Tokenami.VariantProperty<'all', string> | AliasedProperty<'all'>;
31
+ type AnimationKeys = Tokenami.TokenProperty<'animation'> | Tokenami.VariantProperty<'animation', string> | AliasedProperty<'animation'>;
32
+ type AnimationRangeKeys = Tokenami.TokenProperty<'animation-range'> | Tokenami.VariantProperty<'animation-range', string> | AliasedProperty<'animation-range'>;
33
+ type BackgroundKeys = Tokenami.TokenProperty<'background'> | Tokenami.VariantProperty<'background', string> | AliasedProperty<'background'>;
34
+ type BackgroundPositionKeys = Tokenami.TokenProperty<'background-position'> | Tokenami.VariantProperty<'background-position', string> | AliasedProperty<'background-position'>;
35
+ type BorderKeys = Tokenami.TokenProperty<'border'> | Tokenami.VariantProperty<'border', string> | AliasedProperty<'border'>;
36
+ type BorderBottomKeys = Tokenami.TokenProperty<'border-bottom'> | Tokenami.VariantProperty<'border-bottom', string> | AliasedProperty<'border-bottom'>;
37
+ type BorderColorKeys = Tokenami.TokenProperty<'border-color'> | Tokenami.VariantProperty<'border-color', string> | AliasedProperty<'border-color'>;
38
+ type BorderImageKeys = Tokenami.TokenProperty<'border-image'> | Tokenami.VariantProperty<'border-image', string> | AliasedProperty<'border-image'>;
39
+ type BorderLeftKeys = Tokenami.TokenProperty<'border-left'> | Tokenami.VariantProperty<'border-left', string> | AliasedProperty<'border-left'>;
40
+ type BorderRadiusKeys = Tokenami.TokenProperty<'border-radius'> | Tokenami.VariantProperty<'border-radius', string> | AliasedProperty<'border-radius'>;
41
+ type BorderRightKeys = Tokenami.TokenProperty<'border-right'> | Tokenami.VariantProperty<'border-right', string> | AliasedProperty<'border-right'>;
42
+ type BorderStyleKeys = Tokenami.TokenProperty<'border-style'> | Tokenami.VariantProperty<'border-style', string> | AliasedProperty<'border-style'>;
43
+ type BorderTopKeys = Tokenami.TokenProperty<'border-top'> | Tokenami.VariantProperty<'border-top', string> | AliasedProperty<'border-top'>;
44
+ type BorderWidthKeys = Tokenami.TokenProperty<'border-width'> | Tokenami.VariantProperty<'border-width', string> | AliasedProperty<'border-width'>;
45
+ type CaretKeys = Tokenami.TokenProperty<'caret'> | Tokenami.VariantProperty<'caret', string> | AliasedProperty<'caret'>;
46
+ type ColumnRuleKeys = Tokenami.TokenProperty<'column-rule'> | Tokenami.VariantProperty<'column-rule', string> | AliasedProperty<'column-rule'>;
47
+ type ColumnsKeys = Tokenami.TokenProperty<'columns'> | Tokenami.VariantProperty<'columns', string> | AliasedProperty<'columns'>;
48
+ type ContainIntrinsicSizeKeys = Tokenami.TokenProperty<'contain-intrinsic-size'> | Tokenami.VariantProperty<'contain-intrinsic-size', string> | AliasedProperty<'contain-intrinsic-size'>;
49
+ type ContainerKeys = Tokenami.TokenProperty<'container'> | Tokenami.VariantProperty<'container', string> | AliasedProperty<'container'>;
50
+ type FlexKeys = Tokenami.TokenProperty<'flex'> | Tokenami.VariantProperty<'flex', string> | AliasedProperty<'flex'>;
51
+ type FlexFlowKeys = Tokenami.TokenProperty<'flex-flow'> | Tokenami.VariantProperty<'flex-flow', string> | AliasedProperty<'flex-flow'>;
52
+ type FontKeys = Tokenami.TokenProperty<'font'> | Tokenami.VariantProperty<'font', string> | AliasedProperty<'font'>;
53
+ type GapKeys = Tokenami.TokenProperty<'gap'> | Tokenami.VariantProperty<'gap', string> | AliasedProperty<'gap'>;
54
+ type GridKeys = Tokenami.TokenProperty<'grid'> | Tokenami.VariantProperty<'grid', string> | AliasedProperty<'grid'>;
55
+ type GridAreaKeys = Tokenami.TokenProperty<'grid-area'> | Tokenami.VariantProperty<'grid-area', string> | AliasedProperty<'grid-area'>;
56
+ type GridColumnKeys = Tokenami.TokenProperty<'grid-column'> | Tokenami.VariantProperty<'grid-column', string> | AliasedProperty<'grid-column'>;
57
+ type GridRowKeys = Tokenami.TokenProperty<'grid-row'> | Tokenami.VariantProperty<'grid-row', string> | AliasedProperty<'grid-row'>;
58
+ type GridTemplateKeys = Tokenami.TokenProperty<'grid-template'> | Tokenami.VariantProperty<'grid-template', string> | AliasedProperty<'grid-template'>;
59
+ type InsetKeys = Tokenami.TokenProperty<'inset'> | Tokenami.VariantProperty<'inset', string> | AliasedProperty<'inset'>;
60
+ type LineClampKeys = Tokenami.TokenProperty<'line-clamp'> | Tokenami.VariantProperty<'line-clamp', string> | AliasedProperty<'line-clamp'>;
61
+ type ListStyleKeys = Tokenami.TokenProperty<'list-style'> | Tokenami.VariantProperty<'list-style', string> | AliasedProperty<'list-style'>;
62
+ type MarginKeys = Tokenami.TokenProperty<'margin'> | Tokenami.VariantProperty<'margin', string> | AliasedProperty<'margin'>;
63
+ type MaskKeys = Tokenami.TokenProperty<'mask'> | Tokenami.VariantProperty<'mask', string> | AliasedProperty<'mask'>;
64
+ type MaskBorderKeys = Tokenami.TokenProperty<'mask-border'> | Tokenami.VariantProperty<'mask-border', string> | AliasedProperty<'mask-border'>;
65
+ type MotionKeys = Tokenami.TokenProperty<'motion'> | Tokenami.VariantProperty<'motion', string> | AliasedProperty<'motion'>;
66
+ type OffsetKeys = Tokenami.TokenProperty<'offset'> | Tokenami.VariantProperty<'offset', string> | AliasedProperty<'offset'>;
67
+ type OutlineKeys = Tokenami.TokenProperty<'outline'> | Tokenami.VariantProperty<'outline', string> | AliasedProperty<'outline'>;
68
+ type OverflowKeys = Tokenami.TokenProperty<'overflow'> | Tokenami.VariantProperty<'overflow', string> | AliasedProperty<'overflow'>;
69
+ type OverscrollBehaviorKeys = Tokenami.TokenProperty<'overscroll-behavior'> | Tokenami.VariantProperty<'overscroll-behavior', string> | AliasedProperty<'overscroll-behavior'>;
70
+ type PaddingKeys = Tokenami.TokenProperty<'padding'> | Tokenami.VariantProperty<'padding', string> | AliasedProperty<'padding'>;
71
+ type PlaceContentKeys = Tokenami.TokenProperty<'place-content'> | Tokenami.VariantProperty<'place-content', string> | AliasedProperty<'place-content'>;
72
+ type PlaceItemsKeys = Tokenami.TokenProperty<'place-items'> | Tokenami.VariantProperty<'place-items', string> | AliasedProperty<'place-items'>;
73
+ type PlaceSelfKeys = Tokenami.TokenProperty<'place-self'> | Tokenami.VariantProperty<'place-self', string> | AliasedProperty<'place-self'>;
74
+ type ScrollMarginKeys = Tokenami.TokenProperty<'scroll-margin'> | Tokenami.VariantProperty<'scroll-margin', string> | AliasedProperty<'scroll-margin'>;
75
+ type ScrollPaddingKeys = Tokenami.TokenProperty<'scroll-padding'> | Tokenami.VariantProperty<'scroll-padding', string> | AliasedProperty<'scroll-padding'>;
76
+ type ScrollSnapMarginKeys = Tokenami.TokenProperty<'scroll-snap-margin'> | Tokenami.VariantProperty<'scroll-snap-margin', string> | AliasedProperty<'scroll-snap-margin'>;
77
+ type ScrollTimelineKeys = Tokenami.TokenProperty<'scroll-timeline'> | Tokenami.VariantProperty<'scroll-timeline', string> | AliasedProperty<'scroll-timeline'>;
78
+ type TextDecorationKeys = Tokenami.TokenProperty<'text-decoration'> | Tokenami.VariantProperty<'text-decoration', string> | AliasedProperty<'text-decoration'>;
79
+ type TextEmphasisKeys = Tokenami.TokenProperty<'text-emphasis'> | Tokenami.VariantProperty<'text-emphasis', string> | AliasedProperty<'text-emphasis'>;
80
+ type TransitionKeys = Tokenami.TokenProperty<'transition'> | Tokenami.VariantProperty<'transition', string> | AliasedProperty<'transition'>;
81
+ type ViewTimelineKeys = Tokenami.TokenProperty<'view-timeline'> | Tokenami.VariantProperty<'view-timeline', string> | AliasedProperty<'view-timeline'>;
82
+ type AccentColorKeys = Tokenami.TokenProperty<'accent-color'> | Tokenami.VariantProperty<'accent-color', string> | AliasedProperty<'accent-color'>;
83
+ type AlignContentKeys = Tokenami.TokenProperty<'align-content'> | Tokenami.VariantProperty<'align-content', string> | AliasedProperty<'align-content'>;
84
+ type AlignItemsKeys = Tokenami.TokenProperty<'align-items'> | Tokenami.VariantProperty<'align-items', string> | AliasedProperty<'align-items'>;
85
+ type AlignSelfKeys = Tokenami.TokenProperty<'align-self'> | Tokenami.VariantProperty<'align-self', string> | AliasedProperty<'align-self'>;
86
+ type AlignTracksKeys = Tokenami.TokenProperty<'align-tracks'> | Tokenami.VariantProperty<'align-tracks', string> | AliasedProperty<'align-tracks'>;
87
+ type AnimationCompositionKeys = Tokenami.TokenProperty<'animation-composition'> | Tokenami.VariantProperty<'animation-composition', string> | AliasedProperty<'animation-composition'>;
88
+ type AnimationDelayKeys = Tokenami.TokenProperty<'animation-delay'> | Tokenami.VariantProperty<'animation-delay', string> | AliasedProperty<'animation-delay'>;
89
+ type AnimationDirectionKeys = Tokenami.TokenProperty<'animation-direction'> | Tokenami.VariantProperty<'animation-direction', string> | AliasedProperty<'animation-direction'>;
90
+ type AnimationDurationKeys = Tokenami.TokenProperty<'animation-duration'> | Tokenami.VariantProperty<'animation-duration', string> | AliasedProperty<'animation-duration'>;
91
+ type AnimationFillModeKeys = Tokenami.TokenProperty<'animation-fill-mode'> | Tokenami.VariantProperty<'animation-fill-mode', string> | AliasedProperty<'animation-fill-mode'>;
92
+ type AnimationIterationCountKeys = Tokenami.TokenProperty<'animation-iteration-count'> | Tokenami.VariantProperty<'animation-iteration-count', string> | AliasedProperty<'animation-iteration-count'>;
93
+ type AnimationNameKeys = Tokenami.TokenProperty<'animation-name'> | Tokenami.VariantProperty<'animation-name', string> | AliasedProperty<'animation-name'>;
94
+ type AnimationPlayStateKeys = Tokenami.TokenProperty<'animation-play-state'> | Tokenami.VariantProperty<'animation-play-state', string> | AliasedProperty<'animation-play-state'>;
95
+ type AnimationRangeEndKeys = Tokenami.TokenProperty<'animation-range-end'> | Tokenami.VariantProperty<'animation-range-end', string> | AliasedProperty<'animation-range-end'>;
96
+ type AnimationRangeStartKeys = Tokenami.TokenProperty<'animation-range-start'> | Tokenami.VariantProperty<'animation-range-start', string> | AliasedProperty<'animation-range-start'>;
97
+ type AnimationTimelineKeys = Tokenami.TokenProperty<'animation-timeline'> | Tokenami.VariantProperty<'animation-timeline', string> | AliasedProperty<'animation-timeline'>;
98
+ type AnimationTimingFunctionKeys = Tokenami.TokenProperty<'animation-timing-function'> | Tokenami.VariantProperty<'animation-timing-function', string> | AliasedProperty<'animation-timing-function'>;
99
+ type AppearanceKeys = Tokenami.TokenProperty<'appearance'> | Tokenami.VariantProperty<'appearance', string> | AliasedProperty<'appearance'>;
100
+ type AspectRatioKeys = Tokenami.TokenProperty<'aspect-ratio'> | Tokenami.VariantProperty<'aspect-ratio', string> | AliasedProperty<'aspect-ratio'>;
101
+ type BackdropFilterKeys = Tokenami.TokenProperty<'backdrop-filter'> | Tokenami.VariantProperty<'backdrop-filter', string> | AliasedProperty<'backdrop-filter'>;
102
+ type BackfaceVisibilityKeys = Tokenami.TokenProperty<'backface-visibility'> | Tokenami.VariantProperty<'backface-visibility', string> | AliasedProperty<'backface-visibility'>;
103
+ type BackgroundAttachmentKeys = Tokenami.TokenProperty<'background-attachment'> | Tokenami.VariantProperty<'background-attachment', string> | AliasedProperty<'background-attachment'>;
104
+ type BackgroundBlendModeKeys = Tokenami.TokenProperty<'background-blend-mode'> | Tokenami.VariantProperty<'background-blend-mode', string> | AliasedProperty<'background-blend-mode'>;
105
+ type BackgroundClipKeys = Tokenami.TokenProperty<'background-clip'> | Tokenami.VariantProperty<'background-clip', string> | AliasedProperty<'background-clip'>;
106
+ type BackgroundColorKeys = Tokenami.TokenProperty<'background-color'> | Tokenami.VariantProperty<'background-color', string> | AliasedProperty<'background-color'>;
107
+ type BackgroundImageKeys = Tokenami.TokenProperty<'background-image'> | Tokenami.VariantProperty<'background-image', string> | AliasedProperty<'background-image'>;
108
+ type BackgroundOriginKeys = Tokenami.TokenProperty<'background-origin'> | Tokenami.VariantProperty<'background-origin', string> | AliasedProperty<'background-origin'>;
109
+ type BackgroundPositionXKeys = Tokenami.TokenProperty<'background-position-x'> | Tokenami.VariantProperty<'background-position-x', string> | AliasedProperty<'background-position-x'>;
110
+ type BackgroundPositionYKeys = Tokenami.TokenProperty<'background-position-y'> | Tokenami.VariantProperty<'background-position-y', string> | AliasedProperty<'background-position-y'>;
111
+ type BackgroundRepeatKeys = Tokenami.TokenProperty<'background-repeat'> | Tokenami.VariantProperty<'background-repeat', string> | AliasedProperty<'background-repeat'>;
112
+ type BackgroundSizeKeys = Tokenami.TokenProperty<'background-size'> | Tokenami.VariantProperty<'background-size', string> | AliasedProperty<'background-size'>;
113
+ type BorderBottomColorKeys = Tokenami.TokenProperty<'border-bottom-color'> | Tokenami.VariantProperty<'border-bottom-color', string> | AliasedProperty<'border-bottom-color'>;
114
+ type BorderBottomLeftRadiusKeys = Tokenami.TokenProperty<'border-bottom-left-radius'> | Tokenami.VariantProperty<'border-bottom-left-radius', string> | AliasedProperty<'border-bottom-left-radius'>;
115
+ type BorderBottomRightRadiusKeys = Tokenami.TokenProperty<'border-bottom-right-radius'> | Tokenami.VariantProperty<'border-bottom-right-radius', string> | AliasedProperty<'border-bottom-right-radius'>;
116
+ type BorderBottomStyleKeys = Tokenami.TokenProperty<'border-bottom-style'> | Tokenami.VariantProperty<'border-bottom-style', string> | AliasedProperty<'border-bottom-style'>;
117
+ type BorderBottomWidthKeys = Tokenami.TokenProperty<'border-bottom-width'> | Tokenami.VariantProperty<'border-bottom-width', string> | AliasedProperty<'border-bottom-width'>;
118
+ type BorderCollapseKeys = Tokenami.TokenProperty<'border-collapse'> | Tokenami.VariantProperty<'border-collapse', string> | AliasedProperty<'border-collapse'>;
119
+ type BorderEndEndRadiusKeys = Tokenami.TokenProperty<'border-end-end-radius'> | Tokenami.VariantProperty<'border-end-end-radius', string> | AliasedProperty<'border-end-end-radius'>;
120
+ type BorderEndStartRadiusKeys = Tokenami.TokenProperty<'border-end-start-radius'> | Tokenami.VariantProperty<'border-end-start-radius', string> | AliasedProperty<'border-end-start-radius'>;
121
+ type BorderImageOutsetKeys = Tokenami.TokenProperty<'border-image-outset'> | Tokenami.VariantProperty<'border-image-outset', string> | AliasedProperty<'border-image-outset'>;
122
+ type BorderImageRepeatKeys = Tokenami.TokenProperty<'border-image-repeat'> | Tokenami.VariantProperty<'border-image-repeat', string> | AliasedProperty<'border-image-repeat'>;
123
+ type BorderImageSliceKeys = Tokenami.TokenProperty<'border-image-slice'> | Tokenami.VariantProperty<'border-image-slice', string> | AliasedProperty<'border-image-slice'>;
124
+ type BorderImageSourceKeys = Tokenami.TokenProperty<'border-image-source'> | Tokenami.VariantProperty<'border-image-source', string> | AliasedProperty<'border-image-source'>;
125
+ type BorderImageWidthKeys = Tokenami.TokenProperty<'border-image-width'> | Tokenami.VariantProperty<'border-image-width', string> | AliasedProperty<'border-image-width'>;
126
+ type BorderLeftColorKeys = Tokenami.TokenProperty<'border-left-color'> | Tokenami.VariantProperty<'border-left-color', string> | AliasedProperty<'border-left-color'>;
127
+ type BorderLeftStyleKeys = Tokenami.TokenProperty<'border-left-style'> | Tokenami.VariantProperty<'border-left-style', string> | AliasedProperty<'border-left-style'>;
128
+ type BorderLeftWidthKeys = Tokenami.TokenProperty<'border-left-width'> | Tokenami.VariantProperty<'border-left-width', string> | AliasedProperty<'border-left-width'>;
129
+ type BorderRightColorKeys = Tokenami.TokenProperty<'border-right-color'> | Tokenami.VariantProperty<'border-right-color', string> | AliasedProperty<'border-right-color'>;
130
+ type BorderRightStyleKeys = Tokenami.TokenProperty<'border-right-style'> | Tokenami.VariantProperty<'border-right-style', string> | AliasedProperty<'border-right-style'>;
131
+ type BorderRightWidthKeys = Tokenami.TokenProperty<'border-right-width'> | Tokenami.VariantProperty<'border-right-width', string> | AliasedProperty<'border-right-width'>;
132
+ type BorderSpacingKeys = Tokenami.TokenProperty<'border-spacing'> | Tokenami.VariantProperty<'border-spacing', string> | AliasedProperty<'border-spacing'>;
133
+ type BorderStartEndRadiusKeys = Tokenami.TokenProperty<'border-start-end-radius'> | Tokenami.VariantProperty<'border-start-end-radius', string> | AliasedProperty<'border-start-end-radius'>;
134
+ type BorderStartStartRadiusKeys = Tokenami.TokenProperty<'border-start-start-radius'> | Tokenami.VariantProperty<'border-start-start-radius', string> | AliasedProperty<'border-start-start-radius'>;
135
+ type BorderTopColorKeys = Tokenami.TokenProperty<'border-top-color'> | Tokenami.VariantProperty<'border-top-color', string> | AliasedProperty<'border-top-color'>;
136
+ type BorderTopLeftRadiusKeys = Tokenami.TokenProperty<'border-top-left-radius'> | Tokenami.VariantProperty<'border-top-left-radius', string> | AliasedProperty<'border-top-left-radius'>;
137
+ type BorderTopRightRadiusKeys = Tokenami.TokenProperty<'border-top-right-radius'> | Tokenami.VariantProperty<'border-top-right-radius', string> | AliasedProperty<'border-top-right-radius'>;
138
+ type BorderTopStyleKeys = Tokenami.TokenProperty<'border-top-style'> | Tokenami.VariantProperty<'border-top-style', string> | AliasedProperty<'border-top-style'>;
139
+ type BorderTopWidthKeys = Tokenami.TokenProperty<'border-top-width'> | Tokenami.VariantProperty<'border-top-width', string> | AliasedProperty<'border-top-width'>;
140
+ type BottomKeys = Tokenami.TokenProperty<'bottom'> | Tokenami.VariantProperty<'bottom', string> | AliasedProperty<'bottom'>;
141
+ type BoxDecorationBreakKeys = Tokenami.TokenProperty<'box-decoration-break'> | Tokenami.VariantProperty<'box-decoration-break', string> | AliasedProperty<'box-decoration-break'>;
142
+ type BoxShadowKeys = Tokenami.TokenProperty<'box-shadow'> | Tokenami.VariantProperty<'box-shadow', string> | AliasedProperty<'box-shadow'>;
143
+ type BoxSizingKeys = Tokenami.TokenProperty<'box-sizing'> | Tokenami.VariantProperty<'box-sizing', string> | AliasedProperty<'box-sizing'>;
144
+ type BreakAfterKeys = Tokenami.TokenProperty<'break-after'> | Tokenami.VariantProperty<'break-after', string> | AliasedProperty<'break-after'>;
145
+ type BreakBeforeKeys = Tokenami.TokenProperty<'break-before'> | Tokenami.VariantProperty<'break-before', string> | AliasedProperty<'break-before'>;
146
+ type BreakInsideKeys = Tokenami.TokenProperty<'break-inside'> | Tokenami.VariantProperty<'break-inside', string> | AliasedProperty<'break-inside'>;
147
+ type CaptionSideKeys = Tokenami.TokenProperty<'caption-side'> | Tokenami.VariantProperty<'caption-side', string> | AliasedProperty<'caption-side'>;
148
+ type CaretColorKeys = Tokenami.TokenProperty<'caret-color'> | Tokenami.VariantProperty<'caret-color', string> | AliasedProperty<'caret-color'>;
149
+ type CaretShapeKeys = Tokenami.TokenProperty<'caret-shape'> | Tokenami.VariantProperty<'caret-shape', string> | AliasedProperty<'caret-shape'>;
150
+ type ClearKeys = Tokenami.TokenProperty<'clear'> | Tokenami.VariantProperty<'clear', string> | AliasedProperty<'clear'>;
151
+ type ClipPathKeys = Tokenami.TokenProperty<'clip-path'> | Tokenami.VariantProperty<'clip-path', string> | AliasedProperty<'clip-path'>;
152
+ type ColorKeys = Tokenami.TokenProperty<'color'> | Tokenami.VariantProperty<'color', string> | AliasedProperty<'color'>;
153
+ type ColorAdjustKeys = Tokenami.TokenProperty<'color-adjust'> | Tokenami.VariantProperty<'color-adjust', string> | AliasedProperty<'color-adjust'>;
154
+ type ColorSchemeKeys = Tokenami.TokenProperty<'color-scheme'> | Tokenami.VariantProperty<'color-scheme', string> | AliasedProperty<'color-scheme'>;
155
+ type ColumnCountKeys = Tokenami.TokenProperty<'column-count'> | Tokenami.VariantProperty<'column-count', string> | AliasedProperty<'column-count'>;
156
+ type ColumnFillKeys = Tokenami.TokenProperty<'column-fill'> | Tokenami.VariantProperty<'column-fill', string> | AliasedProperty<'column-fill'>;
157
+ type ColumnGapKeys = Tokenami.TokenProperty<'column-gap'> | Tokenami.VariantProperty<'column-gap', string> | AliasedProperty<'column-gap'>;
158
+ type ColumnRuleColorKeys = Tokenami.TokenProperty<'column-rule-color'> | Tokenami.VariantProperty<'column-rule-color', string> | AliasedProperty<'column-rule-color'>;
159
+ type ColumnRuleStyleKeys = Tokenami.TokenProperty<'column-rule-style'> | Tokenami.VariantProperty<'column-rule-style', string> | AliasedProperty<'column-rule-style'>;
160
+ type ColumnRuleWidthKeys = Tokenami.TokenProperty<'column-rule-width'> | Tokenami.VariantProperty<'column-rule-width', string> | AliasedProperty<'column-rule-width'>;
161
+ type ColumnSpanKeys = Tokenami.TokenProperty<'column-span'> | Tokenami.VariantProperty<'column-span', string> | AliasedProperty<'column-span'>;
162
+ type ColumnWidthKeys = Tokenami.TokenProperty<'column-width'> | Tokenami.VariantProperty<'column-width', string> | AliasedProperty<'column-width'>;
163
+ type ContainKeys = Tokenami.TokenProperty<'contain'> | Tokenami.VariantProperty<'contain', string> | AliasedProperty<'contain'>;
164
+ type ContainIntrinsicHeightKeys = Tokenami.TokenProperty<'contain-intrinsic-height'> | Tokenami.VariantProperty<'contain-intrinsic-height', string> | AliasedProperty<'contain-intrinsic-height'>;
165
+ type ContainIntrinsicWidthKeys = Tokenami.TokenProperty<'contain-intrinsic-width'> | Tokenami.VariantProperty<'contain-intrinsic-width', string> | AliasedProperty<'contain-intrinsic-width'>;
166
+ type ContainerNameKeys = Tokenami.TokenProperty<'container-name'> | Tokenami.VariantProperty<'container-name', string> | AliasedProperty<'container-name'>;
167
+ type ContainerTypeKeys = Tokenami.TokenProperty<'container-type'> | Tokenami.VariantProperty<'container-type', string> | AliasedProperty<'container-type'>;
168
+ type ContentKeys = Tokenami.TokenProperty<'content'> | Tokenami.VariantProperty<'content', string> | AliasedProperty<'content'>;
169
+ type ContentVisibilityKeys = Tokenami.TokenProperty<'content-visibility'> | Tokenami.VariantProperty<'content-visibility', string> | AliasedProperty<'content-visibility'>;
170
+ type CounterIncrementKeys = Tokenami.TokenProperty<'counter-increment'> | Tokenami.VariantProperty<'counter-increment', string> | AliasedProperty<'counter-increment'>;
171
+ type CounterResetKeys = Tokenami.TokenProperty<'counter-reset'> | Tokenami.VariantProperty<'counter-reset', string> | AliasedProperty<'counter-reset'>;
172
+ type CounterSetKeys = Tokenami.TokenProperty<'counter-set'> | Tokenami.VariantProperty<'counter-set', string> | AliasedProperty<'counter-set'>;
173
+ type CursorKeys = Tokenami.TokenProperty<'cursor'> | Tokenami.VariantProperty<'cursor', string> | AliasedProperty<'cursor'>;
174
+ type DirectionKeys = Tokenami.TokenProperty<'direction'> | Tokenami.VariantProperty<'direction', string> | AliasedProperty<'direction'>;
175
+ type DisplayKeys = Tokenami.TokenProperty<'display'> | Tokenami.VariantProperty<'display', string> | AliasedProperty<'display'>;
176
+ type EmptyCellsKeys = Tokenami.TokenProperty<'empty-cells'> | Tokenami.VariantProperty<'empty-cells', string> | AliasedProperty<'empty-cells'>;
177
+ type FilterKeys = Tokenami.TokenProperty<'filter'> | Tokenami.VariantProperty<'filter', string> | AliasedProperty<'filter'>;
178
+ type FlexBasisKeys = Tokenami.TokenProperty<'flex-basis'> | Tokenami.VariantProperty<'flex-basis', string> | AliasedProperty<'flex-basis'>;
179
+ type FlexDirectionKeys = Tokenami.TokenProperty<'flex-direction'> | Tokenami.VariantProperty<'flex-direction', string> | AliasedProperty<'flex-direction'>;
180
+ type FlexGrowKeys = Tokenami.TokenProperty<'flex-grow'> | Tokenami.VariantProperty<'flex-grow', string> | AliasedProperty<'flex-grow'>;
181
+ type FlexShrinkKeys = Tokenami.TokenProperty<'flex-shrink'> | Tokenami.VariantProperty<'flex-shrink', string> | AliasedProperty<'flex-shrink'>;
182
+ type FlexWrapKeys = Tokenami.TokenProperty<'flex-wrap'> | Tokenami.VariantProperty<'flex-wrap', string> | AliasedProperty<'flex-wrap'>;
183
+ type FloatKeys = Tokenami.TokenProperty<'float'> | Tokenami.VariantProperty<'float', string> | AliasedProperty<'float'>;
184
+ type FontFamilyKeys = Tokenami.TokenProperty<'font-family'> | Tokenami.VariantProperty<'font-family', string> | AliasedProperty<'font-family'>;
185
+ type FontFeatureSettingsKeys = Tokenami.TokenProperty<'font-feature-settings'> | Tokenami.VariantProperty<'font-feature-settings', string> | AliasedProperty<'font-feature-settings'>;
186
+ type FontKerningKeys = Tokenami.TokenProperty<'font-kerning'> | Tokenami.VariantProperty<'font-kerning', string> | AliasedProperty<'font-kerning'>;
187
+ type FontLanguageOverrideKeys = Tokenami.TokenProperty<'font-language-override'> | Tokenami.VariantProperty<'font-language-override', string> | AliasedProperty<'font-language-override'>;
188
+ type FontOpticalSizingKeys = Tokenami.TokenProperty<'font-optical-sizing'> | Tokenami.VariantProperty<'font-optical-sizing', string> | AliasedProperty<'font-optical-sizing'>;
189
+ type FontPaletteKeys = Tokenami.TokenProperty<'font-palette'> | Tokenami.VariantProperty<'font-palette', string> | AliasedProperty<'font-palette'>;
190
+ type FontSizeKeys = Tokenami.TokenProperty<'font-size'> | Tokenami.VariantProperty<'font-size', string> | AliasedProperty<'font-size'>;
191
+ type FontSizeAdjustKeys = Tokenami.TokenProperty<'font-size-adjust'> | Tokenami.VariantProperty<'font-size-adjust', string> | AliasedProperty<'font-size-adjust'>;
192
+ type FontSmoothKeys = Tokenami.TokenProperty<'font-smooth'> | Tokenami.VariantProperty<'font-smooth', string> | AliasedProperty<'font-smooth'>;
193
+ type FontStretchKeys = Tokenami.TokenProperty<'font-stretch'> | Tokenami.VariantProperty<'font-stretch', string> | AliasedProperty<'font-stretch'>;
194
+ type FontStyleKeys = Tokenami.TokenProperty<'font-style'> | Tokenami.VariantProperty<'font-style', string> | AliasedProperty<'font-style'>;
195
+ type FontSynthesisKeys = Tokenami.TokenProperty<'font-synthesis'> | Tokenami.VariantProperty<'font-synthesis', string> | AliasedProperty<'font-synthesis'>;
196
+ type FontSynthesisPositionKeys = Tokenami.TokenProperty<'font-synthesis-position'> | Tokenami.VariantProperty<'font-synthesis-position', string> | AliasedProperty<'font-synthesis-position'>;
197
+ type FontSynthesisSmallCapsKeys = Tokenami.TokenProperty<'font-synthesis-small-caps'> | Tokenami.VariantProperty<'font-synthesis-small-caps', string> | AliasedProperty<'font-synthesis-small-caps'>;
198
+ type FontSynthesisStyleKeys = Tokenami.TokenProperty<'font-synthesis-style'> | Tokenami.VariantProperty<'font-synthesis-style', string> | AliasedProperty<'font-synthesis-style'>;
199
+ type FontSynthesisWeightKeys = Tokenami.TokenProperty<'font-synthesis-weight'> | Tokenami.VariantProperty<'font-synthesis-weight', string> | AliasedProperty<'font-synthesis-weight'>;
200
+ type FontVariantKeys = Tokenami.TokenProperty<'font-variant'> | Tokenami.VariantProperty<'font-variant', string> | AliasedProperty<'font-variant'>;
201
+ type FontVariantAlternatesKeys = Tokenami.TokenProperty<'font-variant-alternates'> | Tokenami.VariantProperty<'font-variant-alternates', string> | AliasedProperty<'font-variant-alternates'>;
202
+ type FontVariantCapsKeys = Tokenami.TokenProperty<'font-variant-caps'> | Tokenami.VariantProperty<'font-variant-caps', string> | AliasedProperty<'font-variant-caps'>;
203
+ type FontVariantEastAsianKeys = Tokenami.TokenProperty<'font-variant-east-asian'> | Tokenami.VariantProperty<'font-variant-east-asian', string> | AliasedProperty<'font-variant-east-asian'>;
204
+ type FontVariantEmojiKeys = Tokenami.TokenProperty<'font-variant-emoji'> | Tokenami.VariantProperty<'font-variant-emoji', string> | AliasedProperty<'font-variant-emoji'>;
205
+ type FontVariantLigaturesKeys = Tokenami.TokenProperty<'font-variant-ligatures'> | Tokenami.VariantProperty<'font-variant-ligatures', string> | AliasedProperty<'font-variant-ligatures'>;
206
+ type FontVariantNumericKeys = Tokenami.TokenProperty<'font-variant-numeric'> | Tokenami.VariantProperty<'font-variant-numeric', string> | AliasedProperty<'font-variant-numeric'>;
207
+ type FontVariantPositionKeys = Tokenami.TokenProperty<'font-variant-position'> | Tokenami.VariantProperty<'font-variant-position', string> | AliasedProperty<'font-variant-position'>;
208
+ type FontVariationSettingsKeys = Tokenami.TokenProperty<'font-variation-settings'> | Tokenami.VariantProperty<'font-variation-settings', string> | AliasedProperty<'font-variation-settings'>;
209
+ type FontWeightKeys = Tokenami.TokenProperty<'font-weight'> | Tokenami.VariantProperty<'font-weight', string> | AliasedProperty<'font-weight'>;
210
+ type ForcedColorAdjustKeys = Tokenami.TokenProperty<'forced-color-adjust'> | Tokenami.VariantProperty<'forced-color-adjust', string> | AliasedProperty<'forced-color-adjust'>;
211
+ type GridAutoColumnsKeys = Tokenami.TokenProperty<'grid-auto-columns'> | Tokenami.VariantProperty<'grid-auto-columns', string> | AliasedProperty<'grid-auto-columns'>;
212
+ type GridAutoFlowKeys = Tokenami.TokenProperty<'grid-auto-flow'> | Tokenami.VariantProperty<'grid-auto-flow', string> | AliasedProperty<'grid-auto-flow'>;
213
+ type GridAutoRowsKeys = Tokenami.TokenProperty<'grid-auto-rows'> | Tokenami.VariantProperty<'grid-auto-rows', string> | AliasedProperty<'grid-auto-rows'>;
214
+ type GridColumnEndKeys = Tokenami.TokenProperty<'grid-column-end'> | Tokenami.VariantProperty<'grid-column-end', string> | AliasedProperty<'grid-column-end'>;
215
+ type GridColumnStartKeys = Tokenami.TokenProperty<'grid-column-start'> | Tokenami.VariantProperty<'grid-column-start', string> | AliasedProperty<'grid-column-start'>;
216
+ type GridRowEndKeys = Tokenami.TokenProperty<'grid-row-end'> | Tokenami.VariantProperty<'grid-row-end', string> | AliasedProperty<'grid-row-end'>;
217
+ type GridRowStartKeys = Tokenami.TokenProperty<'grid-row-start'> | Tokenami.VariantProperty<'grid-row-start', string> | AliasedProperty<'grid-row-start'>;
218
+ type GridTemplateAreasKeys = Tokenami.TokenProperty<'grid-template-areas'> | Tokenami.VariantProperty<'grid-template-areas', string> | AliasedProperty<'grid-template-areas'>;
219
+ type GridTemplateColumnsKeys = Tokenami.TokenProperty<'grid-template-columns'> | Tokenami.VariantProperty<'grid-template-columns', string> | AliasedProperty<'grid-template-columns'>;
220
+ type GridTemplateRowsKeys = Tokenami.TokenProperty<'grid-template-rows'> | Tokenami.VariantProperty<'grid-template-rows', string> | AliasedProperty<'grid-template-rows'>;
221
+ type HangingPunctuationKeys = Tokenami.TokenProperty<'hanging-punctuation'> | Tokenami.VariantProperty<'hanging-punctuation', string> | AliasedProperty<'hanging-punctuation'>;
222
+ type HeightKeys = Tokenami.TokenProperty<'height'> | Tokenami.VariantProperty<'height', string> | AliasedProperty<'height'>;
223
+ type HyphenateCharacterKeys = Tokenami.TokenProperty<'hyphenate-character'> | Tokenami.VariantProperty<'hyphenate-character', string> | AliasedProperty<'hyphenate-character'>;
224
+ type HyphenateLimitCharsKeys = Tokenami.TokenProperty<'hyphenate-limit-chars'> | Tokenami.VariantProperty<'hyphenate-limit-chars', string> | AliasedProperty<'hyphenate-limit-chars'>;
225
+ type HyphensKeys = Tokenami.TokenProperty<'hyphens'> | Tokenami.VariantProperty<'hyphens', string> | AliasedProperty<'hyphens'>;
226
+ type ImageOrientationKeys = Tokenami.TokenProperty<'image-orientation'> | Tokenami.VariantProperty<'image-orientation', string> | AliasedProperty<'image-orientation'>;
227
+ type ImageRenderingKeys = Tokenami.TokenProperty<'image-rendering'> | Tokenami.VariantProperty<'image-rendering', string> | AliasedProperty<'image-rendering'>;
228
+ type ImageResolutionKeys = Tokenami.TokenProperty<'image-resolution'> | Tokenami.VariantProperty<'image-resolution', string> | AliasedProperty<'image-resolution'>;
229
+ type InitialLetterKeys = Tokenami.TokenProperty<'initial-letter'> | Tokenami.VariantProperty<'initial-letter', string> | AliasedProperty<'initial-letter'>;
230
+ type InputSecurityKeys = Tokenami.TokenProperty<'input-security'> | Tokenami.VariantProperty<'input-security', string> | AliasedProperty<'input-security'>;
231
+ type IsolationKeys = Tokenami.TokenProperty<'isolation'> | Tokenami.VariantProperty<'isolation', string> | AliasedProperty<'isolation'>;
232
+ type JustifyContentKeys = Tokenami.TokenProperty<'justify-content'> | Tokenami.VariantProperty<'justify-content', string> | AliasedProperty<'justify-content'>;
233
+ type JustifyItemsKeys = Tokenami.TokenProperty<'justify-items'> | Tokenami.VariantProperty<'justify-items', string> | AliasedProperty<'justify-items'>;
234
+ type JustifySelfKeys = Tokenami.TokenProperty<'justify-self'> | Tokenami.VariantProperty<'justify-self', string> | AliasedProperty<'justify-self'>;
235
+ type JustifyTracksKeys = Tokenami.TokenProperty<'justify-tracks'> | Tokenami.VariantProperty<'justify-tracks', string> | AliasedProperty<'justify-tracks'>;
236
+ type LeftKeys = Tokenami.TokenProperty<'left'> | Tokenami.VariantProperty<'left', string> | AliasedProperty<'left'>;
237
+ type LetterSpacingKeys = Tokenami.TokenProperty<'letter-spacing'> | Tokenami.VariantProperty<'letter-spacing', string> | AliasedProperty<'letter-spacing'>;
238
+ type LineBreakKeys = Tokenami.TokenProperty<'line-break'> | Tokenami.VariantProperty<'line-break', string> | AliasedProperty<'line-break'>;
239
+ type LineHeightKeys = Tokenami.TokenProperty<'line-height'> | Tokenami.VariantProperty<'line-height', string> | AliasedProperty<'line-height'>;
240
+ type LineHeightStepKeys = Tokenami.TokenProperty<'line-height-step'> | Tokenami.VariantProperty<'line-height-step', string> | AliasedProperty<'line-height-step'>;
241
+ type ListStyleImageKeys = Tokenami.TokenProperty<'list-style-image'> | Tokenami.VariantProperty<'list-style-image', string> | AliasedProperty<'list-style-image'>;
242
+ type ListStylePositionKeys = Tokenami.TokenProperty<'list-style-position'> | Tokenami.VariantProperty<'list-style-position', string> | AliasedProperty<'list-style-position'>;
243
+ type ListStyleTypeKeys = Tokenami.TokenProperty<'list-style-type'> | Tokenami.VariantProperty<'list-style-type', string> | AliasedProperty<'list-style-type'>;
244
+ type MarginBottomKeys = Tokenami.TokenProperty<'margin-bottom'> | Tokenami.VariantProperty<'margin-bottom', string> | AliasedProperty<'margin-bottom'>;
245
+ type MarginLeftKeys = Tokenami.TokenProperty<'margin-left'> | Tokenami.VariantProperty<'margin-left', string> | AliasedProperty<'margin-left'>;
246
+ type MarginRightKeys = Tokenami.TokenProperty<'margin-right'> | Tokenami.VariantProperty<'margin-right', string> | AliasedProperty<'margin-right'>;
247
+ type MarginTopKeys = Tokenami.TokenProperty<'margin-top'> | Tokenami.VariantProperty<'margin-top', string> | AliasedProperty<'margin-top'>;
248
+ type MarginTrimKeys = Tokenami.TokenProperty<'margin-trim'> | Tokenami.VariantProperty<'margin-trim', string> | AliasedProperty<'margin-trim'>;
249
+ type MaskBorderModeKeys = Tokenami.TokenProperty<'mask-border-mode'> | Tokenami.VariantProperty<'mask-border-mode', string> | AliasedProperty<'mask-border-mode'>;
250
+ type MaskBorderOutsetKeys = Tokenami.TokenProperty<'mask-border-outset'> | Tokenami.VariantProperty<'mask-border-outset', string> | AliasedProperty<'mask-border-outset'>;
251
+ type MaskBorderRepeatKeys = Tokenami.TokenProperty<'mask-border-repeat'> | Tokenami.VariantProperty<'mask-border-repeat', string> | AliasedProperty<'mask-border-repeat'>;
252
+ type MaskBorderSliceKeys = Tokenami.TokenProperty<'mask-border-slice'> | Tokenami.VariantProperty<'mask-border-slice', string> | AliasedProperty<'mask-border-slice'>;
253
+ type MaskBorderSourceKeys = Tokenami.TokenProperty<'mask-border-source'> | Tokenami.VariantProperty<'mask-border-source', string> | AliasedProperty<'mask-border-source'>;
254
+ type MaskBorderWidthKeys = Tokenami.TokenProperty<'mask-border-width'> | Tokenami.VariantProperty<'mask-border-width', string> | AliasedProperty<'mask-border-width'>;
255
+ type MaskClipKeys = Tokenami.TokenProperty<'mask-clip'> | Tokenami.VariantProperty<'mask-clip', string> | AliasedProperty<'mask-clip'>;
256
+ type MaskCompositeKeys = Tokenami.TokenProperty<'mask-composite'> | Tokenami.VariantProperty<'mask-composite', string> | AliasedProperty<'mask-composite'>;
257
+ type MaskImageKeys = Tokenami.TokenProperty<'mask-image'> | Tokenami.VariantProperty<'mask-image', string> | AliasedProperty<'mask-image'>;
258
+ type MaskModeKeys = Tokenami.TokenProperty<'mask-mode'> | Tokenami.VariantProperty<'mask-mode', string> | AliasedProperty<'mask-mode'>;
259
+ type MaskOriginKeys = Tokenami.TokenProperty<'mask-origin'> | Tokenami.VariantProperty<'mask-origin', string> | AliasedProperty<'mask-origin'>;
260
+ type MaskPositionKeys = Tokenami.TokenProperty<'mask-position'> | Tokenami.VariantProperty<'mask-position', string> | AliasedProperty<'mask-position'>;
261
+ type MaskRepeatKeys = Tokenami.TokenProperty<'mask-repeat'> | Tokenami.VariantProperty<'mask-repeat', string> | AliasedProperty<'mask-repeat'>;
262
+ type MaskSizeKeys = Tokenami.TokenProperty<'mask-size'> | Tokenami.VariantProperty<'mask-size', string> | AliasedProperty<'mask-size'>;
263
+ type MaskTypeKeys = Tokenami.TokenProperty<'mask-type'> | Tokenami.VariantProperty<'mask-type', string> | AliasedProperty<'mask-type'>;
264
+ type MasonryAutoFlowKeys = Tokenami.TokenProperty<'masonry-auto-flow'> | Tokenami.VariantProperty<'masonry-auto-flow', string> | AliasedProperty<'masonry-auto-flow'>;
265
+ type MathDepthKeys = Tokenami.TokenProperty<'math-depth'> | Tokenami.VariantProperty<'math-depth', string> | AliasedProperty<'math-depth'>;
266
+ type MathShiftKeys = Tokenami.TokenProperty<'math-shift'> | Tokenami.VariantProperty<'math-shift', string> | AliasedProperty<'math-shift'>;
267
+ type MathStyleKeys = Tokenami.TokenProperty<'math-style'> | Tokenami.VariantProperty<'math-style', string> | AliasedProperty<'math-style'>;
268
+ type MaxHeightKeys = Tokenami.TokenProperty<'max-height'> | Tokenami.VariantProperty<'max-height', string> | AliasedProperty<'max-height'>;
269
+ type MaxLinesKeys = Tokenami.TokenProperty<'max-lines'> | Tokenami.VariantProperty<'max-lines', string> | AliasedProperty<'max-lines'>;
270
+ type MaxWidthKeys = Tokenami.TokenProperty<'max-width'> | Tokenami.VariantProperty<'max-width', string> | AliasedProperty<'max-width'>;
271
+ type MinHeightKeys = Tokenami.TokenProperty<'min-height'> | Tokenami.VariantProperty<'min-height', string> | AliasedProperty<'min-height'>;
272
+ type MinWidthKeys = Tokenami.TokenProperty<'min-width'> | Tokenami.VariantProperty<'min-width', string> | AliasedProperty<'min-width'>;
273
+ type MixBlendModeKeys = Tokenami.TokenProperty<'mix-blend-mode'> | Tokenami.VariantProperty<'mix-blend-mode', string> | AliasedProperty<'mix-blend-mode'>;
274
+ type MotionDistanceKeys = Tokenami.TokenProperty<'motion-distance'> | Tokenami.VariantProperty<'motion-distance', string> | AliasedProperty<'motion-distance'>;
275
+ type MotionPathKeys = Tokenami.TokenProperty<'motion-path'> | Tokenami.VariantProperty<'motion-path', string> | AliasedProperty<'motion-path'>;
276
+ type MotionRotationKeys = Tokenami.TokenProperty<'motion-rotation'> | Tokenami.VariantProperty<'motion-rotation', string> | AliasedProperty<'motion-rotation'>;
277
+ type ObjectFitKeys = Tokenami.TokenProperty<'object-fit'> | Tokenami.VariantProperty<'object-fit', string> | AliasedProperty<'object-fit'>;
278
+ type ObjectPositionKeys = Tokenami.TokenProperty<'object-position'> | Tokenami.VariantProperty<'object-position', string> | AliasedProperty<'object-position'>;
279
+ type OffsetAnchorKeys = Tokenami.TokenProperty<'offset-anchor'> | Tokenami.VariantProperty<'offset-anchor', string> | AliasedProperty<'offset-anchor'>;
280
+ type OffsetDistanceKeys = Tokenami.TokenProperty<'offset-distance'> | Tokenami.VariantProperty<'offset-distance', string> | AliasedProperty<'offset-distance'>;
281
+ type OffsetPathKeys = Tokenami.TokenProperty<'offset-path'> | Tokenami.VariantProperty<'offset-path', string> | AliasedProperty<'offset-path'>;
282
+ type OffsetPositionKeys = Tokenami.TokenProperty<'offset-position'> | Tokenami.VariantProperty<'offset-position', string> | AliasedProperty<'offset-position'>;
283
+ type OffsetRotateKeys = Tokenami.TokenProperty<'offset-rotate'> | Tokenami.VariantProperty<'offset-rotate', string> | AliasedProperty<'offset-rotate'>;
284
+ type OffsetRotationKeys = Tokenami.TokenProperty<'offset-rotation'> | Tokenami.VariantProperty<'offset-rotation', string> | AliasedProperty<'offset-rotation'>;
285
+ type OpacityKeys = Tokenami.TokenProperty<'opacity'> | Tokenami.VariantProperty<'opacity', string> | AliasedProperty<'opacity'>;
286
+ type OrderKeys = Tokenami.TokenProperty<'order'> | Tokenami.VariantProperty<'order', string> | AliasedProperty<'order'>;
287
+ type OrphansKeys = Tokenami.TokenProperty<'orphans'> | Tokenami.VariantProperty<'orphans', string> | AliasedProperty<'orphans'>;
288
+ type OutlineColorKeys = Tokenami.TokenProperty<'outline-color'> | Tokenami.VariantProperty<'outline-color', string> | AliasedProperty<'outline-color'>;
289
+ type OutlineOffsetKeys = Tokenami.TokenProperty<'outline-offset'> | Tokenami.VariantProperty<'outline-offset', string> | AliasedProperty<'outline-offset'>;
290
+ type OutlineStyleKeys = Tokenami.TokenProperty<'outline-style'> | Tokenami.VariantProperty<'outline-style', string> | AliasedProperty<'outline-style'>;
291
+ type OutlineWidthKeys = Tokenami.TokenProperty<'outline-width'> | Tokenami.VariantProperty<'outline-width', string> | AliasedProperty<'outline-width'>;
292
+ type OverflowAnchorKeys = Tokenami.TokenProperty<'overflow-anchor'> | Tokenami.VariantProperty<'overflow-anchor', string> | AliasedProperty<'overflow-anchor'>;
293
+ type OverflowClipBoxKeys = Tokenami.TokenProperty<'overflow-clip-box'> | Tokenami.VariantProperty<'overflow-clip-box', string> | AliasedProperty<'overflow-clip-box'>;
294
+ type OverflowClipMarginKeys = Tokenami.TokenProperty<'overflow-clip-margin'> | Tokenami.VariantProperty<'overflow-clip-margin', string> | AliasedProperty<'overflow-clip-margin'>;
295
+ type OverflowWrapKeys = Tokenami.TokenProperty<'overflow-wrap'> | Tokenami.VariantProperty<'overflow-wrap', string> | AliasedProperty<'overflow-wrap'>;
296
+ type OverflowXKeys = Tokenami.TokenProperty<'overflow-x'> | Tokenami.VariantProperty<'overflow-x', string> | AliasedProperty<'overflow-x'>;
297
+ type OverflowYKeys = Tokenami.TokenProperty<'overflow-y'> | Tokenami.VariantProperty<'overflow-y', string> | AliasedProperty<'overflow-y'>;
298
+ type OverlayKeys = Tokenami.TokenProperty<'overlay'> | Tokenami.VariantProperty<'overlay', string> | AliasedProperty<'overlay'>;
299
+ type OverscrollBehaviorXKeys = Tokenami.TokenProperty<'overscroll-behavior-x'> | Tokenami.VariantProperty<'overscroll-behavior-x', string> | AliasedProperty<'overscroll-behavior-x'>;
300
+ type OverscrollBehaviorYKeys = Tokenami.TokenProperty<'overscroll-behavior-y'> | Tokenami.VariantProperty<'overscroll-behavior-y', string> | AliasedProperty<'overscroll-behavior-y'>;
301
+ type PaddingBottomKeys = Tokenami.TokenProperty<'padding-bottom'> | Tokenami.VariantProperty<'padding-bottom', string> | AliasedProperty<'padding-bottom'>;
302
+ type PaddingLeftKeys = Tokenami.TokenProperty<'padding-left'> | Tokenami.VariantProperty<'padding-left', string> | AliasedProperty<'padding-left'>;
303
+ type PaddingRightKeys = Tokenami.TokenProperty<'padding-right'> | Tokenami.VariantProperty<'padding-right', string> | AliasedProperty<'padding-right'>;
304
+ type PaddingTopKeys = Tokenami.TokenProperty<'padding-top'> | Tokenami.VariantProperty<'padding-top', string> | AliasedProperty<'padding-top'>;
305
+ type PageKeys = Tokenami.TokenProperty<'page'> | Tokenami.VariantProperty<'page', string> | AliasedProperty<'page'>;
306
+ type PageBreakAfterKeys = Tokenami.TokenProperty<'page-break-after'> | Tokenami.VariantProperty<'page-break-after', string> | AliasedProperty<'page-break-after'>;
307
+ type PageBreakBeforeKeys = Tokenami.TokenProperty<'page-break-before'> | Tokenami.VariantProperty<'page-break-before', string> | AliasedProperty<'page-break-before'>;
308
+ type PageBreakInsideKeys = Tokenami.TokenProperty<'page-break-inside'> | Tokenami.VariantProperty<'page-break-inside', string> | AliasedProperty<'page-break-inside'>;
309
+ type PaintOrderKeys = Tokenami.TokenProperty<'paint-order'> | Tokenami.VariantProperty<'paint-order', string> | AliasedProperty<'paint-order'>;
310
+ type PerspectiveKeys = Tokenami.TokenProperty<'perspective'> | Tokenami.VariantProperty<'perspective', string> | AliasedProperty<'perspective'>;
311
+ type PerspectiveOriginKeys = Tokenami.TokenProperty<'perspective-origin'> | Tokenami.VariantProperty<'perspective-origin', string> | AliasedProperty<'perspective-origin'>;
312
+ type PointerEventsKeys = Tokenami.TokenProperty<'pointer-events'> | Tokenami.VariantProperty<'pointer-events', string> | AliasedProperty<'pointer-events'>;
313
+ type PositionKeys = Tokenami.TokenProperty<'position'> | Tokenami.VariantProperty<'position', string> | AliasedProperty<'position'>;
314
+ type PrintColorAdjustKeys = Tokenami.TokenProperty<'print-color-adjust'> | Tokenami.VariantProperty<'print-color-adjust', string> | AliasedProperty<'print-color-adjust'>;
315
+ type QuotesKeys = Tokenami.TokenProperty<'quotes'> | Tokenami.VariantProperty<'quotes', string> | AliasedProperty<'quotes'>;
316
+ type ResizeKeys = Tokenami.TokenProperty<'resize'> | Tokenami.VariantProperty<'resize', string> | AliasedProperty<'resize'>;
317
+ type RightKeys = Tokenami.TokenProperty<'right'> | Tokenami.VariantProperty<'right', string> | AliasedProperty<'right'>;
318
+ type RotateKeys = Tokenami.TokenProperty<'rotate'> | Tokenami.VariantProperty<'rotate', string> | AliasedProperty<'rotate'>;
319
+ type RowGapKeys = Tokenami.TokenProperty<'row-gap'> | Tokenami.VariantProperty<'row-gap', string> | AliasedProperty<'row-gap'>;
320
+ type RubyAlignKeys = Tokenami.TokenProperty<'ruby-align'> | Tokenami.VariantProperty<'ruby-align', string> | AliasedProperty<'ruby-align'>;
321
+ type RubyMergeKeys = Tokenami.TokenProperty<'ruby-merge'> | Tokenami.VariantProperty<'ruby-merge', string> | AliasedProperty<'ruby-merge'>;
322
+ type RubyPositionKeys = Tokenami.TokenProperty<'ruby-position'> | Tokenami.VariantProperty<'ruby-position', string> | AliasedProperty<'ruby-position'>;
323
+ type ScaleKeys = Tokenami.TokenProperty<'scale'> | Tokenami.VariantProperty<'scale', string> | AliasedProperty<'scale'>;
324
+ type ScrollBehaviorKeys = Tokenami.TokenProperty<'scroll-behavior'> | Tokenami.VariantProperty<'scroll-behavior', string> | AliasedProperty<'scroll-behavior'>;
325
+ type ScrollMarginBottomKeys = Tokenami.TokenProperty<'scroll-margin-bottom'> | Tokenami.VariantProperty<'scroll-margin-bottom', string> | AliasedProperty<'scroll-margin-bottom'>;
326
+ type ScrollMarginLeftKeys = Tokenami.TokenProperty<'scroll-margin-left'> | Tokenami.VariantProperty<'scroll-margin-left', string> | AliasedProperty<'scroll-margin-left'>;
327
+ type ScrollMarginRightKeys = Tokenami.TokenProperty<'scroll-margin-right'> | Tokenami.VariantProperty<'scroll-margin-right', string> | AliasedProperty<'scroll-margin-right'>;
328
+ type ScrollMarginTopKeys = Tokenami.TokenProperty<'scroll-margin-top'> | Tokenami.VariantProperty<'scroll-margin-top', string> | AliasedProperty<'scroll-margin-top'>;
329
+ type ScrollPaddingBottomKeys = Tokenami.TokenProperty<'scroll-padding-bottom'> | Tokenami.VariantProperty<'scroll-padding-bottom', string> | AliasedProperty<'scroll-padding-bottom'>;
330
+ type ScrollPaddingLeftKeys = Tokenami.TokenProperty<'scroll-padding-left'> | Tokenami.VariantProperty<'scroll-padding-left', string> | AliasedProperty<'scroll-padding-left'>;
331
+ type ScrollPaddingRightKeys = Tokenami.TokenProperty<'scroll-padding-right'> | Tokenami.VariantProperty<'scroll-padding-right', string> | AliasedProperty<'scroll-padding-right'>;
332
+ type ScrollPaddingTopKeys = Tokenami.TokenProperty<'scroll-padding-top'> | Tokenami.VariantProperty<'scroll-padding-top', string> | AliasedProperty<'scroll-padding-top'>;
333
+ type ScrollSnapAlignKeys = Tokenami.TokenProperty<'scroll-snap-align'> | Tokenami.VariantProperty<'scroll-snap-align', string> | AliasedProperty<'scroll-snap-align'>;
334
+ type ScrollSnapMarginBottomKeys = Tokenami.TokenProperty<'scroll-snap-margin-bottom'> | Tokenami.VariantProperty<'scroll-snap-margin-bottom', string> | AliasedProperty<'scroll-snap-margin-bottom'>;
335
+ type ScrollSnapMarginLeftKeys = Tokenami.TokenProperty<'scroll-snap-margin-left'> | Tokenami.VariantProperty<'scroll-snap-margin-left', string> | AliasedProperty<'scroll-snap-margin-left'>;
336
+ type ScrollSnapMarginRightKeys = Tokenami.TokenProperty<'scroll-snap-margin-right'> | Tokenami.VariantProperty<'scroll-snap-margin-right', string> | AliasedProperty<'scroll-snap-margin-right'>;
337
+ type ScrollSnapMarginTopKeys = Tokenami.TokenProperty<'scroll-snap-margin-top'> | Tokenami.VariantProperty<'scroll-snap-margin-top', string> | AliasedProperty<'scroll-snap-margin-top'>;
338
+ type ScrollSnapStopKeys = Tokenami.TokenProperty<'scroll-snap-stop'> | Tokenami.VariantProperty<'scroll-snap-stop', string> | AliasedProperty<'scroll-snap-stop'>;
339
+ type ScrollSnapTypeKeys = Tokenami.TokenProperty<'scroll-snap-type'> | Tokenami.VariantProperty<'scroll-snap-type', string> | AliasedProperty<'scroll-snap-type'>;
340
+ type ScrollTimelineAxisKeys = Tokenami.TokenProperty<'scroll-timeline-axis'> | Tokenami.VariantProperty<'scroll-timeline-axis', string> | AliasedProperty<'scroll-timeline-axis'>;
341
+ type ScrollTimelineNameKeys = Tokenami.TokenProperty<'scroll-timeline-name'> | Tokenami.VariantProperty<'scroll-timeline-name', string> | AliasedProperty<'scroll-timeline-name'>;
342
+ type ScrollbarColorKeys = Tokenami.TokenProperty<'scrollbar-color'> | Tokenami.VariantProperty<'scrollbar-color', string> | AliasedProperty<'scrollbar-color'>;
343
+ type ScrollbarGutterKeys = Tokenami.TokenProperty<'scrollbar-gutter'> | Tokenami.VariantProperty<'scrollbar-gutter', string> | AliasedProperty<'scrollbar-gutter'>;
344
+ type ScrollbarWidthKeys = Tokenami.TokenProperty<'scrollbar-width'> | Tokenami.VariantProperty<'scrollbar-width', string> | AliasedProperty<'scrollbar-width'>;
345
+ type ShapeImageThresholdKeys = Tokenami.TokenProperty<'shape-image-threshold'> | Tokenami.VariantProperty<'shape-image-threshold', string> | AliasedProperty<'shape-image-threshold'>;
346
+ type ShapeMarginKeys = Tokenami.TokenProperty<'shape-margin'> | Tokenami.VariantProperty<'shape-margin', string> | AliasedProperty<'shape-margin'>;
347
+ type ShapeOutsideKeys = Tokenami.TokenProperty<'shape-outside'> | Tokenami.VariantProperty<'shape-outside', string> | AliasedProperty<'shape-outside'>;
348
+ type TabSizeKeys = Tokenami.TokenProperty<'tab-size'> | Tokenami.VariantProperty<'tab-size', string> | AliasedProperty<'tab-size'>;
349
+ type TableLayoutKeys = Tokenami.TokenProperty<'table-layout'> | Tokenami.VariantProperty<'table-layout', string> | AliasedProperty<'table-layout'>;
350
+ type TextAlignKeys = Tokenami.TokenProperty<'text-align'> | Tokenami.VariantProperty<'text-align', string> | AliasedProperty<'text-align'>;
351
+ type TextAlignLastKeys = Tokenami.TokenProperty<'text-align-last'> | Tokenami.VariantProperty<'text-align-last', string> | AliasedProperty<'text-align-last'>;
352
+ type TextCombineUprightKeys = Tokenami.TokenProperty<'text-combine-upright'> | Tokenami.VariantProperty<'text-combine-upright', string> | AliasedProperty<'text-combine-upright'>;
353
+ type TextDecorationColorKeys = Tokenami.TokenProperty<'text-decoration-color'> | Tokenami.VariantProperty<'text-decoration-color', string> | AliasedProperty<'text-decoration-color'>;
354
+ type TextDecorationLineKeys = Tokenami.TokenProperty<'text-decoration-line'> | Tokenami.VariantProperty<'text-decoration-line', string> | AliasedProperty<'text-decoration-line'>;
355
+ type TextDecorationSkipKeys = Tokenami.TokenProperty<'text-decoration-skip'> | Tokenami.VariantProperty<'text-decoration-skip', string> | AliasedProperty<'text-decoration-skip'>;
356
+ type TextDecorationSkipInkKeys = Tokenami.TokenProperty<'text-decoration-skip-ink'> | Tokenami.VariantProperty<'text-decoration-skip-ink', string> | AliasedProperty<'text-decoration-skip-ink'>;
357
+ type TextDecorationStyleKeys = Tokenami.TokenProperty<'text-decoration-style'> | Tokenami.VariantProperty<'text-decoration-style', string> | AliasedProperty<'text-decoration-style'>;
358
+ type TextDecorationThicknessKeys = Tokenami.TokenProperty<'text-decoration-thickness'> | Tokenami.VariantProperty<'text-decoration-thickness', string> | AliasedProperty<'text-decoration-thickness'>;
359
+ type TextEmphasisColorKeys = Tokenami.TokenProperty<'text-emphasis-color'> | Tokenami.VariantProperty<'text-emphasis-color', string> | AliasedProperty<'text-emphasis-color'>;
360
+ type TextEmphasisPositionKeys = Tokenami.TokenProperty<'text-emphasis-position'> | Tokenami.VariantProperty<'text-emphasis-position', string> | AliasedProperty<'text-emphasis-position'>;
361
+ type TextEmphasisStyleKeys = Tokenami.TokenProperty<'text-emphasis-style'> | Tokenami.VariantProperty<'text-emphasis-style', string> | AliasedProperty<'text-emphasis-style'>;
362
+ type TextIndentKeys = Tokenami.TokenProperty<'text-indent'> | Tokenami.VariantProperty<'text-indent', string> | AliasedProperty<'text-indent'>;
363
+ type TextJustifyKeys = Tokenami.TokenProperty<'text-justify'> | Tokenami.VariantProperty<'text-justify', string> | AliasedProperty<'text-justify'>;
364
+ type TextOrientationKeys = Tokenami.TokenProperty<'text-orientation'> | Tokenami.VariantProperty<'text-orientation', string> | AliasedProperty<'text-orientation'>;
365
+ type TextOverflowKeys = Tokenami.TokenProperty<'text-overflow'> | Tokenami.VariantProperty<'text-overflow', string> | AliasedProperty<'text-overflow'>;
366
+ type TextRenderingKeys = Tokenami.TokenProperty<'text-rendering'> | Tokenami.VariantProperty<'text-rendering', string> | AliasedProperty<'text-rendering'>;
367
+ type TextShadowKeys = Tokenami.TokenProperty<'text-shadow'> | Tokenami.VariantProperty<'text-shadow', string> | AliasedProperty<'text-shadow'>;
368
+ type TextSizeAdjustKeys = Tokenami.TokenProperty<'text-size-adjust'> | Tokenami.VariantProperty<'text-size-adjust', string> | AliasedProperty<'text-size-adjust'>;
369
+ type TextTransformKeys = Tokenami.TokenProperty<'text-transform'> | Tokenami.VariantProperty<'text-transform', string> | AliasedProperty<'text-transform'>;
370
+ type TextUnderlineOffsetKeys = Tokenami.TokenProperty<'text-underline-offset'> | Tokenami.VariantProperty<'text-underline-offset', string> | AliasedProperty<'text-underline-offset'>;
371
+ type TextUnderlinePositionKeys = Tokenami.TokenProperty<'text-underline-position'> | Tokenami.VariantProperty<'text-underline-position', string> | AliasedProperty<'text-underline-position'>;
372
+ type TextWrapKeys = Tokenami.TokenProperty<'text-wrap'> | Tokenami.VariantProperty<'text-wrap', string> | AliasedProperty<'text-wrap'>;
373
+ type TimelineScopeKeys = Tokenami.TokenProperty<'timeline-scope'> | Tokenami.VariantProperty<'timeline-scope', string> | AliasedProperty<'timeline-scope'>;
374
+ type TopKeys = Tokenami.TokenProperty<'top'> | Tokenami.VariantProperty<'top', string> | AliasedProperty<'top'>;
375
+ type TouchActionKeys = Tokenami.TokenProperty<'touch-action'> | Tokenami.VariantProperty<'touch-action', string> | AliasedProperty<'touch-action'>;
376
+ type TransformKeys = Tokenami.TokenProperty<'transform'> | Tokenami.VariantProperty<'transform', string> | AliasedProperty<'transform'>;
377
+ type TransformBoxKeys = Tokenami.TokenProperty<'transform-box'> | Tokenami.VariantProperty<'transform-box', string> | AliasedProperty<'transform-box'>;
378
+ type TransformOriginKeys = Tokenami.TokenProperty<'transform-origin'> | Tokenami.VariantProperty<'transform-origin', string> | AliasedProperty<'transform-origin'>;
379
+ type TransformStyleKeys = Tokenami.TokenProperty<'transform-style'> | Tokenami.VariantProperty<'transform-style', string> | AliasedProperty<'transform-style'>;
380
+ type TransitionBehaviorKeys = Tokenami.TokenProperty<'transition-behavior'> | Tokenami.VariantProperty<'transition-behavior', string> | AliasedProperty<'transition-behavior'>;
381
+ type TransitionDelayKeys = Tokenami.TokenProperty<'transition-delay'> | Tokenami.VariantProperty<'transition-delay', string> | AliasedProperty<'transition-delay'>;
382
+ type TransitionDurationKeys = Tokenami.TokenProperty<'transition-duration'> | Tokenami.VariantProperty<'transition-duration', string> | AliasedProperty<'transition-duration'>;
383
+ type TransitionPropertyKeys = Tokenami.TokenProperty<'transition-property'> | Tokenami.VariantProperty<'transition-property', string> | AliasedProperty<'transition-property'>;
384
+ type TransitionTimingFunctionKeys = Tokenami.TokenProperty<'transition-timing-function'> | Tokenami.VariantProperty<'transition-timing-function', string> | AliasedProperty<'transition-timing-function'>;
385
+ type TranslateKeys = Tokenami.TokenProperty<'translate'> | Tokenami.VariantProperty<'translate', string> | AliasedProperty<'translate'>;
386
+ type UnicodeBidiKeys = Tokenami.TokenProperty<'unicode-bidi'> | Tokenami.VariantProperty<'unicode-bidi', string> | AliasedProperty<'unicode-bidi'>;
387
+ type UserSelectKeys = Tokenami.TokenProperty<'user-select'> | Tokenami.VariantProperty<'user-select', string> | AliasedProperty<'user-select'>;
388
+ type VerticalAlignKeys = Tokenami.TokenProperty<'vertical-align'> | Tokenami.VariantProperty<'vertical-align', string> | AliasedProperty<'vertical-align'>;
389
+ type ViewTimelineAxisKeys = Tokenami.TokenProperty<'view-timeline-axis'> | Tokenami.VariantProperty<'view-timeline-axis', string> | AliasedProperty<'view-timeline-axis'>;
390
+ type ViewTimelineInsetKeys = Tokenami.TokenProperty<'view-timeline-inset'> | Tokenami.VariantProperty<'view-timeline-inset', string> | AliasedProperty<'view-timeline-inset'>;
391
+ type ViewTimelineNameKeys = Tokenami.TokenProperty<'view-timeline-name'> | Tokenami.VariantProperty<'view-timeline-name', string> | AliasedProperty<'view-timeline-name'>;
392
+ type ViewTransitionNameKeys = Tokenami.TokenProperty<'view-transition-name'> | Tokenami.VariantProperty<'view-transition-name', string> | AliasedProperty<'view-transition-name'>;
393
+ type VisibilityKeys = Tokenami.TokenProperty<'visibility'> | Tokenami.VariantProperty<'visibility', string> | AliasedProperty<'visibility'>;
394
+ type WhiteSpaceKeys = Tokenami.TokenProperty<'white-space'> | Tokenami.VariantProperty<'white-space', string> | AliasedProperty<'white-space'>;
395
+ type WhiteSpaceCollapseKeys = Tokenami.TokenProperty<'white-space-collapse'> | Tokenami.VariantProperty<'white-space-collapse', string> | AliasedProperty<'white-space-collapse'>;
396
+ type WhiteSpaceTrimKeys = Tokenami.TokenProperty<'white-space-trim'> | Tokenami.VariantProperty<'white-space-trim', string> | AliasedProperty<'white-space-trim'>;
397
+ type WidowsKeys = Tokenami.TokenProperty<'widows'> | Tokenami.VariantProperty<'widows', string> | AliasedProperty<'widows'>;
398
+ type WidthKeys = Tokenami.TokenProperty<'width'> | Tokenami.VariantProperty<'width', string> | AliasedProperty<'width'>;
399
+ type WillChangeKeys = Tokenami.TokenProperty<'will-change'> | Tokenami.VariantProperty<'will-change', string> | AliasedProperty<'will-change'>;
400
+ type WordBreakKeys = Tokenami.TokenProperty<'word-break'> | Tokenami.VariantProperty<'word-break', string> | AliasedProperty<'word-break'>;
401
+ type WordSpacingKeys = Tokenami.TokenProperty<'word-spacing'> | Tokenami.VariantProperty<'word-spacing', string> | AliasedProperty<'word-spacing'>;
402
+ type WordWrapKeys = Tokenami.TokenProperty<'word-wrap'> | Tokenami.VariantProperty<'word-wrap', string> | AliasedProperty<'word-wrap'>;
403
+ type WritingModeKeys = Tokenami.TokenProperty<'writing-mode'> | Tokenami.VariantProperty<'writing-mode', string> | AliasedProperty<'writing-mode'>;
404
+ type ZIndexKeys = Tokenami.TokenProperty<'z-index'> | Tokenami.VariantProperty<'z-index', string> | AliasedProperty<'z-index'>;
405
+ type ZoomKeys = Tokenami.TokenProperty<'zoom'> | Tokenami.VariantProperty<'zoom', string> | AliasedProperty<'zoom'>;
406
+ type AlignmentBaselineKeys = Tokenami.TokenProperty<'alignment-baseline'> | Tokenami.VariantProperty<'alignment-baseline', string> | AliasedProperty<'alignment-baseline'>;
407
+ type BaselineShiftKeys = Tokenami.TokenProperty<'baseline-shift'> | Tokenami.VariantProperty<'baseline-shift', string> | AliasedProperty<'baseline-shift'>;
408
+ type ClipKeys = Tokenami.TokenProperty<'clip'> | Tokenami.VariantProperty<'clip', string> | AliasedProperty<'clip'>;
409
+ type ClipRuleKeys = Tokenami.TokenProperty<'clip-rule'> | Tokenami.VariantProperty<'clip-rule', string> | AliasedProperty<'clip-rule'>;
410
+ type ColorInterpolationKeys = Tokenami.TokenProperty<'color-interpolation'> | Tokenami.VariantProperty<'color-interpolation', string> | AliasedProperty<'color-interpolation'>;
411
+ type ColorRenderingKeys = Tokenami.TokenProperty<'color-rendering'> | Tokenami.VariantProperty<'color-rendering', string> | AliasedProperty<'color-rendering'>;
412
+ type DominantBaselineKeys = Tokenami.TokenProperty<'dominant-baseline'> | Tokenami.VariantProperty<'dominant-baseline', string> | AliasedProperty<'dominant-baseline'>;
413
+ type FillKeys = Tokenami.TokenProperty<'fill'> | Tokenami.VariantProperty<'fill', string> | AliasedProperty<'fill'>;
414
+ type FillOpacityKeys = Tokenami.TokenProperty<'fill-opacity'> | Tokenami.VariantProperty<'fill-opacity', string> | AliasedProperty<'fill-opacity'>;
415
+ type FillRuleKeys = Tokenami.TokenProperty<'fill-rule'> | Tokenami.VariantProperty<'fill-rule', string> | AliasedProperty<'fill-rule'>;
416
+ type FloodColorKeys = Tokenami.TokenProperty<'flood-color'> | Tokenami.VariantProperty<'flood-color', string> | AliasedProperty<'flood-color'>;
417
+ type FloodOpacityKeys = Tokenami.TokenProperty<'flood-opacity'> | Tokenami.VariantProperty<'flood-opacity', string> | AliasedProperty<'flood-opacity'>;
418
+ type GlyphOrientationVerticalKeys = Tokenami.TokenProperty<'glyph-orientation-vertical'> | Tokenami.VariantProperty<'glyph-orientation-vertical', string> | AliasedProperty<'glyph-orientation-vertical'>;
419
+ type LightingColorKeys = Tokenami.TokenProperty<'lighting-color'> | Tokenami.VariantProperty<'lighting-color', string> | AliasedProperty<'lighting-color'>;
420
+ type MarkerKeys = Tokenami.TokenProperty<'marker'> | Tokenami.VariantProperty<'marker', string> | AliasedProperty<'marker'>;
421
+ type MarkerEndKeys = Tokenami.TokenProperty<'marker-end'> | Tokenami.VariantProperty<'marker-end', string> | AliasedProperty<'marker-end'>;
422
+ type MarkerMidKeys = Tokenami.TokenProperty<'marker-mid'> | Tokenami.VariantProperty<'marker-mid', string> | AliasedProperty<'marker-mid'>;
423
+ type MarkerStartKeys = Tokenami.TokenProperty<'marker-start'> | Tokenami.VariantProperty<'marker-start', string> | AliasedProperty<'marker-start'>;
424
+ type ShapeRenderingKeys = Tokenami.TokenProperty<'shape-rendering'> | Tokenami.VariantProperty<'shape-rendering', string> | AliasedProperty<'shape-rendering'>;
425
+ type StopColorKeys = Tokenami.TokenProperty<'stop-color'> | Tokenami.VariantProperty<'stop-color', string> | AliasedProperty<'stop-color'>;
426
+ type StopOpacityKeys = Tokenami.TokenProperty<'stop-opacity'> | Tokenami.VariantProperty<'stop-opacity', string> | AliasedProperty<'stop-opacity'>;
427
+ type StrokeKeys = Tokenami.TokenProperty<'stroke'> | Tokenami.VariantProperty<'stroke', string> | AliasedProperty<'stroke'>;
428
+ type StrokeDasharrayKeys = Tokenami.TokenProperty<'stroke-dasharray'> | Tokenami.VariantProperty<'stroke-dasharray', string> | AliasedProperty<'stroke-dasharray'>;
429
+ type StrokeDashoffsetKeys = Tokenami.TokenProperty<'stroke-dashoffset'> | Tokenami.VariantProperty<'stroke-dashoffset', string> | AliasedProperty<'stroke-dashoffset'>;
430
+ type StrokeLinecapKeys = Tokenami.TokenProperty<'stroke-linecap'> | Tokenami.VariantProperty<'stroke-linecap', string> | AliasedProperty<'stroke-linecap'>;
431
+ type StrokeLinejoinKeys = Tokenami.TokenProperty<'stroke-linejoin'> | Tokenami.VariantProperty<'stroke-linejoin', string> | AliasedProperty<'stroke-linejoin'>;
432
+ type StrokeMiterlimitKeys = Tokenami.TokenProperty<'stroke-miterlimit'> | Tokenami.VariantProperty<'stroke-miterlimit', string> | AliasedProperty<'stroke-miterlimit'>;
433
+ type StrokeOpacityKeys = Tokenami.TokenProperty<'stroke-opacity'> | Tokenami.VariantProperty<'stroke-opacity', string> | AliasedProperty<'stroke-opacity'>;
434
+ type StrokeWidthKeys = Tokenami.TokenProperty<'stroke-width'> | Tokenami.VariantProperty<'stroke-width', string> | AliasedProperty<'stroke-width'>;
435
+ type TextAnchorKeys = Tokenami.TokenProperty<'text-anchor'> | Tokenami.VariantProperty<'text-anchor', string> | AliasedProperty<'text-anchor'>;
436
+ type VectorEffectKeys = Tokenami.TokenProperty<'vector-effect'> | Tokenami.VariantProperty<'vector-effect', string> | AliasedProperty<'vector-effect'>;
437
+ type BlockOverflowKeys = Tokenami.TokenProperty<'block-overflow'> | Tokenami.VariantProperty<'block-overflow', string> | AliasedProperty<'block-overflow'>;
438
+ type BlockSizeKeys = Tokenami.TokenProperty<'block-size'> | Tokenami.VariantProperty<'block-size', string> | AliasedProperty<'block-size'>;
439
+ type BorderBlockKeys = Tokenami.TokenProperty<'border-block'> | Tokenami.VariantProperty<'border-block', string> | AliasedProperty<'border-block'>;
440
+ type BorderBlockEndKeys = Tokenami.TokenProperty<'border-block-end'> | Tokenami.VariantProperty<'border-block-end', string> | AliasedProperty<'border-block-end'>;
441
+ type BorderBlockStartKeys = Tokenami.TokenProperty<'border-block-start'> | Tokenami.VariantProperty<'border-block-start', string> | AliasedProperty<'border-block-start'>;
442
+ type BorderBlockColorKeys = Tokenami.TokenProperty<'border-block-color'> | Tokenami.VariantProperty<'border-block-color', string> | AliasedProperty<'border-block-color'>;
443
+ type BorderBlockEndColorKeys = Tokenami.TokenProperty<'border-block-end-color'> | Tokenami.VariantProperty<'border-block-end-color', string> | AliasedProperty<'border-block-end-color'>;
444
+ type BorderBlockEndStyleKeys = Tokenami.TokenProperty<'border-block-end-style'> | Tokenami.VariantProperty<'border-block-end-style', string> | AliasedProperty<'border-block-end-style'>;
445
+ type BorderBlockEndWidthKeys = Tokenami.TokenProperty<'border-block-end-width'> | Tokenami.VariantProperty<'border-block-end-width', string> | AliasedProperty<'border-block-end-width'>;
446
+ type BorderBlockStartColorKeys = Tokenami.TokenProperty<'border-block-start-color'> | Tokenami.VariantProperty<'border-block-start-color', string> | AliasedProperty<'border-block-start-color'>;
447
+ type BorderBlockStartStyleKeys = Tokenami.TokenProperty<'border-block-start-style'> | Tokenami.VariantProperty<'border-block-start-style', string> | AliasedProperty<'border-block-start-style'>;
448
+ type BorderBlockStartWidthKeys = Tokenami.TokenProperty<'border-block-start-width'> | Tokenami.VariantProperty<'border-block-start-width', string> | AliasedProperty<'border-block-start-width'>;
449
+ type BorderBlockStyleKeys = Tokenami.TokenProperty<'border-block-style'> | Tokenami.VariantProperty<'border-block-style', string> | AliasedProperty<'border-block-style'>;
450
+ type BorderBlockWidthKeys = Tokenami.TokenProperty<'border-block-width'> | Tokenami.VariantProperty<'border-block-width', string> | AliasedProperty<'border-block-width'>;
451
+ type BorderInlineKeys = Tokenami.TokenProperty<'border-inline'> | Tokenami.VariantProperty<'border-inline', string> | AliasedProperty<'border-inline'>;
452
+ type BorderInlineEndKeys = Tokenami.TokenProperty<'border-inline-end'> | Tokenami.VariantProperty<'border-inline-end', string> | AliasedProperty<'border-inline-end'>;
453
+ type BorderInlineStartKeys = Tokenami.TokenProperty<'border-inline-start'> | Tokenami.VariantProperty<'border-inline-start', string> | AliasedProperty<'border-inline-start'>;
454
+ type BorderInlineColorKeys = Tokenami.TokenProperty<'border-inline-color'> | Tokenami.VariantProperty<'border-inline-color', string> | AliasedProperty<'border-inline-color'>;
455
+ type BorderInlineEndColorKeys = Tokenami.TokenProperty<'border-inline-end-color'> | Tokenami.VariantProperty<'border-inline-end-color', string> | AliasedProperty<'border-inline-end-color'>;
456
+ type BorderInlineEndStyleKeys = Tokenami.TokenProperty<'border-inline-end-style'> | Tokenami.VariantProperty<'border-inline-end-style', string> | AliasedProperty<'border-inline-end-style'>;
457
+ type BorderInlineEndWidthKeys = Tokenami.TokenProperty<'border-inline-end-width'> | Tokenami.VariantProperty<'border-inline-end-width', string> | AliasedProperty<'border-inline-end-width'>;
458
+ type BorderInlineStartColorKeys = Tokenami.TokenProperty<'border-inline-start-color'> | Tokenami.VariantProperty<'border-inline-start-color', string> | AliasedProperty<'border-inline-start-color'>;
459
+ type BorderInlineStartStyleKeys = Tokenami.TokenProperty<'border-inline-start-style'> | Tokenami.VariantProperty<'border-inline-start-style', string> | AliasedProperty<'border-inline-start-style'>;
460
+ type BorderInlineStartWidthKeys = Tokenami.TokenProperty<'border-inline-start-width'> | Tokenami.VariantProperty<'border-inline-start-width', string> | AliasedProperty<'border-inline-start-width'>;
461
+ type BorderInlineStyleKeys = Tokenami.TokenProperty<'border-inline-style'> | Tokenami.VariantProperty<'border-inline-style', string> | AliasedProperty<'border-inline-style'>;
462
+ type BorderInlineWidthKeys = Tokenami.TokenProperty<'border-inline-width'> | Tokenami.VariantProperty<'border-inline-width', string> | AliasedProperty<'border-inline-width'>;
463
+ type ContainIntrinsicBlockSizeKeys = Tokenami.TokenProperty<'contain-intrinsic-block-size'> | Tokenami.VariantProperty<'contain-intrinsic-block-size', string> | AliasedProperty<'contain-intrinsic-block-size'>;
464
+ type ContainIntrinsicInlineSizeKeys = Tokenami.TokenProperty<'contain-intrinsic-inline-size'> | Tokenami.VariantProperty<'contain-intrinsic-inline-size', string> | AliasedProperty<'contain-intrinsic-inline-size'>;
465
+ type InlineSizeKeys = Tokenami.TokenProperty<'inline-size'> | Tokenami.VariantProperty<'inline-size', string> | AliasedProperty<'inline-size'>;
466
+ type InsetBlockKeys = Tokenami.TokenProperty<'inset-block'> | Tokenami.VariantProperty<'inset-block', string> | AliasedProperty<'inset-block'>;
467
+ type InsetBlockEndKeys = Tokenami.TokenProperty<'inset-block-end'> | Tokenami.VariantProperty<'inset-block-end', string> | AliasedProperty<'inset-block-end'>;
468
+ type InsetBlockStartKeys = Tokenami.TokenProperty<'inset-block-start'> | Tokenami.VariantProperty<'inset-block-start', string> | AliasedProperty<'inset-block-start'>;
469
+ type InsetInlineKeys = Tokenami.TokenProperty<'inset-inline'> | Tokenami.VariantProperty<'inset-inline', string> | AliasedProperty<'inset-inline'>;
470
+ type InsetInlineEndKeys = Tokenami.TokenProperty<'inset-inline-end'> | Tokenami.VariantProperty<'inset-inline-end', string> | AliasedProperty<'inset-inline-end'>;
471
+ type InsetInlineStartKeys = Tokenami.TokenProperty<'inset-inline-start'> | Tokenami.VariantProperty<'inset-inline-start', string> | AliasedProperty<'inset-inline-start'>;
472
+ type MarginBlockKeys = Tokenami.TokenProperty<'margin-block'> | Tokenami.VariantProperty<'margin-block', string> | AliasedProperty<'margin-block'>;
473
+ type MarginBlockEndKeys = Tokenami.TokenProperty<'margin-block-end'> | Tokenami.VariantProperty<'margin-block-end', string> | AliasedProperty<'margin-block-end'>;
474
+ type MarginBlockStartKeys = Tokenami.TokenProperty<'margin-block-start'> | Tokenami.VariantProperty<'margin-block-start', string> | AliasedProperty<'margin-block-start'>;
475
+ type MarginInlineKeys = Tokenami.TokenProperty<'margin-inline'> | Tokenami.VariantProperty<'margin-inline', string> | AliasedProperty<'margin-inline'>;
476
+ type MarginInlineEndKeys = Tokenami.TokenProperty<'margin-inline-end'> | Tokenami.VariantProperty<'margin-inline-end', string> | AliasedProperty<'margin-inline-end'>;
477
+ type MarginInlineStartKeys = Tokenami.TokenProperty<'margin-inline-start'> | Tokenami.VariantProperty<'margin-inline-start', string> | AliasedProperty<'margin-inline-start'>;
478
+ type MaxBlockSizeKeys = Tokenami.TokenProperty<'max-block-size'> | Tokenami.VariantProperty<'max-block-size', string> | AliasedProperty<'max-block-size'>;
479
+ type MaxInlineSizeKeys = Tokenami.TokenProperty<'max-inline-size'> | Tokenami.VariantProperty<'max-inline-size', string> | AliasedProperty<'max-inline-size'>;
480
+ type MinBlockSizeKeys = Tokenami.TokenProperty<'min-block-size'> | Tokenami.VariantProperty<'min-block-size', string> | AliasedProperty<'min-block-size'>;
481
+ type MinInlineSizeKeys = Tokenami.TokenProperty<'min-inline-size'> | Tokenami.VariantProperty<'min-inline-size', string> | AliasedProperty<'min-inline-size'>;
482
+ type OverflowBlockKeys = Tokenami.TokenProperty<'overflow-block'> | Tokenami.VariantProperty<'overflow-block', string> | AliasedProperty<'overflow-block'>;
483
+ type OverflowInlineKeys = Tokenami.TokenProperty<'overflow-inline'> | Tokenami.VariantProperty<'overflow-inline', string> | AliasedProperty<'overflow-inline'>;
484
+ type OverscrollBehaviorBlockKeys = Tokenami.TokenProperty<'overscroll-behavior-block'> | Tokenami.VariantProperty<'overscroll-behavior-block', string> | AliasedProperty<'overscroll-behavior-block'>;
485
+ type OverscrollBehaviorInlineKeys = Tokenami.TokenProperty<'overscroll-behavior-inline'> | Tokenami.VariantProperty<'overscroll-behavior-inline', string> | AliasedProperty<'overscroll-behavior-inline'>;
486
+ type PaddingBlockKeys = Tokenami.TokenProperty<'padding-block'> | Tokenami.VariantProperty<'padding-block', string> | AliasedProperty<'padding-block'>;
487
+ type PaddingBlockEndKeys = Tokenami.TokenProperty<'padding-block-end'> | Tokenami.VariantProperty<'padding-block-end', string> | AliasedProperty<'padding-block-end'>;
488
+ type PaddingBlockStartKeys = Tokenami.TokenProperty<'padding-block-start'> | Tokenami.VariantProperty<'padding-block-start', string> | AliasedProperty<'padding-block-start'>;
489
+ type PaddingInlineKeys = Tokenami.TokenProperty<'padding-inline'> | Tokenami.VariantProperty<'padding-inline', string> | AliasedProperty<'padding-inline'>;
490
+ type PaddingInlineEndKeys = Tokenami.TokenProperty<'padding-inline-end'> | Tokenami.VariantProperty<'padding-inline-end', string> | AliasedProperty<'padding-inline-end'>;
491
+ type PaddingInlineStartKeys = Tokenami.TokenProperty<'padding-inline-start'> | Tokenami.VariantProperty<'padding-inline-start', string> | AliasedProperty<'padding-inline-start'>;
492
+ type ScrollMarginBlockKeys = Tokenami.TokenProperty<'scroll-margin-block'> | Tokenami.VariantProperty<'scroll-margin-block', string> | AliasedProperty<'scroll-margin-block'>;
493
+ type ScrollMarginBlockEndKeys = Tokenami.TokenProperty<'scroll-margin-block-end'> | Tokenami.VariantProperty<'scroll-margin-block-end', string> | AliasedProperty<'scroll-margin-block-end'>;
494
+ type ScrollMarginBlockStartKeys = Tokenami.TokenProperty<'scroll-margin-block-start'> | Tokenami.VariantProperty<'scroll-margin-block-start', string> | AliasedProperty<'scroll-margin-block-start'>;
495
+ type ScrollMarginInlineKeys = Tokenami.TokenProperty<'scroll-margin-inline'> | Tokenami.VariantProperty<'scroll-margin-inline', string> | AliasedProperty<'scroll-margin-inline'>;
496
+ type ScrollMarginInlineEndKeys = Tokenami.TokenProperty<'scroll-margin-inline-end'> | Tokenami.VariantProperty<'scroll-margin-inline-end', string> | AliasedProperty<'scroll-margin-inline-end'>;
497
+ type ScrollMarginInlineStartKeys = Tokenami.TokenProperty<'scroll-margin-inline-start'> | Tokenami.VariantProperty<'scroll-margin-inline-start', string> | AliasedProperty<'scroll-margin-inline-start'>;
498
+ type ScrollPaddingBlockKeys = Tokenami.TokenProperty<'scroll-padding-block'> | Tokenami.VariantProperty<'scroll-padding-block', string> | AliasedProperty<'scroll-padding-block'>;
499
+ type ScrollPaddingBlockEndKeys = Tokenami.TokenProperty<'scroll-padding-block-end'> | Tokenami.VariantProperty<'scroll-padding-block-end', string> | AliasedProperty<'scroll-padding-block-end'>;
500
+ type ScrollPaddingBlockStartKeys = Tokenami.TokenProperty<'scroll-padding-block-start'> | Tokenami.VariantProperty<'scroll-padding-block-start', string> | AliasedProperty<'scroll-padding-block-start'>;
501
+ type ScrollPaddingInlineKeys = Tokenami.TokenProperty<'scroll-padding-inline'> | Tokenami.VariantProperty<'scroll-padding-inline', string> | AliasedProperty<'scroll-padding-inline'>;
502
+ type ScrollPaddingInlineEndKeys = Tokenami.TokenProperty<'scroll-padding-inline-end'> | Tokenami.VariantProperty<'scroll-padding-inline-end', string> | AliasedProperty<'scroll-padding-inline-end'>;
503
+ type ScrollPaddingInlineStartKeys = Tokenami.TokenProperty<'scroll-padding-inline-start'> | Tokenami.VariantProperty<'scroll-padding-inline-start', string> | AliasedProperty<'scroll-padding-inline-start'>;
504
+ type AllValue = PropertyThemeValue<'all'>;
505
+ type AnimationValue = PropertyThemeValue<'animation'>;
506
+ type AnimationRangeValue = PropertyThemeValue<'animation-range'>;
507
+ type BackgroundValue = PropertyThemeValue<'background'>;
508
+ type BackgroundPositionValue = PropertyThemeValue<'background-position'>;
509
+ type BorderValue = PropertyThemeValue<'border'>;
510
+ type BorderBottomValue = PropertyThemeValue<'border-bottom'>;
511
+ type BorderColorValue = PropertyThemeValue<'border-color'>;
512
+ type BorderImageValue = PropertyThemeValue<'border-image'>;
513
+ type BorderLeftValue = PropertyThemeValue<'border-left'>;
514
+ type BorderRadiusValue = PropertyThemeValue<'border-radius'>;
515
+ type BorderRightValue = PropertyThemeValue<'border-right'>;
516
+ type BorderStyleValue = PropertyThemeValue<'border-style'>;
517
+ type BorderTopValue = PropertyThemeValue<'border-top'>;
518
+ type BorderWidthValue = PropertyThemeValue<'border-width'>;
519
+ type CaretValue = PropertyThemeValue<'caret'>;
520
+ type ColumnRuleValue = PropertyThemeValue<'column-rule'>;
521
+ type ColumnsValue = PropertyThemeValue<'columns'>;
522
+ type ContainIntrinsicSizeValue = PropertyThemeValue<'contain-intrinsic-size'>;
523
+ type ContainerValue = PropertyThemeValue<'container'>;
524
+ type FlexValue = PropertyThemeValue<'flex'>;
525
+ type FlexFlowValue = PropertyThemeValue<'flex-flow'>;
526
+ type FontValue = PropertyThemeValue<'font'>;
527
+ type GapValue = PropertyThemeValue<'gap'>;
528
+ type GridValue = PropertyThemeValue<'grid'>;
529
+ type GridAreaValue = PropertyThemeValue<'grid-area'>;
530
+ type GridColumnValue = PropertyThemeValue<'grid-column'>;
531
+ type GridRowValue = PropertyThemeValue<'grid-row'>;
532
+ type GridTemplateValue = PropertyThemeValue<'grid-template'>;
533
+ type InsetValue = PropertyThemeValue<'inset'>;
534
+ type LineClampValue = PropertyThemeValue<'line-clamp'>;
535
+ type ListStyleValue = PropertyThemeValue<'list-style'>;
536
+ type MarginValue = PropertyThemeValue<'margin'>;
537
+ type MaskValue = PropertyThemeValue<'mask'>;
538
+ type MaskBorderValue = PropertyThemeValue<'mask-border'>;
539
+ type MotionValue = PropertyThemeValue<'motion'>;
540
+ type OffsetValue = PropertyThemeValue<'offset'>;
541
+ type OutlineValue = PropertyThemeValue<'outline'>;
542
+ type OverflowValue = PropertyThemeValue<'overflow'>;
543
+ type OverscrollBehaviorValue = PropertyThemeValue<'overscroll-behavior'>;
544
+ type PaddingValue = PropertyThemeValue<'padding'>;
545
+ type PlaceContentValue = PropertyThemeValue<'place-content'>;
546
+ type PlaceItemsValue = PropertyThemeValue<'place-items'>;
547
+ type PlaceSelfValue = PropertyThemeValue<'place-self'>;
548
+ type ScrollMarginValue = PropertyThemeValue<'scroll-margin'>;
549
+ type ScrollPaddingValue = PropertyThemeValue<'scroll-padding'>;
550
+ type ScrollSnapMarginValue = PropertyThemeValue<'scroll-snap-margin'>;
551
+ type ScrollTimelineValue = PropertyThemeValue<'scroll-timeline'>;
552
+ type TextDecorationValue = PropertyThemeValue<'text-decoration'>;
553
+ type TextEmphasisValue = PropertyThemeValue<'text-emphasis'>;
554
+ type TransitionValue = PropertyThemeValue<'transition'>;
555
+ type ViewTimelineValue = PropertyThemeValue<'view-timeline'>;
556
+ type AccentColorValue = PropertyThemeValue<'accent-color'>;
557
+ type AlignContentValue = PropertyThemeValue<'align-content'>;
558
+ type AlignItemsValue = PropertyThemeValue<'align-items'>;
559
+ type AlignSelfValue = PropertyThemeValue<'align-self'>;
560
+ type AlignTracksValue = PropertyThemeValue<'align-tracks'>;
561
+ type AnimationCompositionValue = PropertyThemeValue<'animation-composition'>;
562
+ type AnimationDelayValue = PropertyThemeValue<'animation-delay'>;
563
+ type AnimationDirectionValue = PropertyThemeValue<'animation-direction'>;
564
+ type AnimationDurationValue = PropertyThemeValue<'animation-duration'>;
565
+ type AnimationFillModeValue = PropertyThemeValue<'animation-fill-mode'>;
566
+ type AnimationIterationCountValue = PropertyThemeValue<'animation-iteration-count'>;
567
+ type AnimationNameValue = PropertyThemeValue<'animation-name'>;
568
+ type AnimationPlayStateValue = PropertyThemeValue<'animation-play-state'>;
569
+ type AnimationRangeEndValue = PropertyThemeValue<'animation-range-end'>;
570
+ type AnimationRangeStartValue = PropertyThemeValue<'animation-range-start'>;
571
+ type AnimationTimelineValue = PropertyThemeValue<'animation-timeline'>;
572
+ type AnimationTimingFunctionValue = PropertyThemeValue<'animation-timing-function'>;
573
+ type AppearanceValue = PropertyThemeValue<'appearance'>;
574
+ type AspectRatioValue = PropertyThemeValue<'aspect-ratio'>;
575
+ type BackdropFilterValue = PropertyThemeValue<'backdrop-filter'>;
576
+ type BackfaceVisibilityValue = PropertyThemeValue<'backface-visibility'>;
577
+ type BackgroundAttachmentValue = PropertyThemeValue<'background-attachment'>;
578
+ type BackgroundBlendModeValue = PropertyThemeValue<'background-blend-mode'>;
579
+ type BackgroundClipValue = PropertyThemeValue<'background-clip'>;
580
+ type BackgroundColorValue = PropertyThemeValue<'background-color'>;
581
+ type BackgroundImageValue = PropertyThemeValue<'background-image'>;
582
+ type BackgroundOriginValue = PropertyThemeValue<'background-origin'>;
583
+ type BackgroundPositionXValue = PropertyThemeValue<'background-position-x'>;
584
+ type BackgroundPositionYValue = PropertyThemeValue<'background-position-y'>;
585
+ type BackgroundRepeatValue = PropertyThemeValue<'background-repeat'>;
586
+ type BackgroundSizeValue = PropertyThemeValue<'background-size'>;
587
+ type BorderBottomColorValue = PropertyThemeValue<'border-bottom-color'>;
588
+ type BorderBottomLeftRadiusValue = PropertyThemeValue<'border-bottom-left-radius'>;
589
+ type BorderBottomRightRadiusValue = PropertyThemeValue<'border-bottom-right-radius'>;
590
+ type BorderBottomStyleValue = PropertyThemeValue<'border-bottom-style'>;
591
+ type BorderBottomWidthValue = PropertyThemeValue<'border-bottom-width'>;
592
+ type BorderCollapseValue = PropertyThemeValue<'border-collapse'>;
593
+ type BorderEndEndRadiusValue = PropertyThemeValue<'border-end-end-radius'>;
594
+ type BorderEndStartRadiusValue = PropertyThemeValue<'border-end-start-radius'>;
595
+ type BorderImageOutsetValue = PropertyThemeValue<'border-image-outset'>;
596
+ type BorderImageRepeatValue = PropertyThemeValue<'border-image-repeat'>;
597
+ type BorderImageSliceValue = PropertyThemeValue<'border-image-slice'>;
598
+ type BorderImageSourceValue = PropertyThemeValue<'border-image-source'>;
599
+ type BorderImageWidthValue = PropertyThemeValue<'border-image-width'>;
600
+ type BorderLeftColorValue = PropertyThemeValue<'border-left-color'>;
601
+ type BorderLeftStyleValue = PropertyThemeValue<'border-left-style'>;
602
+ type BorderLeftWidthValue = PropertyThemeValue<'border-left-width'>;
603
+ type BorderRightColorValue = PropertyThemeValue<'border-right-color'>;
604
+ type BorderRightStyleValue = PropertyThemeValue<'border-right-style'>;
605
+ type BorderRightWidthValue = PropertyThemeValue<'border-right-width'>;
606
+ type BorderSpacingValue = PropertyThemeValue<'border-spacing'>;
607
+ type BorderStartEndRadiusValue = PropertyThemeValue<'border-start-end-radius'>;
608
+ type BorderStartStartRadiusValue = PropertyThemeValue<'border-start-start-radius'>;
609
+ type BorderTopColorValue = PropertyThemeValue<'border-top-color'>;
610
+ type BorderTopLeftRadiusValue = PropertyThemeValue<'border-top-left-radius'>;
611
+ type BorderTopRightRadiusValue = PropertyThemeValue<'border-top-right-radius'>;
612
+ type BorderTopStyleValue = PropertyThemeValue<'border-top-style'>;
613
+ type BorderTopWidthValue = PropertyThemeValue<'border-top-width'>;
614
+ type BottomValue = PropertyThemeValue<'bottom'>;
615
+ type BoxDecorationBreakValue = PropertyThemeValue<'box-decoration-break'>;
616
+ type BoxShadowValue = PropertyThemeValue<'box-shadow'>;
617
+ type BoxSizingValue = PropertyThemeValue<'box-sizing'>;
618
+ type BreakAfterValue = PropertyThemeValue<'break-after'>;
619
+ type BreakBeforeValue = PropertyThemeValue<'break-before'>;
620
+ type BreakInsideValue = PropertyThemeValue<'break-inside'>;
621
+ type CaptionSideValue = PropertyThemeValue<'caption-side'>;
622
+ type CaretColorValue = PropertyThemeValue<'caret-color'>;
623
+ type CaretShapeValue = PropertyThemeValue<'caret-shape'>;
624
+ type ClearValue = PropertyThemeValue<'clear'>;
625
+ type ClipPathValue = PropertyThemeValue<'clip-path'>;
626
+ type ColorValue = PropertyThemeValue<'color'>;
627
+ type ColorAdjustValue = PropertyThemeValue<'color-adjust'>;
628
+ type ColorSchemeValue = PropertyThemeValue<'color-scheme'>;
629
+ type ColumnCountValue = PropertyThemeValue<'column-count'>;
630
+ type ColumnFillValue = PropertyThemeValue<'column-fill'>;
631
+ type ColumnGapValue = PropertyThemeValue<'column-gap'>;
632
+ type ColumnRuleColorValue = PropertyThemeValue<'column-rule-color'>;
633
+ type ColumnRuleStyleValue = PropertyThemeValue<'column-rule-style'>;
634
+ type ColumnRuleWidthValue = PropertyThemeValue<'column-rule-width'>;
635
+ type ColumnSpanValue = PropertyThemeValue<'column-span'>;
636
+ type ColumnWidthValue = PropertyThemeValue<'column-width'>;
637
+ type ContainValue = PropertyThemeValue<'contain'>;
638
+ type ContainIntrinsicHeightValue = PropertyThemeValue<'contain-intrinsic-height'>;
639
+ type ContainIntrinsicWidthValue = PropertyThemeValue<'contain-intrinsic-width'>;
640
+ type ContainerNameValue = PropertyThemeValue<'container-name'>;
641
+ type ContainerTypeValue = PropertyThemeValue<'container-type'>;
642
+ type ContentValue = PropertyThemeValue<'content'>;
643
+ type ContentVisibilityValue = PropertyThemeValue<'content-visibility'>;
644
+ type CounterIncrementValue = PropertyThemeValue<'counter-increment'>;
645
+ type CounterResetValue = PropertyThemeValue<'counter-reset'>;
646
+ type CounterSetValue = PropertyThemeValue<'counter-set'>;
647
+ type CursorValue = PropertyThemeValue<'cursor'>;
648
+ type DirectionValue = PropertyThemeValue<'direction'>;
649
+ type DisplayValue = PropertyThemeValue<'display'>;
650
+ type EmptyCellsValue = PropertyThemeValue<'empty-cells'>;
651
+ type FilterValue = PropertyThemeValue<'filter'>;
652
+ type FlexBasisValue = PropertyThemeValue<'flex-basis'>;
653
+ type FlexDirectionValue = PropertyThemeValue<'flex-direction'>;
654
+ type FlexGrowValue = PropertyThemeValue<'flex-grow'>;
655
+ type FlexShrinkValue = PropertyThemeValue<'flex-shrink'>;
656
+ type FlexWrapValue = PropertyThemeValue<'flex-wrap'>;
657
+ type FloatValue = PropertyThemeValue<'float'>;
658
+ type FontFamilyValue = PropertyThemeValue<'font-family'>;
659
+ type FontFeatureSettingsValue = PropertyThemeValue<'font-feature-settings'>;
660
+ type FontKerningValue = PropertyThemeValue<'font-kerning'>;
661
+ type FontLanguageOverrideValue = PropertyThemeValue<'font-language-override'>;
662
+ type FontOpticalSizingValue = PropertyThemeValue<'font-optical-sizing'>;
663
+ type FontPaletteValue = PropertyThemeValue<'font-palette'>;
664
+ type FontSizeValue = PropertyThemeValue<'font-size'>;
665
+ type FontSizeAdjustValue = PropertyThemeValue<'font-size-adjust'>;
666
+ type FontSmoothValue = PropertyThemeValue<'font-smooth'>;
667
+ type FontStretchValue = PropertyThemeValue<'font-stretch'>;
668
+ type FontStyleValue = PropertyThemeValue<'font-style'>;
669
+ type FontSynthesisValue = PropertyThemeValue<'font-synthesis'>;
670
+ type FontSynthesisPositionValue = PropertyThemeValue<'font-synthesis-position'>;
671
+ type FontSynthesisSmallCapsValue = PropertyThemeValue<'font-synthesis-small-caps'>;
672
+ type FontSynthesisStyleValue = PropertyThemeValue<'font-synthesis-style'>;
673
+ type FontSynthesisWeightValue = PropertyThemeValue<'font-synthesis-weight'>;
674
+ type FontVariantValue = PropertyThemeValue<'font-variant'>;
675
+ type FontVariantAlternatesValue = PropertyThemeValue<'font-variant-alternates'>;
676
+ type FontVariantCapsValue = PropertyThemeValue<'font-variant-caps'>;
677
+ type FontVariantEastAsianValue = PropertyThemeValue<'font-variant-east-asian'>;
678
+ type FontVariantEmojiValue = PropertyThemeValue<'font-variant-emoji'>;
679
+ type FontVariantLigaturesValue = PropertyThemeValue<'font-variant-ligatures'>;
680
+ type FontVariantNumericValue = PropertyThemeValue<'font-variant-numeric'>;
681
+ type FontVariantPositionValue = PropertyThemeValue<'font-variant-position'>;
682
+ type FontVariationSettingsValue = PropertyThemeValue<'font-variation-settings'>;
683
+ type FontWeightValue = PropertyThemeValue<'font-weight'>;
684
+ type ForcedColorAdjustValue = PropertyThemeValue<'forced-color-adjust'>;
685
+ type GridAutoColumnsValue = PropertyThemeValue<'grid-auto-columns'>;
686
+ type GridAutoFlowValue = PropertyThemeValue<'grid-auto-flow'>;
687
+ type GridAutoRowsValue = PropertyThemeValue<'grid-auto-rows'>;
688
+ type GridColumnEndValue = PropertyThemeValue<'grid-column-end'>;
689
+ type GridColumnStartValue = PropertyThemeValue<'grid-column-start'>;
690
+ type GridRowEndValue = PropertyThemeValue<'grid-row-end'>;
691
+ type GridRowStartValue = PropertyThemeValue<'grid-row-start'>;
692
+ type GridTemplateAreasValue = PropertyThemeValue<'grid-template-areas'>;
693
+ type GridTemplateColumnsValue = PropertyThemeValue<'grid-template-columns'>;
694
+ type GridTemplateRowsValue = PropertyThemeValue<'grid-template-rows'>;
695
+ type HangingPunctuationValue = PropertyThemeValue<'hanging-punctuation'>;
696
+ type HeightValue = PropertyThemeValue<'height'>;
697
+ type HyphenateCharacterValue = PropertyThemeValue<'hyphenate-character'>;
698
+ type HyphenateLimitCharsValue = PropertyThemeValue<'hyphenate-limit-chars'>;
699
+ type HyphensValue = PropertyThemeValue<'hyphens'>;
700
+ type ImageOrientationValue = PropertyThemeValue<'image-orientation'>;
701
+ type ImageRenderingValue = PropertyThemeValue<'image-rendering'>;
702
+ type ImageResolutionValue = PropertyThemeValue<'image-resolution'>;
703
+ type InitialLetterValue = PropertyThemeValue<'initial-letter'>;
704
+ type InputSecurityValue = PropertyThemeValue<'input-security'>;
705
+ type IsolationValue = PropertyThemeValue<'isolation'>;
706
+ type JustifyContentValue = PropertyThemeValue<'justify-content'>;
707
+ type JustifyItemsValue = PropertyThemeValue<'justify-items'>;
708
+ type JustifySelfValue = PropertyThemeValue<'justify-self'>;
709
+ type JustifyTracksValue = PropertyThemeValue<'justify-tracks'>;
710
+ type LeftValue = PropertyThemeValue<'left'>;
711
+ type LetterSpacingValue = PropertyThemeValue<'letter-spacing'>;
712
+ type LineBreakValue = PropertyThemeValue<'line-break'>;
713
+ type LineHeightValue = PropertyThemeValue<'line-height'>;
714
+ type LineHeightStepValue = PropertyThemeValue<'line-height-step'>;
715
+ type ListStyleImageValue = PropertyThemeValue<'list-style-image'>;
716
+ type ListStylePositionValue = PropertyThemeValue<'list-style-position'>;
717
+ type ListStyleTypeValue = PropertyThemeValue<'list-style-type'>;
718
+ type MarginBottomValue = PropertyThemeValue<'margin-bottom'>;
719
+ type MarginLeftValue = PropertyThemeValue<'margin-left'>;
720
+ type MarginRightValue = PropertyThemeValue<'margin-right'>;
721
+ type MarginTopValue = PropertyThemeValue<'margin-top'>;
722
+ type MarginTrimValue = PropertyThemeValue<'margin-trim'>;
723
+ type MaskBorderModeValue = PropertyThemeValue<'mask-border-mode'>;
724
+ type MaskBorderOutsetValue = PropertyThemeValue<'mask-border-outset'>;
725
+ type MaskBorderRepeatValue = PropertyThemeValue<'mask-border-repeat'>;
726
+ type MaskBorderSliceValue = PropertyThemeValue<'mask-border-slice'>;
727
+ type MaskBorderSourceValue = PropertyThemeValue<'mask-border-source'>;
728
+ type MaskBorderWidthValue = PropertyThemeValue<'mask-border-width'>;
729
+ type MaskClipValue = PropertyThemeValue<'mask-clip'>;
730
+ type MaskCompositeValue = PropertyThemeValue<'mask-composite'>;
731
+ type MaskImageValue = PropertyThemeValue<'mask-image'>;
732
+ type MaskModeValue = PropertyThemeValue<'mask-mode'>;
733
+ type MaskOriginValue = PropertyThemeValue<'mask-origin'>;
734
+ type MaskPositionValue = PropertyThemeValue<'mask-position'>;
735
+ type MaskRepeatValue = PropertyThemeValue<'mask-repeat'>;
736
+ type MaskSizeValue = PropertyThemeValue<'mask-size'>;
737
+ type MaskTypeValue = PropertyThemeValue<'mask-type'>;
738
+ type MasonryAutoFlowValue = PropertyThemeValue<'masonry-auto-flow'>;
739
+ type MathDepthValue = PropertyThemeValue<'math-depth'>;
740
+ type MathShiftValue = PropertyThemeValue<'math-shift'>;
741
+ type MathStyleValue = PropertyThemeValue<'math-style'>;
742
+ type MaxHeightValue = PropertyThemeValue<'max-height'>;
743
+ type MaxLinesValue = PropertyThemeValue<'max-lines'>;
744
+ type MaxWidthValue = PropertyThemeValue<'max-width'>;
745
+ type MinHeightValue = PropertyThemeValue<'min-height'>;
746
+ type MinWidthValue = PropertyThemeValue<'min-width'>;
747
+ type MixBlendModeValue = PropertyThemeValue<'mix-blend-mode'>;
748
+ type MotionDistanceValue = PropertyThemeValue<'motion-distance'>;
749
+ type MotionPathValue = PropertyThemeValue<'motion-path'>;
750
+ type MotionRotationValue = PropertyThemeValue<'motion-rotation'>;
751
+ type ObjectFitValue = PropertyThemeValue<'object-fit'>;
752
+ type ObjectPositionValue = PropertyThemeValue<'object-position'>;
753
+ type OffsetAnchorValue = PropertyThemeValue<'offset-anchor'>;
754
+ type OffsetDistanceValue = PropertyThemeValue<'offset-distance'>;
755
+ type OffsetPathValue = PropertyThemeValue<'offset-path'>;
756
+ type OffsetPositionValue = PropertyThemeValue<'offset-position'>;
757
+ type OffsetRotateValue = PropertyThemeValue<'offset-rotate'>;
758
+ type OffsetRotationValue = PropertyThemeValue<'offset-rotation'>;
759
+ type OpacityValue = PropertyThemeValue<'opacity'>;
760
+ type OrderValue = PropertyThemeValue<'order'>;
761
+ type OrphansValue = PropertyThemeValue<'orphans'>;
762
+ type OutlineColorValue = PropertyThemeValue<'outline-color'>;
763
+ type OutlineOffsetValue = PropertyThemeValue<'outline-offset'>;
764
+ type OutlineStyleValue = PropertyThemeValue<'outline-style'>;
765
+ type OutlineWidthValue = PropertyThemeValue<'outline-width'>;
766
+ type OverflowAnchorValue = PropertyThemeValue<'overflow-anchor'>;
767
+ type OverflowClipBoxValue = PropertyThemeValue<'overflow-clip-box'>;
768
+ type OverflowClipMarginValue = PropertyThemeValue<'overflow-clip-margin'>;
769
+ type OverflowWrapValue = PropertyThemeValue<'overflow-wrap'>;
770
+ type OverflowXValue = PropertyThemeValue<'overflow-x'>;
771
+ type OverflowYValue = PropertyThemeValue<'overflow-y'>;
772
+ type OverlayValue = PropertyThemeValue<'overlay'>;
773
+ type OverscrollBehaviorXValue = PropertyThemeValue<'overscroll-behavior-x'>;
774
+ type OverscrollBehaviorYValue = PropertyThemeValue<'overscroll-behavior-y'>;
775
+ type PaddingBottomValue = PropertyThemeValue<'padding-bottom'>;
776
+ type PaddingLeftValue = PropertyThemeValue<'padding-left'>;
777
+ type PaddingRightValue = PropertyThemeValue<'padding-right'>;
778
+ type PaddingTopValue = PropertyThemeValue<'padding-top'>;
779
+ type PageValue = PropertyThemeValue<'page'>;
780
+ type PageBreakAfterValue = PropertyThemeValue<'page-break-after'>;
781
+ type PageBreakBeforeValue = PropertyThemeValue<'page-break-before'>;
782
+ type PageBreakInsideValue = PropertyThemeValue<'page-break-inside'>;
783
+ type PaintOrderValue = PropertyThemeValue<'paint-order'>;
784
+ type PerspectiveValue = PropertyThemeValue<'perspective'>;
785
+ type PerspectiveOriginValue = PropertyThemeValue<'perspective-origin'>;
786
+ type PointerEventsValue = PropertyThemeValue<'pointer-events'>;
787
+ type PositionValue = PropertyThemeValue<'position'>;
788
+ type PrintColorAdjustValue = PropertyThemeValue<'print-color-adjust'>;
789
+ type QuotesValue = PropertyThemeValue<'quotes'>;
790
+ type ResizeValue = PropertyThemeValue<'resize'>;
791
+ type RightValue = PropertyThemeValue<'right'>;
792
+ type RotateValue = PropertyThemeValue<'rotate'>;
793
+ type RowGapValue = PropertyThemeValue<'row-gap'>;
794
+ type RubyAlignValue = PropertyThemeValue<'ruby-align'>;
795
+ type RubyMergeValue = PropertyThemeValue<'ruby-merge'>;
796
+ type RubyPositionValue = PropertyThemeValue<'ruby-position'>;
797
+ type ScaleValue = PropertyThemeValue<'scale'>;
798
+ type ScrollBehaviorValue = PropertyThemeValue<'scroll-behavior'>;
799
+ type ScrollMarginBottomValue = PropertyThemeValue<'scroll-margin-bottom'>;
800
+ type ScrollMarginLeftValue = PropertyThemeValue<'scroll-margin-left'>;
801
+ type ScrollMarginRightValue = PropertyThemeValue<'scroll-margin-right'>;
802
+ type ScrollMarginTopValue = PropertyThemeValue<'scroll-margin-top'>;
803
+ type ScrollPaddingBottomValue = PropertyThemeValue<'scroll-padding-bottom'>;
804
+ type ScrollPaddingLeftValue = PropertyThemeValue<'scroll-padding-left'>;
805
+ type ScrollPaddingRightValue = PropertyThemeValue<'scroll-padding-right'>;
806
+ type ScrollPaddingTopValue = PropertyThemeValue<'scroll-padding-top'>;
807
+ type ScrollSnapAlignValue = PropertyThemeValue<'scroll-snap-align'>;
808
+ type ScrollSnapMarginBottomValue = PropertyThemeValue<'scroll-snap-margin-bottom'>;
809
+ type ScrollSnapMarginLeftValue = PropertyThemeValue<'scroll-snap-margin-left'>;
810
+ type ScrollSnapMarginRightValue = PropertyThemeValue<'scroll-snap-margin-right'>;
811
+ type ScrollSnapMarginTopValue = PropertyThemeValue<'scroll-snap-margin-top'>;
812
+ type ScrollSnapStopValue = PropertyThemeValue<'scroll-snap-stop'>;
813
+ type ScrollSnapTypeValue = PropertyThemeValue<'scroll-snap-type'>;
814
+ type ScrollTimelineAxisValue = PropertyThemeValue<'scroll-timeline-axis'>;
815
+ type ScrollTimelineNameValue = PropertyThemeValue<'scroll-timeline-name'>;
816
+ type ScrollbarColorValue = PropertyThemeValue<'scrollbar-color'>;
817
+ type ScrollbarGutterValue = PropertyThemeValue<'scrollbar-gutter'>;
818
+ type ScrollbarWidthValue = PropertyThemeValue<'scrollbar-width'>;
819
+ type ShapeImageThresholdValue = PropertyThemeValue<'shape-image-threshold'>;
820
+ type ShapeMarginValue = PropertyThemeValue<'shape-margin'>;
821
+ type ShapeOutsideValue = PropertyThemeValue<'shape-outside'>;
822
+ type TabSizeValue = PropertyThemeValue<'tab-size'>;
823
+ type TableLayoutValue = PropertyThemeValue<'table-layout'>;
824
+ type TextAlignValue = PropertyThemeValue<'text-align'>;
825
+ type TextAlignLastValue = PropertyThemeValue<'text-align-last'>;
826
+ type TextCombineUprightValue = PropertyThemeValue<'text-combine-upright'>;
827
+ type TextDecorationColorValue = PropertyThemeValue<'text-decoration-color'>;
828
+ type TextDecorationLineValue = PropertyThemeValue<'text-decoration-line'>;
829
+ type TextDecorationSkipValue = PropertyThemeValue<'text-decoration-skip'>;
830
+ type TextDecorationSkipInkValue = PropertyThemeValue<'text-decoration-skip-ink'>;
831
+ type TextDecorationStyleValue = PropertyThemeValue<'text-decoration-style'>;
832
+ type TextDecorationThicknessValue = PropertyThemeValue<'text-decoration-thickness'>;
833
+ type TextEmphasisColorValue = PropertyThemeValue<'text-emphasis-color'>;
834
+ type TextEmphasisPositionValue = PropertyThemeValue<'text-emphasis-position'>;
835
+ type TextEmphasisStyleValue = PropertyThemeValue<'text-emphasis-style'>;
836
+ type TextIndentValue = PropertyThemeValue<'text-indent'>;
837
+ type TextJustifyValue = PropertyThemeValue<'text-justify'>;
838
+ type TextOrientationValue = PropertyThemeValue<'text-orientation'>;
839
+ type TextOverflowValue = PropertyThemeValue<'text-overflow'>;
840
+ type TextRenderingValue = PropertyThemeValue<'text-rendering'>;
841
+ type TextShadowValue = PropertyThemeValue<'text-shadow'>;
842
+ type TextSizeAdjustValue = PropertyThemeValue<'text-size-adjust'>;
843
+ type TextTransformValue = PropertyThemeValue<'text-transform'>;
844
+ type TextUnderlineOffsetValue = PropertyThemeValue<'text-underline-offset'>;
845
+ type TextUnderlinePositionValue = PropertyThemeValue<'text-underline-position'>;
846
+ type TextWrapValue = PropertyThemeValue<'text-wrap'>;
847
+ type TimelineScopeValue = PropertyThemeValue<'timeline-scope'>;
848
+ type TopValue = PropertyThemeValue<'top'>;
849
+ type TouchActionValue = PropertyThemeValue<'touch-action'>;
850
+ type TransformValue = PropertyThemeValue<'transform'>;
851
+ type TransformBoxValue = PropertyThemeValue<'transform-box'>;
852
+ type TransformOriginValue = PropertyThemeValue<'transform-origin'>;
853
+ type TransformStyleValue = PropertyThemeValue<'transform-style'>;
854
+ type TransitionBehaviorValue = PropertyThemeValue<'transition-behavior'>;
855
+ type TransitionDelayValue = PropertyThemeValue<'transition-delay'>;
856
+ type TransitionDurationValue = PropertyThemeValue<'transition-duration'>;
857
+ type TransitionPropertyValue = PropertyThemeValue<'transition-property'>;
858
+ type TransitionTimingFunctionValue = PropertyThemeValue<'transition-timing-function'>;
859
+ type TranslateValue = PropertyThemeValue<'translate'>;
860
+ type UnicodeBidiValue = PropertyThemeValue<'unicode-bidi'>;
861
+ type UserSelectValue = PropertyThemeValue<'user-select'>;
862
+ type VerticalAlignValue = PropertyThemeValue<'vertical-align'>;
863
+ type ViewTimelineAxisValue = PropertyThemeValue<'view-timeline-axis'>;
864
+ type ViewTimelineInsetValue = PropertyThemeValue<'view-timeline-inset'>;
865
+ type ViewTimelineNameValue = PropertyThemeValue<'view-timeline-name'>;
866
+ type ViewTransitionNameValue = PropertyThemeValue<'view-transition-name'>;
867
+ type VisibilityValue = PropertyThemeValue<'visibility'>;
868
+ type WhiteSpaceValue = PropertyThemeValue<'white-space'>;
869
+ type WhiteSpaceCollapseValue = PropertyThemeValue<'white-space-collapse'>;
870
+ type WhiteSpaceTrimValue = PropertyThemeValue<'white-space-trim'>;
871
+ type WidowsValue = PropertyThemeValue<'widows'>;
872
+ type WidthValue = PropertyThemeValue<'width'>;
873
+ type WillChangeValue = PropertyThemeValue<'will-change'>;
874
+ type WordBreakValue = PropertyThemeValue<'word-break'>;
875
+ type WordSpacingValue = PropertyThemeValue<'word-spacing'>;
876
+ type WordWrapValue = PropertyThemeValue<'word-wrap'>;
877
+ type WritingModeValue = PropertyThemeValue<'writing-mode'>;
878
+ type ZIndexValue = PropertyThemeValue<'z-index'>;
879
+ type ZoomValue = PropertyThemeValue<'zoom'>;
880
+ type AlignmentBaselineValue = PropertyThemeValue<'alignment-baseline'>;
881
+ type BaselineShiftValue = PropertyThemeValue<'baseline-shift'>;
882
+ type ClipValue = PropertyThemeValue<'clip'>;
883
+ type ClipRuleValue = PropertyThemeValue<'clip-rule'>;
884
+ type ColorInterpolationValue = PropertyThemeValue<'color-interpolation'>;
885
+ type ColorRenderingValue = PropertyThemeValue<'color-rendering'>;
886
+ type DominantBaselineValue = PropertyThemeValue<'dominant-baseline'>;
887
+ type FillValue = PropertyThemeValue<'fill'>;
888
+ type FillOpacityValue = PropertyThemeValue<'fill-opacity'>;
889
+ type FillRuleValue = PropertyThemeValue<'fill-rule'>;
890
+ type FloodColorValue = PropertyThemeValue<'flood-color'>;
891
+ type FloodOpacityValue = PropertyThemeValue<'flood-opacity'>;
892
+ type GlyphOrientationVerticalValue = PropertyThemeValue<'glyph-orientation-vertical'>;
893
+ type LightingColorValue = PropertyThemeValue<'lighting-color'>;
894
+ type MarkerValue = PropertyThemeValue<'marker'>;
895
+ type MarkerEndValue = PropertyThemeValue<'marker-end'>;
896
+ type MarkerMidValue = PropertyThemeValue<'marker-mid'>;
897
+ type MarkerStartValue = PropertyThemeValue<'marker-start'>;
898
+ type ShapeRenderingValue = PropertyThemeValue<'shape-rendering'>;
899
+ type StopColorValue = PropertyThemeValue<'stop-color'>;
900
+ type StopOpacityValue = PropertyThemeValue<'stop-opacity'>;
901
+ type StrokeValue = PropertyThemeValue<'stroke'>;
902
+ type StrokeDasharrayValue = PropertyThemeValue<'stroke-dasharray'>;
903
+ type StrokeDashoffsetValue = PropertyThemeValue<'stroke-dashoffset'>;
904
+ type StrokeLinecapValue = PropertyThemeValue<'stroke-linecap'>;
905
+ type StrokeLinejoinValue = PropertyThemeValue<'stroke-linejoin'>;
906
+ type StrokeMiterlimitValue = PropertyThemeValue<'stroke-miterlimit'>;
907
+ type StrokeOpacityValue = PropertyThemeValue<'stroke-opacity'>;
908
+ type StrokeWidthValue = PropertyThemeValue<'stroke-width'>;
909
+ type TextAnchorValue = PropertyThemeValue<'text-anchor'>;
910
+ type VectorEffectValue = PropertyThemeValue<'vector-effect'>;
911
+ type BlockOverflowValue = PropertyThemeValue<'block-overflow'>;
912
+ type BlockSizeValue = PropertyThemeValue<'block-size'>;
913
+ type BorderBlockValue = PropertyThemeValue<'border-block'>;
914
+ type BorderBlockEndValue = PropertyThemeValue<'border-block-end'>;
915
+ type BorderBlockStartValue = PropertyThemeValue<'border-block-start'>;
916
+ type BorderBlockColorValue = PropertyThemeValue<'border-block-color'>;
917
+ type BorderBlockEndColorValue = PropertyThemeValue<'border-block-end-color'>;
918
+ type BorderBlockEndStyleValue = PropertyThemeValue<'border-block-end-style'>;
919
+ type BorderBlockEndWidthValue = PropertyThemeValue<'border-block-end-width'>;
920
+ type BorderBlockStartColorValue = PropertyThemeValue<'border-block-start-color'>;
921
+ type BorderBlockStartStyleValue = PropertyThemeValue<'border-block-start-style'>;
922
+ type BorderBlockStartWidthValue = PropertyThemeValue<'border-block-start-width'>;
923
+ type BorderBlockStyleValue = PropertyThemeValue<'border-block-style'>;
924
+ type BorderBlockWidthValue = PropertyThemeValue<'border-block-width'>;
925
+ type BorderInlineValue = PropertyThemeValue<'border-inline'>;
926
+ type BorderInlineEndValue = PropertyThemeValue<'border-inline-end'>;
927
+ type BorderInlineStartValue = PropertyThemeValue<'border-inline-start'>;
928
+ type BorderInlineColorValue = PropertyThemeValue<'border-inline-color'>;
929
+ type BorderInlineEndColorValue = PropertyThemeValue<'border-inline-end-color'>;
930
+ type BorderInlineEndStyleValue = PropertyThemeValue<'border-inline-end-style'>;
931
+ type BorderInlineEndWidthValue = PropertyThemeValue<'border-inline-end-width'>;
932
+ type BorderInlineStartColorValue = PropertyThemeValue<'border-inline-start-color'>;
933
+ type BorderInlineStartStyleValue = PropertyThemeValue<'border-inline-start-style'>;
934
+ type BorderInlineStartWidthValue = PropertyThemeValue<'border-inline-start-width'>;
935
+ type BorderInlineStyleValue = PropertyThemeValue<'border-inline-style'>;
936
+ type BorderInlineWidthValue = PropertyThemeValue<'border-inline-width'>;
937
+ type ContainIntrinsicBlockSizeValue = PropertyThemeValue<'contain-intrinsic-block-size'>;
938
+ type ContainIntrinsicInlineSizeValue = PropertyThemeValue<'contain-intrinsic-inline-size'>;
939
+ type InlineSizeValue = PropertyThemeValue<'inline-size'>;
940
+ type InsetBlockValue = PropertyThemeValue<'inset-block'>;
941
+ type InsetBlockEndValue = PropertyThemeValue<'inset-block-end'>;
942
+ type InsetBlockStartValue = PropertyThemeValue<'inset-block-start'>;
943
+ type InsetInlineValue = PropertyThemeValue<'inset-inline'>;
944
+ type InsetInlineEndValue = PropertyThemeValue<'inset-inline-end'>;
945
+ type InsetInlineStartValue = PropertyThemeValue<'inset-inline-start'>;
946
+ type MarginBlockValue = PropertyThemeValue<'margin-block'>;
947
+ type MarginBlockEndValue = PropertyThemeValue<'margin-block-end'>;
948
+ type MarginBlockStartValue = PropertyThemeValue<'margin-block-start'>;
949
+ type MarginInlineValue = PropertyThemeValue<'margin-inline'>;
950
+ type MarginInlineEndValue = PropertyThemeValue<'margin-inline-end'>;
951
+ type MarginInlineStartValue = PropertyThemeValue<'margin-inline-start'>;
952
+ type MaxBlockSizeValue = PropertyThemeValue<'max-block-size'>;
953
+ type MaxInlineSizeValue = PropertyThemeValue<'max-inline-size'>;
954
+ type MinBlockSizeValue = PropertyThemeValue<'min-block-size'>;
955
+ type MinInlineSizeValue = PropertyThemeValue<'min-inline-size'>;
956
+ type OverflowBlockValue = PropertyThemeValue<'overflow-block'>;
957
+ type OverflowInlineValue = PropertyThemeValue<'overflow-inline'>;
958
+ type OverscrollBehaviorBlockValue = PropertyThemeValue<'overscroll-behavior-block'>;
959
+ type OverscrollBehaviorInlineValue = PropertyThemeValue<'overscroll-behavior-inline'>;
960
+ type PaddingBlockValue = PropertyThemeValue<'padding-block'>;
961
+ type PaddingBlockEndValue = PropertyThemeValue<'padding-block-end'>;
962
+ type PaddingBlockStartValue = PropertyThemeValue<'padding-block-start'>;
963
+ type PaddingInlineValue = PropertyThemeValue<'padding-inline'>;
964
+ type PaddingInlineEndValue = PropertyThemeValue<'padding-inline-end'>;
965
+ type PaddingInlineStartValue = PropertyThemeValue<'padding-inline-start'>;
966
+ type ScrollMarginBlockValue = PropertyThemeValue<'scroll-margin-block'>;
967
+ type ScrollMarginBlockEndValue = PropertyThemeValue<'scroll-margin-block-end'>;
968
+ type ScrollMarginBlockStartValue = PropertyThemeValue<'scroll-margin-block-start'>;
969
+ type ScrollMarginInlineValue = PropertyThemeValue<'scroll-margin-inline'>;
970
+ type ScrollMarginInlineEndValue = PropertyThemeValue<'scroll-margin-inline-end'>;
971
+ type ScrollMarginInlineStartValue = PropertyThemeValue<'scroll-margin-inline-start'>;
972
+ type ScrollPaddingBlockValue = PropertyThemeValue<'scroll-padding-block'>;
973
+ type ScrollPaddingBlockEndValue = PropertyThemeValue<'scroll-padding-block-end'>;
974
+ type ScrollPaddingBlockStartValue = PropertyThemeValue<'scroll-padding-block-start'>;
975
+ type ScrollPaddingInlineValue = PropertyThemeValue<'scroll-padding-inline'>;
976
+ type ScrollPaddingInlineEndValue = PropertyThemeValue<'scroll-padding-inline-end'>;
977
+ type ScrollPaddingInlineStartValue = PropertyThemeValue<'scroll-padding-inline-start'>;
978
+ type AllProperties = {
979
+ [K in AllKeys]?: AllValue;
980
+ };
981
+ type AnimationProperties = {
982
+ [K in AnimationKeys]?: AnimationValue;
983
+ };
984
+ type AnimationRangeProperties = {
985
+ [K in AnimationRangeKeys]?: AnimationRangeValue;
986
+ };
987
+ type BackgroundProperties = {
988
+ [K in BackgroundKeys]?: BackgroundValue;
989
+ };
990
+ type BackgroundPositionProperties = {
991
+ [K in BackgroundPositionKeys]?: BackgroundPositionValue;
992
+ };
993
+ type BorderProperties = {
994
+ [K in BorderKeys]?: BorderValue;
995
+ };
996
+ type BorderBottomProperties = {
997
+ [K in BorderBottomKeys]?: BorderBottomValue;
998
+ };
999
+ type BorderColorProperties = {
1000
+ [K in BorderColorKeys]?: BorderColorValue;
1001
+ };
1002
+ type BorderImageProperties = {
1003
+ [K in BorderImageKeys]?: BorderImageValue;
1004
+ };
1005
+ type BorderLeftProperties = {
1006
+ [K in BorderLeftKeys]?: BorderLeftValue;
1007
+ };
1008
+ type BorderRadiusProperties = {
1009
+ [K in BorderRadiusKeys]?: BorderRadiusValue;
1010
+ };
1011
+ type BorderRightProperties = {
1012
+ [K in BorderRightKeys]?: BorderRightValue;
1013
+ };
1014
+ type BorderStyleProperties = {
1015
+ [K in BorderStyleKeys]?: BorderStyleValue;
1016
+ };
1017
+ type BorderTopProperties = {
1018
+ [K in BorderTopKeys]?: BorderTopValue;
1019
+ };
1020
+ type BorderWidthProperties = {
1021
+ [K in BorderWidthKeys]?: BorderWidthValue;
1022
+ };
1023
+ type CaretProperties = {
1024
+ [K in CaretKeys]?: CaretValue;
1025
+ };
1026
+ type ColumnRuleProperties = {
1027
+ [K in ColumnRuleKeys]?: ColumnRuleValue;
1028
+ };
1029
+ type ColumnsProperties = {
1030
+ [K in ColumnsKeys]?: ColumnsValue;
1031
+ };
1032
+ type ContainIntrinsicSizeProperties = {
1033
+ [K in ContainIntrinsicSizeKeys]?: ContainIntrinsicSizeValue;
1034
+ };
1035
+ type ContainerProperties = {
1036
+ [K in ContainerKeys]?: ContainerValue;
1037
+ };
1038
+ type FlexProperties = {
1039
+ [K in FlexKeys]?: FlexValue;
1040
+ };
1041
+ type FlexFlowProperties = {
1042
+ [K in FlexFlowKeys]?: FlexFlowValue;
1043
+ };
1044
+ type FontProperties = {
1045
+ [K in FontKeys]?: FontValue;
1046
+ };
1047
+ type GapProperties = {
1048
+ [K in GapKeys]?: GapValue;
1049
+ };
1050
+ type GridProperties = {
1051
+ [K in GridKeys]?: GridValue;
1052
+ };
1053
+ type GridAreaProperties = {
1054
+ [K in GridAreaKeys]?: GridAreaValue;
1055
+ };
1056
+ type GridColumnProperties = {
1057
+ [K in GridColumnKeys]?: GridColumnValue;
1058
+ };
1059
+ type GridRowProperties = {
1060
+ [K in GridRowKeys]?: GridRowValue;
1061
+ };
1062
+ type GridTemplateProperties = {
1063
+ [K in GridTemplateKeys]?: GridTemplateValue;
1064
+ };
1065
+ type InsetProperties = {
1066
+ [K in InsetKeys]?: InsetValue;
1067
+ };
1068
+ type LineClampProperties = {
1069
+ [K in LineClampKeys]?: LineClampValue;
1070
+ };
1071
+ type ListStyleProperties = {
1072
+ [K in ListStyleKeys]?: ListStyleValue;
1073
+ };
1074
+ type MarginProperties = {
1075
+ [K in MarginKeys]?: MarginValue;
1076
+ };
1077
+ type MaskProperties = {
1078
+ [K in MaskKeys]?: MaskValue;
1079
+ };
1080
+ type MaskBorderProperties = {
1081
+ [K in MaskBorderKeys]?: MaskBorderValue;
1082
+ };
1083
+ type MotionProperties = {
1084
+ [K in MotionKeys]?: MotionValue;
1085
+ };
1086
+ type OffsetProperties = {
1087
+ [K in OffsetKeys]?: OffsetValue;
1088
+ };
1089
+ type OutlineProperties = {
1090
+ [K in OutlineKeys]?: OutlineValue;
1091
+ };
1092
+ type OverflowProperties = {
1093
+ [K in OverflowKeys]?: OverflowValue;
1094
+ };
1095
+ type OverscrollBehaviorProperties = {
1096
+ [K in OverscrollBehaviorKeys]?: OverscrollBehaviorValue;
1097
+ };
1098
+ type PaddingProperties = {
1099
+ [K in PaddingKeys]?: PaddingValue;
1100
+ };
1101
+ type PlaceContentProperties = {
1102
+ [K in PlaceContentKeys]?: PlaceContentValue;
1103
+ };
1104
+ type PlaceItemsProperties = {
1105
+ [K in PlaceItemsKeys]?: PlaceItemsValue;
1106
+ };
1107
+ type PlaceSelfProperties = {
1108
+ [K in PlaceSelfKeys]?: PlaceSelfValue;
1109
+ };
1110
+ type ScrollMarginProperties = {
1111
+ [K in ScrollMarginKeys]?: ScrollMarginValue;
1112
+ };
1113
+ type ScrollPaddingProperties = {
1114
+ [K in ScrollPaddingKeys]?: ScrollPaddingValue;
1115
+ };
1116
+ type ScrollSnapMarginProperties = {
1117
+ [K in ScrollSnapMarginKeys]?: ScrollSnapMarginValue;
1118
+ };
1119
+ type ScrollTimelineProperties = {
1120
+ [K in ScrollTimelineKeys]?: ScrollTimelineValue;
1121
+ };
1122
+ type TextDecorationProperties = {
1123
+ [K in TextDecorationKeys]?: TextDecorationValue;
1124
+ };
1125
+ type TextEmphasisProperties = {
1126
+ [K in TextEmphasisKeys]?: TextEmphasisValue;
1127
+ };
1128
+ type TransitionProperties = {
1129
+ [K in TransitionKeys]?: TransitionValue;
1130
+ };
1131
+ type ViewTimelineProperties = {
1132
+ [K in ViewTimelineKeys]?: ViewTimelineValue;
1133
+ };
1134
+ type AccentColorProperties = {
1135
+ [K in AccentColorKeys]?: AccentColorValue;
1136
+ };
1137
+ type AlignContentProperties = {
1138
+ [K in AlignContentKeys]?: AlignContentValue;
1139
+ };
1140
+ type AlignItemsProperties = {
1141
+ [K in AlignItemsKeys]?: AlignItemsValue;
1142
+ };
1143
+ type AlignSelfProperties = {
1144
+ [K in AlignSelfKeys]?: AlignSelfValue;
1145
+ };
1146
+ type AlignTracksProperties = {
1147
+ [K in AlignTracksKeys]?: AlignTracksValue;
1148
+ };
1149
+ type AnimationCompositionProperties = {
1150
+ [K in AnimationCompositionKeys]?: AnimationCompositionValue;
1151
+ };
1152
+ type AnimationDelayProperties = {
1153
+ [K in AnimationDelayKeys]?: AnimationDelayValue;
1154
+ };
1155
+ type AnimationDirectionProperties = {
1156
+ [K in AnimationDirectionKeys]?: AnimationDirectionValue;
1157
+ };
1158
+ type AnimationDurationProperties = {
1159
+ [K in AnimationDurationKeys]?: AnimationDurationValue;
1160
+ };
1161
+ type AnimationFillModeProperties = {
1162
+ [K in AnimationFillModeKeys]?: AnimationFillModeValue;
1163
+ };
1164
+ type AnimationIterationCountProperties = {
1165
+ [K in AnimationIterationCountKeys]?: AnimationIterationCountValue;
1166
+ };
1167
+ type AnimationNameProperties = {
1168
+ [K in AnimationNameKeys]?: AnimationNameValue;
1169
+ };
1170
+ type AnimationPlayStateProperties = {
1171
+ [K in AnimationPlayStateKeys]?: AnimationPlayStateValue;
1172
+ };
1173
+ type AnimationRangeEndProperties = {
1174
+ [K in AnimationRangeEndKeys]?: AnimationRangeEndValue;
1175
+ };
1176
+ type AnimationRangeStartProperties = {
1177
+ [K in AnimationRangeStartKeys]?: AnimationRangeStartValue;
1178
+ };
1179
+ type AnimationTimelineProperties = {
1180
+ [K in AnimationTimelineKeys]?: AnimationTimelineValue;
1181
+ };
1182
+ type AnimationTimingFunctionProperties = {
1183
+ [K in AnimationTimingFunctionKeys]?: AnimationTimingFunctionValue;
1184
+ };
1185
+ type AppearanceProperties = {
1186
+ [K in AppearanceKeys]?: AppearanceValue;
1187
+ };
1188
+ type AspectRatioProperties = {
1189
+ [K in AspectRatioKeys]?: AspectRatioValue;
1190
+ };
1191
+ type BackdropFilterProperties = {
1192
+ [K in BackdropFilterKeys]?: BackdropFilterValue;
1193
+ };
1194
+ type BackfaceVisibilityProperties = {
1195
+ [K in BackfaceVisibilityKeys]?: BackfaceVisibilityValue;
1196
+ };
1197
+ type BackgroundAttachmentProperties = {
1198
+ [K in BackgroundAttachmentKeys]?: BackgroundAttachmentValue;
1199
+ };
1200
+ type BackgroundBlendModeProperties = {
1201
+ [K in BackgroundBlendModeKeys]?: BackgroundBlendModeValue;
1202
+ };
1203
+ type BackgroundClipProperties = {
1204
+ [K in BackgroundClipKeys]?: BackgroundClipValue;
1205
+ };
1206
+ type BackgroundColorProperties = {
1207
+ [K in BackgroundColorKeys]?: BackgroundColorValue;
1208
+ };
1209
+ type BackgroundImageProperties = {
1210
+ [K in BackgroundImageKeys]?: BackgroundImageValue;
1211
+ };
1212
+ type BackgroundOriginProperties = {
1213
+ [K in BackgroundOriginKeys]?: BackgroundOriginValue;
1214
+ };
1215
+ type BackgroundPositionXProperties = {
1216
+ [K in BackgroundPositionXKeys]?: BackgroundPositionXValue;
1217
+ };
1218
+ type BackgroundPositionYProperties = {
1219
+ [K in BackgroundPositionYKeys]?: BackgroundPositionYValue;
1220
+ };
1221
+ type BackgroundRepeatProperties = {
1222
+ [K in BackgroundRepeatKeys]?: BackgroundRepeatValue;
1223
+ };
1224
+ type BackgroundSizeProperties = {
1225
+ [K in BackgroundSizeKeys]?: BackgroundSizeValue;
1226
+ };
1227
+ type BorderBottomColorProperties = {
1228
+ [K in BorderBottomColorKeys]?: BorderBottomColorValue;
1229
+ };
1230
+ type BorderBottomLeftRadiusProperties = {
1231
+ [K in BorderBottomLeftRadiusKeys]?: BorderBottomLeftRadiusValue;
1232
+ };
1233
+ type BorderBottomRightRadiusProperties = {
1234
+ [K in BorderBottomRightRadiusKeys]?: BorderBottomRightRadiusValue;
1235
+ };
1236
+ type BorderBottomStyleProperties = {
1237
+ [K in BorderBottomStyleKeys]?: BorderBottomStyleValue;
1238
+ };
1239
+ type BorderBottomWidthProperties = {
1240
+ [K in BorderBottomWidthKeys]?: BorderBottomWidthValue;
1241
+ };
1242
+ type BorderCollapseProperties = {
1243
+ [K in BorderCollapseKeys]?: BorderCollapseValue;
1244
+ };
1245
+ type BorderEndEndRadiusProperties = {
1246
+ [K in BorderEndEndRadiusKeys]?: BorderEndEndRadiusValue;
1247
+ };
1248
+ type BorderEndStartRadiusProperties = {
1249
+ [K in BorderEndStartRadiusKeys]?: BorderEndStartRadiusValue;
1250
+ };
1251
+ type BorderImageOutsetProperties = {
1252
+ [K in BorderImageOutsetKeys]?: BorderImageOutsetValue;
1253
+ };
1254
+ type BorderImageRepeatProperties = {
1255
+ [K in BorderImageRepeatKeys]?: BorderImageRepeatValue;
1256
+ };
1257
+ type BorderImageSliceProperties = {
1258
+ [K in BorderImageSliceKeys]?: BorderImageSliceValue;
1259
+ };
1260
+ type BorderImageSourceProperties = {
1261
+ [K in BorderImageSourceKeys]?: BorderImageSourceValue;
1262
+ };
1263
+ type BorderImageWidthProperties = {
1264
+ [K in BorderImageWidthKeys]?: BorderImageWidthValue;
1265
+ };
1266
+ type BorderLeftColorProperties = {
1267
+ [K in BorderLeftColorKeys]?: BorderLeftColorValue;
1268
+ };
1269
+ type BorderLeftStyleProperties = {
1270
+ [K in BorderLeftStyleKeys]?: BorderLeftStyleValue;
1271
+ };
1272
+ type BorderLeftWidthProperties = {
1273
+ [K in BorderLeftWidthKeys]?: BorderLeftWidthValue;
1274
+ };
1275
+ type BorderRightColorProperties = {
1276
+ [K in BorderRightColorKeys]?: BorderRightColorValue;
1277
+ };
1278
+ type BorderRightStyleProperties = {
1279
+ [K in BorderRightStyleKeys]?: BorderRightStyleValue;
1280
+ };
1281
+ type BorderRightWidthProperties = {
1282
+ [K in BorderRightWidthKeys]?: BorderRightWidthValue;
1283
+ };
1284
+ type BorderSpacingProperties = {
1285
+ [K in BorderSpacingKeys]?: BorderSpacingValue;
1286
+ };
1287
+ type BorderStartEndRadiusProperties = {
1288
+ [K in BorderStartEndRadiusKeys]?: BorderStartEndRadiusValue;
1289
+ };
1290
+ type BorderStartStartRadiusProperties = {
1291
+ [K in BorderStartStartRadiusKeys]?: BorderStartStartRadiusValue;
1292
+ };
1293
+ type BorderTopColorProperties = {
1294
+ [K in BorderTopColorKeys]?: BorderTopColorValue;
1295
+ };
1296
+ type BorderTopLeftRadiusProperties = {
1297
+ [K in BorderTopLeftRadiusKeys]?: BorderTopLeftRadiusValue;
1298
+ };
1299
+ type BorderTopRightRadiusProperties = {
1300
+ [K in BorderTopRightRadiusKeys]?: BorderTopRightRadiusValue;
1301
+ };
1302
+ type BorderTopStyleProperties = {
1303
+ [K in BorderTopStyleKeys]?: BorderTopStyleValue;
1304
+ };
1305
+ type BorderTopWidthProperties = {
1306
+ [K in BorderTopWidthKeys]?: BorderTopWidthValue;
1307
+ };
1308
+ type BottomProperties = {
1309
+ [K in BottomKeys]?: BottomValue;
1310
+ };
1311
+ type BoxDecorationBreakProperties = {
1312
+ [K in BoxDecorationBreakKeys]?: BoxDecorationBreakValue;
1313
+ };
1314
+ type BoxShadowProperties = {
1315
+ [K in BoxShadowKeys]?: BoxShadowValue;
1316
+ };
1317
+ type BoxSizingProperties = {
1318
+ [K in BoxSizingKeys]?: BoxSizingValue;
1319
+ };
1320
+ type BreakAfterProperties = {
1321
+ [K in BreakAfterKeys]?: BreakAfterValue;
1322
+ };
1323
+ type BreakBeforeProperties = {
1324
+ [K in BreakBeforeKeys]?: BreakBeforeValue;
1325
+ };
1326
+ type BreakInsideProperties = {
1327
+ [K in BreakInsideKeys]?: BreakInsideValue;
1328
+ };
1329
+ type CaptionSideProperties = {
1330
+ [K in CaptionSideKeys]?: CaptionSideValue;
1331
+ };
1332
+ type CaretColorProperties = {
1333
+ [K in CaretColorKeys]?: CaretColorValue;
1334
+ };
1335
+ type CaretShapeProperties = {
1336
+ [K in CaretShapeKeys]?: CaretShapeValue;
1337
+ };
1338
+ type ClearProperties = {
1339
+ [K in ClearKeys]?: ClearValue;
1340
+ };
1341
+ type ClipPathProperties = {
1342
+ [K in ClipPathKeys]?: ClipPathValue;
1343
+ };
1344
+ type ColorProperties = {
1345
+ [K in ColorKeys]?: ColorValue;
1346
+ };
1347
+ type ColorAdjustProperties = {
1348
+ [K in ColorAdjustKeys]?: ColorAdjustValue;
1349
+ };
1350
+ type ColorSchemeProperties = {
1351
+ [K in ColorSchemeKeys]?: ColorSchemeValue;
1352
+ };
1353
+ type ColumnCountProperties = {
1354
+ [K in ColumnCountKeys]?: ColumnCountValue;
1355
+ };
1356
+ type ColumnFillProperties = {
1357
+ [K in ColumnFillKeys]?: ColumnFillValue;
1358
+ };
1359
+ type ColumnGapProperties = {
1360
+ [K in ColumnGapKeys]?: ColumnGapValue;
1361
+ };
1362
+ type ColumnRuleColorProperties = {
1363
+ [K in ColumnRuleColorKeys]?: ColumnRuleColorValue;
1364
+ };
1365
+ type ColumnRuleStyleProperties = {
1366
+ [K in ColumnRuleStyleKeys]?: ColumnRuleStyleValue;
1367
+ };
1368
+ type ColumnRuleWidthProperties = {
1369
+ [K in ColumnRuleWidthKeys]?: ColumnRuleWidthValue;
1370
+ };
1371
+ type ColumnSpanProperties = {
1372
+ [K in ColumnSpanKeys]?: ColumnSpanValue;
1373
+ };
1374
+ type ColumnWidthProperties = {
1375
+ [K in ColumnWidthKeys]?: ColumnWidthValue;
1376
+ };
1377
+ type ContainProperties = {
1378
+ [K in ContainKeys]?: ContainValue;
1379
+ };
1380
+ type ContainIntrinsicHeightProperties = {
1381
+ [K in ContainIntrinsicHeightKeys]?: ContainIntrinsicHeightValue;
1382
+ };
1383
+ type ContainIntrinsicWidthProperties = {
1384
+ [K in ContainIntrinsicWidthKeys]?: ContainIntrinsicWidthValue;
1385
+ };
1386
+ type ContainerNameProperties = {
1387
+ [K in ContainerNameKeys]?: ContainerNameValue;
1388
+ };
1389
+ type ContainerTypeProperties = {
1390
+ [K in ContainerTypeKeys]?: ContainerTypeValue;
1391
+ };
1392
+ type ContentProperties = {
1393
+ [K in ContentKeys]?: ContentValue;
1394
+ };
1395
+ type ContentVisibilityProperties = {
1396
+ [K in ContentVisibilityKeys]?: ContentVisibilityValue;
1397
+ };
1398
+ type CounterIncrementProperties = {
1399
+ [K in CounterIncrementKeys]?: CounterIncrementValue;
1400
+ };
1401
+ type CounterResetProperties = {
1402
+ [K in CounterResetKeys]?: CounterResetValue;
1403
+ };
1404
+ type CounterSetProperties = {
1405
+ [K in CounterSetKeys]?: CounterSetValue;
1406
+ };
1407
+ type CursorProperties = {
1408
+ [K in CursorKeys]?: CursorValue;
1409
+ };
1410
+ type DirectionProperties = {
1411
+ [K in DirectionKeys]?: DirectionValue;
1412
+ };
1413
+ type DisplayProperties = {
1414
+ [K in DisplayKeys]?: DisplayValue;
1415
+ };
1416
+ type EmptyCellsProperties = {
1417
+ [K in EmptyCellsKeys]?: EmptyCellsValue;
1418
+ };
1419
+ type FilterProperties = {
1420
+ [K in FilterKeys]?: FilterValue;
1421
+ };
1422
+ type FlexBasisProperties = {
1423
+ [K in FlexBasisKeys]?: FlexBasisValue;
1424
+ };
1425
+ type FlexDirectionProperties = {
1426
+ [K in FlexDirectionKeys]?: FlexDirectionValue;
1427
+ };
1428
+ type FlexGrowProperties = {
1429
+ [K in FlexGrowKeys]?: FlexGrowValue;
1430
+ };
1431
+ type FlexShrinkProperties = {
1432
+ [K in FlexShrinkKeys]?: FlexShrinkValue;
1433
+ };
1434
+ type FlexWrapProperties = {
1435
+ [K in FlexWrapKeys]?: FlexWrapValue;
1436
+ };
1437
+ type FloatProperties = {
1438
+ [K in FloatKeys]?: FloatValue;
1439
+ };
1440
+ type FontFamilyProperties = {
1441
+ [K in FontFamilyKeys]?: FontFamilyValue;
1442
+ };
1443
+ type FontFeatureSettingsProperties = {
1444
+ [K in FontFeatureSettingsKeys]?: FontFeatureSettingsValue;
1445
+ };
1446
+ type FontKerningProperties = {
1447
+ [K in FontKerningKeys]?: FontKerningValue;
1448
+ };
1449
+ type FontLanguageOverrideProperties = {
1450
+ [K in FontLanguageOverrideKeys]?: FontLanguageOverrideValue;
1451
+ };
1452
+ type FontOpticalSizingProperties = {
1453
+ [K in FontOpticalSizingKeys]?: FontOpticalSizingValue;
1454
+ };
1455
+ type FontPaletteProperties = {
1456
+ [K in FontPaletteKeys]?: FontPaletteValue;
1457
+ };
1458
+ type FontSizeProperties = {
1459
+ [K in FontSizeKeys]?: FontSizeValue;
1460
+ };
1461
+ type FontSizeAdjustProperties = {
1462
+ [K in FontSizeAdjustKeys]?: FontSizeAdjustValue;
1463
+ };
1464
+ type FontSmoothProperties = {
1465
+ [K in FontSmoothKeys]?: FontSmoothValue;
1466
+ };
1467
+ type FontStretchProperties = {
1468
+ [K in FontStretchKeys]?: FontStretchValue;
1469
+ };
1470
+ type FontStyleProperties = {
1471
+ [K in FontStyleKeys]?: FontStyleValue;
1472
+ };
1473
+ type FontSynthesisProperties = {
1474
+ [K in FontSynthesisKeys]?: FontSynthesisValue;
1475
+ };
1476
+ type FontSynthesisPositionProperties = {
1477
+ [K in FontSynthesisPositionKeys]?: FontSynthesisPositionValue;
1478
+ };
1479
+ type FontSynthesisSmallCapsProperties = {
1480
+ [K in FontSynthesisSmallCapsKeys]?: FontSynthesisSmallCapsValue;
1481
+ };
1482
+ type FontSynthesisStyleProperties = {
1483
+ [K in FontSynthesisStyleKeys]?: FontSynthesisStyleValue;
1484
+ };
1485
+ type FontSynthesisWeightProperties = {
1486
+ [K in FontSynthesisWeightKeys]?: FontSynthesisWeightValue;
1487
+ };
1488
+ type FontVariantProperties = {
1489
+ [K in FontVariantKeys]?: FontVariantValue;
1490
+ };
1491
+ type FontVariantAlternatesProperties = {
1492
+ [K in FontVariantAlternatesKeys]?: FontVariantAlternatesValue;
1493
+ };
1494
+ type FontVariantCapsProperties = {
1495
+ [K in FontVariantCapsKeys]?: FontVariantCapsValue;
1496
+ };
1497
+ type FontVariantEastAsianProperties = {
1498
+ [K in FontVariantEastAsianKeys]?: FontVariantEastAsianValue;
1499
+ };
1500
+ type FontVariantEmojiProperties = {
1501
+ [K in FontVariantEmojiKeys]?: FontVariantEmojiValue;
1502
+ };
1503
+ type FontVariantLigaturesProperties = {
1504
+ [K in FontVariantLigaturesKeys]?: FontVariantLigaturesValue;
1505
+ };
1506
+ type FontVariantNumericProperties = {
1507
+ [K in FontVariantNumericKeys]?: FontVariantNumericValue;
1508
+ };
1509
+ type FontVariantPositionProperties = {
1510
+ [K in FontVariantPositionKeys]?: FontVariantPositionValue;
1511
+ };
1512
+ type FontVariationSettingsProperties = {
1513
+ [K in FontVariationSettingsKeys]?: FontVariationSettingsValue;
1514
+ };
1515
+ type FontWeightProperties = {
1516
+ [K in FontWeightKeys]?: FontWeightValue;
1517
+ };
1518
+ type ForcedColorAdjustProperties = {
1519
+ [K in ForcedColorAdjustKeys]?: ForcedColorAdjustValue;
1520
+ };
1521
+ type GridAutoColumnsProperties = {
1522
+ [K in GridAutoColumnsKeys]?: GridAutoColumnsValue;
1523
+ };
1524
+ type GridAutoFlowProperties = {
1525
+ [K in GridAutoFlowKeys]?: GridAutoFlowValue;
1526
+ };
1527
+ type GridAutoRowsProperties = {
1528
+ [K in GridAutoRowsKeys]?: GridAutoRowsValue;
1529
+ };
1530
+ type GridColumnEndProperties = {
1531
+ [K in GridColumnEndKeys]?: GridColumnEndValue;
1532
+ };
1533
+ type GridColumnStartProperties = {
1534
+ [K in GridColumnStartKeys]?: GridColumnStartValue;
1535
+ };
1536
+ type GridRowEndProperties = {
1537
+ [K in GridRowEndKeys]?: GridRowEndValue;
1538
+ };
1539
+ type GridRowStartProperties = {
1540
+ [K in GridRowStartKeys]?: GridRowStartValue;
1541
+ };
1542
+ type GridTemplateAreasProperties = {
1543
+ [K in GridTemplateAreasKeys]?: GridTemplateAreasValue;
1544
+ };
1545
+ type GridTemplateColumnsProperties = {
1546
+ [K in GridTemplateColumnsKeys]?: GridTemplateColumnsValue;
1547
+ };
1548
+ type GridTemplateRowsProperties = {
1549
+ [K in GridTemplateRowsKeys]?: GridTemplateRowsValue;
1550
+ };
1551
+ type HangingPunctuationProperties = {
1552
+ [K in HangingPunctuationKeys]?: HangingPunctuationValue;
1553
+ };
1554
+ type HeightProperties = {
1555
+ [K in HeightKeys]?: HeightValue;
1556
+ };
1557
+ type HyphenateCharacterProperties = {
1558
+ [K in HyphenateCharacterKeys]?: HyphenateCharacterValue;
1559
+ };
1560
+ type HyphenateLimitCharsProperties = {
1561
+ [K in HyphenateLimitCharsKeys]?: HyphenateLimitCharsValue;
1562
+ };
1563
+ type HyphensProperties = {
1564
+ [K in HyphensKeys]?: HyphensValue;
1565
+ };
1566
+ type ImageOrientationProperties = {
1567
+ [K in ImageOrientationKeys]?: ImageOrientationValue;
1568
+ };
1569
+ type ImageRenderingProperties = {
1570
+ [K in ImageRenderingKeys]?: ImageRenderingValue;
1571
+ };
1572
+ type ImageResolutionProperties = {
1573
+ [K in ImageResolutionKeys]?: ImageResolutionValue;
1574
+ };
1575
+ type InitialLetterProperties = {
1576
+ [K in InitialLetterKeys]?: InitialLetterValue;
1577
+ };
1578
+ type InputSecurityProperties = {
1579
+ [K in InputSecurityKeys]?: InputSecurityValue;
1580
+ };
1581
+ type IsolationProperties = {
1582
+ [K in IsolationKeys]?: IsolationValue;
1583
+ };
1584
+ type JustifyContentProperties = {
1585
+ [K in JustifyContentKeys]?: JustifyContentValue;
1586
+ };
1587
+ type JustifyItemsProperties = {
1588
+ [K in JustifyItemsKeys]?: JustifyItemsValue;
1589
+ };
1590
+ type JustifySelfProperties = {
1591
+ [K in JustifySelfKeys]?: JustifySelfValue;
1592
+ };
1593
+ type JustifyTracksProperties = {
1594
+ [K in JustifyTracksKeys]?: JustifyTracksValue;
1595
+ };
1596
+ type LeftProperties = {
1597
+ [K in LeftKeys]?: LeftValue;
1598
+ };
1599
+ type LetterSpacingProperties = {
1600
+ [K in LetterSpacingKeys]?: LetterSpacingValue;
1601
+ };
1602
+ type LineBreakProperties = {
1603
+ [K in LineBreakKeys]?: LineBreakValue;
1604
+ };
1605
+ type LineHeightProperties = {
1606
+ [K in LineHeightKeys]?: LineHeightValue;
1607
+ };
1608
+ type LineHeightStepProperties = {
1609
+ [K in LineHeightStepKeys]?: LineHeightStepValue;
1610
+ };
1611
+ type ListStyleImageProperties = {
1612
+ [K in ListStyleImageKeys]?: ListStyleImageValue;
1613
+ };
1614
+ type ListStylePositionProperties = {
1615
+ [K in ListStylePositionKeys]?: ListStylePositionValue;
1616
+ };
1617
+ type ListStyleTypeProperties = {
1618
+ [K in ListStyleTypeKeys]?: ListStyleTypeValue;
1619
+ };
1620
+ type MarginBottomProperties = {
1621
+ [K in MarginBottomKeys]?: MarginBottomValue;
1622
+ };
1623
+ type MarginLeftProperties = {
1624
+ [K in MarginLeftKeys]?: MarginLeftValue;
1625
+ };
1626
+ type MarginRightProperties = {
1627
+ [K in MarginRightKeys]?: MarginRightValue;
1628
+ };
1629
+ type MarginTopProperties = {
1630
+ [K in MarginTopKeys]?: MarginTopValue;
1631
+ };
1632
+ type MarginTrimProperties = {
1633
+ [K in MarginTrimKeys]?: MarginTrimValue;
1634
+ };
1635
+ type MaskBorderModeProperties = {
1636
+ [K in MaskBorderModeKeys]?: MaskBorderModeValue;
1637
+ };
1638
+ type MaskBorderOutsetProperties = {
1639
+ [K in MaskBorderOutsetKeys]?: MaskBorderOutsetValue;
1640
+ };
1641
+ type MaskBorderRepeatProperties = {
1642
+ [K in MaskBorderRepeatKeys]?: MaskBorderRepeatValue;
1643
+ };
1644
+ type MaskBorderSliceProperties = {
1645
+ [K in MaskBorderSliceKeys]?: MaskBorderSliceValue;
1646
+ };
1647
+ type MaskBorderSourceProperties = {
1648
+ [K in MaskBorderSourceKeys]?: MaskBorderSourceValue;
1649
+ };
1650
+ type MaskBorderWidthProperties = {
1651
+ [K in MaskBorderWidthKeys]?: MaskBorderWidthValue;
1652
+ };
1653
+ type MaskClipProperties = {
1654
+ [K in MaskClipKeys]?: MaskClipValue;
1655
+ };
1656
+ type MaskCompositeProperties = {
1657
+ [K in MaskCompositeKeys]?: MaskCompositeValue;
1658
+ };
1659
+ type MaskImageProperties = {
1660
+ [K in MaskImageKeys]?: MaskImageValue;
1661
+ };
1662
+ type MaskModeProperties = {
1663
+ [K in MaskModeKeys]?: MaskModeValue;
1664
+ };
1665
+ type MaskOriginProperties = {
1666
+ [K in MaskOriginKeys]?: MaskOriginValue;
1667
+ };
1668
+ type MaskPositionProperties = {
1669
+ [K in MaskPositionKeys]?: MaskPositionValue;
1670
+ };
1671
+ type MaskRepeatProperties = {
1672
+ [K in MaskRepeatKeys]?: MaskRepeatValue;
1673
+ };
1674
+ type MaskSizeProperties = {
1675
+ [K in MaskSizeKeys]?: MaskSizeValue;
1676
+ };
1677
+ type MaskTypeProperties = {
1678
+ [K in MaskTypeKeys]?: MaskTypeValue;
1679
+ };
1680
+ type MasonryAutoFlowProperties = {
1681
+ [K in MasonryAutoFlowKeys]?: MasonryAutoFlowValue;
1682
+ };
1683
+ type MathDepthProperties = {
1684
+ [K in MathDepthKeys]?: MathDepthValue;
1685
+ };
1686
+ type MathShiftProperties = {
1687
+ [K in MathShiftKeys]?: MathShiftValue;
1688
+ };
1689
+ type MathStyleProperties = {
1690
+ [K in MathStyleKeys]?: MathStyleValue;
1691
+ };
1692
+ type MaxHeightProperties = {
1693
+ [K in MaxHeightKeys]?: MaxHeightValue;
1694
+ };
1695
+ type MaxLinesProperties = {
1696
+ [K in MaxLinesKeys]?: MaxLinesValue;
1697
+ };
1698
+ type MaxWidthProperties = {
1699
+ [K in MaxWidthKeys]?: MaxWidthValue;
1700
+ };
1701
+ type MinHeightProperties = {
1702
+ [K in MinHeightKeys]?: MinHeightValue;
1703
+ };
1704
+ type MinWidthProperties = {
1705
+ [K in MinWidthKeys]?: MinWidthValue;
1706
+ };
1707
+ type MixBlendModeProperties = {
1708
+ [K in MixBlendModeKeys]?: MixBlendModeValue;
1709
+ };
1710
+ type MotionDistanceProperties = {
1711
+ [K in MotionDistanceKeys]?: MotionDistanceValue;
1712
+ };
1713
+ type MotionPathProperties = {
1714
+ [K in MotionPathKeys]?: MotionPathValue;
1715
+ };
1716
+ type MotionRotationProperties = {
1717
+ [K in MotionRotationKeys]?: MotionRotationValue;
1718
+ };
1719
+ type ObjectFitProperties = {
1720
+ [K in ObjectFitKeys]?: ObjectFitValue;
1721
+ };
1722
+ type ObjectPositionProperties = {
1723
+ [K in ObjectPositionKeys]?: ObjectPositionValue;
1724
+ };
1725
+ type OffsetAnchorProperties = {
1726
+ [K in OffsetAnchorKeys]?: OffsetAnchorValue;
1727
+ };
1728
+ type OffsetDistanceProperties = {
1729
+ [K in OffsetDistanceKeys]?: OffsetDistanceValue;
1730
+ };
1731
+ type OffsetPathProperties = {
1732
+ [K in OffsetPathKeys]?: OffsetPathValue;
1733
+ };
1734
+ type OffsetPositionProperties = {
1735
+ [K in OffsetPositionKeys]?: OffsetPositionValue;
1736
+ };
1737
+ type OffsetRotateProperties = {
1738
+ [K in OffsetRotateKeys]?: OffsetRotateValue;
1739
+ };
1740
+ type OffsetRotationProperties = {
1741
+ [K in OffsetRotationKeys]?: OffsetRotationValue;
1742
+ };
1743
+ type OpacityProperties = {
1744
+ [K in OpacityKeys]?: OpacityValue;
1745
+ };
1746
+ type OrderProperties = {
1747
+ [K in OrderKeys]?: OrderValue;
1748
+ };
1749
+ type OrphansProperties = {
1750
+ [K in OrphansKeys]?: OrphansValue;
1751
+ };
1752
+ type OutlineColorProperties = {
1753
+ [K in OutlineColorKeys]?: OutlineColorValue;
1754
+ };
1755
+ type OutlineOffsetProperties = {
1756
+ [K in OutlineOffsetKeys]?: OutlineOffsetValue;
1757
+ };
1758
+ type OutlineStyleProperties = {
1759
+ [K in OutlineStyleKeys]?: OutlineStyleValue;
1760
+ };
1761
+ type OutlineWidthProperties = {
1762
+ [K in OutlineWidthKeys]?: OutlineWidthValue;
1763
+ };
1764
+ type OverflowAnchorProperties = {
1765
+ [K in OverflowAnchorKeys]?: OverflowAnchorValue;
1766
+ };
1767
+ type OverflowClipBoxProperties = {
1768
+ [K in OverflowClipBoxKeys]?: OverflowClipBoxValue;
1769
+ };
1770
+ type OverflowClipMarginProperties = {
1771
+ [K in OverflowClipMarginKeys]?: OverflowClipMarginValue;
1772
+ };
1773
+ type OverflowWrapProperties = {
1774
+ [K in OverflowWrapKeys]?: OverflowWrapValue;
1775
+ };
1776
+ type OverflowXProperties = {
1777
+ [K in OverflowXKeys]?: OverflowXValue;
1778
+ };
1779
+ type OverflowYProperties = {
1780
+ [K in OverflowYKeys]?: OverflowYValue;
1781
+ };
1782
+ type OverlayProperties = {
1783
+ [K in OverlayKeys]?: OverlayValue;
1784
+ };
1785
+ type OverscrollBehaviorXProperties = {
1786
+ [K in OverscrollBehaviorXKeys]?: OverscrollBehaviorXValue;
1787
+ };
1788
+ type OverscrollBehaviorYProperties = {
1789
+ [K in OverscrollBehaviorYKeys]?: OverscrollBehaviorYValue;
1790
+ };
1791
+ type PaddingBottomProperties = {
1792
+ [K in PaddingBottomKeys]?: PaddingBottomValue;
1793
+ };
1794
+ type PaddingLeftProperties = {
1795
+ [K in PaddingLeftKeys]?: PaddingLeftValue;
1796
+ };
1797
+ type PaddingRightProperties = {
1798
+ [K in PaddingRightKeys]?: PaddingRightValue;
1799
+ };
1800
+ type PaddingTopProperties = {
1801
+ [K in PaddingTopKeys]?: PaddingTopValue;
1802
+ };
1803
+ type PageProperties = {
1804
+ [K in PageKeys]?: PageValue;
1805
+ };
1806
+ type PageBreakAfterProperties = {
1807
+ [K in PageBreakAfterKeys]?: PageBreakAfterValue;
1808
+ };
1809
+ type PageBreakBeforeProperties = {
1810
+ [K in PageBreakBeforeKeys]?: PageBreakBeforeValue;
1811
+ };
1812
+ type PageBreakInsideProperties = {
1813
+ [K in PageBreakInsideKeys]?: PageBreakInsideValue;
1814
+ };
1815
+ type PaintOrderProperties = {
1816
+ [K in PaintOrderKeys]?: PaintOrderValue;
1817
+ };
1818
+ type PerspectiveProperties = {
1819
+ [K in PerspectiveKeys]?: PerspectiveValue;
1820
+ };
1821
+ type PerspectiveOriginProperties = {
1822
+ [K in PerspectiveOriginKeys]?: PerspectiveOriginValue;
1823
+ };
1824
+ type PointerEventsProperties = {
1825
+ [K in PointerEventsKeys]?: PointerEventsValue;
1826
+ };
1827
+ type PositionProperties = {
1828
+ [K in PositionKeys]?: PositionValue;
1829
+ };
1830
+ type PrintColorAdjustProperties = {
1831
+ [K in PrintColorAdjustKeys]?: PrintColorAdjustValue;
1832
+ };
1833
+ type QuotesProperties = {
1834
+ [K in QuotesKeys]?: QuotesValue;
1835
+ };
1836
+ type ResizeProperties = {
1837
+ [K in ResizeKeys]?: ResizeValue;
1838
+ };
1839
+ type RightProperties = {
1840
+ [K in RightKeys]?: RightValue;
1841
+ };
1842
+ type RotateProperties = {
1843
+ [K in RotateKeys]?: RotateValue;
1844
+ };
1845
+ type RowGapProperties = {
1846
+ [K in RowGapKeys]?: RowGapValue;
1847
+ };
1848
+ type RubyAlignProperties = {
1849
+ [K in RubyAlignKeys]?: RubyAlignValue;
1850
+ };
1851
+ type RubyMergeProperties = {
1852
+ [K in RubyMergeKeys]?: RubyMergeValue;
1853
+ };
1854
+ type RubyPositionProperties = {
1855
+ [K in RubyPositionKeys]?: RubyPositionValue;
1856
+ };
1857
+ type ScaleProperties = {
1858
+ [K in ScaleKeys]?: ScaleValue;
1859
+ };
1860
+ type ScrollBehaviorProperties = {
1861
+ [K in ScrollBehaviorKeys]?: ScrollBehaviorValue;
1862
+ };
1863
+ type ScrollMarginBottomProperties = {
1864
+ [K in ScrollMarginBottomKeys]?: ScrollMarginBottomValue;
1865
+ };
1866
+ type ScrollMarginLeftProperties = {
1867
+ [K in ScrollMarginLeftKeys]?: ScrollMarginLeftValue;
1868
+ };
1869
+ type ScrollMarginRightProperties = {
1870
+ [K in ScrollMarginRightKeys]?: ScrollMarginRightValue;
1871
+ };
1872
+ type ScrollMarginTopProperties = {
1873
+ [K in ScrollMarginTopKeys]?: ScrollMarginTopValue;
1874
+ };
1875
+ type ScrollPaddingBottomProperties = {
1876
+ [K in ScrollPaddingBottomKeys]?: ScrollPaddingBottomValue;
1877
+ };
1878
+ type ScrollPaddingLeftProperties = {
1879
+ [K in ScrollPaddingLeftKeys]?: ScrollPaddingLeftValue;
1880
+ };
1881
+ type ScrollPaddingRightProperties = {
1882
+ [K in ScrollPaddingRightKeys]?: ScrollPaddingRightValue;
1883
+ };
1884
+ type ScrollPaddingTopProperties = {
1885
+ [K in ScrollPaddingTopKeys]?: ScrollPaddingTopValue;
1886
+ };
1887
+ type ScrollSnapAlignProperties = {
1888
+ [K in ScrollSnapAlignKeys]?: ScrollSnapAlignValue;
1889
+ };
1890
+ type ScrollSnapMarginBottomProperties = {
1891
+ [K in ScrollSnapMarginBottomKeys]?: ScrollSnapMarginBottomValue;
1892
+ };
1893
+ type ScrollSnapMarginLeftProperties = {
1894
+ [K in ScrollSnapMarginLeftKeys]?: ScrollSnapMarginLeftValue;
1895
+ };
1896
+ type ScrollSnapMarginRightProperties = {
1897
+ [K in ScrollSnapMarginRightKeys]?: ScrollSnapMarginRightValue;
1898
+ };
1899
+ type ScrollSnapMarginTopProperties = {
1900
+ [K in ScrollSnapMarginTopKeys]?: ScrollSnapMarginTopValue;
1901
+ };
1902
+ type ScrollSnapStopProperties = {
1903
+ [K in ScrollSnapStopKeys]?: ScrollSnapStopValue;
1904
+ };
1905
+ type ScrollSnapTypeProperties = {
1906
+ [K in ScrollSnapTypeKeys]?: ScrollSnapTypeValue;
1907
+ };
1908
+ type ScrollTimelineAxisProperties = {
1909
+ [K in ScrollTimelineAxisKeys]?: ScrollTimelineAxisValue;
1910
+ };
1911
+ type ScrollTimelineNameProperties = {
1912
+ [K in ScrollTimelineNameKeys]?: ScrollTimelineNameValue;
1913
+ };
1914
+ type ScrollbarColorProperties = {
1915
+ [K in ScrollbarColorKeys]?: ScrollbarColorValue;
1916
+ };
1917
+ type ScrollbarGutterProperties = {
1918
+ [K in ScrollbarGutterKeys]?: ScrollbarGutterValue;
1919
+ };
1920
+ type ScrollbarWidthProperties = {
1921
+ [K in ScrollbarWidthKeys]?: ScrollbarWidthValue;
1922
+ };
1923
+ type ShapeImageThresholdProperties = {
1924
+ [K in ShapeImageThresholdKeys]?: ShapeImageThresholdValue;
1925
+ };
1926
+ type ShapeMarginProperties = {
1927
+ [K in ShapeMarginKeys]?: ShapeMarginValue;
1928
+ };
1929
+ type ShapeOutsideProperties = {
1930
+ [K in ShapeOutsideKeys]?: ShapeOutsideValue;
1931
+ };
1932
+ type TabSizeProperties = {
1933
+ [K in TabSizeKeys]?: TabSizeValue;
1934
+ };
1935
+ type TableLayoutProperties = {
1936
+ [K in TableLayoutKeys]?: TableLayoutValue;
1937
+ };
1938
+ type TextAlignProperties = {
1939
+ [K in TextAlignKeys]?: TextAlignValue;
1940
+ };
1941
+ type TextAlignLastProperties = {
1942
+ [K in TextAlignLastKeys]?: TextAlignLastValue;
1943
+ };
1944
+ type TextCombineUprightProperties = {
1945
+ [K in TextCombineUprightKeys]?: TextCombineUprightValue;
1946
+ };
1947
+ type TextDecorationColorProperties = {
1948
+ [K in TextDecorationColorKeys]?: TextDecorationColorValue;
1949
+ };
1950
+ type TextDecorationLineProperties = {
1951
+ [K in TextDecorationLineKeys]?: TextDecorationLineValue;
1952
+ };
1953
+ type TextDecorationSkipProperties = {
1954
+ [K in TextDecorationSkipKeys]?: TextDecorationSkipValue;
1955
+ };
1956
+ type TextDecorationSkipInkProperties = {
1957
+ [K in TextDecorationSkipInkKeys]?: TextDecorationSkipInkValue;
1958
+ };
1959
+ type TextDecorationStyleProperties = {
1960
+ [K in TextDecorationStyleKeys]?: TextDecorationStyleValue;
1961
+ };
1962
+ type TextDecorationThicknessProperties = {
1963
+ [K in TextDecorationThicknessKeys]?: TextDecorationThicknessValue;
1964
+ };
1965
+ type TextEmphasisColorProperties = {
1966
+ [K in TextEmphasisColorKeys]?: TextEmphasisColorValue;
1967
+ };
1968
+ type TextEmphasisPositionProperties = {
1969
+ [K in TextEmphasisPositionKeys]?: TextEmphasisPositionValue;
1970
+ };
1971
+ type TextEmphasisStyleProperties = {
1972
+ [K in TextEmphasisStyleKeys]?: TextEmphasisStyleValue;
1973
+ };
1974
+ type TextIndentProperties = {
1975
+ [K in TextIndentKeys]?: TextIndentValue;
1976
+ };
1977
+ type TextJustifyProperties = {
1978
+ [K in TextJustifyKeys]?: TextJustifyValue;
1979
+ };
1980
+ type TextOrientationProperties = {
1981
+ [K in TextOrientationKeys]?: TextOrientationValue;
1982
+ };
1983
+ type TextOverflowProperties = {
1984
+ [K in TextOverflowKeys]?: TextOverflowValue;
1985
+ };
1986
+ type TextRenderingProperties = {
1987
+ [K in TextRenderingKeys]?: TextRenderingValue;
1988
+ };
1989
+ type TextShadowProperties = {
1990
+ [K in TextShadowKeys]?: TextShadowValue;
1991
+ };
1992
+ type TextSizeAdjustProperties = {
1993
+ [K in TextSizeAdjustKeys]?: TextSizeAdjustValue;
1994
+ };
1995
+ type TextTransformProperties = {
1996
+ [K in TextTransformKeys]?: TextTransformValue;
1997
+ };
1998
+ type TextUnderlineOffsetProperties = {
1999
+ [K in TextUnderlineOffsetKeys]?: TextUnderlineOffsetValue;
2000
+ };
2001
+ type TextUnderlinePositionProperties = {
2002
+ [K in TextUnderlinePositionKeys]?: TextUnderlinePositionValue;
2003
+ };
2004
+ type TextWrapProperties = {
2005
+ [K in TextWrapKeys]?: TextWrapValue;
2006
+ };
2007
+ type TimelineScopeProperties = {
2008
+ [K in TimelineScopeKeys]?: TimelineScopeValue;
2009
+ };
2010
+ type TopProperties = {
2011
+ [K in TopKeys]?: TopValue;
2012
+ };
2013
+ type TouchActionProperties = {
2014
+ [K in TouchActionKeys]?: TouchActionValue;
2015
+ };
2016
+ type TransformProperties = {
2017
+ [K in TransformKeys]?: TransformValue;
2018
+ };
2019
+ type TransformBoxProperties = {
2020
+ [K in TransformBoxKeys]?: TransformBoxValue;
2021
+ };
2022
+ type TransformOriginProperties = {
2023
+ [K in TransformOriginKeys]?: TransformOriginValue;
2024
+ };
2025
+ type TransformStyleProperties = {
2026
+ [K in TransformStyleKeys]?: TransformStyleValue;
2027
+ };
2028
+ type TransitionBehaviorProperties = {
2029
+ [K in TransitionBehaviorKeys]?: TransitionBehaviorValue;
2030
+ };
2031
+ type TransitionDelayProperties = {
2032
+ [K in TransitionDelayKeys]?: TransitionDelayValue;
2033
+ };
2034
+ type TransitionDurationProperties = {
2035
+ [K in TransitionDurationKeys]?: TransitionDurationValue;
2036
+ };
2037
+ type TransitionPropertyProperties = {
2038
+ [K in TransitionPropertyKeys]?: TransitionPropertyValue;
2039
+ };
2040
+ type TransitionTimingFunctionProperties = {
2041
+ [K in TransitionTimingFunctionKeys]?: TransitionTimingFunctionValue;
2042
+ };
2043
+ type TranslateProperties = {
2044
+ [K in TranslateKeys]?: TranslateValue;
2045
+ };
2046
+ type UnicodeBidiProperties = {
2047
+ [K in UnicodeBidiKeys]?: UnicodeBidiValue;
2048
+ };
2049
+ type UserSelectProperties = {
2050
+ [K in UserSelectKeys]?: UserSelectValue;
2051
+ };
2052
+ type VerticalAlignProperties = {
2053
+ [K in VerticalAlignKeys]?: VerticalAlignValue;
2054
+ };
2055
+ type ViewTimelineAxisProperties = {
2056
+ [K in ViewTimelineAxisKeys]?: ViewTimelineAxisValue;
2057
+ };
2058
+ type ViewTimelineInsetProperties = {
2059
+ [K in ViewTimelineInsetKeys]?: ViewTimelineInsetValue;
2060
+ };
2061
+ type ViewTimelineNameProperties = {
2062
+ [K in ViewTimelineNameKeys]?: ViewTimelineNameValue;
2063
+ };
2064
+ type ViewTransitionNameProperties = {
2065
+ [K in ViewTransitionNameKeys]?: ViewTransitionNameValue;
2066
+ };
2067
+ type VisibilityProperties = {
2068
+ [K in VisibilityKeys]?: VisibilityValue;
2069
+ };
2070
+ type WhiteSpaceProperties = {
2071
+ [K in WhiteSpaceKeys]?: WhiteSpaceValue;
2072
+ };
2073
+ type WhiteSpaceCollapseProperties = {
2074
+ [K in WhiteSpaceCollapseKeys]?: WhiteSpaceCollapseValue;
2075
+ };
2076
+ type WhiteSpaceTrimProperties = {
2077
+ [K in WhiteSpaceTrimKeys]?: WhiteSpaceTrimValue;
2078
+ };
2079
+ type WidowsProperties = {
2080
+ [K in WidowsKeys]?: WidowsValue;
2081
+ };
2082
+ type WidthProperties = {
2083
+ [K in WidthKeys]?: WidthValue;
2084
+ };
2085
+ type WillChangeProperties = {
2086
+ [K in WillChangeKeys]?: WillChangeValue;
2087
+ };
2088
+ type WordBreakProperties = {
2089
+ [K in WordBreakKeys]?: WordBreakValue;
2090
+ };
2091
+ type WordSpacingProperties = {
2092
+ [K in WordSpacingKeys]?: WordSpacingValue;
2093
+ };
2094
+ type WordWrapProperties = {
2095
+ [K in WordWrapKeys]?: WordWrapValue;
2096
+ };
2097
+ type WritingModeProperties = {
2098
+ [K in WritingModeKeys]?: WritingModeValue;
2099
+ };
2100
+ type ZIndexProperties = {
2101
+ [K in ZIndexKeys]?: ZIndexValue;
2102
+ };
2103
+ type ZoomProperties = {
2104
+ [K in ZoomKeys]?: ZoomValue;
2105
+ };
2106
+ type AlignmentBaselineProperties = {
2107
+ [K in AlignmentBaselineKeys]?: AlignmentBaselineValue;
2108
+ };
2109
+ type BaselineShiftProperties = {
2110
+ [K in BaselineShiftKeys]?: BaselineShiftValue;
2111
+ };
2112
+ type ClipProperties = {
2113
+ [K in ClipKeys]?: ClipValue;
2114
+ };
2115
+ type ClipRuleProperties = {
2116
+ [K in ClipRuleKeys]?: ClipRuleValue;
2117
+ };
2118
+ type ColorInterpolationProperties = {
2119
+ [K in ColorInterpolationKeys]?: ColorInterpolationValue;
2120
+ };
2121
+ type ColorRenderingProperties = {
2122
+ [K in ColorRenderingKeys]?: ColorRenderingValue;
2123
+ };
2124
+ type DominantBaselineProperties = {
2125
+ [K in DominantBaselineKeys]?: DominantBaselineValue;
2126
+ };
2127
+ type FillProperties = {
2128
+ [K in FillKeys]?: FillValue;
2129
+ };
2130
+ type FillOpacityProperties = {
2131
+ [K in FillOpacityKeys]?: FillOpacityValue;
2132
+ };
2133
+ type FillRuleProperties = {
2134
+ [K in FillRuleKeys]?: FillRuleValue;
2135
+ };
2136
+ type FloodColorProperties = {
2137
+ [K in FloodColorKeys]?: FloodColorValue;
2138
+ };
2139
+ type FloodOpacityProperties = {
2140
+ [K in FloodOpacityKeys]?: FloodOpacityValue;
2141
+ };
2142
+ type GlyphOrientationVerticalProperties = {
2143
+ [K in GlyphOrientationVerticalKeys]?: GlyphOrientationVerticalValue;
2144
+ };
2145
+ type LightingColorProperties = {
2146
+ [K in LightingColorKeys]?: LightingColorValue;
2147
+ };
2148
+ type MarkerProperties = {
2149
+ [K in MarkerKeys]?: MarkerValue;
2150
+ };
2151
+ type MarkerEndProperties = {
2152
+ [K in MarkerEndKeys]?: MarkerEndValue;
2153
+ };
2154
+ type MarkerMidProperties = {
2155
+ [K in MarkerMidKeys]?: MarkerMidValue;
2156
+ };
2157
+ type MarkerStartProperties = {
2158
+ [K in MarkerStartKeys]?: MarkerStartValue;
2159
+ };
2160
+ type ShapeRenderingProperties = {
2161
+ [K in ShapeRenderingKeys]?: ShapeRenderingValue;
2162
+ };
2163
+ type StopColorProperties = {
2164
+ [K in StopColorKeys]?: StopColorValue;
2165
+ };
2166
+ type StopOpacityProperties = {
2167
+ [K in StopOpacityKeys]?: StopOpacityValue;
2168
+ };
2169
+ type StrokeProperties = {
2170
+ [K in StrokeKeys]?: StrokeValue;
2171
+ };
2172
+ type StrokeDasharrayProperties = {
2173
+ [K in StrokeDasharrayKeys]?: StrokeDasharrayValue;
2174
+ };
2175
+ type StrokeDashoffsetProperties = {
2176
+ [K in StrokeDashoffsetKeys]?: StrokeDashoffsetValue;
2177
+ };
2178
+ type StrokeLinecapProperties = {
2179
+ [K in StrokeLinecapKeys]?: StrokeLinecapValue;
2180
+ };
2181
+ type StrokeLinejoinProperties = {
2182
+ [K in StrokeLinejoinKeys]?: StrokeLinejoinValue;
2183
+ };
2184
+ type StrokeMiterlimitProperties = {
2185
+ [K in StrokeMiterlimitKeys]?: StrokeMiterlimitValue;
2186
+ };
2187
+ type StrokeOpacityProperties = {
2188
+ [K in StrokeOpacityKeys]?: StrokeOpacityValue;
2189
+ };
2190
+ type StrokeWidthProperties = {
2191
+ [K in StrokeWidthKeys]?: StrokeWidthValue;
2192
+ };
2193
+ type TextAnchorProperties = {
2194
+ [K in TextAnchorKeys]?: TextAnchorValue;
2195
+ };
2196
+ type VectorEffectProperties = {
2197
+ [K in VectorEffectKeys]?: VectorEffectValue;
2198
+ };
2199
+ type BlockOverflowProperties = {
2200
+ [K in BlockOverflowKeys]?: BlockOverflowValue;
2201
+ };
2202
+ type BlockSizeProperties = {
2203
+ [K in BlockSizeKeys]?: BlockSizeValue;
2204
+ };
2205
+ type BorderBlockProperties = {
2206
+ [K in BorderBlockKeys]?: BorderBlockValue;
2207
+ };
2208
+ type BorderBlockEndProperties = {
2209
+ [K in BorderBlockEndKeys]?: BorderBlockEndValue;
2210
+ };
2211
+ type BorderBlockStartProperties = {
2212
+ [K in BorderBlockStartKeys]?: BorderBlockStartValue;
2213
+ };
2214
+ type BorderBlockColorProperties = {
2215
+ [K in BorderBlockColorKeys]?: BorderBlockColorValue;
2216
+ };
2217
+ type BorderBlockEndColorProperties = {
2218
+ [K in BorderBlockEndColorKeys]?: BorderBlockEndColorValue;
2219
+ };
2220
+ type BorderBlockEndStyleProperties = {
2221
+ [K in BorderBlockEndStyleKeys]?: BorderBlockEndStyleValue;
2222
+ };
2223
+ type BorderBlockEndWidthProperties = {
2224
+ [K in BorderBlockEndWidthKeys]?: BorderBlockEndWidthValue;
2225
+ };
2226
+ type BorderBlockStartColorProperties = {
2227
+ [K in BorderBlockStartColorKeys]?: BorderBlockStartColorValue;
2228
+ };
2229
+ type BorderBlockStartStyleProperties = {
2230
+ [K in BorderBlockStartStyleKeys]?: BorderBlockStartStyleValue;
2231
+ };
2232
+ type BorderBlockStartWidthProperties = {
2233
+ [K in BorderBlockStartWidthKeys]?: BorderBlockStartWidthValue;
2234
+ };
2235
+ type BorderBlockStyleProperties = {
2236
+ [K in BorderBlockStyleKeys]?: BorderBlockStyleValue;
2237
+ };
2238
+ type BorderBlockWidthProperties = {
2239
+ [K in BorderBlockWidthKeys]?: BorderBlockWidthValue;
2240
+ };
2241
+ type BorderInlineProperties = {
2242
+ [K in BorderInlineKeys]?: BorderInlineValue;
2243
+ };
2244
+ type BorderInlineEndProperties = {
2245
+ [K in BorderInlineEndKeys]?: BorderInlineEndValue;
2246
+ };
2247
+ type BorderInlineStartProperties = {
2248
+ [K in BorderInlineStartKeys]?: BorderInlineStartValue;
2249
+ };
2250
+ type BorderInlineColorProperties = {
2251
+ [K in BorderInlineColorKeys]?: BorderInlineColorValue;
2252
+ };
2253
+ type BorderInlineEndColorProperties = {
2254
+ [K in BorderInlineEndColorKeys]?: BorderInlineEndColorValue;
2255
+ };
2256
+ type BorderInlineEndStyleProperties = {
2257
+ [K in BorderInlineEndStyleKeys]?: BorderInlineEndStyleValue;
2258
+ };
2259
+ type BorderInlineEndWidthProperties = {
2260
+ [K in BorderInlineEndWidthKeys]?: BorderInlineEndWidthValue;
2261
+ };
2262
+ type BorderInlineStartColorProperties = {
2263
+ [K in BorderInlineStartColorKeys]?: BorderInlineStartColorValue;
2264
+ };
2265
+ type BorderInlineStartStyleProperties = {
2266
+ [K in BorderInlineStartStyleKeys]?: BorderInlineStartStyleValue;
2267
+ };
2268
+ type BorderInlineStartWidthProperties = {
2269
+ [K in BorderInlineStartWidthKeys]?: BorderInlineStartWidthValue;
2270
+ };
2271
+ type BorderInlineStyleProperties = {
2272
+ [K in BorderInlineStyleKeys]?: BorderInlineStyleValue;
2273
+ };
2274
+ type BorderInlineWidthProperties = {
2275
+ [K in BorderInlineWidthKeys]?: BorderInlineWidthValue;
2276
+ };
2277
+ type ContainIntrinsicBlockSizeProperties = {
2278
+ [K in ContainIntrinsicBlockSizeKeys]?: ContainIntrinsicBlockSizeValue;
2279
+ };
2280
+ type ContainIntrinsicInlineSizeProperties = {
2281
+ [K in ContainIntrinsicInlineSizeKeys]?: ContainIntrinsicInlineSizeValue;
2282
+ };
2283
+ type InlineSizeProperties = {
2284
+ [K in InlineSizeKeys]?: InlineSizeValue;
2285
+ };
2286
+ type InsetBlockProperties = {
2287
+ [K in InsetBlockKeys]?: InsetBlockValue;
2288
+ };
2289
+ type InsetBlockEndProperties = {
2290
+ [K in InsetBlockEndKeys]?: InsetBlockEndValue;
2291
+ };
2292
+ type InsetBlockStartProperties = {
2293
+ [K in InsetBlockStartKeys]?: InsetBlockStartValue;
2294
+ };
2295
+ type InsetInlineProperties = {
2296
+ [K in InsetInlineKeys]?: InsetInlineValue;
2297
+ };
2298
+ type InsetInlineEndProperties = {
2299
+ [K in InsetInlineEndKeys]?: InsetInlineEndValue;
2300
+ };
2301
+ type InsetInlineStartProperties = {
2302
+ [K in InsetInlineStartKeys]?: InsetInlineStartValue;
2303
+ };
2304
+ type MarginBlockProperties = {
2305
+ [K in MarginBlockKeys]?: MarginBlockValue;
2306
+ };
2307
+ type MarginBlockEndProperties = {
2308
+ [K in MarginBlockEndKeys]?: MarginBlockEndValue;
2309
+ };
2310
+ type MarginBlockStartProperties = {
2311
+ [K in MarginBlockStartKeys]?: MarginBlockStartValue;
2312
+ };
2313
+ type MarginInlineProperties = {
2314
+ [K in MarginInlineKeys]?: MarginInlineValue;
2315
+ };
2316
+ type MarginInlineEndProperties = {
2317
+ [K in MarginInlineEndKeys]?: MarginInlineEndValue;
2318
+ };
2319
+ type MarginInlineStartProperties = {
2320
+ [K in MarginInlineStartKeys]?: MarginInlineStartValue;
2321
+ };
2322
+ type MaxBlockSizeProperties = {
2323
+ [K in MaxBlockSizeKeys]?: MaxBlockSizeValue;
2324
+ };
2325
+ type MaxInlineSizeProperties = {
2326
+ [K in MaxInlineSizeKeys]?: MaxInlineSizeValue;
2327
+ };
2328
+ type MinBlockSizeProperties = {
2329
+ [K in MinBlockSizeKeys]?: MinBlockSizeValue;
2330
+ };
2331
+ type MinInlineSizeProperties = {
2332
+ [K in MinInlineSizeKeys]?: MinInlineSizeValue;
2333
+ };
2334
+ type OverflowBlockProperties = {
2335
+ [K in OverflowBlockKeys]?: OverflowBlockValue;
2336
+ };
2337
+ type OverflowInlineProperties = {
2338
+ [K in OverflowInlineKeys]?: OverflowInlineValue;
2339
+ };
2340
+ type OverscrollBehaviorBlockProperties = {
2341
+ [K in OverscrollBehaviorBlockKeys]?: OverscrollBehaviorBlockValue;
2342
+ };
2343
+ type OverscrollBehaviorInlineProperties = {
2344
+ [K in OverscrollBehaviorInlineKeys]?: OverscrollBehaviorInlineValue;
2345
+ };
2346
+ type PaddingBlockProperties = {
2347
+ [K in PaddingBlockKeys]?: PaddingBlockValue;
2348
+ };
2349
+ type PaddingBlockEndProperties = {
2350
+ [K in PaddingBlockEndKeys]?: PaddingBlockEndValue;
2351
+ };
2352
+ type PaddingBlockStartProperties = {
2353
+ [K in PaddingBlockStartKeys]?: PaddingBlockStartValue;
2354
+ };
2355
+ type PaddingInlineProperties = {
2356
+ [K in PaddingInlineKeys]?: PaddingInlineValue;
2357
+ };
2358
+ type PaddingInlineEndProperties = {
2359
+ [K in PaddingInlineEndKeys]?: PaddingInlineEndValue;
2360
+ };
2361
+ type PaddingInlineStartProperties = {
2362
+ [K in PaddingInlineStartKeys]?: PaddingInlineStartValue;
2363
+ };
2364
+ type ScrollMarginBlockProperties = {
2365
+ [K in ScrollMarginBlockKeys]?: ScrollMarginBlockValue;
2366
+ };
2367
+ type ScrollMarginBlockEndProperties = {
2368
+ [K in ScrollMarginBlockEndKeys]?: ScrollMarginBlockEndValue;
2369
+ };
2370
+ type ScrollMarginBlockStartProperties = {
2371
+ [K in ScrollMarginBlockStartKeys]?: ScrollMarginBlockStartValue;
2372
+ };
2373
+ type ScrollMarginInlineProperties = {
2374
+ [K in ScrollMarginInlineKeys]?: ScrollMarginInlineValue;
2375
+ };
2376
+ type ScrollMarginInlineEndProperties = {
2377
+ [K in ScrollMarginInlineEndKeys]?: ScrollMarginInlineEndValue;
2378
+ };
2379
+ type ScrollMarginInlineStartProperties = {
2380
+ [K in ScrollMarginInlineStartKeys]?: ScrollMarginInlineStartValue;
2381
+ };
2382
+ type ScrollPaddingBlockProperties = {
2383
+ [K in ScrollPaddingBlockKeys]?: ScrollPaddingBlockValue;
2384
+ };
2385
+ type ScrollPaddingBlockEndProperties = {
2386
+ [K in ScrollPaddingBlockEndKeys]?: ScrollPaddingBlockEndValue;
2387
+ };
2388
+ type ScrollPaddingBlockStartProperties = {
2389
+ [K in ScrollPaddingBlockStartKeys]?: ScrollPaddingBlockStartValue;
2390
+ };
2391
+ type ScrollPaddingInlineProperties = {
2392
+ [K in ScrollPaddingInlineKeys]?: ScrollPaddingInlineValue;
2393
+ };
2394
+ type ScrollPaddingInlineEndProperties = {
2395
+ [K in ScrollPaddingInlineEndKeys]?: ScrollPaddingInlineEndValue;
2396
+ };
2397
+ type ScrollPaddingInlineStartProperties = {
2398
+ [K in ScrollPaddingInlineStartKeys]?: ScrollPaddingInlineStartValue;
2399
+ };
2400
+ interface SupportedTokenPropertiesMap {
2401
+ 'all': AllProperties;
2402
+ 'animation': AnimationProperties;
2403
+ 'animation-range': AnimationRangeProperties;
2404
+ 'background': BackgroundProperties;
2405
+ 'background-position': BackgroundPositionProperties;
2406
+ 'border': BorderProperties;
2407
+ 'border-bottom': BorderBottomProperties;
2408
+ 'border-color': BorderColorProperties;
2409
+ 'border-image': BorderImageProperties;
2410
+ 'border-left': BorderLeftProperties;
2411
+ 'border-radius': BorderRadiusProperties;
2412
+ 'border-right': BorderRightProperties;
2413
+ 'border-style': BorderStyleProperties;
2414
+ 'border-top': BorderTopProperties;
2415
+ 'border-width': BorderWidthProperties;
2416
+ 'caret': CaretProperties;
2417
+ 'column-rule': ColumnRuleProperties;
2418
+ 'columns': ColumnsProperties;
2419
+ 'contain-intrinsic-size': ContainIntrinsicSizeProperties;
2420
+ 'container': ContainerProperties;
2421
+ 'flex': FlexProperties;
2422
+ 'flex-flow': FlexFlowProperties;
2423
+ 'font': FontProperties;
2424
+ 'gap': GapProperties;
2425
+ 'grid': GridProperties;
2426
+ 'grid-area': GridAreaProperties;
2427
+ 'grid-column': GridColumnProperties;
2428
+ 'grid-row': GridRowProperties;
2429
+ 'grid-template': GridTemplateProperties;
2430
+ 'inset': InsetProperties;
2431
+ 'line-clamp': LineClampProperties;
2432
+ 'list-style': ListStyleProperties;
2433
+ 'margin': MarginProperties;
2434
+ 'mask': MaskProperties;
2435
+ 'mask-border': MaskBorderProperties;
2436
+ 'motion': MotionProperties;
2437
+ 'offset': OffsetProperties;
2438
+ 'outline': OutlineProperties;
2439
+ 'overflow': OverflowProperties;
2440
+ 'overscroll-behavior': OverscrollBehaviorProperties;
2441
+ 'padding': PaddingProperties;
2442
+ 'place-content': PlaceContentProperties;
2443
+ 'place-items': PlaceItemsProperties;
2444
+ 'place-self': PlaceSelfProperties;
2445
+ 'scroll-margin': ScrollMarginProperties;
2446
+ 'scroll-padding': ScrollPaddingProperties;
2447
+ 'scroll-snap-margin': ScrollSnapMarginProperties;
2448
+ 'scroll-timeline': ScrollTimelineProperties;
2449
+ 'text-decoration': TextDecorationProperties;
2450
+ 'text-emphasis': TextEmphasisProperties;
2451
+ 'transition': TransitionProperties;
2452
+ 'view-timeline': ViewTimelineProperties;
2453
+ 'accent-color': AccentColorProperties;
2454
+ 'align-content': AlignContentProperties;
2455
+ 'align-items': AlignItemsProperties;
2456
+ 'align-self': AlignSelfProperties;
2457
+ 'align-tracks': AlignTracksProperties;
2458
+ 'animation-composition': AnimationCompositionProperties;
2459
+ 'animation-delay': AnimationDelayProperties;
2460
+ 'animation-direction': AnimationDirectionProperties;
2461
+ 'animation-duration': AnimationDurationProperties;
2462
+ 'animation-fill-mode': AnimationFillModeProperties;
2463
+ 'animation-iteration-count': AnimationIterationCountProperties;
2464
+ 'animation-name': AnimationNameProperties;
2465
+ 'animation-play-state': AnimationPlayStateProperties;
2466
+ 'animation-range-end': AnimationRangeEndProperties;
2467
+ 'animation-range-start': AnimationRangeStartProperties;
2468
+ 'animation-timeline': AnimationTimelineProperties;
2469
+ 'animation-timing-function': AnimationTimingFunctionProperties;
2470
+ 'appearance': AppearanceProperties;
2471
+ 'aspect-ratio': AspectRatioProperties;
2472
+ 'backdrop-filter': BackdropFilterProperties;
2473
+ 'backface-visibility': BackfaceVisibilityProperties;
2474
+ 'background-attachment': BackgroundAttachmentProperties;
2475
+ 'background-blend-mode': BackgroundBlendModeProperties;
2476
+ 'background-clip': BackgroundClipProperties;
2477
+ 'background-color': BackgroundColorProperties;
2478
+ 'background-image': BackgroundImageProperties;
2479
+ 'background-origin': BackgroundOriginProperties;
2480
+ 'background-position-x': BackgroundPositionXProperties;
2481
+ 'background-position-y': BackgroundPositionYProperties;
2482
+ 'background-repeat': BackgroundRepeatProperties;
2483
+ 'background-size': BackgroundSizeProperties;
2484
+ 'border-bottom-color': BorderBottomColorProperties;
2485
+ 'border-bottom-left-radius': BorderBottomLeftRadiusProperties;
2486
+ 'border-bottom-right-radius': BorderBottomRightRadiusProperties;
2487
+ 'border-bottom-style': BorderBottomStyleProperties;
2488
+ 'border-bottom-width': BorderBottomWidthProperties;
2489
+ 'border-collapse': BorderCollapseProperties;
2490
+ 'border-end-end-radius': BorderEndEndRadiusProperties;
2491
+ 'border-end-start-radius': BorderEndStartRadiusProperties;
2492
+ 'border-image-outset': BorderImageOutsetProperties;
2493
+ 'border-image-repeat': BorderImageRepeatProperties;
2494
+ 'border-image-slice': BorderImageSliceProperties;
2495
+ 'border-image-source': BorderImageSourceProperties;
2496
+ 'border-image-width': BorderImageWidthProperties;
2497
+ 'border-left-color': BorderLeftColorProperties;
2498
+ 'border-left-style': BorderLeftStyleProperties;
2499
+ 'border-left-width': BorderLeftWidthProperties;
2500
+ 'border-right-color': BorderRightColorProperties;
2501
+ 'border-right-style': BorderRightStyleProperties;
2502
+ 'border-right-width': BorderRightWidthProperties;
2503
+ 'border-spacing': BorderSpacingProperties;
2504
+ 'border-start-end-radius': BorderStartEndRadiusProperties;
2505
+ 'border-start-start-radius': BorderStartStartRadiusProperties;
2506
+ 'border-top-color': BorderTopColorProperties;
2507
+ 'border-top-left-radius': BorderTopLeftRadiusProperties;
2508
+ 'border-top-right-radius': BorderTopRightRadiusProperties;
2509
+ 'border-top-style': BorderTopStyleProperties;
2510
+ 'border-top-width': BorderTopWidthProperties;
2511
+ 'bottom': BottomProperties;
2512
+ 'box-decoration-break': BoxDecorationBreakProperties;
2513
+ 'box-shadow': BoxShadowProperties;
2514
+ 'box-sizing': BoxSizingProperties;
2515
+ 'break-after': BreakAfterProperties;
2516
+ 'break-before': BreakBeforeProperties;
2517
+ 'break-inside': BreakInsideProperties;
2518
+ 'caption-side': CaptionSideProperties;
2519
+ 'caret-color': CaretColorProperties;
2520
+ 'caret-shape': CaretShapeProperties;
2521
+ 'clear': ClearProperties;
2522
+ 'clip-path': ClipPathProperties;
2523
+ 'color': ColorProperties;
2524
+ 'color-adjust': ColorAdjustProperties;
2525
+ 'color-scheme': ColorSchemeProperties;
2526
+ 'column-count': ColumnCountProperties;
2527
+ 'column-fill': ColumnFillProperties;
2528
+ 'column-gap': ColumnGapProperties;
2529
+ 'column-rule-color': ColumnRuleColorProperties;
2530
+ 'column-rule-style': ColumnRuleStyleProperties;
2531
+ 'column-rule-width': ColumnRuleWidthProperties;
2532
+ 'column-span': ColumnSpanProperties;
2533
+ 'column-width': ColumnWidthProperties;
2534
+ 'contain': ContainProperties;
2535
+ 'contain-intrinsic-height': ContainIntrinsicHeightProperties;
2536
+ 'contain-intrinsic-width': ContainIntrinsicWidthProperties;
2537
+ 'container-name': ContainerNameProperties;
2538
+ 'container-type': ContainerTypeProperties;
2539
+ 'content': ContentProperties;
2540
+ 'content-visibility': ContentVisibilityProperties;
2541
+ 'counter-increment': CounterIncrementProperties;
2542
+ 'counter-reset': CounterResetProperties;
2543
+ 'counter-set': CounterSetProperties;
2544
+ 'cursor': CursorProperties;
2545
+ 'direction': DirectionProperties;
2546
+ 'display': DisplayProperties;
2547
+ 'empty-cells': EmptyCellsProperties;
2548
+ 'filter': FilterProperties;
2549
+ 'flex-basis': FlexBasisProperties;
2550
+ 'flex-direction': FlexDirectionProperties;
2551
+ 'flex-grow': FlexGrowProperties;
2552
+ 'flex-shrink': FlexShrinkProperties;
2553
+ 'flex-wrap': FlexWrapProperties;
2554
+ 'float': FloatProperties;
2555
+ 'font-family': FontFamilyProperties;
2556
+ 'font-feature-settings': FontFeatureSettingsProperties;
2557
+ 'font-kerning': FontKerningProperties;
2558
+ 'font-language-override': FontLanguageOverrideProperties;
2559
+ 'font-optical-sizing': FontOpticalSizingProperties;
2560
+ 'font-palette': FontPaletteProperties;
2561
+ 'font-size': FontSizeProperties;
2562
+ 'font-size-adjust': FontSizeAdjustProperties;
2563
+ 'font-smooth': FontSmoothProperties;
2564
+ 'font-stretch': FontStretchProperties;
2565
+ 'font-style': FontStyleProperties;
2566
+ 'font-synthesis': FontSynthesisProperties;
2567
+ 'font-synthesis-position': FontSynthesisPositionProperties;
2568
+ 'font-synthesis-small-caps': FontSynthesisSmallCapsProperties;
2569
+ 'font-synthesis-style': FontSynthesisStyleProperties;
2570
+ 'font-synthesis-weight': FontSynthesisWeightProperties;
2571
+ 'font-variant': FontVariantProperties;
2572
+ 'font-variant-alternates': FontVariantAlternatesProperties;
2573
+ 'font-variant-caps': FontVariantCapsProperties;
2574
+ 'font-variant-east-asian': FontVariantEastAsianProperties;
2575
+ 'font-variant-emoji': FontVariantEmojiProperties;
2576
+ 'font-variant-ligatures': FontVariantLigaturesProperties;
2577
+ 'font-variant-numeric': FontVariantNumericProperties;
2578
+ 'font-variant-position': FontVariantPositionProperties;
2579
+ 'font-variation-settings': FontVariationSettingsProperties;
2580
+ 'font-weight': FontWeightProperties;
2581
+ 'forced-color-adjust': ForcedColorAdjustProperties;
2582
+ 'grid-auto-columns': GridAutoColumnsProperties;
2583
+ 'grid-auto-flow': GridAutoFlowProperties;
2584
+ 'grid-auto-rows': GridAutoRowsProperties;
2585
+ 'grid-column-end': GridColumnEndProperties;
2586
+ 'grid-column-start': GridColumnStartProperties;
2587
+ 'grid-row-end': GridRowEndProperties;
2588
+ 'grid-row-start': GridRowStartProperties;
2589
+ 'grid-template-areas': GridTemplateAreasProperties;
2590
+ 'grid-template-columns': GridTemplateColumnsProperties;
2591
+ 'grid-template-rows': GridTemplateRowsProperties;
2592
+ 'hanging-punctuation': HangingPunctuationProperties;
2593
+ 'height': HeightProperties;
2594
+ 'hyphenate-character': HyphenateCharacterProperties;
2595
+ 'hyphenate-limit-chars': HyphenateLimitCharsProperties;
2596
+ 'hyphens': HyphensProperties;
2597
+ 'image-orientation': ImageOrientationProperties;
2598
+ 'image-rendering': ImageRenderingProperties;
2599
+ 'image-resolution': ImageResolutionProperties;
2600
+ 'initial-letter': InitialLetterProperties;
2601
+ 'input-security': InputSecurityProperties;
2602
+ 'isolation': IsolationProperties;
2603
+ 'justify-content': JustifyContentProperties;
2604
+ 'justify-items': JustifyItemsProperties;
2605
+ 'justify-self': JustifySelfProperties;
2606
+ 'justify-tracks': JustifyTracksProperties;
2607
+ 'left': LeftProperties;
2608
+ 'letter-spacing': LetterSpacingProperties;
2609
+ 'line-break': LineBreakProperties;
2610
+ 'line-height': LineHeightProperties;
2611
+ 'line-height-step': LineHeightStepProperties;
2612
+ 'list-style-image': ListStyleImageProperties;
2613
+ 'list-style-position': ListStylePositionProperties;
2614
+ 'list-style-type': ListStyleTypeProperties;
2615
+ 'margin-bottom': MarginBottomProperties;
2616
+ 'margin-left': MarginLeftProperties;
2617
+ 'margin-right': MarginRightProperties;
2618
+ 'margin-top': MarginTopProperties;
2619
+ 'margin-trim': MarginTrimProperties;
2620
+ 'mask-border-mode': MaskBorderModeProperties;
2621
+ 'mask-border-outset': MaskBorderOutsetProperties;
2622
+ 'mask-border-repeat': MaskBorderRepeatProperties;
2623
+ 'mask-border-slice': MaskBorderSliceProperties;
2624
+ 'mask-border-source': MaskBorderSourceProperties;
2625
+ 'mask-border-width': MaskBorderWidthProperties;
2626
+ 'mask-clip': MaskClipProperties;
2627
+ 'mask-composite': MaskCompositeProperties;
2628
+ 'mask-image': MaskImageProperties;
2629
+ 'mask-mode': MaskModeProperties;
2630
+ 'mask-origin': MaskOriginProperties;
2631
+ 'mask-position': MaskPositionProperties;
2632
+ 'mask-repeat': MaskRepeatProperties;
2633
+ 'mask-size': MaskSizeProperties;
2634
+ 'mask-type': MaskTypeProperties;
2635
+ 'masonry-auto-flow': MasonryAutoFlowProperties;
2636
+ 'math-depth': MathDepthProperties;
2637
+ 'math-shift': MathShiftProperties;
2638
+ 'math-style': MathStyleProperties;
2639
+ 'max-height': MaxHeightProperties;
2640
+ 'max-lines': MaxLinesProperties;
2641
+ 'max-width': MaxWidthProperties;
2642
+ 'min-height': MinHeightProperties;
2643
+ 'min-width': MinWidthProperties;
2644
+ 'mix-blend-mode': MixBlendModeProperties;
2645
+ 'motion-distance': MotionDistanceProperties;
2646
+ 'motion-path': MotionPathProperties;
2647
+ 'motion-rotation': MotionRotationProperties;
2648
+ 'object-fit': ObjectFitProperties;
2649
+ 'object-position': ObjectPositionProperties;
2650
+ 'offset-anchor': OffsetAnchorProperties;
2651
+ 'offset-distance': OffsetDistanceProperties;
2652
+ 'offset-path': OffsetPathProperties;
2653
+ 'offset-position': OffsetPositionProperties;
2654
+ 'offset-rotate': OffsetRotateProperties;
2655
+ 'offset-rotation': OffsetRotationProperties;
2656
+ 'opacity': OpacityProperties;
2657
+ 'order': OrderProperties;
2658
+ 'orphans': OrphansProperties;
2659
+ 'outline-color': OutlineColorProperties;
2660
+ 'outline-offset': OutlineOffsetProperties;
2661
+ 'outline-style': OutlineStyleProperties;
2662
+ 'outline-width': OutlineWidthProperties;
2663
+ 'overflow-anchor': OverflowAnchorProperties;
2664
+ 'overflow-clip-box': OverflowClipBoxProperties;
2665
+ 'overflow-clip-margin': OverflowClipMarginProperties;
2666
+ 'overflow-wrap': OverflowWrapProperties;
2667
+ 'overflow-x': OverflowXProperties;
2668
+ 'overflow-y': OverflowYProperties;
2669
+ 'overlay': OverlayProperties;
2670
+ 'overscroll-behavior-x': OverscrollBehaviorXProperties;
2671
+ 'overscroll-behavior-y': OverscrollBehaviorYProperties;
2672
+ 'padding-bottom': PaddingBottomProperties;
2673
+ 'padding-left': PaddingLeftProperties;
2674
+ 'padding-right': PaddingRightProperties;
2675
+ 'padding-top': PaddingTopProperties;
2676
+ 'page': PageProperties;
2677
+ 'page-break-after': PageBreakAfterProperties;
2678
+ 'page-break-before': PageBreakBeforeProperties;
2679
+ 'page-break-inside': PageBreakInsideProperties;
2680
+ 'paint-order': PaintOrderProperties;
2681
+ 'perspective': PerspectiveProperties;
2682
+ 'perspective-origin': PerspectiveOriginProperties;
2683
+ 'pointer-events': PointerEventsProperties;
2684
+ 'position': PositionProperties;
2685
+ 'print-color-adjust': PrintColorAdjustProperties;
2686
+ 'quotes': QuotesProperties;
2687
+ 'resize': ResizeProperties;
2688
+ 'right': RightProperties;
2689
+ 'rotate': RotateProperties;
2690
+ 'row-gap': RowGapProperties;
2691
+ 'ruby-align': RubyAlignProperties;
2692
+ 'ruby-merge': RubyMergeProperties;
2693
+ 'ruby-position': RubyPositionProperties;
2694
+ 'scale': ScaleProperties;
2695
+ 'scroll-behavior': ScrollBehaviorProperties;
2696
+ 'scroll-margin-bottom': ScrollMarginBottomProperties;
2697
+ 'scroll-margin-left': ScrollMarginLeftProperties;
2698
+ 'scroll-margin-right': ScrollMarginRightProperties;
2699
+ 'scroll-margin-top': ScrollMarginTopProperties;
2700
+ 'scroll-padding-bottom': ScrollPaddingBottomProperties;
2701
+ 'scroll-padding-left': ScrollPaddingLeftProperties;
2702
+ 'scroll-padding-right': ScrollPaddingRightProperties;
2703
+ 'scroll-padding-top': ScrollPaddingTopProperties;
2704
+ 'scroll-snap-align': ScrollSnapAlignProperties;
2705
+ 'scroll-snap-margin-bottom': ScrollSnapMarginBottomProperties;
2706
+ 'scroll-snap-margin-left': ScrollSnapMarginLeftProperties;
2707
+ 'scroll-snap-margin-right': ScrollSnapMarginRightProperties;
2708
+ 'scroll-snap-margin-top': ScrollSnapMarginTopProperties;
2709
+ 'scroll-snap-stop': ScrollSnapStopProperties;
2710
+ 'scroll-snap-type': ScrollSnapTypeProperties;
2711
+ 'scroll-timeline-axis': ScrollTimelineAxisProperties;
2712
+ 'scroll-timeline-name': ScrollTimelineNameProperties;
2713
+ 'scrollbar-color': ScrollbarColorProperties;
2714
+ 'scrollbar-gutter': ScrollbarGutterProperties;
2715
+ 'scrollbar-width': ScrollbarWidthProperties;
2716
+ 'shape-image-threshold': ShapeImageThresholdProperties;
2717
+ 'shape-margin': ShapeMarginProperties;
2718
+ 'shape-outside': ShapeOutsideProperties;
2719
+ 'tab-size': TabSizeProperties;
2720
+ 'table-layout': TableLayoutProperties;
2721
+ 'text-align': TextAlignProperties;
2722
+ 'text-align-last': TextAlignLastProperties;
2723
+ 'text-combine-upright': TextCombineUprightProperties;
2724
+ 'text-decoration-color': TextDecorationColorProperties;
2725
+ 'text-decoration-line': TextDecorationLineProperties;
2726
+ 'text-decoration-skip': TextDecorationSkipProperties;
2727
+ 'text-decoration-skip-ink': TextDecorationSkipInkProperties;
2728
+ 'text-decoration-style': TextDecorationStyleProperties;
2729
+ 'text-decoration-thickness': TextDecorationThicknessProperties;
2730
+ 'text-emphasis-color': TextEmphasisColorProperties;
2731
+ 'text-emphasis-position': TextEmphasisPositionProperties;
2732
+ 'text-emphasis-style': TextEmphasisStyleProperties;
2733
+ 'text-indent': TextIndentProperties;
2734
+ 'text-justify': TextJustifyProperties;
2735
+ 'text-orientation': TextOrientationProperties;
2736
+ 'text-overflow': TextOverflowProperties;
2737
+ 'text-rendering': TextRenderingProperties;
2738
+ 'text-shadow': TextShadowProperties;
2739
+ 'text-size-adjust': TextSizeAdjustProperties;
2740
+ 'text-transform': TextTransformProperties;
2741
+ 'text-underline-offset': TextUnderlineOffsetProperties;
2742
+ 'text-underline-position': TextUnderlinePositionProperties;
2743
+ 'text-wrap': TextWrapProperties;
2744
+ 'timeline-scope': TimelineScopeProperties;
2745
+ 'top': TopProperties;
2746
+ 'touch-action': TouchActionProperties;
2747
+ 'transform': TransformProperties;
2748
+ 'transform-box': TransformBoxProperties;
2749
+ 'transform-origin': TransformOriginProperties;
2750
+ 'transform-style': TransformStyleProperties;
2751
+ 'transition-behavior': TransitionBehaviorProperties;
2752
+ 'transition-delay': TransitionDelayProperties;
2753
+ 'transition-duration': TransitionDurationProperties;
2754
+ 'transition-property': TransitionPropertyProperties;
2755
+ 'transition-timing-function': TransitionTimingFunctionProperties;
2756
+ 'translate': TranslateProperties;
2757
+ 'unicode-bidi': UnicodeBidiProperties;
2758
+ 'user-select': UserSelectProperties;
2759
+ 'vertical-align': VerticalAlignProperties;
2760
+ 'view-timeline-axis': ViewTimelineAxisProperties;
2761
+ 'view-timeline-inset': ViewTimelineInsetProperties;
2762
+ 'view-timeline-name': ViewTimelineNameProperties;
2763
+ 'view-transition-name': ViewTransitionNameProperties;
2764
+ 'visibility': VisibilityProperties;
2765
+ 'white-space': WhiteSpaceProperties;
2766
+ 'white-space-collapse': WhiteSpaceCollapseProperties;
2767
+ 'white-space-trim': WhiteSpaceTrimProperties;
2768
+ 'widows': WidowsProperties;
2769
+ 'width': WidthProperties;
2770
+ 'will-change': WillChangeProperties;
2771
+ 'word-break': WordBreakProperties;
2772
+ 'word-spacing': WordSpacingProperties;
2773
+ 'word-wrap': WordWrapProperties;
2774
+ 'writing-mode': WritingModeProperties;
2775
+ 'z-index': ZIndexProperties;
2776
+ 'zoom': ZoomProperties;
2777
+ 'alignment-baseline': AlignmentBaselineProperties;
2778
+ 'baseline-shift': BaselineShiftProperties;
2779
+ 'clip': ClipProperties;
2780
+ 'clip-rule': ClipRuleProperties;
2781
+ 'color-interpolation': ColorInterpolationProperties;
2782
+ 'color-rendering': ColorRenderingProperties;
2783
+ 'dominant-baseline': DominantBaselineProperties;
2784
+ 'fill': FillProperties;
2785
+ 'fill-opacity': FillOpacityProperties;
2786
+ 'fill-rule': FillRuleProperties;
2787
+ 'flood-color': FloodColorProperties;
2788
+ 'flood-opacity': FloodOpacityProperties;
2789
+ 'glyph-orientation-vertical': GlyphOrientationVerticalProperties;
2790
+ 'lighting-color': LightingColorProperties;
2791
+ 'marker': MarkerProperties;
2792
+ 'marker-end': MarkerEndProperties;
2793
+ 'marker-mid': MarkerMidProperties;
2794
+ 'marker-start': MarkerStartProperties;
2795
+ 'shape-rendering': ShapeRenderingProperties;
2796
+ 'stop-color': StopColorProperties;
2797
+ 'stop-opacity': StopOpacityProperties;
2798
+ 'stroke': StrokeProperties;
2799
+ 'stroke-dasharray': StrokeDasharrayProperties;
2800
+ 'stroke-dashoffset': StrokeDashoffsetProperties;
2801
+ 'stroke-linecap': StrokeLinecapProperties;
2802
+ 'stroke-linejoin': StrokeLinejoinProperties;
2803
+ 'stroke-miterlimit': StrokeMiterlimitProperties;
2804
+ 'stroke-opacity': StrokeOpacityProperties;
2805
+ 'stroke-width': StrokeWidthProperties;
2806
+ 'text-anchor': TextAnchorProperties;
2807
+ 'vector-effect': VectorEffectProperties;
2808
+ 'block-overflow': BlockOverflowProperties;
2809
+ 'block-size': BlockSizeProperties;
2810
+ 'border-block': BorderBlockProperties;
2811
+ 'border-block-end': BorderBlockEndProperties;
2812
+ 'border-block-start': BorderBlockStartProperties;
2813
+ 'border-block-color': BorderBlockColorProperties;
2814
+ 'border-block-end-color': BorderBlockEndColorProperties;
2815
+ 'border-block-end-style': BorderBlockEndStyleProperties;
2816
+ 'border-block-end-width': BorderBlockEndWidthProperties;
2817
+ 'border-block-start-color': BorderBlockStartColorProperties;
2818
+ 'border-block-start-style': BorderBlockStartStyleProperties;
2819
+ 'border-block-start-width': BorderBlockStartWidthProperties;
2820
+ 'border-block-style': BorderBlockStyleProperties;
2821
+ 'border-block-width': BorderBlockWidthProperties;
2822
+ 'border-inline': BorderInlineProperties;
2823
+ 'border-inline-end': BorderInlineEndProperties;
2824
+ 'border-inline-start': BorderInlineStartProperties;
2825
+ 'border-inline-color': BorderInlineColorProperties;
2826
+ 'border-inline-end-color': BorderInlineEndColorProperties;
2827
+ 'border-inline-end-style': BorderInlineEndStyleProperties;
2828
+ 'border-inline-end-width': BorderInlineEndWidthProperties;
2829
+ 'border-inline-start-color': BorderInlineStartColorProperties;
2830
+ 'border-inline-start-style': BorderInlineStartStyleProperties;
2831
+ 'border-inline-start-width': BorderInlineStartWidthProperties;
2832
+ 'border-inline-style': BorderInlineStyleProperties;
2833
+ 'border-inline-width': BorderInlineWidthProperties;
2834
+ 'contain-intrinsic-block-size': ContainIntrinsicBlockSizeProperties;
2835
+ 'contain-intrinsic-inline-size': ContainIntrinsicInlineSizeProperties;
2836
+ 'inline-size': InlineSizeProperties;
2837
+ 'inset-block': InsetBlockProperties;
2838
+ 'inset-block-end': InsetBlockEndProperties;
2839
+ 'inset-block-start': InsetBlockStartProperties;
2840
+ 'inset-inline': InsetInlineProperties;
2841
+ 'inset-inline-end': InsetInlineEndProperties;
2842
+ 'inset-inline-start': InsetInlineStartProperties;
2843
+ 'margin-block': MarginBlockProperties;
2844
+ 'margin-block-end': MarginBlockEndProperties;
2845
+ 'margin-block-start': MarginBlockStartProperties;
2846
+ 'margin-inline': MarginInlineProperties;
2847
+ 'margin-inline-end': MarginInlineEndProperties;
2848
+ 'margin-inline-start': MarginInlineStartProperties;
2849
+ 'max-block-size': MaxBlockSizeProperties;
2850
+ 'max-inline-size': MaxInlineSizeProperties;
2851
+ 'min-block-size': MinBlockSizeProperties;
2852
+ 'min-inline-size': MinInlineSizeProperties;
2853
+ 'overflow-block': OverflowBlockProperties;
2854
+ 'overflow-inline': OverflowInlineProperties;
2855
+ 'overscroll-behavior-block': OverscrollBehaviorBlockProperties;
2856
+ 'overscroll-behavior-inline': OverscrollBehaviorInlineProperties;
2857
+ 'padding-block': PaddingBlockProperties;
2858
+ 'padding-block-end': PaddingBlockEndProperties;
2859
+ 'padding-block-start': PaddingBlockStartProperties;
2860
+ 'padding-inline': PaddingInlineProperties;
2861
+ 'padding-inline-end': PaddingInlineEndProperties;
2862
+ 'padding-inline-start': PaddingInlineStartProperties;
2863
+ 'scroll-margin-block': ScrollMarginBlockProperties;
2864
+ 'scroll-margin-block-end': ScrollMarginBlockEndProperties;
2865
+ 'scroll-margin-block-start': ScrollMarginBlockStartProperties;
2866
+ 'scroll-margin-inline': ScrollMarginInlineProperties;
2867
+ 'scroll-margin-inline-end': ScrollMarginInlineEndProperties;
2868
+ 'scroll-margin-inline-start': ScrollMarginInlineStartProperties;
2869
+ 'scroll-padding-block': ScrollPaddingBlockProperties;
2870
+ 'scroll-padding-block-end': ScrollPaddingBlockEndProperties;
2871
+ 'scroll-padding-block-start': ScrollPaddingBlockStartProperties;
2872
+ 'scroll-padding-inline': ScrollPaddingInlineProperties;
2873
+ 'scroll-padding-inline-end': ScrollPaddingInlineEndProperties;
2874
+ 'scroll-padding-inline-start': ScrollPaddingInlineStartProperties;
2875
+ }
2876
+ type CustomTokenamiProperties = {
2877
+ [C in CustomProperties as Tokenami.TokenProperty<C> | Tokenami.VariantProperty<C, string> | AliasedProperty<C>]?: PropertyThemeValue<C>;
2878
+ };
2879
+ interface TokenamiProperties extends AllProperties, AnimationProperties, AnimationRangeProperties, BackgroundProperties, BackgroundPositionProperties, BorderProperties, BorderBottomProperties, BorderColorProperties, BorderImageProperties, BorderLeftProperties, BorderRadiusProperties, BorderRightProperties, BorderStyleProperties, BorderTopProperties, BorderWidthProperties, CaretProperties, ColumnRuleProperties, ColumnsProperties, ContainIntrinsicSizeProperties, ContainerProperties, FlexProperties, FlexFlowProperties, FontProperties, GapProperties, GridProperties, GridAreaProperties, GridColumnProperties, GridRowProperties, GridTemplateProperties, InsetProperties, LineClampProperties, ListStyleProperties, MarginProperties, MaskProperties, MaskBorderProperties, MotionProperties, OffsetProperties, OutlineProperties, OverflowProperties, OverscrollBehaviorProperties, PaddingProperties, PlaceContentProperties, PlaceItemsProperties, PlaceSelfProperties, ScrollMarginProperties, ScrollPaddingProperties, ScrollSnapMarginProperties, ScrollTimelineProperties, TextDecorationProperties, TextEmphasisProperties, TransitionProperties, ViewTimelineProperties, AccentColorProperties, AlignContentProperties, AlignItemsProperties, AlignSelfProperties, AlignTracksProperties, AnimationCompositionProperties, AnimationDelayProperties, AnimationDirectionProperties, AnimationDurationProperties, AnimationFillModeProperties, AnimationIterationCountProperties, AnimationNameProperties, AnimationPlayStateProperties, AnimationRangeEndProperties, AnimationRangeStartProperties, AnimationTimelineProperties, AnimationTimingFunctionProperties, AppearanceProperties, AspectRatioProperties, BackdropFilterProperties, BackfaceVisibilityProperties, BackgroundAttachmentProperties, BackgroundBlendModeProperties, BackgroundClipProperties, BackgroundColorProperties, BackgroundImageProperties, BackgroundOriginProperties, BackgroundPositionXProperties, BackgroundPositionYProperties, BackgroundRepeatProperties, BackgroundSizeProperties, BorderBottomColorProperties, BorderBottomLeftRadiusProperties, BorderBottomRightRadiusProperties, BorderBottomStyleProperties, BorderBottomWidthProperties, BorderCollapseProperties, BorderEndEndRadiusProperties, BorderEndStartRadiusProperties, BorderImageOutsetProperties, BorderImageRepeatProperties, BorderImageSliceProperties, BorderImageSourceProperties, BorderImageWidthProperties, BorderLeftColorProperties, BorderLeftStyleProperties, BorderLeftWidthProperties, BorderRightColorProperties, BorderRightStyleProperties, BorderRightWidthProperties, BorderSpacingProperties, BorderStartEndRadiusProperties, BorderStartStartRadiusProperties, BorderTopColorProperties, BorderTopLeftRadiusProperties, BorderTopRightRadiusProperties, BorderTopStyleProperties, BorderTopWidthProperties, BottomProperties, BoxDecorationBreakProperties, BoxShadowProperties, BoxSizingProperties, BreakAfterProperties, BreakBeforeProperties, BreakInsideProperties, CaptionSideProperties, CaretColorProperties, CaretShapeProperties, ClearProperties, ClipPathProperties, ColorProperties, ColorAdjustProperties, ColorSchemeProperties, ColumnCountProperties, ColumnFillProperties, ColumnGapProperties, ColumnRuleColorProperties, ColumnRuleStyleProperties, ColumnRuleWidthProperties, ColumnSpanProperties, ColumnWidthProperties, ContainProperties, ContainIntrinsicHeightProperties, ContainIntrinsicWidthProperties, ContainerNameProperties, ContainerTypeProperties, ContentProperties, ContentVisibilityProperties, CounterIncrementProperties, CounterResetProperties, CounterSetProperties, CursorProperties, DirectionProperties, DisplayProperties, EmptyCellsProperties, FilterProperties, FlexBasisProperties, FlexDirectionProperties, FlexGrowProperties, FlexShrinkProperties, FlexWrapProperties, FloatProperties, FontFamilyProperties, FontFeatureSettingsProperties, FontKerningProperties, FontLanguageOverrideProperties, FontOpticalSizingProperties, FontPaletteProperties, FontSizeProperties, FontSizeAdjustProperties, FontSmoothProperties, FontStretchProperties, FontStyleProperties, FontSynthesisProperties, FontSynthesisPositionProperties, FontSynthesisSmallCapsProperties, FontSynthesisStyleProperties, FontSynthesisWeightProperties, FontVariantProperties, FontVariantAlternatesProperties, FontVariantCapsProperties, FontVariantEastAsianProperties, FontVariantEmojiProperties, FontVariantLigaturesProperties, FontVariantNumericProperties, FontVariantPositionProperties, FontVariationSettingsProperties, FontWeightProperties, ForcedColorAdjustProperties, GridAutoColumnsProperties, GridAutoFlowProperties, GridAutoRowsProperties, GridColumnEndProperties, GridColumnStartProperties, GridRowEndProperties, GridRowStartProperties, GridTemplateAreasProperties, GridTemplateColumnsProperties, GridTemplateRowsProperties, HangingPunctuationProperties, HeightProperties, HyphenateCharacterProperties, HyphenateLimitCharsProperties, HyphensProperties, ImageOrientationProperties, ImageRenderingProperties, ImageResolutionProperties, InitialLetterProperties, InputSecurityProperties, IsolationProperties, JustifyContentProperties, JustifyItemsProperties, JustifySelfProperties, JustifyTracksProperties, LeftProperties, LetterSpacingProperties, LineBreakProperties, LineHeightProperties, LineHeightStepProperties, ListStyleImageProperties, ListStylePositionProperties, ListStyleTypeProperties, MarginBottomProperties, MarginLeftProperties, MarginRightProperties, MarginTopProperties, MarginTrimProperties, MaskBorderModeProperties, MaskBorderOutsetProperties, MaskBorderRepeatProperties, MaskBorderSliceProperties, MaskBorderSourceProperties, MaskBorderWidthProperties, MaskClipProperties, MaskCompositeProperties, MaskImageProperties, MaskModeProperties, MaskOriginProperties, MaskPositionProperties, MaskRepeatProperties, MaskSizeProperties, MaskTypeProperties, MasonryAutoFlowProperties, MathDepthProperties, MathShiftProperties, MathStyleProperties, MaxHeightProperties, MaxLinesProperties, MaxWidthProperties, MinHeightProperties, MinWidthProperties, MixBlendModeProperties, MotionDistanceProperties, MotionPathProperties, MotionRotationProperties, ObjectFitProperties, ObjectPositionProperties, OffsetAnchorProperties, OffsetDistanceProperties, OffsetPathProperties, OffsetPositionProperties, OffsetRotateProperties, OffsetRotationProperties, OpacityProperties, OrderProperties, OrphansProperties, OutlineColorProperties, OutlineOffsetProperties, OutlineStyleProperties, OutlineWidthProperties, OverflowAnchorProperties, OverflowClipBoxProperties, OverflowClipMarginProperties, OverflowWrapProperties, OverflowXProperties, OverflowYProperties, OverlayProperties, OverscrollBehaviorXProperties, OverscrollBehaviorYProperties, PaddingBottomProperties, PaddingLeftProperties, PaddingRightProperties, PaddingTopProperties, PageProperties, PageBreakAfterProperties, PageBreakBeforeProperties, PageBreakInsideProperties, PaintOrderProperties, PerspectiveProperties, PerspectiveOriginProperties, PointerEventsProperties, PositionProperties, PrintColorAdjustProperties, QuotesProperties, ResizeProperties, RightProperties, RotateProperties, RowGapProperties, RubyAlignProperties, RubyMergeProperties, RubyPositionProperties, ScaleProperties, ScrollBehaviorProperties, ScrollMarginBottomProperties, ScrollMarginLeftProperties, ScrollMarginRightProperties, ScrollMarginTopProperties, ScrollPaddingBottomProperties, ScrollPaddingLeftProperties, ScrollPaddingRightProperties, ScrollPaddingTopProperties, ScrollSnapAlignProperties, ScrollSnapMarginBottomProperties, ScrollSnapMarginLeftProperties, ScrollSnapMarginRightProperties, ScrollSnapMarginTopProperties, ScrollSnapStopProperties, ScrollSnapTypeProperties, ScrollTimelineAxisProperties, ScrollTimelineNameProperties, ScrollbarColorProperties, ScrollbarGutterProperties, ScrollbarWidthProperties, ShapeImageThresholdProperties, ShapeMarginProperties, ShapeOutsideProperties, TabSizeProperties, TableLayoutProperties, TextAlignProperties, TextAlignLastProperties, TextCombineUprightProperties, TextDecorationColorProperties, TextDecorationLineProperties, TextDecorationSkipProperties, TextDecorationSkipInkProperties, TextDecorationStyleProperties, TextDecorationThicknessProperties, TextEmphasisColorProperties, TextEmphasisPositionProperties, TextEmphasisStyleProperties, TextIndentProperties, TextJustifyProperties, TextOrientationProperties, TextOverflowProperties, TextRenderingProperties, TextShadowProperties, TextSizeAdjustProperties, TextTransformProperties, TextUnderlineOffsetProperties, TextUnderlinePositionProperties, TextWrapProperties, TimelineScopeProperties, TopProperties, TouchActionProperties, TransformProperties, TransformBoxProperties, TransformOriginProperties, TransformStyleProperties, TransitionBehaviorProperties, TransitionDelayProperties, TransitionDurationProperties, TransitionPropertyProperties, TransitionTimingFunctionProperties, TranslateProperties, UnicodeBidiProperties, UserSelectProperties, VerticalAlignProperties, ViewTimelineAxisProperties, ViewTimelineInsetProperties, ViewTimelineNameProperties, ViewTransitionNameProperties, VisibilityProperties, WhiteSpaceProperties, WhiteSpaceCollapseProperties, WhiteSpaceTrimProperties, WidowsProperties, WidthProperties, WillChangeProperties, WordBreakProperties, WordSpacingProperties, WordWrapProperties, WritingModeProperties, ZIndexProperties, ZoomProperties, AlignmentBaselineProperties, BaselineShiftProperties, ClipProperties, ClipRuleProperties, ColorInterpolationProperties, ColorRenderingProperties, DominantBaselineProperties, FillProperties, FillOpacityProperties, FillRuleProperties, FloodColorProperties, FloodOpacityProperties, GlyphOrientationVerticalProperties, LightingColorProperties, MarkerProperties, MarkerEndProperties, MarkerMidProperties, MarkerStartProperties, ShapeRenderingProperties, StopColorProperties, StopOpacityProperties, StrokeProperties, StrokeDasharrayProperties, StrokeDashoffsetProperties, StrokeLinecapProperties, StrokeLinejoinProperties, StrokeMiterlimitProperties, StrokeOpacityProperties, StrokeWidthProperties, TextAnchorProperties, VectorEffectProperties, BlockOverflowProperties, BlockSizeProperties, BorderBlockProperties, BorderBlockEndProperties, BorderBlockStartProperties, BorderBlockColorProperties, BorderBlockEndColorProperties, BorderBlockEndStyleProperties, BorderBlockEndWidthProperties, BorderBlockStartColorProperties, BorderBlockStartStyleProperties, BorderBlockStartWidthProperties, BorderBlockStyleProperties, BorderBlockWidthProperties, BorderInlineProperties, BorderInlineEndProperties, BorderInlineStartProperties, BorderInlineColorProperties, BorderInlineEndColorProperties, BorderInlineEndStyleProperties, BorderInlineEndWidthProperties, BorderInlineStartColorProperties, BorderInlineStartStyleProperties, BorderInlineStartWidthProperties, BorderInlineStyleProperties, BorderInlineWidthProperties, ContainIntrinsicBlockSizeProperties, ContainIntrinsicInlineSizeProperties, InlineSizeProperties, InsetBlockProperties, InsetBlockEndProperties, InsetBlockStartProperties, InsetInlineProperties, InsetInlineEndProperties, InsetInlineStartProperties, MarginBlockProperties, MarginBlockEndProperties, MarginBlockStartProperties, MarginInlineProperties, MarginInlineEndProperties, MarginInlineStartProperties, MaxBlockSizeProperties, MaxInlineSizeProperties, MinBlockSizeProperties, MinInlineSizeProperties, OverflowBlockProperties, OverflowInlineProperties, OverscrollBehaviorBlockProperties, OverscrollBehaviorInlineProperties, PaddingBlockProperties, PaddingBlockEndProperties, PaddingBlockStartProperties, PaddingInlineProperties, PaddingInlineEndProperties, PaddingInlineStartProperties, ScrollMarginBlockProperties, ScrollMarginBlockEndProperties, ScrollMarginBlockStartProperties, ScrollMarginInlineProperties, ScrollMarginInlineEndProperties, ScrollMarginInlineStartProperties, ScrollPaddingBlockProperties, ScrollPaddingBlockEndProperties, ScrollPaddingBlockStartProperties, ScrollPaddingInlineProperties, ScrollPaddingInlineEndProperties, ScrollPaddingInlineStartProperties, CustomTokenamiProperties {
2880
+ [customProperty: `---${string}`]: any;
2881
+ }
2882
+ type TokenamiPropertiesPick<P extends keyof SupportedTokenPropertiesMap> = Pick<SupportedTokenPropertiesMap, P> extends infer T ? T[keyof T] : never;
2883
+ type TokenamiPropertiesOmit<P extends keyof SupportedTokenPropertiesMap> = Omit<SupportedTokenPropertiesMap, P> extends infer T ? T[keyof T] : never;
2884
+
2885
+ interface UsedTokens {
2886
+ properties: Tokenami.TokenProperty[];
2887
+ values: Tokenami.TokenValue[];
2888
+ composeBlocks: Record<`.${string}`, TokenamiProperties>;
2889
+ }
2890
+ declare function findUsedTokens(cwd: string, config: Tokenami.Config): Promise<UsedTokens>;
2891
+
2892
+ declare class Logger {
2893
+ log(_message: string): void;
2894
+ error(_message: string): void;
2895
+ }
2896
+
2897
+ interface TokenamiDiagnosticContext {
2898
+ logger?: Logger;
2899
+ }
2900
+ declare class TokenamiDiagnostics {
2901
+ #private;
2902
+ constructor(config: Tokenami.Config, context?: TokenamiDiagnosticContext);
2903
+ getSemanticDiagnostics(sourceFile: ts.SourceFile): ts.Diagnostic[];
2904
+ }
2905
+
2906
+ declare const createTSPlugin: (mod: {
2907
+ typescript: typeof ts;
2908
+ }) => {
2909
+ create(info: ts.server.PluginCreateInfo): ts.LanguageService;
2910
+ };
2911
+
2912
+ declare function error(str: string): never;
2913
+ declare function debug(str: string): void;
2914
+
2915
+ declare const log_debug: typeof debug;
2916
+ declare const log_error: typeof error;
2917
+ declare namespace log {
2918
+ export { log_debug as debug, log_error as error };
2919
+ }
2920
+
2921
+ declare const DEFAULT_PATHS: {
2922
+ js: string;
2923
+ ts: string;
2924
+ cjs: string;
2925
+ mjs: string;
2926
+ };
2927
+ type ProjectType = keyof typeof DEFAULT_PATHS;
2928
+ declare function getConfigPath(cwd: string, path?: string, type?: ProjectType): string;
2929
+ declare function getConfigAtPath(path: string, opts?: {
2930
+ cache: boolean;
2931
+ }): Tokenami.Config;
2932
+ declare function getTypeDefsPath(configPath: string): string;
2933
+ declare function getThemeValuesByTokenValues(tokenValues: Tokenami.TokenValue[], theme: Tokenami.Theme): {
2934
+ [k: string]: string;
2935
+ };
2936
+ declare function getThemeFromConfig(themeConfig: Tokenami.Config['theme']): {
2937
+ modes: Tokenami.ThemeModes['modes'];
2938
+ root: Tokenami.Theme;
2939
+ };
2940
+ type Mode = string & {};
2941
+ type ThemeValue = string & {};
2942
+ declare function getThemeValuesByThemeMode(tokenValue: Tokenami.TokenValue, themeConfig: Tokenami.Config['theme']): Record<Mode, ThemeValue>;
2943
+ declare function generateConfig(include: string, configPath: string): string;
2944
+ declare function mergedConfigs(theirs: Tokenami.Config): Tokenami.Config;
2945
+ declare function generateTypeDefs(configPath: string, stubPath?: string): string;
2946
+ declare function getValidProperties(config: Tokenami.Config): Set<string>;
2947
+ declare function unique<T>(items: T[]): T[];
2948
+
2949
+ declare const utils_generateConfig: typeof generateConfig;
2950
+ declare const utils_generateTypeDefs: typeof generateTypeDefs;
2951
+ declare const utils_getConfigAtPath: typeof getConfigAtPath;
2952
+ declare const utils_getConfigPath: typeof getConfigPath;
2953
+ declare const utils_getThemeFromConfig: typeof getThemeFromConfig;
2954
+ declare const utils_getThemeValuesByThemeMode: typeof getThemeValuesByThemeMode;
2955
+ declare const utils_getThemeValuesByTokenValues: typeof getThemeValuesByTokenValues;
2956
+ declare const utils_getTypeDefsPath: typeof getTypeDefsPath;
2957
+ declare const utils_getValidProperties: typeof getValidProperties;
2958
+ declare const utils_mergedConfigs: typeof mergedConfigs;
2959
+ declare const utils_unique: typeof unique;
2960
+ declare namespace utils {
2961
+ export { utils_generateConfig as generateConfig, utils_generateTypeDefs as generateTypeDefs, utils_getConfigAtPath as getConfigAtPath, utils_getConfigPath as getConfigPath, utils_getThemeFromConfig as getThemeFromConfig, utils_getThemeValuesByThemeMode as getThemeValuesByThemeMode, utils_getThemeValuesByTokenValues as getThemeValuesByTokenValues, utils_getTypeDefsPath as getTypeDefsPath, utils_getValidProperties as getValidProperties, utils_mergedConfigs as mergedConfigs, utils_unique as unique };
2962
+ }
2963
+
2964
+ type GenerateSheetParams = {
2965
+ output: string;
2966
+ config: Tokenami.Config;
2967
+ minify?: boolean;
2968
+ targets?: lightning.Targets;
2969
+ tokens: {
2970
+ properties: Tokenami.TokenProperty[];
2971
+ values: Tokenami.TokenValue[];
2972
+ composeBlocks: Record<`.${string}`, TokenamiProperties>;
2973
+ };
2974
+ };
2975
+ declare function generate(params: GenerateSheetParams): string;
2976
+
2977
+ export { type TokenValue, type TokenamiConfig, TokenamiDiagnostics, type TokenamiFinalConfig, type TokenamiProperties, type TokenamiPropertiesOmit, type TokenamiPropertiesPick, type UsedTokens, createTSPlugin, findUsedTokens, generate as generateSheet, log, utils };