@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,9 +1,9 @@
|
|
1
1
|
import { VelcronBorder, VelcronColorStyling, VelcronDefinitionHasEffects, VelcronDefinitionHasOverflow, VelcronDimensions, VelcronEffects, VelcronRenderContext } from "../models";
|
2
2
|
import { VelcronUnitProvider } from "../models/VelcronUnitProvider";
|
3
3
|
import { SpacingBlueprint, VelcronBindableProp, VelcronDefinition } from "..";
|
4
|
-
import { CSSProperties,
|
4
|
+
import { CSSProperties, StylexValue } from "internal/fx/ux/Styles.stylex";
|
5
5
|
export declare class VelcronStyles {
|
6
|
-
static styleProvider: (baseStyles: CSSProperties, definition: VelcronDefinition, renderCtx: VelcronRenderContext) =>
|
6
|
+
static styleProvider: (baseStyles: CSSProperties, definition: VelcronDefinition, renderCtx: VelcronRenderContext) => StylexValue;
|
7
7
|
static effectsProvider: (effects: VelcronEffects, renderCtx: VelcronRenderContext) => VelcronEffects;
|
8
8
|
static unitProvider: VelcronUnitProvider;
|
9
9
|
spacingScaling: {
|
@@ -20,13 +20,13 @@ export declare class VelcronStyles {
|
|
20
20
|
scaling: (value: import("..").SpacingValue) => boolean;
|
21
21
|
};
|
22
22
|
};
|
23
|
-
static registerStyleProvider(fn: (styleBase: CSSProperties, definition: VelcronDefinition, renderCtx: VelcronRenderContext) =>
|
23
|
+
static registerStyleProvider(fn: (styleBase: CSSProperties, definition: VelcronDefinition, renderCtx: VelcronRenderContext) => StylexValue, unitProvider: VelcronUnitProvider): void;
|
24
24
|
static registerEffectsProvider(fn: (effects: VelcronEffects, renderCtx: VelcronRenderContext) => VelcronEffects): void;
|
25
25
|
static applyEffects(definition: VelcronDefinitionHasEffects, renderCtx: VelcronRenderContext, applyTo: (effects: VelcronEffects) => any): any;
|
26
26
|
static insertBackgroundColor(styleBase: CSSProperties, color: VelcronColorStyling, renderCtx: VelcronRenderContext): void;
|
27
27
|
static insertBorderRadiusStyles(styleBase: CSSProperties, settings: VelcronDimensions, renderCtx: VelcronRenderContext): void;
|
28
28
|
static insertBorderStyles(styleBase: CSSProperties, borderSettings: VelcronBorder, renderCtx: VelcronRenderContext): void;
|
29
|
-
static create(definition: VelcronDefinition, renderCtx: VelcronRenderContext):
|
29
|
+
static create(definition: VelcronDefinition, renderCtx: VelcronRenderContext): StylexValue;
|
30
30
|
static applySpacingDimension(value: string | number, spacing: SpacingBlueprint): string | number;
|
31
31
|
static applyOverflow(definition: VelcronDefinitionHasOverflow, renderCtx: VelcronRenderContext, styleBase: any): void;
|
32
32
|
static applySpacingStyles<T>(spacing: VelcronBindableProp<T>, renderCtx: VelcronRenderContext, styleBase: any, spacingDef: SpacingBlueprint, styleType: string, objectIsDatabound?: (obj: T) => void, additionalPropsToDataBind?: object): void;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { guid, TreeViewItem, VelcronAppDefinition, VelcronDefinition, VelcronDefinitionRegistrationWithoutApp } from "@omnia/fx-models";
|
2
2
|
import { AppTreeItem, AppValidationState, EditorAppTreeItem, StatePropertyAppTreeItem, editorModes } from "../models/Shared";
|
3
3
|
import { CodeEditorState, VelcronComponentDescriptor, codeEditorTabs, AddVelcronComponentMode } from "../models";
|
4
|
-
import {
|
4
|
+
import { ResolvedThemeDefinition, VelcronRenderContext, VelcronEditor } from "../../core";
|
5
5
|
type canvasMode = "split-spacing" | "design";
|
6
6
|
export declare const useVelcronEditorStore: () => {
|
7
7
|
get: {
|
@@ -32,7 +32,7 @@ export declare const useVelcronEditorStore: () => {
|
|
32
32
|
definition(asJson?: boolean): VelcronAppDefinition | string;
|
33
33
|
};
|
34
34
|
state: {
|
35
|
-
previewTheme:
|
35
|
+
previewTheme: ResolvedThemeDefinition;
|
36
36
|
previewRenderContext: VelcronRenderContext;
|
37
37
|
canvasMode: canvasMode;
|
38
38
|
appData: {};
|
@@ -347,7 +347,7 @@ export declare const useVelcronEditorStore: () => {
|
|
347
347
|
updateHistory(): void;
|
348
348
|
};
|
349
349
|
events: {
|
350
|
-
onMutatedPreviewTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<
|
350
|
+
onMutatedPreviewTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ResolvedThemeDefinition>;
|
351
351
|
onMutatedPreviewRenderContext: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronRenderContext>;
|
352
352
|
onMutatedCanvasMode: import("@omnia/fx").MessageBusExposeOnlySubscription<canvasMode>;
|
353
353
|
onMutatedAppData: import("@omnia/fx").MessageBusExposeOnlySubscription<{}>;
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { VelcronAppDefinition, VelcronRenderContext } from "@omnia/fx-models";
|
2
|
-
import {
|
1
|
+
import { ColorSchemaType, ColorSchemaTypes, ResolvedThemeDefinition, VelcronAppDefinition, VelcronRenderContext } from "@omnia/fx-models";
|
2
|
+
import { VelcronRenderContextEventHandlers, DynamicState } from "../core";
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
5
5
|
colorSchemaType: {
|
@@ -21,7 +21,7 @@ declare const _default: {
|
|
21
21
|
type: import("vue").PropType<boolean>;
|
22
22
|
};
|
23
23
|
themeDefinition: {
|
24
|
-
type: import("vue").PropType<
|
24
|
+
type: import("vue").PropType<ResolvedThemeDefinition>;
|
25
25
|
};
|
26
26
|
eventHandlers: {
|
27
27
|
type: import("vue").PropType<VelcronRenderContextEventHandlers>;
|
@@ -68,7 +68,7 @@ declare const _default: {
|
|
68
68
|
type: import("vue").PropType<boolean>;
|
69
69
|
};
|
70
70
|
themeDefinition: {
|
71
|
-
type: import("vue").PropType<
|
71
|
+
type: import("vue").PropType<ResolvedThemeDefinition>;
|
72
72
|
};
|
73
73
|
eventHandlers: {
|
74
74
|
type: import("vue").PropType<VelcronRenderContextEventHandlers>;
|
@@ -109,7 +109,7 @@ declare const _default: {
|
|
109
109
|
type: import("vue").PropType<boolean>;
|
110
110
|
};
|
111
111
|
themeDefinition: {
|
112
|
-
type: import("vue").PropType<
|
112
|
+
type: import("vue").PropType<ResolvedThemeDefinition>;
|
113
113
|
};
|
114
114
|
eventHandlers: {
|
115
115
|
type: import("vue").PropType<VelcronRenderContextEventHandlers>;
|
@@ -135,9 +135,9 @@ declare const _default: {
|
|
135
135
|
} & {
|
136
136
|
container?: boolean;
|
137
137
|
active?: boolean;
|
138
|
-
colorSchemaType?: "background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
139
|
-
themeDefinition?: ThemeDefinitionV2;
|
140
138
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
139
|
+
colorSchemaType?: "background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
140
|
+
themeDefinition?: ResolvedThemeDefinition;
|
141
141
|
context?: VelcronRenderContext;
|
142
142
|
editMode?: boolean;
|
143
143
|
eventHandlers?: VelcronRenderContextEventHandlers;
|
@@ -8,73 +8,73 @@ declare const _default: {
|
|
8
8
|
type: import("vue").PropType<VelcronAlignmentPropertyEditorSettings>;
|
9
9
|
};
|
10
10
|
"onUpdate:modelValue": {
|
11
|
-
type: import("vue").PropType<(value: "
|
11
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
12
12
|
};
|
13
13
|
"v-model": {
|
14
|
-
type: import("vue").PropType<"
|
14
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
15
15
|
required: false;
|
16
16
|
};
|
17
17
|
modelValue: {
|
18
|
-
type: import("vue").PropType<"
|
18
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
19
19
|
required: false;
|
20
20
|
};
|
21
21
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
22
|
-
type: import("vue").PropType<(value: "
|
22
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
23
23
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
24
|
-
type: import("vue").PropType<"
|
24
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
25
25
|
required: false;
|
26
26
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
27
|
-
type: import("vue").PropType<"
|
27
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
28
28
|
required: false;
|
29
29
|
}; } & {
|
30
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, "
|
30
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, "bottom" | "left" | "right" | "top" | "center", {
|
31
31
|
"onUpdate:modelValue": {
|
32
|
-
type: import("vue").PropType<(value: "
|
32
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
33
33
|
};
|
34
34
|
} & {
|
35
35
|
"v-model": {
|
36
|
-
type: import("vue").PropType<"
|
36
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
37
37
|
required: false;
|
38
38
|
};
|
39
39
|
} & {
|
40
40
|
modelValue: {
|
41
|
-
type: import("vue").PropType<"
|
41
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
42
42
|
required: false;
|
43
43
|
};
|
44
44
|
}>;
|
45
|
-
defaultValue(value?: "
|
45
|
+
defaultValue(value?: "bottom" | "left" | "right" | "top" | "center"): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, "bottom" | "left" | "right" | "top" | "center", {
|
46
46
|
"onUpdate:modelValue": {
|
47
|
-
type: import("vue").PropType<(value: "
|
47
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
48
48
|
};
|
49
49
|
} & {
|
50
50
|
"v-model": {
|
51
|
-
type: import("vue").PropType<"
|
51
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
52
52
|
required: false;
|
53
53
|
};
|
54
54
|
} & {
|
55
55
|
modelValue: {
|
56
|
-
type: import("vue").PropType<"
|
56
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
57
57
|
required: false;
|
58
58
|
};
|
59
59
|
}, false>;
|
60
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, "
|
60
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, "bottom" | "left" | "right" | "top" | "center", {
|
61
61
|
"onUpdate:modelValue": {
|
62
|
-
type: import("vue").PropType<(value: "
|
62
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
63
63
|
};
|
64
64
|
} & {
|
65
65
|
"v-model": {
|
66
|
-
type: import("vue").PropType<"
|
66
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
67
67
|
required: false;
|
68
68
|
};
|
69
69
|
} & {
|
70
70
|
modelValue: {
|
71
|
-
type: import("vue").PropType<"
|
71
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
72
72
|
required: false;
|
73
73
|
};
|
74
74
|
}>;
|
75
75
|
};
|
76
76
|
}>> & {
|
77
|
-
"onUpdate:modelValue"?: (value: "
|
77
|
+
"onUpdate:modelValue"?: (value: "bottom" | "left" | "right" | "top" | "center") => any;
|
78
78
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
79
79
|
"update:modelValue": (value: VelcronHorizontalAlignments | VelcronVerticalAlignments) => true;
|
80
80
|
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
@@ -89,73 +89,73 @@ declare const _default: {
|
|
89
89
|
type: import("vue").PropType<VelcronAlignmentPropertyEditorSettings>;
|
90
90
|
};
|
91
91
|
"onUpdate:modelValue": {
|
92
|
-
type: import("vue").PropType<(value: "
|
92
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
93
93
|
};
|
94
94
|
"v-model": {
|
95
|
-
type: import("vue").PropType<"
|
95
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
96
96
|
required: false;
|
97
97
|
};
|
98
98
|
modelValue: {
|
99
|
-
type: import("vue").PropType<"
|
99
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
100
100
|
required: false;
|
101
101
|
};
|
102
102
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
103
|
-
type: import("vue").PropType<(value: "
|
103
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
104
104
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
105
|
-
type: import("vue").PropType<"
|
105
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
106
106
|
required: false;
|
107
107
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
108
|
-
type: import("vue").PropType<"
|
108
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
109
109
|
required: false;
|
110
110
|
}; } & {
|
111
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, "
|
111
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, "bottom" | "left" | "right" | "top" | "center", {
|
112
112
|
"onUpdate:modelValue": {
|
113
|
-
type: import("vue").PropType<(value: "
|
113
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
114
114
|
};
|
115
115
|
} & {
|
116
116
|
"v-model": {
|
117
|
-
type: import("vue").PropType<"
|
117
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
118
118
|
required: false;
|
119
119
|
};
|
120
120
|
} & {
|
121
121
|
modelValue: {
|
122
|
-
type: import("vue").PropType<"
|
122
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
123
123
|
required: false;
|
124
124
|
};
|
125
125
|
}>;
|
126
|
-
defaultValue(value?: "
|
126
|
+
defaultValue(value?: "bottom" | "left" | "right" | "top" | "center"): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, "bottom" | "left" | "right" | "top" | "center", {
|
127
127
|
"onUpdate:modelValue": {
|
128
|
-
type: import("vue").PropType<(value: "
|
128
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
129
129
|
};
|
130
130
|
} & {
|
131
131
|
"v-model": {
|
132
|
-
type: import("vue").PropType<"
|
132
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
133
133
|
required: false;
|
134
134
|
};
|
135
135
|
} & {
|
136
136
|
modelValue: {
|
137
|
-
type: import("vue").PropType<"
|
137
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
138
138
|
required: false;
|
139
139
|
};
|
140
140
|
}, false>;
|
141
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, "
|
141
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, "bottom" | "left" | "right" | "top" | "center", {
|
142
142
|
"onUpdate:modelValue": {
|
143
|
-
type: import("vue").PropType<(value: "
|
143
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
144
144
|
};
|
145
145
|
} & {
|
146
146
|
"v-model": {
|
147
|
-
type: import("vue").PropType<"
|
147
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
148
148
|
required: false;
|
149
149
|
};
|
150
150
|
} & {
|
151
151
|
modelValue: {
|
152
|
-
type: import("vue").PropType<"
|
152
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
153
153
|
required: false;
|
154
154
|
};
|
155
155
|
}>;
|
156
156
|
};
|
157
157
|
}>> & {
|
158
|
-
"onUpdate:modelValue"?: (value: "
|
158
|
+
"onUpdate:modelValue"?: (value: "bottom" | "left" | "right" | "top" | "center") => any;
|
159
159
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
160
160
|
__isFragment?: never;
|
161
161
|
__isTeleport?: never;
|
@@ -165,144 +165,144 @@ declare const _default: {
|
|
165
165
|
type: import("vue").PropType<VelcronAlignmentPropertyEditorSettings>;
|
166
166
|
};
|
167
167
|
"onUpdate:modelValue": {
|
168
|
-
type: import("vue").PropType<(value: "
|
168
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
169
169
|
};
|
170
170
|
"v-model": {
|
171
|
-
type: import("vue").PropType<"
|
171
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
172
172
|
required: false;
|
173
173
|
};
|
174
174
|
modelValue: {
|
175
|
-
type: import("vue").PropType<"
|
175
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
176
176
|
required: false;
|
177
177
|
};
|
178
178
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
179
|
-
type: import("vue").PropType<(value: "
|
179
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
180
180
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
181
|
-
type: import("vue").PropType<"
|
181
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
182
182
|
required: false;
|
183
183
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
184
|
-
type: import("vue").PropType<"
|
184
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
185
185
|
required: false;
|
186
186
|
}; } & {
|
187
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, "
|
187
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, "bottom" | "left" | "right" | "top" | "center", {
|
188
188
|
"onUpdate:modelValue": {
|
189
|
-
type: import("vue").PropType<(value: "
|
189
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
190
190
|
};
|
191
191
|
} & {
|
192
192
|
"v-model": {
|
193
|
-
type: import("vue").PropType<"
|
193
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
194
194
|
required: false;
|
195
195
|
};
|
196
196
|
} & {
|
197
197
|
modelValue: {
|
198
|
-
type: import("vue").PropType<"
|
198
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
199
199
|
required: false;
|
200
200
|
};
|
201
201
|
}>;
|
202
|
-
defaultValue(value?: "
|
202
|
+
defaultValue(value?: "bottom" | "left" | "right" | "top" | "center"): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, "bottom" | "left" | "right" | "top" | "center", {
|
203
203
|
"onUpdate:modelValue": {
|
204
|
-
type: import("vue").PropType<(value: "
|
204
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
205
205
|
};
|
206
206
|
} & {
|
207
207
|
"v-model": {
|
208
|
-
type: import("vue").PropType<"
|
208
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
209
209
|
required: false;
|
210
210
|
};
|
211
211
|
} & {
|
212
212
|
modelValue: {
|
213
|
-
type: import("vue").PropType<"
|
213
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
214
214
|
required: false;
|
215
215
|
};
|
216
216
|
}, false>;
|
217
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, "
|
217
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, "bottom" | "left" | "right" | "top" | "center", {
|
218
218
|
"onUpdate:modelValue": {
|
219
|
-
type: import("vue").PropType<(value: "
|
219
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
220
220
|
};
|
221
221
|
} & {
|
222
222
|
"v-model": {
|
223
|
-
type: import("vue").PropType<"
|
223
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
224
224
|
required: false;
|
225
225
|
};
|
226
226
|
} & {
|
227
227
|
modelValue: {
|
228
|
-
type: import("vue").PropType<"
|
228
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
229
229
|
required: false;
|
230
230
|
};
|
231
231
|
}>;
|
232
232
|
};
|
233
233
|
}>> & {
|
234
|
-
"onUpdate:modelValue"?: (value: "
|
234
|
+
"onUpdate:modelValue"?: (value: "bottom" | "left" | "right" | "top" | "center") => any;
|
235
235
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
236
236
|
"update:modelValue": (value: VelcronHorizontalAlignments | VelcronVerticalAlignments) => true;
|
237
237
|
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
238
238
|
propsDefinition: Omit<Readonly<{} & {
|
239
239
|
name?: {
|
240
240
|
[x: `onUpdate:${string}`]: {
|
241
|
-
type: import("vue").PropType<(value: "
|
241
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
242
242
|
};
|
243
243
|
} & {
|
244
244
|
[x: `v-model:${string}`]: {
|
245
|
-
type: import("vue").PropType<"
|
245
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
246
246
|
required: false;
|
247
247
|
};
|
248
248
|
} & {
|
249
249
|
[x: string]: {
|
250
|
-
type: import("vue").PropType<"
|
250
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
251
251
|
required: false;
|
252
252
|
};
|
253
253
|
} & {
|
254
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<string, "
|
254
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<string, "bottom" | "left" | "right" | "top" | "center", {
|
255
255
|
"onUpdate:modelValue": {
|
256
|
-
type: import("vue").PropType<(value: "
|
256
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
257
257
|
};
|
258
258
|
} & {
|
259
259
|
"v-model": {
|
260
|
-
type: import("vue").PropType<"
|
260
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
261
261
|
required: false;
|
262
262
|
};
|
263
263
|
} & {
|
264
264
|
modelValue: {
|
265
|
-
type: import("vue").PropType<"
|
265
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
266
266
|
required: false;
|
267
267
|
};
|
268
268
|
}>;
|
269
|
-
defaultValue(value?: "
|
269
|
+
defaultValue(value?: "bottom" | "left" | "right" | "top" | "center"): import("../../../DefineVueTypings").DefinePropModelDefaultValue<string, "bottom" | "left" | "right" | "top" | "center", {
|
270
270
|
"onUpdate:modelValue": {
|
271
|
-
type: import("vue").PropType<(value: "
|
271
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
272
272
|
};
|
273
273
|
} & {
|
274
274
|
"v-model": {
|
275
|
-
type: import("vue").PropType<"
|
275
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
276
276
|
required: false;
|
277
277
|
};
|
278
278
|
} & {
|
279
279
|
modelValue: {
|
280
|
-
type: import("vue").PropType<"
|
280
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
281
281
|
required: false;
|
282
282
|
};
|
283
283
|
}, false>;
|
284
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string, "
|
284
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string, "bottom" | "left" | "right" | "top" | "center", {
|
285
285
|
"onUpdate:modelValue": {
|
286
|
-
type: import("vue").PropType<(value: "
|
286
|
+
type: import("vue").PropType<(value: "bottom" | "left" | "right" | "top" | "center") => any | void>;
|
287
287
|
};
|
288
288
|
} & {
|
289
289
|
"v-model": {
|
290
|
-
type: import("vue").PropType<"
|
290
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
291
291
|
required: false;
|
292
292
|
};
|
293
293
|
} & {
|
294
294
|
modelValue: {
|
295
|
-
type: import("vue").PropType<"
|
295
|
+
type: import("vue").PropType<"bottom" | "left" | "right" | "top" | "center">;
|
296
296
|
required: false;
|
297
297
|
};
|
298
298
|
}>;
|
299
299
|
};
|
300
300
|
settings?: VelcronAlignmentPropertyEditorSettings;
|
301
|
-
"v-model"?: "
|
302
|
-
modelValue?: "
|
303
|
-
"onUpdate:modelValue"?: (value: "
|
301
|
+
"v-model"?: "bottom" | "left" | "right" | "top" | "center";
|
302
|
+
modelValue?: "bottom" | "left" | "right" | "top" | "center";
|
303
|
+
"onUpdate:modelValue"?: (value: "bottom" | "left" | "right" | "top" | "center") => any | void;
|
304
304
|
}>, "onUpdate:modelValue"> & {
|
305
|
-
"onUpdate:modelValue"?: (value: "
|
305
|
+
"onUpdate:modelValue"?: (value: "bottom" | "left" | "right" | "top" | "center") => any;
|
306
306
|
};
|
307
307
|
};
|
308
308
|
export default _default;
|
package/internal-do-not-import-from-here/ux/versionedlayout/editor/LayoutEditorTabRenderer.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Layout, LayoutEditorCanvasApi,
|
1
|
+
import { Layout, LayoutEditorCanvasApi, LegacyThemeDefinition, VersionedLayout, VersionedLayoutDefinition } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
layoutDependencyProviders: {
|
@@ -11,10 +11,10 @@ declare const _default: {
|
|
11
11
|
type: import("vue").PropType<(instance: LayoutEditorCanvasApi) => void>;
|
12
12
|
};
|
13
13
|
blockThemeDefinition: {
|
14
|
-
type: import("vue").PropType<
|
14
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
15
15
|
};
|
16
16
|
layoutThemeDefinition: {
|
17
|
-
type: import("vue").PropType<
|
17
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
18
18
|
};
|
19
19
|
isCheckedOutToMe: {
|
20
20
|
type: import("vue").PropType<boolean>;
|
@@ -46,10 +46,10 @@ declare const _default: {
|
|
46
46
|
type: import("vue").PropType<(instance: LayoutEditorCanvasApi) => void>;
|
47
47
|
};
|
48
48
|
blockThemeDefinition: {
|
49
|
-
type: import("vue").PropType<
|
49
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
50
50
|
};
|
51
51
|
layoutThemeDefinition: {
|
52
|
-
type: import("vue").PropType<
|
52
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
53
53
|
};
|
54
54
|
isCheckedOutToMe: {
|
55
55
|
type: import("vue").PropType<boolean>;
|
@@ -78,10 +78,10 @@ declare const _default: {
|
|
78
78
|
type: import("vue").PropType<(instance: LayoutEditorCanvasApi) => void>;
|
79
79
|
};
|
80
80
|
blockThemeDefinition: {
|
81
|
-
type: import("vue").PropType<
|
81
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
82
82
|
};
|
83
83
|
layoutThemeDefinition: {
|
84
|
-
type: import("vue").PropType<
|
84
|
+
type: import("vue").PropType<LegacyThemeDefinition>;
|
85
85
|
};
|
86
86
|
isCheckedOutToMe: {
|
87
87
|
type: import("vue").PropType<boolean>;
|
@@ -101,8 +101,8 @@ declare const _default: {
|
|
101
101
|
definition?: VersionedLayoutDefinition;
|
102
102
|
versionedLayout?: VersionedLayout;
|
103
103
|
isCheckedOutToMe?: boolean;
|
104
|
-
layoutThemeDefinition?:
|
105
|
-
blockThemeDefinition?:
|
104
|
+
layoutThemeDefinition?: LegacyThemeDefinition;
|
105
|
+
blockThemeDefinition?: LegacyThemeDefinition;
|
106
106
|
setLayoutEditorCanvasApi?: (instance: LayoutEditorCanvasApi) => void;
|
107
107
|
layoutProvider?: string;
|
108
108
|
layoutDependencyProviders?: string[];
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { VersionedLayout, VersionedLayoutDefinition, EditorDisplayModes, guid, IActionButton, IEditorItem, IEditorItemPanelsRenderer, IEditorTabRegistration, IVersionedData, Layout, LayoutEditorCanvasApi,
|
1
|
+
import { VersionedLayout, VersionedLayoutDefinition, EditorDisplayModes, guid, IActionButton, IEditorItem, IEditorItemPanelsRenderer, IEditorTabRegistration, IVersionedData, Layout, LayoutEditorCanvasApi, LayoutEditorModes, LegacyThemeDefinition } from "@omnia/fx-models";
|
2
2
|
import { VersionedLayoutEditorStore } from "..";
|
3
3
|
import { VersionedLayoutStore, MultilingualStore } from "../../../stores";
|
4
4
|
import { EditorChromeStore } from "../../editorchrome";
|
@@ -13,8 +13,8 @@ export declare class VersionedLayoutDefinitionEditorItemPrivateImutableState {
|
|
13
13
|
readonly editorChromeStore: EditorChromeStore;
|
14
14
|
readonly versionedLayoutEditorStore: VersionedLayoutEditorStore;
|
15
15
|
readonly versionedLayoutStore: VersionedLayoutStore;
|
16
|
-
readonly layoutThemeDefinition:
|
17
|
-
readonly blockThemeDefinition:
|
16
|
+
readonly layoutThemeDefinition: LegacyThemeDefinition;
|
17
|
+
readonly blockThemeDefinition: LegacyThemeDefinition;
|
18
18
|
readonly enableAlternateLayouts: boolean;
|
19
19
|
readonly enableBlockLockSettings: boolean;
|
20
20
|
readonly hideDeleteButton: boolean;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { LayoutEditorModes,
|
1
|
+
import { LayoutEditorModes, LegacyThemeDefinition } from "@omnia/fx-models";
|
2
2
|
import { VersionedLayoutDefinitionEditorItem } from "./VersionedLayoutDefinitionEditorItem";
|
3
3
|
import { VersionedLayoutEditorApi } from "./IVersionedLayoutEditor";
|
4
4
|
export interface VersionedLayoutDefinitionEditorItemConfiguration {
|
@@ -6,8 +6,8 @@ export interface VersionedLayoutDefinitionEditorItemConfiguration {
|
|
6
6
|
versionedLayoutId: number;
|
7
7
|
api: VersionedLayoutEditorApi;
|
8
8
|
layoutEditorMode?: LayoutEditorModes;
|
9
|
-
layoutThemeDefinition?:
|
10
|
-
blockThemeDefinition?:
|
9
|
+
layoutThemeDefinition?: LegacyThemeDefinition;
|
10
|
+
blockThemeDefinition?: LegacyThemeDefinition;
|
11
11
|
enableAlternateLayouts?: boolean;
|
12
12
|
enableBlockLockSettings?: boolean;
|
13
13
|
hideDeleteAction?: boolean;
|