@omnia/fx 8.0.296-dev → 8.0.297-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/internal-do-not-import-from-here/contexts/OmniaContext.d.ts +2 -2
- package/internal-do-not-import-from-here/contexts/OmniaContextProvider.d.ts +2 -2
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +87 -87
- package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/app/ExposeToUxCore.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/app/index.d.ts +1 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditPermissionDialog.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/models/Theme.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/store/ThemeEditorStore.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/aurora/components/backgroundstyle/BackgroundStyleViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPreview.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/chrome/ChromeViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaPicker.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPreview.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/stylepicker/StylePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeEditor.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemePicker.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemePicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeViewer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/designkits/default/themes/ThemeDefinitions.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/aurora/designkits/default/useDefaultDesignKit.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/aurora/designkits/documentation/themes/ThemeDefinitions.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/designkits/documentation/useDocumentationDesignKit.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/designkits/editor/themes/ThemeDefinitions.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/aurora/designkits/editor/useEditorDesignKit.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/designkits/shared/ThemeDefinitionInstance.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/designkits/useDesignKits.d.ts +14 -14
- package/internal-do-not-import-from-here/ux/aurora/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/store/ColorManager.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/store/ColorSchemaStore.d.ts +12 -3
- package/internal-do-not-import-from-here/ux/aurora/store/FontStore.d.ts +5 -6
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +24 -7428
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeService.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/aurora/{themingV3/store/ThemingStore.d.ts → store/ThemeStorage.d.ts} +14 -15
- package/internal-do-not-import-from-here/ux/aurora/store/{ThemeStoreV2.d.ts → ThemeStore.d.ts} +1 -1
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +24 -7428
- package/internal-do-not-import-from-here/ux/aurora/store/index.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +6 -12
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Blueprints.d.ts +12 -9
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Chrome.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Colors.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/General.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Spacing.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Typography.d.ts +18 -18
- package/internal-do-not-import-from-here/ux/aurora/themeprovider/ThemeProvider.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/governancedashboard/BarChartIndicator.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/image/scalingsettings/ScalingSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/blockplaceholder/BlockPlaceholder.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/canvastoolbar/CanvasToolbar.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TemplatePreview.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/SizeContainer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/targetselector/TargetSelector.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/layoutactionhandler/LayoutAction.stylex.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvas.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvas.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/LayoutEditorThemingManager.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/ThemingRenditionManager.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutItemselector/LayoutItemSelection.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutItemselector/LayoutItemSelection.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutItemselector/LayoutItemSelector.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutItemselector/LayoutItemSelector.stylex.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/messaging/InternalTopics.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/messaging/Topics.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.stylex.d.ts +15 -15
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/card/Card.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.stylex.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/column/Column.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.stylex.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.stylex.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.stylex.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/flex/Row.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/form/Form.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.stylex.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/layout/Layout.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/lazy/Lazy.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/oxide/link/link.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/list/List.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.stylex.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/motion/Motion.d.ts +12 -4
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/pagination/Pagination.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.stylex.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/radio/Radio.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/rangeslider/RangeSlider.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/rangeslider/RangeSlider.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/select/Select.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/slider/Slider.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/splitpane/Splitpane.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/stepper/Stepper.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/stickycontainer/StickyContainer.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/switch/Switch.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/tab/Tab.stylex.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.stylex.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/table/Table.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/text/Text.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.stylex.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.stylex.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/post/IPost.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/post/Post.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/post/templates/PostTemplate.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/rollupempty/RollupEmpty.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/securitytrimmer/SecurityTrimmer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/settings/SettingsPane.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/social/Comment.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/social/templates/CommentLikeTemplate.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/theming/InternalTheming.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming/ThemeManager.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/theming/ThemeStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming/Theming.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/use/UseDraggable.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/VelcronStylesProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/VelcronDefinitionPicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/VelcronDefinitionPreview.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronStyles.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/AlignmentEditor.d.ts +76 -76
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/LayoutEditorTabRenderer.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItem.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItemFactory.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/InternalVersionedLayoutRenderer.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +15 -15
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/ThemingService.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/aurora/themingV3/index.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/aurora/themingV3/model/ThemingBoot.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/aurora/themingV3/model/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/themingV3/service/ThemingService.d.ts +0 -9
- package/internal-do-not-import-from-here/ux/aurora/themingV3/service/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/themingV3/store/index.d.ts +0 -1
@@ -1,6 +1,6 @@
|
|
1
1
|
export * from "./ColorManager";
|
2
|
-
export * from "./
|
3
|
-
export
|
2
|
+
export * from "./ThemeStore";
|
3
|
+
export { type ColorSchemaStoreType, useColorSchemaStore } from "./ColorSchemaStore";
|
4
4
|
export * from "./ColorSchemaManager";
|
5
5
|
export * from "./ThemeContextStore";
|
6
6
|
export * from "./SpacingBlueprintStore";
|
@@ -9,3 +9,4 @@ export * from "./ComponentBlueprintStore";
|
|
9
9
|
export * from "./TemplateRegistrationStore";
|
10
10
|
export * from "./FontStore";
|
11
11
|
export * from "./SpacingMigration";
|
12
|
+
export * from "./ThemeStorage";
|
@@ -46,28 +46,22 @@ export declare function useThemeStyling(): {
|
|
46
46
|
};
|
47
47
|
};
|
48
48
|
chrome: {
|
49
|
-
chromeStylex: (blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingBlueprint: SpacingBlueprint) => Readonly<import("../..").
|
49
|
+
chromeStylex: (blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingBlueprint: SpacingBlueprint) => Readonly<import("../..").StylexValue>;
|
50
50
|
};
|
51
51
|
blueprints: {
|
52
52
|
buttonStylex: typeof blueprintStylex.getButtonBlueprintStylex;
|
53
53
|
iconStyleX: typeof blueprintStylex.getIconBlueprintStylex;
|
54
|
-
|
55
|
-
|
56
|
-
fillObject: typeof blueprintStyles.getBlueprintFillObject;
|
54
|
+
chipStylex: typeof blueprintStylex.getChipBlueprintStylex;
|
55
|
+
fillStylex: typeof blueprintStylex.getBlueprintFillStylex;
|
57
56
|
borderStylex: typeof blueprintStylex.getBlueprintBorderStylex;
|
58
57
|
backgroundStylex: typeof blueprintStylex.getBlueprintBackgroundStylex;
|
59
|
-
text: typeof blueprintStyles.getBlueprintTextStyling;
|
60
58
|
textStylex: typeof blueprintStylex.getBlueprintTextStylex;
|
61
|
-
textObject: typeof blueprintStyles.getBlueprintTextStylingObject;
|
62
59
|
tabStylex: typeof blueprintStylex.getBlueprintTabStylex;
|
63
60
|
tabsStylex: typeof blueprintStylex.getBlueprintTabsStylex;
|
64
|
-
|
65
|
-
tabs: typeof blueprintStyles.getBlueprintTabsStyling;
|
61
|
+
textObject: typeof blueprintStyles.getBlueprintTextStylingObject;
|
66
62
|
spacing: {
|
67
|
-
paddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").
|
68
|
-
marginStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").
|
69
|
-
padding: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
|
70
|
-
margin: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
|
63
|
+
paddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").StylexValue>;
|
64
|
+
marginStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").StylexValue>;
|
71
65
|
value: (value: SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => number;
|
72
66
|
values: (value: Spacing, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Spacing;
|
73
67
|
};
|
@@ -1,18 +1,21 @@
|
|
1
1
|
import { FillDefinitionValue, BorderStylingDefinition, ButtonBlueprint, Spacing, SpacingValue, BackgroundDefinition, TextBlueprint, IconBlueprint, TabsBlueprint, ChipBlueprint } from "@omnia/fx-models";
|
2
2
|
import { NestedCSSProperties } from "typestyle/lib/types";
|
3
3
|
import { useColorSchemaStore, useSpacingBlueprintStore, useTypographyBlueprintStore } from "../../store";
|
4
|
-
import {
|
4
|
+
import { StylexValue } from "internal/fx/ux/Styles.stylex";
|
5
5
|
export declare namespace blueprintStylex {
|
6
|
+
function getBlueprintFillStylex(definition: FillDefinitionValue, colors?: ReturnType<typeof useColorSchemaStore>): Readonly<StylexValue>;
|
7
|
+
/** Chip */
|
8
|
+
function getChipBlueprintStylex(bluePrint: ChipBlueprint, colors: ReturnType<typeof useColorSchemaStore>): Readonly<StylexValue>;
|
6
9
|
/**Tab styling */
|
7
|
-
function getBlueprintBorderStylex(definition: BorderStylingDefinition, gradientFillFallbackColor?: string, colors?: ReturnType<typeof useColorSchemaStore>): Readonly<
|
8
|
-
function getBlueprintBackgroundStylex(definition: BackgroundDefinition, gradientFillFallbackColor?: string, colors?: ReturnType<typeof useColorSchemaStore>): Readonly<
|
9
|
-
function getBlueprintTabStylex(blueprint: TabsBlueprint, colors: ReturnType<typeof useColorSchemaStore>, active?: boolean): Readonly<
|
10
|
-
function getBlueprintTabsStylex(blueprint: TabsBlueprint, colors: ReturnType<typeof useColorSchemaStore>): Readonly<
|
10
|
+
function getBlueprintBorderStylex(definition: BorderStylingDefinition, gradientFillFallbackColor?: string, colors?: ReturnType<typeof useColorSchemaStore>): Readonly<StylexValue>;
|
11
|
+
function getBlueprintBackgroundStylex(definition: BackgroundDefinition, gradientFillFallbackColor?: string, colors?: ReturnType<typeof useColorSchemaStore>): Readonly<StylexValue>;
|
12
|
+
function getBlueprintTabStylex(blueprint: TabsBlueprint, colors: ReturnType<typeof useColorSchemaStore>, active?: boolean): Readonly<StylexValue>;
|
13
|
+
function getBlueprintTabsStylex(blueprint: TabsBlueprint, colors: ReturnType<typeof useColorSchemaStore>): Readonly<StylexValue>;
|
11
14
|
/**Text styling */
|
12
|
-
function getBlueprintTextStylex(bluePrint: TextBlueprint, colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>): Readonly<
|
13
|
-
function getIconBlueprintStylex(bluePrint: IconBlueprint, colors: ReturnType<typeof useColorSchemaStore>, duoTone: boolean, nested?: boolean): Readonly<
|
15
|
+
function getBlueprintTextStylex(bluePrint: TextBlueprint, colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>): Readonly<StylexValue>;
|
16
|
+
function getIconBlueprintStylex(bluePrint: IconBlueprint, colors: ReturnType<typeof useColorSchemaStore>, duoTone: boolean, nested?: boolean): Readonly<StylexValue>;
|
14
17
|
/**Button styling */
|
15
|
-
function getButtonBlueprintStylex(bluePrint: ButtonBlueprint, colors: ReturnType<typeof useColorSchemaStore>): Readonly<
|
18
|
+
function getButtonBlueprintStylex(bluePrint: ButtonBlueprint, colors: ReturnType<typeof useColorSchemaStore>): Readonly<StylexValue>;
|
16
19
|
function getBlueprintSpacingValue(value: any, blueprint?: ReturnType<typeof useSpacingBlueprintStore>): number;
|
17
20
|
}
|
18
21
|
export declare namespace blueprintStyles {
|
@@ -26,7 +29,7 @@ export declare namespace blueprintStyles {
|
|
26
29
|
/**Spacing styling */
|
27
30
|
function getBlueprintSpacingValues(value: Spacing, blueprint?: ReturnType<typeof useSpacingBlueprintStore>): Spacing;
|
28
31
|
function getBlueprintSpacingValue(value: SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>): number;
|
29
|
-
function getBlueprintSpacingStylingx(value: Spacing | SpacingValue, spacingType?: "margin" | "padding", blueprint?: ReturnType<typeof useSpacingBlueprintStore>): Readonly<
|
32
|
+
function getBlueprintSpacingStylingx(value: Spacing | SpacingValue, spacingType?: "margin" | "padding", blueprint?: ReturnType<typeof useSpacingBlueprintStore>): Readonly<StylexValue>;
|
30
33
|
function getBlueprintSpacingStyling(value: Spacing | SpacingValue, spacingType?: "margin" | "padding", blueprint?: ReturnType<typeof useSpacingBlueprintStore>): string;
|
31
34
|
/**Button styling */
|
32
35
|
function getButtonBlueprintStyling(bluePrint: ButtonBlueprint, colors: ReturnType<typeof useColorSchemaStore>): string;
|
@@ -4,6 +4,6 @@ export declare const chromeStyles: {
|
|
4
4
|
getChromeStyling: typeof getChromeStyling;
|
5
5
|
getChromeStylingx: typeof getChromeStylingx;
|
6
6
|
};
|
7
|
-
declare function getChromeStylingx(blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingBlueprint: SpacingBlueprint): Readonly<import("internal/fx/ux/Styles.stylex").
|
7
|
+
declare function getChromeStylingx(blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingBlueprint: SpacingBlueprint): Readonly<import("internal/fx/ux/Styles.stylex").StylexValue>;
|
8
8
|
declare function getChromeStyling(blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingBlueprint: SpacingBlueprint): any[];
|
9
9
|
export {};
|
@@ -4,9 +4,9 @@ export declare namespace colorStyling {
|
|
4
4
|
function backgroundOpacity(dark: boolean, opacity?: Number): string;
|
5
5
|
function backgroundOpacityOnColor(color: string, dark: boolean, opacity?: Number): any;
|
6
6
|
function getColorStylingx(color: string, opacity?: number): {
|
7
|
-
all: Readonly<import("internal/fx/ux/Styles.stylex").
|
8
|
-
background: import("internal/fx/ux/Styles.stylex").
|
9
|
-
color: import("internal/fx/ux/Styles.stylex").
|
7
|
+
all: Readonly<import("internal/fx/ux/Styles.stylex").StylexValue>;
|
8
|
+
background: import("internal/fx/ux/Styles.stylex").StylexValue;
|
9
|
+
color: import("internal/fx/ux/Styles.stylex").StylexValue;
|
10
10
|
};
|
11
11
|
function getColorStyling(color: string, opacity?: number): ColorStyles;
|
12
12
|
}
|
@@ -1,14 +1,14 @@
|
|
1
1
|
import { useColorSchemaStore } from "@omnia/fx/ux";
|
2
2
|
import { OBorderCombination } from "@omnia/fx-models";
|
3
|
-
import {
|
3
|
+
import { StylexValue } from "internal/fx/ux/Styles.stylex";
|
4
4
|
export declare namespace generalStylex {
|
5
|
-
function getSelectedTableRowStylex(dark: boolean): Readonly<
|
6
|
-
function getScrollStylex(colors: ReturnType<typeof useColorSchemaStore>, toned?: boolean): Readonly<
|
7
|
-
function getBorderDividerStylex(border: OBorderCombination, dark: boolean): Readonly<
|
5
|
+
function getSelectedTableRowStylex(dark: boolean): Readonly<StylexValue>;
|
6
|
+
function getScrollStylex(colors: ReturnType<typeof useColorSchemaStore>, toned?: boolean): Readonly<StylexValue>;
|
7
|
+
function getBorderDividerStylex(border: OBorderCombination, dark: boolean): Readonly<StylexValue>;
|
8
8
|
function getHoverStylex(dark: boolean, settings?: {
|
9
9
|
scale?: number;
|
10
10
|
transparent?: boolean;
|
11
|
-
}): Readonly<
|
11
|
+
}): Readonly<StylexValue>;
|
12
12
|
}
|
13
13
|
export declare const generalStyles: {
|
14
14
|
getSelectedTableRowStyling: typeof getSelectedTableRowStyling;
|
@@ -6,6 +6,6 @@ export interface NumericalSpacing {
|
|
6
6
|
left?: number;
|
7
7
|
}
|
8
8
|
export declare namespace spacingStyling {
|
9
|
-
function createSpacingx(spacing: NumericalSpacing, type: SpacingTypes): Readonly<import("internal/fx/ux/Styles.stylex").
|
9
|
+
function createSpacingx(spacing: NumericalSpacing, type: SpacingTypes): Readonly<import("internal/fx/ux/Styles.stylex").StylexValue>;
|
10
10
|
function createSpacing(spacing: NumericalSpacing, type: SpacingTypes): string;
|
11
11
|
}
|
@@ -3,37 +3,37 @@ import { TypographyBlueprint, TypographySize, TypographyTypes, TypographyValue }
|
|
3
3
|
import { MediaQuery } from "typestyle/lib/types";
|
4
4
|
import { useTypographyBlueprintStore } from "@omnia/fx/ux";
|
5
5
|
export declare namespace typographyStylex {
|
6
|
-
function typographyTypeStylex(typographyType: TypographyTypes, size: TypographySize, blueprint: TypographyBlueprint): Readonly<import("@omnia/fx/ux").
|
6
|
+
function typographyTypeStylex(typographyType: TypographyTypes, size: TypographySize, blueprint: TypographyBlueprint): Readonly<import("@omnia/fx/ux").StylexValue>;
|
7
7
|
function typographyStylex(blueprints: ReturnType<typeof useTypographyBlueprintStore>): {
|
8
8
|
title: {
|
9
|
-
readonly xl: Readonly<import("@omnia/fx/ux").
|
10
|
-
readonly l: Readonly<import("@omnia/fx/ux").
|
11
|
-
readonly m: Readonly<import("@omnia/fx/ux").
|
12
|
-
readonly s: Readonly<import("@omnia/fx/ux").
|
13
|
-
readonly xs: Readonly<import("@omnia/fx/ux").
|
9
|
+
readonly xl: Readonly<import("@omnia/fx/ux").StylexValue>;
|
10
|
+
readonly l: Readonly<import("@omnia/fx/ux").StylexValue>;
|
11
|
+
readonly m: Readonly<import("@omnia/fx/ux").StylexValue>;
|
12
|
+
readonly s: Readonly<import("@omnia/fx/ux").StylexValue>;
|
13
|
+
readonly xs: Readonly<import("@omnia/fx/ux").StylexValue>;
|
14
14
|
};
|
15
15
|
text: {
|
16
|
-
readonly l: Readonly<import("@omnia/fx/ux").
|
17
|
-
readonly m: Readonly<import("@omnia/fx/ux").
|
18
|
-
readonly s: Readonly<import("@omnia/fx/ux").
|
19
|
-
readonly xs: Readonly<import("@omnia/fx/ux").
|
16
|
+
readonly l: Readonly<import("@omnia/fx/ux").StylexValue>;
|
17
|
+
readonly m: Readonly<import("@omnia/fx/ux").StylexValue>;
|
18
|
+
readonly s: Readonly<import("@omnia/fx/ux").StylexValue>;
|
19
|
+
readonly xs: Readonly<import("@omnia/fx/ux").StylexValue>;
|
20
20
|
};
|
21
21
|
navigation: {
|
22
|
-
readonly l: Readonly<import("@omnia/fx/ux").
|
23
|
-
readonly m: Readonly<import("@omnia/fx/ux").
|
22
|
+
readonly l: Readonly<import("@omnia/fx/ux").StylexValue>;
|
23
|
+
readonly m: Readonly<import("@omnia/fx/ux").StylexValue>;
|
24
24
|
};
|
25
25
|
link: {
|
26
|
-
readonly m: Readonly<import("@omnia/fx/ux").
|
26
|
+
readonly m: Readonly<import("@omnia/fx/ux").StylexValue>;
|
27
27
|
};
|
28
28
|
variants: {
|
29
|
-
readonly variant1: Readonly<import("@omnia/fx/ux").
|
30
|
-
readonly variant2: Readonly<import("@omnia/fx/ux").
|
31
|
-
readonly variant3: Readonly<import("@omnia/fx/ux").
|
32
|
-
readonly variant4: Readonly<import("@omnia/fx/ux").
|
29
|
+
readonly variant1: Readonly<import("@omnia/fx/ux").StylexValue>;
|
30
|
+
readonly variant2: Readonly<import("@omnia/fx/ux").StylexValue>;
|
31
|
+
readonly variant3: Readonly<import("@omnia/fx/ux").StylexValue>;
|
32
|
+
readonly variant4: Readonly<import("@omnia/fx/ux").StylexValue>;
|
33
33
|
};
|
34
34
|
typographyType: (typographyType: string) => any;
|
35
35
|
};
|
36
|
-
function typographyStylexFromValueStylex(value: TypographyValue, blueprint: TypographyBlueprint): Readonly<import("@omnia/fx/ux").
|
36
|
+
function typographyStylexFromValueStylex(value: TypographyValue, blueprint: TypographyBlueprint): Readonly<import("@omnia/fx/ux").StylexValue>;
|
37
37
|
}
|
38
38
|
export declare const typographyStyles: {
|
39
39
|
typographyTypeStyling: typeof typographyTypeStyling;
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import {
|
2
|
-
import { ColorSchemaTypes,
|
1
|
+
import { useThemeStore, useColorSchemaStore, useTypographyBlueprintStore, useSpacingBlueprintStore } from "@omnia/fx/ux";
|
2
|
+
import { ColorSchemaTypes, ResolvedThemeDefinition, ThemeContextType } from "@omnia/fx-models";
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
5
5
|
colorSchemaType: {
|
@@ -9,11 +9,11 @@ declare const _default: {
|
|
9
9
|
type: import("vue").PropType<ThemeContextType>;
|
10
10
|
};
|
11
11
|
themeDefinition: {
|
12
|
-
type: import("vue").PropType<
|
12
|
+
type: import("vue").PropType<ResolvedThemeDefinition>;
|
13
13
|
};
|
14
14
|
}>> & {
|
15
15
|
"onTheme:initialized"?: (theme: {
|
16
|
-
themeStore: ReturnType<typeof
|
16
|
+
themeStore: ReturnType<typeof useThemeStore>;
|
17
17
|
colors: ReturnType<typeof useColorSchemaStore>;
|
18
18
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
19
19
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
@@ -22,7 +22,7 @@ declare const _default: {
|
|
22
22
|
[key: string]: any;
|
23
23
|
}>[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
24
24
|
"theme:initialized": (theme: {
|
25
|
-
themeStore: ReturnType<typeof
|
25
|
+
themeStore: ReturnType<typeof useThemeStore>;
|
26
26
|
colors: ReturnType<typeof useColorSchemaStore>;
|
27
27
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
28
28
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
@@ -42,11 +42,11 @@ declare const _default: {
|
|
42
42
|
type: import("vue").PropType<ThemeContextType>;
|
43
43
|
};
|
44
44
|
themeDefinition: {
|
45
|
-
type: import("vue").PropType<
|
45
|
+
type: import("vue").PropType<ResolvedThemeDefinition>;
|
46
46
|
};
|
47
47
|
}>> & {
|
48
48
|
"onTheme:initialized"?: (theme: {
|
49
|
-
themeStore: ReturnType<typeof
|
49
|
+
themeStore: ReturnType<typeof useThemeStore>;
|
50
50
|
colors: ReturnType<typeof useColorSchemaStore>;
|
51
51
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
52
52
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
@@ -65,11 +65,11 @@ declare const _default: {
|
|
65
65
|
type: import("vue").PropType<ThemeContextType>;
|
66
66
|
};
|
67
67
|
themeDefinition: {
|
68
|
-
type: import("vue").PropType<
|
68
|
+
type: import("vue").PropType<ResolvedThemeDefinition>;
|
69
69
|
};
|
70
70
|
}>> & {
|
71
71
|
"onTheme:initialized"?: (theme: {
|
72
|
-
themeStore: ReturnType<typeof
|
72
|
+
themeStore: ReturnType<typeof useThemeStore>;
|
73
73
|
colors: ReturnType<typeof useColorSchemaStore>;
|
74
74
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
75
75
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
@@ -78,7 +78,7 @@ declare const _default: {
|
|
78
78
|
[key: string]: any;
|
79
79
|
}>[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
80
80
|
"theme:initialized": (theme: {
|
81
|
-
themeStore: ReturnType<typeof
|
81
|
+
themeStore: ReturnType<typeof useThemeStore>;
|
82
82
|
colors: ReturnType<typeof useColorSchemaStore>;
|
83
83
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
84
84
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
@@ -86,11 +86,11 @@ declare const _default: {
|
|
86
86
|
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
87
87
|
propsDefinition: Omit<Readonly<{} & {
|
88
88
|
colorSchemaType?: "background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
89
|
-
themeDefinition?:
|
89
|
+
themeDefinition?: ResolvedThemeDefinition;
|
90
90
|
themeType?: ThemeContextType;
|
91
91
|
}>, "onTheme:initialized"> & {
|
92
92
|
"onTheme:initialized"?: (theme: {
|
93
|
-
themeStore: ReturnType<typeof
|
93
|
+
themeStore: ReturnType<typeof useThemeStore>;
|
94
94
|
colors: ReturnType<typeof useColorSchemaStore>;
|
95
95
|
typography: ReturnType<typeof useTypographyBlueprintStore>;
|
96
96
|
spacing: ReturnType<typeof useSpacingBlueprintStore>;
|
@@ -85,12 +85,12 @@ declare const dialogComponent: {
|
|
85
85
|
eager: import("vue").Prop<boolean, boolean>;
|
86
86
|
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
87
87
|
propsDefinition: Omit<Readonly<{} & {
|
88
|
+
maxWidth?: string | number;
|
89
|
+
position?: DialogPositions;
|
90
|
+
width?: string | number;
|
88
91
|
lazy?: boolean;
|
89
92
|
title?: string;
|
90
|
-
width?: string | number;
|
91
93
|
onClose?: () => void;
|
92
|
-
maxWidth?: string | number;
|
93
|
-
position?: DialogPositions;
|
94
94
|
dark?: boolean;
|
95
95
|
light?: boolean;
|
96
96
|
disabled?: boolean;
|
@@ -152,9 +152,9 @@ declare const _default: {
|
|
152
152
|
};
|
153
153
|
color?: string;
|
154
154
|
icon?: IIcon;
|
155
|
+
height?: number;
|
155
156
|
description?: string;
|
156
157
|
label?: string;
|
157
|
-
height?: number;
|
158
158
|
unitLabel?: string;
|
159
159
|
clickCallback?: (label?: string) => void;
|
160
160
|
loadData?: (isPrevious: boolean) => Promise<void>;
|
@@ -2,7 +2,7 @@ import { BoolFilter, guid, IResolvedIdentity, ISpecialUserConfiguration, Identit
|
|
2
2
|
import { IIdentityPickerStore } from "@omnia/fx/stores";
|
3
3
|
import { DefineEmit } from "@omnia/fx/ux";
|
4
4
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
5
|
-
location?: "left" | "right" | "top" | "start" | "center" | "end" | "
|
5
|
+
location?: "bottom" | "left" | "right" | "top" | "start" | "center" | "end" | "center center" | "top center" | "top start" | "top end" | "bottom start" | "bottom end" | "start top" | "start bottom" | "end top" | "end bottom";
|
6
6
|
} & {
|
7
7
|
type?: PrincipalTypes;
|
8
8
|
} & {
|
@@ -370,8 +370,8 @@ declare const _default: {
|
|
370
370
|
container?: boolean;
|
371
371
|
class?: String | String[];
|
372
372
|
mandatory?: boolean;
|
373
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
374
373
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
374
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
375
375
|
"v-model"?: MediaScalingSettings;
|
376
376
|
modelValue?: MediaScalingSettings;
|
377
377
|
"onUpdate:modelValue"?: (value: MediaScalingSettings) => any | void;
|
@@ -96,11 +96,11 @@ declare const _default: {
|
|
96
96
|
propsDefinition: Omit<Readonly<{} & {
|
97
97
|
text?: string;
|
98
98
|
icon?: IIcon;
|
99
|
-
title?: string;
|
100
99
|
container?: boolean;
|
100
|
+
title?: string;
|
101
101
|
description?: string;
|
102
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
103
102
|
colors?: import("../../..").ColorSchemaStoreType;
|
103
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
104
104
|
}>, never>;
|
105
105
|
};
|
106
106
|
export default _default;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/canvastoolbar/CanvasToolbar.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { DisplayBreakPoint,
|
1
|
+
import { DisplayBreakPoint, LegacyThemeDefinition } from "../../../../models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
defaultBreakpoint: {
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
8
8
|
type: import("vue").PropType<string>;
|
9
9
|
};
|
10
10
|
themeDefinition: {
|
11
|
-
type: import("vue").PropType<
|
11
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
12
12
|
};
|
13
13
|
}>> & {
|
14
14
|
onChangeThemeDefinition?: () => any;
|
@@ -31,7 +31,7 @@ declare const _default: {
|
|
31
31
|
type: import("vue").PropType<string>;
|
32
32
|
};
|
33
33
|
themeDefinition: {
|
34
|
-
type: import("vue").PropType<
|
34
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
35
35
|
};
|
36
36
|
}>> & {
|
37
37
|
onChangeThemeDefinition?: () => any;
|
@@ -48,7 +48,7 @@ declare const _default: {
|
|
48
48
|
type: import("vue").PropType<string>;
|
49
49
|
};
|
50
50
|
themeDefinition: {
|
51
|
-
type: import("vue").PropType<
|
51
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
52
52
|
};
|
53
53
|
}>> & {
|
54
54
|
onChangeThemeDefinition?: () => any;
|
@@ -58,7 +58,7 @@ declare const _default: {
|
|
58
58
|
breakpointChange: (displayBreakPoint: DisplayBreakPoint) => any;
|
59
59
|
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
60
60
|
propsDefinition: Omit<Readonly<{} & {
|
61
|
-
themeDefinition?:
|
61
|
+
themeDefinition?: LegacyThemeDefinition;
|
62
62
|
canvasId?: string;
|
63
63
|
defaultBreakpoint?: DisplayBreakPoint;
|
64
64
|
}>, "onChangeThemeDefinition" | "onBreakpointChange"> & {
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TemplatePreview.d.ts
CHANGED
@@ -58,8 +58,8 @@ declare const _default: {
|
|
58
58
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
59
59
|
propsDefinition: Omit<Readonly<{} & {
|
60
60
|
container?: boolean;
|
61
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
62
61
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
62
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
63
63
|
}>, never>;
|
64
64
|
};
|
65
65
|
export default _default;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.d.ts
CHANGED
@@ -94,10 +94,10 @@ declare const _default: {
|
|
94
94
|
container: boolean;
|
95
95
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
96
96
|
propsDefinition: Omit<Readonly<{} & {
|
97
|
-
title?: string;
|
98
97
|
container?: boolean;
|
99
|
-
|
98
|
+
title?: string;
|
100
99
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
100
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
101
101
|
settingsKey?: any;
|
102
102
|
multilingualtitle?: string | MultilingualString;
|
103
103
|
alternativeContent?: JSX.Element;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/SizeContainer.d.ts
CHANGED
@@ -100,8 +100,8 @@ declare const _default: {
|
|
100
100
|
container?: boolean;
|
101
101
|
class?: String | String[];
|
102
102
|
filled?: boolean;
|
103
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
104
103
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
104
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
105
105
|
toned?: boolean;
|
106
106
|
getApi?: (store: ReturnType<typeof useSizeContainerStore>) => void;
|
107
107
|
}>, never>;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/targetselector/TargetSelector.d.ts
CHANGED
@@ -102,10 +102,10 @@ declare const _default: {
|
|
102
102
|
container: boolean;
|
103
103
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
104
104
|
propsDefinition: Omit<Readonly<{} & {
|
105
|
-
small?: boolean;
|
106
105
|
container?: boolean;
|
107
|
-
|
106
|
+
small?: boolean;
|
108
107
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
108
|
+
colorSchemaType?: "background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
109
109
|
parentContainer?: LayoutItem;
|
110
110
|
siblingId?: string;
|
111
111
|
postInsert?: boolean;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
export declare const LayoutActionStyles: {
|
2
|
-
overlay: (top: number) => Readonly<import("@omnia/fx/ux").
|
3
|
-
closeButton: Readonly<import("@omnia/fx/ux").
|
4
|
-
menuWrapper: (top: number) => Readonly<import("@omnia/fx/ux").
|
2
|
+
overlay: (top: number) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
3
|
+
closeButton: Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
|
+
menuWrapper: (top: number) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
5
5
|
};
|
@@ -72,8 +72,8 @@ declare const _default: {
|
|
72
72
|
};
|
73
73
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
74
74
|
propsDefinition: Omit<Readonly<{} & {
|
75
|
-
provider?: string;
|
76
75
|
height?: string;
|
76
|
+
provider?: string;
|
77
77
|
getApi?: (inst: LayoutRendererCanvasApi, layoutCanvasStore: LayoutCanvasStore) => void;
|
78
78
|
designRender?: boolean;
|
79
79
|
disableScrollCompensation?: boolean;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/shared/LayoutEditorThemingManager.d.ts
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
import { LayoutCanvasStore } from "../stores";
|
2
2
|
import { ThemeStore } from "../../theming";
|
3
|
-
import {
|
3
|
+
import { LegacyThemeDefinition } from "../../../models";
|
4
4
|
export declare class LayoutEditorThemingManager {
|
5
5
|
private editorStore;
|
6
6
|
private themeStore;
|
7
7
|
constructor(editorStore: LayoutCanvasStore, themeStore: ThemeStore);
|
8
8
|
private fallBackThemeTemplatePage;
|
9
9
|
private fallBackThemeTemplateBlock;
|
10
|
-
getDefaultPageThemeForBlockEditingWithFallback(byRefIfCustomTheme: boolean):
|
11
|
-
copyDefinition(themeDefinition:
|
12
|
-
getDefaultPageThemeForPageEditingWithFallback():
|
10
|
+
getDefaultPageThemeForBlockEditingWithFallback(byRefIfCustomTheme: boolean): LegacyThemeDefinition;
|
11
|
+
copyDefinition(themeDefinition: LegacyThemeDefinition): any;
|
12
|
+
getDefaultPageThemeForPageEditingWithFallback(): LegacyThemeDefinition;
|
13
13
|
}
|
package/internal-do-not-import-from-here/ux/layoutcanvas/shared/ThemingRenditionManager.d.ts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
import { Block, LayoutSettings, SectionSettings, Section, ThemeStyling,
|
1
|
+
import { Block, LayoutSettings, SectionSettings, Section, ThemeStyling, LegacyThemeDefinition, guid } from "../../../models";
|
2
2
|
import { ThemeStore, ITheming } from "../../theming";
|
3
3
|
export declare class ThemingRenditionManager {
|
4
4
|
private themeReferences;
|
5
|
-
getThemeTargetIdBlock(block: Block, layoutSettings: LayoutSettings, parentSettings: SectionSettings, inheritedThemeTargetId: string, blockThemeDefinition:
|
6
|
-
getThemeTargetIdSection(section: Section, blockThemeDefinition:
|
7
|
-
getThemeTargetIdLayout(layoutSettings: LayoutSettings, layoutThemeDefinition:
|
5
|
+
getThemeTargetIdBlock(block: Block, layoutSettings: LayoutSettings, parentSettings: SectionSettings, inheritedThemeTargetId: string, blockThemeDefinition: LegacyThemeDefinition): string;
|
6
|
+
getThemeTargetIdSection(section: Section, blockThemeDefinition: LegacyThemeDefinition): string;
|
7
|
+
getThemeTargetIdLayout(layoutSettings: LayoutSettings, layoutThemeDefinition: LegacyThemeDefinition): string;
|
8
8
|
getBackgroundThemeStylingForBlock(themeStore: ThemeStore, block: Block, parentSettings: SectionSettings, layoutSettings: LayoutSettings, layoutSettingsParent: LayoutSettings, blockThemeDefinitionId: string): ThemeStyling;
|
9
9
|
getBackgroundThemeStylingForLayout(componentTheme: ITheming, layoutSettings: LayoutSettings, layoutSettingsParent: LayoutSettings): ThemeStyling;
|
10
10
|
garbagecollectNonLayoutThemes(themeStore: ThemeStore, currentLayoutId: guid): void;
|
@@ -12,6 +12,6 @@ export declare class ThemingRenditionManager {
|
|
12
12
|
registerBlockTheme(themeStore: ThemeStore, block: Block, layoutId: guid): void;
|
13
13
|
private registerCustomTheme;
|
14
14
|
private registerThemeDefinition;
|
15
|
-
registerLayoutTheme(themeStore: ThemeStore, layoutSettings: LayoutSettings, layoutId: guid, layoutThemeDefinition:
|
15
|
+
registerLayoutTheme(themeStore: ThemeStore, layoutSettings: LayoutSettings, layoutId: guid, layoutThemeDefinition: LegacyThemeDefinition, blockThemeDefinition: LegacyThemeDefinition): void;
|
16
16
|
private addThemingReference;
|
17
17
|
}
|
@@ -78,9 +78,9 @@ declare const _default: {
|
|
78
78
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
79
79
|
propsDefinition: Omit<Readonly<{} & {
|
80
80
|
container?: boolean;
|
81
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
82
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
83
81
|
item?: LayoutItemRegistration;
|
82
|
+
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
83
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
84
84
|
}>, "onClick"> & {
|
85
85
|
onClick?: () => any;
|
86
86
|
};
|
@@ -2,6 +2,6 @@
|
|
2
2
|
* Styles for the LayoutEditorStyles component
|
3
3
|
*/
|
4
4
|
export declare const LayoutItemStyles: {
|
5
|
-
container: import("@omnia/fx/ux").
|
6
|
-
wrapper: (backgroundColor: string) => Readonly<import("@omnia/fx/ux").
|
5
|
+
container: import("@omnia/fx/ux").StylexValue;
|
6
|
+
wrapper: (backgroundColor: string) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
7
7
|
};
|
@@ -103,10 +103,10 @@ declare const _default: {
|
|
103
103
|
container: boolean;
|
104
104
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
105
105
|
propsDefinition: Omit<Readonly<{} & {
|
106
|
-
small?: boolean;
|
107
106
|
container?: boolean;
|
108
|
-
|
107
|
+
small?: boolean;
|
109
108
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
109
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
110
110
|
toned?: boolean;
|
111
111
|
parentContainer?: LayoutItem;
|
112
112
|
siblingId?: string;
|
@@ -3,17 +3,17 @@ import { Color } from "../../../../models";
|
|
3
3
|
* Styles for the LayoutEditorStyles component
|
4
4
|
*/
|
5
5
|
export declare const LayoutItemSelectorStyles: {
|
6
|
-
notScrollOutside: Readonly<import("@omnia/fx/ux").
|
7
|
-
selectorWrapper: Readonly<import("@omnia/fx/ux").
|
8
|
-
gridfillColumn: Readonly<import("@omnia/fx/ux").
|
9
|
-
contentWrapper: (background: Color) => Readonly<import("@omnia/fx/ux").
|
10
|
-
closeButton: Readonly<import("@omnia/fx/ux").
|
11
|
-
dialogHeader: (textColor: string) => import("@omnia/fx/ux").
|
12
|
-
searchBox: Readonly<import("@omnia/fx/ux").
|
13
|
-
footerWrapper: import("@omnia/fx/ux").
|
6
|
+
notScrollOutside: Readonly<import("@omnia/fx/ux").StylexValue>;
|
7
|
+
selectorWrapper: Readonly<import("@omnia/fx/ux").StylexValue>;
|
8
|
+
gridfillColumn: Readonly<import("@omnia/fx/ux").StylexValue>;
|
9
|
+
contentWrapper: (background: Color) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
10
|
+
closeButton: Readonly<import("@omnia/fx/ux").StylexValue>;
|
11
|
+
dialogHeader: (textColor: string) => import("@omnia/fx/ux").StylexValue;
|
12
|
+
searchBox: Readonly<import("@omnia/fx/ux").StylexValue>;
|
13
|
+
footerWrapper: import("@omnia/fx/ux").StylexValue;
|
14
14
|
searchResult: {
|
15
|
-
noBlockWrapper: Readonly<import("@omnia/fx/ux").
|
16
|
-
blockWrapper: import("@omnia/fx/ux").
|
15
|
+
noBlockWrapper: Readonly<import("@omnia/fx/ux").StylexValue>;
|
16
|
+
blockWrapper: import("@omnia/fx/ux").StylexValue;
|
17
17
|
};
|
18
|
-
expansionPanel: Readonly<import("@omnia/fx/ux").
|
18
|
+
expansionPanel: Readonly<import("@omnia/fx/ux").StylexValue>;
|
19
19
|
};
|