@otl-core/cms-types 1.1.31 → 1.1.33

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.cts CHANGED
@@ -440,6 +440,8 @@ interface Font {
440
440
  source: "google" | "custom";
441
441
  variants: string[];
442
442
  subsets?: string[];
443
+ /** CSS font-stretch keyword (e.g. "condensed", "expanded"). Omitted or "normal" for normal-width fonts. */
444
+ stretch?: string;
443
445
  files?: Record<string, string>;
444
446
  }
445
447
  /**
package/dist/index.d.ts CHANGED
@@ -440,6 +440,8 @@ interface Font {
440
440
  source: "google" | "custom";
441
441
  variants: string[];
442
442
  subsets?: string[];
443
+ /** CSS font-stretch keyword (e.g. "condensed", "expanded"). Omitted or "normal" for normal-width fonts. */
444
+ stretch?: string;
443
445
  files?: Record<string, string>;
444
446
  }
445
447
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otl-core/cms-types",
3
- "version": "1.1.31",
3
+ "version": "1.1.33",
4
4
  "type": "module",
5
5
  "description": "Shared TypeScript types for OTL CMS",
6
6
  "main": "./dist/index.cjs",