@omnia/fx-models 8.0.458-dev → 8.0.460-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.
Files changed (29) hide show
  1. package/BlockTitleSettings.d.ts +2 -2
  2. package/Enums.d.ts +0 -8
  3. package/Enums.js +1 -8
  4. package/internal-do-not-import-from-here/shared/aurora/styles/BackgroundStyling.d.ts +31 -0
  5. package/internal-do-not-import-from-here/shared/aurora/styles/BlueprintValues.d.ts +6 -0
  6. package/internal-do-not-import-from-here/shared/aurora/styles/BorderStyling.d.ts +18 -0
  7. package/internal-do-not-import-from-here/shared/aurora/styles/Colors.d.ts +10 -0
  8. package/internal-do-not-import-from-here/shared/aurora/styles/FillStyling.d.ts +11 -0
  9. package/internal-do-not-import-from-here/shared/aurora/styles/General.d.ts +12 -0
  10. package/internal-do-not-import-from-here/shared/aurora/styles/IconStyling.d.ts +6 -0
  11. package/internal-do-not-import-from-here/shared/aurora/styles/InputStyling.d.ts +6 -0
  12. package/internal-do-not-import-from-here/shared/aurora/styles/Spacing.d.ts +12 -0
  13. package/internal-do-not-import-from-here/shared/aurora/styles/Stylex.d.ts +156 -0
  14. package/internal-do-not-import-from-here/shared/aurora/styles/StylexTypings.d.ts +894 -0
  15. package/internal-do-not-import-from-here/shared/aurora/styles/TextStyling.d.ts +8 -0
  16. package/internal-do-not-import-from-here/shared/aurora/styles/Typography.d.ts +102 -0
  17. package/internal-do-not-import-from-here/shared/aurora/styles/UseContainerQuery.d.ts +8 -0
  18. package/internal-do-not-import-from-here/shared/aurora/styles/UseStyling.d.ts +81 -0
  19. package/internal-do-not-import-from-here/shared/aurora/styles/index.d.ts +12 -0
  20. package/internal-do-not-import-from-here/shared/models/Enums.d.ts +5 -0
  21. package/internal-do-not-import-from-here/shared/models/Enums.js +7 -1
  22. package/internal-do-not-import-from-here/shared/models/OxideTypeDefinitions.d.ts +11 -0
  23. package/internal-do-not-import-from-here/shared/models/OxideTypeDefinitions.js +7 -1
  24. package/internal-do-not-import-from-here/shared/models/theme/Blueprints.d.ts +18 -7
  25. package/internal-do-not-import-from-here/velcron/core/models/VelcronDefinitions.d.ts +1 -2
  26. package/oxide/OxideTypeDefinitions.d.ts +0 -9
  27. package/oxide/OxideTypeDefinitions.js +2 -9
  28. package/package.json +1 -1
  29. package/ux/LayoutEditorCanvas.d.ts +2 -0
@@ -0,0 +1,8 @@
1
+ import { TextBlueprint } from "internal/fx/shared/models";
2
+ import { StylexValue } from "./Stylex";
3
+ import { useTypographyBlueprintStore, useColorSchemaStore } from "../stores";
4
+ export declare namespace TextStyles {
5
+ /**Text styling */
6
+ function getBlueprintTextStylexObject(bluePrint: TextBlueprint, colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>): any;
7
+ function getBlueprintTextStylex(bluePrint: TextBlueprint, colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>): Readonly<StylexValue>;
8
+ }
@@ -0,0 +1,102 @@
1
+ import { TypographyBlueprint, TextStyleSize, TextStyleTypes, TextStyleValue } from "internal/fx/shared/models";
2
+ import { useTypographyBlueprintStore } from "../stores";
3
+ export declare namespace TypographyStyling {
4
+ function typographyTypeStylex(typographyType: TextStyleTypes, size: TextStyleSize, blueprint: TypographyBlueprint): Readonly<import("./Stylex").StylexValue>;
5
+ function typographyStylex(blueprints: ReturnType<typeof useTypographyBlueprintStore>): {
6
+ display: {
7
+ readonly xl: Readonly<import("./Stylex").StylexValue>;
8
+ readonly l: Readonly<import("./Stylex").StylexValue>;
9
+ readonly m: Readonly<import("./Stylex").StylexValue>;
10
+ readonly s: Readonly<import("./Stylex").StylexValue>;
11
+ readonly xs: Readonly<import("./Stylex").StylexValue>;
12
+ };
13
+ headline: {
14
+ readonly xl: Readonly<import("./Stylex").StylexValue>;
15
+ readonly l: Readonly<import("./Stylex").StylexValue>;
16
+ readonly m: Readonly<import("./Stylex").StylexValue>;
17
+ readonly s: Readonly<import("./Stylex").StylexValue>;
18
+ readonly xs: Readonly<import("./Stylex").StylexValue>;
19
+ };
20
+ title: {
21
+ readonly xl: Readonly<import("./Stylex").StylexValue>;
22
+ readonly l: Readonly<import("./Stylex").StylexValue>;
23
+ readonly m: Readonly<import("./Stylex").StylexValue>;
24
+ readonly s: Readonly<import("./Stylex").StylexValue>;
25
+ readonly xs: Readonly<import("./Stylex").StylexValue>;
26
+ };
27
+ text: {
28
+ readonly xl: Readonly<import("./Stylex").StylexValue>;
29
+ readonly l: Readonly<import("./Stylex").StylexValue>;
30
+ readonly m: Readonly<import("./Stylex").StylexValue>;
31
+ readonly s: Readonly<import("./Stylex").StylexValue>;
32
+ readonly xs: Readonly<import("./Stylex").StylexValue>;
33
+ };
34
+ label: {
35
+ readonly xl: Readonly<import("./Stylex").StylexValue>;
36
+ readonly l: Readonly<import("./Stylex").StylexValue>;
37
+ readonly m: Readonly<import("./Stylex").StylexValue>;
38
+ readonly s: Readonly<import("./Stylex").StylexValue>;
39
+ readonly xs: Readonly<import("./Stylex").StylexValue>;
40
+ };
41
+ variants: {
42
+ readonly variant1: Readonly<import("./Stylex").StylexValue>;
43
+ readonly variant2: Readonly<import("./Stylex").StylexValue>;
44
+ readonly variant3: Readonly<import("./Stylex").StylexValue>;
45
+ readonly variant4: Readonly<import("./Stylex").StylexValue>;
46
+ };
47
+ typographyType: (typographyType: string) => any;
48
+ };
49
+ function typographyStylexFromValueStylex(value: TextStyleValue, blueprint: TypographyBlueprint): Readonly<import("./Stylex").StylexValue>;
50
+ }
51
+ export interface TypographyTypesResult {
52
+ display: {
53
+ xl: string;
54
+ l: string;
55
+ m: string;
56
+ s: string;
57
+ xs: string;
58
+ };
59
+ headline: {
60
+ xl: string;
61
+ l: string;
62
+ m: string;
63
+ s: string;
64
+ xs: string;
65
+ };
66
+ title: {
67
+ xl: string;
68
+ l: string;
69
+ m: string;
70
+ s: string;
71
+ xs: string;
72
+ };
73
+ text: {
74
+ xl: string;
75
+ l: string;
76
+ m: string;
77
+ s: string;
78
+ xs: string;
79
+ };
80
+ label: {
81
+ xl: string;
82
+ l: string;
83
+ m: string;
84
+ s: string;
85
+ xs: string;
86
+ };
87
+ variant: {
88
+ 1: string;
89
+ 2: string;
90
+ 3: string;
91
+ 4: string;
92
+ 5: string;
93
+ 6: string;
94
+ 7: string;
95
+ 8: string;
96
+ 9: string;
97
+ };
98
+ typographyType: (typographyType: string) => string;
99
+ }
100
+ export declare function fontStyling(blueprint: TypographyBlueprint): {
101
+ fontFamily: string;
102
+ };
@@ -0,0 +1,8 @@
1
+ import { DisplayBreakpointTypes, ContainerBreakpointTypes } from "internal/fx/shared/models";
2
+ export declare function useContainerQuery(): {
3
+ breakPoint: (styles: any, breakPoint: {
4
+ maxWidth?: number;
5
+ minWidth?: number;
6
+ }, name?: ContainerBreakpointTypes) => {};
7
+ device: (styles: any, breakpoint: DisplayBreakpointTypes) => {};
8
+ };
@@ -0,0 +1,81 @@
1
+ import { Spacing, SpacingValue, setColorOpacity, ColorValue, ThemeContextType } from "internal/fx/shared/models";
2
+ import { useSpacingBlueprintStore } from "../stores";
3
+ import { TypographyStyling } from "./Typography";
4
+ import { InputStyling } from "./InputStyling";
5
+ import { SpacingStyling } from "./Spacing";
6
+ import { BackgroundStyling } from "./BackgroundStyling";
7
+ import { IconStyling } from "./IconStyling";
8
+ import { colorStyling } from "./Colors";
9
+ import { generalStylex } from "./General";
10
+ import { FillStyling } from "./FillStyling";
11
+ import { BorderStyling } from "./BorderStyling";
12
+ import { TextStyles } from "./TextStyling";
13
+ export declare function useStyling(): {
14
+ spacing: {
15
+ stylex: typeof SpacingStyling.createSpacingx;
16
+ };
17
+ background: {
18
+ grid: typeof BackgroundStyling.backgroundGrid;
19
+ };
20
+ };
21
+ export declare function useThemeStyling(): {
22
+ input: {
23
+ stylex: typeof InputStyling.getFieldBlueprintStylex;
24
+ };
25
+ icons: {
26
+ stylex: typeof IconStyling.getIconBlueprintStylex;
27
+ };
28
+ colors: {
29
+ dividingOpacity: typeof colorStyling.dividingOpacity;
30
+ backgroundOpacity: typeof colorStyling.backgroundOpacity;
31
+ setColorOpacity: typeof setColorOpacity;
32
+ };
33
+ elementStyling: {
34
+ colorStylex: typeof colorStyling.getColorStylingx;
35
+ selectedTableRowStylex: typeof generalStylex.getSelectedTableRowStylex;
36
+ scrollStylex: typeof generalStylex.getScrollStylex;
37
+ borderDividerStylex: typeof generalStylex.getBorderDividerStylex;
38
+ hoverStylex: typeof generalStylex.getHoverStylex;
39
+ css: {
40
+ generateAllStylesSchema: typeof generateAllStylesSchema;
41
+ generateVariableStyle: typeof generateVariableStyle;
42
+ generateValueVariable: typeof generateValueVariable;
43
+ };
44
+ };
45
+ typography: {
46
+ valueStylex: typeof TypographyStyling.typographyStylexFromValueStylex;
47
+ typeStylex: typeof TypographyStyling.typographyTypeStylex;
48
+ stylex: typeof TypographyStyling.typographyStylex;
49
+ };
50
+ spacing: {
51
+ paddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => import("./Stylex").StylexValue;
52
+ marginStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => import("./Stylex").StylexValue;
53
+ value: (value: SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => number;
54
+ values: (value: Spacing, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Spacing;
55
+ };
56
+ fill: {
57
+ stylex: typeof FillStyling.getBlueprintFillStylex;
58
+ stylexObject: typeof FillStyling.getBlueprintFillObjectStylex;
59
+ };
60
+ border: {
61
+ stylex: typeof BorderStyling.getBlueprintBorderStylex;
62
+ stylexObject: typeof BorderStyling.getBlueprintBorderObjectStylex;
63
+ };
64
+ background: {
65
+ stylex: typeof BackgroundStyling.getBlueprintBackgroundStylex;
66
+ stylexObject: typeof BackgroundStyling.getBlueprintBackgroundObjectStylex;
67
+ };
68
+ text: {
69
+ stylex: typeof TextStyles.getBlueprintTextStylex;
70
+ object: typeof TextStyles.getBlueprintTextStylexObject;
71
+ };
72
+ };
73
+ export declare function useSetupTheme(themeType: ThemeContextType): void;
74
+ declare function generateValueVariable(color: ColorValue): string;
75
+ declare function generateVariableStyle(color: ColorValue): {
76
+ [key: string]: string;
77
+ };
78
+ declare function generateAllStylesSchema(): {
79
+ [key: string]: string;
80
+ };
81
+ export {};
@@ -1 +1,13 @@
1
1
  export * from "./StyleFormatters";
2
+ export * from "./Colors";
3
+ export * from "./General";
4
+ export * from "./Typography";
5
+ export * from "./Spacing";
6
+ export * from "./FillStyling";
7
+ export * from "./BorderStyling";
8
+ export * from "./BackgroundStyling";
9
+ export * from "./TextStyling";
10
+ export * from "./IconStyling";
11
+ export * from "./BlueprintValues";
12
+ export * from "./UseStyling";
13
+ export * from "./Stylex";
@@ -2,3 +2,8 @@ export declare enum ServiceLocatorUrlType {
2
2
  Api = 0,
3
3
  Resource = 1
4
4
  }
5
+ export declare enum TextAlignment {
6
+ left = "left",
7
+ center = "center",
8
+ right = "right"
9
+ }
@@ -1,8 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ServiceLocatorUrlType = void 0;
3
+ exports.TextAlignment = exports.ServiceLocatorUrlType = void 0;
4
4
  var ServiceLocatorUrlType;
5
5
  (function (ServiceLocatorUrlType) {
6
6
  ServiceLocatorUrlType[ServiceLocatorUrlType["Api"] = 0] = "Api";
7
7
  ServiceLocatorUrlType[ServiceLocatorUrlType["Resource"] = 1] = "Resource";
8
8
  })(ServiceLocatorUrlType || (exports.ServiceLocatorUrlType = ServiceLocatorUrlType = {}));
9
+ var TextAlignment;
10
+ (function (TextAlignment) {
11
+ TextAlignment["left"] = "left";
12
+ TextAlignment["center"] = "center";
13
+ TextAlignment["right"] = "right";
14
+ })(TextAlignment || (exports.TextAlignment = TextAlignment = {}));
@@ -1,3 +1,14 @@
1
1
  export declare const OIconSizeDefinitions: readonly ["x-large", "large", "default", "x-small", "small"];
2
2
  export type OIconSizes = typeof OIconSizeDefinitions[number];
3
3
  export declare const OIconSizesName = "OIconSizes";
4
+ export declare const ODividerTypeDefinitions: readonly ["top", "bottom", "left", "right"];
5
+ export type ODividerTypes = typeof ODividerTypeDefinitions[number];
6
+ export declare const ODividerTypesName = "ODividerTypes";
7
+ export type OBorderCombination = `${ODividerTypes}` | `${ODividerTypes} ${ODividerTypes}` | `${ODividerTypes} ${ODividerTypes} ${ODividerTypes}` | `${ODividerTypes} ${ODividerTypes} ${ODividerTypes} ${ODividerTypes}`;
8
+ export declare const DisplayBreakpoints: readonly ["s", "m", "l"];
9
+ export type DisplayBreakpointTypes = typeof DisplayBreakpoints[number];
10
+ export type ContainerBreakpointTypes = "layout" | "column" | "parent";
11
+ /** text */
12
+ export declare const OTextAlignmentDefinitions: readonly ["left", "center", "right"];
13
+ export type OTextAlignmentTypes = typeof OTextAlignmentDefinitions[number];
14
+ export declare const OTextAlignmentTypesName = "OTextAlignmentTypes";
@@ -1,5 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.OIconSizesName = exports.OIconSizeDefinitions = void 0;
3
+ exports.OTextAlignmentTypesName = exports.OTextAlignmentDefinitions = exports.DisplayBreakpoints = exports.ODividerTypesName = exports.ODividerTypeDefinitions = exports.OIconSizesName = exports.OIconSizeDefinitions = void 0;
4
4
  exports.OIconSizeDefinitions = ["x-large", "large", "default", "x-small", "small"];
5
5
  exports.OIconSizesName = "OIconSizes";
6
+ exports.ODividerTypeDefinitions = ["top", "bottom", "left", "right"];
7
+ exports.ODividerTypesName = "ODividerTypes";
8
+ exports.DisplayBreakpoints = ["s", "m", "l"];
9
+ /** text */
10
+ exports.OTextAlignmentDefinitions = ["left", "center", "right"];
11
+ exports.OTextAlignmentTypesName = "OTextAlignmentTypes";
@@ -3,7 +3,8 @@ import { SpacingDefinition, Spacing, SpacingValue } from "./Spacing";
3
3
  import { TypographyFontDefinition, TextStyleValue } from "./Typography";
4
4
  import { ThemeBase } from "./ThemeBase";
5
5
  import { VelcronRendererResolverReference } from "../velcron";
6
- import { TextAlignment } from "@omnia/fx-models";
6
+ import { TextAlignment } from "../Enums";
7
+ import { HorizontalAlignments, VerticalAlignments } from "@omnia/fx-models";
7
8
  export interface BlueprintStrategy {
8
9
  buttons: {
9
10
  primary: ButtonBlueprint;
@@ -31,21 +32,28 @@ export interface VariantBlueprints<T> extends Blueprints {
31
32
  variant7?: T;
32
33
  variant8?: T;
33
34
  }
34
- export interface HeaderIconSettings {
35
+ export interface HeaderIconBlueprint {
35
36
  blueprint?: IconBlueprint;
36
37
  background?: BackgroundDefinition;
37
- spacing?: Spacing;
38
+ alignX?: HorizontalAlignments;
39
+ alignY?: VerticalAlignments;
40
+ backgroundHeight?: number;
41
+ margin?: Spacing;
38
42
  }
39
43
  export interface HeaderBlueprint extends Blueprint {
40
44
  /**velcron */
41
45
  renderer?: VelcronRendererResolverReference;
46
+ iconMargin?: SpacingValue;
47
+ noIcon?: boolean;
42
48
  state?: any;
43
49
  /**Settings */
44
50
  background?: BackgroundDefinition;
45
51
  textAlign?: TextAlignment;
46
- padding?: SpacingValue;
52
+ upperCase?: boolean;
53
+ padding?: Spacing;
54
+ margin?: Spacing;
47
55
  text?: TextBlueprint;
48
- iconSettings?: HeaderIconSettings;
56
+ icon?: HeaderIconBlueprint;
49
57
  }
50
58
  export interface HeaderBlueprints extends Blueprints, VariantBlueprints<HeaderBlueprint>, BlueprintsReference {
51
59
  primary?: HeaderBlueprint;
@@ -113,13 +121,16 @@ export interface ButtonBlueprintVariant {
113
121
  category: ButtonBlueprintType;
114
122
  }
115
123
  export interface ButtonBlueprint extends Blueprint {
116
- paddingX?: SpacingValue;
117
- iconPaddingX?: SpacingValue;
124
+ padding?: Spacing;
125
+ iconMargin?: SpacingValue;
118
126
  height?: number;
119
127
  background?: BackgroundDefinition;
120
128
  alterCase?: boolean;
121
129
  text?: TextBlueprint;
122
130
  icon?: IconBlueprint;
131
+ iconPosition?: HorizontalAlignments;
132
+ iconBackground?: BackgroundDefinition;
133
+ iconBackgroundHeight?: number;
123
134
  viewTemplate?: VelcronRendererResolverReference;
124
135
  }
125
136
  export interface ButtonBlueprints extends Blueprints {
@@ -5,7 +5,7 @@ import { DynamicState, VelcronDefinition, VelcronEffects } from "..";
5
5
  import { guid, PropertyConfiguration, PropertyValue, PropertyDefinition, PropertySetupBase } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
6
6
  import { Properties } from "csstype";
7
7
  import type { AnimationOptionsWithOverrides, InViewOptions, VariantDefinition, Variants } from "motion";
8
- import { useColorSchemaStore, useThemeStore } from "internal/fx/ux/mobile";
8
+ import { useColorSchemaStore } from "internal/fx/ux/mobile";
9
9
  export interface ResolvedComponentRenderer {
10
10
  component: unknown;
11
11
  definition: VelcronDefinition;
@@ -83,7 +83,6 @@ export interface VelcronRenderContext {
83
83
  id?: string;
84
84
  rootContext: DynamicState;
85
85
  currentContext: DynamicState;
86
- theming?: ReturnType<typeof useThemeStore>;
87
86
  colors?: ReturnType<typeof useColorSchemaStore>;
88
87
  actions?: {
89
88
  [name: string]: Array<string>;
@@ -153,11 +153,6 @@ export declare const ONavigationDrawerVariantDefinitions: readonly ["default", "
153
153
  export type ONavigationDrawerVariants = typeof ONavigationDrawerVariantDefinitions[number];
154
154
  export declare const ONavigationDrawerVariantsName = "ONavigationDrawerVariants";
155
155
  /**Splitpanes */
156
- /** Panel/Flex */
157
- export declare const ODividerTypeDefinitions: readonly ["top", "bottom", "left", "right"];
158
- export type ODividerTypes = typeof ODividerTypeDefinitions[number];
159
- export declare const ODividerTypesName = "ODividerTypes";
160
- export type OBorderCombination = `${ODividerTypes}` | `${ODividerTypes} ${ODividerTypes}` | `${ODividerTypes} ${ODividerTypes} ${ODividerTypes}` | `${ODividerTypes} ${ODividerTypes} ${ODividerTypes} ${ODividerTypes}`;
161
156
  export declare const OPaddingTypeDefinitions: readonly ["top", "bottom", "left", "right", "none"];
162
157
  export type OPaddingTypes = typeof OPaddingTypeDefinitions[number];
163
158
  export declare const OPaddingTypesName = "ODividerTypes";
@@ -192,10 +187,6 @@ export declare const OSelectTypesName = "OSelectTypes";
192
187
  export declare const OMultiSelectionStyleDefinitions: readonly ["default", "chips", "list"];
193
188
  export type OMultiSelectionStyles = typeof OMultiSelectionStyleDefinitions[number];
194
189
  export declare const OMultiSelectionStylesName = "OMultiSelectionStyles";
195
- /** text */
196
- export declare const OTextAlignmentDefinitions: readonly ["left", "center", "right"];
197
- export type OTextAlignmentTypes = typeof OTextAlignmentDefinitions[number];
198
- export declare const OTextAlignmentTypesName = "OTextAlignmentTypes";
199
190
  /**Skeleton loader */
200
191
  export declare const OSkeletonLoaderTypeDefinitions: readonly ["text", "image", "button", "chip", "actions", "avatar", "divider", "subtitle", "heading", "sentences", "paragraph", "article", "card", "card-avatar", "date-picker", "date-picker-options", "date-picker-days", "list-item", "list-item-avatar", "list-item-two-line", "list-item-avatar-two-line", "list-item-three-line", "list-item-avatar-three-line", "table", "table-heading", "table-thead", "table-tbody", "table-row-divider", "table-row", "table-tfoot"];
201
192
  export type OSkeletonLoaderTypes = typeof OSkeletonLoaderTypeDefinitions[number];
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OPageDividerTypeDefinitions = exports.ODialogSizeDefinitions = exports.ODialogTypesName = exports.ODialogTypeDefinitions = exports.OTextareTypesName = exports.OTextAreaTypeDefinitions = exports.OFormTypeDefinitionsName = exports.OFormTypeDefinitions = exports.OTextFieldName = exports.OTextFieldTypeDefinitions = exports.OChartVariantsName = exports.OChartVariationDefinitions = exports.OColumnVariantsName = exports.OColumnVariantDefinitions = exports.OAlignmentTypesName = exports.OAlignmentTypeDefinitions = exports.OColValuesName = exports.OColValueDefinitions = exports.OButtonGroupTypesName = exports.OButtonGroupTypeDefinitions = exports.OButtonVariantsName = exports.OButtonVariantDefinitions = exports.OButtonPresetsName = exports.OButtonPresetDefinitions = exports.OAlertTypesName = exports.OAlertTypeDefinitions = exports.OAppBarTypesName = exports.OAppBarTypeDefinitions = exports.OQRCodeLevelName = exports.OQRCodeLevelDefinitions = exports.OQRCodeSizeTypesName = exports.OQRCodeSizeTypeDefinitions = exports.OProgressSizeTypesName = exports.OProgressSizeTypeDefinitions = exports.OProgressVariantsName = exports.OProgressVariantDefinitions = exports.OProgressTypesName = exports.OProgressTypeDefinitions = exports.OSliderVariantsName = exports.OSliderVariantDefinitions = exports.ODirectionTypesName = exports.ODirectionDefinitions = exports.ONotificationSizeTypeDefinitions = exports.OContentHeightDefinitions = exports.OSizeTypesName = exports.OSizeTypeDefinitions = exports.OSwitchesVariantsName = exports.OSwitchesDefinitions = exports.OSelectVariantsName = exports.OSelectDefinitions = void 0;
4
- exports.OScrollOffsetTypeDefinitions = exports.OSkeletonLoaderName = exports.OSkeletonLoaderTypeDefinitions = exports.OTextAlignmentTypesName = exports.OTextAlignmentDefinitions = exports.OMultiSelectionStylesName = exports.OMultiSelectionStyleDefinitions = exports.OSelectTypesName = exports.OSelectTypeDefinitions = exports.OScrollTypesName = exports.OScrollTypeDefinitions = exports.OFlexVariantsName = exports.OFlexVariantDefinitions = exports.OVerticalAlignmentsName = exports.OVerticalAlignmentDefinitions = exports.OTabAlignmentsName = exports.OTabAlignmentDefinitions = exports.OHorizontalAlignmentsName = exports.OHorizontalAlignmentDefinitions = exports.OPanelVariantsName = exports.OPanelVariantDefinitions = exports.ORowDirectionsName = exports.ORowDirectionDefinitions = exports.OPaddingTypesName = exports.OPaddingTypeDefinitions = exports.ODividerTypesName = exports.ODividerTypeDefinitions = exports.ONavigationDrawerVariantsName = exports.ONavigationDrawerVariantDefinitions = exports.ONavigationDrawerLocationsName = exports.ONavigationDrawerLocationDefinitions = exports.OMenuLocationsName = exports.OMenuLocationDefinitions = exports.OListLineTypesName = exports.OListLineTypeDefinitions = exports.OListTypesName = exports.OListTypeDefinitions = exports.OListItemVariantsName = exports.OListItemVariantDefinitions = exports.ORatioTypesName = exports.ORatioTypeDefinitions = exports.OIconVariantsName = exports.OIconVariantDefinitions = exports.OIconAnimationsName = exports.OIconAnimationsDefinition = exports.OIconPresetsName = exports.OIconPresetDefinitions = exports.OPanelTypesName = exports.OPanelTypeDefinitions = exports.OPageDividerTypesName = void 0;
5
- exports.OSkeletonLoaderVariantsName = exports.OSkeletonLoaderDefinitions = exports.OStepperVariantName = exports.OStepperVariantDefinitions = exports.OMultiTextInputModesName = exports.OMultiTextInputModesDefinitions = exports.OSplitpanesVariationTypesName = exports.OSplitpanesVariationDefinitions = exports.ORatingLengthName = exports.ORatingLengthDefinition = exports.ORatingDensityTypesName = exports.ORatingDensityDefinitions = exports.OInfiniteScrollStatusDefinitions = exports.ODraggableVariantsName = exports.ODraggableVariationDefinitions = exports.OToolbarVariantsName = exports.OToolbarVariationDefinitions = exports.OTextBoxTypesName = exports.OTextBoxTypeDefinitions = exports.OTextBoxVariantTypesName = exports.OTextBoxVariantTypeDefinitions = exports.OSwitchVariantsName = exports.OSwitchVariantDefinitions = exports.OTabVariantsName = exports.OTabVariantDefinitions = exports.OScrollOffsetTypesName = void 0;
4
+ exports.OSwitchVariantDefinitions = exports.OTabVariantsName = exports.OTabVariantDefinitions = exports.OScrollOffsetTypesName = exports.OScrollOffsetTypeDefinitions = exports.OSkeletonLoaderName = exports.OSkeletonLoaderTypeDefinitions = exports.OMultiSelectionStylesName = exports.OMultiSelectionStyleDefinitions = exports.OSelectTypesName = exports.OSelectTypeDefinitions = exports.OScrollTypesName = exports.OScrollTypeDefinitions = exports.OFlexVariantsName = exports.OFlexVariantDefinitions = exports.OVerticalAlignmentsName = exports.OVerticalAlignmentDefinitions = exports.OTabAlignmentsName = exports.OTabAlignmentDefinitions = exports.OHorizontalAlignmentsName = exports.OHorizontalAlignmentDefinitions = exports.OPanelVariantsName = exports.OPanelVariantDefinitions = exports.ORowDirectionsName = exports.ORowDirectionDefinitions = exports.OPaddingTypesName = exports.OPaddingTypeDefinitions = exports.ONavigationDrawerVariantsName = exports.ONavigationDrawerVariantDefinitions = exports.ONavigationDrawerLocationsName = exports.ONavigationDrawerLocationDefinitions = exports.OMenuLocationsName = exports.OMenuLocationDefinitions = exports.OListLineTypesName = exports.OListLineTypeDefinitions = exports.OListTypesName = exports.OListTypeDefinitions = exports.OListItemVariantsName = exports.OListItemVariantDefinitions = exports.ORatioTypesName = exports.ORatioTypeDefinitions = exports.OIconVariantsName = exports.OIconVariantDefinitions = exports.OIconAnimationsName = exports.OIconAnimationsDefinition = exports.OIconPresetsName = exports.OIconPresetDefinitions = exports.OPanelTypesName = exports.OPanelTypeDefinitions = exports.OPageDividerTypesName = void 0;
5
+ exports.OSkeletonLoaderVariantsName = exports.OSkeletonLoaderDefinitions = exports.OStepperVariantName = exports.OStepperVariantDefinitions = exports.OMultiTextInputModesName = exports.OMultiTextInputModesDefinitions = exports.OSplitpanesVariationTypesName = exports.OSplitpanesVariationDefinitions = exports.ORatingLengthName = exports.ORatingLengthDefinition = exports.ORatingDensityTypesName = exports.ORatingDensityDefinitions = exports.OInfiniteScrollStatusDefinitions = exports.ODraggableVariantsName = exports.ODraggableVariationDefinitions = exports.OToolbarVariantsName = exports.OToolbarVariationDefinitions = exports.OTextBoxTypesName = exports.OTextBoxTypeDefinitions = exports.OTextBoxVariantTypesName = exports.OTextBoxVariantTypeDefinitions = exports.OSwitchVariantsName = void 0;
6
6
  /** Select */
7
7
  exports.OSelectDefinitions = ["dropdown", "journey", "button"];
8
8
  exports.OSelectVariantsName = "OSelectVariants";
@@ -107,10 +107,6 @@ exports.ONavigationDrawerLocationsName = "ONavigationDrawerLocations";
107
107
  exports.ONavigationDrawerVariantDefinitions = ["default", "app", "editor", "dialog"];
108
108
  exports.ONavigationDrawerVariantsName = "ONavigationDrawerVariants";
109
109
  /**Splitpanes */
110
- /** Panel/Flex */
111
- //export const DividerTypeDefinitions = ["top", "bottom", "top bottom","left","right", "left right","top bottom left right","top bottom left","top bottom right"] as const;
112
- exports.ODividerTypeDefinitions = ["top", "bottom", "left", "right"];
113
- exports.ODividerTypesName = "ODividerTypes";
114
110
  exports.OPaddingTypeDefinitions = ["top", "bottom", "left", "right", "none"];
115
111
  exports.OPaddingTypesName = "ODividerTypes";
116
112
  exports.ORowDirectionDefinitions = ["row", "row-reverse"];
@@ -137,9 +133,6 @@ exports.OSelectTypeDefinitions = ["default", "add", "picker", "combobox", "virtu
137
133
  exports.OSelectTypesName = "OSelectTypes";
138
134
  exports.OMultiSelectionStyleDefinitions = ["default", "chips", "list"];
139
135
  exports.OMultiSelectionStylesName = "OMultiSelectionStyles";
140
- /** text */
141
- exports.OTextAlignmentDefinitions = ["left", "center", "right"];
142
- exports.OTextAlignmentTypesName = "OTextAlignmentTypes";
143
136
  /**Skeleton loader */
144
137
  exports.OSkeletonLoaderTypeDefinitions = ["text", "image", "button", "chip", "actions", "avatar", "divider", "subtitle", "heading", "sentences", "paragraph", "article", "card", "card-avatar", "date-picker", "date-picker-options", "date-picker-days", "list-item", "list-item-avatar", "list-item-two-line", "list-item-avatar-two-line", "list-item-three-line", "list-item-avatar-three-line", "table", "table-heading", "table-thead", "table-tbody", "table-row-divider", "table-row", "table-tfoot"];
145
138
  exports.OSkeletonLoaderName = "OSkeletonLoaderTypes";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.458-dev",
4
+ "version": "8.0.460-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -20,4 +20,6 @@ export declare const LayoutEditorCanvasStyles: {
20
20
  settingsDrawer: NestedCSSPropertiesExtends;
21
21
  closeButton: NestedCSSPropertiesExtends;
22
22
  rightResizer: (backgroundColor: string) => NestedCSSPropertiesExtends;
23
+ fixedPane: NestedCSSPropertiesExtends;
24
+ drawerWrapper: NestedCSSPropertiesExtends;
23
25
  };