@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
package/internal-do-not-import-from-here/ux/blueprintpickers/spacingpicker/SpacingPicker3.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { Spacing } from "@omnia/fx/models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
"disable-right": {
|
@@ -32,67 +32,67 @@ declare const _default: {
|
|
32
32
|
type: import("vue").PropType<boolean>;
|
33
33
|
};
|
34
34
|
"onUpdate:modelValue": {
|
35
|
-
type: import("vue").PropType<(value:
|
35
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
36
36
|
};
|
37
37
|
"v-model": {
|
38
|
-
type: import("vue").PropType<
|
38
|
+
type: import("vue").PropType<Spacing>;
|
39
39
|
required: false;
|
40
40
|
};
|
41
41
|
modelValue: {
|
42
|
-
type: import("vue").PropType<
|
42
|
+
type: import("vue").PropType<Spacing>;
|
43
43
|
required: false;
|
44
44
|
};
|
45
45
|
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
46
|
-
type: import("vue").PropType<(value:
|
46
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
47
47
|
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
48
|
-
type: import("vue").PropType<
|
48
|
+
type: import("vue").PropType<Spacing>;
|
49
49
|
required: false;
|
50
50
|
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
51
|
-
type: import("vue").PropType<
|
51
|
+
type: import("vue").PropType<Spacing>;
|
52
52
|
required: false;
|
53
53
|
}; } & {
|
54
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName,
|
54
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, Spacing, {
|
55
55
|
"onUpdate:modelValue": {
|
56
|
-
type: import("vue").PropType<(value:
|
56
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
57
57
|
};
|
58
58
|
} & {
|
59
59
|
"v-model": {
|
60
|
-
type: import("vue").PropType<
|
60
|
+
type: import("vue").PropType<Spacing>;
|
61
61
|
required: false;
|
62
62
|
};
|
63
63
|
} & {
|
64
64
|
modelValue: {
|
65
|
-
type: import("vue").PropType<
|
65
|
+
type: import("vue").PropType<Spacing>;
|
66
66
|
required: false;
|
67
67
|
};
|
68
68
|
}>;
|
69
|
-
defaultValue(value?:
|
69
|
+
defaultValue(value?: Spacing): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, Spacing, {
|
70
70
|
"onUpdate:modelValue": {
|
71
|
-
type: import("vue").PropType<(value:
|
71
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
72
72
|
};
|
73
73
|
} & {
|
74
74
|
"v-model": {
|
75
|
-
type: import("vue").PropType<
|
75
|
+
type: import("vue").PropType<Spacing>;
|
76
76
|
required: false;
|
77
77
|
};
|
78
78
|
} & {
|
79
79
|
modelValue: {
|
80
|
-
type: import("vue").PropType<
|
80
|
+
type: import("vue").PropType<Spacing>;
|
81
81
|
required: false;
|
82
82
|
};
|
83
83
|
}, false>;
|
84
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName,
|
84
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, Spacing, {
|
85
85
|
"onUpdate:modelValue": {
|
86
|
-
type: import("vue").PropType<(value:
|
86
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
87
87
|
};
|
88
88
|
} & {
|
89
89
|
"v-model": {
|
90
|
-
type: import("vue").PropType<
|
90
|
+
type: import("vue").PropType<Spacing>;
|
91
91
|
required: false;
|
92
92
|
};
|
93
93
|
} & {
|
94
94
|
modelValue: {
|
95
|
-
type: import("vue").PropType<
|
95
|
+
type: import("vue").PropType<Spacing>;
|
96
96
|
required: false;
|
97
97
|
};
|
98
98
|
}>;
|
@@ -105,9 +105,9 @@ declare const _default: {
|
|
105
105
|
container?: any;
|
106
106
|
colors?: any;
|
107
107
|
}>> & {
|
108
|
-
"onUpdate:modelValue"?: (value:
|
108
|
+
"onUpdate:modelValue"?: (value: Spacing) => any;
|
109
109
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
110
|
-
"update:modelValue": (value:
|
110
|
+
"update:modelValue": (value: Spacing) => true;
|
111
111
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
112
112
|
"disable-right": {
|
113
113
|
type: import("vue").PropType<boolean>;
|
@@ -140,67 +140,67 @@ declare const _default: {
|
|
140
140
|
type: import("vue").PropType<boolean>;
|
141
141
|
};
|
142
142
|
"onUpdate:modelValue": {
|
143
|
-
type: import("vue").PropType<(value:
|
143
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
144
144
|
};
|
145
145
|
"v-model": {
|
146
|
-
type: import("vue").PropType<
|
146
|
+
type: import("vue").PropType<Spacing>;
|
147
147
|
required: false;
|
148
148
|
};
|
149
149
|
modelValue: {
|
150
|
-
type: import("vue").PropType<
|
150
|
+
type: import("vue").PropType<Spacing>;
|
151
151
|
required: false;
|
152
152
|
};
|
153
153
|
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
154
|
-
type: import("vue").PropType<(value:
|
154
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
155
155
|
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
156
|
-
type: import("vue").PropType<
|
156
|
+
type: import("vue").PropType<Spacing>;
|
157
157
|
required: false;
|
158
158
|
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
159
|
-
type: import("vue").PropType<
|
159
|
+
type: import("vue").PropType<Spacing>;
|
160
160
|
required: false;
|
161
161
|
}; } & {
|
162
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName,
|
162
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, Spacing, {
|
163
163
|
"onUpdate:modelValue": {
|
164
|
-
type: import("vue").PropType<(value:
|
164
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
165
165
|
};
|
166
166
|
} & {
|
167
167
|
"v-model": {
|
168
|
-
type: import("vue").PropType<
|
168
|
+
type: import("vue").PropType<Spacing>;
|
169
169
|
required: false;
|
170
170
|
};
|
171
171
|
} & {
|
172
172
|
modelValue: {
|
173
|
-
type: import("vue").PropType<
|
173
|
+
type: import("vue").PropType<Spacing>;
|
174
174
|
required: false;
|
175
175
|
};
|
176
176
|
}>;
|
177
|
-
defaultValue(value?:
|
177
|
+
defaultValue(value?: Spacing): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, Spacing, {
|
178
178
|
"onUpdate:modelValue": {
|
179
|
-
type: import("vue").PropType<(value:
|
179
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
180
180
|
};
|
181
181
|
} & {
|
182
182
|
"v-model": {
|
183
|
-
type: import("vue").PropType<
|
183
|
+
type: import("vue").PropType<Spacing>;
|
184
184
|
required: false;
|
185
185
|
};
|
186
186
|
} & {
|
187
187
|
modelValue: {
|
188
|
-
type: import("vue").PropType<
|
188
|
+
type: import("vue").PropType<Spacing>;
|
189
189
|
required: false;
|
190
190
|
};
|
191
191
|
}, false>;
|
192
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName,
|
192
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, Spacing, {
|
193
193
|
"onUpdate:modelValue": {
|
194
|
-
type: import("vue").PropType<(value:
|
194
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
195
195
|
};
|
196
196
|
} & {
|
197
197
|
"v-model": {
|
198
|
-
type: import("vue").PropType<
|
198
|
+
type: import("vue").PropType<Spacing>;
|
199
199
|
required: false;
|
200
200
|
};
|
201
201
|
} & {
|
202
202
|
modelValue: {
|
203
|
-
type: import("vue").PropType<
|
203
|
+
type: import("vue").PropType<Spacing>;
|
204
204
|
required: false;
|
205
205
|
};
|
206
206
|
}>;
|
@@ -213,7 +213,7 @@ declare const _default: {
|
|
213
213
|
container?: any;
|
214
214
|
colors?: any;
|
215
215
|
}>> & {
|
216
|
-
"onUpdate:modelValue"?: (value:
|
216
|
+
"onUpdate:modelValue"?: (value: Spacing) => any;
|
217
217
|
}, {
|
218
218
|
container?: any;
|
219
219
|
colorSchemaType?: any;
|
@@ -257,67 +257,67 @@ declare const _default: {
|
|
257
257
|
type: import("vue").PropType<boolean>;
|
258
258
|
};
|
259
259
|
"onUpdate:modelValue": {
|
260
|
-
type: import("vue").PropType<(value:
|
260
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
261
261
|
};
|
262
262
|
"v-model": {
|
263
|
-
type: import("vue").PropType<
|
263
|
+
type: import("vue").PropType<Spacing>;
|
264
264
|
required: false;
|
265
265
|
};
|
266
266
|
modelValue: {
|
267
|
-
type: import("vue").PropType<
|
267
|
+
type: import("vue").PropType<Spacing>;
|
268
268
|
required: false;
|
269
269
|
};
|
270
270
|
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
271
|
-
type: import("vue").PropType<(value:
|
271
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
272
272
|
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
273
|
-
type: import("vue").PropType<
|
273
|
+
type: import("vue").PropType<Spacing>;
|
274
274
|
required: false;
|
275
275
|
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
276
|
-
type: import("vue").PropType<
|
276
|
+
type: import("vue").PropType<Spacing>;
|
277
277
|
required: false;
|
278
278
|
}; } & {
|
279
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName,
|
279
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, Spacing, {
|
280
280
|
"onUpdate:modelValue": {
|
281
|
-
type: import("vue").PropType<(value:
|
281
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
282
282
|
};
|
283
283
|
} & {
|
284
284
|
"v-model": {
|
285
|
-
type: import("vue").PropType<
|
285
|
+
type: import("vue").PropType<Spacing>;
|
286
286
|
required: false;
|
287
287
|
};
|
288
288
|
} & {
|
289
289
|
modelValue: {
|
290
|
-
type: import("vue").PropType<
|
290
|
+
type: import("vue").PropType<Spacing>;
|
291
291
|
required: false;
|
292
292
|
};
|
293
293
|
}>;
|
294
|
-
defaultValue(value?:
|
294
|
+
defaultValue(value?: Spacing): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, Spacing, {
|
295
295
|
"onUpdate:modelValue": {
|
296
|
-
type: import("vue").PropType<(value:
|
296
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
297
297
|
};
|
298
298
|
} & {
|
299
299
|
"v-model": {
|
300
|
-
type: import("vue").PropType<
|
300
|
+
type: import("vue").PropType<Spacing>;
|
301
301
|
required: false;
|
302
302
|
};
|
303
303
|
} & {
|
304
304
|
modelValue: {
|
305
|
-
type: import("vue").PropType<
|
305
|
+
type: import("vue").PropType<Spacing>;
|
306
306
|
required: false;
|
307
307
|
};
|
308
308
|
}, false>;
|
309
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName,
|
309
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, Spacing, {
|
310
310
|
"onUpdate:modelValue": {
|
311
|
-
type: import("vue").PropType<(value:
|
311
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
312
312
|
};
|
313
313
|
} & {
|
314
314
|
"v-model": {
|
315
|
-
type: import("vue").PropType<
|
315
|
+
type: import("vue").PropType<Spacing>;
|
316
316
|
required: false;
|
317
317
|
};
|
318
318
|
} & {
|
319
319
|
modelValue: {
|
320
|
-
type: import("vue").PropType<
|
320
|
+
type: import("vue").PropType<Spacing>;
|
321
321
|
required: false;
|
322
322
|
};
|
323
323
|
}>;
|
@@ -330,7 +330,7 @@ declare const _default: {
|
|
330
330
|
container?: any;
|
331
331
|
colors?: any;
|
332
332
|
}>> & {
|
333
|
-
"onUpdate:modelValue"?: (value:
|
333
|
+
"onUpdate:modelValue"?: (value: Spacing) => any;
|
334
334
|
}, () => JSX.Element, {}, {}, {}, {
|
335
335
|
container?: any;
|
336
336
|
colorSchemaType?: any;
|
@@ -371,67 +371,67 @@ declare const _default: {
|
|
371
371
|
type: import("vue").PropType<boolean>;
|
372
372
|
};
|
373
373
|
"onUpdate:modelValue": {
|
374
|
-
type: import("vue").PropType<(value:
|
374
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
375
375
|
};
|
376
376
|
"v-model": {
|
377
|
-
type: import("vue").PropType<
|
377
|
+
type: import("vue").PropType<Spacing>;
|
378
378
|
required: false;
|
379
379
|
};
|
380
380
|
modelValue: {
|
381
|
-
type: import("vue").PropType<
|
381
|
+
type: import("vue").PropType<Spacing>;
|
382
382
|
required: false;
|
383
383
|
};
|
384
384
|
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
385
|
-
type: import("vue").PropType<(value:
|
385
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
386
386
|
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
387
|
-
type: import("vue").PropType<
|
387
|
+
type: import("vue").PropType<Spacing>;
|
388
388
|
required: false;
|
389
389
|
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
390
|
-
type: import("vue").PropType<
|
390
|
+
type: import("vue").PropType<Spacing>;
|
391
391
|
required: false;
|
392
392
|
}; } & {
|
393
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName,
|
393
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, Spacing, {
|
394
394
|
"onUpdate:modelValue": {
|
395
|
-
type: import("vue").PropType<(value:
|
395
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
396
396
|
};
|
397
397
|
} & {
|
398
398
|
"v-model": {
|
399
|
-
type: import("vue").PropType<
|
399
|
+
type: import("vue").PropType<Spacing>;
|
400
400
|
required: false;
|
401
401
|
};
|
402
402
|
} & {
|
403
403
|
modelValue: {
|
404
|
-
type: import("vue").PropType<
|
404
|
+
type: import("vue").PropType<Spacing>;
|
405
405
|
required: false;
|
406
406
|
};
|
407
407
|
}>;
|
408
|
-
defaultValue(value?:
|
408
|
+
defaultValue(value?: Spacing): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, Spacing, {
|
409
409
|
"onUpdate:modelValue": {
|
410
|
-
type: import("vue").PropType<(value:
|
410
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
411
411
|
};
|
412
412
|
} & {
|
413
413
|
"v-model": {
|
414
|
-
type: import("vue").PropType<
|
414
|
+
type: import("vue").PropType<Spacing>;
|
415
415
|
required: false;
|
416
416
|
};
|
417
417
|
} & {
|
418
418
|
modelValue: {
|
419
|
-
type: import("vue").PropType<
|
419
|
+
type: import("vue").PropType<Spacing>;
|
420
420
|
required: false;
|
421
421
|
};
|
422
422
|
}, false>;
|
423
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName,
|
423
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, Spacing, {
|
424
424
|
"onUpdate:modelValue": {
|
425
|
-
type: import("vue").PropType<(value:
|
425
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
426
426
|
};
|
427
427
|
} & {
|
428
428
|
"v-model": {
|
429
|
-
type: import("vue").PropType<
|
429
|
+
type: import("vue").PropType<Spacing>;
|
430
430
|
required: false;
|
431
431
|
};
|
432
432
|
} & {
|
433
433
|
modelValue: {
|
434
|
-
type: import("vue").PropType<
|
434
|
+
type: import("vue").PropType<Spacing>;
|
435
435
|
required: false;
|
436
436
|
};
|
437
437
|
}>;
|
@@ -444,9 +444,9 @@ declare const _default: {
|
|
444
444
|
container?: any;
|
445
445
|
colors?: any;
|
446
446
|
}>> & {
|
447
|
-
"onUpdate:modelValue"?: (value:
|
447
|
+
"onUpdate:modelValue"?: (value: Spacing) => any;
|
448
448
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
449
|
-
"update:modelValue": (value:
|
449
|
+
"update:modelValue": (value: Spacing) => true;
|
450
450
|
}, string, {
|
451
451
|
container?: any;
|
452
452
|
colorSchemaType?: any;
|
@@ -459,69 +459,69 @@ declare const _default: {
|
|
459
459
|
} & {
|
460
460
|
name?: {
|
461
461
|
[x: `onUpdate:${string}`]: {
|
462
|
-
type: import("vue").PropType<(value:
|
462
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
463
463
|
};
|
464
464
|
} & {
|
465
465
|
[x: `v-model:${string}`]: {
|
466
|
-
type: import("vue").PropType<
|
466
|
+
type: import("vue").PropType<Spacing>;
|
467
467
|
required: false;
|
468
468
|
};
|
469
469
|
} & {
|
470
470
|
[x: string]: {
|
471
|
-
type: import("vue").PropType<
|
471
|
+
type: import("vue").PropType<Spacing>;
|
472
472
|
required: false;
|
473
473
|
};
|
474
474
|
} & {
|
475
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<string,
|
475
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<string, Spacing, {
|
476
476
|
"onUpdate:modelValue": {
|
477
|
-
type: import("vue").PropType<(value:
|
477
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
478
478
|
};
|
479
479
|
} & {
|
480
480
|
"v-model": {
|
481
|
-
type: import("vue").PropType<
|
481
|
+
type: import("vue").PropType<Spacing>;
|
482
482
|
required: false;
|
483
483
|
};
|
484
484
|
} & {
|
485
485
|
modelValue: {
|
486
|
-
type: import("vue").PropType<
|
486
|
+
type: import("vue").PropType<Spacing>;
|
487
487
|
required: false;
|
488
488
|
};
|
489
489
|
}>;
|
490
|
-
defaultValue(value?:
|
490
|
+
defaultValue(value?: Spacing): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, Spacing, {
|
491
491
|
"onUpdate:modelValue": {
|
492
|
-
type: import("vue").PropType<(value:
|
492
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
493
493
|
};
|
494
494
|
} & {
|
495
495
|
"v-model": {
|
496
|
-
type: import("vue").PropType<
|
496
|
+
type: import("vue").PropType<Spacing>;
|
497
497
|
required: false;
|
498
498
|
};
|
499
499
|
} & {
|
500
500
|
modelValue: {
|
501
|
-
type: import("vue").PropType<
|
501
|
+
type: import("vue").PropType<Spacing>;
|
502
502
|
required: false;
|
503
503
|
};
|
504
504
|
}, false>;
|
505
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string,
|
505
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, Spacing, {
|
506
506
|
"onUpdate:modelValue": {
|
507
|
-
type: import("vue").PropType<(value:
|
507
|
+
type: import("vue").PropType<(value: Spacing) => any>;
|
508
508
|
};
|
509
509
|
} & {
|
510
510
|
"v-model": {
|
511
|
-
type: import("vue").PropType<
|
511
|
+
type: import("vue").PropType<Spacing>;
|
512
512
|
required: false;
|
513
513
|
};
|
514
514
|
} & {
|
515
515
|
modelValue: {
|
516
|
-
type: import("vue").PropType<
|
516
|
+
type: import("vue").PropType<Spacing>;
|
517
517
|
required: false;
|
518
518
|
};
|
519
519
|
}>;
|
520
520
|
};
|
521
521
|
class?: String | String[];
|
522
|
-
"v-model"?:
|
523
|
-
"onUpdate:modelValue"?: (value:
|
524
|
-
modelValue?:
|
522
|
+
"v-model"?: Spacing;
|
523
|
+
"onUpdate:modelValue"?: (value: Spacing) => any;
|
524
|
+
modelValue?: Spacing;
|
525
525
|
individualSelection?: boolean;
|
526
526
|
"individual-selection"?: boolean;
|
527
527
|
disableTop?: boolean;
|
@@ -533,7 +533,7 @@ declare const _default: {
|
|
533
533
|
disableRight?: boolean;
|
534
534
|
"disable-right"?: boolean;
|
535
535
|
}>, "onUpdate:modelValue"> & {
|
536
|
-
"onUpdate:modelValue"?: (value:
|
536
|
+
"onUpdate:modelValue"?: (value: Spacing) => any;
|
537
537
|
};
|
538
538
|
};
|
539
539
|
export default _default;
|
package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/TabBlueprintsViewer.d.ts
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
import { BlueprintVariant, ComponentBlueprints } from "@omnia/fx-models";
|
2
|
+
declare const _default: (props: {
|
3
|
+
"v-model"?: ComponentBlueprints;
|
4
|
+
} & {
|
5
|
+
"onUpdate:modelValue"?: (value: ComponentBlueprints) => void;
|
6
|
+
} & {
|
7
|
+
modelValue?: ComponentBlueprints;
|
8
|
+
} & {
|
9
|
+
toned?: boolean;
|
10
|
+
} & {
|
11
|
+
selectable?: boolean;
|
12
|
+
} & Omit<{
|
13
|
+
"onClick:select"?: (variant: BlueprintVariant) => any;
|
14
|
+
}, "v-model" | "onUpdate:modelValue" | "modelValue" | "toned" | "selectable"> & {
|
15
|
+
"v-slots"?: {
|
16
|
+
default?: import("vue").Slot;
|
17
|
+
};
|
18
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "toned" | "selectable">) => {
|
19
|
+
$: import("vue").ComponentInternalInstance;
|
20
|
+
$data: {};
|
21
|
+
$props: {};
|
22
|
+
$attrs: {
|
23
|
+
[x: string]: unknown;
|
24
|
+
};
|
25
|
+
$refs: {
|
26
|
+
[x: string]: unknown;
|
27
|
+
};
|
28
|
+
$slots: Readonly<{
|
29
|
+
[name: string]: import("vue").Slot<any>;
|
30
|
+
}>;
|
31
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
32
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
33
|
+
$emit: (event: string, ...args: any[]) => void;
|
34
|
+
$el: any;
|
35
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
36
|
+
beforeCreate?: (() => void) | (() => void)[];
|
37
|
+
created?: (() => void) | (() => void)[];
|
38
|
+
beforeMount?: (() => void) | (() => void)[];
|
39
|
+
mounted?: (() => void) | (() => void)[];
|
40
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
41
|
+
updated?: (() => void) | (() => void)[];
|
42
|
+
activated?: (() => void) | (() => void)[];
|
43
|
+
deactivated?: (() => void) | (() => void)[];
|
44
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
45
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
46
|
+
destroyed?: (() => void) | (() => void)[];
|
47
|
+
unmounted?: (() => void) | (() => void)[];
|
48
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
49
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
50
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
51
|
+
};
|
52
|
+
$forceUpdate: () => void;
|
53
|
+
$nextTick: typeof import("vue").nextTick;
|
54
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
55
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
56
|
+
propsDefinition: {
|
57
|
+
"v-model"?: ComponentBlueprints;
|
58
|
+
} & {
|
59
|
+
"onUpdate:modelValue"?: (value: ComponentBlueprints) => void;
|
60
|
+
} & {
|
61
|
+
modelValue?: ComponentBlueprints;
|
62
|
+
} & {
|
63
|
+
toned?: boolean;
|
64
|
+
} & {
|
65
|
+
selectable?: boolean;
|
66
|
+
} & {
|
67
|
+
"v-slots"?: {
|
68
|
+
default?: import("vue").Slot;
|
69
|
+
};
|
70
|
+
} & {
|
71
|
+
"onClick:select"?: (variant: BlueprintVariant) => any;
|
72
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "toned" | "selectable">;
|
73
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
74
|
+
[key: string]: any;
|
75
|
+
}>;
|
76
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/TabStyleEditor.d.ts
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
import { TabsBlueprint } from "@omnia/fx-models";
|
2
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
type EditorVariant = "default" | "dialog";
|
5
|
+
declare const _default: (props: {
|
6
|
+
"v-model"?: TabsBlueprint;
|
7
|
+
} & {
|
8
|
+
"onUpdate:modelValue"?: (value: TabsBlueprint) => void;
|
9
|
+
} & {
|
10
|
+
modelValue?: TabsBlueprint;
|
11
|
+
} & {
|
12
|
+
variant?: EditorVariant;
|
13
|
+
} & Omit<{
|
14
|
+
"onClick:confirm"?: (value: TabsBlueprint) => any;
|
15
|
+
"onInit:actionButtons"?: (value: () => VNodeChild) => any;
|
16
|
+
}, "v-model" | "onUpdate:modelValue" | "modelValue" | "variant"> & {
|
17
|
+
"v-slots"?: {
|
18
|
+
default?: import("vue").Slot;
|
19
|
+
} & DefineSlot<"activator", () => VNodeChild>;
|
20
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "variant">) => {
|
21
|
+
$: import("vue").ComponentInternalInstance;
|
22
|
+
$data: {};
|
23
|
+
$props: {};
|
24
|
+
$attrs: {
|
25
|
+
[x: string]: unknown;
|
26
|
+
};
|
27
|
+
$refs: {
|
28
|
+
[x: string]: unknown;
|
29
|
+
};
|
30
|
+
$slots: Readonly<{
|
31
|
+
[name: string]: import("vue").Slot<any>;
|
32
|
+
}>;
|
33
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
34
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
35
|
+
$emit: (event: string, ...args: any[]) => void;
|
36
|
+
$el: any;
|
37
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
38
|
+
beforeCreate?: (() => void) | (() => void)[];
|
39
|
+
created?: (() => void) | (() => void)[];
|
40
|
+
beforeMount?: (() => void) | (() => void)[];
|
41
|
+
mounted?: (() => void) | (() => void)[];
|
42
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
43
|
+
updated?: (() => void) | (() => void)[];
|
44
|
+
activated?: (() => void) | (() => void)[];
|
45
|
+
deactivated?: (() => void) | (() => void)[];
|
46
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
47
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
48
|
+
destroyed?: (() => void) | (() => void)[];
|
49
|
+
unmounted?: (() => void) | (() => void)[];
|
50
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
51
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
52
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
53
|
+
};
|
54
|
+
$forceUpdate: () => void;
|
55
|
+
$nextTick: typeof import("vue").nextTick;
|
56
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
57
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
58
|
+
propsDefinition: {
|
59
|
+
"v-model"?: TabsBlueprint;
|
60
|
+
} & {
|
61
|
+
"onUpdate:modelValue"?: (value: TabsBlueprint) => void;
|
62
|
+
} & {
|
63
|
+
modelValue?: TabsBlueprint;
|
64
|
+
} & {
|
65
|
+
variant?: EditorVariant;
|
66
|
+
} & {
|
67
|
+
"v-slots"?: {
|
68
|
+
default?: import("vue").Slot;
|
69
|
+
} & DefineSlot<"activator", () => VNodeChild>;
|
70
|
+
} & {
|
71
|
+
"onClick:confirm"?: (value: TabsBlueprint) => any;
|
72
|
+
"onInit:actionButtons"?: (value: () => VNodeChild) => any;
|
73
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "variant">;
|
74
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
75
|
+
[key: string]: any;
|
76
|
+
}>;
|
77
|
+
export default _default;
|