@tenphi/tasty 0.14.2 → 0.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/tasty.d.ts CHANGED
@@ -1,13 +1,22 @@
1
- import { KeyframesSteps, PropertyDefinition } from "./injector/types.js";
2
1
  import { StyleValue, StyleValueStateMap } from "./utils/styles.js";
3
2
  import { Styles, StylesInterface } from "./styles/types.js";
4
- import { AllBaseProps, BaseProps, BaseStyleProps, Mods, Props, Tokens } from "./types.js";
5
- import * as react from "react";
3
+ import { AllBaseProps, BaseProps, BaseStyleProps, ModValue, Mods, Props, Tokens } from "./types.js";
6
4
  import { AllHTMLAttributes, ComponentType, ForwardRefExoticComponent, JSX, PropsWithoutRef, RefAttributes } from "react";
7
- import * as csstype from "csstype";
8
5
 
9
6
  //#region src/tasty.d.ts
10
7
  type StyleList = readonly (keyof { [key in keyof StylesInterface]: StylesInterface[key] })[];
8
+ /** Type descriptor for a single mod prop: a JS constructor or an enum array. */
9
+ type ModPropDef = BooleanConstructor | StringConstructor | NumberConstructor | readonly string[];
10
+ /** Array form: list of mod key names (types default to ModValue). */
11
+ type ModPropsList = readonly string[];
12
+ /** Object form: map of mod key names to type descriptors. */
13
+ type ModPropsMap = Readonly<Record<string, ModPropDef>>;
14
+ /** Either array or object form accepted by `modProps` option. */
15
+ type ModPropsInput = ModPropsList | ModPropsMap;
16
+ /** Resolve a single ModPropDef to its TypeScript type. */
17
+ type ResolveModPropDef<T> = T extends BooleanConstructor ? boolean : T extends StringConstructor ? string : T extends NumberConstructor ? number : T extends readonly (infer U)[] ? U : ModValue;
18
+ /** Resolve an entire `modProps` definition to the component prop types it adds. */
19
+ type ResolveModProps<M extends ModPropsInput> = M extends readonly (infer K)[] ? Partial<Record<K & string, ModValue>> : M extends Record<string, ModPropDef> ? { [key in keyof M & string]?: ResolveModPropDef<M[key]> } : {};
11
20
  type PropsWithStyles = {
12
21
  styles?: Styles;
13
22
  } & Omit<Props, 'styles'>;
@@ -57,17 +66,18 @@ type SubElementComponents<E extends ElementsDefinition> = { [K in keyof E]: Forw
57
66
  * Base type containing common properties shared between TastyProps and TastyElementOptions.
58
67
  * Separated to avoid code duplication while allowing different type constraints.
59
68
  */
60
- type TastyBaseProps<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = Record<string, never>> = {
69
+ type TastyBaseProps<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = Record<string, never>, M extends ModPropsInput = readonly string[]> = {
61
70
  /** Default styles of the element. */styles?: Styles; /** The list of styles that can be provided by props */
62
- styleProps?: K;
71
+ styleProps?: K; /** Modifier keys exposed as top-level component props (array or typed object form). */
72
+ modProps?: M;
63
73
  element?: BaseProps['element'];
64
74
  variants?: V; /** Default tokens for inline CSS custom properties */
65
75
  tokens?: Tokens; /** Sub-element definitions for compound components */
66
76
  elements?: E;
67
77
  } & Pick<BaseProps, 'qa' | 'qaVal'> & WithVariant<V>;
68
- type TastyProps<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = Record<string, never>, DefaultProps = Props> = TastyBaseProps<K, V, E> & {
78
+ type TastyProps<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = Record<string, never>, DefaultProps = Props, M extends ModPropsInput = readonly string[]> = TastyBaseProps<K, V, E, M> & {
69
79
  /** The tag name of the element or a React component. */as?: string | ComponentType<any>;
70
- } & Partial<Omit<DefaultProps, 'as' | 'styles' | 'styleProps' | 'tokens'>>;
80
+ } & Partial<Omit<DefaultProps, 'as' | 'styles' | 'styleProps' | 'modProps' | 'tokens'>>;
71
81
  /**
72
82
  * TastyElementOptions is used for the element-creation overload of tasty().
73
83
  * It includes a Tag generic that allows TypeScript to infer the correct
@@ -76,10 +86,10 @@ type TastyProps<K extends StyleList, V extends VariantMap, E extends ElementsDef
76
86
  * Note: Uses a separate index signature with `unknown` instead of inheriting
77
87
  * from Props (which has `any`) to ensure strict type checking for styles.
78
88
  */
79
- type TastyElementOptions<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = Record<string, never>, Tag extends keyof JSX.IntrinsicElements = 'div'> = TastyBaseProps<K, V, E> & {
89
+ type TastyElementOptions<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = Record<string, never>, Tag extends keyof JSX.IntrinsicElements = 'div', M extends ModPropsInput = readonly string[]> = TastyBaseProps<K, V, E, M> & {
80
90
  /** The tag name of the element or a React component. */as?: Tag | ComponentType<any>;
81
91
  } & Record<string, unknown>;
82
- type AllBasePropsWithMods<K extends StyleList> = AllBaseProps & { [key in K[number]]?: StyleValue<StylesInterface[key]> | StyleValueStateMap<StylesInterface[key]> } & BaseStyleProps;
92
+ type AllBasePropsWithMods<K extends StyleList, M extends ModPropsInput = readonly string[]> = AllBaseProps & { [key in K[number]]?: StyleValue<StylesInterface[key]> | StyleValueStateMap<StylesInterface[key]> } & BaseStyleProps & ResolveModProps<M>;
83
93
  /**
84
94
  * Keys from BasePropsWithoutChildren that should be omitted from HTML attributes.
85
95
  * This excludes event handlers so they can be properly typed from JSX.IntrinsicElements.
@@ -94,888 +104,11 @@ type TastySpecificKeys = 'as' | 'qa' | 'qaVal' | 'element' | 'styles' | 'breakpo
94
104
  * Uses AllHTMLAttributes as base for common attributes (like disabled),
95
105
  * but overrides event handlers with tag-specific types from JSX.IntrinsicElements.
96
106
  */
97
- type TastyElementProps<K extends StyleList, V extends VariantMap, Tag extends keyof JSX.IntrinsicElements = 'div'> = AllBasePropsWithMods<K> & WithVariant<V> & Omit<Omit<AllHTMLAttributes<HTMLElement>, keyof JSX.IntrinsicElements[Tag]> & JSX.IntrinsicElements[Tag], TastySpecificKeys | K[number]>;
107
+ type TastyElementProps<K extends StyleList, V extends VariantMap, Tag extends keyof JSX.IntrinsicElements = 'div', M extends ModPropsInput = readonly string[]> = AllBasePropsWithMods<K, M> & WithVariant<V> & Omit<Omit<AllHTMLAttributes<HTMLElement>, keyof JSX.IntrinsicElements[Tag]> & JSX.IntrinsicElements[Tag], TastySpecificKeys | K[number]>;
98
108
  type TastyComponentPropsWithDefaults<Props extends PropsWithStyles, DefaultProps extends Partial<Props>> = keyof DefaultProps extends never ? Props : { [key in Extract<keyof Props, keyof DefaultProps>]?: Props[key] } & { [key in keyof Omit<Props, keyof DefaultProps>]: Props[key] };
99
- declare function tasty<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = Record<string, never>, Tag extends keyof JSX.IntrinsicElements = 'div'>(options: TastyElementOptions<K, V, E, Tag>, secondArg?: never): ForwardRefExoticComponent<PropsWithoutRef<TastyElementProps<K, V, Tag>> & RefAttributes<unknown>> & SubElementComponents<E>;
109
+ declare function tasty<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = Record<string, never>, Tag extends keyof JSX.IntrinsicElements = 'div', M extends ModPropsInput = readonly string[]>(options: TastyElementOptions<K, V, E, Tag, M>, secondArg?: never): ForwardRefExoticComponent<PropsWithoutRef<TastyElementProps<K, V, Tag, M>> & RefAttributes<unknown>> & SubElementComponents<E>;
100
110
  declare function tasty<Props extends PropsWithStyles, DefaultProps extends Partial<Props> = Partial<Props>>(Component: ComponentType<Props>, options?: TastyProps<never, never, Record<string, never>, Props>): ComponentType<TastyComponentPropsWithDefaults<Props, DefaultProps>>;
101
- declare const Element: ForwardRefExoticComponent<AllBaseProps<keyof HTMLElementTagNameMap> & {
102
- clipPath?: StyleValue<csstype.Property.ClipPath | undefined> | StyleValueStateMap<csstype.Property.ClipPath | undefined>;
103
- filter?: StyleValue<csstype.Property.Filter | undefined> | StyleValueStateMap<csstype.Property.Filter | undefined>;
104
- image?: StyleValue<csstype.Property.BackgroundImage | undefined> | StyleValueStateMap<csstype.Property.BackgroundImage | undefined>;
105
- marker?: StyleValue<csstype.Property.Marker | undefined> | StyleValueStateMap<csstype.Property.Marker | undefined>;
106
- mask?: StyleValue<csstype.Property.Mask<string | number> | undefined> | StyleValueStateMap<csstype.Property.Mask<string | number> | undefined>;
107
- fill?: StyleValue<boolean | ((string & {}) | `#${string}` | `#${string}.0` | `#${string}.1` | `#${string}.2` | `#${string}.7` | `#${string}.3` | `#${string}.4` | `#${string}.5` | `#${string}.6` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.01` | `#${string}.02` | `#${string}.07` | `#${string}.03` | `#${string}.04` | `#${string}.05` | `#${string}.06` | `#${string}.08` | `#${string}.09` | `#${string}.10` | `#${string}.11` | `#${string}.12` | `#${string}.17` | `#${string}.13` | `#${string}.14` | `#${string}.15` | `#${string}.16` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.21` | `#${string}.22` | `#${string}.27` | `#${string}.23` | `#${string}.24` | `#${string}.25` | `#${string}.26` | `#${string}.28` | `#${string}.29` | `#${string}.70` | `#${string}.71` | `#${string}.72` | `#${string}.77` | `#${string}.73` | `#${string}.74` | `#${string}.75` | `#${string}.76` | `#${string}.78` | `#${string}.79` | `#${string}.30` | `#${string}.31` | `#${string}.32` | `#${string}.37` | `#${string}.33` | `#${string}.34` | `#${string}.35` | `#${string}.36` | `#${string}.38` | `#${string}.39` | `#${string}.40` | `#${string}.41` | `#${string}.42` | `#${string}.47` | `#${string}.43` | `#${string}.44` | `#${string}.45` | `#${string}.46` | `#${string}.48` | `#${string}.49` | `#${string}.50` | `#${string}.51` | `#${string}.52` | `#${string}.57` | `#${string}.53` | `#${string}.54` | `#${string}.55` | `#${string}.56` | `#${string}.58` | `#${string}.59` | `#${string}.60` | `#${string}.61` | `#${string}.62` | `#${string}.67` | `#${string}.63` | `#${string}.64` | `#${string}.65` | `#${string}.66` | `#${string}.68` | `#${string}.69` | `#${string}.80` | `#${string}.81` | `#${string}.82` | `#${string}.87` | `#${string}.83` | `#${string}.84` | `#${string}.85` | `#${string}.86` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.91` | `#${string}.92` | `#${string}.97` | `#${string}.93` | `#${string}.94` | `#${string}.95` | `#${string}.96` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `hsl(${string})` | `okhsl(${string})` | `oklch(${string})`) | undefined> | StyleValueStateMap<boolean | ((string & {}) | `#${string}` | `#${string}.0` | `#${string}.1` | `#${string}.2` | `#${string}.7` | `#${string}.3` | `#${string}.4` | `#${string}.5` | `#${string}.6` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.01` | `#${string}.02` | `#${string}.07` | `#${string}.03` | `#${string}.04` | `#${string}.05` | `#${string}.06` | `#${string}.08` | `#${string}.09` | `#${string}.10` | `#${string}.11` | `#${string}.12` | `#${string}.17` | `#${string}.13` | `#${string}.14` | `#${string}.15` | `#${string}.16` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.21` | `#${string}.22` | `#${string}.27` | `#${string}.23` | `#${string}.24` | `#${string}.25` | `#${string}.26` | `#${string}.28` | `#${string}.29` | `#${string}.70` | `#${string}.71` | `#${string}.72` | `#${string}.77` | `#${string}.73` | `#${string}.74` | `#${string}.75` | `#${string}.76` | `#${string}.78` | `#${string}.79` | `#${string}.30` | `#${string}.31` | `#${string}.32` | `#${string}.37` | `#${string}.33` | `#${string}.34` | `#${string}.35` | `#${string}.36` | `#${string}.38` | `#${string}.39` | `#${string}.40` | `#${string}.41` | `#${string}.42` | `#${string}.47` | `#${string}.43` | `#${string}.44` | `#${string}.45` | `#${string}.46` | `#${string}.48` | `#${string}.49` | `#${string}.50` | `#${string}.51` | `#${string}.52` | `#${string}.57` | `#${string}.53` | `#${string}.54` | `#${string}.55` | `#${string}.56` | `#${string}.58` | `#${string}.59` | `#${string}.60` | `#${string}.61` | `#${string}.62` | `#${string}.67` | `#${string}.63` | `#${string}.64` | `#${string}.65` | `#${string}.66` | `#${string}.68` | `#${string}.69` | `#${string}.80` | `#${string}.81` | `#${string}.82` | `#${string}.87` | `#${string}.83` | `#${string}.84` | `#${string}.85` | `#${string}.86` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.91` | `#${string}.92` | `#${string}.97` | `#${string}.93` | `#${string}.94` | `#${string}.95` | `#${string}.96` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `hsl(${string})` | `okhsl(${string})` | `oklch(${string})`) | undefined>;
108
- color?: StyleValue<boolean | ((string & {}) | `#${string}` | `#${string}.0` | `#${string}.1` | `#${string}.2` | `#${string}.7` | `#${string}.3` | `#${string}.4` | `#${string}.5` | `#${string}.6` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.01` | `#${string}.02` | `#${string}.07` | `#${string}.03` | `#${string}.04` | `#${string}.05` | `#${string}.06` | `#${string}.08` | `#${string}.09` | `#${string}.10` | `#${string}.11` | `#${string}.12` | `#${string}.17` | `#${string}.13` | `#${string}.14` | `#${string}.15` | `#${string}.16` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.21` | `#${string}.22` | `#${string}.27` | `#${string}.23` | `#${string}.24` | `#${string}.25` | `#${string}.26` | `#${string}.28` | `#${string}.29` | `#${string}.70` | `#${string}.71` | `#${string}.72` | `#${string}.77` | `#${string}.73` | `#${string}.74` | `#${string}.75` | `#${string}.76` | `#${string}.78` | `#${string}.79` | `#${string}.30` | `#${string}.31` | `#${string}.32` | `#${string}.37` | `#${string}.33` | `#${string}.34` | `#${string}.35` | `#${string}.36` | `#${string}.38` | `#${string}.39` | `#${string}.40` | `#${string}.41` | `#${string}.42` | `#${string}.47` | `#${string}.43` | `#${string}.44` | `#${string}.45` | `#${string}.46` | `#${string}.48` | `#${string}.49` | `#${string}.50` | `#${string}.51` | `#${string}.52` | `#${string}.57` | `#${string}.53` | `#${string}.54` | `#${string}.55` | `#${string}.56` | `#${string}.58` | `#${string}.59` | `#${string}.60` | `#${string}.61` | `#${string}.62` | `#${string}.67` | `#${string}.63` | `#${string}.64` | `#${string}.65` | `#${string}.66` | `#${string}.68` | `#${string}.69` | `#${string}.80` | `#${string}.81` | `#${string}.82` | `#${string}.87` | `#${string}.83` | `#${string}.84` | `#${string}.85` | `#${string}.86` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.91` | `#${string}.92` | `#${string}.97` | `#${string}.93` | `#${string}.94` | `#${string}.95` | `#${string}.96` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `hsl(${string})` | `okhsl(${string})` | `oklch(${string})`) | undefined> | StyleValueStateMap<boolean | ((string & {}) | `#${string}` | `#${string}.0` | `#${string}.1` | `#${string}.2` | `#${string}.7` | `#${string}.3` | `#${string}.4` | `#${string}.5` | `#${string}.6` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.01` | `#${string}.02` | `#${string}.07` | `#${string}.03` | `#${string}.04` | `#${string}.05` | `#${string}.06` | `#${string}.08` | `#${string}.09` | `#${string}.10` | `#${string}.11` | `#${string}.12` | `#${string}.17` | `#${string}.13` | `#${string}.14` | `#${string}.15` | `#${string}.16` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.21` | `#${string}.22` | `#${string}.27` | `#${string}.23` | `#${string}.24` | `#${string}.25` | `#${string}.26` | `#${string}.28` | `#${string}.29` | `#${string}.70` | `#${string}.71` | `#${string}.72` | `#${string}.77` | `#${string}.73` | `#${string}.74` | `#${string}.75` | `#${string}.76` | `#${string}.78` | `#${string}.79` | `#${string}.30` | `#${string}.31` | `#${string}.32` | `#${string}.37` | `#${string}.33` | `#${string}.34` | `#${string}.35` | `#${string}.36` | `#${string}.38` | `#${string}.39` | `#${string}.40` | `#${string}.41` | `#${string}.42` | `#${string}.47` | `#${string}.43` | `#${string}.44` | `#${string}.45` | `#${string}.46` | `#${string}.48` | `#${string}.49` | `#${string}.50` | `#${string}.51` | `#${string}.52` | `#${string}.57` | `#${string}.53` | `#${string}.54` | `#${string}.55` | `#${string}.56` | `#${string}.58` | `#${string}.59` | `#${string}.60` | `#${string}.61` | `#${string}.62` | `#${string}.67` | `#${string}.63` | `#${string}.64` | `#${string}.65` | `#${string}.66` | `#${string}.68` | `#${string}.69` | `#${string}.80` | `#${string}.81` | `#${string}.82` | `#${string}.87` | `#${string}.83` | `#${string}.84` | `#${string}.85` | `#${string}.86` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.91` | `#${string}.92` | `#${string}.97` | `#${string}.93` | `#${string}.94` | `#${string}.95` | `#${string}.96` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `hsl(${string})` | `okhsl(${string})` | `oklch(${string})`) | undefined>;
109
- font?: StyleValue<boolean | csstype.Property.FontFamily | undefined> | StyleValueStateMap<boolean | csstype.Property.FontFamily | undefined>;
110
- outline?: StyleValue<string | boolean | undefined> | StyleValueStateMap<string | boolean | undefined>;
111
- gap?: StyleValue<boolean | csstype.Property.Gap<string | number> | undefined> | StyleValueStateMap<boolean | csstype.Property.Gap<string | number> | undefined>;
112
- padding?: StyleValue<boolean | csstype.Property.Padding<string | number> | undefined> | StyleValueStateMap<boolean | csstype.Property.Padding<string | number> | undefined>;
113
- margin?: StyleValue<boolean | csstype.Property.Margin<string | number> | undefined> | StyleValueStateMap<boolean | csstype.Property.Margin<string | number> | undefined>;
114
- width?: StyleValue<boolean | csstype.Property.Width<string | number> | undefined> | StyleValueStateMap<boolean | csstype.Property.Width<string | number> | undefined>;
115
- height?: StyleValue<boolean | csstype.Property.Height<string | number> | undefined> | StyleValueStateMap<boolean | csstype.Property.Height<string | number> | undefined>;
116
- border?: StyleValue<boolean | csstype.Property.Border<string | number> | undefined> | StyleValueStateMap<boolean | csstype.Property.Border<string | number> | undefined>;
117
- transition?: StyleValue<string | (string & {}) | undefined> | StyleValueStateMap<string | (string & {}) | undefined>;
118
- placeContent?: StyleValue<csstype.Property.PlaceContent | undefined> | StyleValueStateMap<csstype.Property.PlaceContent | undefined>;
119
- placeItems?: StyleValue<csstype.Property.PlaceItems | undefined> | StyleValueStateMap<csstype.Property.PlaceItems | undefined>;
120
- accentColor?: StyleValue<csstype.Property.AccentColor | undefined> | StyleValueStateMap<csstype.Property.AccentColor | undefined>;
121
- alignContent?: StyleValue<csstype.Property.AlignContent | undefined> | StyleValueStateMap<csstype.Property.AlignContent | undefined>;
122
- alignItems?: StyleValue<csstype.Property.AlignItems | undefined> | StyleValueStateMap<csstype.Property.AlignItems | undefined>;
123
- alignSelf?: StyleValue<csstype.Property.AlignSelf | undefined> | StyleValueStateMap<csstype.Property.AlignSelf | undefined>;
124
- alignTracks?: StyleValue<csstype.Property.AlignTracks | undefined> | StyleValueStateMap<csstype.Property.AlignTracks | undefined>;
125
- alignmentBaseline?: StyleValue<csstype.Property.AlignmentBaseline | undefined> | StyleValueStateMap<csstype.Property.AlignmentBaseline | undefined>;
126
- anchorName?: StyleValue<csstype.Property.AnchorName | undefined> | StyleValueStateMap<csstype.Property.AnchorName | undefined>;
127
- anchorScope?: StyleValue<csstype.Property.AnchorScope | undefined> | StyleValueStateMap<csstype.Property.AnchorScope | undefined>;
128
- animationComposition?: StyleValue<csstype.Property.AnimationComposition | undefined> | StyleValueStateMap<csstype.Property.AnimationComposition | undefined>;
129
- animationDelay?: StyleValue<csstype.Property.AnimationDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDelay<string & {}> | undefined>;
130
- animationDirection?: StyleValue<csstype.Property.AnimationDirection | undefined> | StyleValueStateMap<csstype.Property.AnimationDirection | undefined>;
131
- animationDuration?: StyleValue<csstype.Property.AnimationDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDuration<string & {}> | undefined>;
132
- animationFillMode?: StyleValue<csstype.Property.AnimationFillMode | undefined> | StyleValueStateMap<csstype.Property.AnimationFillMode | undefined>;
133
- animationIterationCount?: StyleValue<csstype.Property.AnimationIterationCount | undefined> | StyleValueStateMap<csstype.Property.AnimationIterationCount | undefined>;
134
- animationName?: StyleValue<csstype.Property.AnimationName | undefined> | StyleValueStateMap<csstype.Property.AnimationName | undefined>;
135
- animationPlayState?: StyleValue<csstype.Property.AnimationPlayState | undefined> | StyleValueStateMap<csstype.Property.AnimationPlayState | undefined>;
136
- animationRangeEnd?: StyleValue<csstype.Property.AnimationRangeEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.AnimationRangeEnd<string | number> | undefined>;
137
- animationRangeStart?: StyleValue<csstype.Property.AnimationRangeStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.AnimationRangeStart<string | number> | undefined>;
138
- animationTimeline?: StyleValue<csstype.Property.AnimationTimeline | undefined> | StyleValueStateMap<csstype.Property.AnimationTimeline | undefined>;
139
- animationTimingFunction?: StyleValue<csstype.Property.AnimationTimingFunction | undefined> | StyleValueStateMap<csstype.Property.AnimationTimingFunction | undefined>;
140
- appearance?: StyleValue<csstype.Property.Appearance | undefined> | StyleValueStateMap<csstype.Property.Appearance | undefined>;
141
- aspectRatio?: StyleValue<csstype.Property.AspectRatio | undefined> | StyleValueStateMap<csstype.Property.AspectRatio | undefined>;
142
- backdropFilter?: StyleValue<csstype.Property.BackdropFilter | undefined> | StyleValueStateMap<csstype.Property.BackdropFilter | undefined>;
143
- backfaceVisibility?: StyleValue<csstype.Property.BackfaceVisibility | undefined> | StyleValueStateMap<csstype.Property.BackfaceVisibility | undefined>;
144
- backgroundAttachment?: StyleValue<csstype.Property.BackgroundAttachment | undefined> | StyleValueStateMap<csstype.Property.BackgroundAttachment | undefined>;
145
- backgroundBlendMode?: StyleValue<csstype.Property.BackgroundBlendMode | undefined> | StyleValueStateMap<csstype.Property.BackgroundBlendMode | undefined>;
146
- backgroundClip?: StyleValue<csstype.Property.BackgroundClip | undefined> | StyleValueStateMap<csstype.Property.BackgroundClip | undefined>;
147
- backgroundColor?: StyleValue<csstype.Property.BackgroundColor | undefined> | StyleValueStateMap<csstype.Property.BackgroundColor | undefined>;
148
- backgroundImage?: StyleValue<csstype.Property.BackgroundImage | undefined> | StyleValueStateMap<csstype.Property.BackgroundImage | undefined>;
149
- backgroundOrigin?: StyleValue<csstype.Property.BackgroundOrigin | undefined> | StyleValueStateMap<csstype.Property.BackgroundOrigin | undefined>;
150
- backgroundPositionX?: StyleValue<csstype.Property.BackgroundPositionX<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundPositionX<string | number> | undefined>;
151
- backgroundPositionY?: StyleValue<csstype.Property.BackgroundPositionY<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundPositionY<string | number> | undefined>;
152
- backgroundRepeat?: StyleValue<csstype.Property.BackgroundRepeat | undefined> | StyleValueStateMap<csstype.Property.BackgroundRepeat | undefined>;
153
- backgroundSize?: StyleValue<csstype.Property.BackgroundSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundSize<string | number> | undefined>;
154
- baselineShift?: StyleValue<csstype.Property.BaselineShift<string | number> | undefined> | StyleValueStateMap<csstype.Property.BaselineShift<string | number> | undefined>;
155
- blockSize?: StyleValue<csstype.Property.BlockSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.BlockSize<string | number> | undefined>;
156
- borderBlockEndColor?: StyleValue<csstype.Property.BorderBlockEndColor | undefined> | StyleValueStateMap<csstype.Property.BorderBlockEndColor | undefined>;
157
- borderBlockEndStyle?: StyleValue<csstype.Property.BorderBlockEndStyle | undefined> | StyleValueStateMap<csstype.Property.BorderBlockEndStyle | undefined>;
158
- borderBlockEndWidth?: StyleValue<csstype.Property.BorderBlockEndWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBlockEndWidth<string | number> | undefined>;
159
- borderBlockStartColor?: StyleValue<csstype.Property.BorderBlockStartColor | undefined> | StyleValueStateMap<csstype.Property.BorderBlockStartColor | undefined>;
160
- borderBlockStartStyle?: StyleValue<csstype.Property.BorderBlockStartStyle | undefined> | StyleValueStateMap<csstype.Property.BorderBlockStartStyle | undefined>;
161
- borderBlockStartWidth?: StyleValue<csstype.Property.BorderBlockStartWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBlockStartWidth<string | number> | undefined>;
162
- borderBottomColor?: StyleValue<csstype.Property.BorderBottomColor | undefined> | StyleValueStateMap<csstype.Property.BorderBottomColor | undefined>;
163
- borderBottomLeftRadius?: StyleValue<csstype.Property.BorderBottomLeftRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomLeftRadius<string | number> | undefined>;
164
- borderBottomRightRadius?: StyleValue<csstype.Property.BorderBottomRightRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomRightRadius<string | number> | undefined>;
165
- borderBottomStyle?: StyleValue<csstype.Property.BorderBottomStyle | undefined> | StyleValueStateMap<csstype.Property.BorderBottomStyle | undefined>;
166
- borderBottomWidth?: StyleValue<csstype.Property.BorderBottomWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomWidth<string | number> | undefined>;
167
- borderCollapse?: StyleValue<csstype.Property.BorderCollapse | undefined> | StyleValueStateMap<csstype.Property.BorderCollapse | undefined>;
168
- borderEndEndRadius?: StyleValue<csstype.Property.BorderEndEndRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderEndEndRadius<string | number> | undefined>;
169
- borderEndStartRadius?: StyleValue<csstype.Property.BorderEndStartRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderEndStartRadius<string | number> | undefined>;
170
- borderImageOutset?: StyleValue<csstype.Property.BorderImageOutset<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderImageOutset<string | number> | undefined>;
171
- borderImageRepeat?: StyleValue<csstype.Property.BorderImageRepeat | undefined> | StyleValueStateMap<csstype.Property.BorderImageRepeat | undefined>;
172
- borderImageSlice?: StyleValue<csstype.Property.BorderImageSlice | undefined> | StyleValueStateMap<csstype.Property.BorderImageSlice | undefined>;
173
- borderImageSource?: StyleValue<csstype.Property.BorderImageSource | undefined> | StyleValueStateMap<csstype.Property.BorderImageSource | undefined>;
174
- borderImageWidth?: StyleValue<csstype.Property.BorderImageWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderImageWidth<string | number> | undefined>;
175
- borderInlineEndColor?: StyleValue<csstype.Property.BorderInlineEndColor | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEndColor | undefined>;
176
- borderInlineEndStyle?: StyleValue<csstype.Property.BorderInlineEndStyle | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEndStyle | undefined>;
177
- borderInlineEndWidth?: StyleValue<csstype.Property.BorderInlineEndWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEndWidth<string | number> | undefined>;
178
- borderInlineStartColor?: StyleValue<csstype.Property.BorderInlineStartColor | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStartColor | undefined>;
179
- borderInlineStartStyle?: StyleValue<csstype.Property.BorderInlineStartStyle | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStartStyle | undefined>;
180
- borderInlineStartWidth?: StyleValue<csstype.Property.BorderInlineStartWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStartWidth<string | number> | undefined>;
181
- borderLeftColor?: StyleValue<csstype.Property.BorderLeftColor | undefined> | StyleValueStateMap<csstype.Property.BorderLeftColor | undefined>;
182
- borderLeftStyle?: StyleValue<csstype.Property.BorderLeftStyle | undefined> | StyleValueStateMap<csstype.Property.BorderLeftStyle | undefined>;
183
- borderLeftWidth?: StyleValue<csstype.Property.BorderLeftWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderLeftWidth<string | number> | undefined>;
184
- borderRightColor?: StyleValue<csstype.Property.BorderRightColor | undefined> | StyleValueStateMap<csstype.Property.BorderRightColor | undefined>;
185
- borderRightStyle?: StyleValue<csstype.Property.BorderRightStyle | undefined> | StyleValueStateMap<csstype.Property.BorderRightStyle | undefined>;
186
- borderRightWidth?: StyleValue<csstype.Property.BorderRightWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderRightWidth<string | number> | undefined>;
187
- borderSpacing?: StyleValue<csstype.Property.BorderSpacing<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderSpacing<string | number> | undefined>;
188
- borderStartEndRadius?: StyleValue<csstype.Property.BorderStartEndRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderStartEndRadius<string | number> | undefined>;
189
- borderStartStartRadius?: StyleValue<csstype.Property.BorderStartStartRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderStartStartRadius<string | number> | undefined>;
190
- borderTopColor?: StyleValue<csstype.Property.BorderTopColor | undefined> | StyleValueStateMap<csstype.Property.BorderTopColor | undefined>;
191
- borderTopLeftRadius?: StyleValue<csstype.Property.BorderTopLeftRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopLeftRadius<string | number> | undefined>;
192
- borderTopRightRadius?: StyleValue<csstype.Property.BorderTopRightRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopRightRadius<string | number> | undefined>;
193
- borderTopStyle?: StyleValue<csstype.Property.BorderTopStyle | undefined> | StyleValueStateMap<csstype.Property.BorderTopStyle | undefined>;
194
- borderTopWidth?: StyleValue<csstype.Property.BorderTopWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopWidth<string | number> | undefined>;
195
- bottom?: StyleValue<csstype.Property.Bottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.Bottom<string | number> | undefined>;
196
- boxDecorationBreak?: StyleValue<csstype.Property.BoxDecorationBreak | undefined> | StyleValueStateMap<csstype.Property.BoxDecorationBreak | undefined>;
197
- boxShadow?: StyleValue<csstype.Property.BoxShadow | undefined> | StyleValueStateMap<csstype.Property.BoxShadow | undefined>;
198
- boxSizing?: StyleValue<csstype.Property.BoxSizing | undefined> | StyleValueStateMap<csstype.Property.BoxSizing | undefined>;
199
- breakAfter?: StyleValue<csstype.Property.BreakAfter | undefined> | StyleValueStateMap<csstype.Property.BreakAfter | undefined>;
200
- breakBefore?: StyleValue<csstype.Property.BreakBefore | undefined> | StyleValueStateMap<csstype.Property.BreakBefore | undefined>;
201
- breakInside?: StyleValue<csstype.Property.BreakInside | undefined> | StyleValueStateMap<csstype.Property.BreakInside | undefined>;
202
- captionSide?: StyleValue<csstype.Property.CaptionSide | undefined> | StyleValueStateMap<csstype.Property.CaptionSide | undefined>;
203
- caretColor?: StyleValue<csstype.Property.CaretColor | undefined> | StyleValueStateMap<csstype.Property.CaretColor | undefined>;
204
- caretShape?: StyleValue<csstype.Property.CaretShape | undefined> | StyleValueStateMap<csstype.Property.CaretShape | undefined>;
205
- clear?: StyleValue<csstype.Property.Clear | undefined> | StyleValueStateMap<csstype.Property.Clear | undefined>;
206
- clipRule?: StyleValue<csstype.Property.ClipRule | undefined> | StyleValueStateMap<csstype.Property.ClipRule | undefined>;
207
- colorAdjust?: StyleValue<csstype.Property.PrintColorAdjust | undefined> | StyleValueStateMap<csstype.Property.PrintColorAdjust | undefined>;
208
- colorInterpolationFilters?: StyleValue<csstype.Property.ColorInterpolationFilters | undefined> | StyleValueStateMap<csstype.Property.ColorInterpolationFilters | undefined>;
209
- colorScheme?: StyleValue<csstype.Property.ColorScheme | undefined> | StyleValueStateMap<csstype.Property.ColorScheme | undefined>;
210
- columnCount?: StyleValue<csstype.Property.ColumnCount | undefined> | StyleValueStateMap<csstype.Property.ColumnCount | undefined>;
211
- columnFill?: StyleValue<csstype.Property.ColumnFill | undefined> | StyleValueStateMap<csstype.Property.ColumnFill | undefined>;
212
- columnGap?: StyleValue<csstype.Property.ColumnGap<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnGap<string | number> | undefined>;
213
- columnRuleColor?: StyleValue<csstype.Property.ColumnRuleColor | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleColor | undefined>;
214
- columnRuleStyle?: StyleValue<csstype.Property.ColumnRuleStyle | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleStyle | undefined>;
215
- columnRuleWidth?: StyleValue<csstype.Property.ColumnRuleWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleWidth<string | number> | undefined>;
216
- columnSpan?: StyleValue<csstype.Property.ColumnSpan | undefined> | StyleValueStateMap<csstype.Property.ColumnSpan | undefined>;
217
- columnWidth?: StyleValue<csstype.Property.ColumnWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnWidth<string | number> | undefined>;
218
- contain?: StyleValue<csstype.Property.Contain | undefined> | StyleValueStateMap<csstype.Property.Contain | undefined>;
219
- containIntrinsicBlockSize?: StyleValue<csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined>;
220
- containIntrinsicHeight?: StyleValue<csstype.Property.ContainIntrinsicHeight<string | number> | undefined> | StyleValueStateMap<csstype.Property.ContainIntrinsicHeight<string | number> | undefined>;
221
- containIntrinsicInlineSize?: StyleValue<csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined>;
222
- containIntrinsicWidth?: StyleValue<csstype.Property.ContainIntrinsicWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ContainIntrinsicWidth<string | number> | undefined>;
223
- containerName?: StyleValue<csstype.Property.ContainerName | undefined> | StyleValueStateMap<csstype.Property.ContainerName | undefined>;
224
- containerType?: StyleValue<csstype.Property.ContainerType | undefined> | StyleValueStateMap<csstype.Property.ContainerType | undefined>;
225
- content?: StyleValue<csstype.Property.Content | undefined> | StyleValueStateMap<csstype.Property.Content | undefined>;
226
- contentVisibility?: StyleValue<csstype.Property.ContentVisibility | undefined> | StyleValueStateMap<csstype.Property.ContentVisibility | undefined>;
227
- counterIncrement?: StyleValue<csstype.Property.CounterIncrement | undefined> | StyleValueStateMap<csstype.Property.CounterIncrement | undefined>;
228
- counterReset?: StyleValue<csstype.Property.CounterReset | undefined> | StyleValueStateMap<csstype.Property.CounterReset | undefined>;
229
- counterSet?: StyleValue<csstype.Property.CounterSet | undefined> | StyleValueStateMap<csstype.Property.CounterSet | undefined>;
230
- cursor?: StyleValue<csstype.Property.Cursor | undefined> | StyleValueStateMap<csstype.Property.Cursor | undefined>;
231
- cx?: StyleValue<csstype.Property.Cx<string | number> | undefined> | StyleValueStateMap<csstype.Property.Cx<string | number> | undefined>;
232
- cy?: StyleValue<csstype.Property.Cy<string | number> | undefined> | StyleValueStateMap<csstype.Property.Cy<string | number> | undefined>;
233
- d?: StyleValue<csstype.Property.D | undefined> | StyleValueStateMap<csstype.Property.D | undefined>;
234
- direction?: StyleValue<csstype.Property.Direction | undefined> | StyleValueStateMap<csstype.Property.Direction | undefined>;
235
- display?: StyleValue<csstype.Property.Display | undefined> | StyleValueStateMap<csstype.Property.Display | undefined>;
236
- dominantBaseline?: StyleValue<csstype.Property.DominantBaseline | undefined> | StyleValueStateMap<csstype.Property.DominantBaseline | undefined>;
237
- emptyCells?: StyleValue<csstype.Property.EmptyCells | undefined> | StyleValueStateMap<csstype.Property.EmptyCells | undefined>;
238
- fieldSizing?: StyleValue<csstype.Property.FieldSizing | undefined> | StyleValueStateMap<csstype.Property.FieldSizing | undefined>;
239
- fillOpacity?: StyleValue<csstype.Property.FillOpacity | undefined> | StyleValueStateMap<csstype.Property.FillOpacity | undefined>;
240
- fillRule?: StyleValue<csstype.Property.FillRule | undefined> | StyleValueStateMap<csstype.Property.FillRule | undefined>;
241
- flexBasis?: StyleValue<csstype.Property.FlexBasis<string | number> | undefined> | StyleValueStateMap<csstype.Property.FlexBasis<string | number> | undefined>;
242
- flexDirection?: StyleValue<csstype.Property.FlexDirection | undefined> | StyleValueStateMap<csstype.Property.FlexDirection | undefined>;
243
- flexGrow?: StyleValue<csstype.Property.FlexGrow | undefined> | StyleValueStateMap<csstype.Property.FlexGrow | undefined>;
244
- flexShrink?: StyleValue<csstype.Property.FlexShrink | undefined> | StyleValueStateMap<csstype.Property.FlexShrink | undefined>;
245
- flexWrap?: StyleValue<csstype.Property.FlexWrap | undefined> | StyleValueStateMap<csstype.Property.FlexWrap | undefined>;
246
- float?: StyleValue<csstype.Property.Float | undefined> | StyleValueStateMap<csstype.Property.Float | undefined>;
247
- floodColor?: StyleValue<csstype.Property.FloodColor | undefined> | StyleValueStateMap<csstype.Property.FloodColor | undefined>;
248
- floodOpacity?: StyleValue<csstype.Property.FloodOpacity | undefined> | StyleValueStateMap<csstype.Property.FloodOpacity | undefined>;
249
- fontFamily?: StyleValue<csstype.Property.FontFamily | undefined> | StyleValueStateMap<csstype.Property.FontFamily | undefined>;
250
- fontFeatureSettings?: StyleValue<csstype.Property.FontFeatureSettings | undefined> | StyleValueStateMap<csstype.Property.FontFeatureSettings | undefined>;
251
- fontKerning?: StyleValue<csstype.Property.FontKerning | undefined> | StyleValueStateMap<csstype.Property.FontKerning | undefined>;
252
- fontLanguageOverride?: StyleValue<csstype.Property.FontLanguageOverride | undefined> | StyleValueStateMap<csstype.Property.FontLanguageOverride | undefined>;
253
- fontOpticalSizing?: StyleValue<csstype.Property.FontOpticalSizing | undefined> | StyleValueStateMap<csstype.Property.FontOpticalSizing | undefined>;
254
- fontPalette?: StyleValue<csstype.Property.FontPalette | undefined> | StyleValueStateMap<csstype.Property.FontPalette | undefined>;
255
- fontSize?: StyleValue<csstype.Property.FontSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.FontSize<string | number> | undefined>;
256
- fontSizeAdjust?: StyleValue<csstype.Property.FontSizeAdjust | undefined> | StyleValueStateMap<csstype.Property.FontSizeAdjust | undefined>;
257
- fontSmooth?: StyleValue<csstype.Property.FontSmooth<string | number> | undefined> | StyleValueStateMap<csstype.Property.FontSmooth<string | number> | undefined>;
258
- fontStyle?: StyleValue<csstype.Property.FontStyle | undefined> | StyleValueStateMap<csstype.Property.FontStyle | undefined>;
259
- fontSynthesis?: StyleValue<csstype.Property.FontSynthesis | undefined> | StyleValueStateMap<csstype.Property.FontSynthesis | undefined>;
260
- fontSynthesisPosition?: StyleValue<csstype.Property.FontSynthesisPosition | undefined> | StyleValueStateMap<csstype.Property.FontSynthesisPosition | undefined>;
261
- fontSynthesisSmallCaps?: StyleValue<csstype.Property.FontSynthesisSmallCaps | undefined> | StyleValueStateMap<csstype.Property.FontSynthesisSmallCaps | undefined>;
262
- fontSynthesisStyle?: StyleValue<csstype.Property.FontSynthesisStyle | undefined> | StyleValueStateMap<csstype.Property.FontSynthesisStyle | undefined>;
263
- fontSynthesisWeight?: StyleValue<csstype.Property.FontSynthesisWeight | undefined> | StyleValueStateMap<csstype.Property.FontSynthesisWeight | undefined>;
264
- fontVariant?: StyleValue<csstype.Property.FontVariant | undefined> | StyleValueStateMap<csstype.Property.FontVariant | undefined>;
265
- fontVariantAlternates?: StyleValue<csstype.Property.FontVariantAlternates | undefined> | StyleValueStateMap<csstype.Property.FontVariantAlternates | undefined>;
266
- fontVariantCaps?: StyleValue<csstype.Property.FontVariantCaps | undefined> | StyleValueStateMap<csstype.Property.FontVariantCaps | undefined>;
267
- fontVariantEastAsian?: StyleValue<csstype.Property.FontVariantEastAsian | undefined> | StyleValueStateMap<csstype.Property.FontVariantEastAsian | undefined>;
268
- fontVariantEmoji?: StyleValue<csstype.Property.FontVariantEmoji | undefined> | StyleValueStateMap<csstype.Property.FontVariantEmoji | undefined>;
269
- fontVariantLigatures?: StyleValue<csstype.Property.FontVariantLigatures | undefined> | StyleValueStateMap<csstype.Property.FontVariantLigatures | undefined>;
270
- fontVariantNumeric?: StyleValue<csstype.Property.FontVariantNumeric | undefined> | StyleValueStateMap<csstype.Property.FontVariantNumeric | undefined>;
271
- fontVariantPosition?: StyleValue<csstype.Property.FontVariantPosition | undefined> | StyleValueStateMap<csstype.Property.FontVariantPosition | undefined>;
272
- fontVariationSettings?: StyleValue<csstype.Property.FontVariationSettings | undefined> | StyleValueStateMap<csstype.Property.FontVariationSettings | undefined>;
273
- fontWeight?: StyleValue<csstype.Property.FontWeight | undefined> | StyleValueStateMap<csstype.Property.FontWeight | undefined>;
274
- fontWidth?: StyleValue<csstype.Property.FontWidth | undefined> | StyleValueStateMap<csstype.Property.FontWidth | undefined>;
275
- forcedColorAdjust?: StyleValue<csstype.Property.ForcedColorAdjust | undefined> | StyleValueStateMap<csstype.Property.ForcedColorAdjust | undefined>;
276
- gridAutoColumns?: StyleValue<csstype.Property.GridAutoColumns<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridAutoColumns<string | number> | undefined>;
277
- gridAutoFlow?: StyleValue<csstype.Property.GridAutoFlow | undefined> | StyleValueStateMap<csstype.Property.GridAutoFlow | undefined>;
278
- gridAutoRows?: StyleValue<csstype.Property.GridAutoRows<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridAutoRows<string | number> | undefined>;
279
- gridColumnEnd?: StyleValue<csstype.Property.GridColumnEnd | undefined> | StyleValueStateMap<csstype.Property.GridColumnEnd | undefined>;
280
- gridColumnStart?: StyleValue<csstype.Property.GridColumnStart | undefined> | StyleValueStateMap<csstype.Property.GridColumnStart | undefined>;
281
- gridRowEnd?: StyleValue<csstype.Property.GridRowEnd | undefined> | StyleValueStateMap<csstype.Property.GridRowEnd | undefined>;
282
- gridRowStart?: StyleValue<csstype.Property.GridRowStart | undefined> | StyleValueStateMap<csstype.Property.GridRowStart | undefined>;
283
- gridTemplateAreas?: StyleValue<csstype.Property.GridTemplateAreas | undefined> | StyleValueStateMap<csstype.Property.GridTemplateAreas | undefined>;
284
- gridTemplateColumns?: StyleValue<csstype.Property.GridTemplateColumns<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridTemplateColumns<string | number> | undefined>;
285
- gridTemplateRows?: StyleValue<csstype.Property.GridTemplateRows<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridTemplateRows<string | number> | undefined>;
286
- hangingPunctuation?: StyleValue<csstype.Property.HangingPunctuation | undefined> | StyleValueStateMap<csstype.Property.HangingPunctuation | undefined>;
287
- hyphenateCharacter?: StyleValue<csstype.Property.HyphenateCharacter | undefined> | StyleValueStateMap<csstype.Property.HyphenateCharacter | undefined>;
288
- hyphenateLimitChars?: StyleValue<csstype.Property.HyphenateLimitChars | undefined> | StyleValueStateMap<csstype.Property.HyphenateLimitChars | undefined>;
289
- hyphens?: StyleValue<csstype.Property.Hyphens | undefined> | StyleValueStateMap<csstype.Property.Hyphens | undefined>;
290
- imageOrientation?: StyleValue<csstype.Property.ImageOrientation | undefined> | StyleValueStateMap<csstype.Property.ImageOrientation | undefined>;
291
- imageRendering?: StyleValue<csstype.Property.ImageRendering | undefined> | StyleValueStateMap<csstype.Property.ImageRendering | undefined>;
292
- imageResolution?: StyleValue<csstype.Property.ImageResolution | undefined> | StyleValueStateMap<csstype.Property.ImageResolution | undefined>;
293
- initialLetter?: StyleValue<csstype.Property.InitialLetter | undefined> | StyleValueStateMap<csstype.Property.InitialLetter | undefined>;
294
- initialLetterAlign?: StyleValue<csstype.Property.InitialLetterAlign | undefined> | StyleValueStateMap<csstype.Property.InitialLetterAlign | undefined>;
295
- inlineSize?: StyleValue<csstype.Property.InlineSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.InlineSize<string | number> | undefined>;
296
- insetBlockEnd?: StyleValue<csstype.Property.InsetBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetBlockEnd<string | number> | undefined>;
297
- insetBlockStart?: StyleValue<csstype.Property.InsetBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetBlockStart<string | number> | undefined>;
298
- insetInlineEnd?: StyleValue<csstype.Property.InsetInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetInlineEnd<string | number> | undefined>;
299
- insetInlineStart?: StyleValue<csstype.Property.InsetInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetInlineStart<string | number> | undefined>;
300
- interpolateSize?: StyleValue<csstype.Property.InterpolateSize | undefined> | StyleValueStateMap<csstype.Property.InterpolateSize | undefined>;
301
- isolation?: StyleValue<csstype.Property.Isolation | undefined> | StyleValueStateMap<csstype.Property.Isolation | undefined>;
302
- justifyContent?: StyleValue<csstype.Property.JustifyContent | undefined> | StyleValueStateMap<csstype.Property.JustifyContent | undefined>;
303
- justifyItems?: StyleValue<csstype.Property.JustifyItems | undefined> | StyleValueStateMap<csstype.Property.JustifyItems | undefined>;
304
- justifySelf?: StyleValue<csstype.Property.JustifySelf | undefined> | StyleValueStateMap<csstype.Property.JustifySelf | undefined>;
305
- justifyTracks?: StyleValue<csstype.Property.JustifyTracks | undefined> | StyleValueStateMap<csstype.Property.JustifyTracks | undefined>;
306
- left?: StyleValue<csstype.Property.Left<string | number> | undefined> | StyleValueStateMap<csstype.Property.Left<string | number> | undefined>;
307
- letterSpacing?: StyleValue<csstype.Property.LetterSpacing<string | number> | undefined> | StyleValueStateMap<csstype.Property.LetterSpacing<string | number> | undefined>;
308
- lightingColor?: StyleValue<csstype.Property.LightingColor | undefined> | StyleValueStateMap<csstype.Property.LightingColor | undefined>;
309
- lineBreak?: StyleValue<csstype.Property.LineBreak | undefined> | StyleValueStateMap<csstype.Property.LineBreak | undefined>;
310
- lineHeight?: StyleValue<csstype.Property.LineHeight<string | number> | undefined> | StyleValueStateMap<csstype.Property.LineHeight<string | number> | undefined>;
311
- lineHeightStep?: StyleValue<csstype.Property.LineHeightStep<string | number> | undefined> | StyleValueStateMap<csstype.Property.LineHeightStep<string | number> | undefined>;
312
- listStyleImage?: StyleValue<csstype.Property.ListStyleImage | undefined> | StyleValueStateMap<csstype.Property.ListStyleImage | undefined>;
313
- listStylePosition?: StyleValue<csstype.Property.ListStylePosition | undefined> | StyleValueStateMap<csstype.Property.ListStylePosition | undefined>;
314
- listStyleType?: StyleValue<csstype.Property.ListStyleType | undefined> | StyleValueStateMap<csstype.Property.ListStyleType | undefined>;
315
- marginBlockEnd?: StyleValue<csstype.Property.MarginBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginBlockEnd<string | number> | undefined>;
316
- marginBlockStart?: StyleValue<csstype.Property.MarginBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginBlockStart<string | number> | undefined>;
317
- marginBottom?: StyleValue<csstype.Property.MarginBottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginBottom<string | number> | undefined>;
318
- marginInlineEnd?: StyleValue<csstype.Property.MarginInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInlineEnd<string | number> | undefined>;
319
- marginInlineStart?: StyleValue<csstype.Property.MarginInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInlineStart<string | number> | undefined>;
320
- marginLeft?: StyleValue<csstype.Property.MarginLeft<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginLeft<string | number> | undefined>;
321
- marginRight?: StyleValue<csstype.Property.MarginRight<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginRight<string | number> | undefined>;
322
- marginTop?: StyleValue<csstype.Property.MarginTop<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginTop<string | number> | undefined>;
323
- marginTrim?: StyleValue<csstype.Property.MarginTrim | undefined> | StyleValueStateMap<csstype.Property.MarginTrim | undefined>;
324
- markerEnd?: StyleValue<csstype.Property.MarkerEnd | undefined> | StyleValueStateMap<csstype.Property.MarkerEnd | undefined>;
325
- markerMid?: StyleValue<csstype.Property.MarkerMid | undefined> | StyleValueStateMap<csstype.Property.MarkerMid | undefined>;
326
- markerStart?: StyleValue<csstype.Property.MarkerStart | undefined> | StyleValueStateMap<csstype.Property.MarkerStart | undefined>;
327
- maskBorderMode?: StyleValue<csstype.Property.MaskBorderMode | undefined> | StyleValueStateMap<csstype.Property.MaskBorderMode | undefined>;
328
- maskBorderOutset?: StyleValue<csstype.Property.MaskBorderOutset<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaskBorderOutset<string | number> | undefined>;
329
- maskBorderRepeat?: StyleValue<csstype.Property.MaskBorderRepeat | undefined> | StyleValueStateMap<csstype.Property.MaskBorderRepeat | undefined>;
330
- maskBorderSlice?: StyleValue<csstype.Property.MaskBorderSlice | undefined> | StyleValueStateMap<csstype.Property.MaskBorderSlice | undefined>;
331
- maskBorderSource?: StyleValue<csstype.Property.MaskBorderSource | undefined> | StyleValueStateMap<csstype.Property.MaskBorderSource | undefined>;
332
- maskBorderWidth?: StyleValue<csstype.Property.MaskBorderWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaskBorderWidth<string | number> | undefined>;
333
- maskClip?: StyleValue<csstype.Property.MaskClip | undefined> | StyleValueStateMap<csstype.Property.MaskClip | undefined>;
334
- maskComposite?: StyleValue<csstype.Property.MaskComposite | undefined> | StyleValueStateMap<csstype.Property.MaskComposite | undefined>;
335
- maskImage?: StyleValue<csstype.Property.MaskImage | undefined> | StyleValueStateMap<csstype.Property.MaskImage | undefined>;
336
- maskMode?: StyleValue<csstype.Property.MaskMode | undefined> | StyleValueStateMap<csstype.Property.MaskMode | undefined>;
337
- maskOrigin?: StyleValue<csstype.Property.MaskOrigin | undefined> | StyleValueStateMap<csstype.Property.MaskOrigin | undefined>;
338
- maskPosition?: StyleValue<csstype.Property.MaskPosition<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaskPosition<string | number> | undefined>;
339
- maskRepeat?: StyleValue<csstype.Property.MaskRepeat | undefined> | StyleValueStateMap<csstype.Property.MaskRepeat | undefined>;
340
- maskSize?: StyleValue<csstype.Property.MaskSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaskSize<string | number> | undefined>;
341
- maskType?: StyleValue<csstype.Property.MaskType | undefined> | StyleValueStateMap<csstype.Property.MaskType | undefined>;
342
- masonryAutoFlow?: StyleValue<csstype.Property.MasonryAutoFlow | undefined> | StyleValueStateMap<csstype.Property.MasonryAutoFlow | undefined>;
343
- mathDepth?: StyleValue<csstype.Property.MathDepth | undefined> | StyleValueStateMap<csstype.Property.MathDepth | undefined>;
344
- mathShift?: StyleValue<csstype.Property.MathShift | undefined> | StyleValueStateMap<csstype.Property.MathShift | undefined>;
345
- mathStyle?: StyleValue<csstype.Property.MathStyle | undefined> | StyleValueStateMap<csstype.Property.MathStyle | undefined>;
346
- maxBlockSize?: StyleValue<csstype.Property.MaxBlockSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaxBlockSize<string | number> | undefined>;
347
- maxHeight?: StyleValue<csstype.Property.MaxHeight<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaxHeight<string | number> | undefined>;
348
- maxInlineSize?: StyleValue<csstype.Property.MaxInlineSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaxInlineSize<string | number> | undefined>;
349
- maxLines?: StyleValue<csstype.Property.MaxLines | undefined> | StyleValueStateMap<csstype.Property.MaxLines | undefined>;
350
- maxWidth?: StyleValue<csstype.Property.MaxWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaxWidth<string | number> | undefined>;
351
- minBlockSize?: StyleValue<csstype.Property.MinBlockSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.MinBlockSize<string | number> | undefined>;
352
- minHeight?: StyleValue<csstype.Property.MinHeight<string | number> | undefined> | StyleValueStateMap<csstype.Property.MinHeight<string | number> | undefined>;
353
- minInlineSize?: StyleValue<csstype.Property.MinInlineSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.MinInlineSize<string | number> | undefined>;
354
- minWidth?: StyleValue<csstype.Property.MinWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.MinWidth<string | number> | undefined>;
355
- mixBlendMode?: StyleValue<csstype.Property.MixBlendMode | undefined> | StyleValueStateMap<csstype.Property.MixBlendMode | undefined>;
356
- motionDistance?: StyleValue<csstype.Property.OffsetDistance<string | number> | undefined> | StyleValueStateMap<csstype.Property.OffsetDistance<string | number> | undefined>;
357
- motionPath?: StyleValue<csstype.Property.OffsetPath | undefined> | StyleValueStateMap<csstype.Property.OffsetPath | undefined>;
358
- motionRotation?: StyleValue<csstype.Property.OffsetRotate | undefined> | StyleValueStateMap<csstype.Property.OffsetRotate | undefined>;
359
- objectFit?: StyleValue<csstype.Property.ObjectFit | undefined> | StyleValueStateMap<csstype.Property.ObjectFit | undefined>;
360
- objectPosition?: StyleValue<csstype.Property.ObjectPosition<string | number> | undefined> | StyleValueStateMap<csstype.Property.ObjectPosition<string | number> | undefined>;
361
- objectViewBox?: StyleValue<csstype.Property.ObjectViewBox | undefined> | StyleValueStateMap<csstype.Property.ObjectViewBox | undefined>;
362
- offsetAnchor?: StyleValue<csstype.Property.OffsetAnchor<string | number> | undefined> | StyleValueStateMap<csstype.Property.OffsetAnchor<string | number> | undefined>;
363
- offsetDistance?: StyleValue<csstype.Property.OffsetDistance<string | number> | undefined> | StyleValueStateMap<csstype.Property.OffsetDistance<string | number> | undefined>;
364
- offsetPath?: StyleValue<csstype.Property.OffsetPath | undefined> | StyleValueStateMap<csstype.Property.OffsetPath | undefined>;
365
- offsetPosition?: StyleValue<csstype.Property.OffsetPosition<string | number> | undefined> | StyleValueStateMap<csstype.Property.OffsetPosition<string | number> | undefined>;
366
- offsetRotate?: StyleValue<csstype.Property.OffsetRotate | undefined> | StyleValueStateMap<csstype.Property.OffsetRotate | undefined>;
367
- offsetRotation?: StyleValue<csstype.Property.OffsetRotate | undefined> | StyleValueStateMap<csstype.Property.OffsetRotate | undefined>;
368
- opacity?: StyleValue<csstype.Property.Opacity | undefined> | StyleValueStateMap<csstype.Property.Opacity | undefined>;
369
- order?: StyleValue<csstype.Property.Order | undefined> | StyleValueStateMap<csstype.Property.Order | undefined>;
370
- orphans?: StyleValue<csstype.Property.Orphans | undefined> | StyleValueStateMap<csstype.Property.Orphans | undefined>;
371
- outlineColor?: StyleValue<csstype.Property.OutlineColor | undefined> | StyleValueStateMap<csstype.Property.OutlineColor | undefined>;
372
- outlineOffset?: StyleValue<string | number | undefined> | StyleValueStateMap<string | number | undefined>;
373
- outlineStyle?: StyleValue<csstype.Property.OutlineStyle | undefined> | StyleValueStateMap<csstype.Property.OutlineStyle | undefined>;
374
- outlineWidth?: StyleValue<csstype.Property.OutlineWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.OutlineWidth<string | number> | undefined>;
375
- overflowAnchor?: StyleValue<csstype.Property.OverflowAnchor | undefined> | StyleValueStateMap<csstype.Property.OverflowAnchor | undefined>;
376
- overflowBlock?: StyleValue<csstype.Property.OverflowBlock | undefined> | StyleValueStateMap<csstype.Property.OverflowBlock | undefined>;
377
- overflowClipBox?: StyleValue<csstype.Property.OverflowClipBox | undefined> | StyleValueStateMap<csstype.Property.OverflowClipBox | undefined>;
378
- overflowClipMargin?: StyleValue<csstype.Property.OverflowClipMargin<string | number> | undefined> | StyleValueStateMap<csstype.Property.OverflowClipMargin<string | number> | undefined>;
379
- overflowInline?: StyleValue<csstype.Property.OverflowInline | undefined> | StyleValueStateMap<csstype.Property.OverflowInline | undefined>;
380
- overflowWrap?: StyleValue<csstype.Property.OverflowWrap | undefined> | StyleValueStateMap<csstype.Property.OverflowWrap | undefined>;
381
- overflowX?: StyleValue<csstype.Property.OverflowX | undefined> | StyleValueStateMap<csstype.Property.OverflowX | undefined>;
382
- overflowY?: StyleValue<csstype.Property.OverflowY | undefined> | StyleValueStateMap<csstype.Property.OverflowY | undefined>;
383
- overlay?: StyleValue<csstype.Property.Overlay | undefined> | StyleValueStateMap<csstype.Property.Overlay | undefined>;
384
- overscrollBehaviorBlock?: StyleValue<csstype.Property.OverscrollBehaviorBlock | undefined> | StyleValueStateMap<csstype.Property.OverscrollBehaviorBlock | undefined>;
385
- overscrollBehaviorInline?: StyleValue<csstype.Property.OverscrollBehaviorInline | undefined> | StyleValueStateMap<csstype.Property.OverscrollBehaviorInline | undefined>;
386
- overscrollBehaviorX?: StyleValue<csstype.Property.OverscrollBehaviorX | undefined> | StyleValueStateMap<csstype.Property.OverscrollBehaviorX | undefined>;
387
- overscrollBehaviorY?: StyleValue<csstype.Property.OverscrollBehaviorY | undefined> | StyleValueStateMap<csstype.Property.OverscrollBehaviorY | undefined>;
388
- paddingBlockEnd?: StyleValue<csstype.Property.PaddingBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingBlockEnd<string | number> | undefined>;
389
- paddingBlockStart?: StyleValue<csstype.Property.PaddingBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingBlockStart<string | number> | undefined>;
390
- paddingBottom?: StyleValue<csstype.Property.PaddingBottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingBottom<string | number> | undefined>;
391
- paddingInlineEnd?: StyleValue<csstype.Property.PaddingInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInlineEnd<string | number> | undefined>;
392
- paddingInlineStart?: StyleValue<csstype.Property.PaddingInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInlineStart<string | number> | undefined>;
393
- paddingLeft?: StyleValue<csstype.Property.PaddingLeft<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingLeft<string | number> | undefined>;
394
- paddingRight?: StyleValue<csstype.Property.PaddingRight<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingRight<string | number> | undefined>;
395
- paddingTop?: StyleValue<csstype.Property.PaddingTop<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingTop<string | number> | undefined>;
396
- page?: StyleValue<csstype.Property.Page | undefined> | StyleValueStateMap<csstype.Property.Page | undefined>;
397
- paintOrder?: StyleValue<csstype.Property.PaintOrder | undefined> | StyleValueStateMap<csstype.Property.PaintOrder | undefined>;
398
- perspective?: StyleValue<csstype.Property.Perspective<string | number> | undefined> | StyleValueStateMap<csstype.Property.Perspective<string | number> | undefined>;
399
- perspectiveOrigin?: StyleValue<csstype.Property.PerspectiveOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.PerspectiveOrigin<string | number> | undefined>;
400
- pointerEvents?: StyleValue<csstype.Property.PointerEvents | undefined> | StyleValueStateMap<csstype.Property.PointerEvents | undefined>;
401
- position?: StyleValue<csstype.Property.Position | undefined> | StyleValueStateMap<csstype.Property.Position | undefined>;
402
- positionAnchor?: StyleValue<csstype.Property.PositionAnchor | undefined> | StyleValueStateMap<csstype.Property.PositionAnchor | undefined>;
403
- positionArea?: StyleValue<csstype.Property.PositionArea | undefined> | StyleValueStateMap<csstype.Property.PositionArea | undefined>;
404
- positionTryFallbacks?: StyleValue<csstype.Property.PositionTryFallbacks | undefined> | StyleValueStateMap<csstype.Property.PositionTryFallbacks | undefined>;
405
- positionTryOrder?: StyleValue<csstype.Property.PositionTryOrder | undefined> | StyleValueStateMap<csstype.Property.PositionTryOrder | undefined>;
406
- positionVisibility?: StyleValue<csstype.Property.PositionVisibility | undefined> | StyleValueStateMap<csstype.Property.PositionVisibility | undefined>;
407
- printColorAdjust?: StyleValue<csstype.Property.PrintColorAdjust | undefined> | StyleValueStateMap<csstype.Property.PrintColorAdjust | undefined>;
408
- quotes?: StyleValue<csstype.Property.Quotes | undefined> | StyleValueStateMap<csstype.Property.Quotes | undefined>;
409
- r?: StyleValue<csstype.Property.R<string | number> | undefined> | StyleValueStateMap<csstype.Property.R<string | number> | undefined>;
410
- resize?: StyleValue<csstype.Property.Resize | undefined> | StyleValueStateMap<csstype.Property.Resize | undefined>;
411
- right?: StyleValue<csstype.Property.Right<string | number> | undefined> | StyleValueStateMap<csstype.Property.Right<string | number> | undefined>;
412
- rotate?: StyleValue<csstype.Property.Rotate | undefined> | StyleValueStateMap<csstype.Property.Rotate | undefined>;
413
- rowGap?: StyleValue<csstype.Property.RowGap<string | number> | undefined> | StyleValueStateMap<csstype.Property.RowGap<string | number> | undefined>;
414
- rubyAlign?: StyleValue<csstype.Property.RubyAlign | undefined> | StyleValueStateMap<csstype.Property.RubyAlign | undefined>;
415
- rubyMerge?: StyleValue<csstype.Property.RubyMerge | undefined> | StyleValueStateMap<csstype.Property.RubyMerge | undefined>;
416
- rubyOverhang?: StyleValue<csstype.Property.RubyOverhang | undefined> | StyleValueStateMap<csstype.Property.RubyOverhang | undefined>;
417
- rubyPosition?: StyleValue<csstype.Property.RubyPosition | undefined> | StyleValueStateMap<csstype.Property.RubyPosition | undefined>;
418
- rx?: StyleValue<csstype.Property.Rx<string | number> | undefined> | StyleValueStateMap<csstype.Property.Rx<string | number> | undefined>;
419
- ry?: StyleValue<csstype.Property.Ry<string | number> | undefined> | StyleValueStateMap<csstype.Property.Ry<string | number> | undefined>;
420
- scale?: StyleValue<csstype.Property.Scale | undefined> | StyleValueStateMap<csstype.Property.Scale | undefined>;
421
- scrollBehavior?: StyleValue<csstype.Property.ScrollBehavior | undefined> | StyleValueStateMap<csstype.Property.ScrollBehavior | undefined>;
422
- scrollInitialTarget?: StyleValue<csstype.Property.ScrollInitialTarget | undefined> | StyleValueStateMap<csstype.Property.ScrollInitialTarget | undefined>;
423
- scrollMarginBlockEnd?: StyleValue<csstype.Property.ScrollMarginBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginBlockEnd<string | number> | undefined>;
424
- scrollMarginBlockStart?: StyleValue<csstype.Property.ScrollMarginBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginBlockStart<string | number> | undefined>;
425
- scrollMarginBottom?: StyleValue<csstype.Property.ScrollMarginBottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginBottom<string | number> | undefined>;
426
- scrollMarginInlineEnd?: StyleValue<csstype.Property.ScrollMarginInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginInlineEnd<string | number> | undefined>;
427
- scrollMarginInlineStart?: StyleValue<csstype.Property.ScrollMarginInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginInlineStart<string | number> | undefined>;
428
- scrollMarginLeft?: StyleValue<csstype.Property.ScrollMarginLeft<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginLeft<string | number> | undefined>;
429
- scrollMarginRight?: StyleValue<csstype.Property.ScrollMarginRight<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginRight<string | number> | undefined>;
430
- scrollMarginTop?: StyleValue<csstype.Property.ScrollMarginTop<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginTop<string | number> | undefined>;
431
- scrollPaddingBlockEnd?: StyleValue<csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined>;
432
- scrollPaddingBlockStart?: StyleValue<csstype.Property.ScrollPaddingBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingBlockStart<string | number> | undefined>;
433
- scrollPaddingBottom?: StyleValue<csstype.Property.ScrollPaddingBottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingBottom<string | number> | undefined>;
434
- scrollPaddingInlineEnd?: StyleValue<csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined>;
435
- scrollPaddingInlineStart?: StyleValue<csstype.Property.ScrollPaddingInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingInlineStart<string | number> | undefined>;
436
- scrollPaddingLeft?: StyleValue<csstype.Property.ScrollPaddingLeft<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingLeft<string | number> | undefined>;
437
- scrollPaddingRight?: StyleValue<csstype.Property.ScrollPaddingRight<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingRight<string | number> | undefined>;
438
- scrollPaddingTop?: StyleValue<csstype.Property.ScrollPaddingTop<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingTop<string | number> | undefined>;
439
- scrollSnapAlign?: StyleValue<csstype.Property.ScrollSnapAlign | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapAlign | undefined>;
440
- scrollSnapMarginBottom?: StyleValue<csstype.Property.ScrollMarginBottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginBottom<string | number> | undefined>;
441
- scrollSnapMarginLeft?: StyleValue<csstype.Property.ScrollMarginLeft<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginLeft<string | number> | undefined>;
442
- scrollSnapMarginRight?: StyleValue<csstype.Property.ScrollMarginRight<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginRight<string | number> | undefined>;
443
- scrollSnapMarginTop?: StyleValue<csstype.Property.ScrollMarginTop<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginTop<string | number> | undefined>;
444
- scrollSnapStop?: StyleValue<csstype.Property.ScrollSnapStop | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapStop | undefined>;
445
- scrollSnapType?: StyleValue<csstype.Property.ScrollSnapType | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapType | undefined>;
446
- scrollTimelineAxis?: StyleValue<csstype.Property.ScrollTimelineAxis | undefined> | StyleValueStateMap<csstype.Property.ScrollTimelineAxis | undefined>;
447
- scrollTimelineName?: StyleValue<csstype.Property.ScrollTimelineName | undefined> | StyleValueStateMap<csstype.Property.ScrollTimelineName | undefined>;
448
- scrollbarColor?: StyleValue<csstype.Property.ScrollbarColor | undefined> | StyleValueStateMap<csstype.Property.ScrollbarColor | undefined>;
449
- scrollbarGutter?: StyleValue<csstype.Property.ScrollbarGutter | undefined> | StyleValueStateMap<csstype.Property.ScrollbarGutter | undefined>;
450
- scrollbarWidth?: StyleValue<csstype.Property.ScrollbarWidth | undefined> | StyleValueStateMap<csstype.Property.ScrollbarWidth | undefined>;
451
- shapeImageThreshold?: StyleValue<csstype.Property.ShapeImageThreshold | undefined> | StyleValueStateMap<csstype.Property.ShapeImageThreshold | undefined>;
452
- shapeMargin?: StyleValue<csstype.Property.ShapeMargin<string | number> | undefined> | StyleValueStateMap<csstype.Property.ShapeMargin<string | number> | undefined>;
453
- shapeOutside?: StyleValue<csstype.Property.ShapeOutside | undefined> | StyleValueStateMap<csstype.Property.ShapeOutside | undefined>;
454
- shapeRendering?: StyleValue<csstype.Property.ShapeRendering | undefined> | StyleValueStateMap<csstype.Property.ShapeRendering | undefined>;
455
- speakAs?: StyleValue<csstype.Property.SpeakAs | undefined> | StyleValueStateMap<csstype.Property.SpeakAs | undefined>;
456
- stopColor?: StyleValue<csstype.Property.StopColor | undefined> | StyleValueStateMap<csstype.Property.StopColor | undefined>;
457
- stopOpacity?: StyleValue<csstype.Property.StopOpacity | undefined> | StyleValueStateMap<csstype.Property.StopOpacity | undefined>;
458
- stroke?: StyleValue<csstype.Property.Stroke | undefined> | StyleValueStateMap<csstype.Property.Stroke | undefined>;
459
- strokeColor?: StyleValue<csstype.Property.StrokeColor | undefined> | StyleValueStateMap<csstype.Property.StrokeColor | undefined>;
460
- strokeDasharray?: StyleValue<csstype.Property.StrokeDasharray<string | number> | undefined> | StyleValueStateMap<csstype.Property.StrokeDasharray<string | number> | undefined>;
461
- strokeDashoffset?: StyleValue<csstype.Property.StrokeDashoffset<string | number> | undefined> | StyleValueStateMap<csstype.Property.StrokeDashoffset<string | number> | undefined>;
462
- strokeLinecap?: StyleValue<csstype.Property.StrokeLinecap | undefined> | StyleValueStateMap<csstype.Property.StrokeLinecap | undefined>;
463
- strokeLinejoin?: StyleValue<csstype.Property.StrokeLinejoin | undefined> | StyleValueStateMap<csstype.Property.StrokeLinejoin | undefined>;
464
- strokeMiterlimit?: StyleValue<csstype.Property.StrokeMiterlimit | undefined> | StyleValueStateMap<csstype.Property.StrokeMiterlimit | undefined>;
465
- strokeOpacity?: StyleValue<csstype.Property.StrokeOpacity | undefined> | StyleValueStateMap<csstype.Property.StrokeOpacity | undefined>;
466
- strokeWidth?: StyleValue<csstype.Property.StrokeWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.StrokeWidth<string | number> | undefined>;
467
- tabSize?: StyleValue<csstype.Property.TabSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.TabSize<string | number> | undefined>;
468
- tableLayout?: StyleValue<csstype.Property.TableLayout | undefined> | StyleValueStateMap<csstype.Property.TableLayout | undefined>;
469
- textAlign?: StyleValue<csstype.Property.TextAlign | undefined> | StyleValueStateMap<csstype.Property.TextAlign | undefined>;
470
- textAlignLast?: StyleValue<csstype.Property.TextAlignLast | undefined> | StyleValueStateMap<csstype.Property.TextAlignLast | undefined>;
471
- textAnchor?: StyleValue<csstype.Property.TextAnchor | undefined> | StyleValueStateMap<csstype.Property.TextAnchor | undefined>;
472
- textAutospace?: StyleValue<csstype.Property.TextAutospace | undefined> | StyleValueStateMap<csstype.Property.TextAutospace | undefined>;
473
- textBox?: StyleValue<csstype.Property.TextBox | undefined> | StyleValueStateMap<csstype.Property.TextBox | undefined>;
474
- textBoxEdge?: StyleValue<csstype.Property.TextBoxEdge | undefined> | StyleValueStateMap<csstype.Property.TextBoxEdge | undefined>;
475
- textBoxTrim?: StyleValue<csstype.Property.TextBoxTrim | undefined> | StyleValueStateMap<csstype.Property.TextBoxTrim | undefined>;
476
- textCombineUpright?: StyleValue<csstype.Property.TextCombineUpright | undefined> | StyleValueStateMap<csstype.Property.TextCombineUpright | undefined>;
477
- textDecorationColor?: StyleValue<csstype.Property.TextDecorationColor | undefined> | StyleValueStateMap<csstype.Property.TextDecorationColor | undefined>;
478
- textDecorationLine?: StyleValue<csstype.Property.TextDecorationLine | undefined> | StyleValueStateMap<csstype.Property.TextDecorationLine | undefined>;
479
- textDecorationSkip?: StyleValue<csstype.Property.TextDecorationSkip | undefined> | StyleValueStateMap<csstype.Property.TextDecorationSkip | undefined>;
480
- textDecorationSkipInk?: StyleValue<csstype.Property.TextDecorationSkipInk | undefined> | StyleValueStateMap<csstype.Property.TextDecorationSkipInk | undefined>;
481
- textDecorationStyle?: StyleValue<csstype.Property.TextDecorationStyle | undefined> | StyleValueStateMap<csstype.Property.TextDecorationStyle | undefined>;
482
- textDecorationThickness?: StyleValue<csstype.Property.TextDecorationThickness<string | number> | undefined> | StyleValueStateMap<csstype.Property.TextDecorationThickness<string | number> | undefined>;
483
- textEmphasisColor?: StyleValue<csstype.Property.TextEmphasisColor | undefined> | StyleValueStateMap<csstype.Property.TextEmphasisColor | undefined>;
484
- textEmphasisPosition?: StyleValue<csstype.Property.TextEmphasisPosition | undefined> | StyleValueStateMap<csstype.Property.TextEmphasisPosition | undefined>;
485
- textEmphasisStyle?: StyleValue<csstype.Property.TextEmphasisStyle | undefined> | StyleValueStateMap<csstype.Property.TextEmphasisStyle | undefined>;
486
- textIndent?: StyleValue<csstype.Property.TextIndent<string | number> | undefined> | StyleValueStateMap<csstype.Property.TextIndent<string | number> | undefined>;
487
- textJustify?: StyleValue<csstype.Property.TextJustify | undefined> | StyleValueStateMap<csstype.Property.TextJustify | undefined>;
488
- textOrientation?: StyleValue<csstype.Property.TextOrientation | undefined> | StyleValueStateMap<csstype.Property.TextOrientation | undefined>;
489
- textOverflow?: StyleValue<csstype.Property.TextOverflow | undefined> | StyleValueStateMap<csstype.Property.TextOverflow | undefined>;
490
- textRendering?: StyleValue<csstype.Property.TextRendering | undefined> | StyleValueStateMap<csstype.Property.TextRendering | undefined>;
491
- textShadow?: StyleValue<csstype.Property.TextShadow | undefined> | StyleValueStateMap<csstype.Property.TextShadow | undefined>;
492
- textSizeAdjust?: StyleValue<csstype.Property.TextSizeAdjust | undefined> | StyleValueStateMap<csstype.Property.TextSizeAdjust | undefined>;
493
- textSpacingTrim?: StyleValue<csstype.Property.TextSpacingTrim | undefined> | StyleValueStateMap<csstype.Property.TextSpacingTrim | undefined>;
494
- textTransform?: StyleValue<csstype.Property.TextTransform | undefined> | StyleValueStateMap<csstype.Property.TextTransform | undefined>;
495
- textUnderlineOffset?: StyleValue<csstype.Property.TextUnderlineOffset<string | number> | undefined> | StyleValueStateMap<csstype.Property.TextUnderlineOffset<string | number> | undefined>;
496
- textUnderlinePosition?: StyleValue<csstype.Property.TextUnderlinePosition | undefined> | StyleValueStateMap<csstype.Property.TextUnderlinePosition | undefined>;
497
- textWrapMode?: StyleValue<csstype.Property.TextWrapMode | undefined> | StyleValueStateMap<csstype.Property.TextWrapMode | undefined>;
498
- textWrapStyle?: StyleValue<csstype.Property.TextWrapStyle | undefined> | StyleValueStateMap<csstype.Property.TextWrapStyle | undefined>;
499
- timelineScope?: StyleValue<csstype.Property.TimelineScope | undefined> | StyleValueStateMap<csstype.Property.TimelineScope | undefined>;
500
- top?: StyleValue<csstype.Property.Top<string | number> | undefined> | StyleValueStateMap<csstype.Property.Top<string | number> | undefined>;
501
- touchAction?: StyleValue<csstype.Property.TouchAction | undefined> | StyleValueStateMap<csstype.Property.TouchAction | undefined>;
502
- transform?: StyleValue<csstype.Property.Transform | undefined> | StyleValueStateMap<csstype.Property.Transform | undefined>;
503
- transformBox?: StyleValue<csstype.Property.TransformBox | undefined> | StyleValueStateMap<csstype.Property.TransformBox | undefined>;
504
- transformOrigin?: StyleValue<csstype.Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.TransformOrigin<string | number> | undefined>;
505
- transformStyle?: StyleValue<csstype.Property.TransformStyle | undefined> | StyleValueStateMap<csstype.Property.TransformStyle | undefined>;
506
- transitionBehavior?: StyleValue<csstype.Property.TransitionBehavior | undefined> | StyleValueStateMap<csstype.Property.TransitionBehavior | undefined>;
507
- transitionDelay?: StyleValue<csstype.Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDelay<string & {}> | undefined>;
508
- transitionDuration?: StyleValue<csstype.Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDuration<string & {}> | undefined>;
509
- transitionProperty?: StyleValue<csstype.Property.TransitionProperty | undefined> | StyleValueStateMap<csstype.Property.TransitionProperty | undefined>;
510
- transitionTimingFunction?: StyleValue<csstype.Property.TransitionTimingFunction | undefined> | StyleValueStateMap<csstype.Property.TransitionTimingFunction | undefined>;
511
- translate?: StyleValue<csstype.Property.Translate<string | number> | undefined> | StyleValueStateMap<csstype.Property.Translate<string | number> | undefined>;
512
- unicodeBidi?: StyleValue<csstype.Property.UnicodeBidi | undefined> | StyleValueStateMap<csstype.Property.UnicodeBidi | undefined>;
513
- userSelect?: StyleValue<csstype.Property.UserSelect | undefined> | StyleValueStateMap<csstype.Property.UserSelect | undefined>;
514
- vectorEffect?: StyleValue<csstype.Property.VectorEffect | undefined> | StyleValueStateMap<csstype.Property.VectorEffect | undefined>;
515
- verticalAlign?: StyleValue<csstype.Property.VerticalAlign<string | number> | undefined> | StyleValueStateMap<csstype.Property.VerticalAlign<string | number> | undefined>;
516
- viewTimelineAxis?: StyleValue<csstype.Property.ViewTimelineAxis | undefined> | StyleValueStateMap<csstype.Property.ViewTimelineAxis | undefined>;
517
- viewTimelineInset?: StyleValue<csstype.Property.ViewTimelineInset<string | number> | undefined> | StyleValueStateMap<csstype.Property.ViewTimelineInset<string | number> | undefined>;
518
- viewTimelineName?: StyleValue<csstype.Property.ViewTimelineName | undefined> | StyleValueStateMap<csstype.Property.ViewTimelineName | undefined>;
519
- viewTransitionClass?: StyleValue<csstype.Property.ViewTransitionClass | undefined> | StyleValueStateMap<csstype.Property.ViewTransitionClass | undefined>;
520
- viewTransitionName?: StyleValue<csstype.Property.ViewTransitionName | undefined> | StyleValueStateMap<csstype.Property.ViewTransitionName | undefined>;
521
- visibility?: StyleValue<csstype.Property.Visibility | undefined> | StyleValueStateMap<csstype.Property.Visibility | undefined>;
522
- whiteSpace?: StyleValue<csstype.Property.WhiteSpace | undefined> | StyleValueStateMap<csstype.Property.WhiteSpace | undefined>;
523
- whiteSpaceCollapse?: StyleValue<csstype.Property.WhiteSpaceCollapse | undefined> | StyleValueStateMap<csstype.Property.WhiteSpaceCollapse | undefined>;
524
- widows?: StyleValue<csstype.Property.Widows | undefined> | StyleValueStateMap<csstype.Property.Widows | undefined>;
525
- willChange?: StyleValue<csstype.Property.WillChange | undefined> | StyleValueStateMap<csstype.Property.WillChange | undefined>;
526
- wordBreak?: StyleValue<csstype.Property.WordBreak | undefined> | StyleValueStateMap<csstype.Property.WordBreak | undefined>;
527
- wordSpacing?: StyleValue<csstype.Property.WordSpacing<string | number> | undefined> | StyleValueStateMap<csstype.Property.WordSpacing<string | number> | undefined>;
528
- wordWrap?: StyleValue<csstype.Property.WordWrap | undefined> | StyleValueStateMap<csstype.Property.WordWrap | undefined>;
529
- writingMode?: StyleValue<csstype.Property.WritingMode | undefined> | StyleValueStateMap<csstype.Property.WritingMode | undefined>;
530
- x?: StyleValue<csstype.Property.X<string | number> | undefined> | StyleValueStateMap<csstype.Property.X<string | number> | undefined>;
531
- y?: StyleValue<csstype.Property.Y<string | number> | undefined> | StyleValueStateMap<csstype.Property.Y<string | number> | undefined>;
532
- zIndex?: StyleValue<csstype.Property.ZIndex | undefined> | StyleValueStateMap<csstype.Property.ZIndex | undefined>;
533
- zoom?: StyleValue<csstype.Property.Zoom | undefined> | StyleValueStateMap<csstype.Property.Zoom | undefined>;
534
- all?: StyleValue<csstype.Globals | undefined> | StyleValueStateMap<csstype.Globals | undefined>;
535
- animation?: StyleValue<csstype.Property.Animation<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Animation<string & {}> | undefined>;
536
- animationRange?: StyleValue<csstype.Property.AnimationRange<string | number> | undefined> | StyleValueStateMap<csstype.Property.AnimationRange<string | number> | undefined>;
537
- background?: StyleValue<csstype.Property.Background<string | number> | undefined> | StyleValueStateMap<csstype.Property.Background<string | number> | undefined>;
538
- backgroundPosition?: StyleValue<csstype.Property.BackgroundPosition<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundPosition<string | number> | undefined>;
539
- borderBlock?: StyleValue<csstype.Property.BorderBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBlock<string | number> | undefined>;
540
- borderBlockColor?: StyleValue<csstype.Property.BorderBlockColor | undefined> | StyleValueStateMap<csstype.Property.BorderBlockColor | undefined>;
541
- borderBlockEnd?: StyleValue<csstype.Property.BorderBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBlockEnd<string | number> | undefined>;
542
- borderBlockStart?: StyleValue<csstype.Property.BorderBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBlockStart<string | number> | undefined>;
543
- borderBlockStyle?: StyleValue<csstype.Property.BorderBlockStyle | undefined> | StyleValueStateMap<csstype.Property.BorderBlockStyle | undefined>;
544
- borderBlockWidth?: StyleValue<csstype.Property.BorderBlockWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBlockWidth<string | number> | undefined>;
545
- borderBottom?: StyleValue<csstype.Property.BorderBottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottom<string | number> | undefined>;
546
- borderColor?: StyleValue<csstype.Property.BorderColor | undefined> | StyleValueStateMap<csstype.Property.BorderColor | undefined>;
547
- borderImage?: StyleValue<csstype.Property.BorderImage | undefined> | StyleValueStateMap<csstype.Property.BorderImage | undefined>;
548
- borderInline?: StyleValue<csstype.Property.BorderInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInline<string | number> | undefined>;
549
- borderInlineColor?: StyleValue<csstype.Property.BorderInlineColor | undefined> | StyleValueStateMap<csstype.Property.BorderInlineColor | undefined>;
550
- borderInlineEnd?: StyleValue<csstype.Property.BorderInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEnd<string | number> | undefined>;
551
- borderInlineStart?: StyleValue<csstype.Property.BorderInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStart<string | number> | undefined>;
552
- borderInlineStyle?: StyleValue<csstype.Property.BorderInlineStyle | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStyle | undefined>;
553
- borderInlineWidth?: StyleValue<csstype.Property.BorderInlineWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInlineWidth<string | number> | undefined>;
554
- borderLeft?: StyleValue<csstype.Property.BorderLeft<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderLeft<string | number> | undefined>;
555
- borderRadius?: StyleValue<csstype.Property.BorderRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderRadius<string | number> | undefined>;
556
- borderRight?: StyleValue<csstype.Property.BorderRight<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderRight<string | number> | undefined>;
557
- borderStyle?: StyleValue<csstype.Property.BorderStyle | undefined> | StyleValueStateMap<csstype.Property.BorderStyle | undefined>;
558
- borderTop?: StyleValue<csstype.Property.BorderTop<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTop<string | number> | undefined>;
559
- borderWidth?: StyleValue<csstype.Property.BorderWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderWidth<string | number> | undefined>;
560
- caret?: StyleValue<csstype.Property.Caret | undefined> | StyleValueStateMap<csstype.Property.Caret | undefined>;
561
- columnRule?: StyleValue<csstype.Property.ColumnRule<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnRule<string | number> | undefined>;
562
- columns?: StyleValue<csstype.Property.Columns<string | number> | undefined> | StyleValueStateMap<csstype.Property.Columns<string | number> | undefined>;
563
- containIntrinsicSize?: StyleValue<csstype.Property.ContainIntrinsicSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.ContainIntrinsicSize<string | number> | undefined>;
564
- container?: StyleValue<csstype.Property.Container | undefined> | StyleValueStateMap<csstype.Property.Container | undefined>;
565
- flex?: StyleValue<csstype.Property.Flex<string | number> | undefined> | StyleValueStateMap<csstype.Property.Flex<string | number> | undefined>;
566
- flexFlow?: StyleValue<csstype.Property.FlexFlow | undefined> | StyleValueStateMap<csstype.Property.FlexFlow | undefined>;
567
- grid?: StyleValue<csstype.Property.Grid | undefined> | StyleValueStateMap<csstype.Property.Grid | undefined>;
568
- gridArea?: StyleValue<csstype.Property.GridArea | undefined> | StyleValueStateMap<csstype.Property.GridArea | undefined>;
569
- gridColumn?: StyleValue<csstype.Property.GridColumn | undefined> | StyleValueStateMap<csstype.Property.GridColumn | undefined>;
570
- gridRow?: StyleValue<csstype.Property.GridRow | undefined> | StyleValueStateMap<csstype.Property.GridRow | undefined>;
571
- gridTemplate?: StyleValue<csstype.Property.GridTemplate | undefined> | StyleValueStateMap<csstype.Property.GridTemplate | undefined>;
572
- inset?: StyleValue<csstype.Property.Inset<string | number> | undefined> | StyleValueStateMap<csstype.Property.Inset<string | number> | undefined>;
573
- insetBlock?: StyleValue<csstype.Property.InsetBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetBlock<string | number> | undefined>;
574
- insetInline?: StyleValue<csstype.Property.InsetInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetInline<string | number> | undefined>;
575
- lineClamp?: StyleValue<csstype.Property.LineClamp | undefined> | StyleValueStateMap<csstype.Property.LineClamp | undefined>;
576
- listStyle?: StyleValue<csstype.Property.ListStyle | undefined> | StyleValueStateMap<csstype.Property.ListStyle | undefined>;
577
- marginBlock?: StyleValue<csstype.Property.MarginBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginBlock<string | number> | undefined>;
578
- marginInline?: StyleValue<csstype.Property.MarginInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInline<string | number> | undefined>;
579
- maskBorder?: StyleValue<csstype.Property.MaskBorder | undefined> | StyleValueStateMap<csstype.Property.MaskBorder | undefined>;
580
- motion?: StyleValue<csstype.Property.Offset<string | number> | undefined> | StyleValueStateMap<csstype.Property.Offset<string | number> | undefined>;
581
- offset?: StyleValue<csstype.Property.Offset<string | number> | undefined> | StyleValueStateMap<csstype.Property.Offset<string | number> | undefined>;
582
- overflow?: StyleValue<csstype.Property.Overflow | undefined> | StyleValueStateMap<csstype.Property.Overflow | undefined>;
583
- overscrollBehavior?: StyleValue<csstype.Property.OverscrollBehavior | undefined> | StyleValueStateMap<csstype.Property.OverscrollBehavior | undefined>;
584
- paddingBlock?: StyleValue<csstype.Property.PaddingBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingBlock<string | number> | undefined>;
585
- paddingInline?: StyleValue<csstype.Property.PaddingInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInline<string | number> | undefined>;
586
- placeSelf?: StyleValue<csstype.Property.PlaceSelf | undefined> | StyleValueStateMap<csstype.Property.PlaceSelf | undefined>;
587
- positionTry?: StyleValue<csstype.Property.PositionTry | undefined> | StyleValueStateMap<csstype.Property.PositionTry | undefined>;
588
- scrollMargin?: StyleValue<csstype.Property.ScrollMargin<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMargin<string | number> | undefined>;
589
- scrollMarginBlock?: StyleValue<csstype.Property.ScrollMarginBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginBlock<string | number> | undefined>;
590
- scrollMarginInline?: StyleValue<csstype.Property.ScrollMarginInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginInline<string | number> | undefined>;
591
- scrollPadding?: StyleValue<csstype.Property.ScrollPadding<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPadding<string | number> | undefined>;
592
- scrollPaddingBlock?: StyleValue<csstype.Property.ScrollPaddingBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingBlock<string | number> | undefined>;
593
- scrollPaddingInline?: StyleValue<csstype.Property.ScrollPaddingInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingInline<string | number> | undefined>;
594
- scrollSnapMargin?: StyleValue<csstype.Property.ScrollMargin<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMargin<string | number> | undefined>;
595
- scrollTimeline?: StyleValue<csstype.Property.ScrollTimeline | undefined> | StyleValueStateMap<csstype.Property.ScrollTimeline | undefined>;
596
- textDecoration?: StyleValue<csstype.Property.TextDecoration<string | number> | undefined> | StyleValueStateMap<csstype.Property.TextDecoration<string | number> | undefined>;
597
- textEmphasis?: StyleValue<csstype.Property.TextEmphasis | undefined> | StyleValueStateMap<csstype.Property.TextEmphasis | undefined>;
598
- textWrap?: StyleValue<csstype.Property.TextWrap | undefined> | StyleValueStateMap<csstype.Property.TextWrap | undefined>;
599
- viewTimeline?: StyleValue<csstype.Property.ViewTimeline | undefined> | StyleValueStateMap<csstype.Property.ViewTimeline | undefined>;
600
- MozAnimationDelay?: StyleValue<csstype.Property.AnimationDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDelay<string & {}> | undefined>;
601
- MozAnimationDirection?: StyleValue<csstype.Property.AnimationDirection | undefined> | StyleValueStateMap<csstype.Property.AnimationDirection | undefined>;
602
- MozAnimationDuration?: StyleValue<csstype.Property.AnimationDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDuration<string & {}> | undefined>;
603
- MozAnimationFillMode?: StyleValue<csstype.Property.AnimationFillMode | undefined> | StyleValueStateMap<csstype.Property.AnimationFillMode | undefined>;
604
- MozAnimationIterationCount?: StyleValue<csstype.Property.AnimationIterationCount | undefined> | StyleValueStateMap<csstype.Property.AnimationIterationCount | undefined>;
605
- MozAnimationName?: StyleValue<csstype.Property.AnimationName | undefined> | StyleValueStateMap<csstype.Property.AnimationName | undefined>;
606
- MozAnimationPlayState?: StyleValue<csstype.Property.AnimationPlayState | undefined> | StyleValueStateMap<csstype.Property.AnimationPlayState | undefined>;
607
- MozAnimationTimingFunction?: StyleValue<csstype.Property.AnimationTimingFunction | undefined> | StyleValueStateMap<csstype.Property.AnimationTimingFunction | undefined>;
608
- MozAppearance?: StyleValue<csstype.Property.MozAppearance | undefined> | StyleValueStateMap<csstype.Property.MozAppearance | undefined>;
609
- MozBackfaceVisibility?: StyleValue<csstype.Property.BackfaceVisibility | undefined> | StyleValueStateMap<csstype.Property.BackfaceVisibility | undefined>;
610
- MozBinding?: StyleValue<csstype.Property.MozBinding | undefined> | StyleValueStateMap<csstype.Property.MozBinding | undefined>;
611
- MozBorderBottomColors?: StyleValue<csstype.Property.MozBorderBottomColors | undefined> | StyleValueStateMap<csstype.Property.MozBorderBottomColors | undefined>;
612
- MozBorderEndColor?: StyleValue<csstype.Property.BorderInlineEndColor | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEndColor | undefined>;
613
- MozBorderEndStyle?: StyleValue<csstype.Property.BorderInlineEndStyle | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEndStyle | undefined>;
614
- MozBorderEndWidth?: StyleValue<csstype.Property.BorderInlineEndWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEndWidth<string | number> | undefined>;
615
- MozBorderLeftColors?: StyleValue<csstype.Property.MozBorderLeftColors | undefined> | StyleValueStateMap<csstype.Property.MozBorderLeftColors | undefined>;
616
- MozBorderRightColors?: StyleValue<csstype.Property.MozBorderRightColors | undefined> | StyleValueStateMap<csstype.Property.MozBorderRightColors | undefined>;
617
- MozBorderStartColor?: StyleValue<csstype.Property.BorderInlineStartColor | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStartColor | undefined>;
618
- MozBorderStartStyle?: StyleValue<csstype.Property.BorderInlineStartStyle | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStartStyle | undefined>;
619
- MozBorderTopColors?: StyleValue<csstype.Property.MozBorderTopColors | undefined> | StyleValueStateMap<csstype.Property.MozBorderTopColors | undefined>;
620
- MozBoxSizing?: StyleValue<csstype.Property.BoxSizing | undefined> | StyleValueStateMap<csstype.Property.BoxSizing | undefined>;
621
- MozColumnRuleColor?: StyleValue<csstype.Property.ColumnRuleColor | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleColor | undefined>;
622
- MozColumnRuleStyle?: StyleValue<csstype.Property.ColumnRuleStyle | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleStyle | undefined>;
623
- MozColumnRuleWidth?: StyleValue<csstype.Property.ColumnRuleWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleWidth<string | number> | undefined>;
624
- MozColumnWidth?: StyleValue<csstype.Property.ColumnWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnWidth<string | number> | undefined>;
625
- MozContextProperties?: StyleValue<csstype.Property.MozContextProperties | undefined> | StyleValueStateMap<csstype.Property.MozContextProperties | undefined>;
626
- MozFontFeatureSettings?: StyleValue<csstype.Property.FontFeatureSettings | undefined> | StyleValueStateMap<csstype.Property.FontFeatureSettings | undefined>;
627
- MozFontLanguageOverride?: StyleValue<csstype.Property.FontLanguageOverride | undefined> | StyleValueStateMap<csstype.Property.FontLanguageOverride | undefined>;
628
- MozHyphens?: StyleValue<csstype.Property.Hyphens | undefined> | StyleValueStateMap<csstype.Property.Hyphens | undefined>;
629
- MozMarginEnd?: StyleValue<csstype.Property.MarginInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInlineEnd<string | number> | undefined>;
630
- MozMarginStart?: StyleValue<csstype.Property.MarginInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInlineStart<string | number> | undefined>;
631
- MozOrient?: StyleValue<csstype.Property.MozOrient | undefined> | StyleValueStateMap<csstype.Property.MozOrient | undefined>;
632
- MozOsxFontSmoothing?: StyleValue<csstype.Property.FontSmooth<string | number> | undefined> | StyleValueStateMap<csstype.Property.FontSmooth<string | number> | undefined>;
633
- MozOutlineRadiusBottomleft?: StyleValue<csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined> | StyleValueStateMap<csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined>;
634
- MozOutlineRadiusBottomright?: StyleValue<csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined> | StyleValueStateMap<csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined>;
635
- MozOutlineRadiusTopleft?: StyleValue<csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined> | StyleValueStateMap<csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined>;
636
- MozOutlineRadiusTopright?: StyleValue<csstype.Property.MozOutlineRadiusTopright<string | number> | undefined> | StyleValueStateMap<csstype.Property.MozOutlineRadiusTopright<string | number> | undefined>;
637
- MozPaddingEnd?: StyleValue<csstype.Property.PaddingInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInlineEnd<string | number> | undefined>;
638
- MozPaddingStart?: StyleValue<csstype.Property.PaddingInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInlineStart<string | number> | undefined>;
639
- MozPerspective?: StyleValue<csstype.Property.Perspective<string | number> | undefined> | StyleValueStateMap<csstype.Property.Perspective<string | number> | undefined>;
640
- MozPerspectiveOrigin?: StyleValue<csstype.Property.PerspectiveOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.PerspectiveOrigin<string | number> | undefined>;
641
- MozStackSizing?: StyleValue<csstype.Property.MozStackSizing | undefined> | StyleValueStateMap<csstype.Property.MozStackSizing | undefined>;
642
- MozTabSize?: StyleValue<csstype.Property.TabSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.TabSize<string | number> | undefined>;
643
- MozTextBlink?: StyleValue<csstype.Property.MozTextBlink | undefined> | StyleValueStateMap<csstype.Property.MozTextBlink | undefined>;
644
- MozTextSizeAdjust?: StyleValue<csstype.Property.TextSizeAdjust | undefined> | StyleValueStateMap<csstype.Property.TextSizeAdjust | undefined>;
645
- MozTransform?: StyleValue<csstype.Property.Transform | undefined> | StyleValueStateMap<csstype.Property.Transform | undefined>;
646
- MozTransformOrigin?: StyleValue<csstype.Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.TransformOrigin<string | number> | undefined>;
647
- MozTransformStyle?: StyleValue<csstype.Property.TransformStyle | undefined> | StyleValueStateMap<csstype.Property.TransformStyle | undefined>;
648
- MozUserModify?: StyleValue<csstype.Property.MozUserModify | undefined> | StyleValueStateMap<csstype.Property.MozUserModify | undefined>;
649
- MozUserSelect?: StyleValue<csstype.Property.UserSelect | undefined> | StyleValueStateMap<csstype.Property.UserSelect | undefined>;
650
- MozWindowDragging?: StyleValue<csstype.Property.MozWindowDragging | undefined> | StyleValueStateMap<csstype.Property.MozWindowDragging | undefined>;
651
- MozWindowShadow?: StyleValue<csstype.Property.MozWindowShadow | undefined> | StyleValueStateMap<csstype.Property.MozWindowShadow | undefined>;
652
- msAccelerator?: StyleValue<csstype.Property.MsAccelerator | undefined> | StyleValueStateMap<csstype.Property.MsAccelerator | undefined>;
653
- msBlockProgression?: StyleValue<csstype.Property.MsBlockProgression | undefined> | StyleValueStateMap<csstype.Property.MsBlockProgression | undefined>;
654
- msContentZoomChaining?: StyleValue<csstype.Property.MsContentZoomChaining | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomChaining | undefined>;
655
- msContentZoomLimitMax?: StyleValue<csstype.Property.MsContentZoomLimitMax | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomLimitMax | undefined>;
656
- msContentZoomLimitMin?: StyleValue<csstype.Property.MsContentZoomLimitMin | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomLimitMin | undefined>;
657
- msContentZoomSnapPoints?: StyleValue<csstype.Property.MsContentZoomSnapPoints | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomSnapPoints | undefined>;
658
- msContentZoomSnapType?: StyleValue<csstype.Property.MsContentZoomSnapType | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomSnapType | undefined>;
659
- msContentZooming?: StyleValue<csstype.Property.MsContentZooming | undefined> | StyleValueStateMap<csstype.Property.MsContentZooming | undefined>;
660
- msFilter?: StyleValue<csstype.Property.MsFilter | undefined> | StyleValueStateMap<csstype.Property.MsFilter | undefined>;
661
- msFlexDirection?: StyleValue<csstype.Property.FlexDirection | undefined> | StyleValueStateMap<csstype.Property.FlexDirection | undefined>;
662
- msFlexPositive?: StyleValue<csstype.Property.FlexGrow | undefined> | StyleValueStateMap<csstype.Property.FlexGrow | undefined>;
663
- msFlowFrom?: StyleValue<csstype.Property.MsFlowFrom | undefined> | StyleValueStateMap<csstype.Property.MsFlowFrom | undefined>;
664
- msFlowInto?: StyleValue<csstype.Property.MsFlowInto | undefined> | StyleValueStateMap<csstype.Property.MsFlowInto | undefined>;
665
- msGridColumns?: StyleValue<csstype.Property.MsGridColumns<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsGridColumns<string | number> | undefined>;
666
- msGridRows?: StyleValue<csstype.Property.MsGridRows<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsGridRows<string | number> | undefined>;
667
- msHighContrastAdjust?: StyleValue<csstype.Property.MsHighContrastAdjust | undefined> | StyleValueStateMap<csstype.Property.MsHighContrastAdjust | undefined>;
668
- msHyphenateLimitChars?: StyleValue<csstype.Property.MsHyphenateLimitChars | undefined> | StyleValueStateMap<csstype.Property.MsHyphenateLimitChars | undefined>;
669
- msHyphenateLimitLines?: StyleValue<csstype.Property.MsHyphenateLimitLines | undefined> | StyleValueStateMap<csstype.Property.MsHyphenateLimitLines | undefined>;
670
- msHyphenateLimitZone?: StyleValue<csstype.Property.MsHyphenateLimitZone<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsHyphenateLimitZone<string | number> | undefined>;
671
- msHyphens?: StyleValue<csstype.Property.Hyphens | undefined> | StyleValueStateMap<csstype.Property.Hyphens | undefined>;
672
- msImeAlign?: StyleValue<csstype.Property.MsImeAlign | undefined> | StyleValueStateMap<csstype.Property.MsImeAlign | undefined>;
673
- msLineBreak?: StyleValue<csstype.Property.LineBreak | undefined> | StyleValueStateMap<csstype.Property.LineBreak | undefined>;
674
- msOrder?: StyleValue<csstype.Property.Order | undefined> | StyleValueStateMap<csstype.Property.Order | undefined>;
675
- msOverflowStyle?: StyleValue<csstype.Property.MsOverflowStyle | undefined> | StyleValueStateMap<csstype.Property.MsOverflowStyle | undefined>;
676
- msOverflowX?: StyleValue<csstype.Property.OverflowX | undefined> | StyleValueStateMap<csstype.Property.OverflowX | undefined>;
677
- msOverflowY?: StyleValue<csstype.Property.OverflowY | undefined> | StyleValueStateMap<csstype.Property.OverflowY | undefined>;
678
- msScrollChaining?: StyleValue<csstype.Property.MsScrollChaining | undefined> | StyleValueStateMap<csstype.Property.MsScrollChaining | undefined>;
679
- msScrollLimitXMax?: StyleValue<csstype.Property.MsScrollLimitXMax<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsScrollLimitXMax<string | number> | undefined>;
680
- msScrollLimitXMin?: StyleValue<csstype.Property.MsScrollLimitXMin<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsScrollLimitXMin<string | number> | undefined>;
681
- msScrollLimitYMax?: StyleValue<csstype.Property.MsScrollLimitYMax<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsScrollLimitYMax<string | number> | undefined>;
682
- msScrollLimitYMin?: StyleValue<csstype.Property.MsScrollLimitYMin<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsScrollLimitYMin<string | number> | undefined>;
683
- msScrollRails?: StyleValue<csstype.Property.MsScrollRails | undefined> | StyleValueStateMap<csstype.Property.MsScrollRails | undefined>;
684
- msScrollSnapPointsX?: StyleValue<csstype.Property.MsScrollSnapPointsX | undefined> | StyleValueStateMap<csstype.Property.MsScrollSnapPointsX | undefined>;
685
- msScrollSnapPointsY?: StyleValue<csstype.Property.MsScrollSnapPointsY | undefined> | StyleValueStateMap<csstype.Property.MsScrollSnapPointsY | undefined>;
686
- msScrollSnapType?: StyleValue<csstype.Property.MsScrollSnapType | undefined> | StyleValueStateMap<csstype.Property.MsScrollSnapType | undefined>;
687
- msScrollTranslation?: StyleValue<csstype.Property.MsScrollTranslation | undefined> | StyleValueStateMap<csstype.Property.MsScrollTranslation | undefined>;
688
- msScrollbar3dlightColor?: StyleValue<csstype.Property.MsScrollbar3dlightColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbar3dlightColor | undefined>;
689
- msScrollbarArrowColor?: StyleValue<csstype.Property.MsScrollbarArrowColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarArrowColor | undefined>;
690
- msScrollbarBaseColor?: StyleValue<csstype.Property.MsScrollbarBaseColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarBaseColor | undefined>;
691
- msScrollbarDarkshadowColor?: StyleValue<csstype.Property.MsScrollbarDarkshadowColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarDarkshadowColor | undefined>;
692
- msScrollbarFaceColor?: StyleValue<csstype.Property.MsScrollbarFaceColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarFaceColor | undefined>;
693
- msScrollbarHighlightColor?: StyleValue<csstype.Property.MsScrollbarHighlightColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarHighlightColor | undefined>;
694
- msScrollbarShadowColor?: StyleValue<csstype.Property.MsScrollbarShadowColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarShadowColor | undefined>;
695
- msScrollbarTrackColor?: StyleValue<csstype.Property.MsScrollbarTrackColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarTrackColor | undefined>;
696
- msTextAutospace?: StyleValue<csstype.Property.MsTextAutospace | undefined> | StyleValueStateMap<csstype.Property.MsTextAutospace | undefined>;
697
- msTextCombineHorizontal?: StyleValue<csstype.Property.TextCombineUpright | undefined> | StyleValueStateMap<csstype.Property.TextCombineUpright | undefined>;
698
- msTextOverflow?: StyleValue<csstype.Property.TextOverflow | undefined> | StyleValueStateMap<csstype.Property.TextOverflow | undefined>;
699
- msTouchAction?: StyleValue<csstype.Property.TouchAction | undefined> | StyleValueStateMap<csstype.Property.TouchAction | undefined>;
700
- msTouchSelect?: StyleValue<csstype.Property.MsTouchSelect | undefined> | StyleValueStateMap<csstype.Property.MsTouchSelect | undefined>;
701
- msTransform?: StyleValue<csstype.Property.Transform | undefined> | StyleValueStateMap<csstype.Property.Transform | undefined>;
702
- msTransformOrigin?: StyleValue<csstype.Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.TransformOrigin<string | number> | undefined>;
703
- msTransitionDelay?: StyleValue<csstype.Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDelay<string & {}> | undefined>;
704
- msTransitionDuration?: StyleValue<csstype.Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDuration<string & {}> | undefined>;
705
- msTransitionProperty?: StyleValue<csstype.Property.TransitionProperty | undefined> | StyleValueStateMap<csstype.Property.TransitionProperty | undefined>;
706
- msTransitionTimingFunction?: StyleValue<csstype.Property.TransitionTimingFunction | undefined> | StyleValueStateMap<csstype.Property.TransitionTimingFunction | undefined>;
707
- msUserSelect?: StyleValue<csstype.Property.MsUserSelect | undefined> | StyleValueStateMap<csstype.Property.MsUserSelect | undefined>;
708
- msWordBreak?: StyleValue<csstype.Property.WordBreak | undefined> | StyleValueStateMap<csstype.Property.WordBreak | undefined>;
709
- msWrapFlow?: StyleValue<csstype.Property.MsWrapFlow | undefined> | StyleValueStateMap<csstype.Property.MsWrapFlow | undefined>;
710
- msWrapMargin?: StyleValue<csstype.Property.MsWrapMargin<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsWrapMargin<string | number> | undefined>;
711
- msWrapThrough?: StyleValue<csstype.Property.MsWrapThrough | undefined> | StyleValueStateMap<csstype.Property.MsWrapThrough | undefined>;
712
- msWritingMode?: StyleValue<csstype.Property.WritingMode | undefined> | StyleValueStateMap<csstype.Property.WritingMode | undefined>;
713
- WebkitAlignContent?: StyleValue<csstype.Property.AlignContent | undefined> | StyleValueStateMap<csstype.Property.AlignContent | undefined>;
714
- WebkitAlignItems?: StyleValue<csstype.Property.AlignItems | undefined> | StyleValueStateMap<csstype.Property.AlignItems | undefined>;
715
- WebkitAlignSelf?: StyleValue<csstype.Property.AlignSelf | undefined> | StyleValueStateMap<csstype.Property.AlignSelf | undefined>;
716
- WebkitAnimationDelay?: StyleValue<csstype.Property.AnimationDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDelay<string & {}> | undefined>;
717
- WebkitAnimationDirection?: StyleValue<csstype.Property.AnimationDirection | undefined> | StyleValueStateMap<csstype.Property.AnimationDirection | undefined>;
718
- WebkitAnimationDuration?: StyleValue<csstype.Property.AnimationDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDuration<string & {}> | undefined>;
719
- WebkitAnimationFillMode?: StyleValue<csstype.Property.AnimationFillMode | undefined> | StyleValueStateMap<csstype.Property.AnimationFillMode | undefined>;
720
- WebkitAnimationIterationCount?: StyleValue<csstype.Property.AnimationIterationCount | undefined> | StyleValueStateMap<csstype.Property.AnimationIterationCount | undefined>;
721
- WebkitAnimationName?: StyleValue<csstype.Property.AnimationName | undefined> | StyleValueStateMap<csstype.Property.AnimationName | undefined>;
722
- WebkitAnimationPlayState?: StyleValue<csstype.Property.AnimationPlayState | undefined> | StyleValueStateMap<csstype.Property.AnimationPlayState | undefined>;
723
- WebkitAnimationTimingFunction?: StyleValue<csstype.Property.AnimationTimingFunction | undefined> | StyleValueStateMap<csstype.Property.AnimationTimingFunction | undefined>;
724
- WebkitAppearance?: StyleValue<csstype.Property.WebkitAppearance | undefined> | StyleValueStateMap<csstype.Property.WebkitAppearance | undefined>;
725
- WebkitBackdropFilter?: StyleValue<csstype.Property.BackdropFilter | undefined> | StyleValueStateMap<csstype.Property.BackdropFilter | undefined>;
726
- WebkitBackfaceVisibility?: StyleValue<csstype.Property.BackfaceVisibility | undefined> | StyleValueStateMap<csstype.Property.BackfaceVisibility | undefined>;
727
- WebkitBackgroundClip?: StyleValue<csstype.Property.BackgroundClip | undefined> | StyleValueStateMap<csstype.Property.BackgroundClip | undefined>;
728
- WebkitBackgroundOrigin?: StyleValue<csstype.Property.BackgroundOrigin | undefined> | StyleValueStateMap<csstype.Property.BackgroundOrigin | undefined>;
729
- WebkitBackgroundSize?: StyleValue<csstype.Property.BackgroundSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundSize<string | number> | undefined>;
730
- WebkitBorderBeforeColor?: StyleValue<csstype.Property.WebkitBorderBeforeColor | undefined> | StyleValueStateMap<csstype.Property.WebkitBorderBeforeColor | undefined>;
731
- WebkitBorderBeforeStyle?: StyleValue<csstype.Property.WebkitBorderBeforeStyle | undefined> | StyleValueStateMap<csstype.Property.WebkitBorderBeforeStyle | undefined>;
732
- WebkitBorderBeforeWidth?: StyleValue<csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined>;
733
- WebkitBorderBottomLeftRadius?: StyleValue<csstype.Property.BorderBottomLeftRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomLeftRadius<string | number> | undefined>;
734
- WebkitBorderBottomRightRadius?: StyleValue<csstype.Property.BorderBottomRightRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomRightRadius<string | number> | undefined>;
735
- WebkitBorderImageSlice?: StyleValue<csstype.Property.BorderImageSlice | undefined> | StyleValueStateMap<csstype.Property.BorderImageSlice | undefined>;
736
- WebkitBorderTopLeftRadius?: StyleValue<csstype.Property.BorderTopLeftRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopLeftRadius<string | number> | undefined>;
737
- WebkitBorderTopRightRadius?: StyleValue<csstype.Property.BorderTopRightRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopRightRadius<string | number> | undefined>;
738
- WebkitBoxDecorationBreak?: StyleValue<csstype.Property.BoxDecorationBreak | undefined> | StyleValueStateMap<csstype.Property.BoxDecorationBreak | undefined>;
739
- WebkitBoxReflect?: StyleValue<csstype.Property.WebkitBoxReflect<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitBoxReflect<string | number> | undefined>;
740
- WebkitBoxShadow?: StyleValue<csstype.Property.BoxShadow | undefined> | StyleValueStateMap<csstype.Property.BoxShadow | undefined>;
741
- WebkitBoxSizing?: StyleValue<csstype.Property.BoxSizing | undefined> | StyleValueStateMap<csstype.Property.BoxSizing | undefined>;
742
- WebkitClipPath?: StyleValue<csstype.Property.ClipPath | undefined> | StyleValueStateMap<csstype.Property.ClipPath | undefined>;
743
- WebkitColumnCount?: StyleValue<csstype.Property.ColumnCount | undefined> | StyleValueStateMap<csstype.Property.ColumnCount | undefined>;
744
- WebkitColumnFill?: StyleValue<csstype.Property.ColumnFill | undefined> | StyleValueStateMap<csstype.Property.ColumnFill | undefined>;
745
- WebkitColumnRuleColor?: StyleValue<csstype.Property.ColumnRuleColor | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleColor | undefined>;
746
- WebkitColumnRuleStyle?: StyleValue<csstype.Property.ColumnRuleStyle | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleStyle | undefined>;
747
- WebkitColumnRuleWidth?: StyleValue<csstype.Property.ColumnRuleWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleWidth<string | number> | undefined>;
748
- WebkitColumnSpan?: StyleValue<csstype.Property.ColumnSpan | undefined> | StyleValueStateMap<csstype.Property.ColumnSpan | undefined>;
749
- WebkitColumnWidth?: StyleValue<csstype.Property.ColumnWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnWidth<string | number> | undefined>;
750
- WebkitFilter?: StyleValue<csstype.Property.Filter | undefined> | StyleValueStateMap<csstype.Property.Filter | undefined>;
751
- WebkitFlexBasis?: StyleValue<csstype.Property.FlexBasis<string | number> | undefined> | StyleValueStateMap<csstype.Property.FlexBasis<string | number> | undefined>;
752
- WebkitFlexDirection?: StyleValue<csstype.Property.FlexDirection | undefined> | StyleValueStateMap<csstype.Property.FlexDirection | undefined>;
753
- WebkitFlexGrow?: StyleValue<csstype.Property.FlexGrow | undefined> | StyleValueStateMap<csstype.Property.FlexGrow | undefined>;
754
- WebkitFlexShrink?: StyleValue<csstype.Property.FlexShrink | undefined> | StyleValueStateMap<csstype.Property.FlexShrink | undefined>;
755
- WebkitFlexWrap?: StyleValue<csstype.Property.FlexWrap | undefined> | StyleValueStateMap<csstype.Property.FlexWrap | undefined>;
756
- WebkitFontFeatureSettings?: StyleValue<csstype.Property.FontFeatureSettings | undefined> | StyleValueStateMap<csstype.Property.FontFeatureSettings | undefined>;
757
- WebkitFontKerning?: StyleValue<csstype.Property.FontKerning | undefined> | StyleValueStateMap<csstype.Property.FontKerning | undefined>;
758
- WebkitFontSmoothing?: StyleValue<csstype.Property.FontSmooth<string | number> | undefined> | StyleValueStateMap<csstype.Property.FontSmooth<string | number> | undefined>;
759
- WebkitFontVariantLigatures?: StyleValue<csstype.Property.FontVariantLigatures | undefined> | StyleValueStateMap<csstype.Property.FontVariantLigatures | undefined>;
760
- WebkitHyphenateCharacter?: StyleValue<csstype.Property.HyphenateCharacter | undefined> | StyleValueStateMap<csstype.Property.HyphenateCharacter | undefined>;
761
- WebkitHyphens?: StyleValue<csstype.Property.Hyphens | undefined> | StyleValueStateMap<csstype.Property.Hyphens | undefined>;
762
- WebkitInitialLetter?: StyleValue<csstype.Property.InitialLetter | undefined> | StyleValueStateMap<csstype.Property.InitialLetter | undefined>;
763
- WebkitJustifyContent?: StyleValue<csstype.Property.JustifyContent | undefined> | StyleValueStateMap<csstype.Property.JustifyContent | undefined>;
764
- WebkitLineBreak?: StyleValue<csstype.Property.LineBreak | undefined> | StyleValueStateMap<csstype.Property.LineBreak | undefined>;
765
- WebkitLineClamp?: StyleValue<csstype.Property.WebkitLineClamp | undefined> | StyleValueStateMap<csstype.Property.WebkitLineClamp | undefined>;
766
- WebkitLogicalHeight?: StyleValue<csstype.Property.BlockSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.BlockSize<string | number> | undefined>;
767
- WebkitLogicalWidth?: StyleValue<csstype.Property.InlineSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.InlineSize<string | number> | undefined>;
768
- WebkitMarginEnd?: StyleValue<csstype.Property.MarginInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInlineEnd<string | number> | undefined>;
769
- WebkitMarginStart?: StyleValue<csstype.Property.MarginInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInlineStart<string | number> | undefined>;
770
- WebkitMaskAttachment?: StyleValue<csstype.Property.WebkitMaskAttachment | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskAttachment | undefined>;
771
- WebkitMaskBoxImageOutset?: StyleValue<csstype.Property.MaskBorderOutset<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaskBorderOutset<string | number> | undefined>;
772
- WebkitMaskBoxImageRepeat?: StyleValue<csstype.Property.MaskBorderRepeat | undefined> | StyleValueStateMap<csstype.Property.MaskBorderRepeat | undefined>;
773
- WebkitMaskBoxImageSlice?: StyleValue<csstype.Property.MaskBorderSlice | undefined> | StyleValueStateMap<csstype.Property.MaskBorderSlice | undefined>;
774
- WebkitMaskBoxImageSource?: StyleValue<csstype.Property.MaskBorderSource | undefined> | StyleValueStateMap<csstype.Property.MaskBorderSource | undefined>;
775
- WebkitMaskBoxImageWidth?: StyleValue<csstype.Property.MaskBorderWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaskBorderWidth<string | number> | undefined>;
776
- WebkitMaskClip?: StyleValue<csstype.Property.WebkitMaskClip | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskClip | undefined>;
777
- WebkitMaskComposite?: StyleValue<csstype.Property.WebkitMaskComposite | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskComposite | undefined>;
778
- WebkitMaskImage?: StyleValue<csstype.Property.WebkitMaskImage | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskImage | undefined>;
779
- WebkitMaskOrigin?: StyleValue<csstype.Property.WebkitMaskOrigin | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskOrigin | undefined>;
780
- WebkitMaskPosition?: StyleValue<csstype.Property.WebkitMaskPosition<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskPosition<string | number> | undefined>;
781
- WebkitMaskPositionX?: StyleValue<csstype.Property.WebkitMaskPositionX<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskPositionX<string | number> | undefined>;
782
- WebkitMaskPositionY?: StyleValue<csstype.Property.WebkitMaskPositionY<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskPositionY<string | number> | undefined>;
783
- WebkitMaskRepeat?: StyleValue<csstype.Property.WebkitMaskRepeat | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskRepeat | undefined>;
784
- WebkitMaskRepeatX?: StyleValue<csstype.Property.WebkitMaskRepeatX | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskRepeatX | undefined>;
785
- WebkitMaskRepeatY?: StyleValue<csstype.Property.WebkitMaskRepeatY | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskRepeatY | undefined>;
786
- WebkitMaskSize?: StyleValue<csstype.Property.WebkitMaskSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskSize<string | number> | undefined>;
787
- WebkitMaxInlineSize?: StyleValue<csstype.Property.MaxInlineSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaxInlineSize<string | number> | undefined>;
788
- WebkitOrder?: StyleValue<csstype.Property.Order | undefined> | StyleValueStateMap<csstype.Property.Order | undefined>;
789
- WebkitOverflowScrolling?: StyleValue<csstype.Property.WebkitOverflowScrolling | undefined> | StyleValueStateMap<csstype.Property.WebkitOverflowScrolling | undefined>;
790
- WebkitPaddingEnd?: StyleValue<csstype.Property.PaddingInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInlineEnd<string | number> | undefined>;
791
- WebkitPaddingStart?: StyleValue<csstype.Property.PaddingInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInlineStart<string | number> | undefined>;
792
- WebkitPerspective?: StyleValue<csstype.Property.Perspective<string | number> | undefined> | StyleValueStateMap<csstype.Property.Perspective<string | number> | undefined>;
793
- WebkitPerspectiveOrigin?: StyleValue<csstype.Property.PerspectiveOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.PerspectiveOrigin<string | number> | undefined>;
794
- WebkitPrintColorAdjust?: StyleValue<csstype.Property.PrintColorAdjust | undefined> | StyleValueStateMap<csstype.Property.PrintColorAdjust | undefined>;
795
- WebkitRubyPosition?: StyleValue<csstype.Property.RubyPosition | undefined> | StyleValueStateMap<csstype.Property.RubyPosition | undefined>;
796
- WebkitScrollSnapType?: StyleValue<csstype.Property.ScrollSnapType | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapType | undefined>;
797
- WebkitShapeMargin?: StyleValue<csstype.Property.ShapeMargin<string | number> | undefined> | StyleValueStateMap<csstype.Property.ShapeMargin<string | number> | undefined>;
798
- WebkitTapHighlightColor?: StyleValue<csstype.Property.WebkitTapHighlightColor | undefined> | StyleValueStateMap<csstype.Property.WebkitTapHighlightColor | undefined>;
799
- WebkitTextCombine?: StyleValue<csstype.Property.TextCombineUpright | undefined> | StyleValueStateMap<csstype.Property.TextCombineUpright | undefined>;
800
- WebkitTextDecorationColor?: StyleValue<csstype.Property.TextDecorationColor | undefined> | StyleValueStateMap<csstype.Property.TextDecorationColor | undefined>;
801
- WebkitTextDecorationLine?: StyleValue<csstype.Property.TextDecorationLine | undefined> | StyleValueStateMap<csstype.Property.TextDecorationLine | undefined>;
802
- WebkitTextDecorationSkip?: StyleValue<csstype.Property.TextDecorationSkip | undefined> | StyleValueStateMap<csstype.Property.TextDecorationSkip | undefined>;
803
- WebkitTextDecorationStyle?: StyleValue<csstype.Property.TextDecorationStyle | undefined> | StyleValueStateMap<csstype.Property.TextDecorationStyle | undefined>;
804
- WebkitTextEmphasisColor?: StyleValue<csstype.Property.TextEmphasisColor | undefined> | StyleValueStateMap<csstype.Property.TextEmphasisColor | undefined>;
805
- WebkitTextEmphasisPosition?: StyleValue<csstype.Property.TextEmphasisPosition | undefined> | StyleValueStateMap<csstype.Property.TextEmphasisPosition | undefined>;
806
- WebkitTextEmphasisStyle?: StyleValue<csstype.Property.TextEmphasisStyle | undefined> | StyleValueStateMap<csstype.Property.TextEmphasisStyle | undefined>;
807
- WebkitTextFillColor?: StyleValue<csstype.Property.WebkitTextFillColor | undefined> | StyleValueStateMap<csstype.Property.WebkitTextFillColor | undefined>;
808
- WebkitTextOrientation?: StyleValue<csstype.Property.TextOrientation | undefined> | StyleValueStateMap<csstype.Property.TextOrientation | undefined>;
809
- WebkitTextSizeAdjust?: StyleValue<csstype.Property.TextSizeAdjust | undefined> | StyleValueStateMap<csstype.Property.TextSizeAdjust | undefined>;
810
- WebkitTextStrokeColor?: StyleValue<csstype.Property.WebkitTextStrokeColor | undefined> | StyleValueStateMap<csstype.Property.WebkitTextStrokeColor | undefined>;
811
- WebkitTextStrokeWidth?: StyleValue<csstype.Property.WebkitTextStrokeWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitTextStrokeWidth<string | number> | undefined>;
812
- WebkitTextUnderlinePosition?: StyleValue<csstype.Property.TextUnderlinePosition | undefined> | StyleValueStateMap<csstype.Property.TextUnderlinePosition | undefined>;
813
- WebkitTouchCallout?: StyleValue<csstype.Property.WebkitTouchCallout | undefined> | StyleValueStateMap<csstype.Property.WebkitTouchCallout | undefined>;
814
- WebkitTransform?: StyleValue<csstype.Property.Transform | undefined> | StyleValueStateMap<csstype.Property.Transform | undefined>;
815
- WebkitTransformOrigin?: StyleValue<csstype.Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.TransformOrigin<string | number> | undefined>;
816
- WebkitTransformStyle?: StyleValue<csstype.Property.TransformStyle | undefined> | StyleValueStateMap<csstype.Property.TransformStyle | undefined>;
817
- WebkitTransitionDelay?: StyleValue<csstype.Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDelay<string & {}> | undefined>;
818
- WebkitTransitionDuration?: StyleValue<csstype.Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDuration<string & {}> | undefined>;
819
- WebkitTransitionProperty?: StyleValue<csstype.Property.TransitionProperty | undefined> | StyleValueStateMap<csstype.Property.TransitionProperty | undefined>;
820
- WebkitTransitionTimingFunction?: StyleValue<csstype.Property.TransitionTimingFunction | undefined> | StyleValueStateMap<csstype.Property.TransitionTimingFunction | undefined>;
821
- WebkitUserModify?: StyleValue<csstype.Property.WebkitUserModify | undefined> | StyleValueStateMap<csstype.Property.WebkitUserModify | undefined>;
822
- WebkitUserSelect?: StyleValue<csstype.Property.WebkitUserSelect | undefined> | StyleValueStateMap<csstype.Property.WebkitUserSelect | undefined>;
823
- WebkitWritingMode?: StyleValue<csstype.Property.WritingMode | undefined> | StyleValueStateMap<csstype.Property.WritingMode | undefined>;
824
- MozAnimation?: StyleValue<csstype.Property.Animation<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Animation<string & {}> | undefined>;
825
- MozBorderImage?: StyleValue<csstype.Property.BorderImage | undefined> | StyleValueStateMap<csstype.Property.BorderImage | undefined>;
826
- MozColumnRule?: StyleValue<csstype.Property.ColumnRule<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnRule<string | number> | undefined>;
827
- MozColumns?: StyleValue<csstype.Property.Columns<string | number> | undefined> | StyleValueStateMap<csstype.Property.Columns<string | number> | undefined>;
828
- MozOutlineRadius?: StyleValue<csstype.Property.MozOutlineRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.MozOutlineRadius<string | number> | undefined>;
829
- MozTransition?: StyleValue<csstype.Property.Transition<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Transition<string & {}> | undefined>;
830
- msContentZoomLimit?: StyleValue<csstype.Property.MsContentZoomLimit | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomLimit | undefined>;
831
- msContentZoomSnap?: StyleValue<csstype.Property.MsContentZoomSnap | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomSnap | undefined>;
832
- msFlex?: StyleValue<csstype.Property.Flex<string | number> | undefined> | StyleValueStateMap<csstype.Property.Flex<string | number> | undefined>;
833
- msScrollLimit?: StyleValue<csstype.Property.MsScrollLimit | undefined> | StyleValueStateMap<csstype.Property.MsScrollLimit | undefined>;
834
- msScrollSnapX?: StyleValue<csstype.Property.MsScrollSnapX | undefined> | StyleValueStateMap<csstype.Property.MsScrollSnapX | undefined>;
835
- msScrollSnapY?: StyleValue<csstype.Property.MsScrollSnapY | undefined> | StyleValueStateMap<csstype.Property.MsScrollSnapY | undefined>;
836
- msTransition?: StyleValue<csstype.Property.Transition<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Transition<string & {}> | undefined>;
837
- WebkitAnimation?: StyleValue<csstype.Property.Animation<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Animation<string & {}> | undefined>;
838
- WebkitBorderBefore?: StyleValue<csstype.Property.WebkitBorderBefore<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitBorderBefore<string | number> | undefined>;
839
- WebkitBorderImage?: StyleValue<csstype.Property.BorderImage | undefined> | StyleValueStateMap<csstype.Property.BorderImage | undefined>;
840
- WebkitBorderRadius?: StyleValue<csstype.Property.BorderRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderRadius<string | number> | undefined>;
841
- WebkitColumnRule?: StyleValue<csstype.Property.ColumnRule<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnRule<string | number> | undefined>;
842
- WebkitColumns?: StyleValue<csstype.Property.Columns<string | number> | undefined> | StyleValueStateMap<csstype.Property.Columns<string | number> | undefined>;
843
- WebkitFlex?: StyleValue<csstype.Property.Flex<string | number> | undefined> | StyleValueStateMap<csstype.Property.Flex<string | number> | undefined>;
844
- WebkitFlexFlow?: StyleValue<csstype.Property.FlexFlow | undefined> | StyleValueStateMap<csstype.Property.FlexFlow | undefined>;
845
- WebkitMask?: StyleValue<csstype.Property.WebkitMask<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitMask<string | number> | undefined>;
846
- WebkitMaskBoxImage?: StyleValue<csstype.Property.MaskBorder | undefined> | StyleValueStateMap<csstype.Property.MaskBorder | undefined>;
847
- WebkitTextEmphasis?: StyleValue<csstype.Property.TextEmphasis | undefined> | StyleValueStateMap<csstype.Property.TextEmphasis | undefined>;
848
- WebkitTextStroke?: StyleValue<csstype.Property.WebkitTextStroke<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitTextStroke<string | number> | undefined>;
849
- WebkitTransition?: StyleValue<csstype.Property.Transition<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Transition<string & {}> | undefined>;
850
- boxAlign?: StyleValue<csstype.Property.BoxAlign | undefined> | StyleValueStateMap<csstype.Property.BoxAlign | undefined>;
851
- boxDirection?: StyleValue<csstype.Property.BoxDirection | undefined> | StyleValueStateMap<csstype.Property.BoxDirection | undefined>;
852
- boxFlex?: StyleValue<csstype.Property.BoxFlex | undefined> | StyleValueStateMap<csstype.Property.BoxFlex | undefined>;
853
- boxFlexGroup?: StyleValue<csstype.Property.BoxFlexGroup | undefined> | StyleValueStateMap<csstype.Property.BoxFlexGroup | undefined>;
854
- boxLines?: StyleValue<csstype.Property.BoxLines | undefined> | StyleValueStateMap<csstype.Property.BoxLines | undefined>;
855
- boxOrdinalGroup?: StyleValue<csstype.Property.BoxOrdinalGroup | undefined> | StyleValueStateMap<csstype.Property.BoxOrdinalGroup | undefined>;
856
- boxOrient?: StyleValue<csstype.Property.BoxOrient | undefined> | StyleValueStateMap<csstype.Property.BoxOrient | undefined>;
857
- boxPack?: StyleValue<csstype.Property.BoxPack | undefined> | StyleValueStateMap<csstype.Property.BoxPack | undefined>;
858
- clip?: StyleValue<csstype.Property.Clip | undefined> | StyleValueStateMap<csstype.Property.Clip | undefined>;
859
- fontStretch?: StyleValue<csstype.Property.FontStretch | undefined> | StyleValueStateMap<csstype.Property.FontStretch | undefined>;
860
- gridColumnGap?: StyleValue<csstype.Property.GridColumnGap<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridColumnGap<string | number> | undefined>;
861
- gridGap?: StyleValue<csstype.Property.GridGap<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridGap<string | number> | undefined>;
862
- gridRowGap?: StyleValue<csstype.Property.GridRowGap<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridRowGap<string | number> | undefined>;
863
- imeMode?: StyleValue<csstype.Property.ImeMode | undefined> | StyleValueStateMap<csstype.Property.ImeMode | undefined>;
864
- insetArea?: StyleValue<csstype.Property.PositionArea | undefined> | StyleValueStateMap<csstype.Property.PositionArea | undefined>;
865
- offsetBlock?: StyleValue<csstype.Property.InsetBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetBlock<string | number> | undefined>;
866
- offsetBlockEnd?: StyleValue<csstype.Property.InsetBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetBlockEnd<string | number> | undefined>;
867
- offsetBlockStart?: StyleValue<csstype.Property.InsetBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetBlockStart<string | number> | undefined>;
868
- offsetInline?: StyleValue<csstype.Property.InsetInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetInline<string | number> | undefined>;
869
- offsetInlineEnd?: StyleValue<csstype.Property.InsetInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetInlineEnd<string | number> | undefined>;
870
- offsetInlineStart?: StyleValue<csstype.Property.InsetInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetInlineStart<string | number> | undefined>;
871
- pageBreakAfter?: StyleValue<csstype.Property.PageBreakAfter | undefined> | StyleValueStateMap<csstype.Property.PageBreakAfter | undefined>;
872
- pageBreakBefore?: StyleValue<csstype.Property.PageBreakBefore | undefined> | StyleValueStateMap<csstype.Property.PageBreakBefore | undefined>;
873
- pageBreakInside?: StyleValue<csstype.Property.PageBreakInside | undefined> | StyleValueStateMap<csstype.Property.PageBreakInside | undefined>;
874
- positionTryOptions?: StyleValue<csstype.Property.PositionTryFallbacks | undefined> | StyleValueStateMap<csstype.Property.PositionTryFallbacks | undefined>;
875
- scrollSnapCoordinate?: StyleValue<csstype.Property.ScrollSnapCoordinate<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapCoordinate<string | number> | undefined>;
876
- scrollSnapDestination?: StyleValue<csstype.Property.ScrollSnapDestination<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapDestination<string | number> | undefined>;
877
- scrollSnapPointsX?: StyleValue<csstype.Property.ScrollSnapPointsX | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapPointsX | undefined>;
878
- scrollSnapPointsY?: StyleValue<csstype.Property.ScrollSnapPointsY | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapPointsY | undefined>;
879
- scrollSnapTypeX?: StyleValue<csstype.Property.ScrollSnapTypeX | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapTypeX | undefined>;
880
- scrollSnapTypeY?: StyleValue<csstype.Property.ScrollSnapTypeY | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapTypeY | undefined>;
881
- KhtmlBoxAlign?: StyleValue<csstype.Property.BoxAlign | undefined> | StyleValueStateMap<csstype.Property.BoxAlign | undefined>;
882
- KhtmlBoxDirection?: StyleValue<csstype.Property.BoxDirection | undefined> | StyleValueStateMap<csstype.Property.BoxDirection | undefined>;
883
- KhtmlBoxFlex?: StyleValue<csstype.Property.BoxFlex | undefined> | StyleValueStateMap<csstype.Property.BoxFlex | undefined>;
884
- KhtmlBoxFlexGroup?: StyleValue<csstype.Property.BoxFlexGroup | undefined> | StyleValueStateMap<csstype.Property.BoxFlexGroup | undefined>;
885
- KhtmlBoxLines?: StyleValue<csstype.Property.BoxLines | undefined> | StyleValueStateMap<csstype.Property.BoxLines | undefined>;
886
- KhtmlBoxOrdinalGroup?: StyleValue<csstype.Property.BoxOrdinalGroup | undefined> | StyleValueStateMap<csstype.Property.BoxOrdinalGroup | undefined>;
887
- KhtmlBoxOrient?: StyleValue<csstype.Property.BoxOrient | undefined> | StyleValueStateMap<csstype.Property.BoxOrient | undefined>;
888
- KhtmlBoxPack?: StyleValue<csstype.Property.BoxPack | undefined> | StyleValueStateMap<csstype.Property.BoxPack | undefined>;
889
- KhtmlLineBreak?: StyleValue<csstype.Property.LineBreak | undefined> | StyleValueStateMap<csstype.Property.LineBreak | undefined>;
890
- KhtmlOpacity?: StyleValue<csstype.Property.Opacity | undefined> | StyleValueStateMap<csstype.Property.Opacity | undefined>;
891
- KhtmlUserSelect?: StyleValue<csstype.Property.UserSelect | undefined> | StyleValueStateMap<csstype.Property.UserSelect | undefined>;
892
- MozBackgroundClip?: StyleValue<csstype.Property.BackgroundClip | undefined> | StyleValueStateMap<csstype.Property.BackgroundClip | undefined>;
893
- MozBackgroundOrigin?: StyleValue<csstype.Property.BackgroundOrigin | undefined> | StyleValueStateMap<csstype.Property.BackgroundOrigin | undefined>;
894
- MozBackgroundSize?: StyleValue<csstype.Property.BackgroundSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundSize<string | number> | undefined>;
895
- MozBorderRadius?: StyleValue<csstype.Property.BorderRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderRadius<string | number> | undefined>;
896
- MozBorderRadiusBottomleft?: StyleValue<csstype.Property.BorderBottomLeftRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomLeftRadius<string | number> | undefined>;
897
- MozBorderRadiusBottomright?: StyleValue<csstype.Property.BorderBottomRightRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomRightRadius<string | number> | undefined>;
898
- MozBorderRadiusTopleft?: StyleValue<csstype.Property.BorderTopLeftRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopLeftRadius<string | number> | undefined>;
899
- MozBorderRadiusTopright?: StyleValue<csstype.Property.BorderTopRightRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopRightRadius<string | number> | undefined>;
900
- MozBoxAlign?: StyleValue<csstype.Property.BoxAlign | undefined> | StyleValueStateMap<csstype.Property.BoxAlign | undefined>;
901
- MozBoxDirection?: StyleValue<csstype.Property.BoxDirection | undefined> | StyleValueStateMap<csstype.Property.BoxDirection | undefined>;
902
- MozBoxFlex?: StyleValue<csstype.Property.BoxFlex | undefined> | StyleValueStateMap<csstype.Property.BoxFlex | undefined>;
903
- MozBoxOrdinalGroup?: StyleValue<csstype.Property.BoxOrdinalGroup | undefined> | StyleValueStateMap<csstype.Property.BoxOrdinalGroup | undefined>;
904
- MozBoxOrient?: StyleValue<csstype.Property.BoxOrient | undefined> | StyleValueStateMap<csstype.Property.BoxOrient | undefined>;
905
- MozBoxPack?: StyleValue<csstype.Property.BoxPack | undefined> | StyleValueStateMap<csstype.Property.BoxPack | undefined>;
906
- MozBoxShadow?: StyleValue<csstype.Property.BoxShadow | undefined> | StyleValueStateMap<csstype.Property.BoxShadow | undefined>;
907
- MozColumnCount?: StyleValue<csstype.Property.ColumnCount | undefined> | StyleValueStateMap<csstype.Property.ColumnCount | undefined>;
908
- MozColumnFill?: StyleValue<csstype.Property.ColumnFill | undefined> | StyleValueStateMap<csstype.Property.ColumnFill | undefined>;
909
- MozFloatEdge?: StyleValue<csstype.Property.MozFloatEdge | undefined> | StyleValueStateMap<csstype.Property.MozFloatEdge | undefined>;
910
- MozForceBrokenImageIcon?: StyleValue<csstype.Property.MozForceBrokenImageIcon | undefined> | StyleValueStateMap<csstype.Property.MozForceBrokenImageIcon | undefined>;
911
- MozOpacity?: StyleValue<csstype.Property.Opacity | undefined> | StyleValueStateMap<csstype.Property.Opacity | undefined>;
912
- MozOutline?: StyleValue<csstype.Property.Outline<string | number> | undefined> | StyleValueStateMap<csstype.Property.Outline<string | number> | undefined>;
913
- MozOutlineColor?: StyleValue<csstype.Property.OutlineColor | undefined> | StyleValueStateMap<csstype.Property.OutlineColor | undefined>;
914
- MozOutlineStyle?: StyleValue<csstype.Property.OutlineStyle | undefined> | StyleValueStateMap<csstype.Property.OutlineStyle | undefined>;
915
- MozOutlineWidth?: StyleValue<csstype.Property.OutlineWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.OutlineWidth<string | number> | undefined>;
916
- MozTextAlignLast?: StyleValue<csstype.Property.TextAlignLast | undefined> | StyleValueStateMap<csstype.Property.TextAlignLast | undefined>;
917
- MozTextDecorationColor?: StyleValue<csstype.Property.TextDecorationColor | undefined> | StyleValueStateMap<csstype.Property.TextDecorationColor | undefined>;
918
- MozTextDecorationLine?: StyleValue<csstype.Property.TextDecorationLine | undefined> | StyleValueStateMap<csstype.Property.TextDecorationLine | undefined>;
919
- MozTextDecorationStyle?: StyleValue<csstype.Property.TextDecorationStyle | undefined> | StyleValueStateMap<csstype.Property.TextDecorationStyle | undefined>;
920
- MozTransitionDelay?: StyleValue<csstype.Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDelay<string & {}> | undefined>;
921
- MozTransitionDuration?: StyleValue<csstype.Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDuration<string & {}> | undefined>;
922
- MozTransitionProperty?: StyleValue<csstype.Property.TransitionProperty | undefined> | StyleValueStateMap<csstype.Property.TransitionProperty | undefined>;
923
- MozTransitionTimingFunction?: StyleValue<csstype.Property.TransitionTimingFunction | undefined> | StyleValueStateMap<csstype.Property.TransitionTimingFunction | undefined>;
924
- MozUserFocus?: StyleValue<csstype.Property.MozUserFocus | undefined> | StyleValueStateMap<csstype.Property.MozUserFocus | undefined>;
925
- MozUserInput?: StyleValue<csstype.Property.MozUserInput | undefined> | StyleValueStateMap<csstype.Property.MozUserInput | undefined>;
926
- msImeMode?: StyleValue<csstype.Property.ImeMode | undefined> | StyleValueStateMap<csstype.Property.ImeMode | undefined>;
927
- OAnimation?: StyleValue<csstype.Property.Animation<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Animation<string & {}> | undefined>;
928
- OAnimationDelay?: StyleValue<csstype.Property.AnimationDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDelay<string & {}> | undefined>;
929
- OAnimationDirection?: StyleValue<csstype.Property.AnimationDirection | undefined> | StyleValueStateMap<csstype.Property.AnimationDirection | undefined>;
930
- OAnimationDuration?: StyleValue<csstype.Property.AnimationDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDuration<string & {}> | undefined>;
931
- OAnimationFillMode?: StyleValue<csstype.Property.AnimationFillMode | undefined> | StyleValueStateMap<csstype.Property.AnimationFillMode | undefined>;
932
- OAnimationIterationCount?: StyleValue<csstype.Property.AnimationIterationCount | undefined> | StyleValueStateMap<csstype.Property.AnimationIterationCount | undefined>;
933
- OAnimationName?: StyleValue<csstype.Property.AnimationName | undefined> | StyleValueStateMap<csstype.Property.AnimationName | undefined>;
934
- OAnimationPlayState?: StyleValue<csstype.Property.AnimationPlayState | undefined> | StyleValueStateMap<csstype.Property.AnimationPlayState | undefined>;
935
- OAnimationTimingFunction?: StyleValue<csstype.Property.AnimationTimingFunction | undefined> | StyleValueStateMap<csstype.Property.AnimationTimingFunction | undefined>;
936
- OBackgroundSize?: StyleValue<csstype.Property.BackgroundSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundSize<string | number> | undefined>;
937
- OBorderImage?: StyleValue<csstype.Property.BorderImage | undefined> | StyleValueStateMap<csstype.Property.BorderImage | undefined>;
938
- OObjectFit?: StyleValue<csstype.Property.ObjectFit | undefined> | StyleValueStateMap<csstype.Property.ObjectFit | undefined>;
939
- OObjectPosition?: StyleValue<csstype.Property.ObjectPosition<string | number> | undefined> | StyleValueStateMap<csstype.Property.ObjectPosition<string | number> | undefined>;
940
- OTabSize?: StyleValue<csstype.Property.TabSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.TabSize<string | number> | undefined>;
941
- OTextOverflow?: StyleValue<csstype.Property.TextOverflow | undefined> | StyleValueStateMap<csstype.Property.TextOverflow | undefined>;
942
- OTransform?: StyleValue<csstype.Property.Transform | undefined> | StyleValueStateMap<csstype.Property.Transform | undefined>;
943
- OTransformOrigin?: StyleValue<csstype.Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.TransformOrigin<string | number> | undefined>;
944
- OTransition?: StyleValue<csstype.Property.Transition<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Transition<string & {}> | undefined>;
945
- OTransitionDelay?: StyleValue<csstype.Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDelay<string & {}> | undefined>;
946
- OTransitionDuration?: StyleValue<csstype.Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDuration<string & {}> | undefined>;
947
- OTransitionProperty?: StyleValue<csstype.Property.TransitionProperty | undefined> | StyleValueStateMap<csstype.Property.TransitionProperty | undefined>;
948
- OTransitionTimingFunction?: StyleValue<csstype.Property.TransitionTimingFunction | undefined> | StyleValueStateMap<csstype.Property.TransitionTimingFunction | undefined>;
949
- WebkitBoxAlign?: StyleValue<csstype.Property.BoxAlign | undefined> | StyleValueStateMap<csstype.Property.BoxAlign | undefined>;
950
- WebkitBoxDirection?: StyleValue<csstype.Property.BoxDirection | undefined> | StyleValueStateMap<csstype.Property.BoxDirection | undefined>;
951
- WebkitBoxFlex?: StyleValue<csstype.Property.BoxFlex | undefined> | StyleValueStateMap<csstype.Property.BoxFlex | undefined>;
952
- WebkitBoxFlexGroup?: StyleValue<csstype.Property.BoxFlexGroup | undefined> | StyleValueStateMap<csstype.Property.BoxFlexGroup | undefined>;
953
- WebkitBoxLines?: StyleValue<csstype.Property.BoxLines | undefined> | StyleValueStateMap<csstype.Property.BoxLines | undefined>;
954
- WebkitBoxOrdinalGroup?: StyleValue<csstype.Property.BoxOrdinalGroup | undefined> | StyleValueStateMap<csstype.Property.BoxOrdinalGroup | undefined>;
955
- WebkitBoxOrient?: StyleValue<csstype.Property.BoxOrient | undefined> | StyleValueStateMap<csstype.Property.BoxOrient | undefined>;
956
- WebkitBoxPack?: StyleValue<csstype.Property.BoxPack | undefined> | StyleValueStateMap<csstype.Property.BoxPack | undefined>;
957
- colorInterpolation?: StyleValue<csstype.Property.ColorInterpolation | undefined> | StyleValueStateMap<csstype.Property.ColorInterpolation | undefined>;
958
- colorRendering?: StyleValue<csstype.Property.ColorRendering | undefined> | StyleValueStateMap<csstype.Property.ColorRendering | undefined>;
959
- glyphOrientationVertical?: StyleValue<csstype.Property.GlyphOrientationVertical | undefined> | StyleValueStateMap<csstype.Property.GlyphOrientationVertical | undefined>;
960
- svgFill?: StyleValue<((string & {}) | `#${string}` | `#${string}.0` | `#${string}.1` | `#${string}.2` | `#${string}.7` | `#${string}.3` | `#${string}.4` | `#${string}.5` | `#${string}.6` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.01` | `#${string}.02` | `#${string}.07` | `#${string}.03` | `#${string}.04` | `#${string}.05` | `#${string}.06` | `#${string}.08` | `#${string}.09` | `#${string}.10` | `#${string}.11` | `#${string}.12` | `#${string}.17` | `#${string}.13` | `#${string}.14` | `#${string}.15` | `#${string}.16` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.21` | `#${string}.22` | `#${string}.27` | `#${string}.23` | `#${string}.24` | `#${string}.25` | `#${string}.26` | `#${string}.28` | `#${string}.29` | `#${string}.70` | `#${string}.71` | `#${string}.72` | `#${string}.77` | `#${string}.73` | `#${string}.74` | `#${string}.75` | `#${string}.76` | `#${string}.78` | `#${string}.79` | `#${string}.30` | `#${string}.31` | `#${string}.32` | `#${string}.37` | `#${string}.33` | `#${string}.34` | `#${string}.35` | `#${string}.36` | `#${string}.38` | `#${string}.39` | `#${string}.40` | `#${string}.41` | `#${string}.42` | `#${string}.47` | `#${string}.43` | `#${string}.44` | `#${string}.45` | `#${string}.46` | `#${string}.48` | `#${string}.49` | `#${string}.50` | `#${string}.51` | `#${string}.52` | `#${string}.57` | `#${string}.53` | `#${string}.54` | `#${string}.55` | `#${string}.56` | `#${string}.58` | `#${string}.59` | `#${string}.60` | `#${string}.61` | `#${string}.62` | `#${string}.67` | `#${string}.63` | `#${string}.64` | `#${string}.65` | `#${string}.66` | `#${string}.68` | `#${string}.69` | `#${string}.80` | `#${string}.81` | `#${string}.82` | `#${string}.87` | `#${string}.83` | `#${string}.84` | `#${string}.85` | `#${string}.86` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.91` | `#${string}.92` | `#${string}.97` | `#${string}.93` | `#${string}.94` | `#${string}.95` | `#${string}.96` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `hsl(${string})` | `okhsl(${string})` | `oklch(${string})`) | undefined> | StyleValueStateMap<((string & {}) | `#${string}` | `#${string}.0` | `#${string}.1` | `#${string}.2` | `#${string}.7` | `#${string}.3` | `#${string}.4` | `#${string}.5` | `#${string}.6` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.01` | `#${string}.02` | `#${string}.07` | `#${string}.03` | `#${string}.04` | `#${string}.05` | `#${string}.06` | `#${string}.08` | `#${string}.09` | `#${string}.10` | `#${string}.11` | `#${string}.12` | `#${string}.17` | `#${string}.13` | `#${string}.14` | `#${string}.15` | `#${string}.16` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.21` | `#${string}.22` | `#${string}.27` | `#${string}.23` | `#${string}.24` | `#${string}.25` | `#${string}.26` | `#${string}.28` | `#${string}.29` | `#${string}.70` | `#${string}.71` | `#${string}.72` | `#${string}.77` | `#${string}.73` | `#${string}.74` | `#${string}.75` | `#${string}.76` | `#${string}.78` | `#${string}.79` | `#${string}.30` | `#${string}.31` | `#${string}.32` | `#${string}.37` | `#${string}.33` | `#${string}.34` | `#${string}.35` | `#${string}.36` | `#${string}.38` | `#${string}.39` | `#${string}.40` | `#${string}.41` | `#${string}.42` | `#${string}.47` | `#${string}.43` | `#${string}.44` | `#${string}.45` | `#${string}.46` | `#${string}.48` | `#${string}.49` | `#${string}.50` | `#${string}.51` | `#${string}.52` | `#${string}.57` | `#${string}.53` | `#${string}.54` | `#${string}.55` | `#${string}.56` | `#${string}.58` | `#${string}.59` | `#${string}.60` | `#${string}.61` | `#${string}.62` | `#${string}.67` | `#${string}.63` | `#${string}.64` | `#${string}.65` | `#${string}.66` | `#${string}.68` | `#${string}.69` | `#${string}.80` | `#${string}.81` | `#${string}.82` | `#${string}.87` | `#${string}.83` | `#${string}.84` | `#${string}.85` | `#${string}.86` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.91` | `#${string}.92` | `#${string}.97` | `#${string}.93` | `#${string}.94` | `#${string}.95` | `#${string}.96` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `hsl(${string})` | `okhsl(${string})` | `oklch(${string})`) | undefined>;
961
- fade?: StyleValue<string | undefined> | StyleValueStateMap<string | undefined>;
962
- scrollbar?: StyleValue<string | boolean | undefined> | StyleValueStateMap<string | boolean | undefined>;
963
- boldFontWeight?: StyleValue<number | undefined> | StyleValueStateMap<number | undefined>;
964
- hide?: StyleValue<boolean | undefined> | StyleValueStateMap<boolean | undefined>;
965
- shadow?: StyleValue<string | boolean | undefined> | StyleValueStateMap<string | boolean | undefined>;
966
- radius?: StyleValue<string | true | undefined> | StyleValueStateMap<string | true | undefined>;
967
- flow?: StyleValue<string | (string & {}) | undefined> | StyleValueStateMap<string | (string & {}) | undefined>;
968
- gridAreas?: StyleValue<csstype.Property.GridTemplateAreas | undefined> | StyleValueStateMap<csstype.Property.GridTemplateAreas | undefined>;
969
- gridColumns?: StyleValue<csstype.Property.GridTemplateColumns<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridTemplateColumns<string | number> | undefined>;
970
- gridRows?: StyleValue<csstype.Property.GridTemplateRows<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridTemplateRows<string | number> | undefined>;
971
- preset?: StyleValue<string | (string & {}) | undefined> | StyleValueStateMap<string | (string & {}) | undefined>;
972
- align?: StyleValue<"center" | (string & {}) | "start" | "baseline" | "inherit" | "initial" | "end" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "normal" | "space-around" | "space-between" | "space-evenly" | "stretch" | "flex-end" | "flex-start" | "self-end" | "self-start" | "anchor-center" | undefined> | StyleValueStateMap<"center" | (string & {}) | "start" | "baseline" | "inherit" | "initial" | "end" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "normal" | "space-around" | "space-between" | "space-evenly" | "stretch" | "flex-end" | "flex-start" | "self-end" | "self-start" | "anchor-center" | undefined>;
973
- justify?: StyleValue<"center" | (string & {}) | "left" | "right" | "start" | "baseline" | "inherit" | "initial" | "end" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "normal" | "space-around" | "space-between" | "space-evenly" | "stretch" | "flex-end" | "flex-start" | "self-end" | "self-start" | "anchor-center" | "legacy" | undefined> | StyleValueStateMap<"center" | (string & {}) | "left" | "right" | "start" | "baseline" | "inherit" | "initial" | "end" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "normal" | "space-around" | "space-between" | "space-evenly" | "stretch" | "flex-end" | "flex-start" | "self-end" | "self-start" | "anchor-center" | "legacy" | undefined>;
974
- place?: StyleValue<string | (string & {}) | undefined> | StyleValueStateMap<string | (string & {}) | undefined>;
975
- "@keyframes"?: StyleValue<Record<string, KeyframesSteps> | undefined> | StyleValueStateMap<Record<string, KeyframesSteps> | undefined>;
976
- "@properties"?: StyleValue<Record<string, PropertyDefinition> | undefined> | StyleValueStateMap<Record<string, PropertyDefinition> | undefined>;
977
- recipe?: StyleValue<string | undefined> | StyleValueStateMap<string | undefined>;
978
- } & BaseStyleProps & WithVariant<VariantMap> & Omit<Omit<AllHTMLAttributes<HTMLElement>, keyof react.ClassAttributes<HTMLDivElement> | keyof react.HTMLAttributes<HTMLDivElement>> & react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement>, "style" | "clipPath" | "filter" | "image" | "marker" | "mask" | "fill" | "qa" | "qaVal" | "color" | "font" | "outline" | "gap" | "padding" | "margin" | "width" | "height" | "border" | "transition" | "placeContent" | "placeItems" | "accentColor" | "alignContent" | "alignItems" | "alignSelf" | "alignTracks" | "alignmentBaseline" | "anchorName" | "anchorScope" | "animationComposition" | "animationDelay" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationRangeEnd" | "animationRangeStart" | "animationTimeline" | "animationTimingFunction" | "appearance" | "aspectRatio" | "backdropFilter" | "backfaceVisibility" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPositionX" | "backgroundPositionY" | "backgroundRepeat" | "backgroundSize" | "baselineShift" | "blockSize" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderCollapse" | "borderEndEndRadius" | "borderEndStartRadius" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderSpacing" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxDecorationBreak" | "boxShadow" | "boxSizing" | "breakAfter" | "breakBefore" | "breakInside" | "captionSide" | "caretColor" | "caretShape" | "clear" | "clipRule" | "colorAdjust" | "colorInterpolationFilters" | "colorScheme" | "columnCount" | "columnFill" | "columnGap" | "columnRuleColor" | "columnRuleStyle" | "columnRuleWidth" | "columnSpan" | "columnWidth" | "contain" | "containIntrinsicBlockSize" | "containIntrinsicHeight" | "containIntrinsicInlineSize" | "containIntrinsicWidth" | "containerName" | "containerType" | "content" | "contentVisibility" | "counterIncrement" | "counterReset" | "counterSet" | "cursor" | "cx" | "cy" | "d" | "direction" | "display" | "dominantBaseline" | "emptyCells" | "fieldSizing" | "fillOpacity" | "fillRule" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "float" | "floodColor" | "floodOpacity" | "fontFamily" | "fontFeatureSettings" | "fontKerning" | "fontLanguageOverride" | "fontOpticalSizing" | "fontPalette" | "fontSize" | "fontSizeAdjust" | "fontSmooth" | "fontStyle" | "fontSynthesis" | "fontSynthesisPosition" | "fontSynthesisSmallCaps" | "fontSynthesisStyle" | "fontSynthesisWeight" | "fontVariant" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantEmoji" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition" | "fontVariationSettings" | "fontWeight" | "fontWidth" | "forcedColorAdjust" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "hangingPunctuation" | "hyphenateCharacter" | "hyphenateLimitChars" | "hyphens" | "imageOrientation" | "imageRendering" | "imageResolution" | "initialLetter" | "initialLetterAlign" | "inlineSize" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetInlineStart" | "interpolateSize" | "isolation" | "justifyContent" | "justifyItems" | "justifySelf" | "justifyTracks" | "left" | "letterSpacing" | "lightingColor" | "lineBreak" | "lineHeight" | "lineHeightStep" | "listStyleImage" | "listStylePosition" | "listStyleType" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "marginTrim" | "markerEnd" | "markerMid" | "markerStart" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "masonryAutoFlow" | "mathDepth" | "mathShift" | "mathStyle" | "maxBlockSize" | "maxHeight" | "maxInlineSize" | "maxLines" | "maxWidth" | "minBlockSize" | "minHeight" | "minInlineSize" | "minWidth" | "mixBlendMode" | "motionDistance" | "motionPath" | "motionRotation" | "objectFit" | "objectPosition" | "objectViewBox" | "offsetAnchor" | "offsetDistance" | "offsetPath" | "offsetPosition" | "offsetRotate" | "offsetRotation" | "opacity" | "order" | "orphans" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "overflowAnchor" | "overflowBlock" | "overflowClipBox" | "overflowClipMargin" | "overflowInline" | "overflowWrap" | "overflowX" | "overflowY" | "overlay" | "overscrollBehaviorBlock" | "overscrollBehaviorInline" | "overscrollBehaviorX" | "overscrollBehaviorY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "page" | "paintOrder" | "perspective" | "perspectiveOrigin" | "pointerEvents" | "position" | "positionAnchor" | "positionArea" | "positionTryFallbacks" | "positionTryOrder" | "positionVisibility" | "printColorAdjust" | "quotes" | "r" | "resize" | "right" | "rotate" | "rowGap" | "rubyAlign" | "rubyMerge" | "rubyOverhang" | "rubyPosition" | "rx" | "ry" | "scale" | "scrollBehavior" | "scrollInitialTarget" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginBottom" | "scrollMarginInlineEnd" | "scrollMarginInlineStart" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollPaddingBlockEnd" | "scrollPaddingBlockStart" | "scrollPaddingBottom" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollSnapAlign" | "scrollSnapMarginBottom" | "scrollSnapMarginLeft" | "scrollSnapMarginRight" | "scrollSnapMarginTop" | "scrollSnapStop" | "scrollSnapType" | "scrollTimelineAxis" | "scrollTimelineName" | "scrollbarColor" | "scrollbarGutter" | "scrollbarWidth" | "shapeImageThreshold" | "shapeMargin" | "shapeOutside" | "shapeRendering" | "speakAs" | "stopColor" | "stopOpacity" | "stroke" | "strokeColor" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "tabSize" | "tableLayout" | "textAlign" | "textAlignLast" | "textAnchor" | "textAutospace" | "textBox" | "textBoxEdge" | "textBoxTrim" | "textCombineUpright" | "textDecorationColor" | "textDecorationLine" | "textDecorationSkip" | "textDecorationSkipInk" | "textDecorationStyle" | "textDecorationThickness" | "textEmphasisColor" | "textEmphasisPosition" | "textEmphasisStyle" | "textIndent" | "textJustify" | "textOrientation" | "textOverflow" | "textRendering" | "textShadow" | "textSizeAdjust" | "textSpacingTrim" | "textTransform" | "textUnderlineOffset" | "textUnderlinePosition" | "textWrapMode" | "textWrapStyle" | "timelineScope" | "top" | "touchAction" | "transform" | "transformBox" | "transformOrigin" | "transformStyle" | "transitionBehavior" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "translate" | "unicodeBidi" | "userSelect" | "vectorEffect" | "verticalAlign" | "viewTimelineAxis" | "viewTimelineInset" | "viewTimelineName" | "viewTransitionClass" | "viewTransitionName" | "visibility" | "whiteSpace" | "whiteSpaceCollapse" | "widows" | "willChange" | "wordBreak" | "wordSpacing" | "wordWrap" | "writingMode" | "x" | "y" | "zIndex" | "zoom" | "all" | "animation" | "animationRange" | "background" | "backgroundPosition" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBlockStart" | "borderBlockStyle" | "borderBlockWidth" | "borderBottom" | "borderColor" | "borderImage" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderInlineStart" | "borderInlineStyle" | "borderInlineWidth" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "caret" | "columnRule" | "columns" | "containIntrinsicSize" | "container" | "flex" | "flexFlow" | "grid" | "gridArea" | "gridColumn" | "gridRow" | "gridTemplate" | "inset" | "insetBlock" | "insetInline" | "lineClamp" | "listStyle" | "marginBlock" | "marginInline" | "maskBorder" | "motion" | "offset" | "overflow" | "overscrollBehavior" | "paddingBlock" | "paddingInline" | "placeSelf" | "positionTry" | "scrollMargin" | "scrollMarginBlock" | "scrollMarginInline" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingInline" | "scrollSnapMargin" | "scrollTimeline" | "textDecoration" | "textEmphasis" | "textWrap" | "viewTimeline" | "MozAnimationDelay" | "MozAnimationDirection" | "MozAnimationDuration" | "MozAnimationFillMode" | "MozAnimationIterationCount" | "MozAnimationName" | "MozAnimationPlayState" | "MozAnimationTimingFunction" | "MozAppearance" | "MozBackfaceVisibility" | "MozBinding" | "MozBorderBottomColors" | "MozBorderEndColor" | "MozBorderEndStyle" | "MozBorderEndWidth" | "MozBorderLeftColors" | "MozBorderRightColors" | "MozBorderStartColor" | "MozBorderStartStyle" | "MozBorderTopColors" | "MozBoxSizing" | "MozColumnRuleColor" | "MozColumnRuleStyle" | "MozColumnRuleWidth" | "MozColumnWidth" | "MozContextProperties" | "MozFontFeatureSettings" | "MozFontLanguageOverride" | "MozHyphens" | "MozMarginEnd" | "MozMarginStart" | "MozOrient" | "MozOsxFontSmoothing" | "MozOutlineRadiusBottomleft" | "MozOutlineRadiusBottomright" | "MozOutlineRadiusTopleft" | "MozOutlineRadiusTopright" | "MozPaddingEnd" | "MozPaddingStart" | "MozPerspective" | "MozPerspectiveOrigin" | "MozStackSizing" | "MozTabSize" | "MozTextBlink" | "MozTextSizeAdjust" | "MozTransform" | "MozTransformOrigin" | "MozTransformStyle" | "MozUserModify" | "MozUserSelect" | "MozWindowDragging" | "MozWindowShadow" | "msAccelerator" | "msBlockProgression" | "msContentZoomChaining" | "msContentZoomLimitMax" | "msContentZoomLimitMin" | "msContentZoomSnapPoints" | "msContentZoomSnapType" | "msContentZooming" | "msFilter" | "msFlexDirection" | "msFlexPositive" | "msFlowFrom" | "msFlowInto" | "msGridColumns" | "msGridRows" | "msHighContrastAdjust" | "msHyphenateLimitChars" | "msHyphenateLimitLines" | "msHyphenateLimitZone" | "msHyphens" | "msImeAlign" | "msLineBreak" | "msOrder" | "msOverflowStyle" | "msOverflowX" | "msOverflowY" | "msScrollChaining" | "msScrollLimitXMax" | "msScrollLimitXMin" | "msScrollLimitYMax" | "msScrollLimitYMin" | "msScrollRails" | "msScrollSnapPointsX" | "msScrollSnapPointsY" | "msScrollSnapType" | "msScrollTranslation" | "msScrollbar3dlightColor" | "msScrollbarArrowColor" | "msScrollbarBaseColor" | "msScrollbarDarkshadowColor" | "msScrollbarFaceColor" | "msScrollbarHighlightColor" | "msScrollbarShadowColor" | "msScrollbarTrackColor" | "msTextAutospace" | "msTextCombineHorizontal" | "msTextOverflow" | "msTouchAction" | "msTouchSelect" | "msTransform" | "msTransformOrigin" | "msTransitionDelay" | "msTransitionDuration" | "msTransitionProperty" | "msTransitionTimingFunction" | "msUserSelect" | "msWordBreak" | "msWrapFlow" | "msWrapMargin" | "msWrapThrough" | "msWritingMode" | "WebkitAlignContent" | "WebkitAlignItems" | "WebkitAlignSelf" | "WebkitAnimationDelay" | "WebkitAnimationDirection" | "WebkitAnimationDuration" | "WebkitAnimationFillMode" | "WebkitAnimationIterationCount" | "WebkitAnimationName" | "WebkitAnimationPlayState" | "WebkitAnimationTimingFunction" | "WebkitAppearance" | "WebkitBackdropFilter" | "WebkitBackfaceVisibility" | "WebkitBackgroundClip" | "WebkitBackgroundOrigin" | "WebkitBackgroundSize" | "WebkitBorderBeforeColor" | "WebkitBorderBeforeStyle" | "WebkitBorderBeforeWidth" | "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderImageSlice" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "WebkitBoxDecorationBreak" | "WebkitBoxReflect" | "WebkitBoxShadow" | "WebkitBoxSizing" | "WebkitClipPath" | "WebkitColumnCount" | "WebkitColumnFill" | "WebkitColumnRuleColor" | "WebkitColumnRuleStyle" | "WebkitColumnRuleWidth" | "WebkitColumnSpan" | "WebkitColumnWidth" | "WebkitFilter" | "WebkitFlexBasis" | "WebkitFlexDirection" | "WebkitFlexGrow" | "WebkitFlexShrink" | "WebkitFlexWrap" | "WebkitFontFeatureSettings" | "WebkitFontKerning" | "WebkitFontSmoothing" | "WebkitFontVariantLigatures" | "WebkitHyphenateCharacter" | "WebkitHyphens" | "WebkitInitialLetter" | "WebkitJustifyContent" | "WebkitLineBreak" | "WebkitLineClamp" | "WebkitLogicalHeight" | "WebkitLogicalWidth" | "WebkitMarginEnd" | "WebkitMarginStart" | "WebkitMaskAttachment" | "WebkitMaskBoxImageOutset" | "WebkitMaskBoxImageRepeat" | "WebkitMaskBoxImageSlice" | "WebkitMaskBoxImageSource" | "WebkitMaskBoxImageWidth" | "WebkitMaskClip" | "WebkitMaskComposite" | "WebkitMaskImage" | "WebkitMaskOrigin" | "WebkitMaskPosition" | "WebkitMaskPositionX" | "WebkitMaskPositionY" | "WebkitMaskRepeat" | "WebkitMaskRepeatX" | "WebkitMaskRepeatY" | "WebkitMaskSize" | "WebkitMaxInlineSize" | "WebkitOrder" | "WebkitOverflowScrolling" | "WebkitPaddingEnd" | "WebkitPaddingStart" | "WebkitPerspective" | "WebkitPerspectiveOrigin" | "WebkitPrintColorAdjust" | "WebkitRubyPosition" | "WebkitScrollSnapType" | "WebkitShapeMargin" | "WebkitTapHighlightColor" | "WebkitTextCombine" | "WebkitTextDecorationColor" | "WebkitTextDecorationLine" | "WebkitTextDecorationSkip" | "WebkitTextDecorationStyle" | "WebkitTextEmphasisColor" | "WebkitTextEmphasisPosition" | "WebkitTextEmphasisStyle" | "WebkitTextFillColor" | "WebkitTextOrientation" | "WebkitTextSizeAdjust" | "WebkitTextStrokeColor" | "WebkitTextStrokeWidth" | "WebkitTextUnderlinePosition" | "WebkitTouchCallout" | "WebkitTransform" | "WebkitTransformOrigin" | "WebkitTransformStyle" | "WebkitTransitionDelay" | "WebkitTransitionDuration" | "WebkitTransitionProperty" | "WebkitTransitionTimingFunction" | "WebkitUserModify" | "WebkitUserSelect" | "WebkitWritingMode" | "MozAnimation" | "MozBorderImage" | "MozColumnRule" | "MozColumns" | "MozOutlineRadius" | "MozTransition" | "msContentZoomLimit" | "msContentZoomSnap" | "msFlex" | "msScrollLimit" | "msScrollSnapX" | "msScrollSnapY" | "msTransition" | "WebkitAnimation" | "WebkitBorderBefore" | "WebkitBorderImage" | "WebkitBorderRadius" | "WebkitColumnRule" | "WebkitColumns" | "WebkitFlex" | "WebkitFlexFlow" | "WebkitMask" | "WebkitMaskBoxImage" | "WebkitTextEmphasis" | "WebkitTextStroke" | "WebkitTransition" | "boxAlign" | "boxDirection" | "boxFlex" | "boxFlexGroup" | "boxLines" | "boxOrdinalGroup" | "boxOrient" | "boxPack" | "clip" | "fontStretch" | "gridColumnGap" | "gridGap" | "gridRowGap" | "imeMode" | "insetArea" | "offsetBlock" | "offsetBlockEnd" | "offsetBlockStart" | "offsetInline" | "offsetInlineEnd" | "offsetInlineStart" | "pageBreakAfter" | "pageBreakBefore" | "pageBreakInside" | "positionTryOptions" | "scrollSnapCoordinate" | "scrollSnapDestination" | "scrollSnapPointsX" | "scrollSnapPointsY" | "scrollSnapTypeX" | "scrollSnapTypeY" | "KhtmlBoxAlign" | "KhtmlBoxDirection" | "KhtmlBoxFlex" | "KhtmlBoxFlexGroup" | "KhtmlBoxLines" | "KhtmlBoxOrdinalGroup" | "KhtmlBoxOrient" | "KhtmlBoxPack" | "KhtmlLineBreak" | "KhtmlOpacity" | "KhtmlUserSelect" | "MozBackgroundClip" | "MozBackgroundOrigin" | "MozBackgroundSize" | "MozBorderRadius" | "MozBorderRadiusBottomleft" | "MozBorderRadiusBottomright" | "MozBorderRadiusTopleft" | "MozBorderRadiusTopright" | "MozBoxAlign" | "MozBoxDirection" | "MozBoxFlex" | "MozBoxOrdinalGroup" | "MozBoxOrient" | "MozBoxPack" | "MozBoxShadow" | "MozColumnCount" | "MozColumnFill" | "MozFloatEdge" | "MozForceBrokenImageIcon" | "MozOpacity" | "MozOutline" | "MozOutlineColor" | "MozOutlineStyle" | "MozOutlineWidth" | "MozTextAlignLast" | "MozTextDecorationColor" | "MozTextDecorationLine" | "MozTextDecorationStyle" | "MozTransitionDelay" | "MozTransitionDuration" | "MozTransitionProperty" | "MozTransitionTimingFunction" | "MozUserFocus" | "MozUserInput" | "msImeMode" | "OAnimation" | "OAnimationDelay" | "OAnimationDirection" | "OAnimationDuration" | "OAnimationFillMode" | "OAnimationIterationCount" | "OAnimationName" | "OAnimationPlayState" | "OAnimationTimingFunction" | "OBackgroundSize" | "OBorderImage" | "OObjectFit" | "OObjectPosition" | "OTabSize" | "OTextOverflow" | "OTransform" | "OTransformOrigin" | "OTransition" | "OTransitionDelay" | "OTransitionDuration" | "OTransitionProperty" | "OTransitionTimingFunction" | "WebkitBoxAlign" | "WebkitBoxDirection" | "WebkitBoxFlex" | "WebkitBoxFlexGroup" | "WebkitBoxLines" | "WebkitBoxOrdinalGroup" | "WebkitBoxOrient" | "WebkitBoxPack" | "colorInterpolation" | "colorRendering" | "glyphOrientationVertical" | "svgFill" | "fade" | "scrollbar" | "boldFontWeight" | "hide" | "shadow" | "radius" | "flow" | "gridAreas" | "gridColumns" | "gridRows" | "preset" | "align" | "justify" | "place" | "@keyframes" | "@properties" | "recipe" | "as" | "element" | "styles" | "breakpoints" | "block" | "inline" | "mods" | "isHidden" | "isDisabled" | "css" | "theme" | "tokens" | "ref"> & RefAttributes<unknown>> & SubElementComponents<Record<string, never>>;
111
+ declare const Element: ForwardRefExoticComponent<Omit<TastyElementProps<StyleList, VariantMap, "div", readonly string[]>, "ref"> & RefAttributes<unknown>> & SubElementComponents<Record<string, never>>;
979
112
  //#endregion
980
- export { AllBasePropsWithMods, Element, ElementsDefinition, SubElementDefinition, SubElementProps, TastyElementOptions, TastyElementProps, TastyProps, VariantMap, WithVariant, tasty };
113
+ export { AllBasePropsWithMods, Element, ElementsDefinition, ModPropDef, ModPropsInput, ResolveModPropDef, ResolveModProps, SubElementDefinition, SubElementProps, TastyElementOptions, TastyElementProps, TastyProps, VariantMap, WithVariant, tasty };
981
114
  //# sourceMappingURL=tasty.d.ts.map