@omnia/fx-models 8.0.76-dev → 8.0.77-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.
package/Layout.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { MultilingualString, ThemeDefinition, IIcon, SpacingSettings, IconPickerModel, WebComponentDefinition, OmniaBlock, GuidValue, RadialGradientShapes, BlockTitleSettings, LayoutItemActions, LayoutEditorModes, BlockRenderingModes, TabbedDisplayModes, TabbedIconPositions, LayoutDrawerTabs, ILayoutCanvasDefinitionBuilder, MediaPickerImage, IMessageBusTopicSubscription, MediaPickerStorageProviderContext, OmniaBackendRuntimes, OmniaClientRuntimes, LayoutCanvasModes, ColorSchemaTypes, HorizontalAlignments, SpacingType } from ".";
1
+ import { MultilingualString, ThemeDefinition, IIcon, SpacingSettings, IconPickerModel, WebComponentDefinition, OmniaBlock, GuidValue, RadialGradientShapes, BlockTitleSettings, LayoutItemActions, LayoutEditorModes, BlockRenderingModes, TabbedDisplayModes, TabbedIconPositions, LayoutDrawerTabs, ILayoutCanvasDefinitionBuilder, MediaPickerImage, IMessageBusTopicSubscription, MediaPickerStorageProviderContext, OmniaBackendRuntimes, OmniaClientRuntimes, LayoutCanvasModes, ColorSchemaTypes, HorizontalAlignments, SpacingType, ChromeBlueprintVariants } from ".";
2
2
  import { MessageBusTopicMediator } from "../";
3
3
  import { TargetingFilterProperty } from "../sp";
4
4
  import { ShapeDividerSettings } from "./ShapeDividerSettingsModel";
@@ -67,6 +67,7 @@ export interface LayoutItemSettings {
67
67
  css: string;
68
68
  customCssClasses: string;
69
69
  colorSchemaType?: ColorSchemaTypes;
70
+ chromeType?: ChromeBlueprintVariants;
70
71
  }
71
72
  export interface LinearGradientBackground extends BackgroundSettings {
72
73
  degrees: number;
@@ -14,6 +14,7 @@ export interface OmniaSharedBootstrapData {
14
14
  tokenKey?: OmniaToken;
15
15
  tokenRef: GuidValue;
16
16
  identity: string;
17
+ hubIdentity: number;
17
18
  licenses: Array<Guid>;
18
19
  hubDev?: boolean;
19
20
  realtimeDevPort?: string;
@@ -9,6 +9,7 @@ export interface OmniaToken {
9
9
  export interface OmniaTokenRef {
10
10
  tenantId: GuidValue;
11
11
  identityId: string;
12
+ hubIdentityId: number;
12
13
  tokenRef: GuidValue;
13
14
  localDev: boolean;
14
15
  }
@@ -10,6 +10,9 @@ export interface ChromeBluePrintDefinitions {
10
10
  variant3: ChromeDefinition;
11
11
  }
12
12
  export type BlueprintType = "chrome" | "typography" | "spacing" | "component";
13
+ export type ChromeBlueprintVariants = "default" | "variant1" | "variant2" | "variant3";
14
+ export type TypographyBlueprintVariants = "default" | "variant1";
15
+ export type SpacingBlueprintVariants = "default";
13
16
  export interface BlueprintDefinition {
14
17
  type: BlueprintType;
15
18
  name: string;
@@ -17,7 +20,9 @@ export interface BlueprintDefinition {
17
20
  export interface ChromeBlueprint extends BlueprintDefinition {
18
21
  type: "chrome";
19
22
  default: ChromeDefinition;
20
- variant1: ChromeDefinition;
23
+ variant1?: ChromeDefinition;
24
+ variant2?: ChromeDefinition;
25
+ variant3?: ChromeDefinition;
21
26
  }
22
27
  export interface TypographyBlueprint extends BlueprintDefinition {
23
28
  type: "typography";
@@ -2,7 +2,7 @@ import { GuidValue } from "../Guid";
2
2
  import { VelcronAppDefinition } from "../velcron";
3
3
  import { BoxDimensions } from "./BlueprintDefinition";
4
4
  import { SpacingSettings } from "./SpacingSetting";
5
- import { ColorSchemaType, ColorSchemaTypes, ColorType } from "./ThemeDefinitionV2";
5
+ import { ColorType } from "./ThemeDefinitionV2";
6
6
  export interface ChromeDefinition {
7
7
  id: GuidValue;
8
8
  name: string;
@@ -10,11 +10,13 @@ export interface ChromeDefinition {
10
10
  definitionId: GuidValue;
11
11
  definition?: VelcronAppDefinition;
12
12
  };
13
- colors: {
14
- colorSchemaType?: ColorSchemaTypes | ColorSchemaType;
15
- };
16
13
  styles: {
17
- opacity?: number;
14
+ background?: {
15
+ filled?: boolean;
16
+ opacity?: number;
17
+ colorType?: ColorType;
18
+ toned?: boolean;
19
+ };
18
20
  spacing?: SpacingSettings;
19
21
  elevation?: number;
20
22
  borderRadius?: BoxDimensions;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.76-dev",
4
+ "version": "8.0.77-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"