@omnia/fx-models 8.0.285-dev → 8.0.286-dev

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.
@@ -1,10 +1,10 @@
1
- export interface Spacing {
1
+ export type Spacing = {
2
2
  scale?: "l" | "s";
3
3
  top?: SpacingValue;
4
4
  right?: SpacingValue;
5
5
  bottom?: SpacingValue;
6
6
  left?: SpacingValue;
7
- }
7
+ };
8
8
  export interface SpacingDefinition {
9
9
  name: string;
10
10
  xs: number;
@@ -13,7 +13,7 @@ export interface SpacingDefinition {
13
13
  l: number;
14
14
  xl: number;
15
15
  }
16
- export type SpacingValue = "xs" | "s" | "m" | "l" | "xl" | number;
16
+ export type SpacingValue = "xs" | "s" | "m" | "l" | "xl" | "l:xs" | "l:s" | "l:m" | "l:l" | "l:xl" | "s:xs" | "s:s" | "s:m" | "s:l" | "s:xl" | number;
17
17
  export declare enum SpacingTypes {
18
18
  xs = "xs",
19
19
  s = "s",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.285-dev",
4
+ "version": "8.0.286-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"