@omnia/fx-models 8.0.413-dev → 8.0.414-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, ThemedTextStyleValue } from "./Typography";
3
+ import { TypographyFontDefinition, TextStyleValue } from "./Typography";
4
4
  import { ThemeBase } from "./ThemeBase";
5
5
  import { VelcronRendererResolverReference } from "../velcron";
6
6
  export interface BlueprintStrategy {
@@ -168,7 +168,7 @@ export interface TextBlueprint extends Blueprint {
168
168
  }
169
169
  export interface IconBlueprint extends Blueprint {
170
170
  color?: TextFillDefinitionValue;
171
- size?: number | ThemedTextStyleValue;
171
+ size?: number | "s1" | "s2" | "s3" | "s4" | "s5" | "s6" | "s7" | "s8" | "s9" | "s10" | "s11" | "s12" | "s13" | "s14" | "s15" | "s16" | "s17" | "s18" | "s19" | "s20";
172
172
  }
173
173
  export interface ChipBlueprint extends Blueprint {
174
174
  bgColor?: TextFillDefinitionValue;
@@ -31,7 +31,7 @@ type EffectScope = {
31
31
  stop(fromParent?: boolean): void;
32
32
  };
33
33
  type StoreProvider = {
34
- logging: {
34
+ logging?: {
35
35
  add(id: guid, name: string, type: any, storeId: guid, storeName: string, object: any): void;
36
36
  remove(id: any): void;
37
37
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.413-dev",
4
+ "version": "8.0.414-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -7,6 +7,7 @@ export declare class DateTimeDisplaySettings extends PropertyDisplaySettingsBase
7
7
  locks?: PropertyLockStatusType<LockStatusExcludeChildren<Omit<DateTimeDisplaySettings, "locks">, "label">>;
8
8
  renderMode?: DateRenderOption;
9
9
  showTimeZone?: boolean;
10
+ includeTime?: boolean;
10
11
  }
11
12
  export declare class DateTimeEditorSettings extends PropertyEditorSettingsBase {
12
13
  }