inferred-types 0.55.11 → 0.55.12
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.
|
@@ -9799,6 +9799,8 @@ interface CssAlignProperties$1 {
|
|
|
9799
9799
|
"align-items"?: CssAlignItems$1;
|
|
9800
9800
|
/** [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) */
|
|
9801
9801
|
"align-self"?: CssAlignSelf$1;
|
|
9802
|
+
/** [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/vertical-align) */
|
|
9803
|
+
"vertical-align"?: "baseline" | "top" | "middle" | "bottom" | "sub" | "text-top";
|
|
9802
9804
|
}
|
|
9803
9805
|
|
|
9804
9806
|
type Cascade$1<T extends readonly string[], TResult extends string = ""> = [] extends T ? TResult : Cascade$1<AfterFirst$1<T>, `${TResult}${First$1<T> | ""}`>;
|
|
@@ -10810,7 +10812,9 @@ type CssDefinition$1 = {
|
|
|
10810
10812
|
"z-index"?: Suggest$1<`${number}` | "auto" | CssGlobal$1>;
|
|
10811
10813
|
/** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/zoom) */
|
|
10812
10814
|
"zoom"?: Suggest$1<`${number}` | `${number}%` | "normal" | "reset" | CssGlobal$1>;
|
|
10813
|
-
} & CssBorderProperties$1 & CssBackgroundProperties$1 & CssAbsolutionPositioningProperties$1 & CssOffsetProperties$1 & CssBreakProperties$1 & CssBoxProperties$1 & CssTextProperties$1 & CssStrokeProperties$1 & CssJustifyProperties$1 & CssAlignProperties$1 & CssPlaceProperties$1 & CssAnimationProperties$1 & CssMarginProperties$1 & CssPaddingProperties$1 & CssOutlineProperties$1 & CssOverflowProperties$1 & CssOffsetProperties$1 & CssTransformProperties$1 & CssFontProperties$1
|
|
10815
|
+
} & CssBorderProperties$1 & CssBackgroundProperties$1 & CssAbsolutionPositioningProperties$1 & CssOffsetProperties$1 & CssBreakProperties$1 & CssBoxProperties$1 & CssTextProperties$1 & CssStrokeProperties$1 & CssJustifyProperties$1 & CssAlignProperties$1 & CssPlaceProperties$1 & CssAnimationProperties$1 & CssMarginProperties$1 & CssPaddingProperties$1 & CssOutlineProperties$1 & CssOverflowProperties$1 & CssOffsetProperties$1 & CssTransformProperties$1 & CssFontProperties$1 & {
|
|
10816
|
+
[key: string]: string;
|
|
10817
|
+
};
|
|
10814
10818
|
|
|
10815
10819
|
type CssFontFamily$1 = `"${string}"` | "serif" | "san-serif" | "monospace" | "cursive" | "fantasy" | "system-ui" | "ui-serif" | "ui-sans-serif" | "ui-monospace" | "ui-rounded" | "emoji" | "math" | "fansong";
|
|
10816
10820
|
type CssFontFeatureSetting$1 = "normal" | "liga" | "tnum" | "smcp";
|
|
@@ -27354,6 +27358,8 @@ interface CssAlignProperties {
|
|
|
27354
27358
|
"align-items"?: CssAlignItems;
|
|
27355
27359
|
/** [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) */
|
|
27356
27360
|
"align-self"?: CssAlignSelf;
|
|
27361
|
+
/** [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/vertical-align) */
|
|
27362
|
+
"vertical-align"?: "baseline" | "top" | "middle" | "bottom" | "sub" | "text-top";
|
|
27357
27363
|
}
|
|
27358
27364
|
|
|
27359
27365
|
type Cascade<T extends readonly string[], TResult extends string = ""> = [] extends T ? TResult : Cascade<AfterFirst<T>, `${TResult}${First<T> | ""}`>;
|
|
@@ -28506,7 +28512,9 @@ type CssDefinition = {
|
|
|
28506
28512
|
"z-index"?: Suggest<`${number}` | "auto" | CssGlobal>;
|
|
28507
28513
|
/** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/zoom) */
|
|
28508
28514
|
"zoom"?: Suggest<`${number}` | `${number}%` | "normal" | "reset" | CssGlobal>;
|
|
28509
|
-
} & CssBorderProperties & CssBackgroundProperties & CssAbsolutionPositioningProperties & CssOffsetProperties & CssBreakProperties & CssBoxProperties & CssTextProperties & CssStrokeProperties & CssJustifyProperties & CssAlignProperties & CssPlaceProperties & CssAnimationProperties & CssMarginProperties & CssPaddingProperties & CssOutlineProperties & CssOverflowProperties & CssOffsetProperties & CssTransformProperties & CssFontProperties
|
|
28515
|
+
} & CssBorderProperties & CssBackgroundProperties & CssAbsolutionPositioningProperties & CssOffsetProperties & CssBreakProperties & CssBoxProperties & CssTextProperties & CssStrokeProperties & CssJustifyProperties & CssAlignProperties & CssPlaceProperties & CssAnimationProperties & CssMarginProperties & CssPaddingProperties & CssOutlineProperties & CssOverflowProperties & CssOffsetProperties & CssTransformProperties & CssFontProperties & {
|
|
28516
|
+
[key: string]: string;
|
|
28517
|
+
};
|
|
28510
28518
|
|
|
28511
28519
|
type CssFontFamily = `"${string}"` | "serif" | "san-serif" | "monospace" | "cursive" | "fantasy" | "system-ui" | "ui-serif" | "ui-sans-serif" | "ui-monospace" | "ui-rounded" | "emoji" | "math" | "fansong";
|
|
28512
28520
|
type CssFontFeatureSetting = "normal" | "liga" | "tnum" | "smcp";
|
|
@@ -5704,6 +5704,8 @@ interface CssAlignProperties {
|
|
|
5704
5704
|
"align-items"?: CssAlignItems;
|
|
5705
5705
|
/** [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) */
|
|
5706
5706
|
"align-self"?: CssAlignSelf;
|
|
5707
|
+
/** [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/vertical-align) */
|
|
5708
|
+
"vertical-align"?: "baseline" | "top" | "middle" | "bottom" | "sub" | "text-top";
|
|
5707
5709
|
}
|
|
5708
5710
|
|
|
5709
5711
|
type Cascade<T extends readonly string[], TResult extends string = ""> = [] extends T ? TResult : Cascade<AfterFirst<T>, `${TResult}${First<T> | ""}`>;
|
|
@@ -6715,7 +6717,9 @@ type CssDefinition = {
|
|
|
6715
6717
|
"z-index"?: Suggest<`${number}` | "auto" | CssGlobal>;
|
|
6716
6718
|
/** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/zoom) */
|
|
6717
6719
|
"zoom"?: Suggest<`${number}` | `${number}%` | "normal" | "reset" | CssGlobal>;
|
|
6718
|
-
} & CssBorderProperties & CssBackgroundProperties & CssAbsolutionPositioningProperties & CssOffsetProperties & CssBreakProperties & CssBoxProperties & CssTextProperties & CssStrokeProperties & CssJustifyProperties & CssAlignProperties & CssPlaceProperties & CssAnimationProperties & CssMarginProperties & CssPaddingProperties & CssOutlineProperties & CssOverflowProperties & CssOffsetProperties & CssTransformProperties & CssFontProperties
|
|
6720
|
+
} & CssBorderProperties & CssBackgroundProperties & CssAbsolutionPositioningProperties & CssOffsetProperties & CssBreakProperties & CssBoxProperties & CssTextProperties & CssStrokeProperties & CssJustifyProperties & CssAlignProperties & CssPlaceProperties & CssAnimationProperties & CssMarginProperties & CssPaddingProperties & CssOutlineProperties & CssOverflowProperties & CssOffsetProperties & CssTransformProperties & CssFontProperties & {
|
|
6721
|
+
[key: string]: string;
|
|
6722
|
+
};
|
|
6719
6723
|
|
|
6720
6724
|
type CssFontFamily = `"${string}"` | "serif" | "san-serif" | "monospace" | "cursive" | "fantasy" | "system-ui" | "ui-serif" | "ui-sans-serif" | "ui-monospace" | "ui-rounded" | "emoji" | "math" | "fansong";
|
|
6721
6725
|
type CssFontFeatureSetting = "normal" | "liga" | "tnum" | "smcp";
|
|
@@ -7635,6 +7635,8 @@ interface CssAlignProperties {
|
|
|
7635
7635
|
"align-items"?: CssAlignItems;
|
|
7636
7636
|
/** [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) */
|
|
7637
7637
|
"align-self"?: CssAlignSelf;
|
|
7638
|
+
/** [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/vertical-align) */
|
|
7639
|
+
"vertical-align"?: "baseline" | "top" | "middle" | "bottom" | "sub" | "text-top";
|
|
7638
7640
|
}
|
|
7639
7641
|
|
|
7640
7642
|
type Cascade<T extends readonly string[], TResult extends string = ""> = [] extends T ? TResult : Cascade<AfterFirst<T>, `${TResult}${First<T> | ""}`>;
|
|
@@ -8787,7 +8789,9 @@ type CssDefinition = {
|
|
|
8787
8789
|
"z-index"?: Suggest<`${number}` | "auto" | CssGlobal>;
|
|
8788
8790
|
/** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/zoom) */
|
|
8789
8791
|
"zoom"?: Suggest<`${number}` | `${number}%` | "normal" | "reset" | CssGlobal>;
|
|
8790
|
-
} & CssBorderProperties & CssBackgroundProperties & CssAbsolutionPositioningProperties & CssOffsetProperties & CssBreakProperties & CssBoxProperties & CssTextProperties & CssStrokeProperties & CssJustifyProperties & CssAlignProperties & CssPlaceProperties & CssAnimationProperties & CssMarginProperties & CssPaddingProperties & CssOutlineProperties & CssOverflowProperties & CssOffsetProperties & CssTransformProperties & CssFontProperties
|
|
8792
|
+
} & CssBorderProperties & CssBackgroundProperties & CssAbsolutionPositioningProperties & CssOffsetProperties & CssBreakProperties & CssBoxProperties & CssTextProperties & CssStrokeProperties & CssJustifyProperties & CssAlignProperties & CssPlaceProperties & CssAnimationProperties & CssMarginProperties & CssPaddingProperties & CssOutlineProperties & CssOverflowProperties & CssOffsetProperties & CssTransformProperties & CssFontProperties & {
|
|
8793
|
+
[key: string]: string;
|
|
8794
|
+
};
|
|
8791
8795
|
|
|
8792
8796
|
type CssFontFamily = `"${string}"` | "serif" | "san-serif" | "monospace" | "cursive" | "fantasy" | "system-ui" | "ui-serif" | "ui-sans-serif" | "ui-monospace" | "ui-rounded" | "emoji" | "math" | "fansong";
|
|
8793
8797
|
type CssFontFeatureSetting = "normal" | "liga" | "tnum" | "smcp";
|