@omnia/fx-models 8.0.412-dev → 8.0.413-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,6 +1,6 @@
1
1
  import { BackgroundDefinition, BlueprintsReference, ColorSchemaType, ColorValue, TextFillDefinitionValue } from "./ThemeDefinition";
2
2
  import { SpacingDefinition, Spacing, SpacingValue } from "./Spacing";
3
- import { TypographyFontDefinition, TextStyleValue } from "./Typography";
3
+ import { TypographyFontDefinition, TextStyleValue, ThemedTextStyleValue } from "./Typography";
4
4
  import { ThemeBase } from "./ThemeBase";
5
5
  import { VelcronRendererResolverReference } from "../velcron";
6
6
  export interface BlueprintStrategy {
@@ -117,13 +117,12 @@ export interface ButtonBlueprints extends Blueprints {
117
117
  close?: ButtonBlueprint;
118
118
  } & VariantBlueprints<ButtonBlueprint>;
119
119
  icon?: {
120
- primary?: ButtonBlueprint;
121
- basic?: ButtonBlueprint;
122
- accent1?: ButtonBlueprint;
123
- warn?: ButtonBlueprint;
124
- link?: ButtonBlueprint;
125
- close?: ButtonBlueprint;
126
- } & VariantBlueprints<ButtonBlueprint>;
120
+ xl?: ButtonBlueprint;
121
+ l?: ButtonBlueprint;
122
+ m?: ButtonBlueprint;
123
+ s?: ButtonBlueprint;
124
+ xs?: ButtonBlueprint;
125
+ };
127
126
  }
128
127
  export interface InputBlueprints extends Blueprints, VariantBlueprints<InputBlueprint> {
129
128
  primary?: InputBlueprint;
@@ -169,7 +168,7 @@ export interface TextBlueprint extends Blueprint {
169
168
  }
170
169
  export interface IconBlueprint extends Blueprint {
171
170
  color?: TextFillDefinitionValue;
172
- size?: number;
171
+ size?: number | ThemedTextStyleValue;
173
172
  }
174
173
  export interface ChipBlueprint extends Blueprint {
175
174
  bgColor?: TextFillDefinitionValue;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.412-dev",
4
+ "version": "8.0.413-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"