@omnia/fx 8.0.124-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 +4 -4
- 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
@@ -27,6 +27,9 @@ export interface UseClonedReturn<T> {
|
|
27
27
|
* @return {*} {T}
|
28
28
|
*/
|
29
29
|
export declare function useClone<T>(source: T): T;
|
30
|
+
export declare function useCloneWithEmptyCheck(): {
|
31
|
+
clone: <T>(source: T) => T;
|
32
|
+
};
|
30
33
|
/**
|
31
34
|
* Clones an reactive object and returns a copy of it.
|
32
35
|
*
|
@@ -59,11 +59,11 @@ export declare function useColorSchemaSetup(props: object): {
|
|
59
59
|
};
|
60
60
|
get: {
|
61
61
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
62
|
-
blueprint<TType extends import("@omnia/fx-models").
|
63
|
-
typography(): import("@omnia/fx-models").
|
64
|
-
spacing(): import("@omnia/fx-models").
|
65
|
-
chrome(): import("@omnia/fx-models").
|
66
|
-
component(): import("@omnia/fx-models").
|
62
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
63
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
64
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
65
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
66
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
67
67
|
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
68
68
|
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
69
69
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -113,11 +113,11 @@ export declare function useColorSchemaSetup(props: object): {
|
|
113
113
|
};
|
114
114
|
get: {
|
115
115
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
116
|
-
blueprint<TType extends import("@omnia/fx-models").
|
117
|
-
typography(): import("@omnia/fx-models").
|
118
|
-
spacing(): import("@omnia/fx-models").
|
119
|
-
chrome(): import("@omnia/fx-models").
|
120
|
-
component(): import("@omnia/fx-models").
|
116
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
117
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
118
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
119
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
120
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
121
121
|
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
122
122
|
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
123
123
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -167,11 +167,11 @@ export declare function useColorSchemaSetup(props: object): {
|
|
167
167
|
};
|
168
168
|
get: {
|
169
169
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
170
|
-
blueprint<TType extends import("@omnia/fx-models").
|
171
|
-
typography(): import("@omnia/fx-models").
|
172
|
-
spacing(): import("@omnia/fx-models").
|
173
|
-
chrome(): import("@omnia/fx-models").
|
174
|
-
component(): import("@omnia/fx-models").
|
170
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
171
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
172
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
173
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
174
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
175
175
|
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
176
176
|
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
177
177
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -214,11 +214,11 @@ export declare function useColorSchemaSetup(props: object): {
|
|
214
214
|
};
|
215
215
|
get: {
|
216
216
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
217
|
-
blueprint<TType extends import("@omnia/fx-models").
|
218
|
-
typography(): import("@omnia/fx-models").
|
219
|
-
spacing(): import("@omnia/fx-models").
|
220
|
-
chrome(): import("@omnia/fx-models").
|
221
|
-
component(): import("@omnia/fx-models").
|
217
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
218
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
219
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
220
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
221
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
222
222
|
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
223
223
|
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
224
224
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -453,7 +453,7 @@ export declare function useColorSchemaSetup(props: object): {
|
|
453
453
|
};
|
454
454
|
blueprints: {
|
455
455
|
type: import("@omnia/fx-models").BlueprintType;
|
456
|
-
name
|
456
|
+
name?: string;
|
457
457
|
}[];
|
458
458
|
};
|
459
459
|
};
|
@@ -486,11 +486,11 @@ export declare function useColorSchemaSetup(props: object): {
|
|
486
486
|
};
|
487
487
|
get: {
|
488
488
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
489
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
490
|
-
typography: () => import("@omnia/fx-models").
|
491
|
-
spacing: () => import("@omnia/fx-models").
|
492
|
-
chrome: () => import("@omnia/fx-models").
|
493
|
-
component: () => import("@omnia/fx-models").
|
489
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
490
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
491
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
492
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
493
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
494
494
|
color: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => string;
|
495
495
|
colorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
496
496
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import { VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnPressEvent, VelcronSpacing, VelcronStyling, VelcronCustomComponentDefinition, VelcronAppDefinition } from "internal/fx/shared/models";
|
1
|
+
import { VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnPressEvent, VelcronSpacing, VelcronStyling, VelcronCustomComponentDefinition, VelcronAppDefinition, VelcronRendererResolverReference } from "internal/fx/shared/models";
|
2
2
|
import { VelcroncomponentArrayType, VelcronPrimitiveType } from "./VelcronTypes";
|
3
3
|
import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, VelcronActionTypes, VelcronVerticalAlignments } from "./Enums";
|
4
|
-
import {
|
4
|
+
import { DynamicState, VelcronDefinition, useVelcronThemingStore } from "..";
|
5
5
|
import { GuidValue, PropertyConfiguration, PropertyValue, PropertyDefinition, PropertySetupBase } from "@omnia/fx/models";
|
6
6
|
import { useVelcronColorSchemaStore } from "../stores/VelcronColorSchema";
|
7
7
|
export interface ResolvedComponentRenderer {
|
@@ -32,6 +32,8 @@ export interface BuiltInComponentRenderers {
|
|
32
32
|
"checkbox": unknown;
|
33
33
|
"reference": unknown;
|
34
34
|
"radio": unknown;
|
35
|
+
"rive": unknown;
|
36
|
+
"lottie": unknown;
|
35
37
|
}
|
36
38
|
export interface ColorSchemaReference {
|
37
39
|
name: string;
|
@@ -74,7 +76,6 @@ export interface VelcronRenderContextHooks {
|
|
74
76
|
onItemSelected?: ((item: VelcronDefinition) => void);
|
75
77
|
onItemRendered?: ((item: VelcronDefinition) => OnItemRenderedHookResult);
|
76
78
|
onItemCreatedProps?: ((item: VelcronDefinition) => object);
|
77
|
-
onLoadReference?: ((reference: ActivityRendererReference) => Promise<VelcronDefinition>);
|
78
79
|
}
|
79
80
|
export interface VelcronContainerRenderer {
|
80
81
|
definition: VelcronDefinition;
|
@@ -178,7 +179,7 @@ export declare enum VelcronImageRatios {
|
|
178
179
|
square = "square",
|
179
180
|
landscape = "landscape"
|
180
181
|
}
|
181
|
-
export interface VelcronImageDefinition extends
|
182
|
+
export interface VelcronImageDefinition extends VelcronDefinitionWithEditMode {
|
182
183
|
type: "image";
|
183
184
|
url?: VelcronBindableProp<string>;
|
184
185
|
bind?: VelcronBindableProp<string>;
|
@@ -236,6 +237,24 @@ export interface VelcronMarkdownDefinition extends VelcronDefinitionWithEditMode
|
|
236
237
|
type: "markdown";
|
237
238
|
events: VelcronOnUpdatedEvent;
|
238
239
|
}
|
240
|
+
export interface VelcronRiveDefinition extends VelcronDefinition {
|
241
|
+
type: "rive";
|
242
|
+
url: VelcronBindableProp;
|
243
|
+
loop?: VelcronBindableProp<boolean>;
|
244
|
+
autoplay?: VelcronBindableProp<boolean>;
|
245
|
+
count?: VelcronBindableProp<number>;
|
246
|
+
direction?: VelcronBindableProp<"normal" | "reverse">;
|
247
|
+
hover?: VelcronBindableProp<boolean>;
|
248
|
+
}
|
249
|
+
export interface VelcronLottieDefinition extends VelcronDefinition {
|
250
|
+
type: "lottie";
|
251
|
+
url: VelcronBindableProp;
|
252
|
+
loop?: VelcronBindableProp<boolean>;
|
253
|
+
autoplay?: VelcronBindableProp<boolean>;
|
254
|
+
count?: VelcronBindableProp<number>;
|
255
|
+
direction?: VelcronBindableProp<"normal" | "reverse">;
|
256
|
+
hover?: VelcronBindableProp<boolean>;
|
257
|
+
}
|
239
258
|
export interface VelcronDimensions {
|
240
259
|
top: number | string;
|
241
260
|
right: number | string;
|
@@ -259,11 +278,12 @@ export interface VelcronSlotDefinition extends VelcronDefinition {
|
|
259
278
|
type: "slot";
|
260
279
|
bind: VelcronBindableProp<string>;
|
261
280
|
}
|
262
|
-
export interface
|
281
|
+
export interface VelcronReferenceDefinition extends VelcronDefinition {
|
263
282
|
type: "reference";
|
264
|
-
to:
|
283
|
+
to: VelcronRendererResolverReference;
|
284
|
+
state: string;
|
265
285
|
}
|
266
|
-
export interface VelcronPropertyDefinition extends
|
286
|
+
export interface VelcronPropertyDefinition extends VelcronDefinitionWithEditMode {
|
267
287
|
type: "property";
|
268
288
|
bind: VelcronBindableProp<string>;
|
269
289
|
}
|
@@ -1,12 +1,16 @@
|
|
1
1
|
import { BuiltInComponentRenderers, ResolvedComponentRenderer, VelcronRenderContext } from "../models";
|
2
|
-
import { DynamicState, VelcronDefinition } from "..";
|
2
|
+
import { DynamicState, VelcronDefinition, VelcronRendererResolverReference } from "..";
|
3
3
|
export declare class VelcronRenderers {
|
4
4
|
private static components;
|
5
|
+
private static referenceResolvers;
|
5
6
|
static registerComponent(type: string, component: any): void;
|
6
7
|
static hasComponents(): boolean;
|
7
8
|
static hasComponent(type: string): any;
|
8
9
|
static registerComponents(components: BuiltInComponentRenderers): void;
|
9
10
|
static getComponent(definition: VelcronDefinition, renderContext: VelcronRenderContext): ResolvedComponentRenderer;
|
11
|
+
static registerReferenceResolver(resolverName: string, resolverFunction: (reference: VelcronRendererResolverReference) => Promise<VelcronDefinition>): void;
|
12
|
+
static getReferenceResolver(resolverName: string): (reference: VelcronRendererResolverReference) => Promise<VelcronDefinition>;
|
13
|
+
static hasReferenceResolver(resolverName: string): boolean;
|
10
14
|
static definitionContainsCustomColorSchema(definition: VelcronDefinition): boolean;
|
11
15
|
static createNewRendererContext(currentRenderCtx: VelcronRenderContext, definition: VelcronDefinition, newViewModel?: DynamicState): VelcronRenderContext;
|
12
16
|
static ensureRenderContext(rendererInfo: ResolvedComponentRenderer, definition: VelcronDefinition, currentRenderCtx: VelcronRenderContext, newViewModel?: DynamicState): VelcronRenderContext;
|
@@ -14,7 +14,7 @@ export declare const useVelcronColorSchemaStore: (newStateWithName?: string) =>
|
|
14
14
|
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
15
15
|
};
|
16
16
|
get: {
|
17
|
-
componentBlueprints: (blueprintType: import("@omnia/fx-models").VelcronBlueprintDefintionTypes) => import("@omnia/fx-models").
|
17
|
+
componentBlueprints: (blueprintType: import("@omnia/fx-models").VelcronBlueprintDefintionTypes) => import("@omnia/fx-models").ComponentBlueprints;
|
18
18
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => ColorSchema;
|
19
19
|
spacing: () => import("@omnia/fx-models").SpacingDefinition;
|
20
20
|
typography: (typographyType: "title" | "text" | "navigation" | import("@omnia/fx-models").TypographyTypes, size: "xs" | "s" | "m" | "l" | "xl" | import("@omnia/fx-models").TypographySizes) => any;
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import { ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes,
|
1
|
+
import { ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes, ComponentBlueprints, SpacingDefinition, ThemeDefinitionV2, TypographySize, TypographySizes, TypographyType, TypographyTypes, VelcronBlueprintDefintionTypes } from "..";
|
2
2
|
export declare const useVelcronThemingStore: (newStateWithName?: string) => {
|
3
3
|
state: {
|
4
4
|
currentTheme: ThemeDefinitionV2;
|
5
5
|
};
|
6
6
|
get: {
|
7
|
-
componentBlueprints: (blueprintType: VelcronBlueprintDefintionTypes) =>
|
7
|
+
componentBlueprints: (blueprintType: VelcronBlueprintDefintionTypes) => ComponentBlueprints;
|
8
8
|
colorSchema: (colorSchemaType: ColorSchemaTypes | ColorSchemaType) => import("..").ColorSchema;
|
9
9
|
spacing: () => SpacingDefinition;
|
10
10
|
typography: (typographyType: TypographyTypes | TypographyType, size: TypographySizes | TypographySize) => any;
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./praise";
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./PraiseApp";
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import { VelcronRenderContext, VelcronLottieDefinition } from "../../core";
|
2
|
+
declare const _default: {
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
definition: import("vue").Prop<VelcronLottieDefinition, VelcronLottieDefinition>;
|
5
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
7
|
+
definition: import("vue").Prop<VelcronLottieDefinition, VelcronLottieDefinition>;
|
8
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
9
|
+
}>>, {}, true, {}, {}, {
|
10
|
+
P: {};
|
11
|
+
B: {};
|
12
|
+
D: {};
|
13
|
+
C: {};
|
14
|
+
M: {};
|
15
|
+
Defaults: {};
|
16
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
17
|
+
definition: import("vue").Prop<VelcronLottieDefinition, VelcronLottieDefinition>;
|
18
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
19
|
+
}>>, {}, {}, {}, {}, {}>;
|
20
|
+
__isFragment?: never;
|
21
|
+
__isTeleport?: never;
|
22
|
+
__isSuspense?: never;
|
23
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
24
|
+
definition: import("vue").Prop<VelcronLottieDefinition, VelcronLottieDefinition>;
|
25
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
26
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
27
|
+
propsDefinition: Omit<Readonly<{} & {
|
28
|
+
definition?: VelcronLottieDefinition;
|
29
|
+
renderContext?: VelcronRenderContext;
|
30
|
+
}>, never>;
|
31
|
+
};
|
32
|
+
export default _default;
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import {
|
1
|
+
import { VelcronReferenceDefinition } from "../../core";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
definition: import("vue").Prop<
|
4
|
+
definition: import("vue").Prop<VelcronReferenceDefinition, VelcronReferenceDefinition>;
|
5
5
|
renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
|
6
6
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
7
|
-
definition: import("vue").Prop<
|
7
|
+
definition: import("vue").Prop<VelcronReferenceDefinition, VelcronReferenceDefinition>;
|
8
8
|
renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
|
9
9
|
}>>, {}, true, {}, {}, {
|
10
10
|
P: {};
|
@@ -14,18 +14,18 @@ declare const _default: {
|
|
14
14
|
M: {};
|
15
15
|
Defaults: {};
|
16
16
|
}, Readonly<import("vue").ExtractPropTypes<{
|
17
|
-
definition: import("vue").Prop<
|
17
|
+
definition: import("vue").Prop<VelcronReferenceDefinition, VelcronReferenceDefinition>;
|
18
18
|
renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
|
19
19
|
}>>, {}, {}, {}, {}, {}>;
|
20
20
|
__isFragment?: never;
|
21
21
|
__isTeleport?: never;
|
22
22
|
__isSuspense?: never;
|
23
23
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
24
|
-
definition: import("vue").Prop<
|
24
|
+
definition: import("vue").Prop<VelcronReferenceDefinition, VelcronReferenceDefinition>;
|
25
25
|
renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
|
26
26
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
27
27
|
propsDefinition: Omit<Readonly<{} & {
|
28
|
-
definition?:
|
28
|
+
definition?: VelcronReferenceDefinition;
|
29
29
|
renderContext?: import("../../core").VelcronRenderContext;
|
30
30
|
}>, never>;
|
31
31
|
};
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import { VelcronRenderContext, VelcronRiveDefinition } from "../../core";
|
2
|
+
declare const _default: {
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
definition: import("vue").Prop<VelcronRiveDefinition, VelcronRiveDefinition>;
|
5
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
7
|
+
definition: import("vue").Prop<VelcronRiveDefinition, VelcronRiveDefinition>;
|
8
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
9
|
+
}>>, {}, true, {}, {}, {
|
10
|
+
P: {};
|
11
|
+
B: {};
|
12
|
+
D: {};
|
13
|
+
C: {};
|
14
|
+
M: {};
|
15
|
+
Defaults: {};
|
16
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
17
|
+
definition: import("vue").Prop<VelcronRiveDefinition, VelcronRiveDefinition>;
|
18
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
19
|
+
}>>, {}, {}, {}, {}, {}>;
|
20
|
+
__isFragment?: never;
|
21
|
+
__isTeleport?: never;
|
22
|
+
__isSuspense?: never;
|
23
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
24
|
+
definition: import("vue").Prop<VelcronRiveDefinition, VelcronRiveDefinition>;
|
25
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
26
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
27
|
+
propsDefinition: Omit<Readonly<{} & {
|
28
|
+
definition?: VelcronRiveDefinition;
|
29
|
+
renderContext?: VelcronRenderContext;
|
30
|
+
}>, never>;
|
31
|
+
};
|
32
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/SpacingEditor.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { Spacing, VelcronSpacing, VelcronSpacingEditorSettings } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
settings: {
|
@@ -73,9 +73,9 @@ declare const _default: {
|
|
73
73
|
}>;
|
74
74
|
};
|
75
75
|
}>> & {
|
76
|
-
"onUpdate:modelValue"?: (settings:
|
76
|
+
"onUpdate:modelValue"?: (settings: Spacing) => any;
|
77
77
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
78
|
-
"update:modelValue": (settings:
|
78
|
+
"update:modelValue": (settings: Spacing) => true;
|
79
79
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
80
80
|
settings: {
|
81
81
|
type: import("vue").PropType<VelcronSpacingEditorSettings>;
|
@@ -149,7 +149,7 @@ declare const _default: {
|
|
149
149
|
}>;
|
150
150
|
};
|
151
151
|
}>> & {
|
152
|
-
"onUpdate:modelValue"?: (settings:
|
152
|
+
"onUpdate:modelValue"?: (settings: Spacing) => any;
|
153
153
|
}, {}, true, {}, {}, {
|
154
154
|
P: {};
|
155
155
|
B: {};
|
@@ -230,7 +230,7 @@ declare const _default: {
|
|
230
230
|
}>;
|
231
231
|
};
|
232
232
|
}>> & {
|
233
|
-
"onUpdate:modelValue"?: (settings:
|
233
|
+
"onUpdate:modelValue"?: (settings: Spacing) => any;
|
234
234
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
235
235
|
__isFragment?: never;
|
236
236
|
__isTeleport?: never;
|
@@ -308,9 +308,9 @@ declare const _default: {
|
|
308
308
|
}>;
|
309
309
|
};
|
310
310
|
}>> & {
|
311
|
-
"onUpdate:modelValue"?: (settings:
|
311
|
+
"onUpdate:modelValue"?: (settings: Spacing) => any;
|
312
312
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
313
|
-
"update:modelValue": (settings:
|
313
|
+
"update:modelValue": (settings: Spacing) => true;
|
314
314
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
315
315
|
propsDefinition: Omit<Readonly<{} & {
|
316
316
|
name?: {
|
@@ -379,7 +379,7 @@ declare const _default: {
|
|
379
379
|
"onUpdate:modelValue"?: (value: VelcronSpacing) => any;
|
380
380
|
modelValue?: VelcronSpacing;
|
381
381
|
}>, "onUpdate:modelValue"> & {
|
382
|
-
"onUpdate:modelValue"?: (settings:
|
382
|
+
"onUpdate:modelValue"?: (settings: Spacing) => any;
|
383
383
|
};
|
384
384
|
};
|
385
385
|
export default _default;
|