@pikacss/core 0.0.45 → 0.0.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.mts +819 -725
  2. package/dist/index.mjs +1421 -197
  3. package/package.json +2 -1
package/dist/index.d.mts CHANGED
@@ -141,17 +141,23 @@ declare module '@pikacss/core' {
141
141
  declare function shortcuts(): EnginePlugin;
142
142
  declare class ShortcutResolver extends RecursiveResolver<InternalStyleItem> {}
143
143
  //#endregion
144
+ //#region src/internal/generated-property-semantics.d.ts
145
+ declare const VARIABLE_SEMANTIC_FAMILIES: readonly ["color", "length", "time", "number", "percentage", "angle", "image", "url", "position", "easing", "font-family"];
146
+ type VariableSemanticFamily = typeof VARIABLE_SEMANTIC_FAMILIES[number];
147
+ //#endregion
144
148
  //#region src/internal/plugins/variables.d.ts
145
149
  type ResolvedCSSProperty = keyof ResolvedCSSProperties;
150
+ type VariableSemanticType = VariableSemanticFamily | UnionString;
146
151
  interface VariableAutocomplete {
147
152
  /**
148
153
  * Specify the properties that the variable can be used as a value of.
154
+ * Use '-' to disable CSS value autocomplete for this variable.
149
155
  *
150
156
  * @default ['*']
151
157
  */
152
158
  asValueOf?: Arrayable<UnionString | '*' | '-' | ResolvedCSSProperty>;
153
159
  /**
154
- * Whether to add the variable as a CSS property.
160
+ * Whether to expose the variable name as an extra CSS property in autocomplete.
155
161
  *
156
162
  * @default true
157
163
  */
@@ -159,6 +165,7 @@ interface VariableAutocomplete {
159
165
  }
160
166
  interface VariableObject {
161
167
  value?: ResolvedCSSProperties[`--${string}`];
168
+ semanticType?: Arrayable<VariableSemanticType>;
162
169
  autocomplete?: VariableAutocomplete;
163
170
  pruneUnused?: boolean;
164
171
  }
@@ -202,6 +209,11 @@ interface VariablesConfig {
202
209
  * ```ts
203
210
  * {
204
211
  * variables: {
212
+ * variables: {
213
+ * '--external-var': null,
214
+ * '--color-bg': '#fff',
215
+ * '--color-text': '#000',
216
+ * },
205
217
  * safeList: ['--external-var', '--color-bg', '--color-text'],
206
218
  * },
207
219
  * }
@@ -233,6 +245,11 @@ interface ResolvedVariable {
233
245
  }
234
246
  declare function extractUsedVarNames(input: string): string[];
235
247
  declare function normalizeVariableName(name: string): string;
248
+ /**
249
+ * Recursively extract all CSS variable names referenced inside a preflight
250
+ * result (either a plain CSS string or a `PreflightDefinition` object).
251
+ */
252
+ declare function extractUsedVarNamesFromPreflightResult(result: string | PreflightDefinition): string[];
236
253
  //#endregion
237
254
  //#region src/internal/types/utils.d.ts
238
255
  type Nullish = null | undefined;
@@ -249,6 +266,37 @@ type GetValue<Obj, K extends string> = [Obj] extends [never] ? never : K extends
249
266
  type ResolveFrom<T, Key extends string, I, Fallback extends I> = Key extends keyof T ? T[Key] extends I ? T[Key] : Fallback : Fallback;
250
267
  //#endregion
251
268
  //#region src/internal/types/autocomplete.d.ts
269
+ type AutocompleteKeys<T> = [T] extends [never] ? never : Extract<keyof T, string>;
270
+ interface AutocompletePatternsConfig {
271
+ selectors?: Arrayable<string>;
272
+ styleItemStrings?: Arrayable<string>;
273
+ properties?: Record<string, Arrayable<string>>;
274
+ cssProperties?: Record<string, Arrayable<string>>;
275
+ }
276
+ interface AutocompleteContribution {
277
+ selectors?: Arrayable<string>;
278
+ styleItemStrings?: Arrayable<string>;
279
+ extraProperties?: Arrayable<string>;
280
+ extraCssProperties?: Arrayable<string>;
281
+ properties?: Record<string, Arrayable<string>>;
282
+ cssProperties?: Record<string, Arrayable<string>>;
283
+ patterns?: AutocompletePatternsConfig;
284
+ }
285
+ interface AutocompleteConfig {
286
+ selectors?: Arrayable<string>;
287
+ styleItemStrings?: Arrayable<string>;
288
+ extraProperties?: Arrayable<string>;
289
+ extraCssProperties?: Arrayable<string>;
290
+ properties?: [property: string, tsType: Arrayable<string>][] | Record<string, Arrayable<string>>;
291
+ cssProperties?: [property: string, value: Arrayable<string>][] | Record<string, Arrayable<string>>;
292
+ patterns?: AutocompletePatternsConfig;
293
+ }
294
+ interface ResolvedAutocompletePatternsConfig {
295
+ selectors: Set<string>;
296
+ styleItemStrings: Set<string>;
297
+ properties: Map<string, string[]>;
298
+ cssProperties: Map<string, string[]>;
299
+ }
252
300
  interface ResolvedAutocompleteConfig {
253
301
  selectors: Set<string>;
254
302
  styleItemStrings: Set<string>;
@@ -256,27 +304,32 @@ interface ResolvedAutocompleteConfig {
256
304
  extraCssProperties: Set<string>;
257
305
  properties: Map<string, string[]>;
258
306
  cssProperties: Map<string, string[]>;
307
+ patterns: ResolvedAutocompletePatternsConfig;
259
308
  }
260
309
  interface _Autocomplete {
261
310
  Selector: UnionString;
262
311
  StyleItemString: UnionString;
263
- ExtraProperty: UnionString;
264
- ExtraCssProperty: UnionString;
265
312
  Layer: UnionString;
266
- PropertiesValue: Record<string, unknown>;
267
- CssPropertiesValue: Record<string, UnionString>;
313
+ PropertyValue: Record<string, unknown>;
314
+ CSSPropertyValue: Record<string, UnionString>;
268
315
  }
269
316
  type DefineAutocomplete<A extends _Autocomplete> = A;
270
317
  type EmptyAutocomplete = DefineAutocomplete<{
271
318
  Selector: never;
272
319
  StyleItemString: never;
273
- ExtraProperty: never;
274
- ExtraCssProperty: never;
275
320
  Layer: never;
276
- PropertiesValue: never;
277
- CssPropertiesValue: never;
321
+ PropertyValue: never;
322
+ CSSPropertyValue: never;
278
323
  }>;
279
324
  //#endregion
325
+ //#region src/internal/atomic-style.d.ts
326
+ interface EngineStore {
327
+ atomicStyleIds: Map<string, string>;
328
+ atomicStyles: Map<string, AtomicStyle>;
329
+ atomicStyleIdsByBaseKey: Map<string, string[]>;
330
+ atomicStyleOrder: Map<string, number>;
331
+ }
332
+ //#endregion
280
333
  //#region src/internal/extractor.d.ts
281
334
  type ExtractFn = (styleDefinition: InternalStyleDefinition) => Promise<ExtractedStyleContent[]>;
282
335
  //#endregion
@@ -297,20 +350,13 @@ declare class Engine {
297
350
  autocompleteConfigUpdated: (plugins: EnginePlugin[]) => void;
298
351
  };
299
352
  extract: ExtractFn;
300
- store: {
301
- atomicStyleIds: Map<string, string>;
302
- atomicStyles: Map<string, AtomicStyle>;
303
- };
353
+ store: EngineStore;
304
354
  constructor(config: ResolvedEngineConfig);
305
355
  notifyPreflightUpdated(): void;
306
356
  notifyAtomicStyleAdded(atomicStyle: AtomicStyle): void;
307
357
  notifyAutocompleteConfigUpdated(): void;
308
- appendAutocompleteSelectors(...selectors: string[]): void;
309
- appendAutocompleteStyleItemStrings(...styleItemStrings: string[]): void;
310
- appendAutocompleteExtraProperties(...properties: string[]): void;
311
- appendAutocompleteExtraCssProperties(...properties: string[]): void;
312
- appendAutocompletePropertyValues(property: string, ...tsTypes: string[]): void;
313
- appendAutocompleteCssPropertyValues(property: string, ...values: string[]): void;
358
+ appendAutocomplete(contribution: AutocompleteContribution): void;
359
+ appendCssImport(cssImport: string): void;
314
360
  addPreflight(preflight: Preflight): void;
315
361
  use(...itemList: InternalStyleItem[]): Promise<string[]>;
316
362
  renderPreflights(isFormatted: boolean): Promise<string>;
@@ -390,13 +436,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
390
436
  */
391
437
  all?: Property.All | undefined;
392
438
  /**
393
- * Baseline: Not widely available
439
+ * ⚠️ Baseline: Newly available (since Jan 2026)
394
440
  *
395
441
  * @see https://developer.mozilla.org/docs/Web/CSS/anchor-name
396
442
  */
397
443
  anchorName?: Property.AnchorName | undefined;
398
444
  /**
399
- * Baseline: Not widely available
445
+ * ⚠️ Baseline: Newly available (since Jan 2026)
400
446
  */
401
447
  anchorScope?: Property.AnchorScope | undefined;
402
448
  /**
@@ -521,7 +567,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
521
567
  */
522
568
  background?: Property.Background | undefined;
523
569
  /**
524
- * Baseline: Not widely available
570
+ * Baseline: Widely available (since Jan 2018)
525
571
  *
526
572
  * @see https://developer.mozilla.org/docs/Web/CSS/background-attachment
527
573
  */
@@ -563,19 +609,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
563
609
  */
564
610
  backgroundPosition?: Property.BackgroundPosition<TLength> | undefined;
565
611
  /**
566
- * ✅ Baseline: Widely available (since Jan 2018)
612
+ * ✅ Baseline: Widely available (since Mar 2019)
567
613
  *
568
614
  * @see https://developer.mozilla.org/docs/Web/CSS/background-position-x
569
615
  */
570
616
  backgroundPositionX?: Property.BackgroundPositionX<TLength> | undefined;
571
617
  /**
572
- * ✅ Baseline: Widely available (since Jan 2018)
618
+ * ✅ Baseline: Widely available (since Mar 2019)
573
619
  *
574
620
  * @see https://developer.mozilla.org/docs/Web/CSS/background-position-y
575
621
  */
576
622
  backgroundPositionY?: Property.BackgroundPositionY<TLength> | undefined;
577
623
  /**
578
- * ✅ Baseline: Widely available (since Mar 2019)
624
+ * ✅ Baseline: Widely available (since Jan 2018)
579
625
  *
580
626
  * @see https://developer.mozilla.org/docs/Web/CSS/background-repeat
581
627
  */
@@ -597,7 +643,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
597
643
  */
598
644
  baselineSource?: Property.BaselineSource | undefined;
599
645
  /**
600
- * ✅ Baseline: Widely available (since Mar 2024)
646
+ * ✅ Baseline: Widely available (since Jul 2022)
601
647
  *
602
648
  * @see https://developer.mozilla.org/docs/Web/CSS/block-size
603
649
  */
@@ -609,73 +655,73 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
609
655
  */
610
656
  border?: Property.Border<TLength> | undefined;
611
657
  /**
612
- * ✅ Baseline: Widely available (since Mar 2024)
658
+ * ✅ Baseline: Widely available (since Oct 2023)
613
659
  *
614
660
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block
615
661
  */
616
662
  borderBlock?: Property.BorderBlock<TLength> | undefined;
617
663
  /**
618
- * ✅ Baseline: Widely available (since Mar 2024)
664
+ * ✅ Baseline: Widely available (since Oct 2023)
619
665
  *
620
666
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
621
667
  */
622
668
  borderBlockColor?: Property.BorderBlockColor | undefined;
623
669
  /**
624
- * ✅ Baseline: Widely available (since Mar 2024)
670
+ * ✅ Baseline: Widely available (since Jul 2022)
625
671
  *
626
672
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end
627
673
  */
628
674
  borderBlockEnd?: Property.BorderBlockEnd<TLength> | undefined;
629
675
  /**
630
- * ✅ Baseline: Widely available (since Mar 2024)
676
+ * ✅ Baseline: Widely available (since Jul 2022)
631
677
  *
632
678
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color
633
679
  */
634
680
  borderBlockEndColor?: Property.BorderBlockEndColor | undefined;
635
681
  /**
636
- * ✅ Baseline: Widely available (since Mar 2024)
682
+ * ✅ Baseline: Widely available (since Jul 2022)
637
683
  *
638
684
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-style
639
685
  */
640
686
  borderBlockEndStyle?: Property.BorderBlockEndStyle | undefined;
641
687
  /**
642
- * ✅ Baseline: Widely available (since Mar 2024)
688
+ * ✅ Baseline: Widely available (since Jul 2022)
643
689
  *
644
690
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width
645
691
  */
646
692
  borderBlockEndWidth?: Property.BorderBlockEndWidth<TLength> | undefined;
647
693
  /**
648
- * ✅ Baseline: Widely available (since Mar 2024)
694
+ * ✅ Baseline: Widely available (since Jul 2022)
649
695
  *
650
696
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start
651
697
  */
652
698
  borderBlockStart?: Property.BorderBlockStart<TLength> | undefined;
653
699
  /**
654
- * ✅ Baseline: Widely available (since Mar 2024)
700
+ * ✅ Baseline: Widely available (since Jul 2022)
655
701
  *
656
702
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color
657
703
  */
658
704
  borderBlockStartColor?: Property.BorderBlockStartColor | undefined;
659
705
  /**
660
- * ✅ Baseline: Widely available (since Mar 2024)
706
+ * ✅ Baseline: Widely available (since Jul 2022)
661
707
  *
662
708
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-style
663
709
  */
664
710
  borderBlockStartStyle?: Property.BorderBlockStartStyle | undefined;
665
711
  /**
666
- * ✅ Baseline: Widely available (since Mar 2024)
712
+ * ✅ Baseline: Widely available (since Jul 2022)
667
713
  *
668
714
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width
669
715
  */
670
716
  borderBlockStartWidth?: Property.BorderBlockStartWidth<TLength> | undefined;
671
717
  /**
672
- * ✅ Baseline: Widely available (since Mar 2024)
718
+ * ✅ Baseline: Widely available (since Oct 2023)
673
719
  *
674
720
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
675
721
  */
676
722
  borderBlockStyle?: Property.BorderBlockStyle | undefined;
677
723
  /**
678
- * ✅ Baseline: Widely available (since Mar 2024)
724
+ * ✅ Baseline: Widely available (since Oct 2023)
679
725
  *
680
726
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
681
727
  */
@@ -741,109 +787,109 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
741
787
  */
742
788
  borderEndStartRadius?: Property.BorderEndStartRadius<TLength> | undefined;
743
789
  /**
744
- * ✅ Baseline: Widely available (since Aug 2019)
790
+ * ✅ Baseline: Widely available (since Jan 2018)
745
791
  *
746
792
  * @see https://developer.mozilla.org/docs/Web/CSS/border-image
747
793
  */
748
794
  borderImage?: Property.BorderImage<TLength> | undefined;
749
795
  /**
750
- * ✅ Baseline: Widely available (since Aug 2019)
796
+ * ✅ Baseline: Widely available (since Jan 2018)
751
797
  *
752
798
  * @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset
753
799
  */
754
800
  borderImageOutset?: Property.BorderImageOutset<TLength> | undefined;
755
801
  /**
756
- * ✅ Baseline: Widely available (since Aug 2019)
802
+ * ✅ Baseline: Widely available (since Sep 2018)
757
803
  *
758
804
  * @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat
759
805
  */
760
806
  borderImageRepeat?: Property.BorderImageRepeat | undefined;
761
807
  /**
762
- * ✅ Baseline: Widely available (since Aug 2019)
808
+ * ✅ Baseline: Widely available (since Jan 2018)
763
809
  *
764
810
  * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice
765
811
  */
766
812
  borderImageSlice?: Property.BorderImageSlice | undefined;
767
813
  /**
768
- * ✅ Baseline: Widely available (since Aug 2019)
814
+ * ✅ Baseline: Widely available (since Jan 2018)
769
815
  *
770
816
  * @see https://developer.mozilla.org/docs/Web/CSS/border-image-source
771
817
  */
772
818
  borderImageSource?: Property.BorderImageSource | undefined;
773
819
  /**
774
- * ✅ Baseline: Widely available (since Aug 2019)
820
+ * ✅ Baseline: Widely available (since Jan 2018)
775
821
  *
776
822
  * @see https://developer.mozilla.org/docs/Web/CSS/border-image-width
777
823
  */
778
824
  borderImageWidth?: Property.BorderImageWidth<TLength> | undefined;
779
825
  /**
780
- * ✅ Baseline: Widely available (since Mar 2024)
826
+ * ✅ Baseline: Widely available (since Oct 2023)
781
827
  *
782
828
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline
783
829
  */
784
830
  borderInline?: Property.BorderInline<TLength> | undefined;
785
831
  /**
786
- * ✅ Baseline: Widely available (since Mar 2024)
832
+ * ✅ Baseline: Widely available (since Oct 2023)
787
833
  *
788
834
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
789
835
  */
790
836
  borderInlineColor?: Property.BorderInlineColor | undefined;
791
837
  /**
792
- * ✅ Baseline: Widely available (since Mar 2024)
838
+ * ✅ Baseline: Widely available (since Jul 2022)
793
839
  *
794
840
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
795
841
  */
796
842
  borderInlineEnd?: Property.BorderInlineEnd<TLength> | undefined;
797
843
  /**
798
- * ✅ Baseline: Widely available (since Mar 2024)
844
+ * ✅ Baseline: Widely available (since Jul 2022)
799
845
  *
800
846
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color
801
847
  */
802
848
  borderInlineEndColor?: Property.BorderInlineEndColor | undefined;
803
849
  /**
804
- * ✅ Baseline: Widely available (since Mar 2024)
850
+ * ✅ Baseline: Widely available (since Jul 2022)
805
851
  *
806
852
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style
807
853
  */
808
854
  borderInlineEndStyle?: Property.BorderInlineEndStyle | undefined;
809
855
  /**
810
- * ✅ Baseline: Widely available (since Mar 2024)
856
+ * ✅ Baseline: Widely available (since Jul 2022)
811
857
  *
812
858
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width
813
859
  */
814
860
  borderInlineEndWidth?: Property.BorderInlineEndWidth<TLength> | undefined;
815
861
  /**
816
- * ✅ Baseline: Widely available (since Mar 2024)
862
+ * ✅ Baseline: Widely available (since Jul 2022)
817
863
  *
818
864
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start
819
865
  */
820
866
  borderInlineStart?: Property.BorderInlineStart<TLength> | undefined;
821
867
  /**
822
- * ✅ Baseline: Widely available (since Mar 2024)
868
+ * ✅ Baseline: Widely available (since Jul 2022)
823
869
  *
824
870
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color
825
871
  */
826
872
  borderInlineStartColor?: Property.BorderInlineStartColor | undefined;
827
873
  /**
828
- * ✅ Baseline: Widely available (since Mar 2024)
874
+ * ✅ Baseline: Widely available (since Jul 2022)
829
875
  *
830
876
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style
831
877
  */
832
878
  borderInlineStartStyle?: Property.BorderInlineStartStyle | undefined;
833
879
  /**
834
- * ✅ Baseline: Widely available (since Mar 2024)
880
+ * ✅ Baseline: Widely available (since Jul 2022)
835
881
  *
836
882
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width
837
883
  */
838
884
  borderInlineStartWidth?: Property.BorderInlineStartWidth<TLength> | undefined;
839
885
  /**
840
- * ✅ Baseline: Widely available (since Mar 2024)
886
+ * ✅ Baseline: Widely available (since Oct 2023)
841
887
  *
842
888
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
843
889
  */
844
890
  borderInlineStyle?: Property.BorderInlineStyle | undefined;
845
891
  /**
846
- * ✅ Baseline: Widely available (since Mar 2024)
892
+ * ✅ Baseline: Widely available (since Oct 2023)
847
893
  *
848
894
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
849
895
  */
@@ -1109,7 +1155,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1109
1155
  */
1110
1156
  clip?: Property.Clip | undefined;
1111
1157
  /**
1112
- * ✅ Baseline: Widely available (since Jul 2023)
1158
+ * ✅ Baseline: Widely available (since Jul 2022)
1113
1159
  *
1114
1160
  * @see https://developer.mozilla.org/docs/Web/CSS/clip-path
1115
1161
  */
@@ -1131,7 +1177,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1131
1177
  */
1132
1178
  colorInterpolation?: Property.ColorInterpolation | undefined;
1133
1179
  /**
1134
- * ✅ Baseline: Widely available (since Jan 2018)
1180
+ * ✅ Baseline: Widely available (since Jul 2022)
1135
1181
  *
1136
1182
  * @see https://developer.mozilla.org/docs/Web/CSS/color-interpolation-filters
1137
1183
  */
@@ -1142,7 +1188,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1142
1188
  */
1143
1189
  colorRendering?: Property.ColorRendering | undefined;
1144
1190
  /**
1145
- * ✅ Baseline: Widely available (since Aug 2024)
1191
+ * ✅ Baseline: Widely available (since Jul 2024)
1146
1192
  *
1147
1193
  * @see https://developer.mozilla.org/docs/Web/CSS/color-scheme
1148
1194
  */
@@ -1160,7 +1206,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1160
1206
  */
1161
1207
  columnFill?: Property.ColumnFill | undefined;
1162
1208
  /**
1163
- * ✅ Baseline: Widely available (since Sep 2019)
1209
+ * ✅ Baseline: Widely available (since Jan 2018)
1164
1210
  *
1165
1211
  * @see https://developer.mozilla.org/docs/Web/CSS/column-gap
1166
1212
  */
@@ -1209,7 +1255,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1209
1255
  */
1210
1256
  columnSpan?: Property.ColumnSpan | undefined;
1211
1257
  /**
1212
- * ✅ Baseline: Widely available (since Sep 2019)
1258
+ * ✅ Baseline: Widely available (since May 2019)
1213
1259
  *
1214
1260
  * @see https://developer.mozilla.org/docs/Web/CSS/column-width
1215
1261
  */
@@ -1282,7 +1328,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1282
1328
  */
1283
1329
  content?: Property.Content | undefined;
1284
1330
  /**
1285
- * ⚠️ Baseline: Newly available (since Sep 2025)
1331
+ * ⚠️ Baseline: Newly available (since Sep 2024)
1286
1332
  *
1287
1333
  * @see https://developer.mozilla.org/docs/Web/CSS/content-visibility
1288
1334
  */
@@ -1442,31 +1488,31 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1442
1488
  */
1443
1489
  counterSet?: Property.CounterSet | undefined;
1444
1490
  /**
1445
- * Baseline: Not widely available
1491
+ * Baseline: Widely available (since Jun 2024)
1446
1492
  *
1447
1493
  * @see https://developer.mozilla.org/docs/Web/CSS/cursor
1448
1494
  */
1449
1495
  cursor?: Property.Cursor | undefined;
1450
1496
  /**
1451
- * ✅ Baseline: Widely available (since Jul 2022)
1497
+ * ✅ Baseline: Widely available (since Jan 2023)
1452
1498
  *
1453
1499
  * @see https://developer.mozilla.org/docs/Web/CSS/cx
1454
1500
  */
1455
1501
  cx?: Property.Cx<TLength> | undefined;
1456
1502
  /**
1457
- * ✅ Baseline: Widely available (since Jul 2022)
1503
+ * ✅ Baseline: Widely available (since Jan 2023)
1458
1504
  *
1459
1505
  * @see https://developer.mozilla.org/docs/Web/CSS/cy
1460
1506
  */
1461
1507
  cy?: Property.Cy<TLength> | undefined;
1462
1508
  /**
1463
- * Baseline: Widely available (since Jul 2022)
1509
+ * Baseline: Not widely available
1464
1510
  *
1465
1511
  * @see https://developer.mozilla.org/docs/Web/CSS/d
1466
1512
  */
1467
1513
  d?: Property.D | undefined;
1468
1514
  /**
1469
- * ✅ Baseline: Widely available (since Jul 2022)
1515
+ * ✅ Baseline: Widely available (since Jan 2018)
1470
1516
  *
1471
1517
  * @see https://developer.mozilla.org/docs/Web/CSS/direction
1472
1518
  */
@@ -1501,19 +1547,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1501
1547
  */
1502
1548
  fieldSizing?: Property.FieldSizing | undefined;
1503
1549
  /**
1504
- * ✅ Baseline: Widely available (since Jul 2022)
1550
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
1505
1551
  *
1506
1552
  * @see https://developer.mozilla.org/docs/Web/CSS/fill
1507
1553
  */
1508
1554
  fill?: Property.Fill | undefined;
1509
1555
  /**
1510
- * ✅ Baseline: Widely available (since ≤2022-09-24)
1556
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
1511
1557
  *
1512
1558
  * @see https://developer.mozilla.org/docs/Web/CSS/fill-opacity
1513
1559
  */
1514
1560
  fillOpacity?: Property.FillOpacity | undefined;
1515
1561
  /**
1516
- * ✅ Baseline: Widely available (since Jul 2022)
1562
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
1517
1563
  *
1518
1564
  * @see https://developer.mozilla.org/docs/Web/CSS/fill-rule
1519
1565
  */
@@ -1644,7 +1690,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1644
1690
  */
1645
1691
  fontSmooth?: Property.FontSmooth<TLength> | undefined;
1646
1692
  /**
1647
- * ✅ Baseline: Widely available (since Jul 2022)
1693
+ * ✅ Baseline: Widely available (since Mar 2020)
1648
1694
  *
1649
1695
  * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch
1650
1696
  */
@@ -1730,7 +1776,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1730
1776
  */
1731
1777
  fontVariantNumeric?: Property.FontVariantNumeric | undefined;
1732
1778
  /**
1733
- * Baseline: Not widely available
1779
+ * ⚠️ Baseline: Newly available (since Sep 2023)
1734
1780
  *
1735
1781
  * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
1736
1782
  */
@@ -1754,7 +1800,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1754
1800
  */
1755
1801
  fontWidth?: Property.FontWidth | undefined;
1756
1802
  /**
1757
- * Baseline: Widely available (since Mar 2025)
1803
+ * Baseline: Not widely available
1758
1804
  *
1759
1805
  * @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust
1760
1806
  */
@@ -1784,7 +1830,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1784
1830
  */
1785
1831
  gridArea?: Property.GridArea | undefined;
1786
1832
  /**
1787
- * ✅ Baseline: Widely available (since Apr 2020)
1833
+ * ✅ Baseline: Widely available (since Jan 2023)
1788
1834
  *
1789
1835
  * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns
1790
1836
  */
@@ -1796,7 +1842,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1796
1842
  */
1797
1843
  gridAutoFlow?: Property.GridAutoFlow | undefined;
1798
1844
  /**
1799
- * ✅ Baseline: Widely available (since Apr 2020)
1845
+ * ✅ Baseline: Widely available (since Jan 2023)
1800
1846
  *
1801
1847
  * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows
1802
1848
  */
@@ -1913,7 +1959,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1913
1959
  */
1914
1960
  imageOrientation?: Property.ImageOrientation | undefined;
1915
1961
  /**
1916
- * ✅ Baseline: Widely available (since Apr 2024)
1962
+ * ✅ Baseline: Widely available (since Jul 2022)
1917
1963
  *
1918
1964
  * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering
1919
1965
  */
@@ -1939,49 +1985,49 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
1939
1985
  */
1940
1986
  initialLetterAlign?: Property.InitialLetterAlign | undefined;
1941
1987
  /**
1942
- * ✅ Baseline: Widely available (since Mar 2024)
1988
+ * ✅ Baseline: Widely available (since Jul 2022)
1943
1989
  *
1944
1990
  * @see https://developer.mozilla.org/docs/Web/CSS/inline-size
1945
1991
  */
1946
1992
  inlineSize?: Property.InlineSize<TLength> | undefined;
1947
1993
  /**
1948
- * ✅ Baseline: Widely available (since Mar 2024)
1994
+ * ✅ Baseline: Widely available (since Oct 2023)
1949
1995
  *
1950
1996
  * @see https://developer.mozilla.org/docs/Web/CSS/inset
1951
1997
  */
1952
1998
  inset?: Property.Inset<TLength> | undefined;
1953
1999
  /**
1954
- * ✅ Baseline: Widely available (since Mar 2024)
2000
+ * ✅ Baseline: Widely available (since Oct 2023)
1955
2001
  *
1956
2002
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-block
1957
2003
  */
1958
2004
  insetBlock?: Property.InsetBlock<TLength> | undefined;
1959
2005
  /**
1960
- * ✅ Baseline: Widely available (since Mar 2024)
2006
+ * ✅ Baseline: Widely available (since Oct 2023)
1961
2007
  *
1962
2008
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
1963
2009
  */
1964
2010
  insetBlockEnd?: Property.InsetBlockEnd<TLength> | undefined;
1965
2011
  /**
1966
- * ✅ Baseline: Widely available (since Mar 2024)
2012
+ * ✅ Baseline: Widely available (since Oct 2023)
1967
2013
  *
1968
2014
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
1969
2015
  */
1970
2016
  insetBlockStart?: Property.InsetBlockStart<TLength> | undefined;
1971
2017
  /**
1972
- * ✅ Baseline: Widely available (since Mar 2024)
2018
+ * ✅ Baseline: Widely available (since Oct 2023)
1973
2019
  *
1974
2020
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
1975
2021
  */
1976
2022
  insetInline?: Property.InsetInline<TLength> | undefined;
1977
2023
  /**
1978
- * ✅ Baseline: Widely available (since Mar 2024)
2024
+ * ✅ Baseline: Widely available (since Oct 2023)
1979
2025
  *
1980
2026
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
1981
2027
  */
1982
2028
  insetInlineEnd?: Property.InsetInlineEnd<TLength> | undefined;
1983
2029
  /**
1984
- * ✅ Baseline: Widely available (since Mar 2024)
2030
+ * ✅ Baseline: Widely available (since Oct 2023)
1985
2031
  *
1986
2032
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
1987
2033
  */
@@ -2036,7 +2082,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2036
2082
  */
2037
2083
  justifyContent?: Property.JustifyContent | undefined;
2038
2084
  /**
2039
- * ✅ Baseline: Widely available (since Mar 2018)
2085
+ * ✅ Baseline: Widely available (since Jan 2019)
2040
2086
  *
2041
2087
  * @see https://developer.mozilla.org/docs/Web/CSS/justify-items
2042
2088
  */
@@ -2122,19 +2168,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2122
2168
  */
2123
2169
  margin?: Property.Margin<TLength> | undefined;
2124
2170
  /**
2125
- * ✅ Baseline: Widely available (since Mar 2024)
2171
+ * ✅ Baseline: Widely available (since Oct 2023)
2126
2172
  *
2127
2173
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block
2128
2174
  */
2129
2175
  marginBlock?: Property.MarginBlock<TLength> | undefined;
2130
2176
  /**
2131
- * ✅ Baseline: Widely available (since Mar 2024)
2177
+ * ✅ Baseline: Widely available (since Jul 2022)
2132
2178
  *
2133
2179
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
2134
2180
  */
2135
2181
  marginBlockEnd?: Property.MarginBlockEnd<TLength> | undefined;
2136
2182
  /**
2137
- * ✅ Baseline: Widely available (since Mar 2024)
2183
+ * ✅ Baseline: Widely available (since Jul 2022)
2138
2184
  *
2139
2185
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
2140
2186
  */
@@ -2146,19 +2192,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2146
2192
  */
2147
2193
  marginBottom?: Property.MarginBottom<TLength> | undefined;
2148
2194
  /**
2149
- * ✅ Baseline: Widely available (since Mar 2024)
2195
+ * ✅ Baseline: Widely available (since Oct 2023)
2150
2196
  *
2151
2197
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
2152
2198
  */
2153
2199
  marginInline?: Property.MarginInline<TLength> | undefined;
2154
2200
  /**
2155
- * ✅ Baseline: Widely available (since Mar 2024)
2201
+ * ✅ Baseline: Widely available (since Jul 2022)
2156
2202
  *
2157
2203
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
2158
2204
  */
2159
2205
  marginInlineEnd?: Property.MarginInlineEnd<TLength> | undefined;
2160
2206
  /**
2161
- * ✅ Baseline: Widely available (since Mar 2024)
2207
+ * ✅ Baseline: Widely available (since Jul 2022)
2162
2208
  *
2163
2209
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
2164
2210
  */
@@ -2190,25 +2236,25 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2190
2236
  */
2191
2237
  marginTrim?: Property.MarginTrim | undefined;
2192
2238
  /**
2193
- * ✅ Baseline: Widely available (since Jul 2022)
2239
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
2194
2240
  *
2195
2241
  * @see https://developer.mozilla.org/docs/Web/CSS/marker
2196
2242
  */
2197
2243
  marker?: Property.Marker | undefined;
2198
2244
  /**
2199
- * ✅ Baseline: Widely available (since Jul 2022)
2245
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
2200
2246
  *
2201
2247
  * @see https://developer.mozilla.org/docs/Web/CSS/marker-end
2202
2248
  */
2203
2249
  markerEnd?: Property.MarkerEnd | undefined;
2204
2250
  /**
2205
- * ✅ Baseline: Widely available (since Jul 2022)
2251
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
2206
2252
  *
2207
2253
  * @see https://developer.mozilla.org/docs/Web/CSS/marker-mid
2208
2254
  */
2209
2255
  markerMid?: Property.MarkerMid | undefined;
2210
2256
  /**
2211
- * ✅ Baseline: Widely available (since Jul 2022)
2257
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
2212
2258
  *
2213
2259
  * @see https://developer.mozilla.org/docs/Web/CSS/marker-start
2214
2260
  */
@@ -2320,25 +2366,25 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2320
2366
  */
2321
2367
  masonryAutoFlow?: Property.MasonryAutoFlow | undefined;
2322
2368
  /**
2323
- * Baseline: Widely available (since Jul 2025)
2369
+ * Baseline: Not widely available
2324
2370
  *
2325
2371
  * @see https://developer.mozilla.org/docs/Web/CSS/math-depth
2326
2372
  */
2327
2373
  mathDepth?: Property.MathDepth | undefined;
2328
2374
  /**
2329
- * Baseline: Widely available (since Jul 2025)
2375
+ * ⚠️ Baseline: Newly available (since Dec 2025)
2330
2376
  *
2331
2377
  * @see https://developer.mozilla.org/docs/Web/CSS/math-shift
2332
2378
  */
2333
2379
  mathShift?: Property.MathShift | undefined;
2334
2380
  /**
2335
- * Baseline: Widely available (since Jul 2025)
2381
+ * ⚠️ Baseline: Newly available (since Aug 2023)
2336
2382
  *
2337
2383
  * @see https://developer.mozilla.org/docs/Web/CSS/math-style
2338
2384
  */
2339
2385
  mathStyle?: Property.MathStyle | undefined;
2340
2386
  /**
2341
- * ✅ Baseline: Widely available (since Mar 2024)
2387
+ * ✅ Baseline: Widely available (since Jul 2022)
2342
2388
  *
2343
2389
  * @see https://developer.mozilla.org/docs/Web/CSS/max-block-size
2344
2390
  */
@@ -2350,7 +2396,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2350
2396
  */
2351
2397
  maxHeight?: Property.MaxHeight<TLength> | undefined;
2352
2398
  /**
2353
- * ✅ Baseline: Widely available (since Mar 2024)
2399
+ * ✅ Baseline: Widely available (since Jul 2022)
2354
2400
  *
2355
2401
  * @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size
2356
2402
  */
@@ -2365,7 +2411,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2365
2411
  */
2366
2412
  maxWidth?: Property.MaxWidth<TLength> | undefined;
2367
2413
  /**
2368
- * ✅ Baseline: Widely available (since Mar 2024)
2414
+ * ✅ Baseline: Widely available (since Jul 2022)
2369
2415
  *
2370
2416
  * @see https://developer.mozilla.org/docs/Web/CSS/min-block-size
2371
2417
  */
@@ -2377,7 +2423,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2377
2423
  */
2378
2424
  minHeight?: Property.MinHeight<TLength> | undefined;
2379
2425
  /**
2380
- * ✅ Baseline: Widely available (since Mar 2024)
2426
+ * ✅ Baseline: Widely available (since Jul 2022)
2381
2427
  *
2382
2428
  * @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size
2383
2429
  */
@@ -2651,7 +2697,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2651
2697
  */
2652
2698
  offset?: Property.Offset<TLength> | undefined;
2653
2699
  /**
2654
- * Baseline: Widely available (since Mar 2025)
2700
+ * ⚠️ Baseline: Newly available (since Aug 2023)
2655
2701
  *
2656
2702
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-anchor
2657
2703
  */
@@ -2663,13 +2709,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2663
2709
  */
2664
2710
  offsetDistance?: Property.OffsetDistance<TLength> | undefined;
2665
2711
  /**
2666
- * ✅ Baseline: Widely available (since Mar 2025)
2712
+ * ✅ Baseline: Widely available (since Sep 2024)
2667
2713
  *
2668
2714
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-path
2669
2715
  */
2670
2716
  offsetPath?: Property.OffsetPath | undefined;
2671
2717
  /**
2672
- * Baseline: Widely available (since Mar 2025)
2718
+ * ⚠️ Baseline: Newly available (since Jan 2024)
2673
2719
  *
2674
2720
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-position
2675
2721
  */
@@ -2705,7 +2751,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2705
2751
  */
2706
2752
  outline?: Property.Outline<TLength> | undefined;
2707
2753
  /**
2708
- * ✅ Baseline: Widely available (since Oct 2019)
2754
+ * ✅ Baseline: Widely available (since Jan 2018)
2709
2755
  *
2710
2756
  * @see https://developer.mozilla.org/docs/Web/CSS/outline-color
2711
2757
  */
@@ -2717,19 +2763,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2717
2763
  */
2718
2764
  outlineOffset?: Property.OutlineOffset<TLength> | undefined;
2719
2765
  /**
2720
- * ✅ Baseline: Widely available (since Oct 2019)
2766
+ * ✅ Baseline: Widely available (since Jan 2018)
2721
2767
  *
2722
2768
  * @see https://developer.mozilla.org/docs/Web/CSS/outline-style
2723
2769
  */
2724
2770
  outlineStyle?: Property.OutlineStyle | undefined;
2725
2771
  /**
2726
- * ✅ Baseline: Widely available (since Oct 2019)
2772
+ * ✅ Baseline: Widely available (since Jan 2018)
2727
2773
  *
2728
2774
  * @see https://developer.mozilla.org/docs/Web/CSS/outline-width
2729
2775
  */
2730
2776
  outlineWidth?: Property.OutlineWidth<TLength> | undefined;
2731
2777
  /**
2732
- * ✅ Baseline: Widely available (since Sep 2022)
2778
+ * ✅ Baseline: Widely available (since Jan 2018)
2733
2779
  *
2734
2780
  * @see https://developer.mozilla.org/docs/Web/CSS/overflow
2735
2781
  */
@@ -2741,7 +2787,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2741
2787
  */
2742
2788
  overflowAnchor?: Property.OverflowAnchor | undefined;
2743
2789
  /**
2744
- * Baseline: Widely available (since Mar 2024)
2790
+ * ⚠️ Baseline: Newly available (since Sep 2025)
2745
2791
  *
2746
2792
  * @see https://developer.mozilla.org/docs/Web/CSS/overflow-block
2747
2793
  */
@@ -2756,7 +2802,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2756
2802
  */
2757
2803
  overflowClipMargin?: Property.OverflowClipMargin<TLength> | undefined;
2758
2804
  /**
2759
- * Baseline: Widely available (since Mar 2024)
2805
+ * ⚠️ Baseline: Newly available (since Sep 2025)
2760
2806
  *
2761
2807
  * @see https://developer.mozilla.org/docs/Web/CSS/overflow-inline
2762
2808
  */
@@ -2768,13 +2814,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2768
2814
  */
2769
2815
  overflowWrap?: Property.OverflowWrap | undefined;
2770
2816
  /**
2771
- * ✅ Baseline: Widely available (since Sep 2022)
2817
+ * ✅ Baseline: Widely available (since Jan 2018)
2772
2818
  *
2773
2819
  * @see https://developer.mozilla.org/docs/Web/CSS/overflow-x
2774
2820
  */
2775
2821
  overflowX?: Property.OverflowX | undefined;
2776
2822
  /**
2777
- * ✅ Baseline: Widely available (since Sep 2022)
2823
+ * ✅ Baseline: Widely available (since Jan 2018)
2778
2824
  *
2779
2825
  * @see https://developer.mozilla.org/docs/Web/CSS/overflow-y
2780
2826
  */
@@ -2824,19 +2870,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2824
2870
  */
2825
2871
  padding?: Property.Padding<TLength> | undefined;
2826
2872
  /**
2827
- * ✅ Baseline: Widely available (since Mar 2024)
2873
+ * ✅ Baseline: Widely available (since Oct 2023)
2828
2874
  *
2829
2875
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block
2830
2876
  */
2831
2877
  paddingBlock?: Property.PaddingBlock<TLength> | undefined;
2832
2878
  /**
2833
- * ✅ Baseline: Widely available (since Mar 2024)
2879
+ * ✅ Baseline: Widely available (since Jul 2022)
2834
2880
  *
2835
2881
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
2836
2882
  */
2837
2883
  paddingBlockEnd?: Property.PaddingBlockEnd<TLength> | undefined;
2838
2884
  /**
2839
- * ✅ Baseline: Widely available (since Mar 2024)
2885
+ * ✅ Baseline: Widely available (since Jul 2022)
2840
2886
  *
2841
2887
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
2842
2888
  */
@@ -2848,19 +2894,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2848
2894
  */
2849
2895
  paddingBottom?: Property.PaddingBottom<TLength> | undefined;
2850
2896
  /**
2851
- * ✅ Baseline: Widely available (since Mar 2024)
2897
+ * ✅ Baseline: Widely available (since Oct 2023)
2852
2898
  *
2853
2899
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
2854
2900
  */
2855
2901
  paddingInline?: Property.PaddingInline<TLength> | undefined;
2856
2902
  /**
2857
- * ✅ Baseline: Widely available (since Mar 2024)
2903
+ * ✅ Baseline: Widely available (since Jul 2022)
2858
2904
  *
2859
2905
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
2860
2906
  */
2861
2907
  paddingInlineEnd?: Property.PaddingInlineEnd<TLength> | undefined;
2862
2908
  /**
2863
- * ✅ Baseline: Widely available (since Mar 2024)
2909
+ * ✅ Baseline: Widely available (since Jul 2022)
2864
2910
  *
2865
2911
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
2866
2912
  */
@@ -2884,7 +2930,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2884
2930
  */
2885
2931
  paddingTop?: Property.PaddingTop<TLength> | undefined;
2886
2932
  /**
2887
- * ⚠️ Baseline: Newly available (since Dec 2024)
2933
+ * Baseline: Widely available (since Aug 2025)
2888
2934
  *
2889
2935
  * @see https://developer.mozilla.org/docs/Web/CSS/page
2890
2936
  */
@@ -2920,31 +2966,31 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2920
2966
  */
2921
2967
  paintOrder?: Property.PaintOrder | undefined;
2922
2968
  /**
2923
- * ✅ Baseline: Widely available (since Sep 2024)
2969
+ * ✅ Baseline: Widely available (since Mar 2018)
2924
2970
  *
2925
2971
  * @see https://developer.mozilla.org/docs/Web/CSS/perspective
2926
2972
  */
2927
2973
  perspective?: Property.Perspective<TLength> | undefined;
2928
2974
  /**
2929
- * ✅ Baseline: Widely available (since Sep 2024)
2975
+ * ✅ Baseline: Widely available (since Mar 2018)
2930
2976
  *
2931
2977
  * @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin
2932
2978
  */
2933
2979
  perspectiveOrigin?: Property.PerspectiveOrigin<TLength> | undefined;
2934
2980
  /**
2935
- * ✅ Baseline: Widely available (since Mar 2018)
2981
+ * ✅ Baseline: Widely available (since Jul 2022)
2936
2982
  *
2937
2983
  * @see https://developer.mozilla.org/docs/Web/CSS/place-content
2938
2984
  */
2939
2985
  placeContent?: Property.PlaceContent | undefined;
2940
2986
  /**
2941
- * ✅ Baseline: Widely available (since Mar 2018)
2987
+ * ✅ Baseline: Widely available (since Jul 2022)
2942
2988
  *
2943
2989
  * @see https://developer.mozilla.org/docs/Web/CSS/place-items
2944
2990
  */
2945
2991
  placeItems?: Property.PlaceItems | undefined;
2946
2992
  /**
2947
- * ✅ Baseline: Widely available (since Mar 2018)
2993
+ * ✅ Baseline: Widely available (since Jul 2022)
2948
2994
  *
2949
2995
  * @see https://developer.mozilla.org/docs/Web/CSS/place-self
2950
2996
  */
@@ -2962,25 +3008,25 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2962
3008
  */
2963
3009
  position?: Property.Position | undefined;
2964
3010
  /**
2965
- * Baseline: Not widely available
3011
+ * ⚠️ Baseline: Newly available (since Jan 2026)
2966
3012
  *
2967
3013
  * @see https://developer.mozilla.org/docs/Web/CSS/position-anchor
2968
3014
  */
2969
3015
  positionAnchor?: Property.PositionAnchor | undefined;
2970
3016
  /**
2971
- * Baseline: Not widely available
3017
+ * ⚠️ Baseline: Newly available (since Jan 2026)
2972
3018
  *
2973
3019
  * @see https://developer.mozilla.org/docs/Web/CSS/position-area
2974
3020
  */
2975
3021
  positionArea?: Property.PositionArea | undefined;
2976
3022
  /**
2977
- * Baseline: Not widely available
3023
+ * ⚠️ Baseline: Newly available (since Jan 2026)
2978
3024
  *
2979
3025
  * @see https://developer.mozilla.org/docs/Web/CSS/position-try
2980
3026
  */
2981
3027
  positionTry?: Property.PositionTry | undefined;
2982
3028
  /**
2983
- * Baseline: Not widely available
3029
+ * ⚠️ Baseline: Newly available (since Jan 2026)
2984
3030
  *
2985
3031
  * @see https://developer.mozilla.org/docs/Web/CSS/position-try-fallbacks
2986
3032
  */
@@ -2992,7 +3038,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
2992
3038
  */
2993
3039
  positionTryOrder?: Property.PositionTryOrder | undefined;
2994
3040
  /**
2995
- * Baseline: Not widely available
3041
+ * ⚠️ Baseline: Newly available (since Jan 2026)
2996
3042
  *
2997
3043
  * @see https://developer.mozilla.org/docs/Web/CSS/position-visibility
2998
3044
  */
@@ -3004,13 +3050,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3004
3050
  */
3005
3051
  printColorAdjust?: Property.PrintColorAdjust | undefined;
3006
3052
  /**
3007
- * ✅ Baseline: Widely available (since Oct 2023)
3053
+ * ✅ Baseline: Widely available (since Mar 2018)
3008
3054
  *
3009
3055
  * @see https://developer.mozilla.org/docs/Web/CSS/quotes
3010
3056
  */
3011
3057
  quotes?: Property.Quotes | undefined;
3012
3058
  /**
3013
- * ✅ Baseline: Widely available (since Jul 2022)
3059
+ * ✅ Baseline: Widely available (since Jan 2023)
3014
3060
  *
3015
3061
  * @see https://developer.mozilla.org/docs/Web/CSS/r
3016
3062
  */
@@ -3075,13 +3121,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3075
3121
  */
3076
3122
  rubyPosition?: Property.RubyPosition | undefined;
3077
3123
  /**
3078
- * Baseline: Widely available (since Jul 2022)
3124
+ * ⚠️ Baseline: Newly available (since Mar 2024)
3079
3125
  *
3080
3126
  * @see https://developer.mozilla.org/docs/Web/CSS/rx
3081
3127
  */
3082
3128
  rx?: Property.Rx<TLength> | undefined;
3083
3129
  /**
3084
- * Baseline: Widely available (since Jul 2022)
3130
+ * ⚠️ Baseline: Newly available (since Mar 2024)
3085
3131
  *
3086
3132
  * @see https://developer.mozilla.org/docs/Web/CSS/ry
3087
3133
  */
@@ -3123,67 +3169,67 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3123
3169
  */
3124
3170
  scrollInitialTarget?: Property.ScrollInitialTarget | undefined;
3125
3171
  /**
3126
- * ✅ Baseline: Widely available (since Jul 2022)
3172
+ * ✅ Baseline: Widely available (since Jan 2024)
3127
3173
  *
3128
3174
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
3129
3175
  */
3130
3176
  scrollMargin?: Property.ScrollMargin<TLength> | undefined;
3131
3177
  /**
3132
- * ✅ Baseline: Widely available (since Jul 2022)
3178
+ * ✅ Baseline: Widely available (since Mar 2024)
3133
3179
  *
3134
3180
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
3135
3181
  */
3136
3182
  scrollMarginBlock?: Property.ScrollMarginBlock<TLength> | undefined;
3137
3183
  /**
3138
- * ✅ Baseline: Widely available (since Jul 2022)
3184
+ * ✅ Baseline: Widely available (since Mar 2024)
3139
3185
  *
3140
3186
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
3141
3187
  */
3142
3188
  scrollMarginBlockEnd?: Property.ScrollMarginBlockEnd<TLength> | undefined;
3143
3189
  /**
3144
- * ✅ Baseline: Widely available (since Jul 2022)
3190
+ * ✅ Baseline: Widely available (since Mar 2024)
3145
3191
  *
3146
3192
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
3147
3193
  */
3148
3194
  scrollMarginBlockStart?: Property.ScrollMarginBlockStart<TLength> | undefined;
3149
3195
  /**
3150
- * ✅ Baseline: Widely available (since Jul 2022)
3196
+ * ✅ Baseline: Widely available (since Oct 2023)
3151
3197
  *
3152
3198
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
3153
3199
  */
3154
3200
  scrollMarginBottom?: Property.ScrollMarginBottom<TLength> | undefined;
3155
3201
  /**
3156
- * ✅ Baseline: Widely available (since Jul 2022)
3202
+ * ✅ Baseline: Widely available (since Mar 2024)
3157
3203
  *
3158
3204
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
3159
3205
  */
3160
3206
  scrollMarginInline?: Property.ScrollMarginInline<TLength> | undefined;
3161
3207
  /**
3162
- * ✅ Baseline: Widely available (since Jul 2022)
3208
+ * ✅ Baseline: Widely available (since Mar 2024)
3163
3209
  *
3164
3210
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
3165
3211
  */
3166
3212
  scrollMarginInlineEnd?: Property.ScrollMarginInlineEnd<TLength> | undefined;
3167
3213
  /**
3168
- * ✅ Baseline: Widely available (since Jul 2022)
3214
+ * ✅ Baseline: Widely available (since Mar 2024)
3169
3215
  *
3170
3216
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
3171
3217
  */
3172
3218
  scrollMarginInlineStart?: Property.ScrollMarginInlineStart<TLength> | undefined;
3173
3219
  /**
3174
- * ✅ Baseline: Widely available (since Jul 2022)
3220
+ * ✅ Baseline: Widely available (since Oct 2023)
3175
3221
  *
3176
3222
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
3177
3223
  */
3178
3224
  scrollMarginLeft?: Property.ScrollMarginLeft<TLength> | undefined;
3179
3225
  /**
3180
- * ✅ Baseline: Widely available (since Jul 2022)
3226
+ * ✅ Baseline: Widely available (since Oct 2023)
3181
3227
  *
3182
3228
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
3183
3229
  */
3184
3230
  scrollMarginRight?: Property.ScrollMarginRight<TLength> | undefined;
3185
3231
  /**
3186
- * ✅ Baseline: Widely available (since Jul 2022)
3232
+ * ✅ Baseline: Widely available (since Oct 2023)
3187
3233
  *
3188
3234
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
3189
3235
  */
@@ -3197,67 +3243,67 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3197
3243
  */
3198
3244
  scrollMarkerGroup?: Property.ScrollMarkerGroup | undefined;
3199
3245
  /**
3200
- * ✅ Baseline: Widely available (since Jul 2022)
3246
+ * ✅ Baseline: Widely available (since Oct 2023)
3201
3247
  *
3202
3248
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding
3203
3249
  */
3204
3250
  scrollPadding?: Property.ScrollPadding<TLength> | undefined;
3205
3251
  /**
3206
- * ✅ Baseline: Widely available (since Jul 2022)
3252
+ * ✅ Baseline: Widely available (since Mar 2024)
3207
3253
  *
3208
3254
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
3209
3255
  */
3210
3256
  scrollPaddingBlock?: Property.ScrollPaddingBlock<TLength> | undefined;
3211
3257
  /**
3212
- * ✅ Baseline: Widely available (since Jul 2022)
3258
+ * ✅ Baseline: Widely available (since Mar 2024)
3213
3259
  *
3214
3260
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
3215
3261
  */
3216
3262
  scrollPaddingBlockEnd?: Property.ScrollPaddingBlockEnd<TLength> | undefined;
3217
3263
  /**
3218
- * ✅ Baseline: Widely available (since Jul 2022)
3264
+ * ✅ Baseline: Widely available (since Mar 2024)
3219
3265
  *
3220
3266
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
3221
3267
  */
3222
3268
  scrollPaddingBlockStart?: Property.ScrollPaddingBlockStart<TLength> | undefined;
3223
3269
  /**
3224
- * ✅ Baseline: Widely available (since Jul 2022)
3270
+ * ✅ Baseline: Widely available (since Oct 2023)
3225
3271
  *
3226
3272
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom
3227
3273
  */
3228
3274
  scrollPaddingBottom?: Property.ScrollPaddingBottom<TLength> | undefined;
3229
3275
  /**
3230
- * ✅ Baseline: Widely available (since Jul 2022)
3276
+ * ✅ Baseline: Widely available (since Mar 2024)
3231
3277
  *
3232
3278
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
3233
3279
  */
3234
3280
  scrollPaddingInline?: Property.ScrollPaddingInline<TLength> | undefined;
3235
3281
  /**
3236
- * ✅ Baseline: Widely available (since Jul 2022)
3282
+ * ✅ Baseline: Widely available (since Mar 2024)
3237
3283
  *
3238
3284
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
3239
3285
  */
3240
3286
  scrollPaddingInlineEnd?: Property.ScrollPaddingInlineEnd<TLength> | undefined;
3241
3287
  /**
3242
- * ✅ Baseline: Widely available (since Jul 2022)
3288
+ * ✅ Baseline: Widely available (since Mar 2024)
3243
3289
  *
3244
3290
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
3245
3291
  */
3246
3292
  scrollPaddingInlineStart?: Property.ScrollPaddingInlineStart<TLength> | undefined;
3247
3293
  /**
3248
- * ✅ Baseline: Widely available (since Jul 2022)
3294
+ * ✅ Baseline: Widely available (since Oct 2023)
3249
3295
  *
3250
3296
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left
3251
3297
  */
3252
3298
  scrollPaddingLeft?: Property.ScrollPaddingLeft<TLength> | undefined;
3253
3299
  /**
3254
- * ✅ Baseline: Widely available (since Jul 2022)
3300
+ * ✅ Baseline: Widely available (since Oct 2023)
3255
3301
  *
3256
3302
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right
3257
3303
  */
3258
3304
  scrollPaddingRight?: Property.ScrollPaddingRight<TLength> | undefined;
3259
3305
  /**
3260
- * ✅ Baseline: Widely available (since Jul 2022)
3306
+ * ✅ Baseline: Widely available (since Oct 2023)
3261
3307
  *
3262
3308
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top
3263
3309
  */
@@ -3281,13 +3327,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3281
3327
  */
3282
3328
  scrollSnapPointsY?: Property.ScrollSnapPointsY | undefined;
3283
3329
  /**
3284
- * ✅ Baseline: Widely available (since Jul 2022)
3330
+ * ✅ Baseline: Widely available (since Jan 2025)
3285
3331
  *
3286
3332
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop
3287
3333
  */
3288
3334
  scrollSnapStop?: Property.ScrollSnapStop | undefined;
3289
3335
  /**
3290
- * ✅ Baseline: Widely available (since Jul 2022)
3336
+ * ✅ Baseline: Widely available (since Oct 2024)
3291
3337
  *
3292
3338
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type
3293
3339
  */
@@ -3355,67 +3401,67 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3355
3401
  */
3356
3402
  speakAs?: Property.SpeakAs | undefined;
3357
3403
  /**
3358
- * ✅ Baseline: Widely available (since Jul 2022)
3404
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
3359
3405
  *
3360
3406
  * @see https://developer.mozilla.org/docs/Web/CSS/stop-color
3361
3407
  */
3362
3408
  stopColor?: Property.StopColor | undefined;
3363
3409
  /**
3364
- * ✅ Baseline: Widely available (since Jul 2022)
3410
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
3365
3411
  *
3366
3412
  * @see https://developer.mozilla.org/docs/Web/CSS/stop-opacity
3367
3413
  */
3368
3414
  stopOpacity?: Property.StopOpacity | undefined;
3369
3415
  /**
3370
- * ✅ Baseline: Widely available (since Jul 2022)
3416
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
3371
3417
  *
3372
3418
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke
3373
3419
  */
3374
3420
  stroke?: Property.Stroke | undefined;
3375
3421
  /**
3376
- * Baseline: Widely available (since Jul 2022)
3422
+ * Baseline: Not widely available
3377
3423
  *
3378
3424
  * @experimental
3379
3425
  */
3380
3426
  strokeColor?: Property.StrokeColor | undefined;
3381
3427
  /**
3382
- * ✅ Baseline: Widely available (since Jul 2022)
3428
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
3383
3429
  *
3384
3430
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-dasharray
3385
3431
  */
3386
3432
  strokeDasharray?: Property.StrokeDasharray<TLength> | undefined;
3387
3433
  /**
3388
- * ✅ Baseline: Widely available (since Jul 2022)
3434
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
3389
3435
  *
3390
3436
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-dashoffset
3391
3437
  */
3392
3438
  strokeDashoffset?: Property.StrokeDashoffset<TLength> | undefined;
3393
3439
  /**
3394
- * ✅ Baseline: Widely available (since Jul 2022)
3440
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
3395
3441
  *
3396
3442
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-linecap
3397
3443
  */
3398
3444
  strokeLinecap?: Property.StrokeLinecap | undefined;
3399
3445
  /**
3400
- * ✅ Baseline: Widely available (since Jul 2022)
3446
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
3401
3447
  *
3402
3448
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-linejoin
3403
3449
  */
3404
3450
  strokeLinejoin?: Property.StrokeLinejoin | undefined;
3405
3451
  /**
3406
- * ✅ Baseline: Widely available (since Jul 2022)
3452
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
3407
3453
  *
3408
3454
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-miterlimit
3409
3455
  */
3410
3456
  strokeMiterlimit?: Property.StrokeMiterlimit | undefined;
3411
3457
  /**
3412
- * ✅ Baseline: Widely available (since ≤2022-09-24)
3458
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
3413
3459
  *
3414
3460
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-opacity
3415
3461
  */
3416
3462
  strokeOpacity?: Property.StrokeOpacity | undefined;
3417
3463
  /**
3418
- * ✅ Baseline: Widely available (since Jul 2022)
3464
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
3419
3465
  *
3420
3466
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-width
3421
3467
  */
@@ -3445,13 +3491,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3445
3491
  */
3446
3492
  textAlignLast?: Property.TextAlignLast | undefined;
3447
3493
  /**
3448
- * ✅ Baseline: Widely available (since Jul 2022)
3494
+ * ✅ Baseline: Widely available (since ≤2019-02-02)
3449
3495
  *
3450
3496
  * @see https://developer.mozilla.org/docs/Web/CSS/text-anchor
3451
3497
  */
3452
3498
  textAnchor?: Property.TextAnchor | undefined;
3453
3499
  /**
3454
- * Baseline: Not widely available
3500
+ * ⚠️ Baseline: Newly available (since Nov 2025)
3455
3501
  *
3456
3502
  * @see https://developer.mozilla.org/docs/Web/CSS/text-autospace
3457
3503
  */
@@ -3481,7 +3527,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3481
3527
  */
3482
3528
  textDecoration?: Property.TextDecoration<TLength> | undefined;
3483
3529
  /**
3484
- * ✅ Baseline: Widely available (since Jan 2018)
3530
+ * ✅ Baseline: Widely available (since Jul 2022)
3485
3531
  *
3486
3532
  * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color
3487
3533
  */
@@ -3495,13 +3541,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3495
3541
  */
3496
3542
  textDecorationInset?: Property.TextDecorationInset<TLength> | undefined;
3497
3543
  /**
3498
- * ✅ Baseline: Widely available (since Jan 2018)
3544
+ * ✅ Baseline: Widely available (since Jul 2022)
3499
3545
  *
3500
3546
  * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line
3501
3547
  */
3502
3548
  textDecorationLine?: Property.TextDecorationLine | undefined;
3503
3549
  /**
3504
- * Baseline: Widely available (since Jan 2018)
3550
+ * Baseline: Not widely available
3505
3551
  *
3506
3552
  * @experimental
3507
3553
  *
@@ -3509,19 +3555,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3509
3555
  */
3510
3556
  textDecorationSkip?: Property.TextDecorationSkip | undefined;
3511
3557
  /**
3512
- * ✅ Baseline: Widely available (since Jan 2018)
3558
+ * ✅ Baseline: Widely available (since Sep 2024)
3513
3559
  *
3514
3560
  * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink
3515
3561
  */
3516
3562
  textDecorationSkipInk?: Property.TextDecorationSkipInk | undefined;
3517
3563
  /**
3518
- * ✅ Baseline: Widely available (since Jan 2018)
3564
+ * ✅ Baseline: Widely available (since Jul 2022)
3519
3565
  *
3520
3566
  * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style
3521
3567
  */
3522
3568
  textDecorationStyle?: Property.TextDecorationStyle | undefined;
3523
3569
  /**
3524
- * ✅ Baseline: Widely available (since Jan 2018)
3570
+ * ✅ Baseline: Widely available (since Sep 2023)
3525
3571
  *
3526
3572
  * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
3527
3573
  */
@@ -3621,7 +3667,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3621
3667
  */
3622
3668
  textUnderlinePosition?: Property.TextUnderlinePosition | undefined;
3623
3669
  /**
3624
- * ⚠️ Baseline: Newly available (since Oct 2024)
3670
+ * ⚠️ Baseline: Newly available (since Mar 2024)
3625
3671
  *
3626
3672
  * @see https://developer.mozilla.org/docs/Web/CSS/text-wrap
3627
3673
  */
@@ -3714,7 +3760,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3714
3760
  */
3715
3761
  transform?: Property.Transform | undefined;
3716
3762
  /**
3717
- * ⚠️ Baseline: Newly available (since Apr 2024)
3763
+ * Baseline: Widely available (since Jul 2022)
3718
3764
  *
3719
3765
  * @see https://developer.mozilla.org/docs/Web/CSS/transform-box
3720
3766
  */
@@ -3726,7 +3772,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3726
3772
  */
3727
3773
  transformOrigin?: Property.TransformOrigin<TLength> | undefined;
3728
3774
  /**
3729
- * ✅ Baseline: Widely available (since Sep 2024)
3775
+ * ✅ Baseline: Widely available (since Mar 2018)
3730
3776
  *
3731
3777
  * @see https://developer.mozilla.org/docs/Web/CSS/transform-style
3732
3778
  */
@@ -3781,7 +3827,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3781
3827
  */
3782
3828
  triggerScope?: Property.TriggerScope | undefined;
3783
3829
  /**
3784
- * ✅ Baseline: Widely available (since Jul 2022)
3830
+ * ✅ Baseline: Widely available (since Jan 2018)
3785
3831
  *
3786
3832
  * @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi
3787
3833
  */
@@ -3945,7 +3991,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
3945
3991
  */
3946
3992
  WebkitTapHighlightColor?: Property.WebkitTapHighlightColor | undefined;
3947
3993
  /**
3948
- * ✅ Baseline: Widely available (since Oct 2019)
3994
+ * ✅ Baseline: Widely available (since Mar 2019)
3949
3995
  *
3950
3996
  * @see https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color
3951
3997
  */
@@ -4012,7 +4058,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
4012
4058
  */
4013
4059
  willChange?: Property.WillChange | undefined;
4014
4060
  /**
4015
- * ✅ Baseline: Widely available (since Mar 2018)
4061
+ * ✅ Baseline: Widely available (since Jan 2018)
4016
4062
  *
4017
4063
  * @see https://developer.mozilla.org/docs/Web/CSS/word-break
4018
4064
  */
@@ -4035,13 +4081,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
4035
4081
  */
4036
4082
  writingMode?: Property.WritingMode | undefined;
4037
4083
  /**
4038
- * ✅ Baseline: Widely available (since Jul 2022)
4084
+ * ✅ Baseline: Widely available (since Jan 2023)
4039
4085
  *
4040
4086
  * @see https://developer.mozilla.org/docs/Web/CSS/x
4041
4087
  */
4042
4088
  x?: Property.X<TLength> | undefined;
4043
4089
  /**
4044
- * ✅ Baseline: Widely available (since Jul 2022)
4090
+ * ✅ Baseline: Widely available (since Jan 2023)
4045
4091
  *
4046
4092
  * @see https://developer.mozilla.org/docs/Web/CSS/y
4047
4093
  */
@@ -4393,7 +4439,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
4393
4439
  */
4394
4440
  "-webkit-tap-highlight-color"?: Property.WebkitTapHighlightColor | undefined;
4395
4441
  /**
4396
- * ✅ Baseline: Widely available (since Oct 2019)
4442
+ * ✅ Baseline: Widely available (since Mar 2019)
4397
4443
  *
4398
4444
  * @see https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color
4399
4445
  */
@@ -4469,13 +4515,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
4469
4515
  */
4470
4516
  "all"?: Property.All | undefined;
4471
4517
  /**
4472
- * Baseline: Not widely available
4518
+ * ⚠️ Baseline: Newly available (since Jan 2026)
4473
4519
  *
4474
4520
  * @see https://developer.mozilla.org/docs/Web/CSS/anchor-name
4475
4521
  */
4476
4522
  "anchor-name"?: Property.AnchorName | undefined;
4477
4523
  /**
4478
- * Baseline: Not widely available
4524
+ * ⚠️ Baseline: Newly available (since Jan 2026)
4479
4525
  */
4480
4526
  "anchor-scope"?: Property.AnchorScope | undefined;
4481
4527
  /**
@@ -4600,7 +4646,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
4600
4646
  */
4601
4647
  "background"?: Property.Background | undefined;
4602
4648
  /**
4603
- * Baseline: Not widely available
4649
+ * Baseline: Widely available (since Jan 2018)
4604
4650
  *
4605
4651
  * @see https://developer.mozilla.org/docs/Web/CSS/background-attachment
4606
4652
  */
@@ -4642,19 +4688,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
4642
4688
  */
4643
4689
  "background-position"?: Property.BackgroundPosition<TLength> | undefined;
4644
4690
  /**
4645
- * ✅ Baseline: Widely available (since Jan 2018)
4691
+ * ✅ Baseline: Widely available (since Mar 2019)
4646
4692
  *
4647
4693
  * @see https://developer.mozilla.org/docs/Web/CSS/background-position-x
4648
4694
  */
4649
4695
  "background-position-x"?: Property.BackgroundPositionX<TLength> | undefined;
4650
4696
  /**
4651
- * ✅ Baseline: Widely available (since Jan 2018)
4697
+ * ✅ Baseline: Widely available (since Mar 2019)
4652
4698
  *
4653
4699
  * @see https://developer.mozilla.org/docs/Web/CSS/background-position-y
4654
4700
  */
4655
4701
  "background-position-y"?: Property.BackgroundPositionY<TLength> | undefined;
4656
4702
  /**
4657
- * ✅ Baseline: Widely available (since Mar 2019)
4703
+ * ✅ Baseline: Widely available (since Jan 2018)
4658
4704
  *
4659
4705
  * @see https://developer.mozilla.org/docs/Web/CSS/background-repeat
4660
4706
  */
@@ -4676,7 +4722,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
4676
4722
  */
4677
4723
  "baseline-source"?: Property.BaselineSource | undefined;
4678
4724
  /**
4679
- * ✅ Baseline: Widely available (since Mar 2024)
4725
+ * ✅ Baseline: Widely available (since Jul 2022)
4680
4726
  *
4681
4727
  * @see https://developer.mozilla.org/docs/Web/CSS/block-size
4682
4728
  */
@@ -4688,73 +4734,73 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
4688
4734
  */
4689
4735
  "border"?: Property.Border<TLength> | undefined;
4690
4736
  /**
4691
- * ✅ Baseline: Widely available (since Mar 2024)
4737
+ * ✅ Baseline: Widely available (since Oct 2023)
4692
4738
  *
4693
4739
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block
4694
4740
  */
4695
4741
  "border-block"?: Property.BorderBlock<TLength> | undefined;
4696
4742
  /**
4697
- * ✅ Baseline: Widely available (since Mar 2024)
4743
+ * ✅ Baseline: Widely available (since Oct 2023)
4698
4744
  *
4699
4745
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
4700
4746
  */
4701
4747
  "border-block-color"?: Property.BorderBlockColor | undefined;
4702
4748
  /**
4703
- * ✅ Baseline: Widely available (since Mar 2024)
4749
+ * ✅ Baseline: Widely available (since Jul 2022)
4704
4750
  *
4705
4751
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end
4706
4752
  */
4707
4753
  "border-block-end"?: Property.BorderBlockEnd<TLength> | undefined;
4708
4754
  /**
4709
- * ✅ Baseline: Widely available (since Mar 2024)
4755
+ * ✅ Baseline: Widely available (since Jul 2022)
4710
4756
  *
4711
4757
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color
4712
4758
  */
4713
4759
  "border-block-end-color"?: Property.BorderBlockEndColor | undefined;
4714
4760
  /**
4715
- * ✅ Baseline: Widely available (since Mar 2024)
4761
+ * ✅ Baseline: Widely available (since Jul 2022)
4716
4762
  *
4717
4763
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-style
4718
4764
  */
4719
4765
  "border-block-end-style"?: Property.BorderBlockEndStyle | undefined;
4720
4766
  /**
4721
- * ✅ Baseline: Widely available (since Mar 2024)
4767
+ * ✅ Baseline: Widely available (since Jul 2022)
4722
4768
  *
4723
4769
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width
4724
4770
  */
4725
4771
  "border-block-end-width"?: Property.BorderBlockEndWidth<TLength> | undefined;
4726
4772
  /**
4727
- * ✅ Baseline: Widely available (since Mar 2024)
4773
+ * ✅ Baseline: Widely available (since Jul 2022)
4728
4774
  *
4729
4775
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start
4730
4776
  */
4731
4777
  "border-block-start"?: Property.BorderBlockStart<TLength> | undefined;
4732
4778
  /**
4733
- * ✅ Baseline: Widely available (since Mar 2024)
4779
+ * ✅ Baseline: Widely available (since Jul 2022)
4734
4780
  *
4735
4781
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color
4736
4782
  */
4737
4783
  "border-block-start-color"?: Property.BorderBlockStartColor | undefined;
4738
4784
  /**
4739
- * ✅ Baseline: Widely available (since Mar 2024)
4785
+ * ✅ Baseline: Widely available (since Jul 2022)
4740
4786
  *
4741
4787
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-style
4742
4788
  */
4743
4789
  "border-block-start-style"?: Property.BorderBlockStartStyle | undefined;
4744
4790
  /**
4745
- * ✅ Baseline: Widely available (since Mar 2024)
4791
+ * ✅ Baseline: Widely available (since Jul 2022)
4746
4792
  *
4747
4793
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width
4748
4794
  */
4749
4795
  "border-block-start-width"?: Property.BorderBlockStartWidth<TLength> | undefined;
4750
4796
  /**
4751
- * ✅ Baseline: Widely available (since Mar 2024)
4797
+ * ✅ Baseline: Widely available (since Oct 2023)
4752
4798
  *
4753
4799
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
4754
4800
  */
4755
4801
  "border-block-style"?: Property.BorderBlockStyle | undefined;
4756
4802
  /**
4757
- * ✅ Baseline: Widely available (since Mar 2024)
4803
+ * ✅ Baseline: Widely available (since Oct 2023)
4758
4804
  *
4759
4805
  * @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
4760
4806
  */
@@ -4820,109 +4866,109 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
4820
4866
  */
4821
4867
  "border-end-start-radius"?: Property.BorderEndStartRadius<TLength> | undefined;
4822
4868
  /**
4823
- * ✅ Baseline: Widely available (since Aug 2019)
4869
+ * ✅ Baseline: Widely available (since Jan 2018)
4824
4870
  *
4825
4871
  * @see https://developer.mozilla.org/docs/Web/CSS/border-image
4826
4872
  */
4827
4873
  "border-image"?: Property.BorderImage<TLength> | undefined;
4828
4874
  /**
4829
- * ✅ Baseline: Widely available (since Aug 2019)
4875
+ * ✅ Baseline: Widely available (since Jan 2018)
4830
4876
  *
4831
4877
  * @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset
4832
4878
  */
4833
4879
  "border-image-outset"?: Property.BorderImageOutset<TLength> | undefined;
4834
4880
  /**
4835
- * ✅ Baseline: Widely available (since Aug 2019)
4881
+ * ✅ Baseline: Widely available (since Sep 2018)
4836
4882
  *
4837
4883
  * @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat
4838
4884
  */
4839
4885
  "border-image-repeat"?: Property.BorderImageRepeat | undefined;
4840
4886
  /**
4841
- * ✅ Baseline: Widely available (since Aug 2019)
4887
+ * ✅ Baseline: Widely available (since Jan 2018)
4842
4888
  *
4843
4889
  * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice
4844
4890
  */
4845
4891
  "border-image-slice"?: Property.BorderImageSlice | undefined;
4846
4892
  /**
4847
- * ✅ Baseline: Widely available (since Aug 2019)
4893
+ * ✅ Baseline: Widely available (since Jan 2018)
4848
4894
  *
4849
4895
  * @see https://developer.mozilla.org/docs/Web/CSS/border-image-source
4850
4896
  */
4851
4897
  "border-image-source"?: Property.BorderImageSource | undefined;
4852
4898
  /**
4853
- * ✅ Baseline: Widely available (since Aug 2019)
4899
+ * ✅ Baseline: Widely available (since Jan 2018)
4854
4900
  *
4855
4901
  * @see https://developer.mozilla.org/docs/Web/CSS/border-image-width
4856
4902
  */
4857
4903
  "border-image-width"?: Property.BorderImageWidth<TLength> | undefined;
4858
4904
  /**
4859
- * ✅ Baseline: Widely available (since Mar 2024)
4905
+ * ✅ Baseline: Widely available (since Oct 2023)
4860
4906
  *
4861
4907
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline
4862
4908
  */
4863
4909
  "border-inline"?: Property.BorderInline<TLength> | undefined;
4864
4910
  /**
4865
- * ✅ Baseline: Widely available (since Mar 2024)
4911
+ * ✅ Baseline: Widely available (since Oct 2023)
4866
4912
  *
4867
4913
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
4868
4914
  */
4869
4915
  "border-inline-color"?: Property.BorderInlineColor | undefined;
4870
4916
  /**
4871
- * ✅ Baseline: Widely available (since Mar 2024)
4917
+ * ✅ Baseline: Widely available (since Jul 2022)
4872
4918
  *
4873
4919
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
4874
4920
  */
4875
4921
  "border-inline-end"?: Property.BorderInlineEnd<TLength> | undefined;
4876
4922
  /**
4877
- * ✅ Baseline: Widely available (since Mar 2024)
4923
+ * ✅ Baseline: Widely available (since Jul 2022)
4878
4924
  *
4879
4925
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color
4880
4926
  */
4881
4927
  "border-inline-end-color"?: Property.BorderInlineEndColor | undefined;
4882
4928
  /**
4883
- * ✅ Baseline: Widely available (since Mar 2024)
4929
+ * ✅ Baseline: Widely available (since Jul 2022)
4884
4930
  *
4885
4931
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style
4886
4932
  */
4887
4933
  "border-inline-end-style"?: Property.BorderInlineEndStyle | undefined;
4888
4934
  /**
4889
- * ✅ Baseline: Widely available (since Mar 2024)
4935
+ * ✅ Baseline: Widely available (since Jul 2022)
4890
4936
  *
4891
4937
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width
4892
4938
  */
4893
4939
  "border-inline-end-width"?: Property.BorderInlineEndWidth<TLength> | undefined;
4894
4940
  /**
4895
- * ✅ Baseline: Widely available (since Mar 2024)
4941
+ * ✅ Baseline: Widely available (since Jul 2022)
4896
4942
  *
4897
4943
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start
4898
4944
  */
4899
4945
  "border-inline-start"?: Property.BorderInlineStart<TLength> | undefined;
4900
4946
  /**
4901
- * ✅ Baseline: Widely available (since Mar 2024)
4947
+ * ✅ Baseline: Widely available (since Jul 2022)
4902
4948
  *
4903
4949
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color
4904
4950
  */
4905
4951
  "border-inline-start-color"?: Property.BorderInlineStartColor | undefined;
4906
4952
  /**
4907
- * ✅ Baseline: Widely available (since Mar 2024)
4953
+ * ✅ Baseline: Widely available (since Jul 2022)
4908
4954
  *
4909
4955
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style
4910
4956
  */
4911
4957
  "border-inline-start-style"?: Property.BorderInlineStartStyle | undefined;
4912
4958
  /**
4913
- * ✅ Baseline: Widely available (since Mar 2024)
4959
+ * ✅ Baseline: Widely available (since Jul 2022)
4914
4960
  *
4915
4961
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width
4916
4962
  */
4917
4963
  "border-inline-start-width"?: Property.BorderInlineStartWidth<TLength> | undefined;
4918
4964
  /**
4919
- * ✅ Baseline: Widely available (since Mar 2024)
4965
+ * ✅ Baseline: Widely available (since Oct 2023)
4920
4966
  *
4921
4967
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
4922
4968
  */
4923
4969
  "border-inline-style"?: Property.BorderInlineStyle | undefined;
4924
4970
  /**
4925
- * ✅ Baseline: Widely available (since Mar 2024)
4971
+ * ✅ Baseline: Widely available (since Oct 2023)
4926
4972
  *
4927
4973
  * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
4928
4974
  */
@@ -5188,7 +5234,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5188
5234
  */
5189
5235
  "clip"?: Property.Clip | undefined;
5190
5236
  /**
5191
- * ✅ Baseline: Widely available (since Jul 2023)
5237
+ * ✅ Baseline: Widely available (since Jul 2022)
5192
5238
  *
5193
5239
  * @see https://developer.mozilla.org/docs/Web/CSS/clip-path
5194
5240
  */
@@ -5210,7 +5256,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5210
5256
  */
5211
5257
  "color-interpolation"?: Property.ColorInterpolation | undefined;
5212
5258
  /**
5213
- * ✅ Baseline: Widely available (since Jan 2018)
5259
+ * ✅ Baseline: Widely available (since Jul 2022)
5214
5260
  *
5215
5261
  * @see https://developer.mozilla.org/docs/Web/CSS/color-interpolation-filters
5216
5262
  */
@@ -5221,7 +5267,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5221
5267
  */
5222
5268
  "color-rendering"?: Property.ColorRendering | undefined;
5223
5269
  /**
5224
- * ✅ Baseline: Widely available (since Aug 2024)
5270
+ * ✅ Baseline: Widely available (since Jul 2024)
5225
5271
  *
5226
5272
  * @see https://developer.mozilla.org/docs/Web/CSS/color-scheme
5227
5273
  */
@@ -5239,7 +5285,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5239
5285
  */
5240
5286
  "column-fill"?: Property.ColumnFill | undefined;
5241
5287
  /**
5242
- * ✅ Baseline: Widely available (since Sep 2019)
5288
+ * ✅ Baseline: Widely available (since Jan 2018)
5243
5289
  *
5244
5290
  * @see https://developer.mozilla.org/docs/Web/CSS/column-gap
5245
5291
  */
@@ -5282,7 +5328,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5282
5328
  */
5283
5329
  "column-span"?: Property.ColumnSpan | undefined;
5284
5330
  /**
5285
- * ✅ Baseline: Widely available (since Sep 2019)
5331
+ * ✅ Baseline: Widely available (since May 2019)
5286
5332
  *
5287
5333
  * @see https://developer.mozilla.org/docs/Web/CSS/column-width
5288
5334
  */
@@ -5361,7 +5407,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5361
5407
  */
5362
5408
  "content"?: Property.Content | undefined;
5363
5409
  /**
5364
- * ⚠️ Baseline: Newly available (since Sep 2025)
5410
+ * ⚠️ Baseline: Newly available (since Sep 2024)
5365
5411
  *
5366
5412
  * @see https://developer.mozilla.org/docs/Web/CSS/content-visibility
5367
5413
  */
@@ -5521,31 +5567,31 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5521
5567
  */
5522
5568
  "counter-set"?: Property.CounterSet | undefined;
5523
5569
  /**
5524
- * Baseline: Not widely available
5570
+ * Baseline: Widely available (since Jun 2024)
5525
5571
  *
5526
5572
  * @see https://developer.mozilla.org/docs/Web/CSS/cursor
5527
5573
  */
5528
5574
  "cursor"?: Property.Cursor | undefined;
5529
5575
  /**
5530
- * ✅ Baseline: Widely available (since Jul 2022)
5576
+ * ✅ Baseline: Widely available (since Jan 2023)
5531
5577
  *
5532
5578
  * @see https://developer.mozilla.org/docs/Web/CSS/cx
5533
5579
  */
5534
5580
  "cx"?: Property.Cx<TLength> | undefined;
5535
5581
  /**
5536
- * ✅ Baseline: Widely available (since Jul 2022)
5582
+ * ✅ Baseline: Widely available (since Jan 2023)
5537
5583
  *
5538
5584
  * @see https://developer.mozilla.org/docs/Web/CSS/cy
5539
5585
  */
5540
5586
  "cy"?: Property.Cy<TLength> | undefined;
5541
5587
  /**
5542
- * Baseline: Widely available (since Jul 2022)
5588
+ * Baseline: Not widely available
5543
5589
  *
5544
5590
  * @see https://developer.mozilla.org/docs/Web/CSS/d
5545
5591
  */
5546
5592
  "d"?: Property.D | undefined;
5547
5593
  /**
5548
- * ✅ Baseline: Widely available (since Jul 2022)
5594
+ * ✅ Baseline: Widely available (since Jan 2018)
5549
5595
  *
5550
5596
  * @see https://developer.mozilla.org/docs/Web/CSS/direction
5551
5597
  */
@@ -5580,19 +5626,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5580
5626
  */
5581
5627
  "field-sizing"?: Property.FieldSizing | undefined;
5582
5628
  /**
5583
- * ✅ Baseline: Widely available (since Jul 2022)
5629
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
5584
5630
  *
5585
5631
  * @see https://developer.mozilla.org/docs/Web/CSS/fill
5586
5632
  */
5587
5633
  "fill"?: Property.Fill | undefined;
5588
5634
  /**
5589
- * ✅ Baseline: Widely available (since ≤2022-09-24)
5635
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
5590
5636
  *
5591
5637
  * @see https://developer.mozilla.org/docs/Web/CSS/fill-opacity
5592
5638
  */
5593
5639
  "fill-opacity"?: Property.FillOpacity | undefined;
5594
5640
  /**
5595
- * ✅ Baseline: Widely available (since Jul 2022)
5641
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
5596
5642
  *
5597
5643
  * @see https://developer.mozilla.org/docs/Web/CSS/fill-rule
5598
5644
  */
@@ -5723,7 +5769,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5723
5769
  */
5724
5770
  "font-smooth"?: Property.FontSmooth<TLength> | undefined;
5725
5771
  /**
5726
- * ✅ Baseline: Widely available (since Jul 2022)
5772
+ * ✅ Baseline: Widely available (since Mar 2020)
5727
5773
  *
5728
5774
  * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch
5729
5775
  */
@@ -5809,7 +5855,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5809
5855
  */
5810
5856
  "font-variant-numeric"?: Property.FontVariantNumeric | undefined;
5811
5857
  /**
5812
- * Baseline: Not widely available
5858
+ * ⚠️ Baseline: Newly available (since Sep 2023)
5813
5859
  *
5814
5860
  * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
5815
5861
  */
@@ -5833,7 +5879,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5833
5879
  */
5834
5880
  "font-width"?: Property.FontWidth | undefined;
5835
5881
  /**
5836
- * Baseline: Widely available (since Mar 2025)
5882
+ * Baseline: Not widely available
5837
5883
  *
5838
5884
  * @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust
5839
5885
  */
@@ -5863,7 +5909,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5863
5909
  */
5864
5910
  "grid-area"?: Property.GridArea | undefined;
5865
5911
  /**
5866
- * ✅ Baseline: Widely available (since Apr 2020)
5912
+ * ✅ Baseline: Widely available (since Jan 2023)
5867
5913
  *
5868
5914
  * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns
5869
5915
  */
@@ -5875,7 +5921,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5875
5921
  */
5876
5922
  "grid-auto-flow"?: Property.GridAutoFlow | undefined;
5877
5923
  /**
5878
- * ✅ Baseline: Widely available (since Apr 2020)
5924
+ * ✅ Baseline: Widely available (since Jan 2023)
5879
5925
  *
5880
5926
  * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows
5881
5927
  */
@@ -5992,7 +6038,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
5992
6038
  */
5993
6039
  "image-orientation"?: Property.ImageOrientation | undefined;
5994
6040
  /**
5995
- * ✅ Baseline: Widely available (since Apr 2024)
6041
+ * ✅ Baseline: Widely available (since Jul 2022)
5996
6042
  *
5997
6043
  * @see https://developer.mozilla.org/docs/Web/CSS/image-rendering
5998
6044
  */
@@ -6018,49 +6064,49 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6018
6064
  */
6019
6065
  "initial-letter-align"?: Property.InitialLetterAlign | undefined;
6020
6066
  /**
6021
- * ✅ Baseline: Widely available (since Mar 2024)
6067
+ * ✅ Baseline: Widely available (since Jul 2022)
6022
6068
  *
6023
6069
  * @see https://developer.mozilla.org/docs/Web/CSS/inline-size
6024
6070
  */
6025
6071
  "inline-size"?: Property.InlineSize<TLength> | undefined;
6026
6072
  /**
6027
- * ✅ Baseline: Widely available (since Mar 2024)
6073
+ * ✅ Baseline: Widely available (since Oct 2023)
6028
6074
  *
6029
6075
  * @see https://developer.mozilla.org/docs/Web/CSS/inset
6030
6076
  */
6031
6077
  "inset"?: Property.Inset<TLength> | undefined;
6032
6078
  /**
6033
- * ✅ Baseline: Widely available (since Mar 2024)
6079
+ * ✅ Baseline: Widely available (since Oct 2023)
6034
6080
  *
6035
6081
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-block
6036
6082
  */
6037
6083
  "inset-block"?: Property.InsetBlock<TLength> | undefined;
6038
6084
  /**
6039
- * ✅ Baseline: Widely available (since Mar 2024)
6085
+ * ✅ Baseline: Widely available (since Oct 2023)
6040
6086
  *
6041
6087
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
6042
6088
  */
6043
6089
  "inset-block-end"?: Property.InsetBlockEnd<TLength> | undefined;
6044
6090
  /**
6045
- * ✅ Baseline: Widely available (since Mar 2024)
6091
+ * ✅ Baseline: Widely available (since Oct 2023)
6046
6092
  *
6047
6093
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
6048
6094
  */
6049
6095
  "inset-block-start"?: Property.InsetBlockStart<TLength> | undefined;
6050
6096
  /**
6051
- * ✅ Baseline: Widely available (since Mar 2024)
6097
+ * ✅ Baseline: Widely available (since Oct 2023)
6052
6098
  *
6053
6099
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
6054
6100
  */
6055
6101
  "inset-inline"?: Property.InsetInline<TLength> | undefined;
6056
6102
  /**
6057
- * ✅ Baseline: Widely available (since Mar 2024)
6103
+ * ✅ Baseline: Widely available (since Oct 2023)
6058
6104
  *
6059
6105
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
6060
6106
  */
6061
6107
  "inset-inline-end"?: Property.InsetInlineEnd<TLength> | undefined;
6062
6108
  /**
6063
- * ✅ Baseline: Widely available (since Mar 2024)
6109
+ * ✅ Baseline: Widely available (since Oct 2023)
6064
6110
  *
6065
6111
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
6066
6112
  */
@@ -6115,7 +6161,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6115
6161
  */
6116
6162
  "justify-content"?: Property.JustifyContent | undefined;
6117
6163
  /**
6118
- * ✅ Baseline: Widely available (since Mar 2018)
6164
+ * ✅ Baseline: Widely available (since Jan 2019)
6119
6165
  *
6120
6166
  * @see https://developer.mozilla.org/docs/Web/CSS/justify-items
6121
6167
  */
@@ -6201,19 +6247,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6201
6247
  */
6202
6248
  "margin"?: Property.Margin<TLength> | undefined;
6203
6249
  /**
6204
- * ✅ Baseline: Widely available (since Mar 2024)
6250
+ * ✅ Baseline: Widely available (since Oct 2023)
6205
6251
  *
6206
6252
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block
6207
6253
  */
6208
6254
  "margin-block"?: Property.MarginBlock<TLength> | undefined;
6209
6255
  /**
6210
- * ✅ Baseline: Widely available (since Mar 2024)
6256
+ * ✅ Baseline: Widely available (since Jul 2022)
6211
6257
  *
6212
6258
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
6213
6259
  */
6214
6260
  "margin-block-end"?: Property.MarginBlockEnd<TLength> | undefined;
6215
6261
  /**
6216
- * ✅ Baseline: Widely available (since Mar 2024)
6262
+ * ✅ Baseline: Widely available (since Jul 2022)
6217
6263
  *
6218
6264
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
6219
6265
  */
@@ -6225,19 +6271,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6225
6271
  */
6226
6272
  "margin-bottom"?: Property.MarginBottom<TLength> | undefined;
6227
6273
  /**
6228
- * ✅ Baseline: Widely available (since Mar 2024)
6274
+ * ✅ Baseline: Widely available (since Oct 2023)
6229
6275
  *
6230
6276
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
6231
6277
  */
6232
6278
  "margin-inline"?: Property.MarginInline<TLength> | undefined;
6233
6279
  /**
6234
- * ✅ Baseline: Widely available (since Mar 2024)
6280
+ * ✅ Baseline: Widely available (since Jul 2022)
6235
6281
  *
6236
6282
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
6237
6283
  */
6238
6284
  "margin-inline-end"?: Property.MarginInlineEnd<TLength> | undefined;
6239
6285
  /**
6240
- * ✅ Baseline: Widely available (since Mar 2024)
6286
+ * ✅ Baseline: Widely available (since Jul 2022)
6241
6287
  *
6242
6288
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
6243
6289
  */
@@ -6269,25 +6315,25 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6269
6315
  */
6270
6316
  "margin-trim"?: Property.MarginTrim | undefined;
6271
6317
  /**
6272
- * ✅ Baseline: Widely available (since Jul 2022)
6318
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
6273
6319
  *
6274
6320
  * @see https://developer.mozilla.org/docs/Web/CSS/marker
6275
6321
  */
6276
6322
  "marker"?: Property.Marker | undefined;
6277
6323
  /**
6278
- * ✅ Baseline: Widely available (since Jul 2022)
6324
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
6279
6325
  *
6280
6326
  * @see https://developer.mozilla.org/docs/Web/CSS/marker-end
6281
6327
  */
6282
6328
  "marker-end"?: Property.MarkerEnd | undefined;
6283
6329
  /**
6284
- * ✅ Baseline: Widely available (since Jul 2022)
6330
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
6285
6331
  *
6286
6332
  * @see https://developer.mozilla.org/docs/Web/CSS/marker-mid
6287
6333
  */
6288
6334
  "marker-mid"?: Property.MarkerMid | undefined;
6289
6335
  /**
6290
- * ✅ Baseline: Widely available (since Jul 2022)
6336
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
6291
6337
  *
6292
6338
  * @see https://developer.mozilla.org/docs/Web/CSS/marker-start
6293
6339
  */
@@ -6399,25 +6445,25 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6399
6445
  */
6400
6446
  "masonry-auto-flow"?: Property.MasonryAutoFlow | undefined;
6401
6447
  /**
6402
- * Baseline: Widely available (since Jul 2025)
6448
+ * Baseline: Not widely available
6403
6449
  *
6404
6450
  * @see https://developer.mozilla.org/docs/Web/CSS/math-depth
6405
6451
  */
6406
6452
  "math-depth"?: Property.MathDepth | undefined;
6407
6453
  /**
6408
- * Baseline: Widely available (since Jul 2025)
6454
+ * ⚠️ Baseline: Newly available (since Dec 2025)
6409
6455
  *
6410
6456
  * @see https://developer.mozilla.org/docs/Web/CSS/math-shift
6411
6457
  */
6412
6458
  "math-shift"?: Property.MathShift | undefined;
6413
6459
  /**
6414
- * Baseline: Widely available (since Jul 2025)
6460
+ * ⚠️ Baseline: Newly available (since Aug 2023)
6415
6461
  *
6416
6462
  * @see https://developer.mozilla.org/docs/Web/CSS/math-style
6417
6463
  */
6418
6464
  "math-style"?: Property.MathStyle | undefined;
6419
6465
  /**
6420
- * ✅ Baseline: Widely available (since Mar 2024)
6466
+ * ✅ Baseline: Widely available (since Jul 2022)
6421
6467
  *
6422
6468
  * @see https://developer.mozilla.org/docs/Web/CSS/max-block-size
6423
6469
  */
@@ -6429,7 +6475,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6429
6475
  */
6430
6476
  "max-height"?: Property.MaxHeight<TLength> | undefined;
6431
6477
  /**
6432
- * ✅ Baseline: Widely available (since Mar 2024)
6478
+ * ✅ Baseline: Widely available (since Jul 2022)
6433
6479
  *
6434
6480
  * @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size
6435
6481
  */
@@ -6444,7 +6490,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6444
6490
  */
6445
6491
  "max-width"?: Property.MaxWidth<TLength> | undefined;
6446
6492
  /**
6447
- * ✅ Baseline: Widely available (since Mar 2024)
6493
+ * ✅ Baseline: Widely available (since Jul 2022)
6448
6494
  *
6449
6495
  * @see https://developer.mozilla.org/docs/Web/CSS/min-block-size
6450
6496
  */
@@ -6456,7 +6502,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6456
6502
  */
6457
6503
  "min-height"?: Property.MinHeight<TLength> | undefined;
6458
6504
  /**
6459
- * ✅ Baseline: Widely available (since Mar 2024)
6505
+ * ✅ Baseline: Widely available (since Jul 2022)
6460
6506
  *
6461
6507
  * @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size
6462
6508
  */
@@ -6498,7 +6544,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6498
6544
  */
6499
6545
  "offset"?: Property.Offset<TLength> | undefined;
6500
6546
  /**
6501
- * Baseline: Widely available (since Mar 2025)
6547
+ * ⚠️ Baseline: Newly available (since Aug 2023)
6502
6548
  *
6503
6549
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-anchor
6504
6550
  */
@@ -6510,13 +6556,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6510
6556
  */
6511
6557
  "offset-distance"?: Property.OffsetDistance<TLength> | undefined;
6512
6558
  /**
6513
- * ✅ Baseline: Widely available (since Mar 2025)
6559
+ * ✅ Baseline: Widely available (since Sep 2024)
6514
6560
  *
6515
6561
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-path
6516
6562
  */
6517
6563
  "offset-path"?: Property.OffsetPath | undefined;
6518
6564
  /**
6519
- * Baseline: Widely available (since Mar 2025)
6565
+ * ⚠️ Baseline: Newly available (since Jan 2024)
6520
6566
  *
6521
6567
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-position
6522
6568
  */
@@ -6552,7 +6598,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6552
6598
  */
6553
6599
  "outline"?: Property.Outline<TLength> | undefined;
6554
6600
  /**
6555
- * ✅ Baseline: Widely available (since Oct 2019)
6601
+ * ✅ Baseline: Widely available (since Jan 2018)
6556
6602
  *
6557
6603
  * @see https://developer.mozilla.org/docs/Web/CSS/outline-color
6558
6604
  */
@@ -6564,19 +6610,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6564
6610
  */
6565
6611
  "outline-offset"?: Property.OutlineOffset<TLength> | undefined;
6566
6612
  /**
6567
- * ✅ Baseline: Widely available (since Oct 2019)
6613
+ * ✅ Baseline: Widely available (since Jan 2018)
6568
6614
  *
6569
6615
  * @see https://developer.mozilla.org/docs/Web/CSS/outline-style
6570
6616
  */
6571
6617
  "outline-style"?: Property.OutlineStyle | undefined;
6572
6618
  /**
6573
- * ✅ Baseline: Widely available (since Oct 2019)
6619
+ * ✅ Baseline: Widely available (since Jan 2018)
6574
6620
  *
6575
6621
  * @see https://developer.mozilla.org/docs/Web/CSS/outline-width
6576
6622
  */
6577
6623
  "outline-width"?: Property.OutlineWidth<TLength> | undefined;
6578
6624
  /**
6579
- * ✅ Baseline: Widely available (since Sep 2022)
6625
+ * ✅ Baseline: Widely available (since Jan 2018)
6580
6626
  *
6581
6627
  * @see https://developer.mozilla.org/docs/Web/CSS/overflow
6582
6628
  */
@@ -6588,7 +6634,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6588
6634
  */
6589
6635
  "overflow-anchor"?: Property.OverflowAnchor | undefined;
6590
6636
  /**
6591
- * Baseline: Widely available (since Mar 2024)
6637
+ * ⚠️ Baseline: Newly available (since Sep 2025)
6592
6638
  *
6593
6639
  * @see https://developer.mozilla.org/docs/Web/CSS/overflow-block
6594
6640
  */
@@ -6603,7 +6649,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6603
6649
  */
6604
6650
  "overflow-clip-margin"?: Property.OverflowClipMargin<TLength> | undefined;
6605
6651
  /**
6606
- * Baseline: Widely available (since Mar 2024)
6652
+ * ⚠️ Baseline: Newly available (since Sep 2025)
6607
6653
  *
6608
6654
  * @see https://developer.mozilla.org/docs/Web/CSS/overflow-inline
6609
6655
  */
@@ -6615,13 +6661,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6615
6661
  */
6616
6662
  "overflow-wrap"?: Property.OverflowWrap | undefined;
6617
6663
  /**
6618
- * ✅ Baseline: Widely available (since Sep 2022)
6664
+ * ✅ Baseline: Widely available (since Jan 2018)
6619
6665
  *
6620
6666
  * @see https://developer.mozilla.org/docs/Web/CSS/overflow-x
6621
6667
  */
6622
6668
  "overflow-x"?: Property.OverflowX | undefined;
6623
6669
  /**
6624
- * ✅ Baseline: Widely available (since Sep 2022)
6670
+ * ✅ Baseline: Widely available (since Jan 2018)
6625
6671
  *
6626
6672
  * @see https://developer.mozilla.org/docs/Web/CSS/overflow-y
6627
6673
  */
@@ -6671,19 +6717,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6671
6717
  */
6672
6718
  "padding"?: Property.Padding<TLength> | undefined;
6673
6719
  /**
6674
- * ✅ Baseline: Widely available (since Mar 2024)
6720
+ * ✅ Baseline: Widely available (since Oct 2023)
6675
6721
  *
6676
6722
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block
6677
6723
  */
6678
6724
  "padding-block"?: Property.PaddingBlock<TLength> | undefined;
6679
6725
  /**
6680
- * ✅ Baseline: Widely available (since Mar 2024)
6726
+ * ✅ Baseline: Widely available (since Jul 2022)
6681
6727
  *
6682
6728
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
6683
6729
  */
6684
6730
  "padding-block-end"?: Property.PaddingBlockEnd<TLength> | undefined;
6685
6731
  /**
6686
- * ✅ Baseline: Widely available (since Mar 2024)
6732
+ * ✅ Baseline: Widely available (since Jul 2022)
6687
6733
  *
6688
6734
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
6689
6735
  */
@@ -6695,19 +6741,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6695
6741
  */
6696
6742
  "padding-bottom"?: Property.PaddingBottom<TLength> | undefined;
6697
6743
  /**
6698
- * ✅ Baseline: Widely available (since Mar 2024)
6744
+ * ✅ Baseline: Widely available (since Oct 2023)
6699
6745
  *
6700
6746
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
6701
6747
  */
6702
6748
  "padding-inline"?: Property.PaddingInline<TLength> | undefined;
6703
6749
  /**
6704
- * ✅ Baseline: Widely available (since Mar 2024)
6750
+ * ✅ Baseline: Widely available (since Jul 2022)
6705
6751
  *
6706
6752
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
6707
6753
  */
6708
6754
  "padding-inline-end"?: Property.PaddingInlineEnd<TLength> | undefined;
6709
6755
  /**
6710
- * ✅ Baseline: Widely available (since Mar 2024)
6756
+ * ✅ Baseline: Widely available (since Jul 2022)
6711
6757
  *
6712
6758
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
6713
6759
  */
@@ -6731,7 +6777,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6731
6777
  */
6732
6778
  "padding-top"?: Property.PaddingTop<TLength> | undefined;
6733
6779
  /**
6734
- * ⚠️ Baseline: Newly available (since Dec 2024)
6780
+ * Baseline: Widely available (since Aug 2025)
6735
6781
  *
6736
6782
  * @see https://developer.mozilla.org/docs/Web/CSS/page
6737
6783
  */
@@ -6767,31 +6813,31 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6767
6813
  */
6768
6814
  "paint-order"?: Property.PaintOrder | undefined;
6769
6815
  /**
6770
- * ✅ Baseline: Widely available (since Sep 2024)
6816
+ * ✅ Baseline: Widely available (since Mar 2018)
6771
6817
  *
6772
6818
  * @see https://developer.mozilla.org/docs/Web/CSS/perspective
6773
6819
  */
6774
6820
  "perspective"?: Property.Perspective<TLength> | undefined;
6775
6821
  /**
6776
- * ✅ Baseline: Widely available (since Sep 2024)
6822
+ * ✅ Baseline: Widely available (since Mar 2018)
6777
6823
  *
6778
6824
  * @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin
6779
6825
  */
6780
6826
  "perspective-origin"?: Property.PerspectiveOrigin<TLength> | undefined;
6781
6827
  /**
6782
- * ✅ Baseline: Widely available (since Mar 2018)
6828
+ * ✅ Baseline: Widely available (since Jul 2022)
6783
6829
  *
6784
6830
  * @see https://developer.mozilla.org/docs/Web/CSS/place-content
6785
6831
  */
6786
6832
  "place-content"?: Property.PlaceContent | undefined;
6787
6833
  /**
6788
- * ✅ Baseline: Widely available (since Mar 2018)
6834
+ * ✅ Baseline: Widely available (since Jul 2022)
6789
6835
  *
6790
6836
  * @see https://developer.mozilla.org/docs/Web/CSS/place-items
6791
6837
  */
6792
6838
  "place-items"?: Property.PlaceItems | undefined;
6793
6839
  /**
6794
- * ✅ Baseline: Widely available (since Mar 2018)
6840
+ * ✅ Baseline: Widely available (since Jul 2022)
6795
6841
  *
6796
6842
  * @see https://developer.mozilla.org/docs/Web/CSS/place-self
6797
6843
  */
@@ -6809,25 +6855,25 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6809
6855
  */
6810
6856
  "position"?: Property.Position | undefined;
6811
6857
  /**
6812
- * Baseline: Not widely available
6858
+ * ⚠️ Baseline: Newly available (since Jan 2026)
6813
6859
  *
6814
6860
  * @see https://developer.mozilla.org/docs/Web/CSS/position-anchor
6815
6861
  */
6816
6862
  "position-anchor"?: Property.PositionAnchor | undefined;
6817
6863
  /**
6818
- * Baseline: Not widely available
6864
+ * ⚠️ Baseline: Newly available (since Jan 2026)
6819
6865
  *
6820
6866
  * @see https://developer.mozilla.org/docs/Web/CSS/position-area
6821
6867
  */
6822
6868
  "position-area"?: Property.PositionArea | undefined;
6823
6869
  /**
6824
- * Baseline: Not widely available
6870
+ * ⚠️ Baseline: Newly available (since Jan 2026)
6825
6871
  *
6826
6872
  * @see https://developer.mozilla.org/docs/Web/CSS/position-try
6827
6873
  */
6828
6874
  "position-try"?: Property.PositionTry | undefined;
6829
6875
  /**
6830
- * Baseline: Not widely available
6876
+ * ⚠️ Baseline: Newly available (since Jan 2026)
6831
6877
  *
6832
6878
  * @see https://developer.mozilla.org/docs/Web/CSS/position-try-fallbacks
6833
6879
  */
@@ -6839,7 +6885,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6839
6885
  */
6840
6886
  "position-try-order"?: Property.PositionTryOrder | undefined;
6841
6887
  /**
6842
- * Baseline: Not widely available
6888
+ * ⚠️ Baseline: Newly available (since Jan 2026)
6843
6889
  *
6844
6890
  * @see https://developer.mozilla.org/docs/Web/CSS/position-visibility
6845
6891
  */
@@ -6851,13 +6897,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6851
6897
  */
6852
6898
  "print-color-adjust"?: Property.PrintColorAdjust | undefined;
6853
6899
  /**
6854
- * ✅ Baseline: Widely available (since Oct 2023)
6900
+ * ✅ Baseline: Widely available (since Mar 2018)
6855
6901
  *
6856
6902
  * @see https://developer.mozilla.org/docs/Web/CSS/quotes
6857
6903
  */
6858
6904
  "quotes"?: Property.Quotes | undefined;
6859
6905
  /**
6860
- * ✅ Baseline: Widely available (since Jul 2022)
6906
+ * ✅ Baseline: Widely available (since Jan 2023)
6861
6907
  *
6862
6908
  * @see https://developer.mozilla.org/docs/Web/CSS/r
6863
6909
  */
@@ -6922,13 +6968,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6922
6968
  */
6923
6969
  "ruby-position"?: Property.RubyPosition | undefined;
6924
6970
  /**
6925
- * Baseline: Widely available (since Jul 2022)
6971
+ * ⚠️ Baseline: Newly available (since Mar 2024)
6926
6972
  *
6927
6973
  * @see https://developer.mozilla.org/docs/Web/CSS/rx
6928
6974
  */
6929
6975
  "rx"?: Property.Rx<TLength> | undefined;
6930
6976
  /**
6931
- * Baseline: Widely available (since Jul 2022)
6977
+ * ⚠️ Baseline: Newly available (since Mar 2024)
6932
6978
  *
6933
6979
  * @see https://developer.mozilla.org/docs/Web/CSS/ry
6934
6980
  */
@@ -6952,67 +6998,67 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
6952
6998
  */
6953
6999
  "scroll-initial-target"?: Property.ScrollInitialTarget | undefined;
6954
7000
  /**
6955
- * ✅ Baseline: Widely available (since Jul 2022)
7001
+ * ✅ Baseline: Widely available (since Jan 2024)
6956
7002
  *
6957
7003
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
6958
7004
  */
6959
7005
  "scroll-margin"?: Property.ScrollMargin<TLength> | undefined;
6960
7006
  /**
6961
- * ✅ Baseline: Widely available (since Jul 2022)
7007
+ * ✅ Baseline: Widely available (since Mar 2024)
6962
7008
  *
6963
7009
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
6964
7010
  */
6965
7011
  "scroll-margin-block"?: Property.ScrollMarginBlock<TLength> | undefined;
6966
7012
  /**
6967
- * ✅ Baseline: Widely available (since Jul 2022)
7013
+ * ✅ Baseline: Widely available (since Mar 2024)
6968
7014
  *
6969
7015
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
6970
7016
  */
6971
7017
  "scroll-margin-block-end"?: Property.ScrollMarginBlockEnd<TLength> | undefined;
6972
7018
  /**
6973
- * ✅ Baseline: Widely available (since Jul 2022)
7019
+ * ✅ Baseline: Widely available (since Mar 2024)
6974
7020
  *
6975
7021
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
6976
7022
  */
6977
7023
  "scroll-margin-block-start"?: Property.ScrollMarginBlockStart<TLength> | undefined;
6978
7024
  /**
6979
- * ✅ Baseline: Widely available (since Jul 2022)
7025
+ * ✅ Baseline: Widely available (since Oct 2023)
6980
7026
  *
6981
7027
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
6982
7028
  */
6983
7029
  "scroll-margin-bottom"?: Property.ScrollMarginBottom<TLength> | undefined;
6984
7030
  /**
6985
- * ✅ Baseline: Widely available (since Jul 2022)
7031
+ * ✅ Baseline: Widely available (since Mar 2024)
6986
7032
  *
6987
7033
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
6988
7034
  */
6989
7035
  "scroll-margin-inline"?: Property.ScrollMarginInline<TLength> | undefined;
6990
7036
  /**
6991
- * ✅ Baseline: Widely available (since Jul 2022)
7037
+ * ✅ Baseline: Widely available (since Mar 2024)
6992
7038
  *
6993
7039
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
6994
7040
  */
6995
7041
  "scroll-margin-inline-end"?: Property.ScrollMarginInlineEnd<TLength> | undefined;
6996
7042
  /**
6997
- * ✅ Baseline: Widely available (since Jul 2022)
7043
+ * ✅ Baseline: Widely available (since Mar 2024)
6998
7044
  *
6999
7045
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
7000
7046
  */
7001
7047
  "scroll-margin-inline-start"?: Property.ScrollMarginInlineStart<TLength> | undefined;
7002
7048
  /**
7003
- * ✅ Baseline: Widely available (since Jul 2022)
7049
+ * ✅ Baseline: Widely available (since Oct 2023)
7004
7050
  *
7005
7051
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
7006
7052
  */
7007
7053
  "scroll-margin-left"?: Property.ScrollMarginLeft<TLength> | undefined;
7008
7054
  /**
7009
- * ✅ Baseline: Widely available (since Jul 2022)
7055
+ * ✅ Baseline: Widely available (since Oct 2023)
7010
7056
  *
7011
7057
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
7012
7058
  */
7013
7059
  "scroll-margin-right"?: Property.ScrollMarginRight<TLength> | undefined;
7014
7060
  /**
7015
- * ✅ Baseline: Widely available (since Jul 2022)
7061
+ * ✅ Baseline: Widely available (since Oct 2023)
7016
7062
  *
7017
7063
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
7018
7064
  */
@@ -7026,67 +7072,67 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7026
7072
  */
7027
7073
  "scroll-marker-group"?: Property.ScrollMarkerGroup | undefined;
7028
7074
  /**
7029
- * ✅ Baseline: Widely available (since Jul 2022)
7075
+ * ✅ Baseline: Widely available (since Oct 2023)
7030
7076
  *
7031
7077
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding
7032
7078
  */
7033
7079
  "scroll-padding"?: Property.ScrollPadding<TLength> | undefined;
7034
7080
  /**
7035
- * ✅ Baseline: Widely available (since Jul 2022)
7081
+ * ✅ Baseline: Widely available (since Mar 2024)
7036
7082
  *
7037
7083
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
7038
7084
  */
7039
7085
  "scroll-padding-block"?: Property.ScrollPaddingBlock<TLength> | undefined;
7040
7086
  /**
7041
- * ✅ Baseline: Widely available (since Jul 2022)
7087
+ * ✅ Baseline: Widely available (since Mar 2024)
7042
7088
  *
7043
7089
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
7044
7090
  */
7045
7091
  "scroll-padding-block-end"?: Property.ScrollPaddingBlockEnd<TLength> | undefined;
7046
7092
  /**
7047
- * ✅ Baseline: Widely available (since Jul 2022)
7093
+ * ✅ Baseline: Widely available (since Mar 2024)
7048
7094
  *
7049
7095
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
7050
7096
  */
7051
7097
  "scroll-padding-block-start"?: Property.ScrollPaddingBlockStart<TLength> | undefined;
7052
7098
  /**
7053
- * ✅ Baseline: Widely available (since Jul 2022)
7099
+ * ✅ Baseline: Widely available (since Oct 2023)
7054
7100
  *
7055
7101
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom
7056
7102
  */
7057
7103
  "scroll-padding-bottom"?: Property.ScrollPaddingBottom<TLength> | undefined;
7058
7104
  /**
7059
- * ✅ Baseline: Widely available (since Jul 2022)
7105
+ * ✅ Baseline: Widely available (since Mar 2024)
7060
7106
  *
7061
7107
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
7062
7108
  */
7063
7109
  "scroll-padding-inline"?: Property.ScrollPaddingInline<TLength> | undefined;
7064
7110
  /**
7065
- * ✅ Baseline: Widely available (since Jul 2022)
7111
+ * ✅ Baseline: Widely available (since Mar 2024)
7066
7112
  *
7067
7113
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
7068
7114
  */
7069
7115
  "scroll-padding-inline-end"?: Property.ScrollPaddingInlineEnd<TLength> | undefined;
7070
7116
  /**
7071
- * ✅ Baseline: Widely available (since Jul 2022)
7117
+ * ✅ Baseline: Widely available (since Mar 2024)
7072
7118
  *
7073
7119
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
7074
7120
  */
7075
7121
  "scroll-padding-inline-start"?: Property.ScrollPaddingInlineStart<TLength> | undefined;
7076
7122
  /**
7077
- * ✅ Baseline: Widely available (since Jul 2022)
7123
+ * ✅ Baseline: Widely available (since Oct 2023)
7078
7124
  *
7079
7125
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left
7080
7126
  */
7081
7127
  "scroll-padding-left"?: Property.ScrollPaddingLeft<TLength> | undefined;
7082
7128
  /**
7083
- * ✅ Baseline: Widely available (since Jul 2022)
7129
+ * ✅ Baseline: Widely available (since Oct 2023)
7084
7130
  *
7085
7131
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right
7086
7132
  */
7087
7133
  "scroll-padding-right"?: Property.ScrollPaddingRight<TLength> | undefined;
7088
7134
  /**
7089
- * ✅ Baseline: Widely available (since Jul 2022)
7135
+ * ✅ Baseline: Widely available (since Oct 2023)
7090
7136
  *
7091
7137
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top
7092
7138
  */
@@ -7110,13 +7156,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7110
7156
  */
7111
7157
  "scroll-snap-points-y"?: Property.ScrollSnapPointsY | undefined;
7112
7158
  /**
7113
- * ✅ Baseline: Widely available (since Jul 2022)
7159
+ * ✅ Baseline: Widely available (since Jan 2025)
7114
7160
  *
7115
7161
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop
7116
7162
  */
7117
7163
  "scroll-snap-stop"?: Property.ScrollSnapStop | undefined;
7118
7164
  /**
7119
- * ✅ Baseline: Widely available (since Jul 2022)
7165
+ * ✅ Baseline: Widely available (since Oct 2024)
7120
7166
  *
7121
7167
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type
7122
7168
  */
@@ -7202,67 +7248,67 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7202
7248
  */
7203
7249
  "speak-as"?: Property.SpeakAs | undefined;
7204
7250
  /**
7205
- * ✅ Baseline: Widely available (since Jul 2022)
7251
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
7206
7252
  *
7207
7253
  * @see https://developer.mozilla.org/docs/Web/CSS/stop-color
7208
7254
  */
7209
7255
  "stop-color"?: Property.StopColor | undefined;
7210
7256
  /**
7211
- * ✅ Baseline: Widely available (since Jul 2022)
7257
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
7212
7258
  *
7213
7259
  * @see https://developer.mozilla.org/docs/Web/CSS/stop-opacity
7214
7260
  */
7215
7261
  "stop-opacity"?: Property.StopOpacity | undefined;
7216
7262
  /**
7217
- * ✅ Baseline: Widely available (since Jul 2022)
7263
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
7218
7264
  *
7219
7265
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke
7220
7266
  */
7221
7267
  "stroke"?: Property.Stroke | undefined;
7222
7268
  /**
7223
- * Baseline: Widely available (since Jul 2022)
7269
+ * Baseline: Not widely available
7224
7270
  *
7225
7271
  * @experimental
7226
7272
  */
7227
7273
  "stroke-color"?: Property.StrokeColor | undefined;
7228
7274
  /**
7229
- * ✅ Baseline: Widely available (since Jul 2022)
7275
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
7230
7276
  *
7231
7277
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-dasharray
7232
7278
  */
7233
7279
  "stroke-dasharray"?: Property.StrokeDasharray<TLength> | undefined;
7234
7280
  /**
7235
- * ✅ Baseline: Widely available (since Jul 2022)
7281
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
7236
7282
  *
7237
7283
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-dashoffset
7238
7284
  */
7239
7285
  "stroke-dashoffset"?: Property.StrokeDashoffset<TLength> | undefined;
7240
7286
  /**
7241
- * ✅ Baseline: Widely available (since Jul 2022)
7287
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
7242
7288
  *
7243
7289
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-linecap
7244
7290
  */
7245
7291
  "stroke-linecap"?: Property.StrokeLinecap | undefined;
7246
7292
  /**
7247
- * ✅ Baseline: Widely available (since Jul 2022)
7293
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
7248
7294
  *
7249
7295
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-linejoin
7250
7296
  */
7251
7297
  "stroke-linejoin"?: Property.StrokeLinejoin | undefined;
7252
7298
  /**
7253
- * ✅ Baseline: Widely available (since Jul 2022)
7299
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
7254
7300
  *
7255
7301
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-miterlimit
7256
7302
  */
7257
7303
  "stroke-miterlimit"?: Property.StrokeMiterlimit | undefined;
7258
7304
  /**
7259
- * ✅ Baseline: Widely available (since ≤2022-09-24)
7305
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
7260
7306
  *
7261
7307
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-opacity
7262
7308
  */
7263
7309
  "stroke-opacity"?: Property.StrokeOpacity | undefined;
7264
7310
  /**
7265
- * ✅ Baseline: Widely available (since Jul 2022)
7311
+ * ✅ Baseline: Widely available (since ≤2019-10-05)
7266
7312
  *
7267
7313
  * @see https://developer.mozilla.org/docs/Web/CSS/stroke-width
7268
7314
  */
@@ -7292,13 +7338,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7292
7338
  */
7293
7339
  "text-align-last"?: Property.TextAlignLast | undefined;
7294
7340
  /**
7295
- * ✅ Baseline: Widely available (since Jul 2022)
7341
+ * ✅ Baseline: Widely available (since ≤2019-02-02)
7296
7342
  *
7297
7343
  * @see https://developer.mozilla.org/docs/Web/CSS/text-anchor
7298
7344
  */
7299
7345
  "text-anchor"?: Property.TextAnchor | undefined;
7300
7346
  /**
7301
- * Baseline: Not widely available
7347
+ * ⚠️ Baseline: Newly available (since Nov 2025)
7302
7348
  *
7303
7349
  * @see https://developer.mozilla.org/docs/Web/CSS/text-autospace
7304
7350
  */
@@ -7328,7 +7374,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7328
7374
  */
7329
7375
  "text-decoration"?: Property.TextDecoration<TLength> | undefined;
7330
7376
  /**
7331
- * ✅ Baseline: Widely available (since Jan 2018)
7377
+ * ✅ Baseline: Widely available (since Jul 2022)
7332
7378
  *
7333
7379
  * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color
7334
7380
  */
@@ -7342,13 +7388,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7342
7388
  */
7343
7389
  "text-decoration-inset"?: Property.TextDecorationInset<TLength> | undefined;
7344
7390
  /**
7345
- * ✅ Baseline: Widely available (since Jan 2018)
7391
+ * ✅ Baseline: Widely available (since Jul 2022)
7346
7392
  *
7347
7393
  * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line
7348
7394
  */
7349
7395
  "text-decoration-line"?: Property.TextDecorationLine | undefined;
7350
7396
  /**
7351
- * Baseline: Widely available (since Jan 2018)
7397
+ * Baseline: Not widely available
7352
7398
  *
7353
7399
  * @experimental
7354
7400
  *
@@ -7356,19 +7402,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7356
7402
  */
7357
7403
  "text-decoration-skip"?: Property.TextDecorationSkip | undefined;
7358
7404
  /**
7359
- * ✅ Baseline: Widely available (since Jan 2018)
7405
+ * ✅ Baseline: Widely available (since Sep 2024)
7360
7406
  *
7361
7407
  * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink
7362
7408
  */
7363
7409
  "text-decoration-skip-ink"?: Property.TextDecorationSkipInk | undefined;
7364
7410
  /**
7365
- * ✅ Baseline: Widely available (since Jan 2018)
7411
+ * ✅ Baseline: Widely available (since Jul 2022)
7366
7412
  *
7367
7413
  * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style
7368
7414
  */
7369
7415
  "text-decoration-style"?: Property.TextDecorationStyle | undefined;
7370
7416
  /**
7371
- * ✅ Baseline: Widely available (since Jan 2018)
7417
+ * ✅ Baseline: Widely available (since Sep 2023)
7372
7418
  *
7373
7419
  * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
7374
7420
  */
@@ -7468,7 +7514,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7468
7514
  */
7469
7515
  "text-underline-position"?: Property.TextUnderlinePosition | undefined;
7470
7516
  /**
7471
- * ⚠️ Baseline: Newly available (since Oct 2024)
7517
+ * ⚠️ Baseline: Newly available (since Mar 2024)
7472
7518
  *
7473
7519
  * @see https://developer.mozilla.org/docs/Web/CSS/text-wrap
7474
7520
  */
@@ -7561,7 +7607,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7561
7607
  */
7562
7608
  "transform"?: Property.Transform | undefined;
7563
7609
  /**
7564
- * ⚠️ Baseline: Newly available (since Apr 2024)
7610
+ * Baseline: Widely available (since Jul 2022)
7565
7611
  *
7566
7612
  * @see https://developer.mozilla.org/docs/Web/CSS/transform-box
7567
7613
  */
@@ -7573,7 +7619,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7573
7619
  */
7574
7620
  "transform-origin"?: Property.TransformOrigin<TLength> | undefined;
7575
7621
  /**
7576
- * ✅ Baseline: Widely available (since Sep 2024)
7622
+ * ✅ Baseline: Widely available (since Mar 2018)
7577
7623
  *
7578
7624
  * @see https://developer.mozilla.org/docs/Web/CSS/transform-style
7579
7625
  */
@@ -7628,7 +7674,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7628
7674
  */
7629
7675
  "trigger-scope"?: Property.TriggerScope | undefined;
7630
7676
  /**
7631
- * ✅ Baseline: Widely available (since Jul 2022)
7677
+ * ✅ Baseline: Widely available (since Jan 2018)
7632
7678
  *
7633
7679
  * @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi
7634
7680
  */
@@ -7722,7 +7768,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7722
7768
  */
7723
7769
  "will-change"?: Property.WillChange | undefined;
7724
7770
  /**
7725
- * ✅ Baseline: Widely available (since Mar 2018)
7771
+ * ✅ Baseline: Widely available (since Jan 2018)
7726
7772
  *
7727
7773
  * @see https://developer.mozilla.org/docs/Web/CSS/word-break
7728
7774
  */
@@ -7745,13 +7791,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
7745
7791
  */
7746
7792
  "writing-mode"?: Property.WritingMode | undefined;
7747
7793
  /**
7748
- * ✅ Baseline: Widely available (since Jul 2022)
7794
+ * ✅ Baseline: Widely available (since Jan 2023)
7749
7795
  *
7750
7796
  * @see https://developer.mozilla.org/docs/Web/CSS/x
7751
7797
  */
7752
7798
  "x"?: Property.X<TLength> | undefined;
7753
7799
  /**
7754
- * ✅ Baseline: Widely available (since Jul 2022)
7800
+ * ✅ Baseline: Widely available (since Jan 2023)
7755
7801
  *
7756
7802
  * @see https://developer.mozilla.org/docs/Web/CSS/y
7757
7803
  */
@@ -7777,62 +7823,62 @@ type AtRules = AtRules.Regular | AtRules.Nested;
7777
7823
  type Pseudos = "::-moz-progress-bar" | "::-moz-range-progress" | "::-moz-range-thumb" | "::-moz-range-track" | "::-ms-browse" | "::-ms-check" | "::-ms-clear" | "::-ms-expand" | "::-ms-fill" | "::-ms-fill-lower" | "::-ms-fill-upper" | "::-ms-reveal" | "::-ms-thumb" | "::-ms-ticks-after" | "::-ms-ticks-before" | "::-ms-tooltip" | "::-ms-track" | "::-ms-value" | "::-webkit-progress-bar" | "::-webkit-progress-inner-value" | "::-webkit-progress-value" | "::-webkit-slider-runnable-track" | "::-webkit-slider-thumb" | "::after" | "::backdrop" | "::before" | "::checkmark" | "::cue" | "::cue()" | "::cue-region" | "::cue-region()" | "::details-content" | "::file-selector-button" | "::first-letter" | "::first-line" | "::grammar-error" | "::highlight()" | "::marker" | "::part()" | "::picker()" | "::picker-icon" | "::placeholder" | "::scroll-marker" | "::scroll-marker-group" | "::selection" | "::slotted()" | "::spelling-error" | "::target-text" | "::view-transition" | "::view-transition-group()" | "::view-transition-image-pair()" | "::view-transition-new()" | "::view-transition-old()" | ":active" | ":active-view-transition" | ":active-view-transition-type()" | ":any-link" | ":autofill" | ":blank" | ":buffering" | ":checked" | ":current" | ":default" | ":defined" | ":dir()" | ":disabled" | ":empty" | ":enabled" | ":first" | ":first-child" | ":first-of-type" | ":focus" | ":focus-visible" | ":focus-within" | ":fullscreen" | ":future" | ":has()" | ":has-slotted" | ":host" | ":host()" | ":host-context()" | ":hover" | ":in-range" | ":indeterminate" | ":invalid" | ":is()" | ":lang()" | ":last-child" | ":last-of-type" | ":left" | ":link" | ":local-link" | ":modal" | ":muted" | ":not()" | ":nth-child()" | ":nth-last-child()" | ":nth-last-of-type()" | ":nth-of-type()" | ":only-child" | ":only-of-type" | ":open" | ":optional" | ":out-of-range" | ":past" | ":paused" | ":picture-in-picture" | ":placeholder-shown" | ":playing" | ":popover-open" | ":read-only" | ":read-write" | ":required" | ":right" | ":root" | ":scope" | ":seeking" | ":stalled" | ":state()" | ":target" | ":target-current" | ":target-within" | ":user-invalid" | ":user-valid" | ":valid" | ":visited" | ":volume-locked" | ":where()" | ":xr-overlay";
7778
7824
  declare namespace Property {
7779
7825
  type AccentColor = Globals | "auto" | DataType.Color;
7780
- type AlignContent = Globals | "normal" | UnionString$1 | DataType.ContentDistribution | DataType.ContentPosition;
7781
- type AlignItems = Globals | "normal" | "stretch" | UnionString$1 | DataType.SelfPosition | "anchor-center";
7826
+ type AlignContent = Globals | "normal" | DataType.ContentDistribution | DataType.ContentPosition;
7827
+ type AlignItems = Globals | "normal" | "stretch" | DataType.SelfPosition | "anchor-center";
7782
7828
  type AlignmentBaseline = Globals | "baseline" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "text-before-edge" | "text-after-edge";
7783
- type AlignSelf = Globals | "auto" | "normal" | "stretch" | UnionString$1 | DataType.SelfPosition | "anchor-center";
7784
- type AlignTracks = Globals | UnionString$1 | DataType.ContentDistribution | DataType.ContentPosition;
7829
+ type AlignSelf = Globals | "auto" | "normal" | "stretch" | DataType.SelfPosition | "anchor-center";
7830
+ type AlignTracks = Globals | DataType.ContentDistribution | DataType.ContentPosition;
7785
7831
  type All = Globals | "initial" | "inherit" | "unset" | "revert" | "revert-layer";
7786
- type AnchorName = Globals | "none" | UnionString$1;
7787
- type AnchorScope = Globals | "none" | "all" | UnionString$1;
7788
- type Animation<TTime = DefaultTTime> = Globals | UnionString$1 | DataType.EasingFunction | DataType.SingleAnimationDirection | DataType.SingleAnimationFillMode | DataType.SingleAnimationTimeline | TTime;
7832
+ type AnchorName = Globals | "none";
7833
+ type AnchorScope = Globals | "none" | "all";
7834
+ type Animation<TTime = DefaultTTime> = Globals | DataType.EasingFunction | DataType.SingleAnimationDirection | DataType.SingleAnimationFillMode | DataType.SingleAnimationTimeline | TTime;
7789
7835
  type AnimationComposition = Globals | DataType.SingleAnimationComposition;
7790
7836
  type AnimationDelay<TTime = DefaultTTime> = Globals | TTime;
7791
7837
  type AnimationDirection = Globals | DataType.SingleAnimationDirection;
7792
- type AnimationDuration<TTime = DefaultTTime> = Globals | UnionString$1 | TTime;
7838
+ type AnimationDuration<TTime = DefaultTTime> = Globals | TTime;
7793
7839
  type AnimationFillMode = Globals | DataType.SingleAnimationFillMode;
7794
- type AnimationIterationCount = Globals | "infinite" | UnionString$1;
7795
- type AnimationName = Globals | UnionString$1;
7840
+ type AnimationIterationCount = Globals | "infinite";
7841
+ type AnimationName = Globals;
7796
7842
  type AnimationPlayState = Globals | "running" | "paused";
7797
- type AnimationRange<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | DataType.TimelineRangeName;
7798
- type AnimationRangeEnd<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | DataType.TimelineRangeName;
7799
- type AnimationRangeStart<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | DataType.TimelineRangeName;
7843
+ type AnimationRange<TLength = DefaultTLength> = Globals | TLength | DataType.TimelineRangeName;
7844
+ type AnimationRangeEnd<TLength = DefaultTLength> = Globals | TLength | DataType.TimelineRangeName;
7845
+ type AnimationRangeStart<TLength = DefaultTLength> = Globals | TLength | DataType.TimelineRangeName;
7800
7846
  type AnimationTimeline = Globals | DataType.SingleAnimationTimeline;
7801
7847
  type AnimationTimingFunction = Globals | DataType.EasingFunction;
7802
- type AnimationTrigger = Globals | UnionString$1;
7848
+ type AnimationTrigger = Globals;
7803
7849
  type Appearance = Globals | "none" | "auto" | DataType.CompatAuto | "textfield" | "menulist-button";
7804
- type AspectRatio = Globals | UnionString$1;
7805
- type BackdropFilter = Globals | "none" | UnionString$1;
7850
+ type AspectRatio = Globals;
7851
+ type BackdropFilter = Globals | "none";
7806
7852
  type BackfaceVisibility = Globals | "visible" | "hidden";
7807
- type Background = Globals | UnionString$1;
7853
+ type Background = Globals;
7808
7854
  type BackgroundAttachment = Globals | DataType.Attachment;
7809
7855
  type BackgroundBlendMode = Globals | DataType.BlendMode;
7810
7856
  type BackgroundClip = Globals | DataType.BgClip;
7811
7857
  type BackgroundColor = Globals | DataType.Color;
7812
- type BackgroundImage = Globals | UnionString$1 | "none";
7858
+ type BackgroundImage = Globals | "none";
7813
7859
  type BackgroundOrigin = Globals | DataType.VisualBox;
7814
- type BackgroundPosition<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
7815
- type BackgroundPositionX<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
7816
- type BackgroundPositionY<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
7860
+ type BackgroundPosition<TLength = DefaultTLength> = Globals | TLength;
7861
+ type BackgroundPositionX<TLength = DefaultTLength> = Globals | TLength;
7862
+ type BackgroundPositionY<TLength = DefaultTLength> = Globals | TLength;
7817
7863
  type BackgroundRepeat = Globals | DataType.RepeatStyle;
7818
- type BackgroundSize<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | "cover" | "contain";
7864
+ type BackgroundSize<TLength = DefaultTLength> = Globals | TLength | "cover" | "contain";
7819
7865
  type BaselineShift<TLength = DefaultTLength> = Globals | TLength | "sub" | "super" | "baseline";
7820
7866
  type BaselineSource = Globals | "auto" | "first" | "last";
7821
- type BlockSize<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
7822
- type Border<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
7823
- type BorderBlock<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
7867
+ type BlockSize<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
7868
+ type Border<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
7869
+ type BorderBlock<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
7824
7870
  type BorderBlockColor = Globals | DataType.Color;
7825
- type BorderBlockEnd<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
7871
+ type BorderBlockEnd<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
7826
7872
  type BorderBlockEndColor = Globals | DataType.Color;
7827
7873
  type BorderBlockEndStyle = Globals | DataType.LineStyle;
7828
7874
  type BorderBlockEndWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
7829
- type BorderBlockStart<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
7875
+ type BorderBlockStart<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
7830
7876
  type BorderBlockStartColor = Globals | DataType.Color;
7831
7877
  type BorderBlockStartStyle = Globals | DataType.LineStyle;
7832
7878
  type BorderBlockStartWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
7833
7879
  type BorderBlockStyle = Globals | DataType.LineStyle;
7834
7880
  type BorderBlockWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
7835
- type BorderBottom<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
7881
+ type BorderBottom<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
7836
7882
  type BorderBottomColor = Globals | DataType.Color;
7837
7883
  type BorderBottomLeftRadius<TLength = DefaultTLength> = Globals | TLength;
7838
7884
  type BorderBottomRightRadius<TLength = DefaultTLength> = Globals | TLength;
@@ -7842,30 +7888,30 @@ declare namespace Property {
7842
7888
  type BorderColor = Globals | DataType.Color;
7843
7889
  type BorderEndEndRadius<TLength = DefaultTLength> = Globals | TLength;
7844
7890
  type BorderEndStartRadius<TLength = DefaultTLength> = Globals | TLength;
7845
- type BorderImage<TLength = DefaultTLength> = Globals | UnionString$1 | "none" | TLength;
7846
- type BorderImageOutset<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
7847
- type BorderImageRepeat = Globals | UnionString$1;
7848
- type BorderImageSlice = Globals | UnionString$1;
7849
- type BorderImageSource = Globals | "none" | UnionString$1;
7850
- type BorderImageWidth<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
7851
- type BorderInline<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
7891
+ type BorderImage<TLength = DefaultTLength> = Globals | "none" | TLength;
7892
+ type BorderImageOutset<TLength = DefaultTLength> = Globals | TLength;
7893
+ type BorderImageRepeat = Globals;
7894
+ type BorderImageSlice = Globals;
7895
+ type BorderImageSource = Globals | "none";
7896
+ type BorderImageWidth<TLength = DefaultTLength> = Globals | TLength;
7897
+ type BorderInline<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
7852
7898
  type BorderInlineColor = Globals | DataType.Color;
7853
- type BorderInlineEnd<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
7899
+ type BorderInlineEnd<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
7854
7900
  type BorderInlineEndColor = Globals | DataType.Color;
7855
7901
  type BorderInlineEndStyle = Globals | DataType.LineStyle;
7856
7902
  type BorderInlineEndWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
7857
- type BorderInlineStart<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
7903
+ type BorderInlineStart<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
7858
7904
  type BorderInlineStartColor = Globals | DataType.Color;
7859
7905
  type BorderInlineStartStyle = Globals | DataType.LineStyle;
7860
7906
  type BorderInlineStartWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
7861
7907
  type BorderInlineStyle = Globals | DataType.LineStyle;
7862
7908
  type BorderInlineWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
7863
- type BorderLeft<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
7909
+ type BorderLeft<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
7864
7910
  type BorderLeftColor = Globals | DataType.Color;
7865
7911
  type BorderLeftStyle = Globals | DataType.LineStyle;
7866
7912
  type BorderLeftWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
7867
- type BorderRadius<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
7868
- type BorderRight<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
7913
+ type BorderRadius<TLength = DefaultTLength> = Globals | TLength;
7914
+ type BorderRight<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
7869
7915
  type BorderRightColor = Globals | DataType.Color;
7870
7916
  type BorderRightStyle = Globals | DataType.LineStyle;
7871
7917
  type BorderRightWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
@@ -7873,198 +7919,198 @@ declare namespace Property {
7873
7919
  type BorderStartEndRadius<TLength = DefaultTLength> = Globals | TLength;
7874
7920
  type BorderStartStartRadius<TLength = DefaultTLength> = Globals | TLength;
7875
7921
  type BorderStyle = Globals | DataType.LineStyle;
7876
- type BorderTop<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
7922
+ type BorderTop<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
7877
7923
  type BorderTopColor = Globals | DataType.Color;
7878
7924
  type BorderTopLeftRadius<TLength = DefaultTLength> = Globals | TLength;
7879
7925
  type BorderTopRightRadius<TLength = DefaultTLength> = Globals | TLength;
7880
7926
  type BorderTopStyle = Globals | DataType.LineStyle;
7881
7927
  type BorderTopWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
7882
7928
  type BorderWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
7883
- type Bottom<TLength = DefaultTLength> = Globals | "auto" | TLength | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
7929
+ type Bottom<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
7884
7930
  type BoxAlign = Globals | "start" | "center" | "end" | "baseline" | "stretch";
7885
7931
  type BoxDecorationBreak = Globals | "slice" | "clone";
7886
7932
  type BoxDirection = Globals | "normal" | "reverse" | "inherit";
7887
- type BoxFlex = Globals | UnionString$1;
7888
- type BoxFlexGroup = Globals | UnionString$1;
7933
+ type BoxFlex = Globals;
7934
+ type BoxFlexGroup = Globals;
7889
7935
  type BoxLines = Globals | "single" | "multiple";
7890
- type BoxOrdinalGroup = Globals | UnionString$1;
7936
+ type BoxOrdinalGroup = Globals;
7891
7937
  type BoxOrient = Globals | "horizontal" | "vertical" | "inline-axis" | "block-axis" | "inherit";
7892
7938
  type BoxPack = Globals | "start" | "center" | "end" | "justify";
7893
- type BoxShadow<TLength = DefaultTLength> = Globals | "none" | UnionString$1 | TLength | DataType.Color;
7939
+ type BoxShadow<TLength = DefaultTLength> = Globals | "none" | TLength | DataType.Color;
7894
7940
  type BoxSizing = Globals | "content-box" | "border-box";
7895
7941
  type BreakAfter = Globals | "auto" | "avoid" | "always" | "all" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
7896
7942
  type BreakBefore = Globals | "auto" | "avoid" | "always" | "all" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
7897
7943
  type BreakInside = Globals | "auto" | "avoid" | "avoid-page" | "avoid-column" | "avoid-region";
7898
7944
  type CaptionSide = Globals | "top" | "bottom";
7899
- type Caret = Globals | UnionString$1 | "auto" | DataType.Color | "manual" | "bar" | "block" | "underscore";
7945
+ type Caret = Globals | "auto" | DataType.Color | "manual" | "bar" | "block" | "underscore";
7900
7946
  type CaretAnimation = Globals | "auto" | "manual";
7901
7947
  type CaretColor = Globals | "auto" | DataType.Color;
7902
7948
  type CaretShape = Globals | "auto" | "bar" | "block" | "underscore";
7903
7949
  type Clear = Globals | "none" | "left" | "right" | "both" | "inline-start" | "inline-end";
7904
- type Clip = Globals | UnionString$1 | "auto";
7905
- type ClipPath = Globals | UnionString$1 | DataType.GeometryBox | "none";
7950
+ type Clip = Globals | "auto";
7951
+ type ClipPath = Globals | DataType.GeometryBox | "none";
7906
7952
  type ClipRule = Globals | "nonzero" | "evenodd";
7907
7953
  type Color = Globals | DataType.Color;
7908
7954
  type ColorInterpolation = Globals | "auto" | "sRGB" | "linearRGB";
7909
7955
  type ColorInterpolationFilters = Globals | "auto" | "sRGB" | "linearRGB";
7910
7956
  type ColorRendering = Globals | "auto" | "optimizeSpeed" | "optimizeQuality";
7911
- type ColorScheme = Globals | "normal" | UnionString$1;
7912
- type ColumnCount = Globals | UnionString$1 | "auto";
7957
+ type ColorScheme = Globals | "normal";
7958
+ type ColumnCount = Globals | "auto";
7913
7959
  type ColumnFill = Globals | "auto" | "balance";
7914
7960
  type ColumnGap<TLength = DefaultTLength> = Globals | "normal" | TLength;
7915
7961
  type ColumnHeight<TLength = DefaultTLength> = Globals | "auto" | TLength;
7916
- type ColumnRule<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
7962
+ type ColumnRule<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
7917
7963
  type ColumnRuleColor = Globals | DataType.Color;
7918
7964
  type ColumnRuleStyle = Globals | DataType.LineStyle;
7919
7965
  type ColumnRuleWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
7920
- type Columns<TLength = DefaultTLength> = Globals | UnionString$1 | "auto" | TLength;
7966
+ type Columns<TLength = DefaultTLength> = Globals | "auto" | TLength;
7921
7967
  type ColumnSpan = Globals | "none" | "all";
7922
7968
  type ColumnWidth<TLength = DefaultTLength> = Globals | "auto" | TLength;
7923
7969
  type ColumnWrap = Globals | "auto" | "nowrap" | "wrap";
7924
- type Contain = Globals | "none" | "strict" | "content" | UnionString$1;
7925
- type Container = Globals | UnionString$1 | "none" | "normal";
7926
- type ContainerName = Globals | "none" | UnionString$1;
7927
- type ContainerType = Globals | "normal" | UnionString$1;
7928
- type ContainIntrinsicBlockSize<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
7929
- type ContainIntrinsicHeight<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
7930
- type ContainIntrinsicInlineSize<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
7931
- type ContainIntrinsicSize<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
7932
- type ContainIntrinsicWidth<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
7933
- type Content = Globals | "normal" | "none" | UnionString$1;
7970
+ type Contain = Globals | "none" | "strict" | "content";
7971
+ type Container = Globals | "none" | "normal";
7972
+ type ContainerName = Globals | "none";
7973
+ type ContainerType = Globals | "normal";
7974
+ type ContainIntrinsicBlockSize<TLength = DefaultTLength> = Globals | TLength;
7975
+ type ContainIntrinsicHeight<TLength = DefaultTLength> = Globals | TLength;
7976
+ type ContainIntrinsicInlineSize<TLength = DefaultTLength> = Globals | TLength;
7977
+ type ContainIntrinsicSize<TLength = DefaultTLength> = Globals | TLength;
7978
+ type ContainIntrinsicWidth<TLength = DefaultTLength> = Globals | TLength;
7979
+ type Content = Globals | "normal" | "none";
7934
7980
  type ContentVisibility = Globals | "visible" | "auto" | "hidden";
7935
- type CornerBlockEndShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7936
- type CornerBlockStartShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7937
- type CornerBottomLeftShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7938
- type CornerBottomRightShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7939
- type CornerBottomShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7940
- type CornerEndEndShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7941
- type CornerEndStartShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7942
- type CornerInlineEndShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7943
- type CornerInlineStartShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7944
- type CornerLeftShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7945
- type CornerRightShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7946
- type CornerShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7947
- type CornerStartEndShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7948
- type CornerStartStartShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7949
- type CornerTopLeftShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7950
- type CornerTopRightShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7951
- type CornerTopShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle" | UnionString$1;
7952
- type CounterIncrement = Globals | UnionString$1 | "none";
7953
- type CounterReset = Globals | UnionString$1 | "none";
7954
- type CounterSet = Globals | UnionString$1 | "none";
7955
- type Cursor = Globals | UnionString$1 | DataType.CursorPredefined;
7956
- type Cx<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
7957
- type Cy<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
7958
- type D = Globals | "none" | UnionString$1;
7981
+ type CornerBlockEndShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7982
+ type CornerBlockStartShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7983
+ type CornerBottomLeftShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7984
+ type CornerBottomRightShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7985
+ type CornerBottomShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7986
+ type CornerEndEndShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7987
+ type CornerEndStartShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7988
+ type CornerInlineEndShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7989
+ type CornerInlineStartShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7990
+ type CornerLeftShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7991
+ type CornerRightShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7992
+ type CornerShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7993
+ type CornerStartEndShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7994
+ type CornerStartStartShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7995
+ type CornerTopLeftShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7996
+ type CornerTopRightShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7997
+ type CornerTopShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle";
7998
+ type CounterIncrement = Globals | "none";
7999
+ type CounterReset = Globals | "none";
8000
+ type CounterSet = Globals | "none";
8001
+ type Cursor = Globals | DataType.CursorPredefined;
8002
+ type Cx<TLength = DefaultTLength> = Globals | TLength;
8003
+ type Cy<TLength = DefaultTLength> = Globals | TLength;
8004
+ type D = Globals | "none";
7959
8005
  type Direction = Globals | "ltr" | "rtl";
7960
- type Display = Globals | UnionString$1 | DataType.DisplayOutside | DataType.DisplayInside | DataType.DisplayInternal | "contents" | "none" | DataType.DisplayLegacy;
8006
+ type Display = Globals | DataType.DisplayOutside | DataType.DisplayInside | DataType.DisplayInternal | "contents" | "none" | DataType.DisplayLegacy;
7961
8007
  type DominantBaseline = Globals | "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top";
7962
- type DynamicRangeLimit = Globals | "standard" | "no-limit" | "constrained" | UnionString$1;
8008
+ type DynamicRangeLimit = Globals | "standard" | "no-limit" | "constrained";
7963
8009
  type EmptyCells = Globals | "show" | "hide";
7964
8010
  type FieldSizing = Globals | "content" | "fixed";
7965
8011
  type Fill = Globals | DataType.Paint;
7966
- type FillOpacity = Globals | UnionString$1;
8012
+ type FillOpacity = Globals;
7967
8013
  type FillRule = Globals | "nonzero" | "evenodd";
7968
- type Filter = Globals | "none" | UnionString$1;
7969
- type Flex<TLength = DefaultTLength> = Globals | "none" | UnionString$1 | "content" | "auto" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
7970
- type FlexBasis<TLength = DefaultTLength> = Globals | "content" | "auto" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8014
+ type Filter = Globals | "none";
8015
+ type Flex<TLength = DefaultTLength> = Globals | "none" | "content" | "auto" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8016
+ type FlexBasis<TLength = DefaultTLength> = Globals | "content" | "auto" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
7971
8017
  type FlexDirection = Globals | "row" | "row-reverse" | "column" | "column-reverse";
7972
- type FlexFlow = Globals | UnionString$1 | "row" | "row-reverse" | "column" | "column-reverse" | "nowrap" | "wrap" | "wrap-reverse";
7973
- type FlexGrow = Globals | UnionString$1;
7974
- type FlexShrink = Globals | UnionString$1;
8018
+ type FlexFlow = Globals | "row" | "row-reverse" | "column" | "column-reverse" | "nowrap" | "wrap" | "wrap-reverse";
8019
+ type FlexGrow = Globals;
8020
+ type FlexShrink = Globals;
7975
8021
  type FlexWrap = Globals | "nowrap" | "wrap" | "wrap-reverse";
7976
8022
  type Float = Globals | "left" | "right" | "none" | "inline-start" | "inline-end";
7977
8023
  type FloodColor = Globals | DataType.Color;
7978
- type FloodOpacity = Globals | UnionString$1;
7979
- type Font<TLength = DefaultTLength> = Globals | UnionString$1 | "normal" | "italic" | DataType.FontWeightAbsolute | "bolder" | "lighter" | DataType.AbsoluteSize | "larger" | "smaller" | TLength | "math" | DataType.GenericFamily | "caption" | "icon" | "menu" | "message-box" | "small-caption" | "status-bar";
7980
- type FontFamily = Globals | UnionString$1 | DataType.GenericFamily;
7981
- type FontFeatureSettings = Globals | "normal" | UnionString$1;
8024
+ type FloodOpacity = Globals;
8025
+ type Font<TLength = DefaultTLength> = Globals | "normal" | "italic" | DataType.FontWeightAbsolute | "bolder" | "lighter" | DataType.AbsoluteSize | "larger" | "smaller" | TLength | "math" | DataType.GenericFamily | "caption" | "icon" | "menu" | "message-box" | "small-caption" | "status-bar";
8026
+ type FontFamily = Globals | DataType.GenericFamily;
8027
+ type FontFeatureSettings = Globals | "normal";
7982
8028
  type FontKerning = Globals | "auto" | "normal" | "none";
7983
- type FontLanguageOverride = Globals | "normal" | UnionString$1;
8029
+ type FontLanguageOverride = Globals | "normal";
7984
8030
  type FontOpticalSizing = Globals | "auto" | "none";
7985
- type FontPalette = Globals | "normal" | "light" | "dark" | UnionString$1;
8031
+ type FontPalette = Globals | "normal" | "light" | "dark";
7986
8032
  type FontSize<TLength = DefaultTLength> = Globals | DataType.AbsoluteSize | "larger" | "smaller" | TLength | "math";
7987
- type FontSizeAdjust = Globals | "none" | UnionString$1;
8033
+ type FontSizeAdjust = Globals | "none";
7988
8034
  type FontSmooth<TLength = DefaultTLength> = Globals | "auto" | "never" | "always" | DataType.AbsoluteSize | TLength;
7989
8035
  type FontStretch = Globals | DataType.FontStretchAbsolute;
7990
- type FontStyle = Globals | "normal" | "italic" | UnionString$1;
7991
- type FontSynthesis = Globals | "none" | UnionString$1;
8036
+ type FontStyle = Globals | "normal" | "italic";
8037
+ type FontSynthesis = Globals | "none";
7992
8038
  type FontSynthesisPosition = Globals | "auto" | "none";
7993
8039
  type FontSynthesisSmallCaps = Globals | "auto" | "none";
7994
8040
  type FontSynthesisStyle = Globals | "auto" | "none";
7995
8041
  type FontSynthesisWeight = Globals | "auto" | "none";
7996
- type FontVariant = Globals | "normal" | "none" | UnionString$1 | DataType.EastAsianVariantValues;
7997
- type FontVariantAlternates = Globals | "normal" | UnionString$1;
8042
+ type FontVariant = Globals | "normal" | "none" | DataType.EastAsianVariantValues;
8043
+ type FontVariantAlternates = Globals | "normal";
7998
8044
  type FontVariantCaps = Globals | "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps";
7999
- type FontVariantEastAsian = Globals | "normal" | UnionString$1 | DataType.EastAsianVariantValues;
8045
+ type FontVariantEastAsian = Globals | "normal" | DataType.EastAsianVariantValues;
8000
8046
  type FontVariantEmoji = Globals | "normal" | "text" | "emoji" | "unicode";
8001
- type FontVariantLigatures = Globals | "normal" | "none" | UnionString$1;
8002
- type FontVariantNumeric = Globals | "normal" | UnionString$1;
8047
+ type FontVariantLigatures = Globals | "normal" | "none";
8048
+ type FontVariantNumeric = Globals | "normal";
8003
8049
  type FontVariantPosition = Globals | "normal" | "sub" | "super";
8004
- type FontVariationSettings = Globals | "normal" | UnionString$1;
8050
+ type FontVariationSettings = Globals | "normal";
8005
8051
  type FontWeight = Globals | DataType.FontWeightAbsolute | "bolder" | "lighter";
8006
- type FontWidth = Globals | "normal" | UnionString$1 | "ultra-condensed" | "extra-condensed" | "condensed" | "semi-condensed" | "semi-expanded" | "expanded" | "extra-expanded" | "ultra-expanded";
8052
+ type FontWidth = Globals | "normal" | "ultra-condensed" | "extra-condensed" | "condensed" | "semi-condensed" | "semi-expanded" | "expanded" | "extra-expanded" | "ultra-expanded";
8007
8053
  type ForcedColorAdjust = Globals | "auto" | "none" | "preserve-parent-color";
8008
- type Gap<TLength = DefaultTLength> = Globals | UnionString$1 | "normal" | TLength;
8009
- type GlyphOrientationVertical = Globals | "auto" | UnionString$1;
8010
- type Grid<TLength = DefaultTLength> = Globals | "none" | UnionString$1 | TLength | "min-content" | "max-content" | "auto";
8011
- type GridArea = Globals | UnionString$1;
8012
- type GridAutoColumns<TLength = DefaultTLength> = Globals | TLength | UnionString$1 | "min-content" | "max-content" | "auto";
8013
- type GridAutoFlow = Globals | UnionString$1;
8014
- type GridAutoRows<TLength = DefaultTLength> = Globals | TLength | UnionString$1 | "min-content" | "max-content" | "auto";
8015
- type GridColumn = Globals | UnionString$1;
8016
- type GridColumnEnd = Globals | "auto" | UnionString$1;
8054
+ type Gap<TLength = DefaultTLength> = Globals | "normal" | TLength;
8055
+ type GlyphOrientationVertical = Globals | "auto";
8056
+ type Grid<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "auto";
8057
+ type GridArea = Globals;
8058
+ type GridAutoColumns<TLength = DefaultTLength> = Globals | TLength | "min-content" | "max-content" | "auto";
8059
+ type GridAutoFlow = Globals;
8060
+ type GridAutoRows<TLength = DefaultTLength> = Globals | TLength | "min-content" | "max-content" | "auto";
8061
+ type GridColumn = Globals;
8062
+ type GridColumnEnd = Globals | "auto";
8017
8063
  type GridColumnGap<TLength = DefaultTLength> = Globals | TLength;
8018
- type GridColumnStart = Globals | "auto" | UnionString$1;
8019
- type GridGap<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8020
- type GridRow = Globals | UnionString$1;
8021
- type GridRowEnd = Globals | "auto" | UnionString$1;
8064
+ type GridColumnStart = Globals | "auto";
8065
+ type GridGap<TLength = DefaultTLength> = Globals | TLength;
8066
+ type GridRow = Globals;
8067
+ type GridRowEnd = Globals | "auto";
8022
8068
  type GridRowGap<TLength = DefaultTLength> = Globals | TLength;
8023
- type GridRowStart = Globals | "auto" | UnionString$1;
8024
- type GridTemplate = Globals | "none" | UnionString$1;
8025
- type GridTemplateAreas = Globals | "none" | UnionString$1;
8026
- type GridTemplateColumns = Globals | "none" | UnionString$1;
8027
- type GridTemplateRows = Globals | "none" | UnionString$1;
8028
- type HangingPunctuation = Globals | "none" | UnionString$1;
8029
- type Height<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8030
- type HyphenateCharacter = Globals | "auto" | UnionString$1;
8031
- type HyphenateLimitChars = Globals | UnionString$1;
8069
+ type GridRowStart = Globals | "auto";
8070
+ type GridTemplate = Globals | "none";
8071
+ type GridTemplateAreas = Globals | "none";
8072
+ type GridTemplateColumns = Globals | "none";
8073
+ type GridTemplateRows = Globals | "none";
8074
+ type HangingPunctuation = Globals | "none";
8075
+ type Height<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8076
+ type HyphenateCharacter = Globals | "auto";
8077
+ type HyphenateLimitChars = Globals;
8032
8078
  type Hyphens = Globals | "none" | "manual" | "auto";
8033
- type ImageOrientation = Globals | "from-image" | UnionString$1;
8079
+ type ImageOrientation = Globals | "from-image";
8034
8080
  type ImageRendering = Globals | "auto" | "crisp-edges" | "pixelated" | "smooth";
8035
- type ImageResolution = Globals | UnionString$1;
8081
+ type ImageResolution = Globals;
8036
8082
  type ImeMode = Globals | "auto" | "normal" | "active" | "inactive" | "disabled";
8037
- type InitialLetter = Globals | "normal" | UnionString$1;
8038
- type InitialLetterAlign = Globals | UnionString$1;
8039
- type InlineSize<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8040
- type Inset<TLength = DefaultTLength> = Globals | "auto" | TLength | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8041
- type InsetBlock<TLength = DefaultTLength> = Globals | "auto" | TLength | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8042
- type InsetBlockEnd<TLength = DefaultTLength> = Globals | "auto" | TLength | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8043
- type InsetBlockStart<TLength = DefaultTLength> = Globals | "auto" | TLength | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8044
- type InsetInline<TLength = DefaultTLength> = Globals | "auto" | TLength | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8045
- type InsetInlineEnd<TLength = DefaultTLength> = Globals | "auto" | TLength | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8046
- type InsetInlineStart<TLength = DefaultTLength> = Globals | "auto" | TLength | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8083
+ type InitialLetter = Globals | "normal";
8084
+ type InitialLetterAlign = Globals;
8085
+ type InlineSize<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8086
+ type Inset<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8087
+ type InsetBlock<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8088
+ type InsetBlockEnd<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8089
+ type InsetBlockStart<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8090
+ type InsetInline<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8091
+ type InsetInlineEnd<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8092
+ type InsetInlineStart<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8047
8093
  type Interactivity = Globals | "auto" | "inert";
8048
8094
  type InterestDelay<TTime = DefaultTTime> = Globals | "normal" | TTime;
8049
8095
  type InterestDelayEnd<TTime = DefaultTTime> = Globals | "normal" | TTime;
8050
8096
  type InterestDelayStart<TTime = DefaultTTime> = Globals | "normal" | TTime;
8051
8097
  type InterpolateSize = Globals | "numeric-only" | "allow-keywords";
8052
8098
  type Isolation = Globals | "auto" | "isolate";
8053
- type JustifyContent = Globals | "normal" | DataType.ContentDistribution | UnionString$1 | DataType.ContentPosition;
8054
- type JustifyItems = Globals | "normal" | "stretch" | UnionString$1 | DataType.SelfPosition | "legacy" | "anchor-center";
8055
- type JustifySelf = Globals | "auto" | "normal" | "stretch" | UnionString$1 | DataType.SelfPosition | "anchor-center";
8056
- type JustifyTracks = Globals | UnionString$1 | DataType.ContentDistribution | DataType.ContentPosition;
8057
- type Left<TLength = DefaultTLength> = Globals | "auto" | TLength | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8099
+ type JustifyContent = Globals | "normal" | DataType.ContentDistribution | DataType.ContentPosition;
8100
+ type JustifyItems = Globals | "normal" | "stretch" | DataType.SelfPosition | "legacy" | "anchor-center";
8101
+ type JustifySelf = Globals | "auto" | "normal" | "stretch" | DataType.SelfPosition | "anchor-center";
8102
+ type JustifyTracks = Globals | DataType.ContentDistribution | DataType.ContentPosition;
8103
+ type Left<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8058
8104
  type LetterSpacing<TLength = DefaultTLength> = Globals | "normal" | TLength;
8059
8105
  type LightingColor = Globals | DataType.Color;
8060
8106
  type LineBreak = Globals | "auto" | "loose" | "normal" | "strict" | "anywhere";
8061
- type LineClamp = Globals | "none" | UnionString$1;
8062
- type LineHeight<TLength = DefaultTLength> = Globals | "normal" | UnionString$1 | TLength;
8107
+ type LineClamp = Globals | "none";
8108
+ type LineHeight<TLength = DefaultTLength> = Globals | "normal" | TLength;
8063
8109
  type LineHeightStep<TLength = DefaultTLength> = Globals | TLength;
8064
- type ListStyle = Globals | UnionString$1 | "none" | "inside" | "outside";
8065
- type ListStyleImage = Globals | UnionString$1 | "none";
8110
+ type ListStyle = Globals | "none" | "inside" | "outside";
8111
+ type ListStyleImage = Globals | "none";
8066
8112
  type ListStylePosition = Globals | "inside" | "outside";
8067
- type ListStyleType = Globals | UnionString$1 | "none";
8113
+ type ListStyleType = Globals | "none";
8068
8114
  type Margin<TLength = DefaultTLength> = Globals | TLength | "auto" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8069
8115
  type MarginBlock<TLength = DefaultTLength> = Globals | TLength | "auto" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8070
8116
  type MarginBlockEnd<TLength = DefaultTLength> = Globals | TLength | "auto" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
@@ -8077,56 +8123,56 @@ declare namespace Property {
8077
8123
  type MarginRight<TLength = DefaultTLength> = Globals | TLength | "auto" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8078
8124
  type MarginTop<TLength = DefaultTLength> = Globals | TLength | "auto" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8079
8125
  type MarginTrim = Globals | "none" | "in-flow" | "all";
8080
- type Marker = Globals | "none" | UnionString$1;
8081
- type MarkerEnd = Globals | "none" | UnionString$1;
8082
- type MarkerMid = Globals | "none" | UnionString$1;
8083
- type MarkerStart = Globals | "none" | UnionString$1;
8084
- type Mask<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.Position<TLength> | DataType.RepeatStyle | DataType.GeometryBox | DataType.CompositingOperator | DataType.MaskingMode;
8085
- type MaskBorder<TLength = DefaultTLength> = Globals | UnionString$1 | "none" | TLength | "luminance" | "alpha";
8126
+ type Marker = Globals | "none";
8127
+ type MarkerEnd = Globals | "none";
8128
+ type MarkerMid = Globals | "none";
8129
+ type MarkerStart = Globals | "none";
8130
+ type Mask<TLength = DefaultTLength> = Globals | DataType.Position<TLength> | DataType.RepeatStyle | DataType.GeometryBox | DataType.CompositingOperator | DataType.MaskingMode;
8131
+ type MaskBorder<TLength = DefaultTLength> = Globals | "none" | TLength | "luminance" | "alpha";
8086
8132
  type MaskBorderMode = Globals | "luminance" | "alpha";
8087
- type MaskBorderOutset<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8088
- type MaskBorderRepeat = Globals | UnionString$1;
8089
- type MaskBorderSlice = Globals | UnionString$1;
8090
- type MaskBorderSource = Globals | "none" | UnionString$1;
8091
- type MaskBorderWidth<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8092
- type MaskClip = Globals | UnionString$1;
8133
+ type MaskBorderOutset<TLength = DefaultTLength> = Globals | TLength;
8134
+ type MaskBorderRepeat = Globals;
8135
+ type MaskBorderSlice = Globals;
8136
+ type MaskBorderSource = Globals | "none";
8137
+ type MaskBorderWidth<TLength = DefaultTLength> = Globals | TLength;
8138
+ type MaskClip = Globals;
8093
8139
  type MaskComposite = Globals | DataType.CompositingOperator;
8094
- type MaskImage = Globals | "none" | UnionString$1;
8140
+ type MaskImage = Globals | "none";
8095
8141
  type MaskMode = Globals | DataType.MaskingMode;
8096
8142
  type MaskOrigin = Globals | DataType.VisualBox | "fill-box" | "stroke-box" | "view-box";
8097
8143
  type MaskPosition<TLength = DefaultTLength> = Globals | DataType.Position<TLength>;
8098
8144
  type MaskRepeat = Globals | DataType.RepeatStyle;
8099
- type MaskSize<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | "cover" | "contain";
8145
+ type MaskSize<TLength = DefaultTLength> = Globals | TLength | "cover" | "contain";
8100
8146
  type MaskType = Globals | "luminance" | "alpha";
8101
- type MasonryAutoFlow = Globals | UnionString$1;
8102
- type MathDepth = Globals | "auto-add" | UnionString$1;
8147
+ type MasonryAutoFlow = Globals;
8148
+ type MathDepth = Globals | "auto-add";
8103
8149
  type MathShift = Globals | "normal" | "compact";
8104
8150
  type MathStyle = Globals | "normal" | "compact";
8105
- type MaxBlockSize<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8106
- type MaxHeight<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8107
- type MaxInlineSize<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8108
- type MaxLines = Globals | "none" | UnionString$1;
8109
- type MaxWidth<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8110
- type MinBlockSize<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8111
- type MinHeight<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8112
- type MinInlineSize<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8113
- type MinWidth<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8151
+ type MaxBlockSize<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8152
+ type MaxHeight<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8153
+ type MaxInlineSize<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8154
+ type MaxLines = Globals | "none";
8155
+ type MaxWidth<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8156
+ type MinBlockSize<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8157
+ type MinHeight<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8158
+ type MinInlineSize<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8159
+ type MinWidth<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8114
8160
  type MixBlendMode = Globals | DataType.BlendMode | "plus-darker" | "plus-lighter";
8115
- type MozAppearance = Globals | "none" | "button" | "button-arrow-down" | "button-arrow-next" | "button-arrow-previous" | "button-arrow-up" | "button-bevel" | "button-focus" | "caret" | "checkbox" | "checkbox-container" | "checkbox-label" | "checkmenuitem" | "dualbutton" | "groupbox" | "listbox" | "listitem" | "menuarrow" | "menubar" | "menucheckbox" | "menuimage" | "menuitem" | "menuitemtext" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "menupopup" | "menuradio" | "menuseparator" | "meterbar" | "meterchunk" | "progressbar" | "progressbar-vertical" | "progresschunk" | "progresschunk-vertical" | "radio" | "radio-container" | "radio-label" | "radiomenuitem" | "range" | "range-thumb" | "resizer" | "resizerpanel" | "scale-horizontal" | "scalethumbend" | "scalethumb-horizontal" | "scalethumbstart" | "scalethumbtick" | "scalethumb-vertical" | "scale-vertical" | "scrollbarbutton-down" | "scrollbarbutton-left" | "scrollbarbutton-right" | "scrollbarbutton-up" | "scrollbarthumb-horizontal" | "scrollbarthumb-vertical" | "scrollbartrack-horizontal" | "scrollbartrack-vertical" | "searchfield" | "separator" | "sheet" | "spinner" | "spinner-downbutton" | "spinner-textfield" | "spinner-upbutton" | "splitter" | "statusbar" | "statusbarpanel" | "tab" | "tabpanel" | "tabpanels" | "tab-scroll-arrow-back" | "tab-scroll-arrow-forward" | "textfield" | "textfield-multiline" | "toolbar" | "toolbarbutton" | "toolbarbutton-dropdown" | "toolbargripper" | "toolbox" | "tooltip" | "treeheader" | "treeheadercell" | "treeheadersortarrow" | "treeitem" | "treeline" | "treetwisty" | "treetwistyopen" | "treeview" | UnionString$1;
8116
- type MozBinding = Globals | UnionString$1 | "none";
8161
+ type MozAppearance = Globals | "none" | "button" | "button-arrow-down" | "button-arrow-next" | "button-arrow-previous" | "button-arrow-up" | "button-bevel" | "button-focus" | "caret" | "checkbox" | "checkbox-container" | "checkbox-label" | "checkmenuitem" | "dualbutton" | "groupbox" | "listbox" | "listitem" | "menuarrow" | "menubar" | "menucheckbox" | "menuimage" | "menuitem" | "menuitemtext" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "menupopup" | "menuradio" | "menuseparator" | "meterbar" | "meterchunk" | "progressbar" | "progressbar-vertical" | "progresschunk" | "progresschunk-vertical" | "radio" | "radio-container" | "radio-label" | "radiomenuitem" | "range" | "range-thumb" | "resizer" | "resizerpanel" | "scale-horizontal" | "scalethumbend" | "scalethumb-horizontal" | "scalethumbstart" | "scalethumbtick" | "scalethumb-vertical" | "scale-vertical" | "scrollbarbutton-down" | "scrollbarbutton-left" | "scrollbarbutton-right" | "scrollbarbutton-up" | "scrollbarthumb-horizontal" | "scrollbarthumb-vertical" | "scrollbartrack-horizontal" | "scrollbartrack-vertical" | "searchfield" | "separator" | "sheet" | "spinner" | "spinner-downbutton" | "spinner-textfield" | "spinner-upbutton" | "splitter" | "statusbar" | "statusbarpanel" | "tab" | "tabpanel" | "tabpanels" | "tab-scroll-arrow-back" | "tab-scroll-arrow-forward" | "textfield" | "textfield-multiline" | "toolbar" | "toolbarbutton" | "toolbarbutton-dropdown" | "toolbargripper" | "toolbox" | "tooltip" | "treeheader" | "treeheadercell" | "treeheadersortarrow" | "treeitem" | "treeline" | "treetwisty" | "treetwistyopen" | "treeview";
8162
+ type MozBinding = Globals | "none";
8117
8163
  type MozBorderBottomColors = Globals | DataType.Color | "none";
8118
8164
  type MozBorderLeftColors = Globals | DataType.Color | "none";
8119
8165
  type MozBorderRightColors = Globals | DataType.Color | "none";
8120
8166
  type MozBorderTopColors = Globals | DataType.Color | "none";
8121
- type MozContextProperties = Globals | "none" | UnionString$1;
8167
+ type MozContextProperties = Globals | "none";
8122
8168
  type MozFloatEdge = Globals | "border-box" | "content-box" | "margin-box" | "padding-box";
8123
- type MozForceBrokenImageIcon = Globals | UnionString$1;
8169
+ type MozForceBrokenImageIcon = Globals;
8124
8170
  type MozOrient = Globals | "inline" | "block" | "horizontal" | "vertical";
8125
- type MozOutlineRadius = Globals | UnionString$1;
8126
- type MozOutlineRadiusBottomleft<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
8127
- type MozOutlineRadiusBottomright<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
8128
- type MozOutlineRadiusTopleft<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
8129
- type MozOutlineRadiusTopright<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
8171
+ type MozOutlineRadius = Globals;
8172
+ type MozOutlineRadiusBottomleft<TLength = DefaultTLength> = Globals | TLength;
8173
+ type MozOutlineRadiusBottomright<TLength = DefaultTLength> = Globals | TLength;
8174
+ type MozOutlineRadiusTopleft<TLength = DefaultTLength> = Globals | TLength;
8175
+ type MozOutlineRadiusTopright<TLength = DefaultTLength> = Globals | TLength;
8130
8176
  type MozStackSizing = Globals | "ignore" | "stretch-to-fit";
8131
8177
  type MozTextBlink = Globals | "none" | "blink";
8132
8178
  type MozUserFocus = Globals | "ignore" | "normal" | "select-after" | "select-before" | "select-menu" | "select-same" | "select-all" | "none";
@@ -8138,23 +8184,23 @@ declare namespace Property {
8138
8184
  type MsBlockProgression = Globals | "tb" | "rl" | "bt" | "lr";
8139
8185
  type MsContentZoomChaining = Globals | "none" | "chained";
8140
8186
  type MsContentZooming = Globals | "none" | "zoom";
8141
- type MsContentZoomLimit = Globals | UnionString$1;
8142
- type MsContentZoomLimitMax = Globals | UnionString$1;
8143
- type MsContentZoomLimitMin = Globals | UnionString$1;
8144
- type MsContentZoomSnap = Globals | UnionString$1 | "none" | "proximity" | "mandatory";
8145
- type MsContentZoomSnapPoints = Globals | UnionString$1;
8187
+ type MsContentZoomLimit = Globals;
8188
+ type MsContentZoomLimitMax = Globals;
8189
+ type MsContentZoomLimitMin = Globals;
8190
+ type MsContentZoomSnap = Globals | "none" | "proximity" | "mandatory";
8191
+ type MsContentZoomSnapPoints = Globals;
8146
8192
  type MsContentZoomSnapType = Globals | "none" | "proximity" | "mandatory";
8147
- type MsFilter = Globals | UnionString$1;
8148
- type MsFlowFrom = Globals | UnionString$1;
8149
- type MsFlowInto = Globals | UnionString$1;
8150
- type MsGridColumns = Globals | "none" | UnionString$1;
8151
- type MsGridRows = Globals | "none" | UnionString$1;
8193
+ type MsFilter = Globals;
8194
+ type MsFlowFrom = Globals;
8195
+ type MsFlowInto = Globals;
8196
+ type MsGridColumns = Globals | "none";
8197
+ type MsGridRows = Globals | "none";
8152
8198
  type MsHighContrastAdjust = Globals | "auto" | "none";
8153
- type MsHyphenateLimitChars = Globals | "auto" | UnionString$1;
8154
- type MsHyphenateLimitLines = Globals | "no-limit" | UnionString$1;
8155
- type MsHyphenateLimitZone<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8199
+ type MsHyphenateLimitChars = Globals | "auto";
8200
+ type MsHyphenateLimitLines = Globals | "no-limit";
8201
+ type MsHyphenateLimitZone<TLength = DefaultTLength> = Globals | TLength;
8156
8202
  type MsImeAlign = Globals | "auto" | "after";
8157
- type MsOverflowStyle = Globals | "auto" | "none" | "scrollbar" | UnionString$1;
8203
+ type MsOverflowStyle = Globals | "auto" | "none" | "scrollbar";
8158
8204
  type MsScrollbar3dlightColor = Globals | DataType.Color;
8159
8205
  type MsScrollbarArrowColor = Globals | DataType.Color;
8160
8206
  type MsScrollbarBaseColor = Globals | DataType.Color;
@@ -8164,17 +8210,17 @@ declare namespace Property {
8164
8210
  type MsScrollbarShadowColor = Globals | DataType.Color;
8165
8211
  type MsScrollbarTrackColor = Globals | DataType.Color;
8166
8212
  type MsScrollChaining = Globals | "chained" | "none";
8167
- type MsScrollLimit<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | "auto";
8213
+ type MsScrollLimit<TLength = DefaultTLength> = Globals | TLength | "auto";
8168
8214
  type MsScrollLimitXMax<TLength = DefaultTLength> = Globals | "auto" | TLength;
8169
8215
  type MsScrollLimitXMin<TLength = DefaultTLength> = Globals | TLength;
8170
8216
  type MsScrollLimitYMax<TLength = DefaultTLength> = Globals | "auto" | TLength;
8171
8217
  type MsScrollLimitYMin<TLength = DefaultTLength> = Globals | TLength;
8172
8218
  type MsScrollRails = Globals | "none" | "railed";
8173
- type MsScrollSnapPointsX = Globals | UnionString$1;
8174
- type MsScrollSnapPointsY = Globals | UnionString$1;
8219
+ type MsScrollSnapPointsX = Globals;
8220
+ type MsScrollSnapPointsY = Globals;
8175
8221
  type MsScrollSnapType = Globals | "none" | "proximity" | "mandatory";
8176
- type MsScrollSnapX = Globals | UnionString$1 | "none" | "proximity" | "mandatory";
8177
- type MsScrollSnapY = Globals | UnionString$1 | "none" | "proximity" | "mandatory";
8222
+ type MsScrollSnapX = Globals | "none" | "proximity" | "mandatory";
8223
+ type MsScrollSnapY = Globals | "none" | "proximity" | "mandatory";
8178
8224
  type MsScrollTranslation = Globals | "none" | "vertical-to-horizontal";
8179
8225
  type MsTextAutospace = Globals | "none" | "ideograph-alpha" | "ideograph-numeric" | "ideograph-parenthesis" | "ideograph-space";
8180
8226
  type MsTouchSelect = Globals | "grippers" | "none";
@@ -8184,32 +8230,32 @@ declare namespace Property {
8184
8230
  type MsWrapThrough = Globals | "wrap" | "none";
8185
8231
  type ObjectFit = Globals | "fill" | "contain" | "cover" | "none" | "scale-down";
8186
8232
  type ObjectPosition<TLength = DefaultTLength> = Globals | DataType.Position<TLength>;
8187
- type ObjectViewBox = Globals | "none" | UnionString$1;
8188
- type Offset<TLength = DefaultTLength> = Globals | UnionString$1 | "normal" | "auto" | DataType.Position<TLength> | "none" | TLength;
8233
+ type ObjectViewBox = Globals | "none";
8234
+ type Offset<TLength = DefaultTLength> = Globals | "normal" | "auto" | DataType.Position<TLength> | "none" | TLength;
8189
8235
  type OffsetAnchor<TLength = DefaultTLength> = Globals | "auto" | DataType.Position<TLength>;
8190
8236
  type OffsetDistance<TLength = DefaultTLength> = Globals | TLength;
8191
- type OffsetPath = Globals | "none" | UnionString$1;
8237
+ type OffsetPath = Globals | "none";
8192
8238
  type OffsetPosition<TLength = DefaultTLength> = Globals | "normal" | "auto" | DataType.Position<TLength>;
8193
- type OffsetRotate = Globals | UnionString$1;
8194
- type Opacity = Globals | UnionString$1;
8195
- type Order = Globals | UnionString$1;
8196
- type Orphans = Globals | UnionString$1;
8197
- type Outline<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.LineWidth<TLength> | "auto" | DataType.OutlineLineStyle | DataType.Color;
8239
+ type OffsetRotate = Globals;
8240
+ type Opacity = Globals;
8241
+ type Order = Globals;
8242
+ type Orphans = Globals;
8243
+ type Outline<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | "auto" | DataType.OutlineLineStyle | DataType.Color;
8198
8244
  type OutlineColor = Globals | "auto" | DataType.Color;
8199
8245
  type OutlineOffset<TLength = DefaultTLength> = Globals | TLength;
8200
8246
  type OutlineStyle = Globals | "auto" | DataType.OutlineLineStyle;
8201
8247
  type OutlineWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
8202
- type Overflow = Globals | UnionString$1;
8248
+ type Overflow = Globals;
8203
8249
  type OverflowAnchor = Globals | "auto" | "none";
8204
8250
  type OverflowBlock = Globals | "visible" | "hidden" | "clip" | "scroll" | "auto";
8205
8251
  type OverflowClipBox = Globals | "padding-box" | "content-box";
8206
- type OverflowClipMargin<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.VisualBox | TLength;
8252
+ type OverflowClipMargin<TLength = DefaultTLength> = Globals | DataType.VisualBox | TLength;
8207
8253
  type OverflowInline = Globals | "visible" | "hidden" | "clip" | "scroll" | "auto";
8208
8254
  type OverflowWrap = Globals | "normal" | "break-word" | "anywhere";
8209
8255
  type OverflowX = Globals | "visible" | "hidden" | "clip" | "scroll" | "auto";
8210
8256
  type OverflowY = Globals | "visible" | "hidden" | "clip" | "scroll" | "auto";
8211
8257
  type Overlay = Globals | "none" | "auto";
8212
- type OverscrollBehavior = Globals | UnionString$1;
8258
+ type OverscrollBehavior = Globals;
8213
8259
  type OverscrollBehaviorBlock = Globals | "contain" | "none" | "auto";
8214
8260
  type OverscrollBehaviorInline = Globals | "contain" | "none" | "auto";
8215
8261
  type OverscrollBehaviorX = Globals | "contain" | "none" | "auto";
@@ -8225,42 +8271,42 @@ declare namespace Property {
8225
8271
  type PaddingLeft<TLength = DefaultTLength> = Globals | TLength;
8226
8272
  type PaddingRight<TLength = DefaultTLength> = Globals | TLength;
8227
8273
  type PaddingTop<TLength = DefaultTLength> = Globals | TLength;
8228
- type Page = Globals | "auto" | UnionString$1;
8274
+ type Page = Globals | "auto";
8229
8275
  type PageBreakAfter = Globals | "auto" | "always" | "avoid" | "left" | "right" | "recto" | "verso";
8230
8276
  type PageBreakBefore = Globals | "auto" | "always" | "avoid" | "left" | "right" | "recto" | "verso";
8231
8277
  type PageBreakInside = Globals | "auto" | "avoid";
8232
- type PaintOrder = Globals | "normal" | UnionString$1;
8278
+ type PaintOrder = Globals | "normal";
8233
8279
  type Perspective<TLength = DefaultTLength> = Globals | "none" | TLength;
8234
8280
  type PerspectiveOrigin<TLength = DefaultTLength> = Globals | DataType.Position<TLength>;
8235
- type PlaceContent = Globals | UnionString$1 | "normal" | DataType.ContentDistribution | DataType.ContentPosition;
8236
- type PlaceItems = Globals | UnionString$1 | "normal" | "stretch" | DataType.SelfPosition | "anchor-center" | "legacy";
8237
- type PlaceSelf = Globals | UnionString$1 | "auto" | "normal" | "stretch" | DataType.SelfPosition | "anchor-center";
8281
+ type PlaceContent = Globals | "normal" | DataType.ContentDistribution | DataType.ContentPosition;
8282
+ type PlaceItems = Globals | "normal" | "stretch" | DataType.SelfPosition | "anchor-center" | "legacy";
8283
+ type PlaceSelf = Globals | "auto" | "normal" | "stretch" | DataType.SelfPosition | "anchor-center";
8238
8284
  type PointerEvents = Globals | "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all" | "inherit";
8239
8285
  type Position = Globals | "static" | "relative" | "absolute" | "sticky" | "fixed";
8240
- type PositionAnchor = Globals | "auto" | "none" | UnionString$1;
8286
+ type PositionAnchor = Globals | "auto" | "none";
8241
8287
  type PositionArea = Globals | "none" | DataType.PositionArea;
8242
- type PositionTry = Globals | UnionString$1 | "normal" | DataType.TrySize | "none" | DataType.TryTactic | DataType.PositionArea;
8243
- type PositionTryFallbacks = Globals | "none" | UnionString$1 | DataType.TryTactic | DataType.PositionArea;
8288
+ type PositionTry = Globals | "normal" | DataType.TrySize | "none" | DataType.TryTactic | DataType.PositionArea;
8289
+ type PositionTryFallbacks = Globals | "none" | DataType.TryTactic | DataType.PositionArea;
8244
8290
  type PositionTryOrder = Globals | "normal" | DataType.TrySize;
8245
- type PositionVisibility = Globals | "always" | UnionString$1;
8291
+ type PositionVisibility = Globals | "always";
8246
8292
  type PrintColorAdjust = Globals | "economy" | "exact";
8247
- type Quotes = Globals | "none" | "auto" | UnionString$1;
8248
- type R<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
8293
+ type Quotes = Globals | "none" | "auto";
8294
+ type R<TLength = DefaultTLength> = Globals | TLength;
8249
8295
  type ReadingFlow = Globals | "normal" | "source-order" | "flex-visual" | "flex-flow" | "grid-rows" | "grid-columns" | "grid-order";
8250
- type ReadingOrder = Globals | UnionString$1;
8296
+ type ReadingOrder = Globals;
8251
8297
  type Resize = Globals | "none" | "both" | "horizontal" | "vertical" | "block" | "inline";
8252
- type Right<TLength = DefaultTLength> = Globals | "auto" | TLength | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8253
- type Rotate = Globals | "none" | UnionString$1;
8298
+ type Right<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8299
+ type Rotate = Globals | "none";
8254
8300
  type RowGap<TLength = DefaultTLength> = Globals | "normal" | TLength;
8255
8301
  type RubyAlign = Globals | "start" | "center" | "space-between" | "space-around";
8256
8302
  type RubyMerge = Globals | "separate" | "collapse" | "auto";
8257
8303
  type RubyOverhang = Globals | "auto" | "none";
8258
- type RubyPosition = Globals | UnionString$1 | "inter-character";
8259
- type Rx<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
8260
- type Ry<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
8261
- type Scale = Globals | "none" | UnionString$1;
8304
+ type RubyPosition = Globals | "inter-character";
8305
+ type Rx<TLength = DefaultTLength> = Globals | TLength;
8306
+ type Ry<TLength = DefaultTLength> = Globals | TLength;
8307
+ type Scale = Globals | "none";
8262
8308
  type ScrollbarColor = Globals | "auto" | DataType.Color;
8263
- type ScrollbarGutter = Globals | "auto" | UnionString$1;
8309
+ type ScrollbarGutter = Globals | "auto";
8264
8310
  type ScrollbarWidth = Globals | "auto" | "thin" | "none";
8265
8311
  type ScrollBehavior = Globals | "auto" | "smooth";
8266
8312
  type ScrollInitialTarget = Globals | "none" | "nearest";
@@ -8276,223 +8322,223 @@ declare namespace Property {
8276
8322
  type ScrollMarginRight<TLength = DefaultTLength> = Globals | TLength;
8277
8323
  type ScrollMarginTop<TLength = DefaultTLength> = Globals | TLength;
8278
8324
  type ScrollMarkerGroup = Globals | "none" | "before" | "after";
8279
- type ScrollPadding<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8280
- type ScrollPaddingBlock<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8325
+ type ScrollPadding<TLength = DefaultTLength> = Globals | TLength;
8326
+ type ScrollPaddingBlock<TLength = DefaultTLength> = Globals | TLength;
8281
8327
  type ScrollPaddingBlockEnd<TLength = DefaultTLength> = Globals | "auto" | TLength;
8282
8328
  type ScrollPaddingBlockStart<TLength = DefaultTLength> = Globals | "auto" | TLength;
8283
8329
  type ScrollPaddingBottom<TLength = DefaultTLength> = Globals | "auto" | TLength;
8284
- type ScrollPaddingInline<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8330
+ type ScrollPaddingInline<TLength = DefaultTLength> = Globals | TLength;
8285
8331
  type ScrollPaddingInlineEnd<TLength = DefaultTLength> = Globals | "auto" | TLength;
8286
8332
  type ScrollPaddingInlineStart<TLength = DefaultTLength> = Globals | "auto" | TLength;
8287
8333
  type ScrollPaddingLeft<TLength = DefaultTLength> = Globals | "auto" | TLength;
8288
8334
  type ScrollPaddingRight<TLength = DefaultTLength> = Globals | "auto" | TLength;
8289
8335
  type ScrollPaddingTop<TLength = DefaultTLength> = Globals | "auto" | TLength;
8290
- type ScrollSnapAlign = Globals | UnionString$1;
8336
+ type ScrollSnapAlign = Globals;
8291
8337
  type ScrollSnapCoordinate<TLength = DefaultTLength> = Globals | "none" | DataType.Position<TLength>;
8292
8338
  type ScrollSnapDestination<TLength = DefaultTLength> = Globals | DataType.Position<TLength>;
8293
- type ScrollSnapPointsX = Globals | "none" | UnionString$1;
8294
- type ScrollSnapPointsY = Globals | "none" | UnionString$1;
8339
+ type ScrollSnapPointsX = Globals | "none";
8340
+ type ScrollSnapPointsY = Globals | "none";
8295
8341
  type ScrollSnapStop = Globals | "normal" | "always";
8296
- type ScrollSnapType = Globals | "none" | UnionString$1;
8342
+ type ScrollSnapType = Globals | "none";
8297
8343
  type ScrollSnapTypeX = Globals | "none" | "mandatory" | "proximity";
8298
8344
  type ScrollSnapTypeY = Globals | "none" | "mandatory" | "proximity";
8299
8345
  type ScrollTargetGroup = Globals | "none" | "auto";
8300
- type ScrollTimeline = Globals | UnionString$1;
8301
- type ScrollTimelineAxis = Globals | UnionString$1;
8302
- type ScrollTimelineName = Globals | UnionString$1;
8303
- type ShapeImageThreshold = Globals | UnionString$1;
8346
+ type ScrollTimeline = Globals;
8347
+ type ScrollTimelineAxis = Globals;
8348
+ type ScrollTimelineName = Globals;
8349
+ type ShapeImageThreshold = Globals;
8304
8350
  type ShapeMargin<TLength = DefaultTLength> = Globals | TLength;
8305
- type ShapeOutside = Globals | "none" | UnionString$1;
8351
+ type ShapeOutside = Globals | "none";
8306
8352
  type ShapeRendering = Globals | "auto" | "optimizeSpeed" | "crispEdges" | "geometricPrecision";
8307
- type SpeakAs = Globals | "normal" | UnionString$1;
8353
+ type SpeakAs = Globals | "normal";
8308
8354
  type StopColor = Globals | DataType.Color;
8309
- type StopOpacity = Globals | UnionString$1;
8355
+ type StopOpacity = Globals;
8310
8356
  type Stroke = Globals | DataType.Paint;
8311
8357
  type StrokeColor = Globals | DataType.Color;
8312
- type StrokeDasharray<TLength = DefaultTLength> = Globals | "none" | UnionString$1 | TLength;
8313
- type StrokeDashoffset<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
8358
+ type StrokeDasharray<TLength = DefaultTLength> = Globals | "none" | TLength;
8359
+ type StrokeDashoffset<TLength = DefaultTLength> = Globals | TLength;
8314
8360
  type StrokeLinecap = Globals | "butt" | "round" | "square";
8315
8361
  type StrokeLinejoin = Globals | "miter" | "miter-clip" | "round" | "bevel" | "arcs";
8316
- type StrokeMiterlimit = Globals | UnionString$1;
8317
- type StrokeOpacity = Globals | UnionString$1;
8318
- type StrokeWidth<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
8362
+ type StrokeMiterlimit = Globals;
8363
+ type StrokeOpacity = Globals;
8364
+ type StrokeWidth<TLength = DefaultTLength> = Globals | TLength;
8319
8365
  type TableLayout = Globals | "auto" | "fixed";
8320
- type TabSize<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8366
+ type TabSize<TLength = DefaultTLength> = Globals | TLength;
8321
8367
  type TextAlign = Globals | "start" | "end" | "left" | "right" | "center" | "justify" | "match-parent";
8322
8368
  type TextAlignLast = Globals | "auto" | "start" | "end" | "left" | "right" | "center" | "justify";
8323
8369
  type TextAnchor = Globals | "start" | "middle" | "end";
8324
- type TextAutospace = Globals | "normal" | "no-autospace" | UnionString$1 | "auto";
8325
- type TextBox = Globals | "normal" | UnionString$1 | "none" | "trim-start" | "trim-end" | "trim-both" | "auto";
8326
- type TextBoxEdge = Globals | "auto" | UnionString$1;
8370
+ type TextAutospace = Globals | "normal" | "no-autospace" | "auto";
8371
+ type TextBox = Globals | "normal" | "none" | "trim-start" | "trim-end" | "trim-both" | "auto";
8372
+ type TextBoxEdge = Globals | "auto";
8327
8373
  type TextBoxTrim = Globals | "none" | "trim-start" | "trim-end" | "trim-both";
8328
- type TextCombineUpright = Globals | "none" | "all" | UnionString$1;
8329
- type TextDecoration<TLength = DefaultTLength> = Globals | UnionString$1 | "none" | "spelling-error" | "grammar-error" | "solid" | "double" | "dotted" | "dashed" | "wavy" | DataType.Color | "auto" | "from-font" | TLength;
8374
+ type TextCombineUpright = Globals | "none" | "all";
8375
+ type TextDecoration<TLength = DefaultTLength> = Globals | "none" | "spelling-error" | "grammar-error" | "solid" | "double" | "dotted" | "dashed" | "wavy" | DataType.Color | "auto" | "from-font" | TLength;
8330
8376
  type TextDecorationColor = Globals | DataType.Color;
8331
8377
  type TextDecorationInset<TLength = DefaultTLength> = Globals | TLength | "auto";
8332
- type TextDecorationLine = Globals | "none" | UnionString$1 | "spelling-error" | "grammar-error";
8333
- type TextDecorationSkip = Globals | "none" | UnionString$1;
8378
+ type TextDecorationLine = Globals | "none" | "spelling-error" | "grammar-error";
8379
+ type TextDecorationSkip = Globals | "none";
8334
8380
  type TextDecorationSkipInk = Globals | "auto" | "all" | "none";
8335
8381
  type TextDecorationStyle = Globals | "solid" | "double" | "dotted" | "dashed" | "wavy";
8336
- type TextDecorationThickness<TLength = DefaultTLength> = Globals | "auto" | "from-font" | TLength | UnionString$1;
8337
- type TextEmphasis = Globals | UnionString$1 | "none" | DataType.Color;
8382
+ type TextDecorationThickness<TLength = DefaultTLength> = Globals | "auto" | "from-font" | TLength;
8383
+ type TextEmphasis = Globals | "none" | DataType.Color;
8338
8384
  type TextEmphasisColor = Globals | DataType.Color;
8339
- type TextEmphasisPosition = Globals | "auto" | UnionString$1;
8340
- type TextEmphasisStyle = Globals | "none" | UnionString$1;
8341
- type TextIndent<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8385
+ type TextEmphasisPosition = Globals | "auto";
8386
+ type TextEmphasisStyle = Globals | "none";
8387
+ type TextIndent<TLength = DefaultTLength> = Globals | TLength;
8342
8388
  type TextJustify = Globals | "auto" | "inter-character" | "inter-word" | "none";
8343
8389
  type TextOrientation = Globals | "mixed" | "upright" | "sideways";
8344
- type TextOverflow = Globals | UnionString$1;
8390
+ type TextOverflow = Globals;
8345
8391
  type TextRendering = Globals | "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision";
8346
- type TextShadow<TLength = DefaultTLength> = Globals | "none" | UnionString$1 | TLength | DataType.Color;
8347
- type TextSizeAdjust = Globals | "none" | "auto" | UnionString$1;
8392
+ type TextShadow<TLength = DefaultTLength> = Globals | "none" | TLength | DataType.Color;
8393
+ type TextSizeAdjust = Globals | "none" | "auto";
8348
8394
  type TextSpacingTrim = Globals | "space-all" | "normal" | "space-first" | "trim-start";
8349
- type TextTransform = Globals | "none" | UnionString$1 | "math-auto";
8350
- type TextUnderlineOffset<TLength = DefaultTLength> = Globals | "auto" | TLength | UnionString$1;
8351
- type TextUnderlinePosition = Globals | "auto" | "from-font" | UnionString$1;
8352
- type TextWrap = Globals | UnionString$1 | "wrap" | "nowrap" | "auto" | "balance" | "stable" | "pretty";
8395
+ type TextTransform = Globals | "none" | "math-auto";
8396
+ type TextUnderlineOffset<TLength = DefaultTLength> = Globals | "auto" | TLength;
8397
+ type TextUnderlinePosition = Globals | "auto" | "from-font";
8398
+ type TextWrap = Globals | "wrap" | "nowrap" | "auto" | "balance" | "stable" | "pretty";
8353
8399
  type TextWrapMode = Globals | "wrap" | "nowrap";
8354
8400
  type TextWrapStyle = Globals | "auto" | "balance" | "stable" | "pretty";
8355
- type TimelineScope = Globals | "none" | UnionString$1;
8356
- type TimelineTrigger<TLength = DefaultTLength> = Globals | "none" | UnionString$1 | DataType.SingleAnimationTimeline | TLength | DataType.TimelineRangeName;
8357
- type TimelineTriggerExitRange<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | DataType.TimelineRangeName;
8358
- type TimelineTriggerExitRangeEnd<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | DataType.TimelineRangeName;
8359
- type TimelineTriggerExitRangeStart<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | DataType.TimelineRangeName;
8360
- type TimelineTriggerName = Globals | "none" | UnionString$1;
8361
- type TimelineTriggerRange<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | DataType.TimelineRangeName;
8362
- type TimelineTriggerRangeEnd<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | DataType.TimelineRangeName;
8363
- type TimelineTriggerRangeStart<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | DataType.TimelineRangeName;
8401
+ type TimelineScope = Globals | "none";
8402
+ type TimelineTrigger<TLength = DefaultTLength> = Globals | "none" | DataType.SingleAnimationTimeline | TLength | DataType.TimelineRangeName;
8403
+ type TimelineTriggerExitRange<TLength = DefaultTLength> = Globals | TLength | DataType.TimelineRangeName;
8404
+ type TimelineTriggerExitRangeEnd<TLength = DefaultTLength> = Globals | TLength | DataType.TimelineRangeName;
8405
+ type TimelineTriggerExitRangeStart<TLength = DefaultTLength> = Globals | TLength | DataType.TimelineRangeName;
8406
+ type TimelineTriggerName = Globals | "none";
8407
+ type TimelineTriggerRange<TLength = DefaultTLength> = Globals | TLength | DataType.TimelineRangeName;
8408
+ type TimelineTriggerRangeEnd<TLength = DefaultTLength> = Globals | TLength | DataType.TimelineRangeName;
8409
+ type TimelineTriggerRangeStart<TLength = DefaultTLength> = Globals | TLength | DataType.TimelineRangeName;
8364
8410
  type TimelineTriggerSource = Globals | DataType.SingleAnimationTimeline;
8365
- type Top<TLength = DefaultTLength> = Globals | "auto" | TLength | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8366
- type TouchAction = Globals | "auto" | "none" | UnionString$1 | "manipulation";
8367
- type Transform = Globals | "none" | UnionString$1;
8411
+ type Top<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8412
+ type TouchAction = Globals | "auto" | "none" | "manipulation";
8413
+ type Transform = Globals | "none";
8368
8414
  type TransformBox = Globals | "content-box" | "border-box" | "fill-box" | "stroke-box" | "view-box";
8369
- type TransformOrigin<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8415
+ type TransformOrigin<TLength = DefaultTLength> = Globals | TLength;
8370
8416
  type TransformStyle = Globals | "flat" | "preserve-3d";
8371
- type Transition<TTime = DefaultTTime> = Globals | UnionString$1 | TTime | DataType.EasingFunction;
8417
+ type Transition<TTime = DefaultTTime> = Globals | TTime | DataType.EasingFunction;
8372
8418
  type TransitionBehavior = Globals | "normal" | "allow-discrete";
8373
8419
  type TransitionDelay<TTime = DefaultTTime> = Globals | TTime;
8374
8420
  type TransitionDuration<TTime = DefaultTTime> = Globals | TTime;
8375
- type TransitionProperty = Globals | "none" | "all" | UnionString$1;
8421
+ type TransitionProperty = Globals | "none" | "all";
8376
8422
  type TransitionTimingFunction = Globals | DataType.EasingFunction;
8377
- type Translate<TLength = DefaultTLength> = Globals | "none" | UnionString$1 | TLength;
8378
- type TriggerScope = Globals | "none" | "all" | UnionString$1;
8423
+ type Translate<TLength = DefaultTLength> = Globals | "none" | TLength;
8424
+ type TriggerScope = Globals | "none" | "all";
8379
8425
  type UnicodeBidi = Globals | "normal" | "embed" | "isolate" | "bidi-override" | "isolate-override" | "plaintext";
8380
8426
  type UserSelect = Globals | "auto" | "text" | "none" | "all";
8381
8427
  type VectorEffect = Globals | "none" | "non-scaling-stroke" | "non-scaling-size" | "non-rotation" | "fixed-position";
8382
- type VerticalAlign<TLength = DefaultTLength> = Globals | "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" | UnionString$1 | TLength;
8383
- type ViewTimeline = Globals | UnionString$1;
8384
- type ViewTimelineAxis = Globals | UnionString$1;
8385
- type ViewTimelineInset = Globals | UnionString$1;
8386
- type ViewTimelineName = Globals | UnionString$1;
8387
- type ViewTransitionClass = Globals | "none" | UnionString$1;
8388
- type ViewTransitionName = Globals | "none" | UnionString$1 | "match-element";
8428
+ type VerticalAlign<TLength = DefaultTLength> = Globals | "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" | TLength;
8429
+ type ViewTimeline = Globals;
8430
+ type ViewTimelineAxis = Globals;
8431
+ type ViewTimelineInset = Globals;
8432
+ type ViewTimelineName = Globals;
8433
+ type ViewTransitionClass = Globals | "none";
8434
+ type ViewTransitionName = Globals | "none" | "match-element";
8389
8435
  type Visibility = Globals | "visible" | "hidden" | "collapse";
8390
- type WebkitAppearance = Globals | "none" | "button" | "button-bevel" | "caret" | "checkbox" | "default-button" | "inner-spin-button" | "listbox" | "listitem" | "media-controls-background" | "media-controls-fullscreen-background" | "media-current-time-display" | "media-enter-fullscreen-button" | "media-exit-fullscreen-button" | "media-fullscreen-button" | "media-mute-button" | "media-overlay-play-button" | "media-play-button" | "media-seek-back-button" | "media-seek-forward-button" | "media-slider" | "media-sliderthumb" | "media-time-remaining-display" | "media-toggle-closed-captions-button" | "media-volume-slider" | "media-volume-slider-container" | "media-volume-sliderthumb" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "meter" | "progress-bar" | "progress-bar-value" | "push-button" | "radio" | "searchfield" | "searchfield-cancel-button" | "searchfield-decoration" | "searchfield-results-button" | "searchfield-results-decoration" | "slider-horizontal" | "slider-vertical" | "sliderthumb-horizontal" | "sliderthumb-vertical" | "square-button" | "textarea" | "textfield" | UnionString$1;
8391
- type WebkitBorderBefore<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
8436
+ type WebkitAppearance = Globals | "none" | "button" | "button-bevel" | "caret" | "checkbox" | "default-button" | "inner-spin-button" | "listbox" | "listitem" | "media-controls-background" | "media-controls-fullscreen-background" | "media-current-time-display" | "media-enter-fullscreen-button" | "media-exit-fullscreen-button" | "media-fullscreen-button" | "media-mute-button" | "media-overlay-play-button" | "media-play-button" | "media-seek-back-button" | "media-seek-forward-button" | "media-slider" | "media-sliderthumb" | "media-time-remaining-display" | "media-toggle-closed-captions-button" | "media-volume-slider" | "media-volume-slider-container" | "media-volume-sliderthumb" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "meter" | "progress-bar" | "progress-bar-value" | "push-button" | "radio" | "searchfield" | "searchfield-cancel-button" | "searchfield-decoration" | "searchfield-results-button" | "searchfield-results-decoration" | "slider-horizontal" | "slider-vertical" | "sliderthumb-horizontal" | "sliderthumb-vertical" | "square-button" | "textarea" | "textfield";
8437
+ type WebkitBorderBefore<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
8392
8438
  type WebkitBorderBeforeColor = Globals | DataType.Color;
8393
8439
  type WebkitBorderBeforeStyle = Globals | DataType.LineStyle;
8394
8440
  type WebkitBorderBeforeWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
8395
- type WebkitBoxReflect<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8396
- type WebkitLineClamp = Globals | "none" | UnionString$1;
8397
- type WebkitMask<TLength = DefaultTLength> = Globals | UnionString$1 | DataType.Position<TLength> | DataType.RepeatStyle | DataType.VisualBox;
8441
+ type WebkitBoxReflect<TLength = DefaultTLength> = Globals | TLength;
8442
+ type WebkitLineClamp = Globals | "none";
8443
+ type WebkitMask<TLength = DefaultTLength> = Globals | DataType.Position<TLength> | DataType.RepeatStyle | DataType.VisualBox;
8398
8444
  type WebkitMaskAttachment = Globals | DataType.Attachment;
8399
- type WebkitMaskClip = Globals | UnionString$1;
8445
+ type WebkitMaskClip = Globals;
8400
8446
  type WebkitMaskComposite = Globals | DataType.CompositeStyle;
8401
- type WebkitMaskImage = Globals | "none" | UnionString$1;
8402
- type WebkitMaskOrigin = Globals | UnionString$1;
8447
+ type WebkitMaskImage = Globals | "none";
8448
+ type WebkitMaskOrigin = Globals;
8403
8449
  type WebkitMaskPosition<TLength = DefaultTLength> = Globals | DataType.Position<TLength>;
8404
- type WebkitMaskPositionX<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8405
- type WebkitMaskPositionY<TLength = DefaultTLength> = Globals | UnionString$1 | TLength;
8450
+ type WebkitMaskPositionX<TLength = DefaultTLength> = Globals | TLength;
8451
+ type WebkitMaskPositionY<TLength = DefaultTLength> = Globals | TLength;
8406
8452
  type WebkitMaskRepeat = Globals | DataType.RepeatStyle;
8407
8453
  type WebkitMaskRepeatX = Globals | "repeat" | "no-repeat" | "space" | "round";
8408
8454
  type WebkitMaskRepeatY = Globals | "repeat" | "no-repeat" | "space" | "round";
8409
- type WebkitMaskSize<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | "cover" | "contain";
8455
+ type WebkitMaskSize<TLength = DefaultTLength> = Globals | TLength | "cover" | "contain";
8410
8456
  type WebkitOverflowScrolling = Globals | "auto" | "touch";
8411
8457
  type WebkitTapHighlightColor = Globals | DataType.Color;
8412
8458
  type WebkitTextFillColor = Globals | DataType.Color;
8413
- type WebkitTextStroke<TLength = DefaultTLength> = Globals | UnionString$1 | TLength | DataType.Color;
8459
+ type WebkitTextStroke<TLength = DefaultTLength> = Globals | TLength | DataType.Color;
8414
8460
  type WebkitTextStrokeColor = Globals | DataType.Color;
8415
8461
  type WebkitTextStrokeWidth<TLength = DefaultTLength> = Globals | TLength;
8416
8462
  type WebkitTouchCallout = Globals | "default" | "none";
8417
8463
  type WebkitUserModify = Globals | "read-only" | "read-write" | "read-write-plaintext-only";
8418
8464
  type WebkitUserSelect = Globals | "auto" | "text" | "none" | "all";
8419
- type WhiteSpace = Globals | "normal" | "pre" | "pre-wrap" | "pre-line" | UnionString$1 | "collapse" | "preserve" | "preserve-breaks" | "preserve-spaces" | "break-spaces" | "wrap" | "nowrap";
8465
+ type WhiteSpace = Globals | "normal" | "pre" | "pre-wrap" | "pre-line" | "collapse" | "preserve" | "preserve-breaks" | "preserve-spaces" | "break-spaces" | "wrap" | "nowrap";
8420
8466
  type WhiteSpaceCollapse = Globals | "collapse" | "preserve" | "preserve-breaks" | "preserve-spaces" | "break-spaces";
8421
- type Widows = Globals | UnionString$1;
8422
- type Width<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | UnionString$1 | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8467
+ type Widows = Globals;
8468
+ type Width<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
8423
8469
  type WillChange = Globals | "auto" | DataType.AnimateableFeature;
8424
8470
  type WordBreak = Globals | "normal" | "break-all" | "keep-all" | "break-word" | "auto-phrase";
8425
8471
  type WordSpacing<TLength = DefaultTLength> = Globals | "normal" | TLength;
8426
8472
  type WordWrap = Globals | "normal" | "break-word";
8427
8473
  type WritingMode = Globals | "horizontal-tb" | "vertical-rl" | "vertical-lr" | "sideways-rl" | "sideways-lr";
8428
- type X<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
8429
- type Y<TLength = DefaultTLength> = Globals | TLength | UnionString$1;
8430
- type ZIndex = Globals | "auto" | UnionString$1;
8431
- type Zoom = Globals | "normal" | "reset" | UnionString$1;
8474
+ type X<TLength = DefaultTLength> = Globals | TLength;
8475
+ type Y<TLength = DefaultTLength> = Globals | TLength;
8476
+ type ZIndex = Globals | "auto";
8477
+ type Zoom = Globals | "normal" | "reset";
8432
8478
  }
8433
8479
  declare namespace DataType {
8434
8480
  type AbsoluteSize = "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large";
8435
- type AnimateableFeature = "contents" | "scroll-position" | UnionString$1;
8481
+ type AnimateableFeature = "contents" | "scroll-position";
8436
8482
  type Attachment = "fixed" | "local" | "scroll";
8437
- type Autospace = "ideograph-alpha" | "ideograph-numeric" | "insert" | "no-autospace" | "punctuation" | "replace" | UnionString$1;
8483
+ type Autospace = "ideograph-alpha" | "ideograph-numeric" | "insert" | "no-autospace" | "punctuation" | "replace";
8438
8484
  type BgClip = VisualBox | "border-area" | "text";
8439
- type BgLayer<TLength> = BgPosition<TLength> | RepeatStyle | Attachment | VisualBox | "none" | UnionString$1;
8440
- type BgPosition<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top" | UnionString$1;
8441
- type BgSize<TLength> = TLength | "auto" | "contain" | "cover" | UnionString$1;
8485
+ type BgLayer<TLength> = BgPosition<TLength> | RepeatStyle | Attachment | VisualBox | "none";
8486
+ type BgPosition<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top";
8487
+ type BgSize<TLength> = TLength | "auto" | "contain" | "cover";
8442
8488
  type BlendMode = "color" | "color-burn" | "color-dodge" | "darken" | "difference" | "exclusion" | "hard-light" | "hue" | "lighten" | "luminosity" | "multiply" | "normal" | "overlay" | "saturation" | "screen" | "soft-light";
8443
- type Color = ColorBase | SystemColor | DeprecatedSystemColor | "currentColor" | UnionString$1;
8444
- type ColorBase = NamedColor | "transparent" | UnionString$1;
8489
+ type Color = ColorBase | SystemColor | DeprecatedSystemColor | "currentColor";
8490
+ type ColorBase = NamedColor | "transparent";
8445
8491
  type CompatAuto = "button" | "checkbox" | "listbox" | "menulist" | "meter" | "progress-bar" | "radio" | "searchfield" | "textarea";
8446
8492
  type CompositeStyle = "clear" | "copy" | "destination-atop" | "destination-in" | "destination-out" | "destination-over" | "source-atop" | "source-in" | "source-out" | "source-over" | "xor";
8447
8493
  type CompositingOperator = "add" | "exclude" | "intersect" | "subtract";
8448
8494
  type ContentDistribution = "space-around" | "space-between" | "space-evenly" | "stretch";
8449
8495
  type ContentPosition = "center" | "end" | "flex-end" | "flex-start" | "start";
8450
- type CubicBezierEasingFunction = "ease" | "ease-in" | "ease-in-out" | "ease-out" | UnionString$1;
8496
+ type CubicBezierEasingFunction = "ease" | "ease-in" | "ease-in-out" | "ease-out";
8451
8497
  type CursorPredefined = "alias" | "all-scroll" | "auto" | "cell" | "col-resize" | "context-menu" | "copy" | "crosshair" | "default" | "e-resize" | "ew-resize" | "grab" | "grabbing" | "help" | "move" | "n-resize" | "ne-resize" | "nesw-resize" | "no-drop" | "none" | "not-allowed" | "ns-resize" | "nw-resize" | "nwse-resize" | "pointer" | "progress" | "row-resize" | "s-resize" | "se-resize" | "sw-resize" | "text" | "vertical-text" | "w-resize" | "wait" | "zoom-in" | "zoom-out";
8452
- type Dasharray<TLength> = TLength | UnionString$1;
8498
+ type Dasharray<TLength> = TLength;
8453
8499
  type DeprecatedSystemColor = "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText";
8454
8500
  type DisplayInside = "-ms-flexbox" | "-ms-grid" | "-webkit-flex" | "flex" | "flow" | "flow-root" | "grid" | "ruby" | "table";
8455
8501
  type DisplayInternal = "ruby-base" | "ruby-base-container" | "ruby-text" | "ruby-text-container" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row" | "table-row-group";
8456
8502
  type DisplayLegacy = "-ms-inline-flexbox" | "-ms-inline-grid" | "-webkit-inline-flex" | "inline-block" | "inline-flex" | "inline-grid" | "inline-list-item" | "inline-table";
8457
8503
  type DisplayOutside = "block" | "inline" | "run-in";
8458
- type EasingFunction = CubicBezierEasingFunction | StepEasingFunction | "linear" | UnionString$1;
8504
+ type EasingFunction = CubicBezierEasingFunction | StepEasingFunction | "linear";
8459
8505
  type EastAsianVariantValues = "jis04" | "jis78" | "jis83" | "jis90" | "simplified" | "traditional";
8460
- type FinalBgLayer<TLength> = BgPosition<TLength> | RepeatStyle | Attachment | VisualBox | Color | "none" | UnionString$1;
8461
- type FontStretchAbsolute = "condensed" | "expanded" | "extra-condensed" | "extra-expanded" | "normal" | "semi-condensed" | "semi-expanded" | "ultra-condensed" | "ultra-expanded" | UnionString$1;
8462
- type FontWeightAbsolute = "bold" | "normal" | UnionString$1;
8506
+ type FinalBgLayer<TLength> = BgPosition<TLength> | RepeatStyle | Attachment | VisualBox | Color | "none";
8507
+ type FontStretchAbsolute = "condensed" | "expanded" | "extra-condensed" | "extra-expanded" | "normal" | "semi-condensed" | "semi-expanded" | "ultra-condensed" | "ultra-expanded";
8508
+ type FontWeightAbsolute = "bold" | "normal";
8463
8509
  type GenericComplete = "-apple-system" | "cursive" | "fantasy" | "math" | "monospace" | "sans-serif" | "serif" | "system-ui";
8464
8510
  type GenericFamily = GenericComplete | GenericIncomplete | "emoji" | "fangsong";
8465
8511
  type GenericIncomplete = "ui-monospace" | "ui-rounded" | "ui-sans-serif" | "ui-serif";
8466
8512
  type GeometryBox = VisualBox | "fill-box" | "margin-box" | "stroke-box" | "view-box";
8467
- type GridLine = "auto" | UnionString$1;
8513
+ type GridLine = "auto";
8468
8514
  type LineStyle = "dashed" | "dotted" | "double" | "groove" | "hidden" | "inset" | "none" | "outset" | "ridge" | "solid";
8469
8515
  type LineWidth<TLength> = TLength | "medium" | "thick" | "thin";
8470
8516
  type MaskingMode = "alpha" | "luminance" | "match-source";
8471
- type MaskLayer<TLength> = Position<TLength> | RepeatStyle | GeometryBox | CompositingOperator | MaskingMode | "no-clip" | "none" | UnionString$1;
8517
+ type MaskLayer<TLength> = Position<TLength> | RepeatStyle | GeometryBox | CompositingOperator | MaskingMode | "no-clip" | "none";
8472
8518
  type NamedColor = "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen";
8473
8519
  type OutlineLineStyle = "dashed" | "dotted" | "double" | "groove" | "inset" | "none" | "outset" | "ridge" | "solid";
8474
8520
  type PageSize = "A3" | "A4" | "A5" | "B4" | "B5" | "JIS-B4" | "JIS-B5" | "ledger" | "legal" | "letter";
8475
- type Paint = Color | "context-fill" | "context-stroke" | "none" | UnionString$1;
8521
+ type Paint = Color | "context-fill" | "context-stroke" | "none";
8476
8522
  type PaintBox = VisualBox | "fill-box" | "stroke-box";
8477
- type Position<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top" | UnionString$1;
8478
- type PositionArea = "block-end" | "block-start" | "bottom" | "center" | "end" | "inline-end" | "inline-start" | "left" | "right" | "self-block-end" | "self-block-start" | "self-end" | "self-inline-end" | "self-inline-start" | "self-start" | "span-all" | "span-block-end" | "span-block-start" | "span-bottom" | "span-end" | "span-inline-end" | "span-inline-start" | "span-left" | "span-right" | "span-self-block-end" | "span-self-block-start" | "span-self-end" | "span-self-inline-end" | "span-self-inline-start" | "span-self-start" | "span-start" | "span-top" | "span-x-end" | "span-x-self-end" | "span-x-self-start" | "span-x-start" | "span-y-end" | "span-y-self-end" | "span-y-self-start" | "span-y-start" | "start" | "top" | "x-end" | "x-self-end" | "x-self-start" | "x-start" | "y-end" | "y-self-end" | "y-self-start" | "y-start" | UnionString$1;
8523
+ type Position<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top";
8524
+ type PositionArea = "block-end" | "block-start" | "bottom" | "center" | "end" | "inline-end" | "inline-start" | "left" | "right" | "self-block-end" | "self-block-start" | "self-end" | "self-inline-end" | "self-inline-start" | "self-start" | "span-all" | "span-block-end" | "span-block-start" | "span-bottom" | "span-end" | "span-inline-end" | "span-inline-start" | "span-left" | "span-right" | "span-self-block-end" | "span-self-block-start" | "span-self-end" | "span-self-inline-end" | "span-self-inline-start" | "span-self-start" | "span-start" | "span-top" | "span-x-end" | "span-x-self-end" | "span-x-self-start" | "span-x-start" | "span-y-end" | "span-y-self-end" | "span-y-self-start" | "span-y-start" | "start" | "top" | "x-end" | "x-self-end" | "x-self-start" | "x-start" | "y-end" | "y-self-end" | "y-self-start" | "y-start";
8479
8525
  type Quote = "close-quote" | "no-close-quote" | "no-open-quote" | "open-quote";
8480
- type RepeatStyle = "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space" | UnionString$1;
8526
+ type RepeatStyle = "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space";
8481
8527
  type SelfPosition = "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start";
8482
- type SingleAnimation<TTime> = EasingFunction | SingleAnimationDirection | SingleAnimationFillMode | SingleAnimationTimeline | TTime | "auto" | "infinite" | "none" | "paused" | "running" | UnionString$1;
8528
+ type SingleAnimation<TTime> = EasingFunction | SingleAnimationDirection | SingleAnimationFillMode | SingleAnimationTimeline | TTime | "auto" | "infinite" | "none" | "paused" | "running";
8483
8529
  type SingleAnimationComposition = "accumulate" | "add" | "replace";
8484
8530
  type SingleAnimationDirection = "alternate" | "alternate-reverse" | "normal" | "reverse";
8485
8531
  type SingleAnimationFillMode = "backwards" | "both" | "forwards" | "none";
8486
- type SingleAnimationTimeline = "auto" | "none" | UnionString$1;
8487
- type SingleTransition<TTime> = EasingFunction | TTime | "all" | "allow-discrete" | "none" | "normal" | UnionString$1;
8488
- type StepEasingFunction = "step-end" | "step-start" | UnionString$1;
8532
+ type SingleAnimationTimeline = "auto" | "none";
8533
+ type SingleTransition<TTime> = EasingFunction | TTime | "all" | "allow-discrete" | "none" | "normal";
8534
+ type StepEasingFunction = "step-end" | "step-start";
8489
8535
  type SystemColor = "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText";
8490
8536
  type SystemFamilyName = "caption" | "icon" | "menu" | "message-box" | "small-caption" | "status-bar";
8491
- type TextEdge = "cap" | "ex" | "ideographic" | "ideographic-ink" | "text" | UnionString$1;
8537
+ type TextEdge = "cap" | "ex" | "ideographic" | "ideographic-ink" | "text";
8492
8538
  type TimelineRangeName = "contain" | "cover" | "entry" | "entry-crossing" | "exit" | "exit-crossing";
8493
- type TrackBreadth<TLength> = TLength | "auto" | "max-content" | "min-content" | UnionString$1;
8539
+ type TrackBreadth<TLength> = TLength | "auto" | "max-content" | "min-content";
8494
8540
  type TrySize = "most-block-size" | "most-height" | "most-inline-size" | "most-width";
8495
- type TryTactic = "flip-block" | "flip-inline" | "flip-start" | UnionString$1;
8541
+ type TryTactic = "flip-block" | "flip-inline" | "flip-start";
8496
8542
  type VisualBox = "border-box" | "content-box" | "padding-box";
8497
8543
  }
8498
8544
  //#endregion
@@ -8501,15 +8547,16 @@ interface CSSVariables {
8501
8547
  [K: (`--${string}` & {})]: UnionString;
8502
8548
  }
8503
8549
  interface CSSProperties extends Properties$1, PropertiesHyphen, CSSVariables {}
8504
- type CSSProperty = keyof CSSProperties;
8550
+ type CSSProperty = Extract<keyof CSSProperties, string>;
8505
8551
  type PropertyValue<T> = T | [value: T, fallback: T[]] | Nullish;
8506
- type _CssPropertiesValue = ResolvedAutocomplete['CssPropertiesValue'];
8552
+ type _CssPropertiesValue = ResolvedAutocompleteCSSPropertyValue;
8507
8553
  type _CssPropertiesValueWildcard = GetValue<_CssPropertiesValue, '*'>;
8508
- type Properties_CSS_Camel = { [Key in keyof Properties$1]?: PropertyValue<UnionString | GetValue<CSSProperties, Key> | GetValue<_CssPropertiesValue, Key> | GetValue<_CssPropertiesValue, ToKebab<Key>> | _CssPropertiesValueWildcard> };
8509
- type Properties_CSS_Hyphen = { [Key in keyof PropertiesHyphen]?: PropertyValue<UnionString | GetValue<CSSProperties, Key> | GetValue<_CssPropertiesValue, Key> | GetValue<_CssPropertiesValue, FromKebab<Key>> | _CssPropertiesValueWildcard> };
8554
+ type CSSPropertyInputValue<Key extends string, RelatedKey extends string = Key> = PropertyValue<UnionString | GetValue<CSSProperties, Key> | GetValue<_CssPropertiesValue, RelatedKey> | _CssPropertiesValueWildcard>;
8555
+ type Properties_CSS_Camel = { [Key in keyof Properties$1]?: CSSPropertyInputValue<Key, Key | ToKebab<Key>> };
8556
+ type Properties_CSS_Hyphen = { [Key in keyof PropertiesHyphen]?: CSSPropertyInputValue<Key, Key | FromKebab<Key>> };
8510
8557
  type Properties_CSS_Vars = { [K in `--${string}` & {}]?: PropertyValue<UnionString | _CssPropertiesValueWildcard> };
8511
- type Properties_ExtraCSS = { [Key in ResolvedAutocomplete['ExtraCssProperty']]?: PropertyValue<UnionString | GetValue<CSSProperties, Key> | GetValue<_CssPropertiesValue, ToKebab<Key>> | _CssPropertiesValueWildcard> };
8512
- type Properties_Extra = { [Key in ResolvedAutocomplete['ExtraProperty']]?: GetValue<ResolvedAutocomplete['PropertiesValue'], Key> };
8558
+ type Properties_ExtraCSS = { [Key in ResolvedExtraCSSProperty]?: CSSPropertyInputValue<Key, Key | ToKebab<Key> | FromKebab<Key>> };
8559
+ type Properties_Extra = { [Key in ResolvedExtraProperty]?: GetValue<ResolvedAutocompletePropertyValue, Key> };
8513
8560
  interface Properties extends Properties_CSS_Camel, Properties_CSS_Hyphen, Properties_CSS_Vars, Properties_ExtraCSS, Properties_Extra {}
8514
8561
  type CSSPseudos = `${'$'}${Pseudos}`;
8515
8562
  type CSSSelector = AtRules.Nested | CSSPseudos;
@@ -8528,13 +8575,12 @@ interface ExtractedStyleContent {
8528
8575
  selector: string[];
8529
8576
  property: string;
8530
8577
  value: string[] | Nullish;
8531
- layer?: string;
8532
8578
  }
8533
8579
  interface StyleContent {
8534
8580
  selector: string[];
8535
8581
  property: string;
8536
8582
  value: string[];
8537
- layer?: string;
8583
+ orderSensitiveTo?: string[];
8538
8584
  }
8539
8585
  interface AtomicStyle {
8540
8586
  id: string;
@@ -8551,33 +8597,48 @@ type CSSStyleBlocks = Map<string, CSSStyleBlockBody>;
8551
8597
  //#endregion
8552
8598
  //#region src/internal/types/resolved.d.ts
8553
8599
  type ResolvedAutocomplete = ResolveFrom<PikaAugment, 'Autocomplete', _Autocomplete, EmptyAutocomplete>;
8600
+ type ResolvedAutocompletePropertyValue = ResolvedAutocomplete['PropertyValue'];
8601
+ type ResolvedAutocompleteCSSPropertyValue = ResolvedAutocomplete['CSSPropertyValue'];
8602
+ type ResolvedExtraProperty = AutocompleteKeys<ResolvedAutocompletePropertyValue>;
8603
+ type ResolvedExtraCSSProperty = AutocompleteKeys<ResolvedAutocompleteCSSPropertyValue>;
8554
8604
  type ResolvedLayerName = IsNever<ResolvedAutocomplete['Layer']> extends true ? UnionString : ResolvedAutocomplete['Layer'];
8555
8605
  type ResolvedSelector = ResolveFrom<PikaAugment, 'Selector', string, string>;
8556
8606
  type ResolvedProperties = ResolveFrom<PikaAugment, 'Properties', any, InternalProperties>;
8557
- type ResolvedCSSProperties = Omit<ResolvedProperties, ResolvedAutocomplete['ExtraProperty']>;
8607
+ type ResolvedCSSProperties = Omit<ResolvedProperties, ResolvedExtraProperty>;
8558
8608
  type ResolvedStyleDefinition = ResolveFrom<PikaAugment, 'StyleDefinition', any, InternalStyleDefinition>;
8559
8609
  type ResolvedStyleItem = ResolveFrom<PikaAugment, 'StyleItem', any, InternalStyleItem>;
8560
8610
  //#endregion
8561
8611
  //#region src/internal/types/preflight.d.ts
8562
8612
  type PreflightDefinition = { [selector in UnionString | ResolvedSelector]?: ResolvedCSSProperties | PreflightDefinition };
8563
8613
  type PreflightFn = (engine: Engine, isFormatted: boolean) => Awaitable<string | PreflightDefinition>;
8564
- interface WithLayer<T extends string | PreflightDefinition | PreflightFn> {
8565
- layer: string;
8566
- preflight: T;
8567
- }
8568
8614
  interface ResolvedPreflight {
8569
8615
  layer?: string;
8616
+ id?: string;
8570
8617
  fn: PreflightFn;
8571
8618
  }
8572
8619
  /**
8573
- * Preflight can be a string, object, function, or a layer-wrapped variant.
8620
+ * Wrap a preflight with a stable identifier so it can be distinguished or replaced after resolution.
8621
+ */
8622
+ interface WithId<T> {
8623
+ id: string;
8624
+ preflight: T;
8625
+ }
8626
+ type MaybeWithId<T> = WithId<T> | T;
8627
+ interface WithLayer<T> {
8628
+ layer: string;
8629
+ preflight: T;
8630
+ }
8631
+ type MaybeWithLayer<T> = WithLayer<T> | T;
8632
+ /**
8633
+ * Preflight can be a string, object, function, or a wrapper-enhanced variant.
8574
8634
  *
8575
8635
  * 1. A `string` is a static preflight style injected verbatim.
8576
8636
  * 2. A `PreflightDefinition` is a JS object describing CSS rules.
8577
8637
  * 3. A `PreflightFn` is a dynamic preflight that receives the engine instance.
8578
- * 4. A `WithLayer` wrapper assigns any of the above to a specific CSS `@layer`.
8638
+ * 4. A `WithId` wrapper assigns a stable `id` to any raw preflight value.
8639
+ * 5. A `WithLayer` wrapper assigns a raw or `id`-wrapped preflight to a specific CSS `@layer`.
8579
8640
  */
8580
- type Preflight = string | PreflightDefinition | PreflightFn | WithLayer<string | PreflightDefinition | PreflightFn>;
8641
+ type Preflight = MaybeWithLayer<MaybeWithId<string | PreflightDefinition | PreflightFn>>;
8581
8642
  //#endregion
8582
8643
  //#region src/internal/types/engine.d.ts
8583
8644
  interface EngineConfig$1 {
@@ -8598,11 +8659,11 @@ interface EngineConfig$1 {
8598
8659
  /**
8599
8660
  * Set the prefix for generated atomic style id.
8600
8661
  *
8601
- * @default ''
8662
+ * @default 'pk-'
8602
8663
  * @example
8603
8664
  * ```ts
8604
8665
  * {
8605
- * prefix: 'pika-' // Generated atomic id will be 'pika-xxx'
8666
+ * prefix: 'pk-' // Generated atomic id will be 'pk-xxx'
8606
8667
  * }
8607
8668
  * ```
8608
8669
  */
@@ -8639,6 +8700,20 @@ interface EngineConfig$1 {
8639
8700
  * ```
8640
8701
  */
8641
8702
  preflights?: Preflight[];
8703
+ /**
8704
+ * Register top-level CSS @import rules that must be emitted before preflight blocks.
8705
+ *
8706
+ * @default []
8707
+ * @example
8708
+ * ```ts
8709
+ * {
8710
+ * cssImports: [
8711
+ * '@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");'
8712
+ * ]
8713
+ * }
8714
+ * ```
8715
+ */
8716
+ cssImports?: string[];
8642
8717
  /**
8643
8718
  * Configure CSS @layer order. Keys are layer names, values are order numbers (lower = earlier).
8644
8719
  * Merged on top of the default layers `{ preflights: 1, utilities: 10 }`, so any keys not
@@ -8654,17 +8729,40 @@ interface EngineConfig$1 {
8654
8729
  */
8655
8730
  layers?: Record<string, number>;
8656
8731
  /**
8657
- * The layer name that unlayered preflights are automatically wrapped into.
8732
+ * The layer name used for unlayered preflights when that layer exists in `layers`.
8733
+ * If the named layer is not configured, unlayered preflights stay unlayered.
8658
8734
  *
8659
8735
  * @default 'preflights'
8660
8736
  */
8661
8737
  defaultPreflightsLayer?: string;
8662
8738
  /**
8663
- * The layer name that atomic styles without an explicit `__layer` are placed into.
8739
+ * The preferred layer for atomic styles without an explicit `__layer`.
8740
+ * When the named layer is not configured, they fall back to the last configured layer,
8741
+ * or remain unlayered if no layers exist.
8664
8742
  *
8665
8743
  * @default 'utilities'
8666
8744
  */
8667
8745
  defaultUtilitiesLayer?: string;
8746
+ /**
8747
+ * Register custom autocomplete entries directly from engine config.
8748
+ * This is merged with built-in plugins and plugin-provided autocomplete.
8749
+ *
8750
+ * @example
8751
+ * ```ts
8752
+ * {
8753
+ * autocomplete: {
8754
+ * styleItemStrings: ['btn-primary'],
8755
+ * properties: {
8756
+ * variant: ['"solid"', '"ghost"']
8757
+ * },
8758
+ * patterns: {
8759
+ * selectors: ['screen-${number}']
8760
+ * }
8761
+ * }
8762
+ * }
8763
+ * ```
8764
+ */
8765
+ autocomplete?: AutocompleteConfig;
8668
8766
  }
8669
8767
  interface ResolvedEngineConfig {
8670
8768
  rawConfig: EngineConfig$1;
@@ -8672,6 +8770,7 @@ interface ResolvedEngineConfig {
8672
8770
  defaultSelector: string;
8673
8771
  plugins: EnginePlugin[];
8674
8772
  preflights: ResolvedPreflight[];
8773
+ cssImports: string[];
8675
8774
  autocomplete: ResolvedAutocompleteConfig;
8676
8775
  /** Always contains at least the default layers (`preflights` and `utilities`). */
8677
8776
  layers: Record<string, number>;
@@ -8767,12 +8866,7 @@ declare const log: {
8767
8866
  setWarnFn: (fn: (prefix: string, ...args: unknown[]) => void) => void;
8768
8867
  setErrorFn: (fn: (prefix: string, ...args: unknown[]) => void) => void;
8769
8868
  };
8770
- declare function appendAutocompleteSelectors(config: Pick<ResolvedEngineConfig, 'autocomplete'>, ...selectors: string[]): void;
8771
- declare function appendAutocompleteStyleItemStrings(config: Pick<ResolvedEngineConfig, 'autocomplete'>, ...styleItemStrings: string[]): void;
8772
- declare function appendAutocompleteExtraProperties(config: Pick<ResolvedEngineConfig, 'autocomplete'>, ...properties: string[]): void;
8773
- declare function appendAutocompleteExtraCssProperties(config: Pick<ResolvedEngineConfig, 'autocomplete'>, ...properties: string[]): void;
8774
- declare function appendAutocompletePropertyValues(config: Pick<ResolvedEngineConfig, 'autocomplete'>, property: string, ...tsTypes: string[]): void;
8775
- declare function appendAutocompleteCssPropertyValues(config: Pick<ResolvedEngineConfig, 'autocomplete'>, property: string, ...values: string[]): void;
8869
+ declare function appendAutocomplete(config: Pick<ResolvedEngineConfig, 'autocomplete'>, contribution: AutocompleteContribution | AutocompleteConfig): boolean;
8776
8870
  declare function renderCSSStyleBlocks(blocks: CSSStyleBlocks, isFormatted: boolean, depth?: number): string;
8777
8871
  //#endregion
8778
8872
  //#region src/index.d.ts
@@ -8784,4 +8878,4 @@ declare function defineSelector<const T extends Selector>(selector: T): T;
8784
8878
  declare function defineShortcut<const T extends Shortcut>(shortcut: T): T;
8785
8879
  declare function defineVariables<const T extends VariablesDefinition>(variables: T): T;
8786
8880
  //#endregion
8787
- export { Arrayable, Awaitable, type CSSProperty, type CSSSelector, type CSSStyleBlockBody, type CSSStyleBlocks, type DefineAutocomplete, type Engine, type EngineConfig$1 as EngineConfig, type EnginePlugin, FromKebab, GetValue, IsEqual, IsNever, Keyframes, KeyframesConfig, KeyframesProgress, Nullish, type PikaAugment, type Preflight, type PreflightDefinition, type PreflightFn, type Properties, type PropertyValue, ResolveFrom, type ResolvedLayerName, type ResolvedPreflight, Selector, SelectorsConfig, Shortcut, ShortcutsConfig, Simplify, type StyleDefinition, type StyleDefinitionMap, type StyleItem, ToKebab, UnionString, UnionToIntersection, Variable, VariableAutocomplete, VariableObject, VariablesConfig, VariablesDefinition, type WithLayer, appendAutocompleteCssPropertyValues, appendAutocompleteExtraCssProperties, appendAutocompleteExtraProperties, appendAutocompletePropertyValues, appendAutocompleteSelectors, appendAutocompleteStyleItemStrings, createEngine, createLogger, defineEngineConfig, defineEnginePlugin, defineKeyframes, definePreflight, defineSelector, defineShortcut, defineStyleDefinition, defineVariables, extractUsedVarNames, important, keyframes, log, normalizeVariableName, renderCSSStyleBlocks, resolveSelectorConfig, selectors$1 as selectors, shortcuts, sortLayerNames, variables };
8881
+ export { Arrayable, type AutocompleteConfig, type AutocompleteContribution, type AutocompletePatternsConfig, Awaitable, type CSSProperty, type CSSSelector, type CSSStyleBlockBody, type CSSStyleBlocks, type DefineAutocomplete, type Engine, type EngineConfig$1 as EngineConfig, type EnginePlugin, FromKebab, GetValue, IsEqual, IsNever, Keyframes, KeyframesConfig, KeyframesProgress, Nullish, type PikaAugment, type Preflight, type PreflightDefinition, type PreflightFn, type Properties, type PropertyValue, ResolveFrom, type ResolvedLayerName, type ResolvedPreflight, Selector, SelectorsConfig, Shortcut, ShortcutsConfig, Simplify, type StyleDefinition, type StyleDefinitionMap, type StyleItem, ToKebab, UnionString, UnionToIntersection, Variable, VariableAutocomplete, VariableObject, VariableSemanticType, VariablesConfig, VariablesDefinition, appendAutocomplete, createEngine, createLogger, defineEngineConfig, defineEnginePlugin, defineKeyframes, definePreflight, defineSelector, defineShortcut, defineStyleDefinition, defineVariables, extractUsedVarNames, extractUsedVarNamesFromPreflightResult, important, keyframes, log, normalizeVariableName, renderCSSStyleBlocks, resolveSelectorConfig, selectors$1 as selectors, shortcuts, sortLayerNames, variables };