@omnia/fx 8.0.476-dev → 8.0.478-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 (21) hide show
  1. package/internal-do-not-import-from-here/stores/SizeContainerStore.d.ts +4 -0
  2. package/internal-do-not-import-from-here/ux/editorchrome/EditorChrome_testSetup.d.ts +31 -0
  3. package/internal-do-not-import-from-here/ux/editorchrome/buttons/ToolbarButton.css.d.ts +1 -1
  4. package/internal-do-not-import-from-here/ux/editorchrome/buttons/ToolbarButton.d.ts +2 -2
  5. package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.css.d.ts +0 -0
  6. package/internal-do-not-import-from-here/ux/editorchrome/hooks/index.d.ts +1 -0
  7. package/internal-do-not-import-from-here/ux/editorchrome/hooks/useRenderActions.d.ts +32 -0
  8. package/internal-do-not-import-from-here/ux/editorchrome/renderers/EditorChromeCompactRenderer.d.ts +11 -0
  9. package/internal-do-not-import-from-here/ux/editorchrome/renderers/EditorChromeRegularRenderer.d.ts +11 -0
  10. package/internal-do-not-import-from-here/ux/editorchrome/renderers/index.d.ts +2 -0
  11. package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorChromeStoreV2.d.ts +117 -8
  12. package/internal-do-not-import-from-here/ux/editorchrome/toolbars/HeaderToolbar.d.ts +7 -0
  13. package/internal-do-not-import-from-here/ux/editorchrome/toolbars/LeftPanelToolbar.d.ts +7 -0
  14. package/internal-do-not-import-from-here/ux/editorchrome/toolbars/RightPanelToolbar.d.ts +7 -0
  15. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/SizeContainer.css.d.ts +4 -2
  16. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +3 -0
  17. package/package.json +2 -2
  18. package/internal-do-not-import-from-here/ux/editorchrome/buttons/ExtendedToolbarButton.css.d.ts +0 -77
  19. package/internal-do-not-import-from-here/ux/editorchrome/buttons/ExtendedToolbarButton.d.ts +0 -9
  20. /package/internal-do-not-import-from-here/ux/editorchrome/{header/HeaderToolbar.d.ts → toolbars/FooterToolbar.d.ts} +0 -0
  21. /package/internal-do-not-import-from-here/ux/editorchrome/{header → toolbars}/HeaderToolbar.css.d.ts +0 -0
@@ -1,3 +1,4 @@
1
+ import { DisplayBreakpointTypes } from "../models";
1
2
  export declare const useSizeContainerStore: () => {
2
3
  state: {
3
4
  width: string;
@@ -9,6 +10,9 @@ export declare const useSizeContainerStore: () => {
9
10
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
10
11
  actions: import("./DefineStore").StoreReturnDefineAction<{
11
12
  setWidth: (width: string) => void;
13
+ resetWidth: () => void;
14
+ setBreakPoint: (breakPoint: DisplayBreakpointTypes) => void;
15
+ resetZoomLevel: () => void;
12
16
  setZoomLevel: (zoomLevel: number) => void;
13
17
  }>;
14
18
  get: {};
@@ -0,0 +1,31 @@
1
+ import { IChromeActionItem, IEditorChromeRegistration } from "@omnia/fx-models";
2
+ import { useEditorChromeStore } from "..";
3
+ export declare function useDefineEditorChromeTestSetup(editorStore: ReturnType<typeof useEditorChromeStore>): {
4
+ tabs: {
5
+ tab1: IEditorChromeRegistration;
6
+ tab2: IEditorChromeRegistration;
7
+ tab3: IEditorChromeRegistration;
8
+ };
9
+ buttons: {
10
+ header: {
11
+ toggleGrid: IChromeActionItem;
12
+ };
13
+ footer: {
14
+ active: IChromeActionItem;
15
+ noToggle: IChromeActionItem;
16
+ toggle: IChromeActionItem;
17
+ approve: IChromeActionItem;
18
+ cancel: IChromeActionItem;
19
+ extendedButton1: IChromeActionItem;
20
+ extendedButton2: IChromeActionItem;
21
+ extendedButton3: IChromeActionItem;
22
+ };
23
+ drawer: {
24
+ settingsTab: IChromeActionItem;
25
+ drawerToolbarSettings: IChromeActionItem;
26
+ drawerToolbarPreview: IChromeActionItem;
27
+ drawerToolbarNoToggle: IChromeActionItem;
28
+ };
29
+ };
30
+ registerTabs: () => void;
31
+ };
@@ -73,5 +73,5 @@ export declare const ToolbarButtonStyles: {
73
73
  object: typeof import("../../aurora/styling/styles").TextStyles.getBlueprintTextStylingObject;
74
74
  };
75
75
  };
76
- wrapper: (dark: boolean, border: "left" | "right" | "left right") => string;
76
+ wrapper: (dark: boolean, border: "left" | "right" | "left right" | "bottom") => string;
77
77
  };
@@ -1,9 +1,9 @@
1
1
  import { DefineProp, DefinePropTheming } from "@omnia/fx/ux";
2
2
  import { IIcon } from "@omnia/fx-models";
3
- type ToolbarButtonProps = DefinePropTheming & DefineProp<"icon", IIcon> & DefineProp<"active", boolean> & DefineProp<"title", string> & DefineProp<"border", "left" | "right" | "left right">;
3
+ type ToolbarButtonProps = DefinePropTheming & DefineProp<"icon", IIcon> & DefineProp<"active", boolean> & DefineProp<"loading", boolean> & DefineProp<"disabled", boolean> & DefineProp<"position", "topBar" | "bottomBar" | "rightBar"> & DefineProp<"title", string> & DefineProp<"border", "left" | "right" | "left right" | "bottom">;
4
4
  declare const _default: (props: import("@omnia/fx/ux").ExtractProps<ToolbarButtonProps> & {} & {
5
5
  "v-slots"?: {} & Omit<{
6
6
  default?: import("vue").Slot;
7
7
  }, never>;
8
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "border" | "title" | "colorSchemaType" | "active" | "colors"> & import("@omnia/fx/ux").VNodeEvents) => any;
8
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "border" | "position" | "title" | "colorSchemaType" | "active" | "disabled" | "loading" | "colors"> & import("@omnia/fx/ux").VNodeEvents) => any;
9
9
  export default _default;
@@ -0,0 +1 @@
1
+ export * from "./useRenderActions";
@@ -0,0 +1,32 @@
1
+ import { IChromeActionItem } from "@omnia/fx-models";
2
+ export interface RenderActionsOptions {
3
+ /**
4
+ * The border style for the toolbar buttons
5
+ * @default "right"
6
+ */
7
+ border?: "left" | "right" | "left right" | "bottom";
8
+ startBorder?: "left" | "right" | "left right" | "bottom";
9
+ /**
10
+ * Whether to disable the toggle functionality
11
+ * @default false
12
+ */
13
+ disableToggle?: boolean;
14
+ /**
15
+ * The position of the toolbar
16
+ */
17
+ position: "topBar" | "bottomBar" | "rightBar";
18
+ /**
19
+ * The rendering key to use for Vue reactivity
20
+ */
21
+ renderingKey: string;
22
+ /**
23
+ * The sync function to call after button interactions
24
+ */
25
+ syncFunction: () => void;
26
+ }
27
+ /**
28
+ * Custom hook for rendering action buttons with consistent double-click prevention and async handling
29
+ * @param options Configuration options for rendering actions
30
+ * @returns Function to render actions
31
+ */
32
+ export declare function useRenderActions(options: RenderActionsOptions): (items: IChromeActionItem[]) => import("vue").VNodeChild[];
@@ -0,0 +1,11 @@
1
+ import { DefineEmit, DefineProp } from "@omnia/fx/ux";
2
+ import { IIcon, guid } from "../../../models";
3
+ type EditorChromeProps = DefineProp<"icon", IIcon> & DefineProp<"title", string> & DefineProp<"subTitle", string> & DefineProp<"actionToolbarRoles", guid[]> & DefineProp<"hideCloseButton", boolean> & DefineEmit<"close", () => true>;
4
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<EditorChromeProps> & {
5
+ onClose?: () => any;
6
+ } & {
7
+ "v-slots"?: {} & Omit<{
8
+ default?: import("vue").Slot;
9
+ }, never>;
10
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "title" | "hideCloseButton" | "subTitle" | "actionToolbarRoles" | "emit:close"> & import("@omnia/fx/ux").VNodeEvents) => any;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import { DefineEmit, DefineProp } from "@omnia/fx/ux";
2
+ import { IIcon, guid } from "../../../models";
3
+ type EditorChromeProps = DefineProp<"icon", IIcon> & DefineProp<"title", string> & DefineProp<"subTitle", string> & DefineProp<"actionToolbarRoles", guid[]> & DefineProp<"hideCloseButton", boolean> & DefineEmit<"close", () => true>;
4
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<EditorChromeProps> & {
5
+ onClose?: () => any;
6
+ } & {
7
+ "v-slots"?: {} & Omit<{
8
+ default?: import("vue").Slot;
9
+ }, never>;
10
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "title" | "hideCloseButton" | "subTitle" | "actionToolbarRoles" | "emit:close"> & import("@omnia/fx/ux").VNodeEvents) => any;
11
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export * from "./EditorChromeRegularRenderer";
2
+ export * from "./EditorChromeCompactRenderer";
@@ -3,10 +3,22 @@ import { DisplayBreakpointTypes, guid, IEditorChromeRegistration, NotificationMe
3
3
  export declare const useEditorChromeStore: () => {
4
4
  state: {
5
5
  finishedLoading: boolean;
6
- renderingKey: guid;
6
+ compactMode: boolean;
7
+ renderingKeys: {
8
+ header: guid;
9
+ footer: guid;
10
+ leftDrawer: guid;
11
+ rightDrawer: guid;
12
+ };
7
13
  drawers: {
8
- showLeftDrawer: boolean;
9
- showRightDrawer: boolean;
14
+ left: {
15
+ enabled: boolean;
16
+ show: boolean;
17
+ };
18
+ right: {
19
+ enabled: boolean;
20
+ show: boolean;
21
+ };
10
22
  };
11
23
  tabs: {
12
24
  activeIndex: number;
@@ -14,6 +26,64 @@ export declare const useEditorChromeStore: () => {
14
26
  items: IEditorChromeRegistration[];
15
27
  };
16
28
  canvasSettings: {
29
+ scroll: {
30
+ store: {
31
+ state: {
32
+ elementRef: HTMLElement;
33
+ elementId: string;
34
+ disableScrolling: boolean;
35
+ height: string;
36
+ width: string;
37
+ scrollingDirection: import("@omnia/fx-models").OScrollTypesCombination;
38
+ coordinates: {
39
+ readonly left: number;
40
+ readonly right: number;
41
+ readonly bottom: number;
42
+ readonly top: number;
43
+ };
44
+ };
45
+ events: import("@omnia/fx/stores").StoreEvents<{
46
+ elementRef: HTMLElement;
47
+ elementId: string;
48
+ disableScrolling: boolean;
49
+ height: string;
50
+ width: string;
51
+ scrollingDirection: import("@omnia/fx-models").OScrollTypesCombination;
52
+ coordinates: {
53
+ readonly left: number;
54
+ readonly right: number;
55
+ readonly bottom: number;
56
+ readonly top: number;
57
+ };
58
+ }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
59
+ actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
60
+ scroll: () => void;
61
+ calculateDynamicHeight: () => void;
62
+ setHeight: (height: string) => void;
63
+ setWidth: (width: string) => void;
64
+ setScrolling: (scrolling: import("@omnia/fx-models").OScrollTypesCombination) => void;
65
+ calculateScrollHeight: (referenceElementIds: string[]) => void;
66
+ isElementNameStillInView: (elementName: string) => boolean;
67
+ isElementIdStillInView: (elementId: string) => boolean;
68
+ scrollToStart: () => void;
69
+ scrollToElementId: (elementId: string, anchor?: import("../..").AnchorPosition, handler?: (target: HTMLElement, container: HTMLElement) => void, immediate?: boolean) => void;
70
+ scrollToElementName: (elementName: string, anchor?: import("../..").AnchorPosition) => void;
71
+ scrollToElement: (element: HTMLElement, anchor?: import("../..").AnchorPosition, handler?: (target: HTMLElement, container: HTMLElement) => void) => void;
72
+ scrollToSelector: (selector: string, anchor?: import("../..").AnchorPosition, handler?: (target: HTMLElement, container: HTMLElement) => void, immediate?: boolean) => void;
73
+ }>;
74
+ get: {
75
+ readonly coordinates: {
76
+ readonly left: number;
77
+ readonly right: number;
78
+ readonly bottom: number;
79
+ readonly top: number;
80
+ };
81
+ readonly scrollPosition: number;
82
+ };
83
+ } & {
84
+ dispose?: () => void;
85
+ };
86
+ };
17
87
  zoom: {
18
88
  enabled: boolean;
19
89
  level: number;
@@ -21,6 +91,26 @@ export declare const useEditorChromeStore: () => {
21
91
  displaySize: {
22
92
  enabled: boolean;
23
93
  value: "l" | "s" | "m";
94
+ store: {
95
+ state: {
96
+ width: string;
97
+ zoomLevel: number;
98
+ };
99
+ events: import("@omnia/fx/stores").StoreEvents<{
100
+ width: string;
101
+ zoomLevel: number;
102
+ }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
103
+ actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
104
+ setWidth: (width: string) => void;
105
+ resetWidth: () => void;
106
+ setBreakPoint: (breakPoint: DisplayBreakpointTypes) => void;
107
+ resetZoomLevel: () => void;
108
+ setZoomLevel: (zoomLevel: number) => void;
109
+ }>;
110
+ get: {};
111
+ } & {
112
+ dispose?: () => void;
113
+ };
24
114
  };
25
115
  };
26
116
  splitPanes: {
@@ -48,8 +138,19 @@ export declare const useEditorChromeStore: () => {
48
138
  };
49
139
  };
50
140
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
51
- displayBreakpoint: () => {
52
- set: (value: DisplayBreakpointTypes) => void;
141
+ header: () => {
142
+ syncButtons: () => void;
143
+ };
144
+ footer: () => {
145
+ syncButtons: () => void;
146
+ };
147
+ canvas: () => {
148
+ syncDisplaySettings: () => void;
149
+ setDisplayBreakPoint: (value: DisplayBreakpointTypes) => void;
150
+ zoomIn: (step?: number) => void;
151
+ zoomOut: (step?: number) => void;
152
+ setZoom: (level: number) => void;
153
+ resetZoom: () => void;
53
154
  };
54
155
  tabs: () => {
55
156
  syncEditor: () => void;
@@ -58,8 +159,14 @@ export declare const useEditorChromeStore: () => {
58
159
  };
59
160
  showNotification: (message: NotificationMessage) => void;
60
161
  drawers: () => {
61
- toggleLeftDrawer: (value: boolean) => void;
62
- toggleRightDrawer: (value: boolean) => void;
162
+ left: {
163
+ syncButtons: () => void;
164
+ toggle: (value: boolean) => void;
165
+ };
166
+ right: {
167
+ syncButtons: (currentId: guid) => void;
168
+ toggle: (value: boolean) => void;
169
+ };
63
170
  };
64
171
  splitPanes: () => {
65
172
  wrapper: {
@@ -74,7 +181,9 @@ export declare const useEditorChromeStore: () => {
74
181
  init: () => void;
75
182
  }>;
76
183
  get: {};
77
- rules: {};
184
+ rules: {
185
+ showLeftDrawerSettings: () => boolean;
186
+ };
78
187
  } & {
79
188
  dispose?: () => void;
80
189
  };
@@ -0,0 +1,7 @@
1
+ import { DefinePropTheming } from "@omnia/fx/ux";
2
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefinePropTheming> & {} & {
3
+ "v-slots"?: {} & Omit<{
4
+ default?: import("vue").Slot;
5
+ }, never>;
6
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "colors"> & import("@omnia/fx/ux").VNodeEvents) => any;
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import { DefinePropTheming } from "@omnia/fx/ux";
2
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefinePropTheming> & {} & {
3
+ "v-slots"?: {} & Omit<{
4
+ default?: import("vue").Slot;
5
+ }, never>;
6
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "colors"> & import("@omnia/fx/ux").VNodeEvents) => any;
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import { DefinePropTheming } from "@omnia/fx/ux";
2
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefinePropTheming> & {} & {
3
+ "v-slots"?: {} & Omit<{
4
+ default?: import("vue").Slot;
5
+ }, never>;
6
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "colors"> & import("@omnia/fx/ux").VNodeEvents) => any;
7
+ export default _default;
@@ -1,4 +1,6 @@
1
1
  export declare const SizeContainerStyles: {
2
- wrapper: (backgroundColor: any) => string;
3
- wrapperContent: (backgroundColor: any, zoomLevel: number, width: any) => string;
2
+ wrapper: (backgroundColor: any) => Readonly<import("internal/fx/ux/Styles.stylex").StylexValue>;
3
+ baseContainer: (backgroundColor: any) => Readonly<import("internal/fx/ux/Styles.stylex").StylexValue>;
4
+ sizeWrapper: (width: any) => Readonly<import("internal/fx/ux/Styles.stylex").StylexValue>;
5
+ zoomTransform: (zoomLevel: number) => import("internal/fx/ux/Styles.stylex").StylexValue;
4
6
  };
@@ -84,6 +84,9 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
84
84
  }, Record<string, IMessageBusTopicPublishSubscriber<any>>>;
85
85
  actions: import("../../../stores").StoreReturnDefineAction<{
86
86
  setWidth: (width: string) => void;
87
+ resetWidth: () => void;
88
+ setBreakPoint: (breakPoint: import("@omnia/fx-models").DisplayBreakpointTypes) => void;
89
+ resetZoomLevel: () => void;
87
90
  setZoomLevel: (zoomLevel: number) => void;
88
91
  }>;
89
92
  get: {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.476-dev",
4
+ "version": "8.0.478-dev",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "author": "Omnia Digital Workplace AB",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.476-dev",
23
+ "@omnia/fx-models": "8.0.478-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",
@@ -1,77 +0,0 @@
1
- export declare const ToolbarButtonStyles: {
2
- themeStyling: {
3
- input: {
4
- stylex: typeof import("../../aurora/styling/styles/InputStyling").InputStyling.getFieldBlueprintStylex;
5
- };
6
- icons: {
7
- stylex: typeof import("../../aurora/styling/styles").IconStyling.getIconBlueprintStylex;
8
- };
9
- colors: {
10
- dividingOpacity: typeof import("../../aurora/styling/styles").colorStyling.dividingOpacity;
11
- backgroundOpacity: typeof import("../../aurora/styling/styles").colorStyling.backgroundOpacity;
12
- setColorOpacity: typeof import("@omnia/fx-models").setColorOpacity;
13
- };
14
- elementStyling: {
15
- colorStylex: typeof import("../../aurora/styling/styles").colorStyling.getColorStylingx;
16
- selectedTableRowStylex: typeof import("../../aurora/styling/styles").generalStylex.getSelectedTableRowStylex;
17
- scrollStylex: typeof import("../../aurora/styling/styles").generalStylex.getScrollStylex;
18
- borderDividerStylex: typeof import("../../aurora/styling/styles").generalStylex.getBorderDividerStylex;
19
- hoverStylex: typeof import("../../aurora/styling/styles").generalStylex.getHoverStylex;
20
- css: {
21
- generateAllStylesSchema: () => {
22
- [key: string]: string;
23
- };
24
- generateVariableStyle: (color: import("@omnia/fx-models").ColorValue) => {
25
- [key: string]: string;
26
- };
27
- generateValueVariable: (color: import("@omnia/fx-models").ColorValue) => string;
28
- };
29
- };
30
- typography: {
31
- valueStylex: typeof import("../../aurora/styling/styles/Typography").TypographyStyling.typographyStylexFromValueStylex;
32
- typeStylex: typeof import("../../aurora/styling/styles/Typography").TypographyStyling.typographyTypeStylex;
33
- stylex: typeof import("../../aurora/styling/styles/Typography").TypographyStyling.typographyStylex;
34
- fontStyling: typeof import("../../aurora/styling/styles/Typography").fontStyling;
35
- typeStyling: (typographyType: import("@omnia/fx-models").TextStyleTypes | import("@omnia/fx-models").TextStyleType, size: import("@omnia/fx-models").TextStyleSize | import("@omnia/fx-models").TextStyleSizes, blueprint: import("@omnia/fx-models").TypographyBlueprint) => {
36
- baseStyles: {
37
- fontFamily: string;
38
- fontSize: string;
39
- fontWeight: number;
40
- lineHeight: string;
41
- fontStyle: string;
42
- textTransform: any;
43
- letterSpacing: string;
44
- textDecoration: string;
45
- $nest: {};
46
- };
47
- mediumStyles: any;
48
- smallStyles: any;
49
- queryOnSmallScreen: import("typestyle/lib/types").MediaQuery;
50
- queryOnMediumScreen: import("typestyle/lib/types").MediaQuery;
51
- };
52
- };
53
- spacing: {
54
- paddingStylex: (value: import("@omnia/fx-models").Spacing | import("@omnia/fx-models").SpacingValue, blueprint?: ReturnType<typeof import("@omnia/fx/ux").useSpacingBlueprintStore>) => import("@omnia/fx/ux").StylexValue;
55
- marginStylex: (value: import("@omnia/fx-models").Spacing | import("@omnia/fx-models").SpacingValue, blueprint?: ReturnType<typeof import("@omnia/fx/ux").useSpacingBlueprintStore>) => import("@omnia/fx/ux").StylexValue;
56
- value: (value: import("@omnia/fx-models").SpacingValue, blueprint?: ReturnType<typeof import("@omnia/fx/ux").useSpacingBlueprintStore>) => number;
57
- values: (value: import("@omnia/fx-models").Spacing, blueprint?: ReturnType<typeof import("@omnia/fx/ux").useSpacingBlueprintStore>) => import("@omnia/fx-models").Spacing;
58
- };
59
- fill: {
60
- stylex: typeof import("../../aurora/styling/styles").FillStyling.getBlueprintFillStylex;
61
- stylexObject: typeof import("../../aurora/styling/styles").FillStyling.getBlueprintFillObjectStylex;
62
- };
63
- border: {
64
- stylex: typeof import("../../aurora/styling/styles").BorderStyling.getBlueprintBorderStylex;
65
- stylexObject: typeof import("../../aurora/styling/styles").BorderStyling.getBlueprintBorderObjectStylex;
66
- };
67
- background: {
68
- stylex: typeof import("../../aurora/styling/styles").BackgroundStyling.getBlueprintBackgroundStylex;
69
- stylexObject: typeof import("../../aurora/styling/styles").BackgroundStyling.getBlueprintBackgroundObjectStylex;
70
- };
71
- text: {
72
- stylex: typeof import("../../aurora/styling/styles").TextStyles.getBlueprintTextStylex;
73
- object: typeof import("../../aurora/styling/styles").TextStyles.getBlueprintTextStylingObject;
74
- };
75
- };
76
- wrapper: (dark: boolean, selected: boolean) => string;
77
- };
@@ -1,9 +0,0 @@
1
- import { DefineProp, DefinePropTheming } from "@omnia/fx/ux";
2
- import { IIcon } from "@omnia/fx-models";
3
- type ToolbarButtonProps = DefinePropTheming & DefineProp<"icon", IIcon> & DefineProp<"active", boolean> & DefineProp<"title", string> & DefineProp<"border", "left" | "right" | "left right">;
4
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<ToolbarButtonProps> & {} & {
5
- "v-slots"?: {} & Omit<{
6
- default?: import("vue").Slot;
7
- }, never>;
8
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "border" | "title" | "colorSchemaType" | "active" | "colors"> & import("@omnia/fx/ux").VNodeEvents) => any;
9
- export default _default;