@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,10 +1,10 @@
|
|
1
1
|
import { ColorDefinition } from "../../velcron/core";
|
2
2
|
import { OPanelVariants, OPaddingCombination } from "@omnia/fx-models";
|
3
3
|
export declare const PanelStyles: {
|
4
|
-
tabSettingsPadding: Readonly<import("@omnia/fx/ux").
|
5
|
-
templateTitle: (variant: OPanelVariants, titelOnTopDivider: boolean, color: string, spacelessTop: boolean, spacelessBottom: boolean, paddings: OPaddingCombination) => Readonly<import("@omnia/fx/ux").
|
6
|
-
dividerOnTitle: Readonly<import("@omnia/fx/ux").
|
7
|
-
panelHoverBackground: (color: ColorDefinition) => Readonly<import("@omnia/fx/ux").
|
8
|
-
panelWrapper: (hide: boolean, variant: OPanelVariants, grouped: boolean, spacelessTop: boolean, spacelessBottom: boolean, hasLeftDivider: any, hasRightDivider: any, dark: boolean, paddings: OPaddingCombination) => Readonly<import("@omnia/fx/ux").
|
9
|
-
contentWrapper: (variant: OPanelVariants, grouped: boolean, spacelessTop: boolean, spacelessBottom: boolean, paddings: OPaddingCombination, noContentPadding: boolean) => Readonly<import("@omnia/fx/ux").
|
4
|
+
tabSettingsPadding: Readonly<import("@omnia/fx/ux").StylexValue>;
|
5
|
+
templateTitle: (variant: OPanelVariants, titelOnTopDivider: boolean, color: string, spacelessTop: boolean, spacelessBottom: boolean, paddings: OPaddingCombination) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
6
|
+
dividerOnTitle: Readonly<import("@omnia/fx/ux").StylexValue>;
|
7
|
+
panelHoverBackground: (color: ColorDefinition) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
8
|
+
panelWrapper: (hide: boolean, variant: OPanelVariants, grouped: boolean, spacelessTop: boolean, spacelessBottom: boolean, hasLeftDivider: any, hasRightDivider: any, dark: boolean, paddings: OPaddingCombination) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
9
|
+
contentWrapper: (variant: OPanelVariants, grouped: boolean, spacelessTop: boolean, spacelessBottom: boolean, paddings: OPaddingCombination, noContentPadding: boolean) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
10
10
|
};
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { useTypographyBlueprintStore } from "@omnia/fx/ux";
|
2
2
|
export declare const RadioStyles: {
|
3
|
-
wrapper: (textColor: string, selectedColor: string, blueprint: ReturnType<typeof useTypographyBlueprintStore>) => Readonly<import("@omnia/fx/ux").
|
3
|
+
wrapper: (textColor: string, selectedColor: string, blueprint: ReturnType<typeof useTypographyBlueprintStore>) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
4
|
};
|
@@ -172,8 +172,8 @@ declare const _default: {
|
|
172
172
|
class?: String | String[];
|
173
173
|
label?: string;
|
174
174
|
disabled?: boolean;
|
175
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
176
175
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
176
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
177
177
|
"v-model"?: any;
|
178
178
|
modelValue?: any;
|
179
179
|
"onUpdate:modelValue"?: (value: any) => any | void;
|
@@ -1,4 +1,4 @@
|
|
1
1
|
export declare const RadioGroupStyles: {
|
2
|
-
wrapper: Readonly<import("@omnia/fx/ux").
|
3
|
-
itemWrapper: (textColor: string) => Readonly<import("@omnia/fx/ux").
|
2
|
+
wrapper: Readonly<import("@omnia/fx/ux").StylexValue>;
|
3
|
+
itemWrapper: (textColor: string) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
4
|
};
|
@@ -219,12 +219,12 @@ declare const _default: {
|
|
219
219
|
container: boolean;
|
220
220
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
221
221
|
propsDefinition: Omit<Readonly<{} & {
|
222
|
+
direction?: "horizontal" | "vertical";
|
222
223
|
container?: boolean;
|
223
224
|
class?: String | String[];
|
224
225
|
label?: string;
|
225
|
-
direction?: "horizontal" | "vertical";
|
226
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
227
226
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
227
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
228
228
|
"v-model"?: [number, number];
|
229
229
|
modelValue?: [number, number];
|
230
230
|
variant?: "default" | "prominent";
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { useTypographyBlueprintStore } from "@omnia/fx/ux";
|
2
2
|
export declare const RangeSliderStyles: {
|
3
|
-
wrapper: (textColor: string, noThumbLabel: boolean, blueprints: ReturnType<typeof useTypographyBlueprintStore>) => Readonly<import("@omnia/fx/ux").
|
3
|
+
wrapper: (textColor: string, noThumbLabel: boolean, blueprints: ReturnType<typeof useTypographyBlueprintStore>) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
4
|
};
|
package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.stylex.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
export declare const ScrollContainerStyles: {
|
2
|
-
scrollingStyles: (scrolling: string, height: string, width: string, noScrolling: boolean) => Readonly<import("@omnia/fx/ux").
|
3
|
-
compensateMargin: import("@omnia/fx/ux").
|
2
|
+
scrollingStyles: (scrolling: string, height: string, width: string, noScrolling: boolean) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
3
|
+
compensateMargin: import("@omnia/fx/ux").StylexValue;
|
4
4
|
};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { OSelectTypes } from "@omnia/fx-models";
|
2
2
|
export declare const SelectStyles: {
|
3
|
-
componentWrapper: Readonly<import("@omnia/fx/ux").
|
4
|
-
componentVariantWrapper: (variant: OSelectTypes, hasValue: boolean, hasLabel: boolean) => Readonly<import("@omnia/fx/ux").
|
3
|
+
componentWrapper: Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
|
+
componentVariantWrapper: (variant: OSelectTypes, hasValue: boolean, hasLabel: boolean) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
5
5
|
};
|
@@ -1,4 +1,4 @@
|
|
1
1
|
export declare const SwiperStyles: {
|
2
|
-
backgroundColor: (color: string) => import("@omnia/fx/ux").
|
3
|
-
color: (color: string) => import("@omnia/fx/ux").
|
2
|
+
backgroundColor: (color: string) => import("@omnia/fx/ux").StylexValue;
|
3
|
+
color: (color: string) => import("@omnia/fx/ux").StylexValue;
|
4
4
|
};
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { useTypographyBlueprintStore } from "@omnia/fx/ux";
|
2
2
|
export declare const SliderStyles: {
|
3
|
-
wrapper: (textColor: string, noThumbLabel: boolean, blueprints: ReturnType<typeof useTypographyBlueprintStore>, label: string) => Readonly<import("@omnia/fx/ux").
|
3
|
+
wrapper: (textColor: string, noThumbLabel: boolean, blueprints: ReturnType<typeof useTypographyBlueprintStore>, label: string) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
4
|
};
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { OSplitpanesVariation } from "@omnia/fx-models";
|
2
2
|
export declare const SplitpaneStyles: {
|
3
|
-
wrapper: (backgroundColor: string, splitterColor: string, variant: OSplitpanesVariation) => Readonly<import("@omnia/fx/ux").
|
3
|
+
wrapper: (backgroundColor: string, splitterColor: string, variant: OSplitpanesVariation) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
4
|
};
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { ColorDefinition } from "@omnia/fx-models";
|
2
2
|
export declare const StepperStyles: {
|
3
|
-
container: (baseSelected: ColorDefinition, onBaseSelected: ColorDefinition) => Readonly<import("@omnia/fx/ux").
|
3
|
+
container: (baseSelected: ColorDefinition, onBaseSelected: ColorDefinition) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
4
|
};
|
package/internal-do-not-import-from-here/ux/oxide/stickycontainer/StickyContainer.stylex.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
export declare const StickyContainerStyles: {
|
2
|
-
stickyWrapper: Readonly<import("@omnia/fx/ux").
|
3
|
-
markWrapper: Readonly<import("@omnia/fx/ux").
|
2
|
+
stickyWrapper: Readonly<import("@omnia/fx/ux").StylexValue>;
|
3
|
+
markWrapper: Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
4
|
};
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { useColorSchemaStore, useTypographyBlueprintStore } from "@omnia/fx/ux";
|
2
2
|
export declare const SwitchStyles: {
|
3
|
-
wrapper: (colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>) => Readonly<import("@omnia/fx/ux").
|
3
|
+
wrapper: (colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
4
|
};
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ColorDefinition, OTabVariants } from "@omnia/fx-models";
|
2
2
|
export declare const TabStyles: {
|
3
|
-
containerTabWrapper: (color: ColorDefinition) => Readonly<import("@omnia/fx/ux").
|
4
|
-
tabWrapper: Readonly<import("@omnia/fx/ux").
|
5
|
-
notificationWrapper: Readonly<import("@omnia/fx/ux").
|
6
|
-
activeTab: (color: string, variant: OTabVariants, backgroundColor: string) => Readonly<import("@omnia/fx/ux").
|
3
|
+
containerTabWrapper: (color: ColorDefinition) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
|
+
tabWrapper: Readonly<import("@omnia/fx/ux").StylexValue>;
|
5
|
+
notificationWrapper: Readonly<import("@omnia/fx/ux").StylexValue>;
|
6
|
+
activeTab: (color: string, variant: OTabVariants, backgroundColor: string) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
7
7
|
};
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import { ColorDefinition } from "@omnia/fx-models";
|
2
2
|
export declare const TabsStyles: {
|
3
|
-
itemContainer: (scrollOffset: string, noScrolling: boolean) => Readonly<import("@omnia/fx/ux").
|
4
|
-
hideTabHeader: Readonly<import("@omnia/fx/ux").
|
5
|
-
dialogWrapper: Readonly<import("@omnia/fx/ux").
|
6
|
-
toolbarStyles: (vertical: boolean) => Readonly<import("@omnia/fx/ux").
|
7
|
-
dialogContainer: (baseSelected: ColorDefinition, onBaseSelected: ColorDefinition, toned: boolean, vertical: boolean) => Readonly<import("@omnia/fx/ux").
|
3
|
+
itemContainer: (scrollOffset: string, noScrolling: boolean) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
|
+
hideTabHeader: Readonly<import("@omnia/fx/ux").StylexValue>;
|
5
|
+
dialogWrapper: Readonly<import("@omnia/fx/ux").StylexValue>;
|
6
|
+
toolbarStyles: (vertical: boolean) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
7
|
+
dialogContainer: (baseSelected: ColorDefinition, onBaseSelected: ColorDefinition, toned: boolean, vertical: boolean) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
8
8
|
};
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { ColorDefinition } from "../../velcron/core";
|
2
2
|
export declare const TableStyles: {
|
3
|
-
tableWrapper: (baseColor: ColorDefinition, onBaseColor: ColorDefinition, containerColor: ColorDefinition, onContainerColor: ColorDefinition, toned: boolean) => Readonly<import("@omnia/fx/ux").
|
3
|
+
tableWrapper: (baseColor: ColorDefinition, onBaseColor: ColorDefinition, containerColor: ColorDefinition, onContainerColor: ColorDefinition, toned: boolean) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
4
|
};
|
@@ -3,5 +3,5 @@ import { useColorSchemaStore, useTypographyBlueprintStore } from "@omnia/fx/ux";
|
|
3
3
|
export declare const TextAreaStyles: {
|
4
4
|
editorVariant: string;
|
5
5
|
textAndFont: (textBlueprint: TextBlueprint, colors: ReturnType<typeof useColorSchemaStore>, typography: ReturnType<typeof useTypographyBlueprintStore>) => string;
|
6
|
-
generalField: (textColor: string) => Readonly<import("@omnia/fx/ux").
|
6
|
+
generalField: (textColor: string) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
7
7
|
};
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { OToolbarVariants } from "@omnia/fx-models";
|
2
2
|
export declare const ToolbarStyles: {
|
3
|
-
templateTitle: (variant: OToolbarVariants, hasButton: boolean) => Readonly<import("@omnia/fx/ux").
|
4
|
-
templateTitleCustom: Readonly<import("@omnia/fx/ux").
|
5
|
-
content: Readonly<import("@omnia/fx/ux").
|
6
|
-
drawer: Readonly<import("@omnia/fx/ux").
|
7
|
-
iconWrapper: (color: string) => Readonly<import("@omnia/fx/ux").
|
8
|
-
divider: (dark: boolean) => import("@omnia/fx/ux").
|
3
|
+
templateTitle: (variant: OToolbarVariants, hasButton: boolean) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
4
|
+
templateTitleCustom: Readonly<import("@omnia/fx/ux").StylexValue>;
|
5
|
+
content: Readonly<import("@omnia/fx/ux").StylexValue>;
|
6
|
+
drawer: Readonly<import("@omnia/fx/ux").StylexValue>;
|
7
|
+
iconWrapper: (color: string) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
8
|
+
divider: (dark: boolean) => import("@omnia/fx/ux").StylexValue;
|
9
9
|
};
|
@@ -307,8 +307,8 @@ declare const _default: {
|
|
307
307
|
padding?: Spacing | SpacingValue;
|
308
308
|
expanded?: any[];
|
309
309
|
multiple?: boolean;
|
310
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
311
310
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
311
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
312
312
|
"v-slots"?: {
|
313
313
|
default?: import("../../DefineVueTypings").Slot;
|
314
314
|
} & {
|
@@ -1,7 +1,7 @@
|
|
1
1
|
export declare const treeViewStylex: {
|
2
|
-
titleWrapper: (hoverBackgroundColor: string) => Readonly<import("../../Styles.stylex").
|
3
|
-
containerWrapper: (background: string) => import("../../Styles.stylex").
|
4
|
-
expandedAnimation: import("../../Styles.stylex").
|
5
|
-
expandedIcon: import("../../Styles.stylex").
|
6
|
-
collapsedIcon: import("../../Styles.stylex").
|
2
|
+
titleWrapper: (hoverBackgroundColor: string) => Readonly<import("../../Styles.stylex").StylexValue>;
|
3
|
+
containerWrapper: (background: string) => import("../../Styles.stylex").StylexValue;
|
4
|
+
expandedAnimation: import("../../Styles.stylex").StylexValue;
|
5
|
+
expandedIcon: import("../../Styles.stylex").StylexValue;
|
6
|
+
collapsedIcon: import("../../Styles.stylex").StylexValue;
|
7
7
|
};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { PostStyle } from "..";
|
2
|
-
import { guid, OmitProperties,
|
2
|
+
import { guid, OmitProperties, LegacyThemeDefinition, IPostBaseWithContext, IPostBaseContext, IPersistedPost, ResolvedUserIdentity, ReactionType } from "../../models";
|
3
3
|
import { IRichTextEditor } from "../richtexteditor";
|
4
4
|
export interface IPostCustomSlots {
|
5
5
|
/**
|
@@ -37,7 +37,7 @@ export interface IPostComponent {
|
|
37
37
|
postTypeId: guid;
|
38
38
|
provider: PostProvider;
|
39
39
|
richTextSettings?: OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">;
|
40
|
-
cardStyle?:
|
40
|
+
cardStyle?: LegacyThemeDefinition;
|
41
41
|
showMoreSize?: number;
|
42
42
|
styles?: typeof PostStyle;
|
43
43
|
allowLikes?: boolean;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { guid, IPostBaseContext, IPostBaseWithContext, OmitProperties, ResolvedUserIdentity,
|
1
|
+
import { guid, IPostBaseContext, IPostBaseWithContext, OmitProperties, ResolvedUserIdentity, LegacyThemeDefinition } from "../../models";
|
2
2
|
import { IRichTextEditor } from "../richtexteditor";
|
3
3
|
import { IPostCustomSlots, PostPermission, PostProvider } from "./IPost";
|
4
4
|
import "./Post.css";
|
@@ -27,7 +27,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
27
27
|
postAvatarWrapper?: import("typestyle/lib/types").NestedCSSProperties;
|
28
28
|
};
|
29
29
|
} & {
|
30
|
-
cardStyle?:
|
30
|
+
cardStyle?: LegacyThemeDefinition;
|
31
31
|
} & {
|
32
32
|
allowLikes?: boolean;
|
33
33
|
} & {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { DefineEmit } from "@omnia/fx/ux";
|
2
2
|
import { type IPostCustomSlots, PostPermission } from "../..";
|
3
|
-
import { type IPersistedPost, IPostBaseContext, IPostBaseWithContext, type OmitProperties, ReactionType, ResolvedUserIdentity, type
|
3
|
+
import { type IPersistedPost, IPostBaseContext, IPostBaseWithContext, type OmitProperties, ReactionType, ResolvedUserIdentity, type LegacyThemeDefinition } from "../../../models";
|
4
4
|
import { IRichTextEditor } from "../../richtexteditor";
|
5
5
|
declare const _default: <TItem extends readonly any[], TModel extends unknown>(props: import("@omnia/fx/ux").ConstructComponentProps<{
|
6
6
|
canShowEditDialogOnLoad?: boolean;
|
@@ -17,7 +17,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
17
17
|
} & {
|
18
18
|
enableMention?: boolean;
|
19
19
|
} & {
|
20
|
-
cardStyle?:
|
20
|
+
cardStyle?: LegacyThemeDefinition;
|
21
21
|
} & {
|
22
22
|
hideEdit?: boolean;
|
23
23
|
} & {
|
@@ -78,8 +78,8 @@ declare const _default: {
|
|
78
78
|
propsDefinition: Omit<Readonly<{} & {
|
79
79
|
text?: string;
|
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
81
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
82
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
83
83
|
renderingMode?: BlockRenderingModes;
|
84
84
|
}>, never>;
|
85
85
|
};
|
@@ -129,8 +129,8 @@ declare const _default: {
|
|
129
129
|
roles: guid[];
|
130
130
|
} & {
|
131
131
|
container?: boolean;
|
132
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
133
132
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
133
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
134
134
|
"v-slots"?: {
|
135
135
|
default?: import("../DefineVueTypings").Slot;
|
136
136
|
} & SecurityTrimmerSlots;
|
@@ -141,9 +141,9 @@ declare const _default: {
|
|
141
141
|
};
|
142
142
|
}>>, () => 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 & {
|
143
143
|
propsDefinition: Omit<Readonly<{} & {
|
144
|
+
width?: string | number;
|
144
145
|
title?: string;
|
145
146
|
description?: string;
|
146
|
-
width?: string | number;
|
147
147
|
onCancel?: () => void;
|
148
148
|
headerClass?: string;
|
149
149
|
contentClass?: string;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { CommentLikeTemplateDynamicInput } from "@omnia/fx/ux";
|
2
|
-
import { Comment, OmitProperties,
|
2
|
+
import { Comment, OmitProperties, LegacyThemeDefinition } from "../../models";
|
3
3
|
import { IRichTextEditor } from "../richtexteditor";
|
4
4
|
import { CommentSorting } from "../../models/Social";
|
5
5
|
declare const _default: {
|
@@ -20,7 +20,7 @@ declare const _default: {
|
|
20
20
|
required: false;
|
21
21
|
};
|
22
22
|
cardStyle: {
|
23
|
-
type: import("vue").PropType<
|
23
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
24
24
|
};
|
25
25
|
allowLikes: {
|
26
26
|
type: import("vue").PropType<boolean>;
|
@@ -102,7 +102,7 @@ declare const _default: {
|
|
102
102
|
required: false;
|
103
103
|
};
|
104
104
|
cardStyle: {
|
105
|
-
type: import("vue").PropType<
|
105
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
106
106
|
};
|
107
107
|
allowLikes: {
|
108
108
|
type: import("vue").PropType<boolean>;
|
@@ -181,7 +181,7 @@ declare const _default: {
|
|
181
181
|
required: false;
|
182
182
|
};
|
183
183
|
cardStyle: {
|
184
|
-
type: import("vue").PropType<
|
184
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
185
185
|
};
|
186
186
|
allowLikes: {
|
187
187
|
type: import("vue").PropType<boolean>;
|
@@ -261,7 +261,7 @@ declare const _default: {
|
|
261
261
|
richTextSettings?: OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">;
|
262
262
|
dynamicInput?: CommentLikeTemplateDynamicInput;
|
263
263
|
additionalRoles?: string[];
|
264
|
-
cardStyle?:
|
264
|
+
cardStyle?: LegacyThemeDefinition;
|
265
265
|
hideEdit?: boolean;
|
266
266
|
readOnly?: boolean;
|
267
267
|
topicId?: string;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ICommentLikeService } from "../../../stores";
|
2
|
-
import { type Comment, type CommentLikeTemplateSettings, ResolvedUserIdentity,
|
2
|
+
import { type Comment, type CommentLikeTemplateSettings, ResolvedUserIdentity, LegacyThemeDefinition, guid } from "../../../models";
|
3
3
|
export interface CommentLikeTemplateDynamicInput {
|
4
4
|
service: ICommentLikeService;
|
5
5
|
likeListingTemplate?: string;
|
@@ -15,7 +15,7 @@ declare const _default: {
|
|
15
15
|
required: false;
|
16
16
|
};
|
17
17
|
cardStyle: {
|
18
|
-
type: import("vue").PropType<
|
18
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
19
19
|
};
|
20
20
|
additionalRoles: {
|
21
21
|
type: import("vue").PropType<guid[]>;
|
@@ -66,7 +66,7 @@ declare const _default: {
|
|
66
66
|
required: false;
|
67
67
|
};
|
68
68
|
cardStyle: {
|
69
|
-
type: import("vue").PropType<
|
69
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
70
70
|
};
|
71
71
|
additionalRoles: {
|
72
72
|
type: import("vue").PropType<guid[]>;
|
@@ -107,7 +107,7 @@ declare const _default: {
|
|
107
107
|
required: false;
|
108
108
|
};
|
109
109
|
cardStyle: {
|
110
|
-
type: import("vue").PropType<
|
110
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
111
111
|
};
|
112
112
|
additionalRoles: {
|
113
113
|
type: import("vue").PropType<guid[]>;
|
@@ -151,7 +151,7 @@ declare const _default: {
|
|
151
151
|
canShowEditDialogOnLoad?: boolean;
|
152
152
|
canLike?: boolean;
|
153
153
|
additionalRoles?: guid[];
|
154
|
-
cardStyle?:
|
154
|
+
cardStyle?: LegacyThemeDefinition;
|
155
155
|
hideEdit?: boolean;
|
156
156
|
readOnly?: boolean;
|
157
157
|
}>, "onDoc$" | "onOpenReply" | "onCancelReply" | "onRefresh"> & {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { LegacyThemeDefinition, guid } from "../../models";
|
2
2
|
import { Theming } from "./Theming";
|
3
3
|
import { ThemeStore } from "./ThemeStore";
|
4
4
|
import { App, ComponentPublicInstance } from "vue";
|
@@ -6,7 +6,7 @@ export type VueThemingInstance = {
|
|
6
6
|
$theming?: Theming;
|
7
7
|
themeTargetId?: guid;
|
8
8
|
themeDefinitionId?: guid;
|
9
|
-
themeDefinition?:
|
9
|
+
themeDefinition?: LegacyThemeDefinition;
|
10
10
|
inheritanceTheme?: {
|
11
11
|
id: string;
|
12
12
|
};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Color,
|
1
|
+
import { Color, LegacyThemeColorDefinition, ThemeStyling, LegacyThemeDefinition, LegacyBorderDefinition } from "../../models";
|
2
2
|
import { OmniaTheming } from "../OmniaTheming";
|
3
3
|
import { guid, ThemeType } from "../../models";
|
4
4
|
export declare class ThemeManager {
|
@@ -12,7 +12,7 @@ export declare class ThemeManager {
|
|
12
12
|
static ParseColor(color: string): Color;
|
13
13
|
static ExtractReplacementColors(color: string): string;
|
14
14
|
static InjectReplacementColors(color: string): string;
|
15
|
-
static EnsureDefaultBorder(themeDefinition:
|
15
|
+
static EnsureDefaultBorder(themeDefinition: LegacyThemeDefinition): void;
|
16
16
|
/**
|
17
17
|
* We had model mismatch of BorderDefinition between client-side and server-side.
|
18
18
|
*
|
@@ -21,8 +21,8 @@ export declare class ThemeManager {
|
|
21
21
|
*
|
22
22
|
* So this soft migration is all about that
|
23
23
|
*/
|
24
|
-
static MigrateBorder(borderDefinition:
|
25
|
-
static CreateThemeStylingFromDefinition(themeDefinition:
|
26
|
-
static CreateDefaultBorderDefinition():
|
27
|
-
static CreateThemeDefinition(primaryColor: string, secondaryColor: string, name: string, themeType: ThemeType, id?: guid, readOnly?: boolean):
|
24
|
+
static MigrateBorder(borderDefinition: LegacyBorderDefinition): void;
|
25
|
+
static CreateThemeStylingFromDefinition(themeDefinition: LegacyThemeColorDefinition): ThemeStyling;
|
26
|
+
static CreateDefaultBorderDefinition(): LegacyBorderDefinition;
|
27
|
+
static CreateThemeDefinition(primaryColor: string, secondaryColor: string, name: string, themeType: ThemeType, id?: guid, readOnly?: boolean): LegacyThemeDefinition;
|
28
28
|
}
|
@@ -1,13 +1,13 @@
|
|
1
1
|
import { OmniaContext } from "../..";
|
2
2
|
import { Store } from "../../stores";
|
3
|
-
import { ThemeDefinitionSettings,
|
3
|
+
import { ThemeDefinitionSettings, LegacyThemeDefinition, ThemeTargetRegistration, ThemeTargetMapping } from "../../models";
|
4
4
|
import { IMessageBusSubscriptionHandler, guid } from "../../models";
|
5
5
|
import { OmniaTheming } from "../OmniaTheming";
|
6
6
|
import { SettingsService } from "../../services";
|
7
7
|
import { Theming } from "./Theming";
|
8
8
|
declare class InternalThemeStore extends Store {
|
9
9
|
showThemeDefinitionEditor: import("../../stores").StoreState<boolean>;
|
10
|
-
themeDefinitions: import("../../stores").StoreState<
|
10
|
+
themeDefinitions: import("../../stores").StoreState<LegacyThemeDefinition[]>;
|
11
11
|
themeTargetRegistrations: import("../../stores").StoreState<ThemeTargetRegistration[]>;
|
12
12
|
themeTargetMappings: import("../../stores").StoreState<ThemeTargetMapping[]>;
|
13
13
|
themingInstances: import("../../stores").StoreState<Theming[]>;
|
@@ -37,8 +37,8 @@ export declare class ThemeStore extends Store {
|
|
37
37
|
getThemingByTargetIdWithFallback: (themeTargetId: guid) => Theming;
|
38
38
|
getAllThemeTargetMappings: () => ThemeTargetMapping[];
|
39
39
|
getThemeTargetMappingById: (id: guid) => ThemeTargetMapping;
|
40
|
-
getAllThemeDefinitions: () =>
|
41
|
-
getThemeDefinitionById: (id: guid) =>
|
40
|
+
getAllThemeDefinitions: () => LegacyThemeDefinition[];
|
41
|
+
getThemeDefinitionById: (id: guid) => LegacyThemeDefinition;
|
42
42
|
getThemeTargetRegistrationsById: (id: guid) => ThemeTargetRegistration;
|
43
43
|
getAllThemeTargetRegistrations: () => ThemeTargetRegistration[];
|
44
44
|
};
|
@@ -48,13 +48,13 @@ export declare class ThemeStore extends Store {
|
|
48
48
|
createThemeTargetMappingForRegistration: import("../../stores").StoreMutation<(themeTargetRegistration: ThemeTargetRegistration) => void, (themeTargetRegistration: ThemeTargetRegistration) => IMessageBusSubscriptionHandler>;
|
49
49
|
addThemeTargetRegistration: import("../../stores").StoreMutation<(themeTargetRegistration: ThemeTargetRegistration) => void, (themeTargetRegistration: ThemeTargetRegistration) => IMessageBusSubscriptionHandler>;
|
50
50
|
removeAllCustomThemeDefintions: import("../../stores").StoreMutation<() => void, () => IMessageBusSubscriptionHandler>;
|
51
|
-
addThemeDefinition: import("../../stores").StoreMutation<(theme:
|
51
|
+
addThemeDefinition: import("../../stores").StoreMutation<(theme: LegacyThemeDefinition, forceUpdate?: boolean) => void, (theme: LegacyThemeDefinition, forceUpdate?: boolean) => IMessageBusSubscriptionHandler>;
|
52
52
|
};
|
53
53
|
actions: {
|
54
54
|
updateThemeTargetMapping: import("../../stores").StoreAction<unknown, (themeTargetMapping: ThemeTargetMapping) => void, (result: void, themeTargetMapping: ThemeTargetMapping) => void, (failureReason: any, themeTargetMapping: ThemeTargetMapping) => void, (themeTargetMapping: ThemeTargetMapping) => Promise<void>>;
|
55
55
|
ensureThemeDefinitions: import("../../stores").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
|
56
|
-
saveThemeDefintion: import("../../stores").StoreAction<unknown, (themeDefinition:
|
57
|
-
deleteThemeDefintion: import("../../stores").StoreAction<unknown, (themeDefinition:
|
56
|
+
saveThemeDefintion: import("../../stores").StoreAction<unknown, (themeDefinition: LegacyThemeDefinition) => void, (result: void, themeDefinition: LegacyThemeDefinition) => void, (failureReason: any, themeDefinition: LegacyThemeDefinition) => void, (themeDefinition: LegacyThemeDefinition) => Promise<void>>;
|
57
|
+
deleteThemeDefintion: import("../../stores").StoreAction<unknown, (themeDefinition: LegacyThemeDefinition) => void, (result: void, themeDefinition: LegacyThemeDefinition) => void, (failureReason: any, themeDefinition: LegacyThemeDefinition) => void, (themeDefinition: LegacyThemeDefinition) => Promise<void>>;
|
58
58
|
};
|
59
59
|
private updateBusinessProfileThemeMapping;
|
60
60
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { guid } from "../../models";
|
2
|
-
import { ThemeTargetMapping, ThemeStyling,
|
2
|
+
import { ThemeTargetMapping, ThemeStyling, LegacyThemeDefinition, ThemeColors } from "../../models";
|
3
3
|
export interface ITheming {
|
4
4
|
colors: ThemeColors;
|
5
5
|
body: ThemeStyling;
|
@@ -27,7 +27,7 @@ export declare class Theming implements ITheming {
|
|
27
27
|
setThemeTargetMapping(themeTargetMapping: ThemeTargetMapping): void;
|
28
28
|
private get themingModel();
|
29
29
|
private breakThemingInheritance;
|
30
|
-
setThemeDefinition(themingDefinition:
|
30
|
+
setThemeDefinition(themingDefinition: LegacyThemeDefinition): void;
|
31
31
|
private getThemeDefinition;
|
32
32
|
private getOmniaState;
|
33
33
|
}
|
@@ -36,6 +36,6 @@ export declare class Theming implements ITheming {
|
|
36
36
|
*/
|
37
37
|
export declare function useTheme(): {
|
38
38
|
theming: ITheming;
|
39
|
-
setTheming: (themingDefinition:
|
39
|
+
setTheming: (themingDefinition: LegacyThemeDefinition) => void;
|
40
40
|
};
|
41
41
|
export {};
|
@@ -2,7 +2,7 @@ import { ConstructComponentProps } from "../InternalDefineComponent";
|
|
2
2
|
import { type DraggableComponentProps } from "../draggable/DraggableComponent";
|
3
3
|
type DraggableComponentTypings = (props: ConstructComponentProps<Omit<DraggableComponentProps, "containerRef" | "countItems">>) => any;
|
4
4
|
export declare const DraggableStyles: {
|
5
|
-
hoverStyle: import("../Styles.stylex").
|
5
|
+
hoverStyle: import("../Styles.stylex").StylexValue;
|
6
6
|
};
|
7
7
|
export declare function useDraggable(): {
|
8
8
|
Draggable: DraggableComponentTypings;
|
@@ -21,7 +21,7 @@ export declare function useDraggable(): {
|
|
21
21
|
} & {
|
22
22
|
toned?: boolean;
|
23
23
|
} & {
|
24
|
-
colorType?: "
|
24
|
+
colorType?: "container" | "base" | "onBase" | "onContainer";
|
25
25
|
} & {
|
26
26
|
variant?: "background" | "default";
|
27
27
|
} & {
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { VelcronDefinition, VelcronRenderContext } from "@omnia/fx-models";
|
2
2
|
import { type CSSProperties } from "../Styles.stylex";
|
3
|
-
export declare function velcronStyleProvider(result: CSSProperties, definition: VelcronDefinition, renderCtx: VelcronRenderContext): import("../Styles.stylex").
|
3
|
+
export declare function velcronStyleProvider(result: CSSProperties, definition: VelcronDefinition, renderCtx: VelcronRenderContext): import("../Styles.stylex").StylexValue;
|
@@ -454,10 +454,10 @@ declare const _default: {
|
|
454
454
|
}>;
|
455
455
|
};
|
456
456
|
icon?: IIcon;
|
457
|
-
title?: string;
|
458
457
|
container?: boolean;
|
459
|
-
|
458
|
+
title?: string;
|
460
459
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
460
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
461
461
|
"v-slots"?: {
|
462
462
|
default?: import("../../../DefineVueTypings").Slot;
|
463
463
|
} & {
|
@@ -370,8 +370,8 @@ declare const _default: {
|
|
370
370
|
}>;
|
371
371
|
};
|
372
372
|
container?: 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"?: VelcronDefinitionRegistration<object>;
|
376
376
|
modelValue?: VelcronDefinitionRegistration<object>;
|
377
377
|
"onUpdate:modelValue"?: (value: VelcronDefinitionRegistration<object>) => any | void;
|