@pikacss/core 0.0.46 → 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.
- package/dist/index.d.mts +802 -720
- package/dist/index.mjs +1351 -175
- 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
|
|
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
|
* }
|
|
@@ -254,6 +266,37 @@ type GetValue<Obj, K extends string> = [Obj] extends [never] ? never : K extends
|
|
|
254
266
|
type ResolveFrom<T, Key extends string, I, Fallback extends I> = Key extends keyof T ? T[Key] extends I ? T[Key] : Fallback : Fallback;
|
|
255
267
|
//#endregion
|
|
256
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
|
+
}
|
|
257
300
|
interface ResolvedAutocompleteConfig {
|
|
258
301
|
selectors: Set<string>;
|
|
259
302
|
styleItemStrings: Set<string>;
|
|
@@ -261,27 +304,32 @@ interface ResolvedAutocompleteConfig {
|
|
|
261
304
|
extraCssProperties: Set<string>;
|
|
262
305
|
properties: Map<string, string[]>;
|
|
263
306
|
cssProperties: Map<string, string[]>;
|
|
307
|
+
patterns: ResolvedAutocompletePatternsConfig;
|
|
264
308
|
}
|
|
265
309
|
interface _Autocomplete {
|
|
266
310
|
Selector: UnionString;
|
|
267
311
|
StyleItemString: UnionString;
|
|
268
|
-
ExtraProperty: UnionString;
|
|
269
|
-
ExtraCssProperty: UnionString;
|
|
270
312
|
Layer: UnionString;
|
|
271
|
-
|
|
272
|
-
|
|
313
|
+
PropertyValue: Record<string, unknown>;
|
|
314
|
+
CSSPropertyValue: Record<string, UnionString>;
|
|
273
315
|
}
|
|
274
316
|
type DefineAutocomplete<A extends _Autocomplete> = A;
|
|
275
317
|
type EmptyAutocomplete = DefineAutocomplete<{
|
|
276
318
|
Selector: never;
|
|
277
319
|
StyleItemString: never;
|
|
278
|
-
ExtraProperty: never;
|
|
279
|
-
ExtraCssProperty: never;
|
|
280
320
|
Layer: never;
|
|
281
|
-
|
|
282
|
-
|
|
321
|
+
PropertyValue: never;
|
|
322
|
+
CSSPropertyValue: never;
|
|
283
323
|
}>;
|
|
284
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
|
|
285
333
|
//#region src/internal/extractor.d.ts
|
|
286
334
|
type ExtractFn = (styleDefinition: InternalStyleDefinition) => Promise<ExtractedStyleContent[]>;
|
|
287
335
|
//#endregion
|
|
@@ -302,20 +350,13 @@ declare class Engine {
|
|
|
302
350
|
autocompleteConfigUpdated: (plugins: EnginePlugin[]) => void;
|
|
303
351
|
};
|
|
304
352
|
extract: ExtractFn;
|
|
305
|
-
store:
|
|
306
|
-
atomicStyleIds: Map<string, string>;
|
|
307
|
-
atomicStyles: Map<string, AtomicStyle>;
|
|
308
|
-
};
|
|
353
|
+
store: EngineStore;
|
|
309
354
|
constructor(config: ResolvedEngineConfig);
|
|
310
355
|
notifyPreflightUpdated(): void;
|
|
311
356
|
notifyAtomicStyleAdded(atomicStyle: AtomicStyle): void;
|
|
312
357
|
notifyAutocompleteConfigUpdated(): void;
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
appendAutocompleteExtraProperties(...properties: string[]): void;
|
|
316
|
-
appendAutocompleteExtraCssProperties(...properties: string[]): void;
|
|
317
|
-
appendAutocompletePropertyValues(property: string, ...tsTypes: string[]): void;
|
|
318
|
-
appendAutocompleteCssPropertyValues(property: string, ...values: string[]): void;
|
|
358
|
+
appendAutocomplete(contribution: AutocompleteContribution): void;
|
|
359
|
+
appendCssImport(cssImport: string): void;
|
|
319
360
|
addPreflight(preflight: Preflight): void;
|
|
320
361
|
use(...itemList: InternalStyleItem[]): Promise<string[]>;
|
|
321
362
|
renderPreflights(isFormatted: boolean): Promise<string>;
|
|
@@ -395,13 +436,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
395
436
|
*/
|
|
396
437
|
all?: Property.All | undefined;
|
|
397
438
|
/**
|
|
398
|
-
*
|
|
439
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
399
440
|
*
|
|
400
441
|
* @see https://developer.mozilla.org/docs/Web/CSS/anchor-name
|
|
401
442
|
*/
|
|
402
443
|
anchorName?: Property.AnchorName | undefined;
|
|
403
444
|
/**
|
|
404
|
-
*
|
|
445
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
405
446
|
*/
|
|
406
447
|
anchorScope?: Property.AnchorScope | undefined;
|
|
407
448
|
/**
|
|
@@ -526,7 +567,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
526
567
|
*/
|
|
527
568
|
background?: Property.Background | undefined;
|
|
528
569
|
/**
|
|
529
|
-
*
|
|
570
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
530
571
|
*
|
|
531
572
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-attachment
|
|
532
573
|
*/
|
|
@@ -568,19 +609,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
568
609
|
*/
|
|
569
610
|
backgroundPosition?: Property.BackgroundPosition<TLength> | undefined;
|
|
570
611
|
/**
|
|
571
|
-
* ✅ Baseline: Widely available (since
|
|
612
|
+
* ✅ Baseline: Widely available (since Mar 2019)
|
|
572
613
|
*
|
|
573
614
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-position-x
|
|
574
615
|
*/
|
|
575
616
|
backgroundPositionX?: Property.BackgroundPositionX<TLength> | undefined;
|
|
576
617
|
/**
|
|
577
|
-
* ✅ Baseline: Widely available (since
|
|
618
|
+
* ✅ Baseline: Widely available (since Mar 2019)
|
|
578
619
|
*
|
|
579
620
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-position-y
|
|
580
621
|
*/
|
|
581
622
|
backgroundPositionY?: Property.BackgroundPositionY<TLength> | undefined;
|
|
582
623
|
/**
|
|
583
|
-
* ✅ Baseline: Widely available (since
|
|
624
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
584
625
|
*
|
|
585
626
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-repeat
|
|
586
627
|
*/
|
|
@@ -602,7 +643,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
602
643
|
*/
|
|
603
644
|
baselineSource?: Property.BaselineSource | undefined;
|
|
604
645
|
/**
|
|
605
|
-
* ✅ Baseline: Widely available (since
|
|
646
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
606
647
|
*
|
|
607
648
|
* @see https://developer.mozilla.org/docs/Web/CSS/block-size
|
|
608
649
|
*/
|
|
@@ -614,73 +655,73 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
614
655
|
*/
|
|
615
656
|
border?: Property.Border<TLength> | undefined;
|
|
616
657
|
/**
|
|
617
|
-
* ✅ Baseline: Widely available (since
|
|
658
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
618
659
|
*
|
|
619
660
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block
|
|
620
661
|
*/
|
|
621
662
|
borderBlock?: Property.BorderBlock<TLength> | undefined;
|
|
622
663
|
/**
|
|
623
|
-
* ✅ Baseline: Widely available (since
|
|
664
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
624
665
|
*
|
|
625
666
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
|
|
626
667
|
*/
|
|
627
668
|
borderBlockColor?: Property.BorderBlockColor | undefined;
|
|
628
669
|
/**
|
|
629
|
-
* ✅ Baseline: Widely available (since
|
|
670
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
630
671
|
*
|
|
631
672
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end
|
|
632
673
|
*/
|
|
633
674
|
borderBlockEnd?: Property.BorderBlockEnd<TLength> | undefined;
|
|
634
675
|
/**
|
|
635
|
-
* ✅ Baseline: Widely available (since
|
|
676
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
636
677
|
*
|
|
637
678
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color
|
|
638
679
|
*/
|
|
639
680
|
borderBlockEndColor?: Property.BorderBlockEndColor | undefined;
|
|
640
681
|
/**
|
|
641
|
-
* ✅ Baseline: Widely available (since
|
|
682
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
642
683
|
*
|
|
643
684
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-style
|
|
644
685
|
*/
|
|
645
686
|
borderBlockEndStyle?: Property.BorderBlockEndStyle | undefined;
|
|
646
687
|
/**
|
|
647
|
-
* ✅ Baseline: Widely available (since
|
|
688
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
648
689
|
*
|
|
649
690
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width
|
|
650
691
|
*/
|
|
651
692
|
borderBlockEndWidth?: Property.BorderBlockEndWidth<TLength> | undefined;
|
|
652
693
|
/**
|
|
653
|
-
* ✅ Baseline: Widely available (since
|
|
694
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
654
695
|
*
|
|
655
696
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start
|
|
656
697
|
*/
|
|
657
698
|
borderBlockStart?: Property.BorderBlockStart<TLength> | undefined;
|
|
658
699
|
/**
|
|
659
|
-
* ✅ Baseline: Widely available (since
|
|
700
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
660
701
|
*
|
|
661
702
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color
|
|
662
703
|
*/
|
|
663
704
|
borderBlockStartColor?: Property.BorderBlockStartColor | undefined;
|
|
664
705
|
/**
|
|
665
|
-
* ✅ Baseline: Widely available (since
|
|
706
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
666
707
|
*
|
|
667
708
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-style
|
|
668
709
|
*/
|
|
669
710
|
borderBlockStartStyle?: Property.BorderBlockStartStyle | undefined;
|
|
670
711
|
/**
|
|
671
|
-
* ✅ Baseline: Widely available (since
|
|
712
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
672
713
|
*
|
|
673
714
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width
|
|
674
715
|
*/
|
|
675
716
|
borderBlockStartWidth?: Property.BorderBlockStartWidth<TLength> | undefined;
|
|
676
717
|
/**
|
|
677
|
-
* ✅ Baseline: Widely available (since
|
|
718
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
678
719
|
*
|
|
679
720
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
|
|
680
721
|
*/
|
|
681
722
|
borderBlockStyle?: Property.BorderBlockStyle | undefined;
|
|
682
723
|
/**
|
|
683
|
-
* ✅ Baseline: Widely available (since
|
|
724
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
684
725
|
*
|
|
685
726
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
|
|
686
727
|
*/
|
|
@@ -746,109 +787,109 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
746
787
|
*/
|
|
747
788
|
borderEndStartRadius?: Property.BorderEndStartRadius<TLength> | undefined;
|
|
748
789
|
/**
|
|
749
|
-
* ✅ Baseline: Widely available (since
|
|
790
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
750
791
|
*
|
|
751
792
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image
|
|
752
793
|
*/
|
|
753
794
|
borderImage?: Property.BorderImage<TLength> | undefined;
|
|
754
795
|
/**
|
|
755
|
-
* ✅ Baseline: Widely available (since
|
|
796
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
756
797
|
*
|
|
757
798
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset
|
|
758
799
|
*/
|
|
759
800
|
borderImageOutset?: Property.BorderImageOutset<TLength> | undefined;
|
|
760
801
|
/**
|
|
761
|
-
* ✅ Baseline: Widely available (since
|
|
802
|
+
* ✅ Baseline: Widely available (since Sep 2018)
|
|
762
803
|
*
|
|
763
804
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat
|
|
764
805
|
*/
|
|
765
806
|
borderImageRepeat?: Property.BorderImageRepeat | undefined;
|
|
766
807
|
/**
|
|
767
|
-
* ✅ Baseline: Widely available (since
|
|
808
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
768
809
|
*
|
|
769
810
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice
|
|
770
811
|
*/
|
|
771
812
|
borderImageSlice?: Property.BorderImageSlice | undefined;
|
|
772
813
|
/**
|
|
773
|
-
* ✅ Baseline: Widely available (since
|
|
814
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
774
815
|
*
|
|
775
816
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-source
|
|
776
817
|
*/
|
|
777
818
|
borderImageSource?: Property.BorderImageSource | undefined;
|
|
778
819
|
/**
|
|
779
|
-
* ✅ Baseline: Widely available (since
|
|
820
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
780
821
|
*
|
|
781
822
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-width
|
|
782
823
|
*/
|
|
783
824
|
borderImageWidth?: Property.BorderImageWidth<TLength> | undefined;
|
|
784
825
|
/**
|
|
785
|
-
* ✅ Baseline: Widely available (since
|
|
826
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
786
827
|
*
|
|
787
828
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline
|
|
788
829
|
*/
|
|
789
830
|
borderInline?: Property.BorderInline<TLength> | undefined;
|
|
790
831
|
/**
|
|
791
|
-
* ✅ Baseline: Widely available (since
|
|
832
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
792
833
|
*
|
|
793
834
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
|
|
794
835
|
*/
|
|
795
836
|
borderInlineColor?: Property.BorderInlineColor | undefined;
|
|
796
837
|
/**
|
|
797
|
-
* ✅ Baseline: Widely available (since
|
|
838
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
798
839
|
*
|
|
799
840
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
|
|
800
841
|
*/
|
|
801
842
|
borderInlineEnd?: Property.BorderInlineEnd<TLength> | undefined;
|
|
802
843
|
/**
|
|
803
|
-
* ✅ Baseline: Widely available (since
|
|
844
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
804
845
|
*
|
|
805
846
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color
|
|
806
847
|
*/
|
|
807
848
|
borderInlineEndColor?: Property.BorderInlineEndColor | undefined;
|
|
808
849
|
/**
|
|
809
|
-
* ✅ Baseline: Widely available (since
|
|
850
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
810
851
|
*
|
|
811
852
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style
|
|
812
853
|
*/
|
|
813
854
|
borderInlineEndStyle?: Property.BorderInlineEndStyle | undefined;
|
|
814
855
|
/**
|
|
815
|
-
* ✅ Baseline: Widely available (since
|
|
856
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
816
857
|
*
|
|
817
858
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width
|
|
818
859
|
*/
|
|
819
860
|
borderInlineEndWidth?: Property.BorderInlineEndWidth<TLength> | undefined;
|
|
820
861
|
/**
|
|
821
|
-
* ✅ Baseline: Widely available (since
|
|
862
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
822
863
|
*
|
|
823
864
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start
|
|
824
865
|
*/
|
|
825
866
|
borderInlineStart?: Property.BorderInlineStart<TLength> | undefined;
|
|
826
867
|
/**
|
|
827
|
-
* ✅ Baseline: Widely available (since
|
|
868
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
828
869
|
*
|
|
829
870
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color
|
|
830
871
|
*/
|
|
831
872
|
borderInlineStartColor?: Property.BorderInlineStartColor | undefined;
|
|
832
873
|
/**
|
|
833
|
-
* ✅ Baseline: Widely available (since
|
|
874
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
834
875
|
*
|
|
835
876
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style
|
|
836
877
|
*/
|
|
837
878
|
borderInlineStartStyle?: Property.BorderInlineStartStyle | undefined;
|
|
838
879
|
/**
|
|
839
|
-
* ✅ Baseline: Widely available (since
|
|
880
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
840
881
|
*
|
|
841
882
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width
|
|
842
883
|
*/
|
|
843
884
|
borderInlineStartWidth?: Property.BorderInlineStartWidth<TLength> | undefined;
|
|
844
885
|
/**
|
|
845
|
-
* ✅ Baseline: Widely available (since
|
|
886
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
846
887
|
*
|
|
847
888
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
|
|
848
889
|
*/
|
|
849
890
|
borderInlineStyle?: Property.BorderInlineStyle | undefined;
|
|
850
891
|
/**
|
|
851
|
-
* ✅ Baseline: Widely available (since
|
|
892
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
852
893
|
*
|
|
853
894
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
|
|
854
895
|
*/
|
|
@@ -1114,7 +1155,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1114
1155
|
*/
|
|
1115
1156
|
clip?: Property.Clip | undefined;
|
|
1116
1157
|
/**
|
|
1117
|
-
* ✅ Baseline: Widely available (since Jul
|
|
1158
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
1118
1159
|
*
|
|
1119
1160
|
* @see https://developer.mozilla.org/docs/Web/CSS/clip-path
|
|
1120
1161
|
*/
|
|
@@ -1136,7 +1177,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1136
1177
|
*/
|
|
1137
1178
|
colorInterpolation?: Property.ColorInterpolation | undefined;
|
|
1138
1179
|
/**
|
|
1139
|
-
* ✅ Baseline: Widely available (since
|
|
1180
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
1140
1181
|
*
|
|
1141
1182
|
* @see https://developer.mozilla.org/docs/Web/CSS/color-interpolation-filters
|
|
1142
1183
|
*/
|
|
@@ -1147,7 +1188,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1147
1188
|
*/
|
|
1148
1189
|
colorRendering?: Property.ColorRendering | undefined;
|
|
1149
1190
|
/**
|
|
1150
|
-
* ✅ Baseline: Widely available (since
|
|
1191
|
+
* ✅ Baseline: Widely available (since Jul 2024)
|
|
1151
1192
|
*
|
|
1152
1193
|
* @see https://developer.mozilla.org/docs/Web/CSS/color-scheme
|
|
1153
1194
|
*/
|
|
@@ -1165,7 +1206,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1165
1206
|
*/
|
|
1166
1207
|
columnFill?: Property.ColumnFill | undefined;
|
|
1167
1208
|
/**
|
|
1168
|
-
* ✅ Baseline: Widely available (since
|
|
1209
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
1169
1210
|
*
|
|
1170
1211
|
* @see https://developer.mozilla.org/docs/Web/CSS/column-gap
|
|
1171
1212
|
*/
|
|
@@ -1214,7 +1255,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1214
1255
|
*/
|
|
1215
1256
|
columnSpan?: Property.ColumnSpan | undefined;
|
|
1216
1257
|
/**
|
|
1217
|
-
* ✅ Baseline: Widely available (since
|
|
1258
|
+
* ✅ Baseline: Widely available (since May 2019)
|
|
1218
1259
|
*
|
|
1219
1260
|
* @see https://developer.mozilla.org/docs/Web/CSS/column-width
|
|
1220
1261
|
*/
|
|
@@ -1287,7 +1328,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1287
1328
|
*/
|
|
1288
1329
|
content?: Property.Content | undefined;
|
|
1289
1330
|
/**
|
|
1290
|
-
* ⚠️ Baseline: Newly available (since Sep
|
|
1331
|
+
* ⚠️ Baseline: Newly available (since Sep 2024)
|
|
1291
1332
|
*
|
|
1292
1333
|
* @see https://developer.mozilla.org/docs/Web/CSS/content-visibility
|
|
1293
1334
|
*/
|
|
@@ -1447,31 +1488,31 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1447
1488
|
*/
|
|
1448
1489
|
counterSet?: Property.CounterSet | undefined;
|
|
1449
1490
|
/**
|
|
1450
|
-
*
|
|
1491
|
+
* ✅ Baseline: Widely available (since Jun 2024)
|
|
1451
1492
|
*
|
|
1452
1493
|
* @see https://developer.mozilla.org/docs/Web/CSS/cursor
|
|
1453
1494
|
*/
|
|
1454
1495
|
cursor?: Property.Cursor | undefined;
|
|
1455
1496
|
/**
|
|
1456
|
-
* ✅ Baseline: Widely available (since
|
|
1497
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
1457
1498
|
*
|
|
1458
1499
|
* @see https://developer.mozilla.org/docs/Web/CSS/cx
|
|
1459
1500
|
*/
|
|
1460
1501
|
cx?: Property.Cx<TLength> | undefined;
|
|
1461
1502
|
/**
|
|
1462
|
-
* ✅ Baseline: Widely available (since
|
|
1503
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
1463
1504
|
*
|
|
1464
1505
|
* @see https://developer.mozilla.org/docs/Web/CSS/cy
|
|
1465
1506
|
*/
|
|
1466
1507
|
cy?: Property.Cy<TLength> | undefined;
|
|
1467
1508
|
/**
|
|
1468
|
-
*
|
|
1509
|
+
* ❌ Baseline: Not widely available
|
|
1469
1510
|
*
|
|
1470
1511
|
* @see https://developer.mozilla.org/docs/Web/CSS/d
|
|
1471
1512
|
*/
|
|
1472
1513
|
d?: Property.D | undefined;
|
|
1473
1514
|
/**
|
|
1474
|
-
* ✅ Baseline: Widely available (since
|
|
1515
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
1475
1516
|
*
|
|
1476
1517
|
* @see https://developer.mozilla.org/docs/Web/CSS/direction
|
|
1477
1518
|
*/
|
|
@@ -1506,19 +1547,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1506
1547
|
*/
|
|
1507
1548
|
fieldSizing?: Property.FieldSizing | undefined;
|
|
1508
1549
|
/**
|
|
1509
|
-
* ✅ Baseline: Widely available (since
|
|
1550
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
1510
1551
|
*
|
|
1511
1552
|
* @see https://developer.mozilla.org/docs/Web/CSS/fill
|
|
1512
1553
|
*/
|
|
1513
1554
|
fill?: Property.Fill | undefined;
|
|
1514
1555
|
/**
|
|
1515
|
-
* ✅ Baseline: Widely available (since ≤
|
|
1556
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
1516
1557
|
*
|
|
1517
1558
|
* @see https://developer.mozilla.org/docs/Web/CSS/fill-opacity
|
|
1518
1559
|
*/
|
|
1519
1560
|
fillOpacity?: Property.FillOpacity | undefined;
|
|
1520
1561
|
/**
|
|
1521
|
-
* ✅ Baseline: Widely available (since
|
|
1562
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
1522
1563
|
*
|
|
1523
1564
|
* @see https://developer.mozilla.org/docs/Web/CSS/fill-rule
|
|
1524
1565
|
*/
|
|
@@ -1649,7 +1690,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1649
1690
|
*/
|
|
1650
1691
|
fontSmooth?: Property.FontSmooth<TLength> | undefined;
|
|
1651
1692
|
/**
|
|
1652
|
-
* ✅ Baseline: Widely available (since
|
|
1693
|
+
* ✅ Baseline: Widely available (since Mar 2020)
|
|
1653
1694
|
*
|
|
1654
1695
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-stretch
|
|
1655
1696
|
*/
|
|
@@ -1735,7 +1776,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1735
1776
|
*/
|
|
1736
1777
|
fontVariantNumeric?: Property.FontVariantNumeric | undefined;
|
|
1737
1778
|
/**
|
|
1738
|
-
*
|
|
1779
|
+
* ⚠️ Baseline: Newly available (since Sep 2023)
|
|
1739
1780
|
*
|
|
1740
1781
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
|
|
1741
1782
|
*/
|
|
@@ -1759,7 +1800,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1759
1800
|
*/
|
|
1760
1801
|
fontWidth?: Property.FontWidth | undefined;
|
|
1761
1802
|
/**
|
|
1762
|
-
*
|
|
1803
|
+
* ❌ Baseline: Not widely available
|
|
1763
1804
|
*
|
|
1764
1805
|
* @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust
|
|
1765
1806
|
*/
|
|
@@ -1789,7 +1830,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1789
1830
|
*/
|
|
1790
1831
|
gridArea?: Property.GridArea | undefined;
|
|
1791
1832
|
/**
|
|
1792
|
-
* ✅ Baseline: Widely available (since
|
|
1833
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
1793
1834
|
*
|
|
1794
1835
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns
|
|
1795
1836
|
*/
|
|
@@ -1801,7 +1842,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1801
1842
|
*/
|
|
1802
1843
|
gridAutoFlow?: Property.GridAutoFlow | undefined;
|
|
1803
1844
|
/**
|
|
1804
|
-
* ✅ Baseline: Widely available (since
|
|
1845
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
1805
1846
|
*
|
|
1806
1847
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows
|
|
1807
1848
|
*/
|
|
@@ -1918,7 +1959,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1918
1959
|
*/
|
|
1919
1960
|
imageOrientation?: Property.ImageOrientation | undefined;
|
|
1920
1961
|
/**
|
|
1921
|
-
* ✅ Baseline: Widely available (since
|
|
1962
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
1922
1963
|
*
|
|
1923
1964
|
* @see https://developer.mozilla.org/docs/Web/CSS/image-rendering
|
|
1924
1965
|
*/
|
|
@@ -1944,49 +1985,49 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
1944
1985
|
*/
|
|
1945
1986
|
initialLetterAlign?: Property.InitialLetterAlign | undefined;
|
|
1946
1987
|
/**
|
|
1947
|
-
* ✅ Baseline: Widely available (since
|
|
1988
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
1948
1989
|
*
|
|
1949
1990
|
* @see https://developer.mozilla.org/docs/Web/CSS/inline-size
|
|
1950
1991
|
*/
|
|
1951
1992
|
inlineSize?: Property.InlineSize<TLength> | undefined;
|
|
1952
1993
|
/**
|
|
1953
|
-
* ✅ Baseline: Widely available (since
|
|
1994
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
1954
1995
|
*
|
|
1955
1996
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset
|
|
1956
1997
|
*/
|
|
1957
1998
|
inset?: Property.Inset<TLength> | undefined;
|
|
1958
1999
|
/**
|
|
1959
|
-
* ✅ Baseline: Widely available (since
|
|
2000
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
1960
2001
|
*
|
|
1961
2002
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block
|
|
1962
2003
|
*/
|
|
1963
2004
|
insetBlock?: Property.InsetBlock<TLength> | undefined;
|
|
1964
2005
|
/**
|
|
1965
|
-
* ✅ Baseline: Widely available (since
|
|
2006
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
1966
2007
|
*
|
|
1967
2008
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
|
|
1968
2009
|
*/
|
|
1969
2010
|
insetBlockEnd?: Property.InsetBlockEnd<TLength> | undefined;
|
|
1970
2011
|
/**
|
|
1971
|
-
* ✅ Baseline: Widely available (since
|
|
2012
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
1972
2013
|
*
|
|
1973
2014
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
|
|
1974
2015
|
*/
|
|
1975
2016
|
insetBlockStart?: Property.InsetBlockStart<TLength> | undefined;
|
|
1976
2017
|
/**
|
|
1977
|
-
* ✅ Baseline: Widely available (since
|
|
2018
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
1978
2019
|
*
|
|
1979
2020
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
|
|
1980
2021
|
*/
|
|
1981
2022
|
insetInline?: Property.InsetInline<TLength> | undefined;
|
|
1982
2023
|
/**
|
|
1983
|
-
* ✅ Baseline: Widely available (since
|
|
2024
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
1984
2025
|
*
|
|
1985
2026
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
|
|
1986
2027
|
*/
|
|
1987
2028
|
insetInlineEnd?: Property.InsetInlineEnd<TLength> | undefined;
|
|
1988
2029
|
/**
|
|
1989
|
-
* ✅ Baseline: Widely available (since
|
|
2030
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
1990
2031
|
*
|
|
1991
2032
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
|
|
1992
2033
|
*/
|
|
@@ -2041,7 +2082,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2041
2082
|
*/
|
|
2042
2083
|
justifyContent?: Property.JustifyContent | undefined;
|
|
2043
2084
|
/**
|
|
2044
|
-
* ✅ Baseline: Widely available (since
|
|
2085
|
+
* ✅ Baseline: Widely available (since Jan 2019)
|
|
2045
2086
|
*
|
|
2046
2087
|
* @see https://developer.mozilla.org/docs/Web/CSS/justify-items
|
|
2047
2088
|
*/
|
|
@@ -2127,19 +2168,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2127
2168
|
*/
|
|
2128
2169
|
margin?: Property.Margin<TLength> | undefined;
|
|
2129
2170
|
/**
|
|
2130
|
-
* ✅ Baseline: Widely available (since
|
|
2171
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
2131
2172
|
*
|
|
2132
2173
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block
|
|
2133
2174
|
*/
|
|
2134
2175
|
marginBlock?: Property.MarginBlock<TLength> | undefined;
|
|
2135
2176
|
/**
|
|
2136
|
-
* ✅ Baseline: Widely available (since
|
|
2177
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2137
2178
|
*
|
|
2138
2179
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
|
|
2139
2180
|
*/
|
|
2140
2181
|
marginBlockEnd?: Property.MarginBlockEnd<TLength> | undefined;
|
|
2141
2182
|
/**
|
|
2142
|
-
* ✅ Baseline: Widely available (since
|
|
2183
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2143
2184
|
*
|
|
2144
2185
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
|
|
2145
2186
|
*/
|
|
@@ -2151,19 +2192,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2151
2192
|
*/
|
|
2152
2193
|
marginBottom?: Property.MarginBottom<TLength> | undefined;
|
|
2153
2194
|
/**
|
|
2154
|
-
* ✅ Baseline: Widely available (since
|
|
2195
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
2155
2196
|
*
|
|
2156
2197
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
|
|
2157
2198
|
*/
|
|
2158
2199
|
marginInline?: Property.MarginInline<TLength> | undefined;
|
|
2159
2200
|
/**
|
|
2160
|
-
* ✅ Baseline: Widely available (since
|
|
2201
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2161
2202
|
*
|
|
2162
2203
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
|
|
2163
2204
|
*/
|
|
2164
2205
|
marginInlineEnd?: Property.MarginInlineEnd<TLength> | undefined;
|
|
2165
2206
|
/**
|
|
2166
|
-
* ✅ Baseline: Widely available (since
|
|
2207
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2167
2208
|
*
|
|
2168
2209
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
|
|
2169
2210
|
*/
|
|
@@ -2195,25 +2236,25 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2195
2236
|
*/
|
|
2196
2237
|
marginTrim?: Property.MarginTrim | undefined;
|
|
2197
2238
|
/**
|
|
2198
|
-
* ✅ Baseline: Widely available (since
|
|
2239
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
2199
2240
|
*
|
|
2200
2241
|
* @see https://developer.mozilla.org/docs/Web/CSS/marker
|
|
2201
2242
|
*/
|
|
2202
2243
|
marker?: Property.Marker | undefined;
|
|
2203
2244
|
/**
|
|
2204
|
-
* ✅ Baseline: Widely available (since
|
|
2245
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
2205
2246
|
*
|
|
2206
2247
|
* @see https://developer.mozilla.org/docs/Web/CSS/marker-end
|
|
2207
2248
|
*/
|
|
2208
2249
|
markerEnd?: Property.MarkerEnd | undefined;
|
|
2209
2250
|
/**
|
|
2210
|
-
* ✅ Baseline: Widely available (since
|
|
2251
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
2211
2252
|
*
|
|
2212
2253
|
* @see https://developer.mozilla.org/docs/Web/CSS/marker-mid
|
|
2213
2254
|
*/
|
|
2214
2255
|
markerMid?: Property.MarkerMid | undefined;
|
|
2215
2256
|
/**
|
|
2216
|
-
* ✅ Baseline: Widely available (since
|
|
2257
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
2217
2258
|
*
|
|
2218
2259
|
* @see https://developer.mozilla.org/docs/Web/CSS/marker-start
|
|
2219
2260
|
*/
|
|
@@ -2325,25 +2366,25 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2325
2366
|
*/
|
|
2326
2367
|
masonryAutoFlow?: Property.MasonryAutoFlow | undefined;
|
|
2327
2368
|
/**
|
|
2328
|
-
*
|
|
2369
|
+
* ❌ Baseline: Not widely available
|
|
2329
2370
|
*
|
|
2330
2371
|
* @see https://developer.mozilla.org/docs/Web/CSS/math-depth
|
|
2331
2372
|
*/
|
|
2332
2373
|
mathDepth?: Property.MathDepth | undefined;
|
|
2333
2374
|
/**
|
|
2334
|
-
*
|
|
2375
|
+
* ⚠️ Baseline: Newly available (since Dec 2025)
|
|
2335
2376
|
*
|
|
2336
2377
|
* @see https://developer.mozilla.org/docs/Web/CSS/math-shift
|
|
2337
2378
|
*/
|
|
2338
2379
|
mathShift?: Property.MathShift | undefined;
|
|
2339
2380
|
/**
|
|
2340
|
-
*
|
|
2381
|
+
* ⚠️ Baseline: Newly available (since Aug 2023)
|
|
2341
2382
|
*
|
|
2342
2383
|
* @see https://developer.mozilla.org/docs/Web/CSS/math-style
|
|
2343
2384
|
*/
|
|
2344
2385
|
mathStyle?: Property.MathStyle | undefined;
|
|
2345
2386
|
/**
|
|
2346
|
-
* ✅ Baseline: Widely available (since
|
|
2387
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2347
2388
|
*
|
|
2348
2389
|
* @see https://developer.mozilla.org/docs/Web/CSS/max-block-size
|
|
2349
2390
|
*/
|
|
@@ -2355,7 +2396,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2355
2396
|
*/
|
|
2356
2397
|
maxHeight?: Property.MaxHeight<TLength> | undefined;
|
|
2357
2398
|
/**
|
|
2358
|
-
* ✅ Baseline: Widely available (since
|
|
2399
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2359
2400
|
*
|
|
2360
2401
|
* @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size
|
|
2361
2402
|
*/
|
|
@@ -2370,7 +2411,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2370
2411
|
*/
|
|
2371
2412
|
maxWidth?: Property.MaxWidth<TLength> | undefined;
|
|
2372
2413
|
/**
|
|
2373
|
-
* ✅ Baseline: Widely available (since
|
|
2414
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2374
2415
|
*
|
|
2375
2416
|
* @see https://developer.mozilla.org/docs/Web/CSS/min-block-size
|
|
2376
2417
|
*/
|
|
@@ -2382,7 +2423,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2382
2423
|
*/
|
|
2383
2424
|
minHeight?: Property.MinHeight<TLength> | undefined;
|
|
2384
2425
|
/**
|
|
2385
|
-
* ✅ Baseline: Widely available (since
|
|
2426
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2386
2427
|
*
|
|
2387
2428
|
* @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size
|
|
2388
2429
|
*/
|
|
@@ -2656,7 +2697,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2656
2697
|
*/
|
|
2657
2698
|
offset?: Property.Offset<TLength> | undefined;
|
|
2658
2699
|
/**
|
|
2659
|
-
*
|
|
2700
|
+
* ⚠️ Baseline: Newly available (since Aug 2023)
|
|
2660
2701
|
*
|
|
2661
2702
|
* @see https://developer.mozilla.org/docs/Web/CSS/offset-anchor
|
|
2662
2703
|
*/
|
|
@@ -2668,13 +2709,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2668
2709
|
*/
|
|
2669
2710
|
offsetDistance?: Property.OffsetDistance<TLength> | undefined;
|
|
2670
2711
|
/**
|
|
2671
|
-
* ✅ Baseline: Widely available (since
|
|
2712
|
+
* ✅ Baseline: Widely available (since Sep 2024)
|
|
2672
2713
|
*
|
|
2673
2714
|
* @see https://developer.mozilla.org/docs/Web/CSS/offset-path
|
|
2674
2715
|
*/
|
|
2675
2716
|
offsetPath?: Property.OffsetPath | undefined;
|
|
2676
2717
|
/**
|
|
2677
|
-
*
|
|
2718
|
+
* ⚠️ Baseline: Newly available (since Jan 2024)
|
|
2678
2719
|
*
|
|
2679
2720
|
* @see https://developer.mozilla.org/docs/Web/CSS/offset-position
|
|
2680
2721
|
*/
|
|
@@ -2710,7 +2751,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2710
2751
|
*/
|
|
2711
2752
|
outline?: Property.Outline<TLength> | undefined;
|
|
2712
2753
|
/**
|
|
2713
|
-
* ✅ Baseline: Widely available (since
|
|
2754
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
2714
2755
|
*
|
|
2715
2756
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-color
|
|
2716
2757
|
*/
|
|
@@ -2722,19 +2763,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2722
2763
|
*/
|
|
2723
2764
|
outlineOffset?: Property.OutlineOffset<TLength> | undefined;
|
|
2724
2765
|
/**
|
|
2725
|
-
* ✅ Baseline: Widely available (since
|
|
2766
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
2726
2767
|
*
|
|
2727
2768
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-style
|
|
2728
2769
|
*/
|
|
2729
2770
|
outlineStyle?: Property.OutlineStyle | undefined;
|
|
2730
2771
|
/**
|
|
2731
|
-
* ✅ Baseline: Widely available (since
|
|
2772
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
2732
2773
|
*
|
|
2733
2774
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-width
|
|
2734
2775
|
*/
|
|
2735
2776
|
outlineWidth?: Property.OutlineWidth<TLength> | undefined;
|
|
2736
2777
|
/**
|
|
2737
|
-
* ✅ Baseline: Widely available (since
|
|
2778
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
2738
2779
|
*
|
|
2739
2780
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow
|
|
2740
2781
|
*/
|
|
@@ -2746,7 +2787,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2746
2787
|
*/
|
|
2747
2788
|
overflowAnchor?: Property.OverflowAnchor | undefined;
|
|
2748
2789
|
/**
|
|
2749
|
-
*
|
|
2790
|
+
* ⚠️ Baseline: Newly available (since Sep 2025)
|
|
2750
2791
|
*
|
|
2751
2792
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-block
|
|
2752
2793
|
*/
|
|
@@ -2761,7 +2802,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2761
2802
|
*/
|
|
2762
2803
|
overflowClipMargin?: Property.OverflowClipMargin<TLength> | undefined;
|
|
2763
2804
|
/**
|
|
2764
|
-
*
|
|
2805
|
+
* ⚠️ Baseline: Newly available (since Sep 2025)
|
|
2765
2806
|
*
|
|
2766
2807
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-inline
|
|
2767
2808
|
*/
|
|
@@ -2773,13 +2814,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2773
2814
|
*/
|
|
2774
2815
|
overflowWrap?: Property.OverflowWrap | undefined;
|
|
2775
2816
|
/**
|
|
2776
|
-
* ✅ Baseline: Widely available (since
|
|
2817
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
2777
2818
|
*
|
|
2778
2819
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-x
|
|
2779
2820
|
*/
|
|
2780
2821
|
overflowX?: Property.OverflowX | undefined;
|
|
2781
2822
|
/**
|
|
2782
|
-
* ✅ Baseline: Widely available (since
|
|
2823
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
2783
2824
|
*
|
|
2784
2825
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-y
|
|
2785
2826
|
*/
|
|
@@ -2829,19 +2870,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2829
2870
|
*/
|
|
2830
2871
|
padding?: Property.Padding<TLength> | undefined;
|
|
2831
2872
|
/**
|
|
2832
|
-
* ✅ Baseline: Widely available (since
|
|
2873
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
2833
2874
|
*
|
|
2834
2875
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block
|
|
2835
2876
|
*/
|
|
2836
2877
|
paddingBlock?: Property.PaddingBlock<TLength> | undefined;
|
|
2837
2878
|
/**
|
|
2838
|
-
* ✅ Baseline: Widely available (since
|
|
2879
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2839
2880
|
*
|
|
2840
2881
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
|
|
2841
2882
|
*/
|
|
2842
2883
|
paddingBlockEnd?: Property.PaddingBlockEnd<TLength> | undefined;
|
|
2843
2884
|
/**
|
|
2844
|
-
* ✅ Baseline: Widely available (since
|
|
2885
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2845
2886
|
*
|
|
2846
2887
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
|
|
2847
2888
|
*/
|
|
@@ -2853,19 +2894,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2853
2894
|
*/
|
|
2854
2895
|
paddingBottom?: Property.PaddingBottom<TLength> | undefined;
|
|
2855
2896
|
/**
|
|
2856
|
-
* ✅ Baseline: Widely available (since
|
|
2897
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
2857
2898
|
*
|
|
2858
2899
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
|
|
2859
2900
|
*/
|
|
2860
2901
|
paddingInline?: Property.PaddingInline<TLength> | undefined;
|
|
2861
2902
|
/**
|
|
2862
|
-
* ✅ Baseline: Widely available (since
|
|
2903
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2863
2904
|
*
|
|
2864
2905
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
|
|
2865
2906
|
*/
|
|
2866
2907
|
paddingInlineEnd?: Property.PaddingInlineEnd<TLength> | undefined;
|
|
2867
2908
|
/**
|
|
2868
|
-
* ✅ Baseline: Widely available (since
|
|
2909
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2869
2910
|
*
|
|
2870
2911
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
|
|
2871
2912
|
*/
|
|
@@ -2889,7 +2930,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2889
2930
|
*/
|
|
2890
2931
|
paddingTop?: Property.PaddingTop<TLength> | undefined;
|
|
2891
2932
|
/**
|
|
2892
|
-
*
|
|
2933
|
+
* ✅ Baseline: Widely available (since Aug 2025)
|
|
2893
2934
|
*
|
|
2894
2935
|
* @see https://developer.mozilla.org/docs/Web/CSS/page
|
|
2895
2936
|
*/
|
|
@@ -2925,31 +2966,31 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2925
2966
|
*/
|
|
2926
2967
|
paintOrder?: Property.PaintOrder | undefined;
|
|
2927
2968
|
/**
|
|
2928
|
-
* ✅ Baseline: Widely available (since
|
|
2969
|
+
* ✅ Baseline: Widely available (since Mar 2018)
|
|
2929
2970
|
*
|
|
2930
2971
|
* @see https://developer.mozilla.org/docs/Web/CSS/perspective
|
|
2931
2972
|
*/
|
|
2932
2973
|
perspective?: Property.Perspective<TLength> | undefined;
|
|
2933
2974
|
/**
|
|
2934
|
-
* ✅ Baseline: Widely available (since
|
|
2975
|
+
* ✅ Baseline: Widely available (since Mar 2018)
|
|
2935
2976
|
*
|
|
2936
2977
|
* @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin
|
|
2937
2978
|
*/
|
|
2938
2979
|
perspectiveOrigin?: Property.PerspectiveOrigin<TLength> | undefined;
|
|
2939
2980
|
/**
|
|
2940
|
-
* ✅ Baseline: Widely available (since
|
|
2981
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2941
2982
|
*
|
|
2942
2983
|
* @see https://developer.mozilla.org/docs/Web/CSS/place-content
|
|
2943
2984
|
*/
|
|
2944
2985
|
placeContent?: Property.PlaceContent | undefined;
|
|
2945
2986
|
/**
|
|
2946
|
-
* ✅ Baseline: Widely available (since
|
|
2987
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2947
2988
|
*
|
|
2948
2989
|
* @see https://developer.mozilla.org/docs/Web/CSS/place-items
|
|
2949
2990
|
*/
|
|
2950
2991
|
placeItems?: Property.PlaceItems | undefined;
|
|
2951
2992
|
/**
|
|
2952
|
-
* ✅ Baseline: Widely available (since
|
|
2993
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
2953
2994
|
*
|
|
2954
2995
|
* @see https://developer.mozilla.org/docs/Web/CSS/place-self
|
|
2955
2996
|
*/
|
|
@@ -2967,25 +3008,25 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2967
3008
|
*/
|
|
2968
3009
|
position?: Property.Position | undefined;
|
|
2969
3010
|
/**
|
|
2970
|
-
*
|
|
3011
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
2971
3012
|
*
|
|
2972
3013
|
* @see https://developer.mozilla.org/docs/Web/CSS/position-anchor
|
|
2973
3014
|
*/
|
|
2974
3015
|
positionAnchor?: Property.PositionAnchor | undefined;
|
|
2975
3016
|
/**
|
|
2976
|
-
*
|
|
3017
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
2977
3018
|
*
|
|
2978
3019
|
* @see https://developer.mozilla.org/docs/Web/CSS/position-area
|
|
2979
3020
|
*/
|
|
2980
3021
|
positionArea?: Property.PositionArea | undefined;
|
|
2981
3022
|
/**
|
|
2982
|
-
*
|
|
3023
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
2983
3024
|
*
|
|
2984
3025
|
* @see https://developer.mozilla.org/docs/Web/CSS/position-try
|
|
2985
3026
|
*/
|
|
2986
3027
|
positionTry?: Property.PositionTry | undefined;
|
|
2987
3028
|
/**
|
|
2988
|
-
*
|
|
3029
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
2989
3030
|
*
|
|
2990
3031
|
* @see https://developer.mozilla.org/docs/Web/CSS/position-try-fallbacks
|
|
2991
3032
|
*/
|
|
@@ -2997,7 +3038,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
2997
3038
|
*/
|
|
2998
3039
|
positionTryOrder?: Property.PositionTryOrder | undefined;
|
|
2999
3040
|
/**
|
|
3000
|
-
*
|
|
3041
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
3001
3042
|
*
|
|
3002
3043
|
* @see https://developer.mozilla.org/docs/Web/CSS/position-visibility
|
|
3003
3044
|
*/
|
|
@@ -3009,13 +3050,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3009
3050
|
*/
|
|
3010
3051
|
printColorAdjust?: Property.PrintColorAdjust | undefined;
|
|
3011
3052
|
/**
|
|
3012
|
-
* ✅ Baseline: Widely available (since
|
|
3053
|
+
* ✅ Baseline: Widely available (since Mar 2018)
|
|
3013
3054
|
*
|
|
3014
3055
|
* @see https://developer.mozilla.org/docs/Web/CSS/quotes
|
|
3015
3056
|
*/
|
|
3016
3057
|
quotes?: Property.Quotes | undefined;
|
|
3017
3058
|
/**
|
|
3018
|
-
* ✅ Baseline: Widely available (since
|
|
3059
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
3019
3060
|
*
|
|
3020
3061
|
* @see https://developer.mozilla.org/docs/Web/CSS/r
|
|
3021
3062
|
*/
|
|
@@ -3080,13 +3121,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3080
3121
|
*/
|
|
3081
3122
|
rubyPosition?: Property.RubyPosition | undefined;
|
|
3082
3123
|
/**
|
|
3083
|
-
*
|
|
3124
|
+
* ⚠️ Baseline: Newly available (since Mar 2024)
|
|
3084
3125
|
*
|
|
3085
3126
|
* @see https://developer.mozilla.org/docs/Web/CSS/rx
|
|
3086
3127
|
*/
|
|
3087
3128
|
rx?: Property.Rx<TLength> | undefined;
|
|
3088
3129
|
/**
|
|
3089
|
-
*
|
|
3130
|
+
* ⚠️ Baseline: Newly available (since Mar 2024)
|
|
3090
3131
|
*
|
|
3091
3132
|
* @see https://developer.mozilla.org/docs/Web/CSS/ry
|
|
3092
3133
|
*/
|
|
@@ -3128,67 +3169,67 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3128
3169
|
*/
|
|
3129
3170
|
scrollInitialTarget?: Property.ScrollInitialTarget | undefined;
|
|
3130
3171
|
/**
|
|
3131
|
-
* ✅ Baseline: Widely available (since
|
|
3172
|
+
* ✅ Baseline: Widely available (since Jan 2024)
|
|
3132
3173
|
*
|
|
3133
3174
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
|
|
3134
3175
|
*/
|
|
3135
3176
|
scrollMargin?: Property.ScrollMargin<TLength> | undefined;
|
|
3136
3177
|
/**
|
|
3137
|
-
* ✅ Baseline: Widely available (since
|
|
3178
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
3138
3179
|
*
|
|
3139
3180
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
|
|
3140
3181
|
*/
|
|
3141
3182
|
scrollMarginBlock?: Property.ScrollMarginBlock<TLength> | undefined;
|
|
3142
3183
|
/**
|
|
3143
|
-
* ✅ Baseline: Widely available (since
|
|
3184
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
3144
3185
|
*
|
|
3145
3186
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
|
|
3146
3187
|
*/
|
|
3147
3188
|
scrollMarginBlockEnd?: Property.ScrollMarginBlockEnd<TLength> | undefined;
|
|
3148
3189
|
/**
|
|
3149
|
-
* ✅ Baseline: Widely available (since
|
|
3190
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
3150
3191
|
*
|
|
3151
3192
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
|
|
3152
3193
|
*/
|
|
3153
3194
|
scrollMarginBlockStart?: Property.ScrollMarginBlockStart<TLength> | undefined;
|
|
3154
3195
|
/**
|
|
3155
|
-
* ✅ Baseline: Widely available (since
|
|
3196
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
3156
3197
|
*
|
|
3157
3198
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
|
|
3158
3199
|
*/
|
|
3159
3200
|
scrollMarginBottom?: Property.ScrollMarginBottom<TLength> | undefined;
|
|
3160
3201
|
/**
|
|
3161
|
-
* ✅ Baseline: Widely available (since
|
|
3202
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
3162
3203
|
*
|
|
3163
3204
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
|
|
3164
3205
|
*/
|
|
3165
3206
|
scrollMarginInline?: Property.ScrollMarginInline<TLength> | undefined;
|
|
3166
3207
|
/**
|
|
3167
|
-
* ✅ Baseline: Widely available (since
|
|
3208
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
3168
3209
|
*
|
|
3169
3210
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
|
|
3170
3211
|
*/
|
|
3171
3212
|
scrollMarginInlineEnd?: Property.ScrollMarginInlineEnd<TLength> | undefined;
|
|
3172
3213
|
/**
|
|
3173
|
-
* ✅ Baseline: Widely available (since
|
|
3214
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
3174
3215
|
*
|
|
3175
3216
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
|
|
3176
3217
|
*/
|
|
3177
3218
|
scrollMarginInlineStart?: Property.ScrollMarginInlineStart<TLength> | undefined;
|
|
3178
3219
|
/**
|
|
3179
|
-
* ✅ Baseline: Widely available (since
|
|
3220
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
3180
3221
|
*
|
|
3181
3222
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
|
|
3182
3223
|
*/
|
|
3183
3224
|
scrollMarginLeft?: Property.ScrollMarginLeft<TLength> | undefined;
|
|
3184
3225
|
/**
|
|
3185
|
-
* ✅ Baseline: Widely available (since
|
|
3226
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
3186
3227
|
*
|
|
3187
3228
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
|
|
3188
3229
|
*/
|
|
3189
3230
|
scrollMarginRight?: Property.ScrollMarginRight<TLength> | undefined;
|
|
3190
3231
|
/**
|
|
3191
|
-
* ✅ Baseline: Widely available (since
|
|
3232
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
3192
3233
|
*
|
|
3193
3234
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
|
|
3194
3235
|
*/
|
|
@@ -3202,67 +3243,67 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3202
3243
|
*/
|
|
3203
3244
|
scrollMarkerGroup?: Property.ScrollMarkerGroup | undefined;
|
|
3204
3245
|
/**
|
|
3205
|
-
* ✅ Baseline: Widely available (since
|
|
3246
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
3206
3247
|
*
|
|
3207
3248
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding
|
|
3208
3249
|
*/
|
|
3209
3250
|
scrollPadding?: Property.ScrollPadding<TLength> | undefined;
|
|
3210
3251
|
/**
|
|
3211
|
-
* ✅ Baseline: Widely available (since
|
|
3252
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
3212
3253
|
*
|
|
3213
3254
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
|
|
3214
3255
|
*/
|
|
3215
3256
|
scrollPaddingBlock?: Property.ScrollPaddingBlock<TLength> | undefined;
|
|
3216
3257
|
/**
|
|
3217
|
-
* ✅ Baseline: Widely available (since
|
|
3258
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
3218
3259
|
*
|
|
3219
3260
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
|
|
3220
3261
|
*/
|
|
3221
3262
|
scrollPaddingBlockEnd?: Property.ScrollPaddingBlockEnd<TLength> | undefined;
|
|
3222
3263
|
/**
|
|
3223
|
-
* ✅ Baseline: Widely available (since
|
|
3264
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
3224
3265
|
*
|
|
3225
3266
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
|
|
3226
3267
|
*/
|
|
3227
3268
|
scrollPaddingBlockStart?: Property.ScrollPaddingBlockStart<TLength> | undefined;
|
|
3228
3269
|
/**
|
|
3229
|
-
* ✅ Baseline: Widely available (since
|
|
3270
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
3230
3271
|
*
|
|
3231
3272
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom
|
|
3232
3273
|
*/
|
|
3233
3274
|
scrollPaddingBottom?: Property.ScrollPaddingBottom<TLength> | undefined;
|
|
3234
3275
|
/**
|
|
3235
|
-
* ✅ Baseline: Widely available (since
|
|
3276
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
3236
3277
|
*
|
|
3237
3278
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
|
|
3238
3279
|
*/
|
|
3239
3280
|
scrollPaddingInline?: Property.ScrollPaddingInline<TLength> | undefined;
|
|
3240
3281
|
/**
|
|
3241
|
-
* ✅ Baseline: Widely available (since
|
|
3282
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
3242
3283
|
*
|
|
3243
3284
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
|
|
3244
3285
|
*/
|
|
3245
3286
|
scrollPaddingInlineEnd?: Property.ScrollPaddingInlineEnd<TLength> | undefined;
|
|
3246
3287
|
/**
|
|
3247
|
-
* ✅ Baseline: Widely available (since
|
|
3288
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
3248
3289
|
*
|
|
3249
3290
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
|
|
3250
3291
|
*/
|
|
3251
3292
|
scrollPaddingInlineStart?: Property.ScrollPaddingInlineStart<TLength> | undefined;
|
|
3252
3293
|
/**
|
|
3253
|
-
* ✅ Baseline: Widely available (since
|
|
3294
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
3254
3295
|
*
|
|
3255
3296
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left
|
|
3256
3297
|
*/
|
|
3257
3298
|
scrollPaddingLeft?: Property.ScrollPaddingLeft<TLength> | undefined;
|
|
3258
3299
|
/**
|
|
3259
|
-
* ✅ Baseline: Widely available (since
|
|
3300
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
3260
3301
|
*
|
|
3261
3302
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right
|
|
3262
3303
|
*/
|
|
3263
3304
|
scrollPaddingRight?: Property.ScrollPaddingRight<TLength> | undefined;
|
|
3264
3305
|
/**
|
|
3265
|
-
* ✅ Baseline: Widely available (since
|
|
3306
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
3266
3307
|
*
|
|
3267
3308
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top
|
|
3268
3309
|
*/
|
|
@@ -3286,13 +3327,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3286
3327
|
*/
|
|
3287
3328
|
scrollSnapPointsY?: Property.ScrollSnapPointsY | undefined;
|
|
3288
3329
|
/**
|
|
3289
|
-
* ✅ Baseline: Widely available (since
|
|
3330
|
+
* ✅ Baseline: Widely available (since Jan 2025)
|
|
3290
3331
|
*
|
|
3291
3332
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop
|
|
3292
3333
|
*/
|
|
3293
3334
|
scrollSnapStop?: Property.ScrollSnapStop | undefined;
|
|
3294
3335
|
/**
|
|
3295
|
-
* ✅ Baseline: Widely available (since
|
|
3336
|
+
* ✅ Baseline: Widely available (since Oct 2024)
|
|
3296
3337
|
*
|
|
3297
3338
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type
|
|
3298
3339
|
*/
|
|
@@ -3360,67 +3401,67 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3360
3401
|
*/
|
|
3361
3402
|
speakAs?: Property.SpeakAs | undefined;
|
|
3362
3403
|
/**
|
|
3363
|
-
* ✅ Baseline: Widely available (since
|
|
3404
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
3364
3405
|
*
|
|
3365
3406
|
* @see https://developer.mozilla.org/docs/Web/CSS/stop-color
|
|
3366
3407
|
*/
|
|
3367
3408
|
stopColor?: Property.StopColor | undefined;
|
|
3368
3409
|
/**
|
|
3369
|
-
* ✅ Baseline: Widely available (since
|
|
3410
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
3370
3411
|
*
|
|
3371
3412
|
* @see https://developer.mozilla.org/docs/Web/CSS/stop-opacity
|
|
3372
3413
|
*/
|
|
3373
3414
|
stopOpacity?: Property.StopOpacity | undefined;
|
|
3374
3415
|
/**
|
|
3375
|
-
* ✅ Baseline: Widely available (since
|
|
3416
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
3376
3417
|
*
|
|
3377
3418
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke
|
|
3378
3419
|
*/
|
|
3379
3420
|
stroke?: Property.Stroke | undefined;
|
|
3380
3421
|
/**
|
|
3381
|
-
*
|
|
3422
|
+
* ❌ Baseline: Not widely available
|
|
3382
3423
|
*
|
|
3383
3424
|
* @experimental
|
|
3384
3425
|
*/
|
|
3385
3426
|
strokeColor?: Property.StrokeColor | undefined;
|
|
3386
3427
|
/**
|
|
3387
|
-
* ✅ Baseline: Widely available (since
|
|
3428
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
3388
3429
|
*
|
|
3389
3430
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-dasharray
|
|
3390
3431
|
*/
|
|
3391
3432
|
strokeDasharray?: Property.StrokeDasharray<TLength> | undefined;
|
|
3392
3433
|
/**
|
|
3393
|
-
* ✅ Baseline: Widely available (since
|
|
3434
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
3394
3435
|
*
|
|
3395
3436
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-dashoffset
|
|
3396
3437
|
*/
|
|
3397
3438
|
strokeDashoffset?: Property.StrokeDashoffset<TLength> | undefined;
|
|
3398
3439
|
/**
|
|
3399
|
-
* ✅ Baseline: Widely available (since
|
|
3440
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
3400
3441
|
*
|
|
3401
3442
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-linecap
|
|
3402
3443
|
*/
|
|
3403
3444
|
strokeLinecap?: Property.StrokeLinecap | undefined;
|
|
3404
3445
|
/**
|
|
3405
|
-
* ✅ Baseline: Widely available (since
|
|
3446
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
3406
3447
|
*
|
|
3407
3448
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-linejoin
|
|
3408
3449
|
*/
|
|
3409
3450
|
strokeLinejoin?: Property.StrokeLinejoin | undefined;
|
|
3410
3451
|
/**
|
|
3411
|
-
* ✅ Baseline: Widely available (since
|
|
3452
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
3412
3453
|
*
|
|
3413
3454
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-miterlimit
|
|
3414
3455
|
*/
|
|
3415
3456
|
strokeMiterlimit?: Property.StrokeMiterlimit | undefined;
|
|
3416
3457
|
/**
|
|
3417
|
-
* ✅ Baseline: Widely available (since ≤
|
|
3458
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
3418
3459
|
*
|
|
3419
3460
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-opacity
|
|
3420
3461
|
*/
|
|
3421
3462
|
strokeOpacity?: Property.StrokeOpacity | undefined;
|
|
3422
3463
|
/**
|
|
3423
|
-
* ✅ Baseline: Widely available (since
|
|
3464
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
3424
3465
|
*
|
|
3425
3466
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-width
|
|
3426
3467
|
*/
|
|
@@ -3450,13 +3491,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3450
3491
|
*/
|
|
3451
3492
|
textAlignLast?: Property.TextAlignLast | undefined;
|
|
3452
3493
|
/**
|
|
3453
|
-
* ✅ Baseline: Widely available (since
|
|
3494
|
+
* ✅ Baseline: Widely available (since ≤2019-02-02)
|
|
3454
3495
|
*
|
|
3455
3496
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-anchor
|
|
3456
3497
|
*/
|
|
3457
3498
|
textAnchor?: Property.TextAnchor | undefined;
|
|
3458
3499
|
/**
|
|
3459
|
-
*
|
|
3500
|
+
* ⚠️ Baseline: Newly available (since Nov 2025)
|
|
3460
3501
|
*
|
|
3461
3502
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-autospace
|
|
3462
3503
|
*/
|
|
@@ -3486,7 +3527,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3486
3527
|
*/
|
|
3487
3528
|
textDecoration?: Property.TextDecoration<TLength> | undefined;
|
|
3488
3529
|
/**
|
|
3489
|
-
* ✅ Baseline: Widely available (since
|
|
3530
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
3490
3531
|
*
|
|
3491
3532
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color
|
|
3492
3533
|
*/
|
|
@@ -3500,13 +3541,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3500
3541
|
*/
|
|
3501
3542
|
textDecorationInset?: Property.TextDecorationInset<TLength> | undefined;
|
|
3502
3543
|
/**
|
|
3503
|
-
* ✅ Baseline: Widely available (since
|
|
3544
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
3504
3545
|
*
|
|
3505
3546
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line
|
|
3506
3547
|
*/
|
|
3507
3548
|
textDecorationLine?: Property.TextDecorationLine | undefined;
|
|
3508
3549
|
/**
|
|
3509
|
-
*
|
|
3550
|
+
* ❌ Baseline: Not widely available
|
|
3510
3551
|
*
|
|
3511
3552
|
* @experimental
|
|
3512
3553
|
*
|
|
@@ -3514,19 +3555,19 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3514
3555
|
*/
|
|
3515
3556
|
textDecorationSkip?: Property.TextDecorationSkip | undefined;
|
|
3516
3557
|
/**
|
|
3517
|
-
* ✅ Baseline: Widely available (since
|
|
3558
|
+
* ✅ Baseline: Widely available (since Sep 2024)
|
|
3518
3559
|
*
|
|
3519
3560
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink
|
|
3520
3561
|
*/
|
|
3521
3562
|
textDecorationSkipInk?: Property.TextDecorationSkipInk | undefined;
|
|
3522
3563
|
/**
|
|
3523
|
-
* ✅ Baseline: Widely available (since
|
|
3564
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
3524
3565
|
*
|
|
3525
3566
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style
|
|
3526
3567
|
*/
|
|
3527
3568
|
textDecorationStyle?: Property.TextDecorationStyle | undefined;
|
|
3528
3569
|
/**
|
|
3529
|
-
* ✅ Baseline: Widely available (since
|
|
3570
|
+
* ✅ Baseline: Widely available (since Sep 2023)
|
|
3530
3571
|
*
|
|
3531
3572
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
|
|
3532
3573
|
*/
|
|
@@ -3626,7 +3667,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3626
3667
|
*/
|
|
3627
3668
|
textUnderlinePosition?: Property.TextUnderlinePosition | undefined;
|
|
3628
3669
|
/**
|
|
3629
|
-
* ⚠️ Baseline: Newly available (since
|
|
3670
|
+
* ⚠️ Baseline: Newly available (since Mar 2024)
|
|
3630
3671
|
*
|
|
3631
3672
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-wrap
|
|
3632
3673
|
*/
|
|
@@ -3719,7 +3760,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3719
3760
|
*/
|
|
3720
3761
|
transform?: Property.Transform | undefined;
|
|
3721
3762
|
/**
|
|
3722
|
-
*
|
|
3763
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
3723
3764
|
*
|
|
3724
3765
|
* @see https://developer.mozilla.org/docs/Web/CSS/transform-box
|
|
3725
3766
|
*/
|
|
@@ -3731,7 +3772,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3731
3772
|
*/
|
|
3732
3773
|
transformOrigin?: Property.TransformOrigin<TLength> | undefined;
|
|
3733
3774
|
/**
|
|
3734
|
-
* ✅ Baseline: Widely available (since
|
|
3775
|
+
* ✅ Baseline: Widely available (since Mar 2018)
|
|
3735
3776
|
*
|
|
3736
3777
|
* @see https://developer.mozilla.org/docs/Web/CSS/transform-style
|
|
3737
3778
|
*/
|
|
@@ -3786,7 +3827,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3786
3827
|
*/
|
|
3787
3828
|
triggerScope?: Property.TriggerScope | undefined;
|
|
3788
3829
|
/**
|
|
3789
|
-
* ✅ Baseline: Widely available (since
|
|
3830
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
3790
3831
|
*
|
|
3791
3832
|
* @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi
|
|
3792
3833
|
*/
|
|
@@ -3950,7 +3991,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
3950
3991
|
*/
|
|
3951
3992
|
WebkitTapHighlightColor?: Property.WebkitTapHighlightColor | undefined;
|
|
3952
3993
|
/**
|
|
3953
|
-
* ✅ Baseline: Widely available (since
|
|
3994
|
+
* ✅ Baseline: Widely available (since Mar 2019)
|
|
3954
3995
|
*
|
|
3955
3996
|
* @see https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color
|
|
3956
3997
|
*/
|
|
@@ -4017,7 +4058,7 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
4017
4058
|
*/
|
|
4018
4059
|
willChange?: Property.WillChange | undefined;
|
|
4019
4060
|
/**
|
|
4020
|
-
* ✅ Baseline: Widely available (since
|
|
4061
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
4021
4062
|
*
|
|
4022
4063
|
* @see https://developer.mozilla.org/docs/Web/CSS/word-break
|
|
4023
4064
|
*/
|
|
@@ -4040,13 +4081,13 @@ interface Properties$1<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
4040
4081
|
*/
|
|
4041
4082
|
writingMode?: Property.WritingMode | undefined;
|
|
4042
4083
|
/**
|
|
4043
|
-
* ✅ Baseline: Widely available (since
|
|
4084
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
4044
4085
|
*
|
|
4045
4086
|
* @see https://developer.mozilla.org/docs/Web/CSS/x
|
|
4046
4087
|
*/
|
|
4047
4088
|
x?: Property.X<TLength> | undefined;
|
|
4048
4089
|
/**
|
|
4049
|
-
* ✅ Baseline: Widely available (since
|
|
4090
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
4050
4091
|
*
|
|
4051
4092
|
* @see https://developer.mozilla.org/docs/Web/CSS/y
|
|
4052
4093
|
*/
|
|
@@ -4398,7 +4439,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
4398
4439
|
*/
|
|
4399
4440
|
"-webkit-tap-highlight-color"?: Property.WebkitTapHighlightColor | undefined;
|
|
4400
4441
|
/**
|
|
4401
|
-
* ✅ Baseline: Widely available (since
|
|
4442
|
+
* ✅ Baseline: Widely available (since Mar 2019)
|
|
4402
4443
|
*
|
|
4403
4444
|
* @see https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color
|
|
4404
4445
|
*/
|
|
@@ -4474,13 +4515,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
4474
4515
|
*/
|
|
4475
4516
|
"all"?: Property.All | undefined;
|
|
4476
4517
|
/**
|
|
4477
|
-
*
|
|
4518
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
4478
4519
|
*
|
|
4479
4520
|
* @see https://developer.mozilla.org/docs/Web/CSS/anchor-name
|
|
4480
4521
|
*/
|
|
4481
4522
|
"anchor-name"?: Property.AnchorName | undefined;
|
|
4482
4523
|
/**
|
|
4483
|
-
*
|
|
4524
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
4484
4525
|
*/
|
|
4485
4526
|
"anchor-scope"?: Property.AnchorScope | undefined;
|
|
4486
4527
|
/**
|
|
@@ -4605,7 +4646,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
4605
4646
|
*/
|
|
4606
4647
|
"background"?: Property.Background | undefined;
|
|
4607
4648
|
/**
|
|
4608
|
-
*
|
|
4649
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
4609
4650
|
*
|
|
4610
4651
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-attachment
|
|
4611
4652
|
*/
|
|
@@ -4647,19 +4688,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
4647
4688
|
*/
|
|
4648
4689
|
"background-position"?: Property.BackgroundPosition<TLength> | undefined;
|
|
4649
4690
|
/**
|
|
4650
|
-
* ✅ Baseline: Widely available (since
|
|
4691
|
+
* ✅ Baseline: Widely available (since Mar 2019)
|
|
4651
4692
|
*
|
|
4652
4693
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-position-x
|
|
4653
4694
|
*/
|
|
4654
4695
|
"background-position-x"?: Property.BackgroundPositionX<TLength> | undefined;
|
|
4655
4696
|
/**
|
|
4656
|
-
* ✅ Baseline: Widely available (since
|
|
4697
|
+
* ✅ Baseline: Widely available (since Mar 2019)
|
|
4657
4698
|
*
|
|
4658
4699
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-position-y
|
|
4659
4700
|
*/
|
|
4660
4701
|
"background-position-y"?: Property.BackgroundPositionY<TLength> | undefined;
|
|
4661
4702
|
/**
|
|
4662
|
-
* ✅ Baseline: Widely available (since
|
|
4703
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
4663
4704
|
*
|
|
4664
4705
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-repeat
|
|
4665
4706
|
*/
|
|
@@ -4681,7 +4722,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
4681
4722
|
*/
|
|
4682
4723
|
"baseline-source"?: Property.BaselineSource | undefined;
|
|
4683
4724
|
/**
|
|
4684
|
-
* ✅ Baseline: Widely available (since
|
|
4725
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4685
4726
|
*
|
|
4686
4727
|
* @see https://developer.mozilla.org/docs/Web/CSS/block-size
|
|
4687
4728
|
*/
|
|
@@ -4693,73 +4734,73 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
4693
4734
|
*/
|
|
4694
4735
|
"border"?: Property.Border<TLength> | undefined;
|
|
4695
4736
|
/**
|
|
4696
|
-
* ✅ Baseline: Widely available (since
|
|
4737
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
4697
4738
|
*
|
|
4698
4739
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block
|
|
4699
4740
|
*/
|
|
4700
4741
|
"border-block"?: Property.BorderBlock<TLength> | undefined;
|
|
4701
4742
|
/**
|
|
4702
|
-
* ✅ Baseline: Widely available (since
|
|
4743
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
4703
4744
|
*
|
|
4704
4745
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
|
|
4705
4746
|
*/
|
|
4706
4747
|
"border-block-color"?: Property.BorderBlockColor | undefined;
|
|
4707
4748
|
/**
|
|
4708
|
-
* ✅ Baseline: Widely available (since
|
|
4749
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4709
4750
|
*
|
|
4710
4751
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end
|
|
4711
4752
|
*/
|
|
4712
4753
|
"border-block-end"?: Property.BorderBlockEnd<TLength> | undefined;
|
|
4713
4754
|
/**
|
|
4714
|
-
* ✅ Baseline: Widely available (since
|
|
4755
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4715
4756
|
*
|
|
4716
4757
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color
|
|
4717
4758
|
*/
|
|
4718
4759
|
"border-block-end-color"?: Property.BorderBlockEndColor | undefined;
|
|
4719
4760
|
/**
|
|
4720
|
-
* ✅ Baseline: Widely available (since
|
|
4761
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4721
4762
|
*
|
|
4722
4763
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-style
|
|
4723
4764
|
*/
|
|
4724
4765
|
"border-block-end-style"?: Property.BorderBlockEndStyle | undefined;
|
|
4725
4766
|
/**
|
|
4726
|
-
* ✅ Baseline: Widely available (since
|
|
4767
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4727
4768
|
*
|
|
4728
4769
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width
|
|
4729
4770
|
*/
|
|
4730
4771
|
"border-block-end-width"?: Property.BorderBlockEndWidth<TLength> | undefined;
|
|
4731
4772
|
/**
|
|
4732
|
-
* ✅ Baseline: Widely available (since
|
|
4773
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4733
4774
|
*
|
|
4734
4775
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start
|
|
4735
4776
|
*/
|
|
4736
4777
|
"border-block-start"?: Property.BorderBlockStart<TLength> | undefined;
|
|
4737
4778
|
/**
|
|
4738
|
-
* ✅ Baseline: Widely available (since
|
|
4779
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4739
4780
|
*
|
|
4740
4781
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color
|
|
4741
4782
|
*/
|
|
4742
4783
|
"border-block-start-color"?: Property.BorderBlockStartColor | undefined;
|
|
4743
4784
|
/**
|
|
4744
|
-
* ✅ Baseline: Widely available (since
|
|
4785
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4745
4786
|
*
|
|
4746
4787
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-style
|
|
4747
4788
|
*/
|
|
4748
4789
|
"border-block-start-style"?: Property.BorderBlockStartStyle | undefined;
|
|
4749
4790
|
/**
|
|
4750
|
-
* ✅ Baseline: Widely available (since
|
|
4791
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4751
4792
|
*
|
|
4752
4793
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width
|
|
4753
4794
|
*/
|
|
4754
4795
|
"border-block-start-width"?: Property.BorderBlockStartWidth<TLength> | undefined;
|
|
4755
4796
|
/**
|
|
4756
|
-
* ✅ Baseline: Widely available (since
|
|
4797
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
4757
4798
|
*
|
|
4758
4799
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
|
|
4759
4800
|
*/
|
|
4760
4801
|
"border-block-style"?: Property.BorderBlockStyle | undefined;
|
|
4761
4802
|
/**
|
|
4762
|
-
* ✅ Baseline: Widely available (since
|
|
4803
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
4763
4804
|
*
|
|
4764
4805
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
|
|
4765
4806
|
*/
|
|
@@ -4825,109 +4866,109 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
4825
4866
|
*/
|
|
4826
4867
|
"border-end-start-radius"?: Property.BorderEndStartRadius<TLength> | undefined;
|
|
4827
4868
|
/**
|
|
4828
|
-
* ✅ Baseline: Widely available (since
|
|
4869
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
4829
4870
|
*
|
|
4830
4871
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image
|
|
4831
4872
|
*/
|
|
4832
4873
|
"border-image"?: Property.BorderImage<TLength> | undefined;
|
|
4833
4874
|
/**
|
|
4834
|
-
* ✅ Baseline: Widely available (since
|
|
4875
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
4835
4876
|
*
|
|
4836
4877
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-outset
|
|
4837
4878
|
*/
|
|
4838
4879
|
"border-image-outset"?: Property.BorderImageOutset<TLength> | undefined;
|
|
4839
4880
|
/**
|
|
4840
|
-
* ✅ Baseline: Widely available (since
|
|
4881
|
+
* ✅ Baseline: Widely available (since Sep 2018)
|
|
4841
4882
|
*
|
|
4842
4883
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-repeat
|
|
4843
4884
|
*/
|
|
4844
4885
|
"border-image-repeat"?: Property.BorderImageRepeat | undefined;
|
|
4845
4886
|
/**
|
|
4846
|
-
* ✅ Baseline: Widely available (since
|
|
4887
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
4847
4888
|
*
|
|
4848
4889
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice
|
|
4849
4890
|
*/
|
|
4850
4891
|
"border-image-slice"?: Property.BorderImageSlice | undefined;
|
|
4851
4892
|
/**
|
|
4852
|
-
* ✅ Baseline: Widely available (since
|
|
4893
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
4853
4894
|
*
|
|
4854
4895
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-source
|
|
4855
4896
|
*/
|
|
4856
4897
|
"border-image-source"?: Property.BorderImageSource | undefined;
|
|
4857
4898
|
/**
|
|
4858
|
-
* ✅ Baseline: Widely available (since
|
|
4899
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
4859
4900
|
*
|
|
4860
4901
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-image-width
|
|
4861
4902
|
*/
|
|
4862
4903
|
"border-image-width"?: Property.BorderImageWidth<TLength> | undefined;
|
|
4863
4904
|
/**
|
|
4864
|
-
* ✅ Baseline: Widely available (since
|
|
4905
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
4865
4906
|
*
|
|
4866
4907
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline
|
|
4867
4908
|
*/
|
|
4868
4909
|
"border-inline"?: Property.BorderInline<TLength> | undefined;
|
|
4869
4910
|
/**
|
|
4870
|
-
* ✅ Baseline: Widely available (since
|
|
4911
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
4871
4912
|
*
|
|
4872
4913
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
|
|
4873
4914
|
*/
|
|
4874
4915
|
"border-inline-color"?: Property.BorderInlineColor | undefined;
|
|
4875
4916
|
/**
|
|
4876
|
-
* ✅ Baseline: Widely available (since
|
|
4917
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4877
4918
|
*
|
|
4878
4919
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
|
|
4879
4920
|
*/
|
|
4880
4921
|
"border-inline-end"?: Property.BorderInlineEnd<TLength> | undefined;
|
|
4881
4922
|
/**
|
|
4882
|
-
* ✅ Baseline: Widely available (since
|
|
4923
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4883
4924
|
*
|
|
4884
4925
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color
|
|
4885
4926
|
*/
|
|
4886
4927
|
"border-inline-end-color"?: Property.BorderInlineEndColor | undefined;
|
|
4887
4928
|
/**
|
|
4888
|
-
* ✅ Baseline: Widely available (since
|
|
4929
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4889
4930
|
*
|
|
4890
4931
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style
|
|
4891
4932
|
*/
|
|
4892
4933
|
"border-inline-end-style"?: Property.BorderInlineEndStyle | undefined;
|
|
4893
4934
|
/**
|
|
4894
|
-
* ✅ Baseline: Widely available (since
|
|
4935
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4895
4936
|
*
|
|
4896
4937
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width
|
|
4897
4938
|
*/
|
|
4898
4939
|
"border-inline-end-width"?: Property.BorderInlineEndWidth<TLength> | undefined;
|
|
4899
4940
|
/**
|
|
4900
|
-
* ✅ Baseline: Widely available (since
|
|
4941
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4901
4942
|
*
|
|
4902
4943
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start
|
|
4903
4944
|
*/
|
|
4904
4945
|
"border-inline-start"?: Property.BorderInlineStart<TLength> | undefined;
|
|
4905
4946
|
/**
|
|
4906
|
-
* ✅ Baseline: Widely available (since
|
|
4947
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4907
4948
|
*
|
|
4908
4949
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color
|
|
4909
4950
|
*/
|
|
4910
4951
|
"border-inline-start-color"?: Property.BorderInlineStartColor | undefined;
|
|
4911
4952
|
/**
|
|
4912
|
-
* ✅ Baseline: Widely available (since
|
|
4953
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4913
4954
|
*
|
|
4914
4955
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style
|
|
4915
4956
|
*/
|
|
4916
4957
|
"border-inline-start-style"?: Property.BorderInlineStartStyle | undefined;
|
|
4917
4958
|
/**
|
|
4918
|
-
* ✅ Baseline: Widely available (since
|
|
4959
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
4919
4960
|
*
|
|
4920
4961
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width
|
|
4921
4962
|
*/
|
|
4922
4963
|
"border-inline-start-width"?: Property.BorderInlineStartWidth<TLength> | undefined;
|
|
4923
4964
|
/**
|
|
4924
|
-
* ✅ Baseline: Widely available (since
|
|
4965
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
4925
4966
|
*
|
|
4926
4967
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
|
|
4927
4968
|
*/
|
|
4928
4969
|
"border-inline-style"?: Property.BorderInlineStyle | undefined;
|
|
4929
4970
|
/**
|
|
4930
|
-
* ✅ Baseline: Widely available (since
|
|
4971
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
4931
4972
|
*
|
|
4932
4973
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
|
|
4933
4974
|
*/
|
|
@@ -5193,7 +5234,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5193
5234
|
*/
|
|
5194
5235
|
"clip"?: Property.Clip | undefined;
|
|
5195
5236
|
/**
|
|
5196
|
-
* ✅ Baseline: Widely available (since Jul
|
|
5237
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
5197
5238
|
*
|
|
5198
5239
|
* @see https://developer.mozilla.org/docs/Web/CSS/clip-path
|
|
5199
5240
|
*/
|
|
@@ -5215,7 +5256,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5215
5256
|
*/
|
|
5216
5257
|
"color-interpolation"?: Property.ColorInterpolation | undefined;
|
|
5217
5258
|
/**
|
|
5218
|
-
* ✅ Baseline: Widely available (since
|
|
5259
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
5219
5260
|
*
|
|
5220
5261
|
* @see https://developer.mozilla.org/docs/Web/CSS/color-interpolation-filters
|
|
5221
5262
|
*/
|
|
@@ -5226,7 +5267,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5226
5267
|
*/
|
|
5227
5268
|
"color-rendering"?: Property.ColorRendering | undefined;
|
|
5228
5269
|
/**
|
|
5229
|
-
* ✅ Baseline: Widely available (since
|
|
5270
|
+
* ✅ Baseline: Widely available (since Jul 2024)
|
|
5230
5271
|
*
|
|
5231
5272
|
* @see https://developer.mozilla.org/docs/Web/CSS/color-scheme
|
|
5232
5273
|
*/
|
|
@@ -5244,7 +5285,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5244
5285
|
*/
|
|
5245
5286
|
"column-fill"?: Property.ColumnFill | undefined;
|
|
5246
5287
|
/**
|
|
5247
|
-
* ✅ Baseline: Widely available (since
|
|
5288
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
5248
5289
|
*
|
|
5249
5290
|
* @see https://developer.mozilla.org/docs/Web/CSS/column-gap
|
|
5250
5291
|
*/
|
|
@@ -5287,7 +5328,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5287
5328
|
*/
|
|
5288
5329
|
"column-span"?: Property.ColumnSpan | undefined;
|
|
5289
5330
|
/**
|
|
5290
|
-
* ✅ Baseline: Widely available (since
|
|
5331
|
+
* ✅ Baseline: Widely available (since May 2019)
|
|
5291
5332
|
*
|
|
5292
5333
|
* @see https://developer.mozilla.org/docs/Web/CSS/column-width
|
|
5293
5334
|
*/
|
|
@@ -5366,7 +5407,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5366
5407
|
*/
|
|
5367
5408
|
"content"?: Property.Content | undefined;
|
|
5368
5409
|
/**
|
|
5369
|
-
* ⚠️ Baseline: Newly available (since Sep
|
|
5410
|
+
* ⚠️ Baseline: Newly available (since Sep 2024)
|
|
5370
5411
|
*
|
|
5371
5412
|
* @see https://developer.mozilla.org/docs/Web/CSS/content-visibility
|
|
5372
5413
|
*/
|
|
@@ -5526,31 +5567,31 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5526
5567
|
*/
|
|
5527
5568
|
"counter-set"?: Property.CounterSet | undefined;
|
|
5528
5569
|
/**
|
|
5529
|
-
*
|
|
5570
|
+
* ✅ Baseline: Widely available (since Jun 2024)
|
|
5530
5571
|
*
|
|
5531
5572
|
* @see https://developer.mozilla.org/docs/Web/CSS/cursor
|
|
5532
5573
|
*/
|
|
5533
5574
|
"cursor"?: Property.Cursor | undefined;
|
|
5534
5575
|
/**
|
|
5535
|
-
* ✅ Baseline: Widely available (since
|
|
5576
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
5536
5577
|
*
|
|
5537
5578
|
* @see https://developer.mozilla.org/docs/Web/CSS/cx
|
|
5538
5579
|
*/
|
|
5539
5580
|
"cx"?: Property.Cx<TLength> | undefined;
|
|
5540
5581
|
/**
|
|
5541
|
-
* ✅ Baseline: Widely available (since
|
|
5582
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
5542
5583
|
*
|
|
5543
5584
|
* @see https://developer.mozilla.org/docs/Web/CSS/cy
|
|
5544
5585
|
*/
|
|
5545
5586
|
"cy"?: Property.Cy<TLength> | undefined;
|
|
5546
5587
|
/**
|
|
5547
|
-
*
|
|
5588
|
+
* ❌ Baseline: Not widely available
|
|
5548
5589
|
*
|
|
5549
5590
|
* @see https://developer.mozilla.org/docs/Web/CSS/d
|
|
5550
5591
|
*/
|
|
5551
5592
|
"d"?: Property.D | undefined;
|
|
5552
5593
|
/**
|
|
5553
|
-
* ✅ Baseline: Widely available (since
|
|
5594
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
5554
5595
|
*
|
|
5555
5596
|
* @see https://developer.mozilla.org/docs/Web/CSS/direction
|
|
5556
5597
|
*/
|
|
@@ -5585,19 +5626,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5585
5626
|
*/
|
|
5586
5627
|
"field-sizing"?: Property.FieldSizing | undefined;
|
|
5587
5628
|
/**
|
|
5588
|
-
* ✅ Baseline: Widely available (since
|
|
5629
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
5589
5630
|
*
|
|
5590
5631
|
* @see https://developer.mozilla.org/docs/Web/CSS/fill
|
|
5591
5632
|
*/
|
|
5592
5633
|
"fill"?: Property.Fill | undefined;
|
|
5593
5634
|
/**
|
|
5594
|
-
* ✅ Baseline: Widely available (since ≤
|
|
5635
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
5595
5636
|
*
|
|
5596
5637
|
* @see https://developer.mozilla.org/docs/Web/CSS/fill-opacity
|
|
5597
5638
|
*/
|
|
5598
5639
|
"fill-opacity"?: Property.FillOpacity | undefined;
|
|
5599
5640
|
/**
|
|
5600
|
-
* ✅ Baseline: Widely available (since
|
|
5641
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
5601
5642
|
*
|
|
5602
5643
|
* @see https://developer.mozilla.org/docs/Web/CSS/fill-rule
|
|
5603
5644
|
*/
|
|
@@ -5728,7 +5769,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5728
5769
|
*/
|
|
5729
5770
|
"font-smooth"?: Property.FontSmooth<TLength> | undefined;
|
|
5730
5771
|
/**
|
|
5731
|
-
* ✅ Baseline: Widely available (since
|
|
5772
|
+
* ✅ Baseline: Widely available (since Mar 2020)
|
|
5732
5773
|
*
|
|
5733
5774
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-stretch
|
|
5734
5775
|
*/
|
|
@@ -5814,7 +5855,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5814
5855
|
*/
|
|
5815
5856
|
"font-variant-numeric"?: Property.FontVariantNumeric | undefined;
|
|
5816
5857
|
/**
|
|
5817
|
-
*
|
|
5858
|
+
* ⚠️ Baseline: Newly available (since Sep 2023)
|
|
5818
5859
|
*
|
|
5819
5860
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
|
|
5820
5861
|
*/
|
|
@@ -5838,7 +5879,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5838
5879
|
*/
|
|
5839
5880
|
"font-width"?: Property.FontWidth | undefined;
|
|
5840
5881
|
/**
|
|
5841
|
-
*
|
|
5882
|
+
* ❌ Baseline: Not widely available
|
|
5842
5883
|
*
|
|
5843
5884
|
* @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust
|
|
5844
5885
|
*/
|
|
@@ -5868,7 +5909,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5868
5909
|
*/
|
|
5869
5910
|
"grid-area"?: Property.GridArea | undefined;
|
|
5870
5911
|
/**
|
|
5871
|
-
* ✅ Baseline: Widely available (since
|
|
5912
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
5872
5913
|
*
|
|
5873
5914
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns
|
|
5874
5915
|
*/
|
|
@@ -5880,7 +5921,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5880
5921
|
*/
|
|
5881
5922
|
"grid-auto-flow"?: Property.GridAutoFlow | undefined;
|
|
5882
5923
|
/**
|
|
5883
|
-
* ✅ Baseline: Widely available (since
|
|
5924
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
5884
5925
|
*
|
|
5885
5926
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows
|
|
5886
5927
|
*/
|
|
@@ -5997,7 +6038,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
5997
6038
|
*/
|
|
5998
6039
|
"image-orientation"?: Property.ImageOrientation | undefined;
|
|
5999
6040
|
/**
|
|
6000
|
-
* ✅ Baseline: Widely available (since
|
|
6041
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6001
6042
|
*
|
|
6002
6043
|
* @see https://developer.mozilla.org/docs/Web/CSS/image-rendering
|
|
6003
6044
|
*/
|
|
@@ -6023,49 +6064,49 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6023
6064
|
*/
|
|
6024
6065
|
"initial-letter-align"?: Property.InitialLetterAlign | undefined;
|
|
6025
6066
|
/**
|
|
6026
|
-
* ✅ Baseline: Widely available (since
|
|
6067
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6027
6068
|
*
|
|
6028
6069
|
* @see https://developer.mozilla.org/docs/Web/CSS/inline-size
|
|
6029
6070
|
*/
|
|
6030
6071
|
"inline-size"?: Property.InlineSize<TLength> | undefined;
|
|
6031
6072
|
/**
|
|
6032
|
-
* ✅ Baseline: Widely available (since
|
|
6073
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
6033
6074
|
*
|
|
6034
6075
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset
|
|
6035
6076
|
*/
|
|
6036
6077
|
"inset"?: Property.Inset<TLength> | undefined;
|
|
6037
6078
|
/**
|
|
6038
|
-
* ✅ Baseline: Widely available (since
|
|
6079
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
6039
6080
|
*
|
|
6040
6081
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block
|
|
6041
6082
|
*/
|
|
6042
6083
|
"inset-block"?: Property.InsetBlock<TLength> | undefined;
|
|
6043
6084
|
/**
|
|
6044
|
-
* ✅ Baseline: Widely available (since
|
|
6085
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
6045
6086
|
*
|
|
6046
6087
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
|
|
6047
6088
|
*/
|
|
6048
6089
|
"inset-block-end"?: Property.InsetBlockEnd<TLength> | undefined;
|
|
6049
6090
|
/**
|
|
6050
|
-
* ✅ Baseline: Widely available (since
|
|
6091
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
6051
6092
|
*
|
|
6052
6093
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
|
|
6053
6094
|
*/
|
|
6054
6095
|
"inset-block-start"?: Property.InsetBlockStart<TLength> | undefined;
|
|
6055
6096
|
/**
|
|
6056
|
-
* ✅ Baseline: Widely available (since
|
|
6097
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
6057
6098
|
*
|
|
6058
6099
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
|
|
6059
6100
|
*/
|
|
6060
6101
|
"inset-inline"?: Property.InsetInline<TLength> | undefined;
|
|
6061
6102
|
/**
|
|
6062
|
-
* ✅ Baseline: Widely available (since
|
|
6103
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
6063
6104
|
*
|
|
6064
6105
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
|
|
6065
6106
|
*/
|
|
6066
6107
|
"inset-inline-end"?: Property.InsetInlineEnd<TLength> | undefined;
|
|
6067
6108
|
/**
|
|
6068
|
-
* ✅ Baseline: Widely available (since
|
|
6109
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
6069
6110
|
*
|
|
6070
6111
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
|
|
6071
6112
|
*/
|
|
@@ -6120,7 +6161,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6120
6161
|
*/
|
|
6121
6162
|
"justify-content"?: Property.JustifyContent | undefined;
|
|
6122
6163
|
/**
|
|
6123
|
-
* ✅ Baseline: Widely available (since
|
|
6164
|
+
* ✅ Baseline: Widely available (since Jan 2019)
|
|
6124
6165
|
*
|
|
6125
6166
|
* @see https://developer.mozilla.org/docs/Web/CSS/justify-items
|
|
6126
6167
|
*/
|
|
@@ -6206,19 +6247,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6206
6247
|
*/
|
|
6207
6248
|
"margin"?: Property.Margin<TLength> | undefined;
|
|
6208
6249
|
/**
|
|
6209
|
-
* ✅ Baseline: Widely available (since
|
|
6250
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
6210
6251
|
*
|
|
6211
6252
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block
|
|
6212
6253
|
*/
|
|
6213
6254
|
"margin-block"?: Property.MarginBlock<TLength> | undefined;
|
|
6214
6255
|
/**
|
|
6215
|
-
* ✅ Baseline: Widely available (since
|
|
6256
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6216
6257
|
*
|
|
6217
6258
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
|
|
6218
6259
|
*/
|
|
6219
6260
|
"margin-block-end"?: Property.MarginBlockEnd<TLength> | undefined;
|
|
6220
6261
|
/**
|
|
6221
|
-
* ✅ Baseline: Widely available (since
|
|
6262
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6222
6263
|
*
|
|
6223
6264
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
|
|
6224
6265
|
*/
|
|
@@ -6230,19 +6271,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6230
6271
|
*/
|
|
6231
6272
|
"margin-bottom"?: Property.MarginBottom<TLength> | undefined;
|
|
6232
6273
|
/**
|
|
6233
|
-
* ✅ Baseline: Widely available (since
|
|
6274
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
6234
6275
|
*
|
|
6235
6276
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
|
|
6236
6277
|
*/
|
|
6237
6278
|
"margin-inline"?: Property.MarginInline<TLength> | undefined;
|
|
6238
6279
|
/**
|
|
6239
|
-
* ✅ Baseline: Widely available (since
|
|
6280
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6240
6281
|
*
|
|
6241
6282
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
|
|
6242
6283
|
*/
|
|
6243
6284
|
"margin-inline-end"?: Property.MarginInlineEnd<TLength> | undefined;
|
|
6244
6285
|
/**
|
|
6245
|
-
* ✅ Baseline: Widely available (since
|
|
6286
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6246
6287
|
*
|
|
6247
6288
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
|
|
6248
6289
|
*/
|
|
@@ -6274,25 +6315,25 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6274
6315
|
*/
|
|
6275
6316
|
"margin-trim"?: Property.MarginTrim | undefined;
|
|
6276
6317
|
/**
|
|
6277
|
-
* ✅ Baseline: Widely available (since
|
|
6318
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
6278
6319
|
*
|
|
6279
6320
|
* @see https://developer.mozilla.org/docs/Web/CSS/marker
|
|
6280
6321
|
*/
|
|
6281
6322
|
"marker"?: Property.Marker | undefined;
|
|
6282
6323
|
/**
|
|
6283
|
-
* ✅ Baseline: Widely available (since
|
|
6324
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
6284
6325
|
*
|
|
6285
6326
|
* @see https://developer.mozilla.org/docs/Web/CSS/marker-end
|
|
6286
6327
|
*/
|
|
6287
6328
|
"marker-end"?: Property.MarkerEnd | undefined;
|
|
6288
6329
|
/**
|
|
6289
|
-
* ✅ Baseline: Widely available (since
|
|
6330
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
6290
6331
|
*
|
|
6291
6332
|
* @see https://developer.mozilla.org/docs/Web/CSS/marker-mid
|
|
6292
6333
|
*/
|
|
6293
6334
|
"marker-mid"?: Property.MarkerMid | undefined;
|
|
6294
6335
|
/**
|
|
6295
|
-
* ✅ Baseline: Widely available (since
|
|
6336
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
6296
6337
|
*
|
|
6297
6338
|
* @see https://developer.mozilla.org/docs/Web/CSS/marker-start
|
|
6298
6339
|
*/
|
|
@@ -6404,25 +6445,25 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6404
6445
|
*/
|
|
6405
6446
|
"masonry-auto-flow"?: Property.MasonryAutoFlow | undefined;
|
|
6406
6447
|
/**
|
|
6407
|
-
*
|
|
6448
|
+
* ❌ Baseline: Not widely available
|
|
6408
6449
|
*
|
|
6409
6450
|
* @see https://developer.mozilla.org/docs/Web/CSS/math-depth
|
|
6410
6451
|
*/
|
|
6411
6452
|
"math-depth"?: Property.MathDepth | undefined;
|
|
6412
6453
|
/**
|
|
6413
|
-
*
|
|
6454
|
+
* ⚠️ Baseline: Newly available (since Dec 2025)
|
|
6414
6455
|
*
|
|
6415
6456
|
* @see https://developer.mozilla.org/docs/Web/CSS/math-shift
|
|
6416
6457
|
*/
|
|
6417
6458
|
"math-shift"?: Property.MathShift | undefined;
|
|
6418
6459
|
/**
|
|
6419
|
-
*
|
|
6460
|
+
* ⚠️ Baseline: Newly available (since Aug 2023)
|
|
6420
6461
|
*
|
|
6421
6462
|
* @see https://developer.mozilla.org/docs/Web/CSS/math-style
|
|
6422
6463
|
*/
|
|
6423
6464
|
"math-style"?: Property.MathStyle | undefined;
|
|
6424
6465
|
/**
|
|
6425
|
-
* ✅ Baseline: Widely available (since
|
|
6466
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6426
6467
|
*
|
|
6427
6468
|
* @see https://developer.mozilla.org/docs/Web/CSS/max-block-size
|
|
6428
6469
|
*/
|
|
@@ -6434,7 +6475,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6434
6475
|
*/
|
|
6435
6476
|
"max-height"?: Property.MaxHeight<TLength> | undefined;
|
|
6436
6477
|
/**
|
|
6437
|
-
* ✅ Baseline: Widely available (since
|
|
6478
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6438
6479
|
*
|
|
6439
6480
|
* @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size
|
|
6440
6481
|
*/
|
|
@@ -6449,7 +6490,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6449
6490
|
*/
|
|
6450
6491
|
"max-width"?: Property.MaxWidth<TLength> | undefined;
|
|
6451
6492
|
/**
|
|
6452
|
-
* ✅ Baseline: Widely available (since
|
|
6493
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6453
6494
|
*
|
|
6454
6495
|
* @see https://developer.mozilla.org/docs/Web/CSS/min-block-size
|
|
6455
6496
|
*/
|
|
@@ -6461,7 +6502,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6461
6502
|
*/
|
|
6462
6503
|
"min-height"?: Property.MinHeight<TLength> | undefined;
|
|
6463
6504
|
/**
|
|
6464
|
-
* ✅ Baseline: Widely available (since
|
|
6505
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6465
6506
|
*
|
|
6466
6507
|
* @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size
|
|
6467
6508
|
*/
|
|
@@ -6503,7 +6544,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6503
6544
|
*/
|
|
6504
6545
|
"offset"?: Property.Offset<TLength> | undefined;
|
|
6505
6546
|
/**
|
|
6506
|
-
*
|
|
6547
|
+
* ⚠️ Baseline: Newly available (since Aug 2023)
|
|
6507
6548
|
*
|
|
6508
6549
|
* @see https://developer.mozilla.org/docs/Web/CSS/offset-anchor
|
|
6509
6550
|
*/
|
|
@@ -6515,13 +6556,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6515
6556
|
*/
|
|
6516
6557
|
"offset-distance"?: Property.OffsetDistance<TLength> | undefined;
|
|
6517
6558
|
/**
|
|
6518
|
-
* ✅ Baseline: Widely available (since
|
|
6559
|
+
* ✅ Baseline: Widely available (since Sep 2024)
|
|
6519
6560
|
*
|
|
6520
6561
|
* @see https://developer.mozilla.org/docs/Web/CSS/offset-path
|
|
6521
6562
|
*/
|
|
6522
6563
|
"offset-path"?: Property.OffsetPath | undefined;
|
|
6523
6564
|
/**
|
|
6524
|
-
*
|
|
6565
|
+
* ⚠️ Baseline: Newly available (since Jan 2024)
|
|
6525
6566
|
*
|
|
6526
6567
|
* @see https://developer.mozilla.org/docs/Web/CSS/offset-position
|
|
6527
6568
|
*/
|
|
@@ -6557,7 +6598,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6557
6598
|
*/
|
|
6558
6599
|
"outline"?: Property.Outline<TLength> | undefined;
|
|
6559
6600
|
/**
|
|
6560
|
-
* ✅ Baseline: Widely available (since
|
|
6601
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
6561
6602
|
*
|
|
6562
6603
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-color
|
|
6563
6604
|
*/
|
|
@@ -6569,19 +6610,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6569
6610
|
*/
|
|
6570
6611
|
"outline-offset"?: Property.OutlineOffset<TLength> | undefined;
|
|
6571
6612
|
/**
|
|
6572
|
-
* ✅ Baseline: Widely available (since
|
|
6613
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
6573
6614
|
*
|
|
6574
6615
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-style
|
|
6575
6616
|
*/
|
|
6576
6617
|
"outline-style"?: Property.OutlineStyle | undefined;
|
|
6577
6618
|
/**
|
|
6578
|
-
* ✅ Baseline: Widely available (since
|
|
6619
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
6579
6620
|
*
|
|
6580
6621
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-width
|
|
6581
6622
|
*/
|
|
6582
6623
|
"outline-width"?: Property.OutlineWidth<TLength> | undefined;
|
|
6583
6624
|
/**
|
|
6584
|
-
* ✅ Baseline: Widely available (since
|
|
6625
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
6585
6626
|
*
|
|
6586
6627
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow
|
|
6587
6628
|
*/
|
|
@@ -6593,7 +6634,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6593
6634
|
*/
|
|
6594
6635
|
"overflow-anchor"?: Property.OverflowAnchor | undefined;
|
|
6595
6636
|
/**
|
|
6596
|
-
*
|
|
6637
|
+
* ⚠️ Baseline: Newly available (since Sep 2025)
|
|
6597
6638
|
*
|
|
6598
6639
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-block
|
|
6599
6640
|
*/
|
|
@@ -6608,7 +6649,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6608
6649
|
*/
|
|
6609
6650
|
"overflow-clip-margin"?: Property.OverflowClipMargin<TLength> | undefined;
|
|
6610
6651
|
/**
|
|
6611
|
-
*
|
|
6652
|
+
* ⚠️ Baseline: Newly available (since Sep 2025)
|
|
6612
6653
|
*
|
|
6613
6654
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-inline
|
|
6614
6655
|
*/
|
|
@@ -6620,13 +6661,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6620
6661
|
*/
|
|
6621
6662
|
"overflow-wrap"?: Property.OverflowWrap | undefined;
|
|
6622
6663
|
/**
|
|
6623
|
-
* ✅ Baseline: Widely available (since
|
|
6664
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
6624
6665
|
*
|
|
6625
6666
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-x
|
|
6626
6667
|
*/
|
|
6627
6668
|
"overflow-x"?: Property.OverflowX | undefined;
|
|
6628
6669
|
/**
|
|
6629
|
-
* ✅ Baseline: Widely available (since
|
|
6670
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
6630
6671
|
*
|
|
6631
6672
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-y
|
|
6632
6673
|
*/
|
|
@@ -6676,19 +6717,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6676
6717
|
*/
|
|
6677
6718
|
"padding"?: Property.Padding<TLength> | undefined;
|
|
6678
6719
|
/**
|
|
6679
|
-
* ✅ Baseline: Widely available (since
|
|
6720
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
6680
6721
|
*
|
|
6681
6722
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block
|
|
6682
6723
|
*/
|
|
6683
6724
|
"padding-block"?: Property.PaddingBlock<TLength> | undefined;
|
|
6684
6725
|
/**
|
|
6685
|
-
* ✅ Baseline: Widely available (since
|
|
6726
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6686
6727
|
*
|
|
6687
6728
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
|
|
6688
6729
|
*/
|
|
6689
6730
|
"padding-block-end"?: Property.PaddingBlockEnd<TLength> | undefined;
|
|
6690
6731
|
/**
|
|
6691
|
-
* ✅ Baseline: Widely available (since
|
|
6732
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6692
6733
|
*
|
|
6693
6734
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
|
|
6694
6735
|
*/
|
|
@@ -6700,19 +6741,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6700
6741
|
*/
|
|
6701
6742
|
"padding-bottom"?: Property.PaddingBottom<TLength> | undefined;
|
|
6702
6743
|
/**
|
|
6703
|
-
* ✅ Baseline: Widely available (since
|
|
6744
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
6704
6745
|
*
|
|
6705
6746
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
|
|
6706
6747
|
*/
|
|
6707
6748
|
"padding-inline"?: Property.PaddingInline<TLength> | undefined;
|
|
6708
6749
|
/**
|
|
6709
|
-
* ✅ Baseline: Widely available (since
|
|
6750
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6710
6751
|
*
|
|
6711
6752
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
|
|
6712
6753
|
*/
|
|
6713
6754
|
"padding-inline-end"?: Property.PaddingInlineEnd<TLength> | undefined;
|
|
6714
6755
|
/**
|
|
6715
|
-
* ✅ Baseline: Widely available (since
|
|
6756
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6716
6757
|
*
|
|
6717
6758
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
|
|
6718
6759
|
*/
|
|
@@ -6736,7 +6777,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6736
6777
|
*/
|
|
6737
6778
|
"padding-top"?: Property.PaddingTop<TLength> | undefined;
|
|
6738
6779
|
/**
|
|
6739
|
-
*
|
|
6780
|
+
* ✅ Baseline: Widely available (since Aug 2025)
|
|
6740
6781
|
*
|
|
6741
6782
|
* @see https://developer.mozilla.org/docs/Web/CSS/page
|
|
6742
6783
|
*/
|
|
@@ -6772,31 +6813,31 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6772
6813
|
*/
|
|
6773
6814
|
"paint-order"?: Property.PaintOrder | undefined;
|
|
6774
6815
|
/**
|
|
6775
|
-
* ✅ Baseline: Widely available (since
|
|
6816
|
+
* ✅ Baseline: Widely available (since Mar 2018)
|
|
6776
6817
|
*
|
|
6777
6818
|
* @see https://developer.mozilla.org/docs/Web/CSS/perspective
|
|
6778
6819
|
*/
|
|
6779
6820
|
"perspective"?: Property.Perspective<TLength> | undefined;
|
|
6780
6821
|
/**
|
|
6781
|
-
* ✅ Baseline: Widely available (since
|
|
6822
|
+
* ✅ Baseline: Widely available (since Mar 2018)
|
|
6782
6823
|
*
|
|
6783
6824
|
* @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin
|
|
6784
6825
|
*/
|
|
6785
6826
|
"perspective-origin"?: Property.PerspectiveOrigin<TLength> | undefined;
|
|
6786
6827
|
/**
|
|
6787
|
-
* ✅ Baseline: Widely available (since
|
|
6828
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6788
6829
|
*
|
|
6789
6830
|
* @see https://developer.mozilla.org/docs/Web/CSS/place-content
|
|
6790
6831
|
*/
|
|
6791
6832
|
"place-content"?: Property.PlaceContent | undefined;
|
|
6792
6833
|
/**
|
|
6793
|
-
* ✅ Baseline: Widely available (since
|
|
6834
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6794
6835
|
*
|
|
6795
6836
|
* @see https://developer.mozilla.org/docs/Web/CSS/place-items
|
|
6796
6837
|
*/
|
|
6797
6838
|
"place-items"?: Property.PlaceItems | undefined;
|
|
6798
6839
|
/**
|
|
6799
|
-
* ✅ Baseline: Widely available (since
|
|
6840
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
6800
6841
|
*
|
|
6801
6842
|
* @see https://developer.mozilla.org/docs/Web/CSS/place-self
|
|
6802
6843
|
*/
|
|
@@ -6814,25 +6855,25 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6814
6855
|
*/
|
|
6815
6856
|
"position"?: Property.Position | undefined;
|
|
6816
6857
|
/**
|
|
6817
|
-
*
|
|
6858
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
6818
6859
|
*
|
|
6819
6860
|
* @see https://developer.mozilla.org/docs/Web/CSS/position-anchor
|
|
6820
6861
|
*/
|
|
6821
6862
|
"position-anchor"?: Property.PositionAnchor | undefined;
|
|
6822
6863
|
/**
|
|
6823
|
-
*
|
|
6864
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
6824
6865
|
*
|
|
6825
6866
|
* @see https://developer.mozilla.org/docs/Web/CSS/position-area
|
|
6826
6867
|
*/
|
|
6827
6868
|
"position-area"?: Property.PositionArea | undefined;
|
|
6828
6869
|
/**
|
|
6829
|
-
*
|
|
6870
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
6830
6871
|
*
|
|
6831
6872
|
* @see https://developer.mozilla.org/docs/Web/CSS/position-try
|
|
6832
6873
|
*/
|
|
6833
6874
|
"position-try"?: Property.PositionTry | undefined;
|
|
6834
6875
|
/**
|
|
6835
|
-
*
|
|
6876
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
6836
6877
|
*
|
|
6837
6878
|
* @see https://developer.mozilla.org/docs/Web/CSS/position-try-fallbacks
|
|
6838
6879
|
*/
|
|
@@ -6844,7 +6885,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6844
6885
|
*/
|
|
6845
6886
|
"position-try-order"?: Property.PositionTryOrder | undefined;
|
|
6846
6887
|
/**
|
|
6847
|
-
*
|
|
6888
|
+
* ⚠️ Baseline: Newly available (since Jan 2026)
|
|
6848
6889
|
*
|
|
6849
6890
|
* @see https://developer.mozilla.org/docs/Web/CSS/position-visibility
|
|
6850
6891
|
*/
|
|
@@ -6856,13 +6897,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6856
6897
|
*/
|
|
6857
6898
|
"print-color-adjust"?: Property.PrintColorAdjust | undefined;
|
|
6858
6899
|
/**
|
|
6859
|
-
* ✅ Baseline: Widely available (since
|
|
6900
|
+
* ✅ Baseline: Widely available (since Mar 2018)
|
|
6860
6901
|
*
|
|
6861
6902
|
* @see https://developer.mozilla.org/docs/Web/CSS/quotes
|
|
6862
6903
|
*/
|
|
6863
6904
|
"quotes"?: Property.Quotes | undefined;
|
|
6864
6905
|
/**
|
|
6865
|
-
* ✅ Baseline: Widely available (since
|
|
6906
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
6866
6907
|
*
|
|
6867
6908
|
* @see https://developer.mozilla.org/docs/Web/CSS/r
|
|
6868
6909
|
*/
|
|
@@ -6927,13 +6968,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6927
6968
|
*/
|
|
6928
6969
|
"ruby-position"?: Property.RubyPosition | undefined;
|
|
6929
6970
|
/**
|
|
6930
|
-
*
|
|
6971
|
+
* ⚠️ Baseline: Newly available (since Mar 2024)
|
|
6931
6972
|
*
|
|
6932
6973
|
* @see https://developer.mozilla.org/docs/Web/CSS/rx
|
|
6933
6974
|
*/
|
|
6934
6975
|
"rx"?: Property.Rx<TLength> | undefined;
|
|
6935
6976
|
/**
|
|
6936
|
-
*
|
|
6977
|
+
* ⚠️ Baseline: Newly available (since Mar 2024)
|
|
6937
6978
|
*
|
|
6938
6979
|
* @see https://developer.mozilla.org/docs/Web/CSS/ry
|
|
6939
6980
|
*/
|
|
@@ -6957,67 +6998,67 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
6957
6998
|
*/
|
|
6958
6999
|
"scroll-initial-target"?: Property.ScrollInitialTarget | undefined;
|
|
6959
7000
|
/**
|
|
6960
|
-
* ✅ Baseline: Widely available (since
|
|
7001
|
+
* ✅ Baseline: Widely available (since Jan 2024)
|
|
6961
7002
|
*
|
|
6962
7003
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
|
|
6963
7004
|
*/
|
|
6964
7005
|
"scroll-margin"?: Property.ScrollMargin<TLength> | undefined;
|
|
6965
7006
|
/**
|
|
6966
|
-
* ✅ Baseline: Widely available (since
|
|
7007
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
6967
7008
|
*
|
|
6968
7009
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
|
|
6969
7010
|
*/
|
|
6970
7011
|
"scroll-margin-block"?: Property.ScrollMarginBlock<TLength> | undefined;
|
|
6971
7012
|
/**
|
|
6972
|
-
* ✅ Baseline: Widely available (since
|
|
7013
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
6973
7014
|
*
|
|
6974
7015
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
|
|
6975
7016
|
*/
|
|
6976
7017
|
"scroll-margin-block-end"?: Property.ScrollMarginBlockEnd<TLength> | undefined;
|
|
6977
7018
|
/**
|
|
6978
|
-
* ✅ Baseline: Widely available (since
|
|
7019
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
6979
7020
|
*
|
|
6980
7021
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
|
|
6981
7022
|
*/
|
|
6982
7023
|
"scroll-margin-block-start"?: Property.ScrollMarginBlockStart<TLength> | undefined;
|
|
6983
7024
|
/**
|
|
6984
|
-
* ✅ Baseline: Widely available (since
|
|
7025
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
6985
7026
|
*
|
|
6986
7027
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
|
|
6987
7028
|
*/
|
|
6988
7029
|
"scroll-margin-bottom"?: Property.ScrollMarginBottom<TLength> | undefined;
|
|
6989
7030
|
/**
|
|
6990
|
-
* ✅ Baseline: Widely available (since
|
|
7031
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
6991
7032
|
*
|
|
6992
7033
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
|
|
6993
7034
|
*/
|
|
6994
7035
|
"scroll-margin-inline"?: Property.ScrollMarginInline<TLength> | undefined;
|
|
6995
7036
|
/**
|
|
6996
|
-
* ✅ Baseline: Widely available (since
|
|
7037
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
6997
7038
|
*
|
|
6998
7039
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
|
|
6999
7040
|
*/
|
|
7000
7041
|
"scroll-margin-inline-end"?: Property.ScrollMarginInlineEnd<TLength> | undefined;
|
|
7001
7042
|
/**
|
|
7002
|
-
* ✅ Baseline: Widely available (since
|
|
7043
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
7003
7044
|
*
|
|
7004
7045
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
|
|
7005
7046
|
*/
|
|
7006
7047
|
"scroll-margin-inline-start"?: Property.ScrollMarginInlineStart<TLength> | undefined;
|
|
7007
7048
|
/**
|
|
7008
|
-
* ✅ Baseline: Widely available (since
|
|
7049
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
7009
7050
|
*
|
|
7010
7051
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
|
|
7011
7052
|
*/
|
|
7012
7053
|
"scroll-margin-left"?: Property.ScrollMarginLeft<TLength> | undefined;
|
|
7013
7054
|
/**
|
|
7014
|
-
* ✅ Baseline: Widely available (since
|
|
7055
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
7015
7056
|
*
|
|
7016
7057
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
|
|
7017
7058
|
*/
|
|
7018
7059
|
"scroll-margin-right"?: Property.ScrollMarginRight<TLength> | undefined;
|
|
7019
7060
|
/**
|
|
7020
|
-
* ✅ Baseline: Widely available (since
|
|
7061
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
7021
7062
|
*
|
|
7022
7063
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
|
|
7023
7064
|
*/
|
|
@@ -7031,67 +7072,67 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7031
7072
|
*/
|
|
7032
7073
|
"scroll-marker-group"?: Property.ScrollMarkerGroup | undefined;
|
|
7033
7074
|
/**
|
|
7034
|
-
* ✅ Baseline: Widely available (since
|
|
7075
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
7035
7076
|
*
|
|
7036
7077
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding
|
|
7037
7078
|
*/
|
|
7038
7079
|
"scroll-padding"?: Property.ScrollPadding<TLength> | undefined;
|
|
7039
7080
|
/**
|
|
7040
|
-
* ✅ Baseline: Widely available (since
|
|
7081
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
7041
7082
|
*
|
|
7042
7083
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
|
|
7043
7084
|
*/
|
|
7044
7085
|
"scroll-padding-block"?: Property.ScrollPaddingBlock<TLength> | undefined;
|
|
7045
7086
|
/**
|
|
7046
|
-
* ✅ Baseline: Widely available (since
|
|
7087
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
7047
7088
|
*
|
|
7048
7089
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
|
|
7049
7090
|
*/
|
|
7050
7091
|
"scroll-padding-block-end"?: Property.ScrollPaddingBlockEnd<TLength> | undefined;
|
|
7051
7092
|
/**
|
|
7052
|
-
* ✅ Baseline: Widely available (since
|
|
7093
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
7053
7094
|
*
|
|
7054
7095
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
|
|
7055
7096
|
*/
|
|
7056
7097
|
"scroll-padding-block-start"?: Property.ScrollPaddingBlockStart<TLength> | undefined;
|
|
7057
7098
|
/**
|
|
7058
|
-
* ✅ Baseline: Widely available (since
|
|
7099
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
7059
7100
|
*
|
|
7060
7101
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom
|
|
7061
7102
|
*/
|
|
7062
7103
|
"scroll-padding-bottom"?: Property.ScrollPaddingBottom<TLength> | undefined;
|
|
7063
7104
|
/**
|
|
7064
|
-
* ✅ Baseline: Widely available (since
|
|
7105
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
7065
7106
|
*
|
|
7066
7107
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
|
|
7067
7108
|
*/
|
|
7068
7109
|
"scroll-padding-inline"?: Property.ScrollPaddingInline<TLength> | undefined;
|
|
7069
7110
|
/**
|
|
7070
|
-
* ✅ Baseline: Widely available (since
|
|
7111
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
7071
7112
|
*
|
|
7072
7113
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
|
|
7073
7114
|
*/
|
|
7074
7115
|
"scroll-padding-inline-end"?: Property.ScrollPaddingInlineEnd<TLength> | undefined;
|
|
7075
7116
|
/**
|
|
7076
|
-
* ✅ Baseline: Widely available (since
|
|
7117
|
+
* ✅ Baseline: Widely available (since Mar 2024)
|
|
7077
7118
|
*
|
|
7078
7119
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
|
|
7079
7120
|
*/
|
|
7080
7121
|
"scroll-padding-inline-start"?: Property.ScrollPaddingInlineStart<TLength> | undefined;
|
|
7081
7122
|
/**
|
|
7082
|
-
* ✅ Baseline: Widely available (since
|
|
7123
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
7083
7124
|
*
|
|
7084
7125
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left
|
|
7085
7126
|
*/
|
|
7086
7127
|
"scroll-padding-left"?: Property.ScrollPaddingLeft<TLength> | undefined;
|
|
7087
7128
|
/**
|
|
7088
|
-
* ✅ Baseline: Widely available (since
|
|
7129
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
7089
7130
|
*
|
|
7090
7131
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right
|
|
7091
7132
|
*/
|
|
7092
7133
|
"scroll-padding-right"?: Property.ScrollPaddingRight<TLength> | undefined;
|
|
7093
7134
|
/**
|
|
7094
|
-
* ✅ Baseline: Widely available (since
|
|
7135
|
+
* ✅ Baseline: Widely available (since Oct 2023)
|
|
7095
7136
|
*
|
|
7096
7137
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top
|
|
7097
7138
|
*/
|
|
@@ -7115,13 +7156,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7115
7156
|
*/
|
|
7116
7157
|
"scroll-snap-points-y"?: Property.ScrollSnapPointsY | undefined;
|
|
7117
7158
|
/**
|
|
7118
|
-
* ✅ Baseline: Widely available (since
|
|
7159
|
+
* ✅ Baseline: Widely available (since Jan 2025)
|
|
7119
7160
|
*
|
|
7120
7161
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop
|
|
7121
7162
|
*/
|
|
7122
7163
|
"scroll-snap-stop"?: Property.ScrollSnapStop | undefined;
|
|
7123
7164
|
/**
|
|
7124
|
-
* ✅ Baseline: Widely available (since
|
|
7165
|
+
* ✅ Baseline: Widely available (since Oct 2024)
|
|
7125
7166
|
*
|
|
7126
7167
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type
|
|
7127
7168
|
*/
|
|
@@ -7207,67 +7248,67 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7207
7248
|
*/
|
|
7208
7249
|
"speak-as"?: Property.SpeakAs | undefined;
|
|
7209
7250
|
/**
|
|
7210
|
-
* ✅ Baseline: Widely available (since
|
|
7251
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
7211
7252
|
*
|
|
7212
7253
|
* @see https://developer.mozilla.org/docs/Web/CSS/stop-color
|
|
7213
7254
|
*/
|
|
7214
7255
|
"stop-color"?: Property.StopColor | undefined;
|
|
7215
7256
|
/**
|
|
7216
|
-
* ✅ Baseline: Widely available (since
|
|
7257
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
7217
7258
|
*
|
|
7218
7259
|
* @see https://developer.mozilla.org/docs/Web/CSS/stop-opacity
|
|
7219
7260
|
*/
|
|
7220
7261
|
"stop-opacity"?: Property.StopOpacity | undefined;
|
|
7221
7262
|
/**
|
|
7222
|
-
* ✅ Baseline: Widely available (since
|
|
7263
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
7223
7264
|
*
|
|
7224
7265
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke
|
|
7225
7266
|
*/
|
|
7226
7267
|
"stroke"?: Property.Stroke | undefined;
|
|
7227
7268
|
/**
|
|
7228
|
-
*
|
|
7269
|
+
* ❌ Baseline: Not widely available
|
|
7229
7270
|
*
|
|
7230
7271
|
* @experimental
|
|
7231
7272
|
*/
|
|
7232
7273
|
"stroke-color"?: Property.StrokeColor | undefined;
|
|
7233
7274
|
/**
|
|
7234
|
-
* ✅ Baseline: Widely available (since
|
|
7275
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
7235
7276
|
*
|
|
7236
7277
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-dasharray
|
|
7237
7278
|
*/
|
|
7238
7279
|
"stroke-dasharray"?: Property.StrokeDasharray<TLength> | undefined;
|
|
7239
7280
|
/**
|
|
7240
|
-
* ✅ Baseline: Widely available (since
|
|
7281
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
7241
7282
|
*
|
|
7242
7283
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-dashoffset
|
|
7243
7284
|
*/
|
|
7244
7285
|
"stroke-dashoffset"?: Property.StrokeDashoffset<TLength> | undefined;
|
|
7245
7286
|
/**
|
|
7246
|
-
* ✅ Baseline: Widely available (since
|
|
7287
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
7247
7288
|
*
|
|
7248
7289
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-linecap
|
|
7249
7290
|
*/
|
|
7250
7291
|
"stroke-linecap"?: Property.StrokeLinecap | undefined;
|
|
7251
7292
|
/**
|
|
7252
|
-
* ✅ Baseline: Widely available (since
|
|
7293
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
7253
7294
|
*
|
|
7254
7295
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-linejoin
|
|
7255
7296
|
*/
|
|
7256
7297
|
"stroke-linejoin"?: Property.StrokeLinejoin | undefined;
|
|
7257
7298
|
/**
|
|
7258
|
-
* ✅ Baseline: Widely available (since
|
|
7299
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
7259
7300
|
*
|
|
7260
7301
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-miterlimit
|
|
7261
7302
|
*/
|
|
7262
7303
|
"stroke-miterlimit"?: Property.StrokeMiterlimit | undefined;
|
|
7263
7304
|
/**
|
|
7264
|
-
* ✅ Baseline: Widely available (since ≤
|
|
7305
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
7265
7306
|
*
|
|
7266
7307
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-opacity
|
|
7267
7308
|
*/
|
|
7268
7309
|
"stroke-opacity"?: Property.StrokeOpacity | undefined;
|
|
7269
7310
|
/**
|
|
7270
|
-
* ✅ Baseline: Widely available (since
|
|
7311
|
+
* ✅ Baseline: Widely available (since ≤2019-10-05)
|
|
7271
7312
|
*
|
|
7272
7313
|
* @see https://developer.mozilla.org/docs/Web/CSS/stroke-width
|
|
7273
7314
|
*/
|
|
@@ -7297,13 +7338,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7297
7338
|
*/
|
|
7298
7339
|
"text-align-last"?: Property.TextAlignLast | undefined;
|
|
7299
7340
|
/**
|
|
7300
|
-
* ✅ Baseline: Widely available (since
|
|
7341
|
+
* ✅ Baseline: Widely available (since ≤2019-02-02)
|
|
7301
7342
|
*
|
|
7302
7343
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-anchor
|
|
7303
7344
|
*/
|
|
7304
7345
|
"text-anchor"?: Property.TextAnchor | undefined;
|
|
7305
7346
|
/**
|
|
7306
|
-
*
|
|
7347
|
+
* ⚠️ Baseline: Newly available (since Nov 2025)
|
|
7307
7348
|
*
|
|
7308
7349
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-autospace
|
|
7309
7350
|
*/
|
|
@@ -7333,7 +7374,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7333
7374
|
*/
|
|
7334
7375
|
"text-decoration"?: Property.TextDecoration<TLength> | undefined;
|
|
7335
7376
|
/**
|
|
7336
|
-
* ✅ Baseline: Widely available (since
|
|
7377
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
7337
7378
|
*
|
|
7338
7379
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color
|
|
7339
7380
|
*/
|
|
@@ -7347,13 +7388,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7347
7388
|
*/
|
|
7348
7389
|
"text-decoration-inset"?: Property.TextDecorationInset<TLength> | undefined;
|
|
7349
7390
|
/**
|
|
7350
|
-
* ✅ Baseline: Widely available (since
|
|
7391
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
7351
7392
|
*
|
|
7352
7393
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line
|
|
7353
7394
|
*/
|
|
7354
7395
|
"text-decoration-line"?: Property.TextDecorationLine | undefined;
|
|
7355
7396
|
/**
|
|
7356
|
-
*
|
|
7397
|
+
* ❌ Baseline: Not widely available
|
|
7357
7398
|
*
|
|
7358
7399
|
* @experimental
|
|
7359
7400
|
*
|
|
@@ -7361,19 +7402,19 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7361
7402
|
*/
|
|
7362
7403
|
"text-decoration-skip"?: Property.TextDecorationSkip | undefined;
|
|
7363
7404
|
/**
|
|
7364
|
-
* ✅ Baseline: Widely available (since
|
|
7405
|
+
* ✅ Baseline: Widely available (since Sep 2024)
|
|
7365
7406
|
*
|
|
7366
7407
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink
|
|
7367
7408
|
*/
|
|
7368
7409
|
"text-decoration-skip-ink"?: Property.TextDecorationSkipInk | undefined;
|
|
7369
7410
|
/**
|
|
7370
|
-
* ✅ Baseline: Widely available (since
|
|
7411
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
7371
7412
|
*
|
|
7372
7413
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style
|
|
7373
7414
|
*/
|
|
7374
7415
|
"text-decoration-style"?: Property.TextDecorationStyle | undefined;
|
|
7375
7416
|
/**
|
|
7376
|
-
* ✅ Baseline: Widely available (since
|
|
7417
|
+
* ✅ Baseline: Widely available (since Sep 2023)
|
|
7377
7418
|
*
|
|
7378
7419
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness
|
|
7379
7420
|
*/
|
|
@@ -7473,7 +7514,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7473
7514
|
*/
|
|
7474
7515
|
"text-underline-position"?: Property.TextUnderlinePosition | undefined;
|
|
7475
7516
|
/**
|
|
7476
|
-
* ⚠️ Baseline: Newly available (since
|
|
7517
|
+
* ⚠️ Baseline: Newly available (since Mar 2024)
|
|
7477
7518
|
*
|
|
7478
7519
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-wrap
|
|
7479
7520
|
*/
|
|
@@ -7566,7 +7607,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7566
7607
|
*/
|
|
7567
7608
|
"transform"?: Property.Transform | undefined;
|
|
7568
7609
|
/**
|
|
7569
|
-
*
|
|
7610
|
+
* ✅ Baseline: Widely available (since Jul 2022)
|
|
7570
7611
|
*
|
|
7571
7612
|
* @see https://developer.mozilla.org/docs/Web/CSS/transform-box
|
|
7572
7613
|
*/
|
|
@@ -7578,7 +7619,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7578
7619
|
*/
|
|
7579
7620
|
"transform-origin"?: Property.TransformOrigin<TLength> | undefined;
|
|
7580
7621
|
/**
|
|
7581
|
-
* ✅ Baseline: Widely available (since
|
|
7622
|
+
* ✅ Baseline: Widely available (since Mar 2018)
|
|
7582
7623
|
*
|
|
7583
7624
|
* @see https://developer.mozilla.org/docs/Web/CSS/transform-style
|
|
7584
7625
|
*/
|
|
@@ -7633,7 +7674,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7633
7674
|
*/
|
|
7634
7675
|
"trigger-scope"?: Property.TriggerScope | undefined;
|
|
7635
7676
|
/**
|
|
7636
|
-
* ✅ Baseline: Widely available (since
|
|
7677
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
7637
7678
|
*
|
|
7638
7679
|
* @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi
|
|
7639
7680
|
*/
|
|
@@ -7727,7 +7768,7 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7727
7768
|
*/
|
|
7728
7769
|
"will-change"?: Property.WillChange | undefined;
|
|
7729
7770
|
/**
|
|
7730
|
-
* ✅ Baseline: Widely available (since
|
|
7771
|
+
* ✅ Baseline: Widely available (since Jan 2018)
|
|
7731
7772
|
*
|
|
7732
7773
|
* @see https://developer.mozilla.org/docs/Web/CSS/word-break
|
|
7733
7774
|
*/
|
|
@@ -7750,13 +7791,13 @@ interface PropertiesHyphen<TLength = DefaultTLength, TTime = DefaultTTime> {
|
|
|
7750
7791
|
*/
|
|
7751
7792
|
"writing-mode"?: Property.WritingMode | undefined;
|
|
7752
7793
|
/**
|
|
7753
|
-
* ✅ Baseline: Widely available (since
|
|
7794
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
7754
7795
|
*
|
|
7755
7796
|
* @see https://developer.mozilla.org/docs/Web/CSS/x
|
|
7756
7797
|
*/
|
|
7757
7798
|
"x"?: Property.X<TLength> | undefined;
|
|
7758
7799
|
/**
|
|
7759
|
-
* ✅ Baseline: Widely available (since
|
|
7800
|
+
* ✅ Baseline: Widely available (since Jan 2023)
|
|
7760
7801
|
*
|
|
7761
7802
|
* @see https://developer.mozilla.org/docs/Web/CSS/y
|
|
7762
7803
|
*/
|
|
@@ -7782,62 +7823,62 @@ type AtRules = AtRules.Regular | AtRules.Nested;
|
|
|
7782
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";
|
|
7783
7824
|
declare namespace Property {
|
|
7784
7825
|
type AccentColor = Globals | "auto" | DataType.Color;
|
|
7785
|
-
type AlignContent = Globals | "normal" |
|
|
7786
|
-
type AlignItems = Globals | "normal" | "stretch" |
|
|
7826
|
+
type AlignContent = Globals | "normal" | DataType.ContentDistribution | DataType.ContentPosition;
|
|
7827
|
+
type AlignItems = Globals | "normal" | "stretch" | DataType.SelfPosition | "anchor-center";
|
|
7787
7828
|
type AlignmentBaseline = Globals | "baseline" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "text-before-edge" | "text-after-edge";
|
|
7788
|
-
type AlignSelf = Globals | "auto" | "normal" | "stretch" |
|
|
7789
|
-
type AlignTracks = Globals |
|
|
7829
|
+
type AlignSelf = Globals | "auto" | "normal" | "stretch" | DataType.SelfPosition | "anchor-center";
|
|
7830
|
+
type AlignTracks = Globals | DataType.ContentDistribution | DataType.ContentPosition;
|
|
7790
7831
|
type All = Globals | "initial" | "inherit" | "unset" | "revert" | "revert-layer";
|
|
7791
|
-
type AnchorName = Globals | "none"
|
|
7792
|
-
type AnchorScope = Globals | "none" | "all"
|
|
7793
|
-
type Animation<TTime = DefaultTTime> = Globals |
|
|
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;
|
|
7794
7835
|
type AnimationComposition = Globals | DataType.SingleAnimationComposition;
|
|
7795
7836
|
type AnimationDelay<TTime = DefaultTTime> = Globals | TTime;
|
|
7796
7837
|
type AnimationDirection = Globals | DataType.SingleAnimationDirection;
|
|
7797
|
-
type AnimationDuration<TTime = DefaultTTime> = Globals |
|
|
7838
|
+
type AnimationDuration<TTime = DefaultTTime> = Globals | TTime;
|
|
7798
7839
|
type AnimationFillMode = Globals | DataType.SingleAnimationFillMode;
|
|
7799
|
-
type AnimationIterationCount = Globals | "infinite"
|
|
7800
|
-
type AnimationName = Globals
|
|
7840
|
+
type AnimationIterationCount = Globals | "infinite";
|
|
7841
|
+
type AnimationName = Globals;
|
|
7801
7842
|
type AnimationPlayState = Globals | "running" | "paused";
|
|
7802
|
-
type AnimationRange<TLength = DefaultTLength> = Globals |
|
|
7803
|
-
type AnimationRangeEnd<TLength = DefaultTLength> = Globals |
|
|
7804
|
-
type AnimationRangeStart<TLength = DefaultTLength> = Globals |
|
|
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;
|
|
7805
7846
|
type AnimationTimeline = Globals | DataType.SingleAnimationTimeline;
|
|
7806
7847
|
type AnimationTimingFunction = Globals | DataType.EasingFunction;
|
|
7807
|
-
type AnimationTrigger = Globals
|
|
7848
|
+
type AnimationTrigger = Globals;
|
|
7808
7849
|
type Appearance = Globals | "none" | "auto" | DataType.CompatAuto | "textfield" | "menulist-button";
|
|
7809
|
-
type AspectRatio = Globals
|
|
7810
|
-
type BackdropFilter = Globals | "none"
|
|
7850
|
+
type AspectRatio = Globals;
|
|
7851
|
+
type BackdropFilter = Globals | "none";
|
|
7811
7852
|
type BackfaceVisibility = Globals | "visible" | "hidden";
|
|
7812
|
-
type Background = Globals
|
|
7853
|
+
type Background = Globals;
|
|
7813
7854
|
type BackgroundAttachment = Globals | DataType.Attachment;
|
|
7814
7855
|
type BackgroundBlendMode = Globals | DataType.BlendMode;
|
|
7815
7856
|
type BackgroundClip = Globals | DataType.BgClip;
|
|
7816
7857
|
type BackgroundColor = Globals | DataType.Color;
|
|
7817
|
-
type BackgroundImage = Globals |
|
|
7858
|
+
type BackgroundImage = Globals | "none";
|
|
7818
7859
|
type BackgroundOrigin = Globals | DataType.VisualBox;
|
|
7819
|
-
type BackgroundPosition<TLength = DefaultTLength> = Globals |
|
|
7820
|
-
type BackgroundPositionX<TLength = DefaultTLength> = Globals |
|
|
7821
|
-
type BackgroundPositionY<TLength = DefaultTLength> = Globals |
|
|
7860
|
+
type BackgroundPosition<TLength = DefaultTLength> = Globals | TLength;
|
|
7861
|
+
type BackgroundPositionX<TLength = DefaultTLength> = Globals | TLength;
|
|
7862
|
+
type BackgroundPositionY<TLength = DefaultTLength> = Globals | TLength;
|
|
7822
7863
|
type BackgroundRepeat = Globals | DataType.RepeatStyle;
|
|
7823
|
-
type BackgroundSize<TLength = DefaultTLength> = Globals |
|
|
7864
|
+
type BackgroundSize<TLength = DefaultTLength> = Globals | TLength | "cover" | "contain";
|
|
7824
7865
|
type BaselineShift<TLength = DefaultTLength> = Globals | TLength | "sub" | "super" | "baseline";
|
|
7825
7866
|
type BaselineSource = Globals | "auto" | "first" | "last";
|
|
7826
|
-
type BlockSize<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
7827
|
-
type Border<TLength = DefaultTLength> = Globals |
|
|
7828
|
-
type BorderBlock<TLength = DefaultTLength> = Globals |
|
|
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;
|
|
7829
7870
|
type BorderBlockColor = Globals | DataType.Color;
|
|
7830
|
-
type BorderBlockEnd<TLength = DefaultTLength> = Globals |
|
|
7871
|
+
type BorderBlockEnd<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
|
|
7831
7872
|
type BorderBlockEndColor = Globals | DataType.Color;
|
|
7832
7873
|
type BorderBlockEndStyle = Globals | DataType.LineStyle;
|
|
7833
7874
|
type BorderBlockEndWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
7834
|
-
type BorderBlockStart<TLength = DefaultTLength> = Globals |
|
|
7875
|
+
type BorderBlockStart<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
|
|
7835
7876
|
type BorderBlockStartColor = Globals | DataType.Color;
|
|
7836
7877
|
type BorderBlockStartStyle = Globals | DataType.LineStyle;
|
|
7837
7878
|
type BorderBlockStartWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
7838
7879
|
type BorderBlockStyle = Globals | DataType.LineStyle;
|
|
7839
7880
|
type BorderBlockWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
7840
|
-
type BorderBottom<TLength = DefaultTLength> = Globals |
|
|
7881
|
+
type BorderBottom<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
|
|
7841
7882
|
type BorderBottomColor = Globals | DataType.Color;
|
|
7842
7883
|
type BorderBottomLeftRadius<TLength = DefaultTLength> = Globals | TLength;
|
|
7843
7884
|
type BorderBottomRightRadius<TLength = DefaultTLength> = Globals | TLength;
|
|
@@ -7847,30 +7888,30 @@ declare namespace Property {
|
|
|
7847
7888
|
type BorderColor = Globals | DataType.Color;
|
|
7848
7889
|
type BorderEndEndRadius<TLength = DefaultTLength> = Globals | TLength;
|
|
7849
7890
|
type BorderEndStartRadius<TLength = DefaultTLength> = Globals | TLength;
|
|
7850
|
-
type BorderImage<TLength = DefaultTLength> = Globals |
|
|
7851
|
-
type BorderImageOutset<TLength = DefaultTLength> = Globals |
|
|
7852
|
-
type BorderImageRepeat = Globals
|
|
7853
|
-
type BorderImageSlice = Globals
|
|
7854
|
-
type BorderImageSource = Globals | "none"
|
|
7855
|
-
type BorderImageWidth<TLength = DefaultTLength> = Globals |
|
|
7856
|
-
type BorderInline<TLength = DefaultTLength> = Globals |
|
|
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;
|
|
7857
7898
|
type BorderInlineColor = Globals | DataType.Color;
|
|
7858
|
-
type BorderInlineEnd<TLength = DefaultTLength> = Globals |
|
|
7899
|
+
type BorderInlineEnd<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
|
|
7859
7900
|
type BorderInlineEndColor = Globals | DataType.Color;
|
|
7860
7901
|
type BorderInlineEndStyle = Globals | DataType.LineStyle;
|
|
7861
7902
|
type BorderInlineEndWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
7862
|
-
type BorderInlineStart<TLength = DefaultTLength> = Globals |
|
|
7903
|
+
type BorderInlineStart<TLength = DefaultTLength> = Globals | DataType.Color | DataType.LineWidth<TLength> | DataType.LineStyle;
|
|
7863
7904
|
type BorderInlineStartColor = Globals | DataType.Color;
|
|
7864
7905
|
type BorderInlineStartStyle = Globals | DataType.LineStyle;
|
|
7865
7906
|
type BorderInlineStartWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
7866
7907
|
type BorderInlineStyle = Globals | DataType.LineStyle;
|
|
7867
7908
|
type BorderInlineWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
7868
|
-
type BorderLeft<TLength = DefaultTLength> = Globals |
|
|
7909
|
+
type BorderLeft<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
|
|
7869
7910
|
type BorderLeftColor = Globals | DataType.Color;
|
|
7870
7911
|
type BorderLeftStyle = Globals | DataType.LineStyle;
|
|
7871
7912
|
type BorderLeftWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
7872
|
-
type BorderRadius<TLength = DefaultTLength> = Globals |
|
|
7873
|
-
type BorderRight<TLength = DefaultTLength> = Globals |
|
|
7913
|
+
type BorderRadius<TLength = DefaultTLength> = Globals | TLength;
|
|
7914
|
+
type BorderRight<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
|
|
7874
7915
|
type BorderRightColor = Globals | DataType.Color;
|
|
7875
7916
|
type BorderRightStyle = Globals | DataType.LineStyle;
|
|
7876
7917
|
type BorderRightWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
@@ -7878,198 +7919,198 @@ declare namespace Property {
|
|
|
7878
7919
|
type BorderStartEndRadius<TLength = DefaultTLength> = Globals | TLength;
|
|
7879
7920
|
type BorderStartStartRadius<TLength = DefaultTLength> = Globals | TLength;
|
|
7880
7921
|
type BorderStyle = Globals | DataType.LineStyle;
|
|
7881
|
-
type BorderTop<TLength = DefaultTLength> = Globals |
|
|
7922
|
+
type BorderTop<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
|
|
7882
7923
|
type BorderTopColor = Globals | DataType.Color;
|
|
7883
7924
|
type BorderTopLeftRadius<TLength = DefaultTLength> = Globals | TLength;
|
|
7884
7925
|
type BorderTopRightRadius<TLength = DefaultTLength> = Globals | TLength;
|
|
7885
7926
|
type BorderTopStyle = Globals | DataType.LineStyle;
|
|
7886
7927
|
type BorderTopWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
7887
7928
|
type BorderWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
7888
|
-
type Bottom<TLength = DefaultTLength> = Globals | "auto" | TLength |
|
|
7929
|
+
type Bottom<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
|
|
7889
7930
|
type BoxAlign = Globals | "start" | "center" | "end" | "baseline" | "stretch";
|
|
7890
7931
|
type BoxDecorationBreak = Globals | "slice" | "clone";
|
|
7891
7932
|
type BoxDirection = Globals | "normal" | "reverse" | "inherit";
|
|
7892
|
-
type BoxFlex = Globals
|
|
7893
|
-
type BoxFlexGroup = Globals
|
|
7933
|
+
type BoxFlex = Globals;
|
|
7934
|
+
type BoxFlexGroup = Globals;
|
|
7894
7935
|
type BoxLines = Globals | "single" | "multiple";
|
|
7895
|
-
type BoxOrdinalGroup = Globals
|
|
7936
|
+
type BoxOrdinalGroup = Globals;
|
|
7896
7937
|
type BoxOrient = Globals | "horizontal" | "vertical" | "inline-axis" | "block-axis" | "inherit";
|
|
7897
7938
|
type BoxPack = Globals | "start" | "center" | "end" | "justify";
|
|
7898
|
-
type BoxShadow<TLength = DefaultTLength> = Globals | "none" |
|
|
7939
|
+
type BoxShadow<TLength = DefaultTLength> = Globals | "none" | TLength | DataType.Color;
|
|
7899
7940
|
type BoxSizing = Globals | "content-box" | "border-box";
|
|
7900
7941
|
type BreakAfter = Globals | "auto" | "avoid" | "always" | "all" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
|
|
7901
7942
|
type BreakBefore = Globals | "auto" | "avoid" | "always" | "all" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
|
|
7902
7943
|
type BreakInside = Globals | "auto" | "avoid" | "avoid-page" | "avoid-column" | "avoid-region";
|
|
7903
7944
|
type CaptionSide = Globals | "top" | "bottom";
|
|
7904
|
-
type Caret = Globals |
|
|
7945
|
+
type Caret = Globals | "auto" | DataType.Color | "manual" | "bar" | "block" | "underscore";
|
|
7905
7946
|
type CaretAnimation = Globals | "auto" | "manual";
|
|
7906
7947
|
type CaretColor = Globals | "auto" | DataType.Color;
|
|
7907
7948
|
type CaretShape = Globals | "auto" | "bar" | "block" | "underscore";
|
|
7908
7949
|
type Clear = Globals | "none" | "left" | "right" | "both" | "inline-start" | "inline-end";
|
|
7909
|
-
type Clip = Globals |
|
|
7910
|
-
type ClipPath = Globals |
|
|
7950
|
+
type Clip = Globals | "auto";
|
|
7951
|
+
type ClipPath = Globals | DataType.GeometryBox | "none";
|
|
7911
7952
|
type ClipRule = Globals | "nonzero" | "evenodd";
|
|
7912
7953
|
type Color = Globals | DataType.Color;
|
|
7913
7954
|
type ColorInterpolation = Globals | "auto" | "sRGB" | "linearRGB";
|
|
7914
7955
|
type ColorInterpolationFilters = Globals | "auto" | "sRGB" | "linearRGB";
|
|
7915
7956
|
type ColorRendering = Globals | "auto" | "optimizeSpeed" | "optimizeQuality";
|
|
7916
|
-
type ColorScheme = Globals | "normal"
|
|
7917
|
-
type ColumnCount = Globals |
|
|
7957
|
+
type ColorScheme = Globals | "normal";
|
|
7958
|
+
type ColumnCount = Globals | "auto";
|
|
7918
7959
|
type ColumnFill = Globals | "auto" | "balance";
|
|
7919
7960
|
type ColumnGap<TLength = DefaultTLength> = Globals | "normal" | TLength;
|
|
7920
7961
|
type ColumnHeight<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
7921
|
-
type ColumnRule<TLength = DefaultTLength> = Globals |
|
|
7962
|
+
type ColumnRule<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength> | DataType.LineStyle | DataType.Color;
|
|
7922
7963
|
type ColumnRuleColor = Globals | DataType.Color;
|
|
7923
7964
|
type ColumnRuleStyle = Globals | DataType.LineStyle;
|
|
7924
7965
|
type ColumnRuleWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
7925
|
-
type Columns<TLength = DefaultTLength> = Globals |
|
|
7966
|
+
type Columns<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
7926
7967
|
type ColumnSpan = Globals | "none" | "all";
|
|
7927
7968
|
type ColumnWidth<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
7928
7969
|
type ColumnWrap = Globals | "auto" | "nowrap" | "wrap";
|
|
7929
|
-
type Contain = Globals | "none" | "strict" | "content"
|
|
7930
|
-
type Container = Globals |
|
|
7931
|
-
type ContainerName = Globals | "none"
|
|
7932
|
-
type ContainerType = Globals | "normal"
|
|
7933
|
-
type ContainIntrinsicBlockSize<TLength = DefaultTLength> = Globals |
|
|
7934
|
-
type ContainIntrinsicHeight<TLength = DefaultTLength> = Globals |
|
|
7935
|
-
type ContainIntrinsicInlineSize<TLength = DefaultTLength> = Globals |
|
|
7936
|
-
type ContainIntrinsicSize<TLength = DefaultTLength> = Globals |
|
|
7937
|
-
type ContainIntrinsicWidth<TLength = DefaultTLength> = Globals |
|
|
7938
|
-
type Content = Globals | "normal" | "none"
|
|
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";
|
|
7939
7980
|
type ContentVisibility = Globals | "visible" | "auto" | "hidden";
|
|
7940
|
-
type CornerBlockEndShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7941
|
-
type CornerBlockStartShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7942
|
-
type CornerBottomLeftShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7943
|
-
type CornerBottomRightShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7944
|
-
type CornerBottomShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7945
|
-
type CornerEndEndShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7946
|
-
type CornerEndStartShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7947
|
-
type CornerInlineEndShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7948
|
-
type CornerInlineStartShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7949
|
-
type CornerLeftShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7950
|
-
type CornerRightShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7951
|
-
type CornerShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7952
|
-
type CornerStartEndShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7953
|
-
type CornerStartStartShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7954
|
-
type CornerTopLeftShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7955
|
-
type CornerTopRightShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7956
|
-
type CornerTopShape = Globals | "round" | "scoop" | "bevel" | "notch" | "square" | "squircle"
|
|
7957
|
-
type CounterIncrement = Globals |
|
|
7958
|
-
type CounterReset = Globals |
|
|
7959
|
-
type CounterSet = Globals |
|
|
7960
|
-
type Cursor = Globals |
|
|
7961
|
-
type Cx<TLength = DefaultTLength> = Globals | TLength
|
|
7962
|
-
type Cy<TLength = DefaultTLength> = Globals | TLength
|
|
7963
|
-
type D = Globals | "none"
|
|
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";
|
|
7964
8005
|
type Direction = Globals | "ltr" | "rtl";
|
|
7965
|
-
type Display = Globals |
|
|
8006
|
+
type Display = Globals | DataType.DisplayOutside | DataType.DisplayInside | DataType.DisplayInternal | "contents" | "none" | DataType.DisplayLegacy;
|
|
7966
8007
|
type DominantBaseline = Globals | "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top";
|
|
7967
|
-
type DynamicRangeLimit = Globals | "standard" | "no-limit" | "constrained"
|
|
8008
|
+
type DynamicRangeLimit = Globals | "standard" | "no-limit" | "constrained";
|
|
7968
8009
|
type EmptyCells = Globals | "show" | "hide";
|
|
7969
8010
|
type FieldSizing = Globals | "content" | "fixed";
|
|
7970
8011
|
type Fill = Globals | DataType.Paint;
|
|
7971
|
-
type FillOpacity = Globals
|
|
8012
|
+
type FillOpacity = Globals;
|
|
7972
8013
|
type FillRule = Globals | "nonzero" | "evenodd";
|
|
7973
|
-
type Filter = Globals | "none"
|
|
7974
|
-
type Flex<TLength = DefaultTLength> = Globals | "none" |
|
|
7975
|
-
type FlexBasis<TLength = DefaultTLength> = Globals | "content" | "auto" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
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";
|
|
7976
8017
|
type FlexDirection = Globals | "row" | "row-reverse" | "column" | "column-reverse";
|
|
7977
|
-
type FlexFlow = Globals |
|
|
7978
|
-
type FlexGrow = Globals
|
|
7979
|
-
type FlexShrink = Globals
|
|
8018
|
+
type FlexFlow = Globals | "row" | "row-reverse" | "column" | "column-reverse" | "nowrap" | "wrap" | "wrap-reverse";
|
|
8019
|
+
type FlexGrow = Globals;
|
|
8020
|
+
type FlexShrink = Globals;
|
|
7980
8021
|
type FlexWrap = Globals | "nowrap" | "wrap" | "wrap-reverse";
|
|
7981
8022
|
type Float = Globals | "left" | "right" | "none" | "inline-start" | "inline-end";
|
|
7982
8023
|
type FloodColor = Globals | DataType.Color;
|
|
7983
|
-
type FloodOpacity = Globals
|
|
7984
|
-
type Font<TLength = DefaultTLength> = Globals |
|
|
7985
|
-
type FontFamily = Globals |
|
|
7986
|
-
type FontFeatureSettings = Globals | "normal"
|
|
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";
|
|
7987
8028
|
type FontKerning = Globals | "auto" | "normal" | "none";
|
|
7988
|
-
type FontLanguageOverride = Globals | "normal"
|
|
8029
|
+
type FontLanguageOverride = Globals | "normal";
|
|
7989
8030
|
type FontOpticalSizing = Globals | "auto" | "none";
|
|
7990
|
-
type FontPalette = Globals | "normal" | "light" | "dark"
|
|
8031
|
+
type FontPalette = Globals | "normal" | "light" | "dark";
|
|
7991
8032
|
type FontSize<TLength = DefaultTLength> = Globals | DataType.AbsoluteSize | "larger" | "smaller" | TLength | "math";
|
|
7992
|
-
type FontSizeAdjust = Globals | "none"
|
|
8033
|
+
type FontSizeAdjust = Globals | "none";
|
|
7993
8034
|
type FontSmooth<TLength = DefaultTLength> = Globals | "auto" | "never" | "always" | DataType.AbsoluteSize | TLength;
|
|
7994
8035
|
type FontStretch = Globals | DataType.FontStretchAbsolute;
|
|
7995
|
-
type FontStyle = Globals | "normal" | "italic"
|
|
7996
|
-
type FontSynthesis = Globals | "none"
|
|
8036
|
+
type FontStyle = Globals | "normal" | "italic";
|
|
8037
|
+
type FontSynthesis = Globals | "none";
|
|
7997
8038
|
type FontSynthesisPosition = Globals | "auto" | "none";
|
|
7998
8039
|
type FontSynthesisSmallCaps = Globals | "auto" | "none";
|
|
7999
8040
|
type FontSynthesisStyle = Globals | "auto" | "none";
|
|
8000
8041
|
type FontSynthesisWeight = Globals | "auto" | "none";
|
|
8001
|
-
type FontVariant = Globals | "normal" | "none" |
|
|
8002
|
-
type FontVariantAlternates = Globals | "normal"
|
|
8042
|
+
type FontVariant = Globals | "normal" | "none" | DataType.EastAsianVariantValues;
|
|
8043
|
+
type FontVariantAlternates = Globals | "normal";
|
|
8003
8044
|
type FontVariantCaps = Globals | "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps";
|
|
8004
|
-
type FontVariantEastAsian = Globals | "normal" |
|
|
8045
|
+
type FontVariantEastAsian = Globals | "normal" | DataType.EastAsianVariantValues;
|
|
8005
8046
|
type FontVariantEmoji = Globals | "normal" | "text" | "emoji" | "unicode";
|
|
8006
|
-
type FontVariantLigatures = Globals | "normal" | "none"
|
|
8007
|
-
type FontVariantNumeric = Globals | "normal"
|
|
8047
|
+
type FontVariantLigatures = Globals | "normal" | "none";
|
|
8048
|
+
type FontVariantNumeric = Globals | "normal";
|
|
8008
8049
|
type FontVariantPosition = Globals | "normal" | "sub" | "super";
|
|
8009
|
-
type FontVariationSettings = Globals | "normal"
|
|
8050
|
+
type FontVariationSettings = Globals | "normal";
|
|
8010
8051
|
type FontWeight = Globals | DataType.FontWeightAbsolute | "bolder" | "lighter";
|
|
8011
|
-
type FontWidth = Globals | "normal" |
|
|
8052
|
+
type FontWidth = Globals | "normal" | "ultra-condensed" | "extra-condensed" | "condensed" | "semi-condensed" | "semi-expanded" | "expanded" | "extra-expanded" | "ultra-expanded";
|
|
8012
8053
|
type ForcedColorAdjust = Globals | "auto" | "none" | "preserve-parent-color";
|
|
8013
|
-
type Gap<TLength = DefaultTLength> = Globals |
|
|
8014
|
-
type GlyphOrientationVertical = Globals | "auto"
|
|
8015
|
-
type Grid<TLength = DefaultTLength> = Globals | "none" |
|
|
8016
|
-
type GridArea = Globals
|
|
8017
|
-
type GridAutoColumns<TLength = DefaultTLength> = Globals | TLength |
|
|
8018
|
-
type GridAutoFlow = Globals
|
|
8019
|
-
type GridAutoRows<TLength = DefaultTLength> = Globals | TLength |
|
|
8020
|
-
type GridColumn = Globals
|
|
8021
|
-
type GridColumnEnd = Globals | "auto"
|
|
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";
|
|
8022
8063
|
type GridColumnGap<TLength = DefaultTLength> = Globals | TLength;
|
|
8023
|
-
type GridColumnStart = Globals | "auto"
|
|
8024
|
-
type GridGap<TLength = DefaultTLength> = Globals |
|
|
8025
|
-
type GridRow = Globals
|
|
8026
|
-
type GridRowEnd = Globals | "auto"
|
|
8064
|
+
type GridColumnStart = Globals | "auto";
|
|
8065
|
+
type GridGap<TLength = DefaultTLength> = Globals | TLength;
|
|
8066
|
+
type GridRow = Globals;
|
|
8067
|
+
type GridRowEnd = Globals | "auto";
|
|
8027
8068
|
type GridRowGap<TLength = DefaultTLength> = Globals | TLength;
|
|
8028
|
-
type GridRowStart = Globals | "auto"
|
|
8029
|
-
type GridTemplate = Globals | "none"
|
|
8030
|
-
type GridTemplateAreas = Globals | "none"
|
|
8031
|
-
type GridTemplateColumns = Globals | "none"
|
|
8032
|
-
type GridTemplateRows = Globals | "none"
|
|
8033
|
-
type HangingPunctuation = Globals | "none"
|
|
8034
|
-
type Height<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
8035
|
-
type HyphenateCharacter = Globals | "auto"
|
|
8036
|
-
type HyphenateLimitChars = Globals
|
|
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;
|
|
8037
8078
|
type Hyphens = Globals | "none" | "manual" | "auto";
|
|
8038
|
-
type ImageOrientation = Globals | "from-image"
|
|
8079
|
+
type ImageOrientation = Globals | "from-image";
|
|
8039
8080
|
type ImageRendering = Globals | "auto" | "crisp-edges" | "pixelated" | "smooth";
|
|
8040
|
-
type ImageResolution = Globals
|
|
8081
|
+
type ImageResolution = Globals;
|
|
8041
8082
|
type ImeMode = Globals | "auto" | "normal" | "active" | "inactive" | "disabled";
|
|
8042
|
-
type InitialLetter = Globals | "normal"
|
|
8043
|
-
type InitialLetterAlign = Globals
|
|
8044
|
-
type InlineSize<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
8045
|
-
type Inset<TLength = DefaultTLength> = Globals | "auto" | TLength |
|
|
8046
|
-
type InsetBlock<TLength = DefaultTLength> = Globals | "auto" | TLength |
|
|
8047
|
-
type InsetBlockEnd<TLength = DefaultTLength> = Globals | "auto" | TLength |
|
|
8048
|
-
type InsetBlockStart<TLength = DefaultTLength> = Globals | "auto" | TLength |
|
|
8049
|
-
type InsetInline<TLength = DefaultTLength> = Globals | "auto" | TLength |
|
|
8050
|
-
type InsetInlineEnd<TLength = DefaultTLength> = Globals | "auto" | TLength |
|
|
8051
|
-
type InsetInlineStart<TLength = DefaultTLength> = Globals | "auto" | TLength |
|
|
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";
|
|
8052
8093
|
type Interactivity = Globals | "auto" | "inert";
|
|
8053
8094
|
type InterestDelay<TTime = DefaultTTime> = Globals | "normal" | TTime;
|
|
8054
8095
|
type InterestDelayEnd<TTime = DefaultTTime> = Globals | "normal" | TTime;
|
|
8055
8096
|
type InterestDelayStart<TTime = DefaultTTime> = Globals | "normal" | TTime;
|
|
8056
8097
|
type InterpolateSize = Globals | "numeric-only" | "allow-keywords";
|
|
8057
8098
|
type Isolation = Globals | "auto" | "isolate";
|
|
8058
|
-
type JustifyContent = Globals | "normal" | DataType.ContentDistribution |
|
|
8059
|
-
type JustifyItems = Globals | "normal" | "stretch" |
|
|
8060
|
-
type JustifySelf = Globals | "auto" | "normal" | "stretch" |
|
|
8061
|
-
type JustifyTracks = Globals |
|
|
8062
|
-
type Left<TLength = DefaultTLength> = Globals | "auto" | TLength |
|
|
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";
|
|
8063
8104
|
type LetterSpacing<TLength = DefaultTLength> = Globals | "normal" | TLength;
|
|
8064
8105
|
type LightingColor = Globals | DataType.Color;
|
|
8065
8106
|
type LineBreak = Globals | "auto" | "loose" | "normal" | "strict" | "anywhere";
|
|
8066
|
-
type LineClamp = Globals | "none"
|
|
8067
|
-
type LineHeight<TLength = DefaultTLength> = Globals | "normal" |
|
|
8107
|
+
type LineClamp = Globals | "none";
|
|
8108
|
+
type LineHeight<TLength = DefaultTLength> = Globals | "normal" | TLength;
|
|
8068
8109
|
type LineHeightStep<TLength = DefaultTLength> = Globals | TLength;
|
|
8069
|
-
type ListStyle = Globals |
|
|
8070
|
-
type ListStyleImage = Globals |
|
|
8110
|
+
type ListStyle = Globals | "none" | "inside" | "outside";
|
|
8111
|
+
type ListStyleImage = Globals | "none";
|
|
8071
8112
|
type ListStylePosition = Globals | "inside" | "outside";
|
|
8072
|
-
type ListStyleType = Globals |
|
|
8113
|
+
type ListStyleType = Globals | "none";
|
|
8073
8114
|
type Margin<TLength = DefaultTLength> = Globals | TLength | "auto" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
|
|
8074
8115
|
type MarginBlock<TLength = DefaultTLength> = Globals | TLength | "auto" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
|
|
8075
8116
|
type MarginBlockEnd<TLength = DefaultTLength> = Globals | TLength | "auto" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
|
|
@@ -8082,56 +8123,56 @@ declare namespace Property {
|
|
|
8082
8123
|
type MarginRight<TLength = DefaultTLength> = Globals | TLength | "auto" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
|
|
8083
8124
|
type MarginTop<TLength = DefaultTLength> = Globals | TLength | "auto" | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
|
|
8084
8125
|
type MarginTrim = Globals | "none" | "in-flow" | "all";
|
|
8085
|
-
type Marker = Globals | "none"
|
|
8086
|
-
type MarkerEnd = Globals | "none"
|
|
8087
|
-
type MarkerMid = Globals | "none"
|
|
8088
|
-
type MarkerStart = Globals | "none"
|
|
8089
|
-
type Mask<TLength = DefaultTLength> = Globals |
|
|
8090
|
-
type MaskBorder<TLength = DefaultTLength> = Globals |
|
|
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";
|
|
8091
8132
|
type MaskBorderMode = Globals | "luminance" | "alpha";
|
|
8092
|
-
type MaskBorderOutset<TLength = DefaultTLength> = Globals |
|
|
8093
|
-
type MaskBorderRepeat = Globals
|
|
8094
|
-
type MaskBorderSlice = Globals
|
|
8095
|
-
type MaskBorderSource = Globals | "none"
|
|
8096
|
-
type MaskBorderWidth<TLength = DefaultTLength> = Globals |
|
|
8097
|
-
type MaskClip = Globals
|
|
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;
|
|
8098
8139
|
type MaskComposite = Globals | DataType.CompositingOperator;
|
|
8099
|
-
type MaskImage = Globals | "none"
|
|
8140
|
+
type MaskImage = Globals | "none";
|
|
8100
8141
|
type MaskMode = Globals | DataType.MaskingMode;
|
|
8101
8142
|
type MaskOrigin = Globals | DataType.VisualBox | "fill-box" | "stroke-box" | "view-box";
|
|
8102
8143
|
type MaskPosition<TLength = DefaultTLength> = Globals | DataType.Position<TLength>;
|
|
8103
8144
|
type MaskRepeat = Globals | DataType.RepeatStyle;
|
|
8104
|
-
type MaskSize<TLength = DefaultTLength> = Globals |
|
|
8145
|
+
type MaskSize<TLength = DefaultTLength> = Globals | TLength | "cover" | "contain";
|
|
8105
8146
|
type MaskType = Globals | "luminance" | "alpha";
|
|
8106
|
-
type MasonryAutoFlow = Globals
|
|
8107
|
-
type MathDepth = Globals | "auto-add"
|
|
8147
|
+
type MasonryAutoFlow = Globals;
|
|
8148
|
+
type MathDepth = Globals | "auto-add";
|
|
8108
8149
|
type MathShift = Globals | "normal" | "compact";
|
|
8109
8150
|
type MathStyle = Globals | "normal" | "compact";
|
|
8110
|
-
type MaxBlockSize<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
8111
|
-
type MaxHeight<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
8112
|
-
type MaxInlineSize<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
8113
|
-
type MaxLines = Globals | "none"
|
|
8114
|
-
type MaxWidth<TLength = DefaultTLength> = Globals | "none" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
8115
|
-
type MinBlockSize<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
8116
|
-
type MinHeight<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
8117
|
-
type MinInlineSize<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
8118
|
-
type MinWidth<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
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";
|
|
8119
8160
|
type MixBlendMode = Globals | DataType.BlendMode | "plus-darker" | "plus-lighter";
|
|
8120
|
-
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"
|
|
8121
|
-
type MozBinding = Globals |
|
|
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";
|
|
8122
8163
|
type MozBorderBottomColors = Globals | DataType.Color | "none";
|
|
8123
8164
|
type MozBorderLeftColors = Globals | DataType.Color | "none";
|
|
8124
8165
|
type MozBorderRightColors = Globals | DataType.Color | "none";
|
|
8125
8166
|
type MozBorderTopColors = Globals | DataType.Color | "none";
|
|
8126
|
-
type MozContextProperties = Globals | "none"
|
|
8167
|
+
type MozContextProperties = Globals | "none";
|
|
8127
8168
|
type MozFloatEdge = Globals | "border-box" | "content-box" | "margin-box" | "padding-box";
|
|
8128
|
-
type MozForceBrokenImageIcon = Globals
|
|
8169
|
+
type MozForceBrokenImageIcon = Globals;
|
|
8129
8170
|
type MozOrient = Globals | "inline" | "block" | "horizontal" | "vertical";
|
|
8130
|
-
type MozOutlineRadius = Globals
|
|
8131
|
-
type MozOutlineRadiusBottomleft<TLength = DefaultTLength> = Globals | TLength
|
|
8132
|
-
type MozOutlineRadiusBottomright<TLength = DefaultTLength> = Globals | TLength
|
|
8133
|
-
type MozOutlineRadiusTopleft<TLength = DefaultTLength> = Globals | TLength
|
|
8134
|
-
type MozOutlineRadiusTopright<TLength = DefaultTLength> = Globals | TLength
|
|
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;
|
|
8135
8176
|
type MozStackSizing = Globals | "ignore" | "stretch-to-fit";
|
|
8136
8177
|
type MozTextBlink = Globals | "none" | "blink";
|
|
8137
8178
|
type MozUserFocus = Globals | "ignore" | "normal" | "select-after" | "select-before" | "select-menu" | "select-same" | "select-all" | "none";
|
|
@@ -8143,23 +8184,23 @@ declare namespace Property {
|
|
|
8143
8184
|
type MsBlockProgression = Globals | "tb" | "rl" | "bt" | "lr";
|
|
8144
8185
|
type MsContentZoomChaining = Globals | "none" | "chained";
|
|
8145
8186
|
type MsContentZooming = Globals | "none" | "zoom";
|
|
8146
|
-
type MsContentZoomLimit = Globals
|
|
8147
|
-
type MsContentZoomLimitMax = Globals
|
|
8148
|
-
type MsContentZoomLimitMin = Globals
|
|
8149
|
-
type MsContentZoomSnap = Globals |
|
|
8150
|
-
type MsContentZoomSnapPoints = Globals
|
|
8187
|
+
type MsContentZoomLimit = Globals;
|
|
8188
|
+
type MsContentZoomLimitMax = Globals;
|
|
8189
|
+
type MsContentZoomLimitMin = Globals;
|
|
8190
|
+
type MsContentZoomSnap = Globals | "none" | "proximity" | "mandatory";
|
|
8191
|
+
type MsContentZoomSnapPoints = Globals;
|
|
8151
8192
|
type MsContentZoomSnapType = Globals | "none" | "proximity" | "mandatory";
|
|
8152
|
-
type MsFilter = Globals
|
|
8153
|
-
type MsFlowFrom = Globals
|
|
8154
|
-
type MsFlowInto = Globals
|
|
8155
|
-
type MsGridColumns = Globals | "none"
|
|
8156
|
-
type MsGridRows = Globals | "none"
|
|
8193
|
+
type MsFilter = Globals;
|
|
8194
|
+
type MsFlowFrom = Globals;
|
|
8195
|
+
type MsFlowInto = Globals;
|
|
8196
|
+
type MsGridColumns = Globals | "none";
|
|
8197
|
+
type MsGridRows = Globals | "none";
|
|
8157
8198
|
type MsHighContrastAdjust = Globals | "auto" | "none";
|
|
8158
|
-
type MsHyphenateLimitChars = Globals | "auto"
|
|
8159
|
-
type MsHyphenateLimitLines = Globals | "no-limit"
|
|
8160
|
-
type MsHyphenateLimitZone<TLength = DefaultTLength> = Globals |
|
|
8199
|
+
type MsHyphenateLimitChars = Globals | "auto";
|
|
8200
|
+
type MsHyphenateLimitLines = Globals | "no-limit";
|
|
8201
|
+
type MsHyphenateLimitZone<TLength = DefaultTLength> = Globals | TLength;
|
|
8161
8202
|
type MsImeAlign = Globals | "auto" | "after";
|
|
8162
|
-
type MsOverflowStyle = Globals | "auto" | "none" | "scrollbar"
|
|
8203
|
+
type MsOverflowStyle = Globals | "auto" | "none" | "scrollbar";
|
|
8163
8204
|
type MsScrollbar3dlightColor = Globals | DataType.Color;
|
|
8164
8205
|
type MsScrollbarArrowColor = Globals | DataType.Color;
|
|
8165
8206
|
type MsScrollbarBaseColor = Globals | DataType.Color;
|
|
@@ -8169,17 +8210,17 @@ declare namespace Property {
|
|
|
8169
8210
|
type MsScrollbarShadowColor = Globals | DataType.Color;
|
|
8170
8211
|
type MsScrollbarTrackColor = Globals | DataType.Color;
|
|
8171
8212
|
type MsScrollChaining = Globals | "chained" | "none";
|
|
8172
|
-
type MsScrollLimit<TLength = DefaultTLength> = Globals |
|
|
8213
|
+
type MsScrollLimit<TLength = DefaultTLength> = Globals | TLength | "auto";
|
|
8173
8214
|
type MsScrollLimitXMax<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
8174
8215
|
type MsScrollLimitXMin<TLength = DefaultTLength> = Globals | TLength;
|
|
8175
8216
|
type MsScrollLimitYMax<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
8176
8217
|
type MsScrollLimitYMin<TLength = DefaultTLength> = Globals | TLength;
|
|
8177
8218
|
type MsScrollRails = Globals | "none" | "railed";
|
|
8178
|
-
type MsScrollSnapPointsX = Globals
|
|
8179
|
-
type MsScrollSnapPointsY = Globals
|
|
8219
|
+
type MsScrollSnapPointsX = Globals;
|
|
8220
|
+
type MsScrollSnapPointsY = Globals;
|
|
8180
8221
|
type MsScrollSnapType = Globals | "none" | "proximity" | "mandatory";
|
|
8181
|
-
type MsScrollSnapX = Globals |
|
|
8182
|
-
type MsScrollSnapY = Globals |
|
|
8222
|
+
type MsScrollSnapX = Globals | "none" | "proximity" | "mandatory";
|
|
8223
|
+
type MsScrollSnapY = Globals | "none" | "proximity" | "mandatory";
|
|
8183
8224
|
type MsScrollTranslation = Globals | "none" | "vertical-to-horizontal";
|
|
8184
8225
|
type MsTextAutospace = Globals | "none" | "ideograph-alpha" | "ideograph-numeric" | "ideograph-parenthesis" | "ideograph-space";
|
|
8185
8226
|
type MsTouchSelect = Globals | "grippers" | "none";
|
|
@@ -8189,32 +8230,32 @@ declare namespace Property {
|
|
|
8189
8230
|
type MsWrapThrough = Globals | "wrap" | "none";
|
|
8190
8231
|
type ObjectFit = Globals | "fill" | "contain" | "cover" | "none" | "scale-down";
|
|
8191
8232
|
type ObjectPosition<TLength = DefaultTLength> = Globals | DataType.Position<TLength>;
|
|
8192
|
-
type ObjectViewBox = Globals | "none"
|
|
8193
|
-
type Offset<TLength = DefaultTLength> = Globals |
|
|
8233
|
+
type ObjectViewBox = Globals | "none";
|
|
8234
|
+
type Offset<TLength = DefaultTLength> = Globals | "normal" | "auto" | DataType.Position<TLength> | "none" | TLength;
|
|
8194
8235
|
type OffsetAnchor<TLength = DefaultTLength> = Globals | "auto" | DataType.Position<TLength>;
|
|
8195
8236
|
type OffsetDistance<TLength = DefaultTLength> = Globals | TLength;
|
|
8196
|
-
type OffsetPath = Globals | "none"
|
|
8237
|
+
type OffsetPath = Globals | "none";
|
|
8197
8238
|
type OffsetPosition<TLength = DefaultTLength> = Globals | "normal" | "auto" | DataType.Position<TLength>;
|
|
8198
|
-
type OffsetRotate = Globals
|
|
8199
|
-
type Opacity = Globals
|
|
8200
|
-
type Order = Globals
|
|
8201
|
-
type Orphans = Globals
|
|
8202
|
-
type Outline<TLength = DefaultTLength> = Globals |
|
|
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;
|
|
8203
8244
|
type OutlineColor = Globals | "auto" | DataType.Color;
|
|
8204
8245
|
type OutlineOffset<TLength = DefaultTLength> = Globals | TLength;
|
|
8205
8246
|
type OutlineStyle = Globals | "auto" | DataType.OutlineLineStyle;
|
|
8206
8247
|
type OutlineWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
8207
|
-
type Overflow = Globals
|
|
8248
|
+
type Overflow = Globals;
|
|
8208
8249
|
type OverflowAnchor = Globals | "auto" | "none";
|
|
8209
8250
|
type OverflowBlock = Globals | "visible" | "hidden" | "clip" | "scroll" | "auto";
|
|
8210
8251
|
type OverflowClipBox = Globals | "padding-box" | "content-box";
|
|
8211
|
-
type OverflowClipMargin<TLength = DefaultTLength> = Globals |
|
|
8252
|
+
type OverflowClipMargin<TLength = DefaultTLength> = Globals | DataType.VisualBox | TLength;
|
|
8212
8253
|
type OverflowInline = Globals | "visible" | "hidden" | "clip" | "scroll" | "auto";
|
|
8213
8254
|
type OverflowWrap = Globals | "normal" | "break-word" | "anywhere";
|
|
8214
8255
|
type OverflowX = Globals | "visible" | "hidden" | "clip" | "scroll" | "auto";
|
|
8215
8256
|
type OverflowY = Globals | "visible" | "hidden" | "clip" | "scroll" | "auto";
|
|
8216
8257
|
type Overlay = Globals | "none" | "auto";
|
|
8217
|
-
type OverscrollBehavior = Globals
|
|
8258
|
+
type OverscrollBehavior = Globals;
|
|
8218
8259
|
type OverscrollBehaviorBlock = Globals | "contain" | "none" | "auto";
|
|
8219
8260
|
type OverscrollBehaviorInline = Globals | "contain" | "none" | "auto";
|
|
8220
8261
|
type OverscrollBehaviorX = Globals | "contain" | "none" | "auto";
|
|
@@ -8230,42 +8271,42 @@ declare namespace Property {
|
|
|
8230
8271
|
type PaddingLeft<TLength = DefaultTLength> = Globals | TLength;
|
|
8231
8272
|
type PaddingRight<TLength = DefaultTLength> = Globals | TLength;
|
|
8232
8273
|
type PaddingTop<TLength = DefaultTLength> = Globals | TLength;
|
|
8233
|
-
type Page = Globals | "auto"
|
|
8274
|
+
type Page = Globals | "auto";
|
|
8234
8275
|
type PageBreakAfter = Globals | "auto" | "always" | "avoid" | "left" | "right" | "recto" | "verso";
|
|
8235
8276
|
type PageBreakBefore = Globals | "auto" | "always" | "avoid" | "left" | "right" | "recto" | "verso";
|
|
8236
8277
|
type PageBreakInside = Globals | "auto" | "avoid";
|
|
8237
|
-
type PaintOrder = Globals | "normal"
|
|
8278
|
+
type PaintOrder = Globals | "normal";
|
|
8238
8279
|
type Perspective<TLength = DefaultTLength> = Globals | "none" | TLength;
|
|
8239
8280
|
type PerspectiveOrigin<TLength = DefaultTLength> = Globals | DataType.Position<TLength>;
|
|
8240
|
-
type PlaceContent = Globals |
|
|
8241
|
-
type PlaceItems = Globals |
|
|
8242
|
-
type PlaceSelf = Globals |
|
|
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";
|
|
8243
8284
|
type PointerEvents = Globals | "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all" | "inherit";
|
|
8244
8285
|
type Position = Globals | "static" | "relative" | "absolute" | "sticky" | "fixed";
|
|
8245
|
-
type PositionAnchor = Globals | "auto" | "none"
|
|
8286
|
+
type PositionAnchor = Globals | "auto" | "none";
|
|
8246
8287
|
type PositionArea = Globals | "none" | DataType.PositionArea;
|
|
8247
|
-
type PositionTry = Globals |
|
|
8248
|
-
type PositionTryFallbacks = Globals | "none" |
|
|
8288
|
+
type PositionTry = Globals | "normal" | DataType.TrySize | "none" | DataType.TryTactic | DataType.PositionArea;
|
|
8289
|
+
type PositionTryFallbacks = Globals | "none" | DataType.TryTactic | DataType.PositionArea;
|
|
8249
8290
|
type PositionTryOrder = Globals | "normal" | DataType.TrySize;
|
|
8250
|
-
type PositionVisibility = Globals | "always"
|
|
8291
|
+
type PositionVisibility = Globals | "always";
|
|
8251
8292
|
type PrintColorAdjust = Globals | "economy" | "exact";
|
|
8252
|
-
type Quotes = Globals | "none" | "auto"
|
|
8253
|
-
type R<TLength = DefaultTLength> = Globals | TLength
|
|
8293
|
+
type Quotes = Globals | "none" | "auto";
|
|
8294
|
+
type R<TLength = DefaultTLength> = Globals | TLength;
|
|
8254
8295
|
type ReadingFlow = Globals | "normal" | "source-order" | "flex-visual" | "flex-flow" | "grid-rows" | "grid-columns" | "grid-order";
|
|
8255
|
-
type ReadingOrder = Globals
|
|
8296
|
+
type ReadingOrder = Globals;
|
|
8256
8297
|
type Resize = Globals | "none" | "both" | "horizontal" | "vertical" | "block" | "inline";
|
|
8257
|
-
type Right<TLength = DefaultTLength> = Globals | "auto" | TLength |
|
|
8258
|
-
type Rotate = Globals | "none"
|
|
8298
|
+
type Right<TLength = DefaultTLength> = Globals | "auto" | TLength | "width" | "height" | "block" | "inline" | "self-block" | "self-inline";
|
|
8299
|
+
type Rotate = Globals | "none";
|
|
8259
8300
|
type RowGap<TLength = DefaultTLength> = Globals | "normal" | TLength;
|
|
8260
8301
|
type RubyAlign = Globals | "start" | "center" | "space-between" | "space-around";
|
|
8261
8302
|
type RubyMerge = Globals | "separate" | "collapse" | "auto";
|
|
8262
8303
|
type RubyOverhang = Globals | "auto" | "none";
|
|
8263
|
-
type RubyPosition = Globals |
|
|
8264
|
-
type Rx<TLength = DefaultTLength> = Globals | TLength
|
|
8265
|
-
type Ry<TLength = DefaultTLength> = Globals | TLength
|
|
8266
|
-
type Scale = Globals | "none"
|
|
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";
|
|
8267
8308
|
type ScrollbarColor = Globals | "auto" | DataType.Color;
|
|
8268
|
-
type ScrollbarGutter = Globals | "auto"
|
|
8309
|
+
type ScrollbarGutter = Globals | "auto";
|
|
8269
8310
|
type ScrollbarWidth = Globals | "auto" | "thin" | "none";
|
|
8270
8311
|
type ScrollBehavior = Globals | "auto" | "smooth";
|
|
8271
8312
|
type ScrollInitialTarget = Globals | "none" | "nearest";
|
|
@@ -8281,223 +8322,223 @@ declare namespace Property {
|
|
|
8281
8322
|
type ScrollMarginRight<TLength = DefaultTLength> = Globals | TLength;
|
|
8282
8323
|
type ScrollMarginTop<TLength = DefaultTLength> = Globals | TLength;
|
|
8283
8324
|
type ScrollMarkerGroup = Globals | "none" | "before" | "after";
|
|
8284
|
-
type ScrollPadding<TLength = DefaultTLength> = Globals |
|
|
8285
|
-
type ScrollPaddingBlock<TLength = DefaultTLength> = Globals |
|
|
8325
|
+
type ScrollPadding<TLength = DefaultTLength> = Globals | TLength;
|
|
8326
|
+
type ScrollPaddingBlock<TLength = DefaultTLength> = Globals | TLength;
|
|
8286
8327
|
type ScrollPaddingBlockEnd<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
8287
8328
|
type ScrollPaddingBlockStart<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
8288
8329
|
type ScrollPaddingBottom<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
8289
|
-
type ScrollPaddingInline<TLength = DefaultTLength> = Globals |
|
|
8330
|
+
type ScrollPaddingInline<TLength = DefaultTLength> = Globals | TLength;
|
|
8290
8331
|
type ScrollPaddingInlineEnd<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
8291
8332
|
type ScrollPaddingInlineStart<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
8292
8333
|
type ScrollPaddingLeft<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
8293
8334
|
type ScrollPaddingRight<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
8294
8335
|
type ScrollPaddingTop<TLength = DefaultTLength> = Globals | "auto" | TLength;
|
|
8295
|
-
type ScrollSnapAlign = Globals
|
|
8336
|
+
type ScrollSnapAlign = Globals;
|
|
8296
8337
|
type ScrollSnapCoordinate<TLength = DefaultTLength> = Globals | "none" | DataType.Position<TLength>;
|
|
8297
8338
|
type ScrollSnapDestination<TLength = DefaultTLength> = Globals | DataType.Position<TLength>;
|
|
8298
|
-
type ScrollSnapPointsX = Globals | "none"
|
|
8299
|
-
type ScrollSnapPointsY = Globals | "none"
|
|
8339
|
+
type ScrollSnapPointsX = Globals | "none";
|
|
8340
|
+
type ScrollSnapPointsY = Globals | "none";
|
|
8300
8341
|
type ScrollSnapStop = Globals | "normal" | "always";
|
|
8301
|
-
type ScrollSnapType = Globals | "none"
|
|
8342
|
+
type ScrollSnapType = Globals | "none";
|
|
8302
8343
|
type ScrollSnapTypeX = Globals | "none" | "mandatory" | "proximity";
|
|
8303
8344
|
type ScrollSnapTypeY = Globals | "none" | "mandatory" | "proximity";
|
|
8304
8345
|
type ScrollTargetGroup = Globals | "none" | "auto";
|
|
8305
|
-
type ScrollTimeline = Globals
|
|
8306
|
-
type ScrollTimelineAxis = Globals
|
|
8307
|
-
type ScrollTimelineName = Globals
|
|
8308
|
-
type ShapeImageThreshold = Globals
|
|
8346
|
+
type ScrollTimeline = Globals;
|
|
8347
|
+
type ScrollTimelineAxis = Globals;
|
|
8348
|
+
type ScrollTimelineName = Globals;
|
|
8349
|
+
type ShapeImageThreshold = Globals;
|
|
8309
8350
|
type ShapeMargin<TLength = DefaultTLength> = Globals | TLength;
|
|
8310
|
-
type ShapeOutside = Globals | "none"
|
|
8351
|
+
type ShapeOutside = Globals | "none";
|
|
8311
8352
|
type ShapeRendering = Globals | "auto" | "optimizeSpeed" | "crispEdges" | "geometricPrecision";
|
|
8312
|
-
type SpeakAs = Globals | "normal"
|
|
8353
|
+
type SpeakAs = Globals | "normal";
|
|
8313
8354
|
type StopColor = Globals | DataType.Color;
|
|
8314
|
-
type StopOpacity = Globals
|
|
8355
|
+
type StopOpacity = Globals;
|
|
8315
8356
|
type Stroke = Globals | DataType.Paint;
|
|
8316
8357
|
type StrokeColor = Globals | DataType.Color;
|
|
8317
|
-
type StrokeDasharray<TLength = DefaultTLength> = Globals | "none" |
|
|
8318
|
-
type StrokeDashoffset<TLength = DefaultTLength> = Globals | TLength
|
|
8358
|
+
type StrokeDasharray<TLength = DefaultTLength> = Globals | "none" | TLength;
|
|
8359
|
+
type StrokeDashoffset<TLength = DefaultTLength> = Globals | TLength;
|
|
8319
8360
|
type StrokeLinecap = Globals | "butt" | "round" | "square";
|
|
8320
8361
|
type StrokeLinejoin = Globals | "miter" | "miter-clip" | "round" | "bevel" | "arcs";
|
|
8321
|
-
type StrokeMiterlimit = Globals
|
|
8322
|
-
type StrokeOpacity = Globals
|
|
8323
|
-
type StrokeWidth<TLength = DefaultTLength> = Globals | TLength
|
|
8362
|
+
type StrokeMiterlimit = Globals;
|
|
8363
|
+
type StrokeOpacity = Globals;
|
|
8364
|
+
type StrokeWidth<TLength = DefaultTLength> = Globals | TLength;
|
|
8324
8365
|
type TableLayout = Globals | "auto" | "fixed";
|
|
8325
|
-
type TabSize<TLength = DefaultTLength> = Globals |
|
|
8366
|
+
type TabSize<TLength = DefaultTLength> = Globals | TLength;
|
|
8326
8367
|
type TextAlign = Globals | "start" | "end" | "left" | "right" | "center" | "justify" | "match-parent";
|
|
8327
8368
|
type TextAlignLast = Globals | "auto" | "start" | "end" | "left" | "right" | "center" | "justify";
|
|
8328
8369
|
type TextAnchor = Globals | "start" | "middle" | "end";
|
|
8329
|
-
type TextAutospace = Globals | "normal" | "no-autospace" |
|
|
8330
|
-
type TextBox = Globals | "normal" |
|
|
8331
|
-
type TextBoxEdge = Globals | "auto"
|
|
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";
|
|
8332
8373
|
type TextBoxTrim = Globals | "none" | "trim-start" | "trim-end" | "trim-both";
|
|
8333
|
-
type TextCombineUpright = Globals | "none" | "all"
|
|
8334
|
-
type TextDecoration<TLength = DefaultTLength> = Globals |
|
|
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;
|
|
8335
8376
|
type TextDecorationColor = Globals | DataType.Color;
|
|
8336
8377
|
type TextDecorationInset<TLength = DefaultTLength> = Globals | TLength | "auto";
|
|
8337
|
-
type TextDecorationLine = Globals | "none" |
|
|
8338
|
-
type TextDecorationSkip = Globals | "none"
|
|
8378
|
+
type TextDecorationLine = Globals | "none" | "spelling-error" | "grammar-error";
|
|
8379
|
+
type TextDecorationSkip = Globals | "none";
|
|
8339
8380
|
type TextDecorationSkipInk = Globals | "auto" | "all" | "none";
|
|
8340
8381
|
type TextDecorationStyle = Globals | "solid" | "double" | "dotted" | "dashed" | "wavy";
|
|
8341
|
-
type TextDecorationThickness<TLength = DefaultTLength> = Globals | "auto" | "from-font" | TLength
|
|
8342
|
-
type TextEmphasis = Globals |
|
|
8382
|
+
type TextDecorationThickness<TLength = DefaultTLength> = Globals | "auto" | "from-font" | TLength;
|
|
8383
|
+
type TextEmphasis = Globals | "none" | DataType.Color;
|
|
8343
8384
|
type TextEmphasisColor = Globals | DataType.Color;
|
|
8344
|
-
type TextEmphasisPosition = Globals | "auto"
|
|
8345
|
-
type TextEmphasisStyle = Globals | "none"
|
|
8346
|
-
type TextIndent<TLength = DefaultTLength> = Globals |
|
|
8385
|
+
type TextEmphasisPosition = Globals | "auto";
|
|
8386
|
+
type TextEmphasisStyle = Globals | "none";
|
|
8387
|
+
type TextIndent<TLength = DefaultTLength> = Globals | TLength;
|
|
8347
8388
|
type TextJustify = Globals | "auto" | "inter-character" | "inter-word" | "none";
|
|
8348
8389
|
type TextOrientation = Globals | "mixed" | "upright" | "sideways";
|
|
8349
|
-
type TextOverflow = Globals
|
|
8390
|
+
type TextOverflow = Globals;
|
|
8350
8391
|
type TextRendering = Globals | "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision";
|
|
8351
|
-
type TextShadow<TLength = DefaultTLength> = Globals | "none" |
|
|
8352
|
-
type TextSizeAdjust = Globals | "none" | "auto"
|
|
8392
|
+
type TextShadow<TLength = DefaultTLength> = Globals | "none" | TLength | DataType.Color;
|
|
8393
|
+
type TextSizeAdjust = Globals | "none" | "auto";
|
|
8353
8394
|
type TextSpacingTrim = Globals | "space-all" | "normal" | "space-first" | "trim-start";
|
|
8354
|
-
type TextTransform = Globals | "none" |
|
|
8355
|
-
type TextUnderlineOffset<TLength = DefaultTLength> = Globals | "auto" | TLength
|
|
8356
|
-
type TextUnderlinePosition = Globals | "auto" | "from-font"
|
|
8357
|
-
type TextWrap = Globals |
|
|
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";
|
|
8358
8399
|
type TextWrapMode = Globals | "wrap" | "nowrap";
|
|
8359
8400
|
type TextWrapStyle = Globals | "auto" | "balance" | "stable" | "pretty";
|
|
8360
|
-
type TimelineScope = Globals | "none"
|
|
8361
|
-
type TimelineTrigger<TLength = DefaultTLength> = Globals | "none" |
|
|
8362
|
-
type TimelineTriggerExitRange<TLength = DefaultTLength> = Globals |
|
|
8363
|
-
type TimelineTriggerExitRangeEnd<TLength = DefaultTLength> = Globals |
|
|
8364
|
-
type TimelineTriggerExitRangeStart<TLength = DefaultTLength> = Globals |
|
|
8365
|
-
type TimelineTriggerName = Globals | "none"
|
|
8366
|
-
type TimelineTriggerRange<TLength = DefaultTLength> = Globals |
|
|
8367
|
-
type TimelineTriggerRangeEnd<TLength = DefaultTLength> = Globals |
|
|
8368
|
-
type TimelineTriggerRangeStart<TLength = DefaultTLength> = Globals |
|
|
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;
|
|
8369
8410
|
type TimelineTriggerSource = Globals | DataType.SingleAnimationTimeline;
|
|
8370
|
-
type Top<TLength = DefaultTLength> = Globals | "auto" | TLength |
|
|
8371
|
-
type TouchAction = Globals | "auto" | "none" |
|
|
8372
|
-
type Transform = Globals | "none"
|
|
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";
|
|
8373
8414
|
type TransformBox = Globals | "content-box" | "border-box" | "fill-box" | "stroke-box" | "view-box";
|
|
8374
|
-
type TransformOrigin<TLength = DefaultTLength> = Globals |
|
|
8415
|
+
type TransformOrigin<TLength = DefaultTLength> = Globals | TLength;
|
|
8375
8416
|
type TransformStyle = Globals | "flat" | "preserve-3d";
|
|
8376
|
-
type Transition<TTime = DefaultTTime> = Globals |
|
|
8417
|
+
type Transition<TTime = DefaultTTime> = Globals | TTime | DataType.EasingFunction;
|
|
8377
8418
|
type TransitionBehavior = Globals | "normal" | "allow-discrete";
|
|
8378
8419
|
type TransitionDelay<TTime = DefaultTTime> = Globals | TTime;
|
|
8379
8420
|
type TransitionDuration<TTime = DefaultTTime> = Globals | TTime;
|
|
8380
|
-
type TransitionProperty = Globals | "none" | "all"
|
|
8421
|
+
type TransitionProperty = Globals | "none" | "all";
|
|
8381
8422
|
type TransitionTimingFunction = Globals | DataType.EasingFunction;
|
|
8382
|
-
type Translate<TLength = DefaultTLength> = Globals | "none" |
|
|
8383
|
-
type TriggerScope = Globals | "none" | "all"
|
|
8423
|
+
type Translate<TLength = DefaultTLength> = Globals | "none" | TLength;
|
|
8424
|
+
type TriggerScope = Globals | "none" | "all";
|
|
8384
8425
|
type UnicodeBidi = Globals | "normal" | "embed" | "isolate" | "bidi-override" | "isolate-override" | "plaintext";
|
|
8385
8426
|
type UserSelect = Globals | "auto" | "text" | "none" | "all";
|
|
8386
8427
|
type VectorEffect = Globals | "none" | "non-scaling-stroke" | "non-scaling-size" | "non-rotation" | "fixed-position";
|
|
8387
|
-
type VerticalAlign<TLength = DefaultTLength> = Globals | "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" |
|
|
8388
|
-
type ViewTimeline = Globals
|
|
8389
|
-
type ViewTimelineAxis = Globals
|
|
8390
|
-
type ViewTimelineInset = Globals
|
|
8391
|
-
type ViewTimelineName = Globals
|
|
8392
|
-
type ViewTransitionClass = Globals | "none"
|
|
8393
|
-
type ViewTransitionName = Globals | "none" |
|
|
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";
|
|
8394
8435
|
type Visibility = Globals | "visible" | "hidden" | "collapse";
|
|
8395
|
-
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"
|
|
8396
|
-
type WebkitBorderBefore<TLength = DefaultTLength> = Globals |
|
|
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;
|
|
8397
8438
|
type WebkitBorderBeforeColor = Globals | DataType.Color;
|
|
8398
8439
|
type WebkitBorderBeforeStyle = Globals | DataType.LineStyle;
|
|
8399
8440
|
type WebkitBorderBeforeWidth<TLength = DefaultTLength> = Globals | DataType.LineWidth<TLength>;
|
|
8400
|
-
type WebkitBoxReflect<TLength = DefaultTLength> = Globals |
|
|
8401
|
-
type WebkitLineClamp = Globals | "none"
|
|
8402
|
-
type WebkitMask<TLength = DefaultTLength> = Globals |
|
|
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;
|
|
8403
8444
|
type WebkitMaskAttachment = Globals | DataType.Attachment;
|
|
8404
|
-
type WebkitMaskClip = Globals
|
|
8445
|
+
type WebkitMaskClip = Globals;
|
|
8405
8446
|
type WebkitMaskComposite = Globals | DataType.CompositeStyle;
|
|
8406
|
-
type WebkitMaskImage = Globals | "none"
|
|
8407
|
-
type WebkitMaskOrigin = Globals
|
|
8447
|
+
type WebkitMaskImage = Globals | "none";
|
|
8448
|
+
type WebkitMaskOrigin = Globals;
|
|
8408
8449
|
type WebkitMaskPosition<TLength = DefaultTLength> = Globals | DataType.Position<TLength>;
|
|
8409
|
-
type WebkitMaskPositionX<TLength = DefaultTLength> = Globals |
|
|
8410
|
-
type WebkitMaskPositionY<TLength = DefaultTLength> = Globals |
|
|
8450
|
+
type WebkitMaskPositionX<TLength = DefaultTLength> = Globals | TLength;
|
|
8451
|
+
type WebkitMaskPositionY<TLength = DefaultTLength> = Globals | TLength;
|
|
8411
8452
|
type WebkitMaskRepeat = Globals | DataType.RepeatStyle;
|
|
8412
8453
|
type WebkitMaskRepeatX = Globals | "repeat" | "no-repeat" | "space" | "round";
|
|
8413
8454
|
type WebkitMaskRepeatY = Globals | "repeat" | "no-repeat" | "space" | "round";
|
|
8414
|
-
type WebkitMaskSize<TLength = DefaultTLength> = Globals |
|
|
8455
|
+
type WebkitMaskSize<TLength = DefaultTLength> = Globals | TLength | "cover" | "contain";
|
|
8415
8456
|
type WebkitOverflowScrolling = Globals | "auto" | "touch";
|
|
8416
8457
|
type WebkitTapHighlightColor = Globals | DataType.Color;
|
|
8417
8458
|
type WebkitTextFillColor = Globals | DataType.Color;
|
|
8418
|
-
type WebkitTextStroke<TLength = DefaultTLength> = Globals |
|
|
8459
|
+
type WebkitTextStroke<TLength = DefaultTLength> = Globals | TLength | DataType.Color;
|
|
8419
8460
|
type WebkitTextStrokeColor = Globals | DataType.Color;
|
|
8420
8461
|
type WebkitTextStrokeWidth<TLength = DefaultTLength> = Globals | TLength;
|
|
8421
8462
|
type WebkitTouchCallout = Globals | "default" | "none";
|
|
8422
8463
|
type WebkitUserModify = Globals | "read-only" | "read-write" | "read-write-plaintext-only";
|
|
8423
8464
|
type WebkitUserSelect = Globals | "auto" | "text" | "none" | "all";
|
|
8424
|
-
type WhiteSpace = Globals | "normal" | "pre" | "pre-wrap" | "pre-line" |
|
|
8465
|
+
type WhiteSpace = Globals | "normal" | "pre" | "pre-wrap" | "pre-line" | "collapse" | "preserve" | "preserve-breaks" | "preserve-spaces" | "break-spaces" | "wrap" | "nowrap";
|
|
8425
8466
|
type WhiteSpaceCollapse = Globals | "collapse" | "preserve" | "preserve-breaks" | "preserve-spaces" | "break-spaces";
|
|
8426
|
-
type Widows = Globals
|
|
8427
|
-
type Width<TLength = DefaultTLength> = Globals | "auto" | TLength | "min-content" | "max-content" | "fit-content" |
|
|
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";
|
|
8428
8469
|
type WillChange = Globals | "auto" | DataType.AnimateableFeature;
|
|
8429
8470
|
type WordBreak = Globals | "normal" | "break-all" | "keep-all" | "break-word" | "auto-phrase";
|
|
8430
8471
|
type WordSpacing<TLength = DefaultTLength> = Globals | "normal" | TLength;
|
|
8431
8472
|
type WordWrap = Globals | "normal" | "break-word";
|
|
8432
8473
|
type WritingMode = Globals | "horizontal-tb" | "vertical-rl" | "vertical-lr" | "sideways-rl" | "sideways-lr";
|
|
8433
|
-
type X<TLength = DefaultTLength> = Globals | TLength
|
|
8434
|
-
type Y<TLength = DefaultTLength> = Globals | TLength
|
|
8435
|
-
type ZIndex = Globals | "auto"
|
|
8436
|
-
type Zoom = Globals | "normal" | "reset"
|
|
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";
|
|
8437
8478
|
}
|
|
8438
8479
|
declare namespace DataType {
|
|
8439
8480
|
type AbsoluteSize = "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large";
|
|
8440
|
-
type AnimateableFeature = "contents" | "scroll-position"
|
|
8481
|
+
type AnimateableFeature = "contents" | "scroll-position";
|
|
8441
8482
|
type Attachment = "fixed" | "local" | "scroll";
|
|
8442
|
-
type Autospace = "ideograph-alpha" | "ideograph-numeric" | "insert" | "no-autospace" | "punctuation" | "replace"
|
|
8483
|
+
type Autospace = "ideograph-alpha" | "ideograph-numeric" | "insert" | "no-autospace" | "punctuation" | "replace";
|
|
8443
8484
|
type BgClip = VisualBox | "border-area" | "text";
|
|
8444
|
-
type BgLayer<TLength> = BgPosition<TLength> | RepeatStyle | Attachment | VisualBox | "none"
|
|
8445
|
-
type BgPosition<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top"
|
|
8446
|
-
type BgSize<TLength> = TLength | "auto" | "contain" | "cover"
|
|
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";
|
|
8447
8488
|
type BlendMode = "color" | "color-burn" | "color-dodge" | "darken" | "difference" | "exclusion" | "hard-light" | "hue" | "lighten" | "luminosity" | "multiply" | "normal" | "overlay" | "saturation" | "screen" | "soft-light";
|
|
8448
|
-
type Color = ColorBase | SystemColor | DeprecatedSystemColor | "currentColor"
|
|
8449
|
-
type ColorBase = NamedColor | "transparent"
|
|
8489
|
+
type Color = ColorBase | SystemColor | DeprecatedSystemColor | "currentColor";
|
|
8490
|
+
type ColorBase = NamedColor | "transparent";
|
|
8450
8491
|
type CompatAuto = "button" | "checkbox" | "listbox" | "menulist" | "meter" | "progress-bar" | "radio" | "searchfield" | "textarea";
|
|
8451
8492
|
type CompositeStyle = "clear" | "copy" | "destination-atop" | "destination-in" | "destination-out" | "destination-over" | "source-atop" | "source-in" | "source-out" | "source-over" | "xor";
|
|
8452
8493
|
type CompositingOperator = "add" | "exclude" | "intersect" | "subtract";
|
|
8453
8494
|
type ContentDistribution = "space-around" | "space-between" | "space-evenly" | "stretch";
|
|
8454
8495
|
type ContentPosition = "center" | "end" | "flex-end" | "flex-start" | "start";
|
|
8455
|
-
type CubicBezierEasingFunction = "ease" | "ease-in" | "ease-in-out" | "ease-out"
|
|
8496
|
+
type CubicBezierEasingFunction = "ease" | "ease-in" | "ease-in-out" | "ease-out";
|
|
8456
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";
|
|
8457
|
-
type Dasharray<TLength> = TLength
|
|
8498
|
+
type Dasharray<TLength> = TLength;
|
|
8458
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";
|
|
8459
8500
|
type DisplayInside = "-ms-flexbox" | "-ms-grid" | "-webkit-flex" | "flex" | "flow" | "flow-root" | "grid" | "ruby" | "table";
|
|
8460
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";
|
|
8461
8502
|
type DisplayLegacy = "-ms-inline-flexbox" | "-ms-inline-grid" | "-webkit-inline-flex" | "inline-block" | "inline-flex" | "inline-grid" | "inline-list-item" | "inline-table";
|
|
8462
8503
|
type DisplayOutside = "block" | "inline" | "run-in";
|
|
8463
|
-
type EasingFunction = CubicBezierEasingFunction | StepEasingFunction | "linear"
|
|
8504
|
+
type EasingFunction = CubicBezierEasingFunction | StepEasingFunction | "linear";
|
|
8464
8505
|
type EastAsianVariantValues = "jis04" | "jis78" | "jis83" | "jis90" | "simplified" | "traditional";
|
|
8465
|
-
type FinalBgLayer<TLength> = BgPosition<TLength> | RepeatStyle | Attachment | VisualBox | Color | "none"
|
|
8466
|
-
type FontStretchAbsolute = "condensed" | "expanded" | "extra-condensed" | "extra-expanded" | "normal" | "semi-condensed" | "semi-expanded" | "ultra-condensed" | "ultra-expanded"
|
|
8467
|
-
type FontWeightAbsolute = "bold" | "normal"
|
|
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";
|
|
8468
8509
|
type GenericComplete = "-apple-system" | "cursive" | "fantasy" | "math" | "monospace" | "sans-serif" | "serif" | "system-ui";
|
|
8469
8510
|
type GenericFamily = GenericComplete | GenericIncomplete | "emoji" | "fangsong";
|
|
8470
8511
|
type GenericIncomplete = "ui-monospace" | "ui-rounded" | "ui-sans-serif" | "ui-serif";
|
|
8471
8512
|
type GeometryBox = VisualBox | "fill-box" | "margin-box" | "stroke-box" | "view-box";
|
|
8472
|
-
type GridLine = "auto"
|
|
8513
|
+
type GridLine = "auto";
|
|
8473
8514
|
type LineStyle = "dashed" | "dotted" | "double" | "groove" | "hidden" | "inset" | "none" | "outset" | "ridge" | "solid";
|
|
8474
8515
|
type LineWidth<TLength> = TLength | "medium" | "thick" | "thin";
|
|
8475
8516
|
type MaskingMode = "alpha" | "luminance" | "match-source";
|
|
8476
|
-
type MaskLayer<TLength> = Position<TLength> | RepeatStyle | GeometryBox | CompositingOperator | MaskingMode | "no-clip" | "none"
|
|
8517
|
+
type MaskLayer<TLength> = Position<TLength> | RepeatStyle | GeometryBox | CompositingOperator | MaskingMode | "no-clip" | "none";
|
|
8477
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";
|
|
8478
8519
|
type OutlineLineStyle = "dashed" | "dotted" | "double" | "groove" | "inset" | "none" | "outset" | "ridge" | "solid";
|
|
8479
8520
|
type PageSize = "A3" | "A4" | "A5" | "B4" | "B5" | "JIS-B4" | "JIS-B5" | "ledger" | "legal" | "letter";
|
|
8480
|
-
type Paint = Color | "context-fill" | "context-stroke" | "none"
|
|
8521
|
+
type Paint = Color | "context-fill" | "context-stroke" | "none";
|
|
8481
8522
|
type PaintBox = VisualBox | "fill-box" | "stroke-box";
|
|
8482
|
-
type Position<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top"
|
|
8483
|
-
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"
|
|
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";
|
|
8484
8525
|
type Quote = "close-quote" | "no-close-quote" | "no-open-quote" | "open-quote";
|
|
8485
|
-
type RepeatStyle = "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space"
|
|
8526
|
+
type RepeatStyle = "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space";
|
|
8486
8527
|
type SelfPosition = "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start";
|
|
8487
|
-
type SingleAnimation<TTime> = EasingFunction | SingleAnimationDirection | SingleAnimationFillMode | SingleAnimationTimeline | TTime | "auto" | "infinite" | "none" | "paused" | "running"
|
|
8528
|
+
type SingleAnimation<TTime> = EasingFunction | SingleAnimationDirection | SingleAnimationFillMode | SingleAnimationTimeline | TTime | "auto" | "infinite" | "none" | "paused" | "running";
|
|
8488
8529
|
type SingleAnimationComposition = "accumulate" | "add" | "replace";
|
|
8489
8530
|
type SingleAnimationDirection = "alternate" | "alternate-reverse" | "normal" | "reverse";
|
|
8490
8531
|
type SingleAnimationFillMode = "backwards" | "both" | "forwards" | "none";
|
|
8491
|
-
type SingleAnimationTimeline = "auto" | "none"
|
|
8492
|
-
type SingleTransition<TTime> = EasingFunction | TTime | "all" | "allow-discrete" | "none" | "normal"
|
|
8493
|
-
type StepEasingFunction = "step-end" | "step-start"
|
|
8532
|
+
type SingleAnimationTimeline = "auto" | "none";
|
|
8533
|
+
type SingleTransition<TTime> = EasingFunction | TTime | "all" | "allow-discrete" | "none" | "normal";
|
|
8534
|
+
type StepEasingFunction = "step-end" | "step-start";
|
|
8494
8535
|
type SystemColor = "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText";
|
|
8495
8536
|
type SystemFamilyName = "caption" | "icon" | "menu" | "message-box" | "small-caption" | "status-bar";
|
|
8496
|
-
type TextEdge = "cap" | "ex" | "ideographic" | "ideographic-ink" | "text"
|
|
8537
|
+
type TextEdge = "cap" | "ex" | "ideographic" | "ideographic-ink" | "text";
|
|
8497
8538
|
type TimelineRangeName = "contain" | "cover" | "entry" | "entry-crossing" | "exit" | "exit-crossing";
|
|
8498
|
-
type TrackBreadth<TLength> = TLength | "auto" | "max-content" | "min-content"
|
|
8539
|
+
type TrackBreadth<TLength> = TLength | "auto" | "max-content" | "min-content";
|
|
8499
8540
|
type TrySize = "most-block-size" | "most-height" | "most-inline-size" | "most-width";
|
|
8500
|
-
type TryTactic = "flip-block" | "flip-inline" | "flip-start"
|
|
8541
|
+
type TryTactic = "flip-block" | "flip-inline" | "flip-start";
|
|
8501
8542
|
type VisualBox = "border-box" | "content-box" | "padding-box";
|
|
8502
8543
|
}
|
|
8503
8544
|
//#endregion
|
|
@@ -8506,15 +8547,16 @@ interface CSSVariables {
|
|
|
8506
8547
|
[K: (`--${string}` & {})]: UnionString;
|
|
8507
8548
|
}
|
|
8508
8549
|
interface CSSProperties extends Properties$1, PropertiesHyphen, CSSVariables {}
|
|
8509
|
-
type CSSProperty = keyof CSSProperties
|
|
8550
|
+
type CSSProperty = Extract<keyof CSSProperties, string>;
|
|
8510
8551
|
type PropertyValue<T> = T | [value: T, fallback: T[]] | Nullish;
|
|
8511
|
-
type _CssPropertiesValue =
|
|
8552
|
+
type _CssPropertiesValue = ResolvedAutocompleteCSSPropertyValue;
|
|
8512
8553
|
type _CssPropertiesValueWildcard = GetValue<_CssPropertiesValue, '*'>;
|
|
8513
|
-
type
|
|
8514
|
-
type
|
|
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>> };
|
|
8515
8557
|
type Properties_CSS_Vars = { [K in `--${string}` & {}]?: PropertyValue<UnionString | _CssPropertiesValueWildcard> };
|
|
8516
|
-
type Properties_ExtraCSS = { [Key in
|
|
8517
|
-
type Properties_Extra = { [Key in
|
|
8558
|
+
type Properties_ExtraCSS = { [Key in ResolvedExtraCSSProperty]?: CSSPropertyInputValue<Key, Key | ToKebab<Key> | FromKebab<Key>> };
|
|
8559
|
+
type Properties_Extra = { [Key in ResolvedExtraProperty]?: GetValue<ResolvedAutocompletePropertyValue, Key> };
|
|
8518
8560
|
interface Properties extends Properties_CSS_Camel, Properties_CSS_Hyphen, Properties_CSS_Vars, Properties_ExtraCSS, Properties_Extra {}
|
|
8519
8561
|
type CSSPseudos = `${'$'}${Pseudos}`;
|
|
8520
8562
|
type CSSSelector = AtRules.Nested | CSSPseudos;
|
|
@@ -8533,13 +8575,12 @@ interface ExtractedStyleContent {
|
|
|
8533
8575
|
selector: string[];
|
|
8534
8576
|
property: string;
|
|
8535
8577
|
value: string[] | Nullish;
|
|
8536
|
-
layer?: string;
|
|
8537
8578
|
}
|
|
8538
8579
|
interface StyleContent {
|
|
8539
8580
|
selector: string[];
|
|
8540
8581
|
property: string;
|
|
8541
8582
|
value: string[];
|
|
8542
|
-
|
|
8583
|
+
orderSensitiveTo?: string[];
|
|
8543
8584
|
}
|
|
8544
8585
|
interface AtomicStyle {
|
|
8545
8586
|
id: string;
|
|
@@ -8556,10 +8597,14 @@ type CSSStyleBlocks = Map<string, CSSStyleBlockBody>;
|
|
|
8556
8597
|
//#endregion
|
|
8557
8598
|
//#region src/internal/types/resolved.d.ts
|
|
8558
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>;
|
|
8559
8604
|
type ResolvedLayerName = IsNever<ResolvedAutocomplete['Layer']> extends true ? UnionString : ResolvedAutocomplete['Layer'];
|
|
8560
8605
|
type ResolvedSelector = ResolveFrom<PikaAugment, 'Selector', string, string>;
|
|
8561
8606
|
type ResolvedProperties = ResolveFrom<PikaAugment, 'Properties', any, InternalProperties>;
|
|
8562
|
-
type ResolvedCSSProperties = Omit<ResolvedProperties,
|
|
8607
|
+
type ResolvedCSSProperties = Omit<ResolvedProperties, ResolvedExtraProperty>;
|
|
8563
8608
|
type ResolvedStyleDefinition = ResolveFrom<PikaAugment, 'StyleDefinition', any, InternalStyleDefinition>;
|
|
8564
8609
|
type ResolvedStyleItem = ResolveFrom<PikaAugment, 'StyleItem', any, InternalStyleItem>;
|
|
8565
8610
|
//#endregion
|
|
@@ -8571,6 +8616,9 @@ interface ResolvedPreflight {
|
|
|
8571
8616
|
id?: string;
|
|
8572
8617
|
fn: PreflightFn;
|
|
8573
8618
|
}
|
|
8619
|
+
/**
|
|
8620
|
+
* Wrap a preflight with a stable identifier so it can be distinguished or replaced after resolution.
|
|
8621
|
+
*/
|
|
8574
8622
|
interface WithId<T> {
|
|
8575
8623
|
id: string;
|
|
8576
8624
|
preflight: T;
|
|
@@ -8582,12 +8630,13 @@ interface WithLayer<T> {
|
|
|
8582
8630
|
}
|
|
8583
8631
|
type MaybeWithLayer<T> = WithLayer<T> | T;
|
|
8584
8632
|
/**
|
|
8585
|
-
* Preflight can be a string, object, function, or a
|
|
8633
|
+
* Preflight can be a string, object, function, or a wrapper-enhanced variant.
|
|
8586
8634
|
*
|
|
8587
8635
|
* 1. A `string` is a static preflight style injected verbatim.
|
|
8588
8636
|
* 2. A `PreflightDefinition` is a JS object describing CSS rules.
|
|
8589
8637
|
* 3. A `PreflightFn` is a dynamic preflight that receives the engine instance.
|
|
8590
|
-
* 4. A `
|
|
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`.
|
|
8591
8640
|
*/
|
|
8592
8641
|
type Preflight = MaybeWithLayer<MaybeWithId<string | PreflightDefinition | PreflightFn>>;
|
|
8593
8642
|
//#endregion
|
|
@@ -8610,11 +8659,11 @@ interface EngineConfig$1 {
|
|
|
8610
8659
|
/**
|
|
8611
8660
|
* Set the prefix for generated atomic style id.
|
|
8612
8661
|
*
|
|
8613
|
-
* @default ''
|
|
8662
|
+
* @default 'pk-'
|
|
8614
8663
|
* @example
|
|
8615
8664
|
* ```ts
|
|
8616
8665
|
* {
|
|
8617
|
-
* prefix: '
|
|
8666
|
+
* prefix: 'pk-' // Generated atomic id will be 'pk-xxx'
|
|
8618
8667
|
* }
|
|
8619
8668
|
* ```
|
|
8620
8669
|
*/
|
|
@@ -8651,6 +8700,20 @@ interface EngineConfig$1 {
|
|
|
8651
8700
|
* ```
|
|
8652
8701
|
*/
|
|
8653
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[];
|
|
8654
8717
|
/**
|
|
8655
8718
|
* Configure CSS @layer order. Keys are layer names, values are order numbers (lower = earlier).
|
|
8656
8719
|
* Merged on top of the default layers `{ preflights: 1, utilities: 10 }`, so any keys not
|
|
@@ -8666,17 +8729,40 @@ interface EngineConfig$1 {
|
|
|
8666
8729
|
*/
|
|
8667
8730
|
layers?: Record<string, number>;
|
|
8668
8731
|
/**
|
|
8669
|
-
* The layer name
|
|
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.
|
|
8670
8734
|
*
|
|
8671
8735
|
* @default 'preflights'
|
|
8672
8736
|
*/
|
|
8673
8737
|
defaultPreflightsLayer?: string;
|
|
8674
8738
|
/**
|
|
8675
|
-
* The layer
|
|
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.
|
|
8676
8742
|
*
|
|
8677
8743
|
* @default 'utilities'
|
|
8678
8744
|
*/
|
|
8679
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;
|
|
8680
8766
|
}
|
|
8681
8767
|
interface ResolvedEngineConfig {
|
|
8682
8768
|
rawConfig: EngineConfig$1;
|
|
@@ -8684,6 +8770,7 @@ interface ResolvedEngineConfig {
|
|
|
8684
8770
|
defaultSelector: string;
|
|
8685
8771
|
plugins: EnginePlugin[];
|
|
8686
8772
|
preflights: ResolvedPreflight[];
|
|
8773
|
+
cssImports: string[];
|
|
8687
8774
|
autocomplete: ResolvedAutocompleteConfig;
|
|
8688
8775
|
/** Always contains at least the default layers (`preflights` and `utilities`). */
|
|
8689
8776
|
layers: Record<string, number>;
|
|
@@ -8779,12 +8866,7 @@ declare const log: {
|
|
|
8779
8866
|
setWarnFn: (fn: (prefix: string, ...args: unknown[]) => void) => void;
|
|
8780
8867
|
setErrorFn: (fn: (prefix: string, ...args: unknown[]) => void) => void;
|
|
8781
8868
|
};
|
|
8782
|
-
declare function
|
|
8783
|
-
declare function appendAutocompleteStyleItemStrings(config: Pick<ResolvedEngineConfig, 'autocomplete'>, ...styleItemStrings: string[]): void;
|
|
8784
|
-
declare function appendAutocompleteExtraProperties(config: Pick<ResolvedEngineConfig, 'autocomplete'>, ...properties: string[]): void;
|
|
8785
|
-
declare function appendAutocompleteExtraCssProperties(config: Pick<ResolvedEngineConfig, 'autocomplete'>, ...properties: string[]): void;
|
|
8786
|
-
declare function appendAutocompletePropertyValues(config: Pick<ResolvedEngineConfig, 'autocomplete'>, property: string, ...tsTypes: string[]): void;
|
|
8787
|
-
declare function appendAutocompleteCssPropertyValues(config: Pick<ResolvedEngineConfig, 'autocomplete'>, property: string, ...values: string[]): void;
|
|
8869
|
+
declare function appendAutocomplete(config: Pick<ResolvedEngineConfig, 'autocomplete'>, contribution: AutocompleteContribution | AutocompleteConfig): boolean;
|
|
8788
8870
|
declare function renderCSSStyleBlocks(blocks: CSSStyleBlocks, isFormatted: boolean, depth?: number): string;
|
|
8789
8871
|
//#endregion
|
|
8790
8872
|
//#region src/index.d.ts
|
|
@@ -8796,4 +8878,4 @@ declare function defineSelector<const T extends Selector>(selector: T): T;
|
|
|
8796
8878
|
declare function defineShortcut<const T extends Shortcut>(shortcut: T): T;
|
|
8797
8879
|
declare function defineVariables<const T extends VariablesDefinition>(variables: T): T;
|
|
8798
8880
|
//#endregion
|
|
8799
|
-
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,
|
|
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 };
|