@omnia/fx-models 8.0.188-dev → 8.0.190-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.
@@ -9,7 +9,6 @@ export interface Blueprints {
9
9
  name?: string;
10
10
  }
11
11
  export type BlueprintVariant = "primary" | "secondary" | "variant1" | "variant2" | "variant3";
12
- export type ButtonBlueprintType = "text" | "icon";
13
12
  export interface ChromeBlueprints extends Blueprints, BlueprintsReference {
14
13
  primary: ChromeBlueprint;
15
14
  variant1?: ChromeBlueprint;
@@ -45,7 +44,6 @@ export interface ChromeBlueprint {
45
44
  spacing?: Spacing;
46
45
  };
47
46
  }
48
- export type ButtonTypes = "primary" | "basic" | "accent1" | "warn" | "link" | "variant1" | "variant2" | "variant3" | "variant4";
49
47
  export interface ComponentBlueprints extends Blueprints, BlueprintsReference {
50
48
  buttons?: ButtonBlueprints;
51
49
  tabs?: TabsBlueprints;
@@ -80,6 +78,12 @@ export interface IconBlueprints extends Blueprints {
80
78
  l?: IconBlueprint;
81
79
  xl?: IconBlueprint;
82
80
  }
81
+ export type ButtonTypes = "primary" | "basic" | "accent1" | "warn" | "link" | "variant1" | "variant2" | "variant3" | "variant4";
82
+ export type ButtonBlueprintType = "text" | "icon";
83
+ export interface ButtonBlueprintVariant {
84
+ type: ButtonTypes;
85
+ category: ButtonBlueprintType;
86
+ }
83
87
  export interface ButtonBlueprint extends Blueprint {
84
88
  padding?: Spacing;
85
89
  background?: BackgroundDefinition;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.188-dev",
4
+ "version": "8.0.190-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"