inferred-types 0.55.11 → 0.55.13

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.
@@ -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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inferred-types",
3
- "version": "0.55.11",
3
+ "version": "0.55.13",
4
4
  "description": "Functions which provide useful type inference on TS projects",
5
5
  "license": "MIT",
6
6
  "author": "Ken Snyder<ken@ken.net>",