@omnia/fx-models 8.0.387-dev → 8.0.389-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/Constants.d.ts CHANGED
@@ -197,7 +197,7 @@ export declare const Constants: {
197
197
  omniaPublishingCore: guid;
198
198
  omniaTeamworkCore: guid;
199
199
  aiEngine: guid;
200
- seoCore: guid;
200
+ publicWeb: guid;
201
201
  };
202
202
  app: {
203
203
  tableName: string;
package/Constants.js CHANGED
@@ -229,7 +229,7 @@ exports.Constants = {
229
229
  omniaPublishingCore: (0, models_1.guid)("dcf426dd-1488-46ca-b7b1-6c174b29d28b"),
230
230
  omniaTeamworkCore: (0, models_1.guid)("a3bdc65e-ef63-4f8e-92fd-f9c8b527fe8d"),
231
231
  aiEngine: (0, models_1.guid)("f976ad6f-987f-44e6-973a-097d81f73fc7"),
232
- seoCore: (0, models_1.guid)("27448096-ad28-49a3-9b3d-bb12abb5a182")
232
+ publicWeb: (0, models_1.guid)("27448096-ad28-49a3-9b3d-bb12abb5a182")
233
233
  },
234
234
  app: {
235
235
  tableName: "AppInstances",
@@ -1,6 +1,6 @@
1
1
  import { BackgroundDefinition, BlueprintsReference, ColorValue, FillDefinitionValue } from "./ThemeDefinition";
2
2
  import { SpacingDefinition, Spacing, SpacingValue } from "./Spacing";
3
- import { TypographyFontDefinition, TypographyValue } 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 {
@@ -156,7 +156,7 @@ export interface TabsBlueprint extends Blueprint {
156
156
  }
157
157
  export interface TextBlueprint extends Blueprint {
158
158
  color?: FillDefinitionValue;
159
- typography?: TypographyValue;
159
+ typography?: TextStyleValue;
160
160
  }
161
161
  export interface IconBlueprint extends Blueprint {
162
162
  color?: FillDefinitionValue;
@@ -10,49 +10,49 @@ export interface TypographyFontDefinition extends ThemeBase {
10
10
  export interface TypographyBlueprint extends ThemeBase {
11
11
  font?: TypographyFontRef;
12
12
  fills?: VariantBlueprints<FillDefinition>;
13
- variants?: VariantBlueprints<TypographyDefinition>;
13
+ variants?: VariantBlueprints<TextStyleDefinition>;
14
14
  title?: {
15
- xl: TypographyDefinition;
16
- l: TypographyDefinition;
17
- m: TypographyDefinition;
18
- s: TypographyDefinition;
19
- xs: TypographyDefinition;
15
+ xl: TextStyleDefinition;
16
+ l: TextStyleDefinition;
17
+ m: TextStyleDefinition;
18
+ s: TextStyleDefinition;
19
+ xs: TextStyleDefinition;
20
20
  font?: TypographyFontRef;
21
21
  };
22
22
  text?: {
23
- xl?: TypographyDefinition;
24
- l: TypographyDefinition;
25
- m: TypographyDefinition;
26
- s: TypographyDefinition;
27
- xs: TypographyDefinition;
23
+ xl?: TextStyleDefinition;
24
+ l: TextStyleDefinition;
25
+ m: TextStyleDefinition;
26
+ s: TextStyleDefinition;
27
+ xs: TextStyleDefinition;
28
28
  font?: TypographyFontRef;
29
29
  };
30
30
  navigation?: {
31
- xl?: TypographyDefinition;
32
- l: TypographyDefinition;
33
- m: TypographyDefinition;
34
- s?: TypographyDefinition;
35
- xs?: TypographyDefinition;
31
+ xl?: TextStyleDefinition;
32
+ l: TextStyleDefinition;
33
+ m: TextStyleDefinition;
34
+ s?: TextStyleDefinition;
35
+ xs?: TextStyleDefinition;
36
36
  font?: TypographyFontRef;
37
37
  };
38
38
  link?: {
39
- xl?: TypographyDefinition;
40
- l?: TypographyDefinition;
41
- m: TypographyDefinition;
42
- s?: TypographyDefinition;
43
- xs?: TypographyDefinition;
39
+ xl?: TextStyleDefinition;
40
+ l?: TextStyleDefinition;
41
+ m: TextStyleDefinition;
42
+ s?: TextStyleDefinition;
43
+ xs?: TextStyleDefinition;
44
44
  font?: TypographyFontRef;
45
45
  };
46
46
  }
47
- export interface TypographyDefinition {
47
+ export interface TextStyleDefinition {
48
48
  decoration?: string;
49
- lg: TypographyTypeBreakPoint;
50
- md?: TypographyTypeBreakPoint;
51
- sm?: TypographyTypeBreakPoint;
49
+ lg: TextStyleBreakPoint;
50
+ md?: TextStyleBreakPoint;
51
+ sm?: TextStyleBreakPoint;
52
52
  font?: TypographyFontRef;
53
53
  name?: string;
54
54
  }
55
- export interface TypographyTypeBreakPoint {
55
+ export interface TextStyleBreakPoint {
56
56
  weight: number;
57
57
  size: number;
58
58
  lineHeight: number;
@@ -61,21 +61,21 @@ export interface TypographyTypeBreakPoint {
61
61
  export interface TypographyFontRef {
62
62
  family: string;
63
63
  }
64
- export type TypographyType = keyof typeof TypographyTypes;
65
- export declare enum TypographyTypes {
64
+ export type TextStyleType = keyof typeof TextStyleTypes;
65
+ export declare enum TextStyleTypes {
66
66
  title = "title",
67
67
  text = "text",
68
68
  navigation = "navigation",
69
69
  variants = "variants",
70
70
  fills = "fills"
71
71
  }
72
- export interface ThemedTypographyValue {
73
- type: TypographyType;
74
- size: TypographySize;
72
+ export interface ThemedTextStyleValue {
73
+ type: TextStyleType;
74
+ size: TextStyleSize;
75
75
  }
76
- export type TypographyValue = TypographyDefinition | ThemedTypographyValue;
77
- export type TypographySize = keyof typeof TypographySizes;
78
- export declare enum TypographySizes {
76
+ export type TextStyleValue = TextStyleDefinition | ThemedTextStyleValue;
77
+ export type TextStyleSize = keyof typeof TextStyleSizes;
78
+ export declare enum TextStyleSizes {
79
79
  xl = "xl",
80
80
  l = "l",
81
81
  m = "m",
@@ -91,4 +91,4 @@ export declare enum TypographySizes {
91
91
  variant8 = "variant8"
92
92
  }
93
93
  /**this reflect TypographySizes for member check*/
94
- export declare const AvailableTypographySizes: string[];
94
+ export declare const AvailableTextStyleSizes: string[];
@@ -1,29 +1,29 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AvailableTypographySizes = exports.TypographySizes = exports.TypographyTypes = void 0;
4
- var TypographyTypes;
5
- (function (TypographyTypes) {
6
- TypographyTypes["title"] = "title";
7
- TypographyTypes["text"] = "text";
8
- TypographyTypes["navigation"] = "navigation";
9
- TypographyTypes["variants"] = "variants";
10
- TypographyTypes["fills"] = "fills";
11
- })(TypographyTypes || (exports.TypographyTypes = TypographyTypes = {}));
12
- var TypographySizes;
13
- (function (TypographySizes) {
14
- TypographySizes["xl"] = "xl";
15
- TypographySizes["l"] = "l";
16
- TypographySizes["m"] = "m";
17
- TypographySizes["s"] = "s";
18
- TypographySizes["xs"] = "xs";
19
- TypographySizes["variant1"] = "variant1";
20
- TypographySizes["variant2"] = "variant2";
21
- TypographySizes["variant3"] = "variant3";
22
- TypographySizes["variant4"] = "variant4";
23
- TypographySizes["variant5"] = "variant5";
24
- TypographySizes["variant6"] = "variant6";
25
- TypographySizes["variant7"] = "variant7";
26
- TypographySizes["variant8"] = "variant8";
27
- })(TypographySizes || (exports.TypographySizes = TypographySizes = {}));
3
+ exports.AvailableTextStyleSizes = exports.TextStyleSizes = exports.TextStyleTypes = void 0;
4
+ var TextStyleTypes;
5
+ (function (TextStyleTypes) {
6
+ TextStyleTypes["title"] = "title";
7
+ TextStyleTypes["text"] = "text";
8
+ TextStyleTypes["navigation"] = "navigation";
9
+ TextStyleTypes["variants"] = "variants";
10
+ TextStyleTypes["fills"] = "fills";
11
+ })(TextStyleTypes || (exports.TextStyleTypes = TextStyleTypes = {}));
12
+ var TextStyleSizes;
13
+ (function (TextStyleSizes) {
14
+ TextStyleSizes["xl"] = "xl";
15
+ TextStyleSizes["l"] = "l";
16
+ TextStyleSizes["m"] = "m";
17
+ TextStyleSizes["s"] = "s";
18
+ TextStyleSizes["xs"] = "xs";
19
+ TextStyleSizes["variant1"] = "variant1";
20
+ TextStyleSizes["variant2"] = "variant2";
21
+ TextStyleSizes["variant3"] = "variant3";
22
+ TextStyleSizes["variant4"] = "variant4";
23
+ TextStyleSizes["variant5"] = "variant5";
24
+ TextStyleSizes["variant6"] = "variant6";
25
+ TextStyleSizes["variant7"] = "variant7";
26
+ TextStyleSizes["variant8"] = "variant8";
27
+ })(TextStyleSizes || (exports.TextStyleSizes = TextStyleSizes = {}));
28
28
  /**this reflect TypographySizes for member check*/
29
- exports.AvailableTypographySizes = ["xl", "l", "m", "s", "xs", "variant1", "variant2", "variant3", "variant4", "variant5", "variant6", "variant7", "variant8"];
29
+ exports.AvailableTextStyleSizes = ["xl", "l", "m", "s", "xs", "variant1", "variant2", "variant3", "variant4", "variant5", "variant6", "variant7", "variant8"];
@@ -1,4 +1,4 @@
1
- import { BuiltInPropertyEditorType, guid, TypographyType, VelcronEditor } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
1
+ import { BuiltInPropertyEditorType, guid, TextStyleType, VelcronEditor } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
2
  export interface ResolvedPropertyEditor {
3
3
  editor: VelcronEditor;
4
4
  }
@@ -28,7 +28,7 @@ export interface VelcronSelectEditorSettings {
28
28
  }>;
29
29
  }
30
30
  export interface VelcronTextEditorSettings {
31
- type: TypographyType;
31
+ type: TextStyleType;
32
32
  placeholder: string;
33
33
  }
34
34
  export interface VelcronNumberEditorSettings {
@@ -1,4 +1,4 @@
1
- import { BackgroundDefinition, ContainerFillBlueprint, BlueprintVariant, TextBlueprint, TypographySize, TypographyType, VelcronSpacing } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
1
+ import { BackgroundDefinition, ContainerFillBlueprint, BlueprintVariant, TextBlueprint, TextStyleSize, TextStyleType, VelcronSpacing } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
2
  import { VelcronImageRatios } from "./VelcronDefinitions";
3
3
  export interface VelcronState {
4
4
  states?: {
@@ -43,8 +43,8 @@ export interface VelcronTextState {
43
43
  typography?: VelcronTypographyState;
44
44
  }
45
45
  export interface VelcronTypographyState {
46
- type?: TypographyType;
47
- size?: TypographySize;
46
+ type?: TextStyleType;
47
+ size?: TextStyleSize;
48
48
  toned?: boolean;
49
49
  }
50
50
  export interface VelcronContentState {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.387-dev",
4
+ "version": "8.0.389-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"