@omnia/fx 8.0.123-dev → 8.0.126-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/libs/swiper/Swiper.d.ts +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
- package/internal-do-not-import-from-here/services/TransactionLogService.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/broadcasting/InternalTopics.d.ts +5 -0
- package/internal-do-not-import-from-here/shared/models/HttpCommon.d.ts +14 -0
- package/internal-do-not-import-from-here/shared/models/HttpCommon.js +7 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/Activity.d.ts +8 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/Activity.js +7 -1
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivitySender.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivitySubscription.d.ts +16 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivitySubscription.js +5 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/index.js +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/index.js +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/targeting/ExternalIdentityProperty.d.ts +10 -0
- package/internal-do-not-import-from-here/shared/models/hub/targeting/ExternalIdentityProperty.js +19 -0
- package/internal-do-not-import-from-here/shared/models/hub/targeting/HubSource.d.ts +3 -0
- package/internal-do-not-import-from-here/shared/models/hub/targeting/HubSource.js +7 -0
- package/internal-do-not-import-from-here/shared/models/hub/targeting/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/targeting/index.js +4 -0
- package/internal-do-not-import-from-here/shared/models/theming/Blueprints.d.ts +127 -0
- package/internal-do-not-import-from-here/shared/models/theming/{ChromeDefinition.d.ts → Chrome.d.ts} +3 -3
- package/internal-do-not-import-from-here/shared/models/theming/SharedBlueprintMethods.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/theming/SharedBlueprintMethods.js +6 -6
- package/internal-do-not-import-from-here/shared/models/theming/Spacing.d.ts +22 -0
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +2 -3
- package/internal-do-not-import-from-here/shared/models/theming/{TypographyDefinition.d.ts → Typography.d.ts} +16 -16
- package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.d.ts +2 -2
- package/internal-do-not-import-from-here/shared/models/theming/index.d.ts +4 -4
- package/internal-do-not-import-from-here/shared/models/theming/index.js +4 -4
- package/internal-do-not-import-from-here/shared/models/velcron/VelcronReference.d.ts +20 -0
- package/internal-do-not-import-from-here/shared/models/velcron/VelcronReference.js +5 -0
- package/internal-do-not-import-from-here/shared/models/velcron/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/velcron/index.js +1 -0
- package/internal-do-not-import-from-here/shared/services/ActivityService.d.ts +12 -16
- package/internal-do-not-import-from-here/shared/services/ActivitySubscriptionService.d.ts +15 -0
- package/internal-do-not-import-from-here/shared/services/DefineService.d.ts +1 -6
- package/internal-do-not-import-from-here/shared/services/index.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/{ux/mediapickerV2/imagetransformer/store → stores/mediapicker}/ImageTransformerStore.d.ts +16 -18
- package/internal-do-not-import-from-here/{ux/mediapickerV2/stores → stores/mediapicker}/MediaPickerCommonStore.d.ts +4 -3
- package/internal-do-not-import-from-here/{ux/mediapickerV2/stores → stores/mediapicker}/MediaPickerGalleryStore.d.ts +15 -15
- package/internal-do-not-import-from-here/{ux/mediapickerV2/stores → stores/mediapicker}/ProviderStore.d.ts +26 -28
- package/internal-do-not-import-from-here/{ux/mediapickerV2/chrome/core → stores/mediapicker/Utils}/MediaFileProcessor.d.ts +1 -1
- package/internal-do-not-import-from-here/{ux/mediapickerV2/chrome/core → stores/mediapicker/Utils}/index.d.ts +1 -0
- package/internal-do-not-import-from-here/{ux/mediapickerV2/stores → stores/mediapicker}/constants.d.ts +1 -1
- package/internal-do-not-import-from-here/{ux/mediapickerV2/imagetransformer → stores/mediapicker/handlers}/Utils/index.d.ts +1 -0
- package/internal-do-not-import-from-here/{ux/mediapickerV2/handlers/imagetransformer → stores/mediapicker/handlers/Utils}/utils.d.ts +1 -1
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/gallery/ImageHandler.d.ts +1 -2
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/gallery/VideoHandler.d.ts +2 -3
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/imagetransformer/cropByRatio.d.ts +1 -2
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/imagetransformer/filter.d.ts +1 -2
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/imagetransformer/flip.d.ts +1 -2
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/imagetransformer/index.d.ts +0 -1
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/index.d.ts +2 -1
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/provider/BaseImageHandler.d.ts +2 -3
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/provider/BaseVideoHandler.d.ts +2 -3
- package/internal-do-not-import-from-here/{ux/mediapickerV2/stores → stores/mediapicker}/index.d.ts +3 -1
- package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/StyleHelper.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/backgroundstylepicker/BackgroundStyleEditor.d.ts +76 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/ButtonBlueprintsViewer.d.ts +72 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/ButtonStyleEditor.d.ts +85 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/ButtonStylePicker.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/ButtonStylePicker.d.ts +9 -7
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromeEditor.d.ts +119 -98
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.d.ts +98 -98
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromeViewer.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/blueprintpickers/componentblueprints/ComponentBlueprintsViewer.d.ts +68 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/spacingpicker/SpacingPicker3.d.ts +98 -98
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/TabBlueprintsViewer.d.ts +76 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/TabStyleEditor.d.ts +77 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/TabStylePicker.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/TabStylePicker.d.ts +68 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/typographypicker/TypographyEditor.d.ts +459 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/typographypicker/TypographyPicker.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/typographypicker/TypographyPicker.d.ts +12 -4
- package/internal-do-not-import-from-here/ux/colorpickerV2/ColorPicker.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +97 -97
- package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/docs/chrome/VelcronSampleViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/governancedashboard/BarChartIndicator.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointSectionSettingsComponent.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +19 -19
- package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Delimiter.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Slider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/types.d.ts +13 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/docs/MediaProviderExample.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/ImageGrid.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditorCanvas.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/handler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/models/AppInstanceRollupStyles.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +29 -29
- package/internal-do-not-import-from-here/ux/oxide/column/ColumnGrid.d.ts +29 -29
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +26 -26
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +52 -52
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +53 -0
- package/internal-do-not-import-from-here/ux/oxide/flex/Flex2.d.ts +19 -19
- package/internal-do-not-import-from-here/ux/oxide/flex/Row.d.ts +49 -49
- package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/main/Main.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +52 -52
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/Slide.d.ts +26 -4
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/constants.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/store/SlidePanelStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +32 -10
- package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +27 -1
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +19 -19
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerEditorExtension.d.ts +14 -14
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerToolbar.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/PastingImageFromFileHandler.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/PastingMicrosoftOfficeImageHandler.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/PastingOmniaImageFromClipboardHandler.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/settings/SettingsPane.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/shapedivider/ShapeDivider.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/chrome/store/ChromeEditorStore.d.ts +16 -16
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/components/blades/TabBlade.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/components/blades/TabBladeEdit.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/components/store/ComponentEditorStore.d.ts +36 -21
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/typography/store/TypographyEditorStore.d.ts +22 -22
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/DefinitionsChrome.d.ts +19 -19
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/ThemeDefinitionInstance.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsChrome.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsComponents.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsSpacing.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsTypography.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/DefinitionsTypography.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsChrome.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsComponents.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsSpacing.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsTypography.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/DefinitionsTypography.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsChrome.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsComponents.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsSpacing.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsTypography.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/DefinitionsTypography.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeBlueprintStore.d.ts +26 -26
- package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeDefinitionStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +21 -21
- package/internal-do-not-import-from-here/ux/theming-v2/store/ComponentBlueprintStore.d.ts +23 -23
- package/internal-do-not-import-from-here/ux/theming-v2/store/ComponentDefinitionStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming-v2/store/SpacingBlueprintStore.d.ts +31 -31
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +45 -45
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeStoreV2.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyBlueprintStore.d.ts +32 -32
- package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyDefinitionStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +1774 -222
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Blueprints.d.ts +11 -6
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Chrome.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/General.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Spacing.d.ts +9 -4
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Typography.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +52 -12268
- package/internal-do-not-import-from-here/ux/use/UseClone.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +26 -26
- package/internal-do-not-import-from-here/ux/velcron/{renderer/VelcronUnitProvider.d.ts → VelcronUnitProvider.d.ts} +1 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/Praise.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/models/VelcronDefinitionIds.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +27 -7
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronRenderers.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/definitions/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/definitions/praise/PraiseApp.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/definitions/praise/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Lottie.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Reference.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Rive.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/SpacingEditor.d.ts +8 -8
- package/internal-do-not-import-from-here/wctypings.d.ts +108 -8
- package/package.json +6 -6
- package/internal-do-not-import-from-here/shared/models/theming/ComponentDefinitions.d.ts +0 -93
- package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.d.ts +0 -30
- package/internal-do-not-import-from-here/shared/services/SocialSourceService.d.ts +0 -10
- package/internal-do-not-import-from-here/shared/services/SourceFileService.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/colorschemadefinitionpicker/ColorSchemaDefinitionPicker.css.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/colorschemadefinitionpicker/ColorSchemaDefinitionPicker.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/GalleryPanel.css.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/GalleryPanels.d.ts +0 -35
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/IMediaPicker.d.ts +0 -36
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/MediaPicker.css.d.ts +0 -20
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/MediaPicker.d.ts +0 -20
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/MediaPickerComponentProps.d.ts +0 -33
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/MediaPickerContext.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/core/MediaPickerImageHandler.d.ts +0 -33
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/core/Utils.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/core/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/index.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/loc/localize.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/mediapickerV2/Utils/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/store/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IImageTransformHandler.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IMediaPickerGalleryHandler.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IMediaPickerProviderMediaHandler.d.ts +0 -56
- package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/index.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/types.d.ts +0 -55
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/DefinitionsJourney.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/velcron/test-definitions/AppTestJson.d.ts +0 -1
- /package/internal-do-not-import-from-here/shared/models/theming/{ComponentDefinitions.js → Blueprints.js} +0 -0
- /package/internal-do-not-import-from-here/shared/models/theming/{ChromeDefinition.js → Chrome.js} +0 -0
- /package/internal-do-not-import-from-here/shared/models/theming/{SpacingSetting.js → Spacing.js} +0 -0
- /package/internal-do-not-import-from-here/shared/models/theming/{TypographyDefinition.js → Typography.js} +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2/chrome/core → stores/mediapicker/Utils}/MediaPickerImageHandler.d.ts +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/Utils/getMediaProvider.d.ts +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2/chrome/core → stores/mediapicker/Utils}/utils.d.ts +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2/imagetransformer → stores/mediapicker/handlers}/Utils/cropUtils.d.ts +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2/imagetransformer → stores/mediapicker/handlers}/Utils/transformUtils.d.ts +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/gallery/index.d.ts +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/provider/index.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/components/{BlueprintsJourney.d.ts → ComponentsJourney.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{depricated-mediapicker/MediaPickerRenderer.d.ts → velcron/VelcronSetup.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{renderer/VelcronStylesProvider.d.ts → VelcronStylesProvider.d.ts} +0 -0
@@ -89,9 +89,9 @@ declare const _default: {
|
|
89
89
|
type: import("vue").PropType<boolean>;
|
90
90
|
};
|
91
91
|
variant: {
|
92
|
-
type: import("vue").PropType<"search" | "link" | "default" | "
|
92
|
+
type: import("vue").PropType<"search" | "link" | "default" | "media" | "find-slim">;
|
93
93
|
} & {
|
94
|
-
type: import("vue").PropType<"search" | "link" | "default" | "
|
94
|
+
type: import("vue").PropType<"search" | "link" | "default" | "media" | "find-slim">;
|
95
95
|
};
|
96
96
|
placeholder: {
|
97
97
|
type: import("vue").PropType<string>;
|
@@ -224,9 +224,9 @@ declare const _default: {
|
|
224
224
|
type: import("vue").PropType<boolean>;
|
225
225
|
};
|
226
226
|
variant: {
|
227
|
-
type: import("vue").PropType<"search" | "link" | "default" | "
|
227
|
+
type: import("vue").PropType<"search" | "link" | "default" | "media" | "find-slim">;
|
228
228
|
} & {
|
229
|
-
type: import("vue").PropType<"search" | "link" | "default" | "
|
229
|
+
type: import("vue").PropType<"search" | "link" | "default" | "media" | "find-slim">;
|
230
230
|
};
|
231
231
|
placeholder: {
|
232
232
|
type: import("vue").PropType<string>;
|
@@ -362,9 +362,9 @@ declare const _default: {
|
|
362
362
|
type: import("vue").PropType<boolean>;
|
363
363
|
};
|
364
364
|
variant: {
|
365
|
-
type: import("vue").PropType<"search" | "link" | "default" | "
|
365
|
+
type: import("vue").PropType<"search" | "link" | "default" | "media" | "find-slim">;
|
366
366
|
} & {
|
367
|
-
type: import("vue").PropType<"search" | "link" | "default" | "
|
367
|
+
type: import("vue").PropType<"search" | "link" | "default" | "media" | "find-slim">;
|
368
368
|
};
|
369
369
|
placeholder: {
|
370
370
|
type: import("vue").PropType<string>;
|
@@ -497,9 +497,9 @@ declare const _default: {
|
|
497
497
|
type: import("vue").PropType<boolean>;
|
498
498
|
};
|
499
499
|
variant: {
|
500
|
-
type: import("vue").PropType<"search" | "link" | "default" | "
|
500
|
+
type: import("vue").PropType<"search" | "link" | "default" | "media" | "find-slim">;
|
501
501
|
} & {
|
502
|
-
type: import("vue").PropType<"search" | "link" | "default" | "
|
502
|
+
type: import("vue").PropType<"search" | "link" | "default" | "media" | "find-slim">;
|
503
503
|
};
|
504
504
|
placeholder: {
|
505
505
|
type: import("vue").PropType<string>;
|
@@ -572,7 +572,7 @@ declare const _default: {
|
|
572
572
|
} & VTextFieldSlots;
|
573
573
|
prefix?: string;
|
574
574
|
autofocus?: boolean;
|
575
|
-
variant?: "search" | "link" | "default" | "
|
575
|
+
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
576
576
|
toned?: boolean;
|
577
577
|
loading?: boolean;
|
578
578
|
rules?: ValidationRule[];
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import { ColorDefinition,
|
1
|
+
import { ColorDefinition, Spacing, SpacingValue } from "@omnia/fx-models";
|
2
2
|
type PaddingSettings = {
|
3
|
-
padding:
|
4
|
-
indentation: number |
|
3
|
+
padding: Spacing | SpacingValue;
|
4
|
+
indentation: number | SpacingValue;
|
5
5
|
level: number;
|
6
6
|
};
|
7
7
|
export declare const TreeViewStyles: {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { IIcon,
|
1
|
+
import { IIcon, Spacing, SpacingValue } from "@omnia/fx-models";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
export interface TextFieldModel {
|
4
4
|
text: String;
|
@@ -18,17 +18,17 @@ declare const _default: {
|
|
18
18
|
itemToolTip?: (item: any) => VNodeChild;
|
19
19
|
}>;
|
20
20
|
indentation: {
|
21
|
-
type: import("vue").PropType<
|
21
|
+
type: import("vue").PropType<SpacingValue>;
|
22
22
|
required: false;
|
23
23
|
} & {
|
24
|
-
type: import("vue").PropType<
|
24
|
+
type: import("vue").PropType<SpacingValue>;
|
25
25
|
required: false;
|
26
26
|
};
|
27
27
|
padding: {
|
28
|
-
type: import("vue").PropType<
|
28
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
29
29
|
required: false;
|
30
30
|
} & {
|
31
|
-
type: import("vue").PropType<
|
31
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
32
32
|
required: false;
|
33
33
|
};
|
34
34
|
"check-node-to-move": {
|
@@ -144,17 +144,17 @@ declare const _default: {
|
|
144
144
|
itemToolTip?: (item: any) => VNodeChild;
|
145
145
|
}>;
|
146
146
|
indentation: {
|
147
|
-
type: import("vue").PropType<
|
147
|
+
type: import("vue").PropType<SpacingValue>;
|
148
148
|
required: false;
|
149
149
|
} & {
|
150
|
-
type: import("vue").PropType<
|
150
|
+
type: import("vue").PropType<SpacingValue>;
|
151
151
|
required: false;
|
152
152
|
};
|
153
153
|
padding: {
|
154
|
-
type: import("vue").PropType<
|
154
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
155
155
|
required: false;
|
156
156
|
} & {
|
157
|
-
type: import("vue").PropType<
|
157
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
158
158
|
required: false;
|
159
159
|
};
|
160
160
|
"check-node-to-move": {
|
@@ -279,17 +279,17 @@ declare const _default: {
|
|
279
279
|
itemToolTip?: (item: any) => VNodeChild;
|
280
280
|
}>;
|
281
281
|
indentation: {
|
282
|
-
type: import("vue").PropType<
|
282
|
+
type: import("vue").PropType<SpacingValue>;
|
283
283
|
required: false;
|
284
284
|
} & {
|
285
|
-
type: import("vue").PropType<
|
285
|
+
type: import("vue").PropType<SpacingValue>;
|
286
286
|
required: false;
|
287
287
|
};
|
288
288
|
padding: {
|
289
|
-
type: import("vue").PropType<
|
289
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
290
290
|
required: false;
|
291
291
|
} & {
|
292
|
-
type: import("vue").PropType<
|
292
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
293
293
|
required: false;
|
294
294
|
};
|
295
295
|
"check-node-to-move": {
|
@@ -411,17 +411,17 @@ declare const _default: {
|
|
411
411
|
itemToolTip?: (item: any) => VNodeChild;
|
412
412
|
}>;
|
413
413
|
indentation: {
|
414
|
-
type: import("vue").PropType<
|
414
|
+
type: import("vue").PropType<SpacingValue>;
|
415
415
|
required: false;
|
416
416
|
} & {
|
417
|
-
type: import("vue").PropType<
|
417
|
+
type: import("vue").PropType<SpacingValue>;
|
418
418
|
required: false;
|
419
419
|
};
|
420
420
|
padding: {
|
421
|
-
type: import("vue").PropType<
|
421
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
422
422
|
required: false;
|
423
423
|
} & {
|
424
|
-
type: import("vue").PropType<
|
424
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
425
425
|
required: false;
|
426
426
|
};
|
427
427
|
"check-node-to-move": {
|
@@ -539,7 +539,7 @@ declare const _default: {
|
|
539
539
|
colorSchemaType?: any;
|
540
540
|
colors?: any;
|
541
541
|
} & {
|
542
|
-
padding?:
|
542
|
+
padding?: Spacing | SpacingValue;
|
543
543
|
expanded?: any[];
|
544
544
|
multiple?: boolean;
|
545
545
|
items?: any[];
|
@@ -572,7 +572,7 @@ declare const _default: {
|
|
572
572
|
"on-move-node"?: (item: any, currentPosition: number, newPosition: number) => void | Promise<void>;
|
573
573
|
checkNodeToMove?: (item: any) => boolean;
|
574
574
|
"check-node-to-move"?: (item: any) => boolean;
|
575
|
-
indentation?:
|
575
|
+
indentation?: SpacingValue;
|
576
576
|
}>, "onUpdate:active"> & {
|
577
577
|
"onUpdate:active"?: (items: any[]) => any;
|
578
578
|
};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { MediaPickerProps } from "@omnia/fx/ux";
|
2
2
|
import { Guid, MediaPickerNodeCommand } from "../../../../models";
|
3
3
|
export declare const mediaPickerEditorExtension: () => {
|
4
4
|
id: Guid;
|
@@ -9,10 +9,10 @@ export declare const mediaPickerEditorExtension: () => {
|
|
9
9
|
toolbar: {
|
10
10
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
11
11
|
"media-picker": {
|
12
|
-
type: import("vue").PropType<
|
12
|
+
type: import("vue").PropType<MediaPickerProps>;
|
13
13
|
};
|
14
14
|
mediaPicker: {
|
15
|
-
type: import("vue").PropType<
|
15
|
+
type: import("vue").PropType<MediaPickerProps>;
|
16
16
|
};
|
17
17
|
"onUpdate:selectedMedia": {
|
18
18
|
type: import("vue").PropType<(value: MediaPickerNodeCommand) => any>;
|
@@ -43,10 +43,10 @@ export declare const mediaPickerEditorExtension: () => {
|
|
43
43
|
};
|
44
44
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
45
45
|
"media-picker": {
|
46
|
-
type: import("vue").PropType<
|
46
|
+
type: import("vue").PropType<MediaPickerProps>;
|
47
47
|
};
|
48
48
|
mediaPicker: {
|
49
|
-
type: import("vue").PropType<
|
49
|
+
type: import("vue").PropType<MediaPickerProps>;
|
50
50
|
};
|
51
51
|
"onUpdate:selectedMedia": {
|
52
52
|
type: import("vue").PropType<(value: MediaPickerNodeCommand) => any>;
|
@@ -84,10 +84,10 @@ export declare const mediaPickerEditorExtension: () => {
|
|
84
84
|
Defaults: {};
|
85
85
|
}, Readonly<import("vue").ExtractPropTypes<{
|
86
86
|
"media-picker": {
|
87
|
-
type: import("vue").PropType<
|
87
|
+
type: import("vue").PropType<MediaPickerProps>;
|
88
88
|
};
|
89
89
|
mediaPicker: {
|
90
|
-
type: import("vue").PropType<
|
90
|
+
type: import("vue").PropType<MediaPickerProps>;
|
91
91
|
};
|
92
92
|
"onUpdate:selectedMedia": {
|
93
93
|
type: import("vue").PropType<(value: MediaPickerNodeCommand) => any>;
|
@@ -122,10 +122,10 @@ export declare const mediaPickerEditorExtension: () => {
|
|
122
122
|
__isSuspense?: never;
|
123
123
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
124
124
|
"media-picker": {
|
125
|
-
type: import("vue").PropType<
|
125
|
+
type: import("vue").PropType<MediaPickerProps>;
|
126
126
|
};
|
127
127
|
mediaPicker: {
|
128
|
-
type: import("vue").PropType<
|
128
|
+
type: import("vue").PropType<MediaPickerProps>;
|
129
129
|
};
|
130
130
|
"onUpdate:selectedMedia": {
|
131
131
|
type: import("vue").PropType<(value: MediaPickerNodeCommand) => any>;
|
@@ -158,20 +158,20 @@ export declare const mediaPickerEditorExtension: () => {
|
|
158
158
|
propsDefinition: Omit<Readonly<{} & {
|
159
159
|
menubar?: import("@omnia/fx-models").MediaPickerMenuBar;
|
160
160
|
editor?: import("@omnia/fx-models").TipTapEditor;
|
161
|
+
selectedMedia?: MediaPickerNodeCommand;
|
161
162
|
onContentChanged?: (content: string) => void;
|
162
|
-
mediaPicker?:
|
163
|
+
mediaPicker?: MediaPickerProps;
|
163
164
|
"on-content-changed"?: (content: string) => void;
|
164
|
-
selectedMedia?: MediaPickerNodeCommand;
|
165
165
|
"onUpdate:selectedMedia"?: (value: MediaPickerNodeCommand) => any;
|
166
166
|
"v-model:selectedMedia"?: MediaPickerNodeCommand;
|
167
|
-
"media-picker"?:
|
167
|
+
"media-picker"?: MediaPickerProps;
|
168
168
|
}>, never>;
|
169
169
|
};
|
170
170
|
configuration: {
|
171
171
|
selectedMedia: MediaPickerNodeCommand;
|
172
|
-
mediaPicker:
|
172
|
+
mediaPicker: MediaPickerProps;
|
173
173
|
};
|
174
174
|
}[];
|
175
175
|
};
|
176
|
-
setOptions(options:
|
176
|
+
setOptions(options: MediaPickerProps): void;
|
177
177
|
};
|
@@ -1,12 +1,12 @@
|
|
1
|
-
import {
|
1
|
+
import { MediaPickerProps } from "@omnia/fx/ux";
|
2
2
|
import { TipTapEditor, MediaPickerMenuBar, MediaPickerNodeCommand } from "@omnia/fx-models";
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
5
5
|
"media-picker": {
|
6
|
-
type: import("vue").PropType<
|
6
|
+
type: import("vue").PropType<MediaPickerProps>;
|
7
7
|
};
|
8
8
|
mediaPicker: {
|
9
|
-
type: import("vue").PropType<
|
9
|
+
type: import("vue").PropType<MediaPickerProps>;
|
10
10
|
};
|
11
11
|
"onUpdate:selectedMedia": {
|
12
12
|
type: import("vue").PropType<(value: MediaPickerNodeCommand) => any>;
|
@@ -37,10 +37,10 @@ declare const _default: {
|
|
37
37
|
};
|
38
38
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
39
39
|
"media-picker": {
|
40
|
-
type: import("vue").PropType<
|
40
|
+
type: import("vue").PropType<MediaPickerProps>;
|
41
41
|
};
|
42
42
|
mediaPicker: {
|
43
|
-
type: import("vue").PropType<
|
43
|
+
type: import("vue").PropType<MediaPickerProps>;
|
44
44
|
};
|
45
45
|
"onUpdate:selectedMedia": {
|
46
46
|
type: import("vue").PropType<(value: MediaPickerNodeCommand) => any>;
|
@@ -78,10 +78,10 @@ declare const _default: {
|
|
78
78
|
Defaults: {};
|
79
79
|
}, Readonly<import("vue").ExtractPropTypes<{
|
80
80
|
"media-picker": {
|
81
|
-
type: import("vue").PropType<
|
81
|
+
type: import("vue").PropType<MediaPickerProps>;
|
82
82
|
};
|
83
83
|
mediaPicker: {
|
84
|
-
type: import("vue").PropType<
|
84
|
+
type: import("vue").PropType<MediaPickerProps>;
|
85
85
|
};
|
86
86
|
"onUpdate:selectedMedia": {
|
87
87
|
type: import("vue").PropType<(value: MediaPickerNodeCommand) => any>;
|
@@ -116,10 +116,10 @@ declare const _default: {
|
|
116
116
|
__isSuspense?: never;
|
117
117
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
118
118
|
"media-picker": {
|
119
|
-
type: import("vue").PropType<
|
119
|
+
type: import("vue").PropType<MediaPickerProps>;
|
120
120
|
};
|
121
121
|
mediaPicker: {
|
122
|
-
type: import("vue").PropType<
|
122
|
+
type: import("vue").PropType<MediaPickerProps>;
|
123
123
|
};
|
124
124
|
"onUpdate:selectedMedia": {
|
125
125
|
type: import("vue").PropType<(value: MediaPickerNodeCommand) => any>;
|
@@ -152,13 +152,13 @@ declare const _default: {
|
|
152
152
|
propsDefinition: Omit<Readonly<{} & {
|
153
153
|
menubar?: MediaPickerMenuBar;
|
154
154
|
editor?: TipTapEditor;
|
155
|
+
selectedMedia?: MediaPickerNodeCommand;
|
155
156
|
onContentChanged?: (content: string) => void;
|
156
|
-
mediaPicker?:
|
157
|
+
mediaPicker?: MediaPickerProps;
|
157
158
|
"on-content-changed"?: (content: string) => void;
|
158
|
-
selectedMedia?: MediaPickerNodeCommand;
|
159
159
|
"onUpdate:selectedMedia"?: (value: MediaPickerNodeCommand) => any;
|
160
160
|
"v-model:selectedMedia"?: MediaPickerNodeCommand;
|
161
|
-
"media-picker"?:
|
161
|
+
"media-picker"?: MediaPickerProps;
|
162
162
|
}>, never>;
|
163
163
|
};
|
164
164
|
export default _default;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { MediaPickerImage, MediaPickerToolbarProperties } from "@omnia/fx-models";
|
2
|
-
import {
|
2
|
+
import { MediaPickerProps } from "@omnia/fx/ux";
|
3
3
|
interface PastingImageFromFileHandlerProps extends MediaPickerToolbarProperties {
|
4
|
-
mediaPicker:
|
4
|
+
mediaPicker: MediaPickerProps;
|
5
5
|
}
|
6
6
|
export declare namespace PastingImageFromFileHandler {
|
7
7
|
function onPaste(data: DataTransfer, props: PastingImageFromFileHandlerProps): void;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { MediaPickerToolbarProperties } from "@omnia/fx-models";
|
2
|
-
import {
|
2
|
+
import { MediaPickerProps } from "@omnia/fx/ux";
|
3
3
|
interface ParsingMicrosoftWordImageHandlerProps extends MediaPickerToolbarProperties {
|
4
|
-
mediaPicker:
|
4
|
+
mediaPicker: MediaPickerProps;
|
5
5
|
}
|
6
6
|
export declare namespace PastingMicrosoftOfficeImageHandler {
|
7
7
|
function onPaste(data: DataTransfer, props: ParsingMicrosoftWordImageHandlerProps): Promise<void>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { MediaPickerToolbarProperties } from "@omnia/fx-models";
|
2
|
-
import {
|
2
|
+
import { MediaPickerProps } from "@omnia/fx/ux";
|
3
3
|
interface PastingOmniaImageFromClipboardHandlerProps extends MediaPickerToolbarProperties {
|
4
|
-
mediaPicker:
|
4
|
+
mediaPicker: MediaPickerProps;
|
5
5
|
}
|
6
6
|
export declare namespace PastingOmniaImageFromClipboardHandler {
|
7
7
|
function onPaste(data: DataTransfer, props: PastingOmniaImageFromClipboardHandlerProps): void;
|
@@ -297,11 +297,11 @@ declare const _default: {
|
|
297
297
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
298
298
|
propsDefinition: Omit<Readonly<{} & {
|
299
299
|
title?: string;
|
300
|
+
description?: string;
|
300
301
|
width?: string | number;
|
301
302
|
headerClass?: string;
|
302
303
|
contentClass?: string;
|
303
304
|
onCancel?: () => void;
|
304
|
-
description?: string;
|
305
305
|
"v-model"?: boolean;
|
306
306
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
307
307
|
modelValue?: boolean;
|
@@ -1,14 +1,14 @@
|
|
1
1
|
import { IWebComponentInstance } from "@omnia/fx";
|
2
2
|
import { VueComponentBase } from "@omnia/fx/ux";
|
3
3
|
import { ShapeDividerSettings, ShapeDividerTypes, ShapeDividerPositions } from "../../models";
|
4
|
-
import {
|
4
|
+
import { Spacing } from "../../models";
|
5
5
|
export declare class ShapeDividerComponent extends VueComponentBase implements IWebComponentInstance, ShapeDividerSettings {
|
6
6
|
invert: boolean;
|
7
7
|
position: ShapeDividerPositions;
|
8
8
|
flip: boolean;
|
9
9
|
shape: ShapeDividerTypes;
|
10
10
|
color: string;
|
11
|
-
spacing:
|
11
|
+
spacing: Spacing;
|
12
12
|
borderradius: number;
|
13
13
|
width: number;
|
14
14
|
height: number;
|
@@ -1,29 +1,29 @@
|
|
1
|
-
import {
|
1
|
+
import { ChromeBlueprint, Guid, VelcronAppDefinition, ColorValue } from "@omnia/fx-models";
|
2
2
|
export declare const useChromeEditorStore: () => {
|
3
3
|
state: {
|
4
4
|
editMode: boolean;
|
5
5
|
previewColorSchema: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
6
6
|
backgroundOpacity: number;
|
7
7
|
backgroundColor: ColorValue;
|
8
|
-
chromeDefinition:
|
8
|
+
chromeDefinition: ChromeBlueprint;
|
9
9
|
};
|
10
10
|
events: {
|
11
11
|
onMutatedEditMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
12
12
|
onMutatedPreviewColorSchema: import("@omnia/fx").MessageBusExposeOnlySubscription<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
13
13
|
onMutatedBackgroundOpacity: import("@omnia/fx").MessageBusExposeOnlySubscription<number>;
|
14
14
|
onMutatedBackgroundColor: import("@omnia/fx").MessageBusExposeOnlySubscription<ColorValue>;
|
15
|
-
onMutatedChromeDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<
|
15
|
+
onMutatedChromeDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ChromeBlueprint>;
|
16
16
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
17
17
|
actions: {
|
18
18
|
onDispatching: {
|
19
19
|
editChromeDefinition: {
|
20
|
-
subscribe(fn: (definition:
|
20
|
+
subscribe(fn: (definition: ChromeBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
21
21
|
};
|
22
22
|
addChromeDefinition: {
|
23
|
-
subscribe(fn: (definition:
|
23
|
+
subscribe(fn: (definition: ChromeBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
24
24
|
};
|
25
25
|
copyChromeDefinition: {
|
26
|
-
subscribe(fn: (definition:
|
26
|
+
subscribe(fn: (definition: ChromeBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
27
27
|
};
|
28
28
|
updateHeaderDefinition: {
|
29
29
|
subscribe(fn: (definition: VelcronAppDefinition<any>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -34,13 +34,13 @@ export declare const useChromeEditorStore: () => {
|
|
34
34
|
};
|
35
35
|
onDispatched: {
|
36
36
|
editChromeDefinition: {
|
37
|
-
subscribe(fn: (result: void, definition:
|
37
|
+
subscribe(fn: (result: void, definition: ChromeBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
38
38
|
};
|
39
39
|
addChromeDefinition: {
|
40
|
-
subscribe(fn: (result: void, definition:
|
40
|
+
subscribe(fn: (result: void, definition: ChromeBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
41
41
|
};
|
42
42
|
copyChromeDefinition: {
|
43
|
-
subscribe(fn: (result: void, definition:
|
43
|
+
subscribe(fn: (result: void, definition: ChromeBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
44
44
|
};
|
45
45
|
updateHeaderDefinition: {
|
46
46
|
subscribe(fn: (result: void, definition: VelcronAppDefinition<any>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -51,13 +51,13 @@ export declare const useChromeEditorStore: () => {
|
|
51
51
|
};
|
52
52
|
onFailure: {
|
53
53
|
editChromeDefinition: {
|
54
|
-
subscribe(fn: (failureReason: any, definition:
|
54
|
+
subscribe(fn: (failureReason: any, definition: ChromeBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
55
55
|
};
|
56
56
|
addChromeDefinition: {
|
57
|
-
subscribe(fn: (failureReason: any, definition:
|
57
|
+
subscribe(fn: (failureReason: any, definition: ChromeBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
58
58
|
};
|
59
59
|
copyChromeDefinition: {
|
60
|
-
subscribe(fn: (failureReason: any, definition:
|
60
|
+
subscribe(fn: (failureReason: any, definition: ChromeBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
61
61
|
};
|
62
62
|
updateHeaderDefinition: {
|
63
63
|
subscribe(fn: (failureReason: any, definition: VelcronAppDefinition<any>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -67,9 +67,9 @@ export declare const useChromeEditorStore: () => {
|
|
67
67
|
};
|
68
68
|
};
|
69
69
|
} & {
|
70
|
-
editChromeDefinition(definition:
|
71
|
-
addChromeDefinition(definition:
|
72
|
-
copyChromeDefinition(definition:
|
70
|
+
editChromeDefinition(definition: ChromeBlueprint): void;
|
71
|
+
addChromeDefinition(definition: ChromeBlueprint): void;
|
72
|
+
copyChromeDefinition(definition: ChromeBlueprint): void;
|
73
73
|
updateHeaderDefinition(definition: VelcronAppDefinition<any>): void;
|
74
74
|
save(): void;
|
75
75
|
};
|
@@ -77,6 +77,6 @@ export declare const useChromeEditorStore: () => {
|
|
77
77
|
bladeId: {
|
78
78
|
chromeEditBlade: Guid;
|
79
79
|
chromesBladeId: Guid;
|
80
|
-
chromeDefinition:
|
80
|
+
chromeDefinition: ChromeBlueprint;
|
81
81
|
};
|
82
82
|
};
|
@@ -0,0 +1,16 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
3
|
+
P: {};
|
4
|
+
B: {};
|
5
|
+
D: {};
|
6
|
+
C: {};
|
7
|
+
M: {};
|
8
|
+
Defaults: {};
|
9
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
|
10
|
+
__isFragment?: never;
|
11
|
+
__isTeleport?: never;
|
12
|
+
__isSuspense?: never;
|
13
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
14
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
15
|
+
};
|
16
|
+
export default _default;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
3
|
+
P: {};
|
4
|
+
B: {};
|
5
|
+
D: {};
|
6
|
+
C: {};
|
7
|
+
M: {};
|
8
|
+
Defaults: {};
|
9
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
|
10
|
+
__isFragment?: never;
|
11
|
+
__isTeleport?: never;
|
12
|
+
__isSuspense?: never;
|
13
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
14
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
15
|
+
};
|
16
|
+
export default _default;
|
@@ -1,27 +1,33 @@
|
|
1
|
-
import { ButtonBlueprint,
|
2
|
-
export type buttonBlueprintType = "regular-high" | "regular-medium" | "regular-low" | "icon-high" | "icon-medium" | "icon-low";
|
1
|
+
import { BlueprintVariant, ButtonBlueprint, ButtonBlueprintType, ComponentBlueprints, Guid, TabsBlueprint } from "@omnia/fx-models";
|
3
2
|
export declare const useComponentsEditorStore: () => {
|
4
3
|
state: {
|
5
|
-
blueprint:
|
4
|
+
blueprint: ComponentBlueprints;
|
6
5
|
editingButtonBlueprint: ButtonBlueprint;
|
7
|
-
|
6
|
+
editingTabBlueprint: TabsBlueprint;
|
7
|
+
editingVariant: BlueprintVariant;
|
8
|
+
editingButtonType: ButtonBlueprintType;
|
8
9
|
editMode: boolean;
|
9
10
|
};
|
10
11
|
events: {
|
11
|
-
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<
|
12
|
+
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<ComponentBlueprints>;
|
12
13
|
onMutatedEditingButtonBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<ButtonBlueprint>;
|
13
|
-
|
14
|
+
onMutatedEditingTabBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<TabsBlueprint>;
|
15
|
+
onMutatedEditingVariant: import("@omnia/fx").MessageBusExposeOnlySubscription<BlueprintVariant>;
|
16
|
+
onMutatedEditingButtonType: import("@omnia/fx").MessageBusExposeOnlySubscription<ButtonBlueprintType>;
|
14
17
|
onMutatedEditMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
15
18
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
16
19
|
actions: {
|
17
20
|
onDispatching: {
|
18
21
|
setBlueprint: {
|
19
|
-
subscribe(fn: (blueprint:
|
22
|
+
subscribe(fn: (blueprint: ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
20
23
|
};
|
21
|
-
|
22
|
-
subscribe(fn: (
|
24
|
+
setTabEditingBlueprint: {
|
25
|
+
subscribe(fn: (variant: BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
23
26
|
};
|
24
|
-
|
27
|
+
setButtonEditingBlueprint: {
|
28
|
+
subscribe(fn: (type: ButtonBlueprintType, variant: BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
29
|
+
};
|
30
|
+
updateEditingButtonBlueprint: {
|
25
31
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
26
32
|
};
|
27
33
|
save: {
|
@@ -30,12 +36,15 @@ export declare const useComponentsEditorStore: () => {
|
|
30
36
|
};
|
31
37
|
onDispatched: {
|
32
38
|
setBlueprint: {
|
33
|
-
subscribe(fn: (result: void, blueprint:
|
39
|
+
subscribe(fn: (result: void, blueprint: ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
40
|
+
};
|
41
|
+
setTabEditingBlueprint: {
|
42
|
+
subscribe(fn: (result: void, variant: BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
34
43
|
};
|
35
|
-
|
36
|
-
subscribe(fn: (result: void, type:
|
44
|
+
setButtonEditingBlueprint: {
|
45
|
+
subscribe(fn: (result: void, type: ButtonBlueprintType, variant: BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
37
46
|
};
|
38
|
-
|
47
|
+
updateEditingButtonBlueprint: {
|
39
48
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
40
49
|
};
|
41
50
|
save: {
|
@@ -44,12 +53,15 @@ export declare const useComponentsEditorStore: () => {
|
|
44
53
|
};
|
45
54
|
onFailure: {
|
46
55
|
setBlueprint: {
|
47
|
-
subscribe(fn: (failureReason: any, blueprint:
|
56
|
+
subscribe(fn: (failureReason: any, blueprint: ComponentBlueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
57
|
+
};
|
58
|
+
setTabEditingBlueprint: {
|
59
|
+
subscribe(fn: (failureReason: any, variant: BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
48
60
|
};
|
49
|
-
|
50
|
-
subscribe(fn: (failureReason: any, type:
|
61
|
+
setButtonEditingBlueprint: {
|
62
|
+
subscribe(fn: (failureReason: any, type: ButtonBlueprintType, variant: BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
51
63
|
};
|
52
|
-
|
64
|
+
updateEditingButtonBlueprint: {
|
53
65
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
54
66
|
};
|
55
67
|
save: {
|
@@ -57,9 +69,10 @@ export declare const useComponentsEditorStore: () => {
|
|
57
69
|
};
|
58
70
|
};
|
59
71
|
} & {
|
60
|
-
setBlueprint(blueprint:
|
61
|
-
|
62
|
-
|
72
|
+
setBlueprint(blueprint: ComponentBlueprints): void;
|
73
|
+
setTabEditingBlueprint(variant: BlueprintVariant): void;
|
74
|
+
setButtonEditingBlueprint(type: ButtonBlueprintType, variant: BlueprintVariant): void;
|
75
|
+
updateEditingButtonBlueprint(): void;
|
63
76
|
save(): void;
|
64
77
|
};
|
65
78
|
get: {};
|
@@ -68,6 +81,8 @@ export declare const useComponentsEditorStore: () => {
|
|
68
81
|
editComponentBlade: Guid;
|
69
82
|
buttonsBlade: Guid;
|
70
83
|
buttonsBladeEdit: Guid;
|
84
|
+
tabBlade: Guid;
|
85
|
+
tabBladeEdit: Guid;
|
71
86
|
componentsBlade: Guid;
|
72
87
|
typographyBlade: Guid;
|
73
88
|
spacingBlade: Guid;
|