@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
@@ -74,11 +74,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
74
74
|
};
|
75
75
|
get: {
|
76
76
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
77
|
-
blueprint<TType extends import("@omnia/fx-models").
|
78
|
-
typography(): import("@omnia/fx-models").
|
79
|
-
spacing(): import("@omnia/fx-models").
|
80
|
-
chrome(): import("@omnia/fx-models").
|
81
|
-
component(): import("@omnia/fx-models").
|
77
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
78
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
79
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
80
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
81
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
82
82
|
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;
|
83
83
|
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;
|
84
84
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -128,11 +128,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
128
128
|
};
|
129
129
|
get: {
|
130
130
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
131
|
-
blueprint<TType extends import("@omnia/fx-models").
|
132
|
-
typography(): import("@omnia/fx-models").
|
133
|
-
spacing(): import("@omnia/fx-models").
|
134
|
-
chrome(): import("@omnia/fx-models").
|
135
|
-
component(): import("@omnia/fx-models").
|
131
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
132
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
133
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
134
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
135
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
136
136
|
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;
|
137
137
|
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;
|
138
138
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -182,11 +182,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
182
182
|
};
|
183
183
|
get: {
|
184
184
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
185
|
-
blueprint<TType extends import("@omnia/fx-models").
|
186
|
-
typography(): import("@omnia/fx-models").
|
187
|
-
spacing(): import("@omnia/fx-models").
|
188
|
-
chrome(): import("@omnia/fx-models").
|
189
|
-
component(): import("@omnia/fx-models").
|
185
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
186
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
187
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
188
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
189
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
190
190
|
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;
|
191
191
|
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;
|
192
192
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -229,11 +229,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
229
229
|
};
|
230
230
|
get: {
|
231
231
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
232
|
-
blueprint<TType extends import("@omnia/fx-models").
|
233
|
-
typography(): import("@omnia/fx-models").
|
234
|
-
spacing(): import("@omnia/fx-models").
|
235
|
-
chrome(): import("@omnia/fx-models").
|
236
|
-
component(): import("@omnia/fx-models").
|
232
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
233
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
234
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
235
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
236
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
237
237
|
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;
|
238
238
|
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;
|
239
239
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -468,7 +468,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
468
468
|
};
|
469
469
|
blueprints: {
|
470
470
|
type: import("@omnia/fx-models").BlueprintType;
|
471
|
-
name
|
471
|
+
name?: string;
|
472
472
|
}[];
|
473
473
|
};
|
474
474
|
};
|
@@ -501,11 +501,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
501
501
|
};
|
502
502
|
get: {
|
503
503
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
504
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
505
|
-
typography: () => import("@omnia/fx-models").
|
506
|
-
spacing: () => import("@omnia/fx-models").
|
507
|
-
chrome: () => import("@omnia/fx-models").
|
508
|
-
component: () => import("@omnia/fx-models").
|
504
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
505
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
506
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
507
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
508
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
509
509
|
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;
|
510
510
|
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;
|
511
511
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -685,11 +685,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
685
685
|
};
|
686
686
|
get: {
|
687
687
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
688
|
-
blueprint<TType extends import("@omnia/fx-models").
|
689
|
-
typography(): import("@omnia/fx-models").
|
690
|
-
spacing(): import("@omnia/fx-models").
|
691
|
-
chrome(): import("@omnia/fx-models").
|
692
|
-
component(): import("@omnia/fx-models").
|
688
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
689
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
690
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
691
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
692
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
693
693
|
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;
|
694
694
|
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;
|
695
695
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -739,11 +739,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
739
739
|
};
|
740
740
|
get: {
|
741
741
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
742
|
-
blueprint<TType extends import("@omnia/fx-models").
|
743
|
-
typography(): import("@omnia/fx-models").
|
744
|
-
spacing(): import("@omnia/fx-models").
|
745
|
-
chrome(): import("@omnia/fx-models").
|
746
|
-
component(): import("@omnia/fx-models").
|
742
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
743
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
744
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
745
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
746
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
747
747
|
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;
|
748
748
|
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;
|
749
749
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -793,11 +793,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
793
793
|
};
|
794
794
|
get: {
|
795
795
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
796
|
-
blueprint<TType extends import("@omnia/fx-models").
|
797
|
-
typography(): import("@omnia/fx-models").
|
798
|
-
spacing(): import("@omnia/fx-models").
|
799
|
-
chrome(): import("@omnia/fx-models").
|
800
|
-
component(): import("@omnia/fx-models").
|
796
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
797
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
798
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
799
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
800
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
801
801
|
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;
|
802
802
|
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;
|
803
803
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -840,11 +840,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
840
840
|
};
|
841
841
|
get: {
|
842
842
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
843
|
-
blueprint<TType extends import("@omnia/fx-models").
|
844
|
-
typography(): import("@omnia/fx-models").
|
845
|
-
spacing(): import("@omnia/fx-models").
|
846
|
-
chrome(): import("@omnia/fx-models").
|
847
|
-
component(): import("@omnia/fx-models").
|
843
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
844
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
845
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
846
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
847
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
848
848
|
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;
|
849
849
|
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;
|
850
850
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -1079,7 +1079,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
1079
1079
|
};
|
1080
1080
|
blueprints: {
|
1081
1081
|
type: import("@omnia/fx-models").BlueprintType;
|
1082
|
-
name
|
1082
|
+
name?: string;
|
1083
1083
|
}[];
|
1084
1084
|
};
|
1085
1085
|
};
|
@@ -1112,11 +1112,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
1112
1112
|
};
|
1113
1113
|
get: {
|
1114
1114
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
1115
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
1116
|
-
typography: () => import("@omnia/fx-models").
|
1117
|
-
spacing: () => import("@omnia/fx-models").
|
1118
|
-
chrome: () => import("@omnia/fx-models").
|
1119
|
-
component: () => import("@omnia/fx-models").
|
1115
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
1116
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
1117
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
1118
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
1119
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
1120
1120
|
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;
|
1121
1121
|
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;
|
1122
1122
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -1,16 +1,38 @@
|
|
1
1
|
declare const _default: {
|
2
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
3
|
+
class: {
|
4
|
+
type: import("vue").PropType<String | String[]>;
|
5
|
+
required: boolean;
|
6
|
+
};
|
7
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
8
|
+
class: {
|
9
|
+
type: import("vue").PropType<String | String[]>;
|
10
|
+
required: boolean;
|
11
|
+
};
|
12
|
+
}>>, {}, true, {}, {}, {
|
3
13
|
P: {};
|
4
14
|
B: {};
|
5
15
|
D: {};
|
6
16
|
C: {};
|
7
17
|
M: {};
|
8
18
|
Defaults: {};
|
9
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
19
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
20
|
+
class: {
|
21
|
+
type: import("vue").PropType<String | String[]>;
|
22
|
+
required: boolean;
|
23
|
+
};
|
24
|
+
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
10
25
|
__isFragment?: never;
|
11
26
|
__isTeleport?: never;
|
12
27
|
__isSuspense?: never;
|
13
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
14
|
-
|
28
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
29
|
+
class: {
|
30
|
+
type: import("vue").PropType<String | String[]>;
|
31
|
+
required: boolean;
|
32
|
+
};
|
33
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
34
|
+
propsDefinition: Omit<Readonly<{} & {
|
35
|
+
class?: String | String[];
|
36
|
+
}>, never>;
|
15
37
|
};
|
16
38
|
export default _default;
|
@@ -1,6 +1,18 @@
|
|
1
1
|
import { useSlidePanelStore } from "@omnia/fx/ux";
|
2
|
+
import "internal/fx/libs/swiper";
|
3
|
+
import Swiper from "swiper";
|
4
|
+
/**
|
5
|
+
* Slide panel component
|
6
|
+
* @remarks - read the docs here of Core API https://swiperjs.com/swiper-api
|
7
|
+
*/
|
2
8
|
declare const _default: {
|
3
9
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
10
|
+
"content-wrapper-class": {
|
11
|
+
type: import("vue").PropType<string>;
|
12
|
+
};
|
13
|
+
contentWrapperClass: {
|
14
|
+
type: import("vue").PropType<string>;
|
15
|
+
};
|
4
16
|
"get-api": {
|
5
17
|
type: import("vue").PropType<(store: ReturnType<typeof useSlidePanelStore>) => void>;
|
6
18
|
};
|
@@ -58,7 +70,19 @@ declare const _default: {
|
|
58
70
|
colorSchemaType?: any;
|
59
71
|
container?: any;
|
60
72
|
colors?: any;
|
61
|
-
}
|
73
|
+
}>> & {
|
74
|
+
onInit?: (swiper: Swiper) => any;
|
75
|
+
onAfterInit?: (swiper: Swiper) => any;
|
76
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
77
|
+
afterInit: (swiper: Swiper) => void;
|
78
|
+
init: (swiper: Swiper) => void;
|
79
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
80
|
+
"content-wrapper-class": {
|
81
|
+
type: import("vue").PropType<string>;
|
82
|
+
};
|
83
|
+
contentWrapperClass: {
|
84
|
+
type: import("vue").PropType<string>;
|
85
|
+
};
|
62
86
|
"get-api": {
|
63
87
|
type: import("vue").PropType<(store: ReturnType<typeof useSlidePanelStore>) => void>;
|
64
88
|
};
|
@@ -116,7 +140,10 @@ declare const _default: {
|
|
116
140
|
colorSchemaType?: any;
|
117
141
|
container?: any;
|
118
142
|
colors?: any;
|
119
|
-
}
|
143
|
+
}>> & {
|
144
|
+
onInit?: (swiper: Swiper) => any;
|
145
|
+
onAfterInit?: (swiper: Swiper) => any;
|
146
|
+
}, {
|
120
147
|
container?: any;
|
121
148
|
colorSchemaType?: any;
|
122
149
|
colors?: any;
|
@@ -128,6 +155,12 @@ declare const _default: {
|
|
128
155
|
M: {};
|
129
156
|
Defaults: {};
|
130
157
|
}, Readonly<import("vue").ExtractPropTypes<{
|
158
|
+
"content-wrapper-class": {
|
159
|
+
type: import("vue").PropType<string>;
|
160
|
+
};
|
161
|
+
contentWrapperClass: {
|
162
|
+
type: import("vue").PropType<string>;
|
163
|
+
};
|
131
164
|
"get-api": {
|
132
165
|
type: import("vue").PropType<(store: ReturnType<typeof useSlidePanelStore>) => void>;
|
133
166
|
};
|
@@ -185,7 +218,10 @@ declare const _default: {
|
|
185
218
|
colorSchemaType?: any;
|
186
219
|
container?: any;
|
187
220
|
colors?: any;
|
188
|
-
}
|
221
|
+
}>> & {
|
222
|
+
onInit?: (swiper: Swiper) => any;
|
223
|
+
onAfterInit?: (swiper: Swiper) => any;
|
224
|
+
}, () => JSX.Element, {}, {}, {}, {
|
189
225
|
container?: any;
|
190
226
|
colorSchemaType?: any;
|
191
227
|
colors?: any;
|
@@ -194,6 +230,12 @@ declare const _default: {
|
|
194
230
|
__isTeleport?: never;
|
195
231
|
__isSuspense?: never;
|
196
232
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
233
|
+
"content-wrapper-class": {
|
234
|
+
type: import("vue").PropType<string>;
|
235
|
+
};
|
236
|
+
contentWrapperClass: {
|
237
|
+
type: import("vue").PropType<string>;
|
238
|
+
};
|
197
239
|
"get-api": {
|
198
240
|
type: import("vue").PropType<(store: ReturnType<typeof useSlidePanelStore>) => void>;
|
199
241
|
};
|
@@ -251,7 +293,13 @@ declare const _default: {
|
|
251
293
|
colorSchemaType?: any;
|
252
294
|
container?: any;
|
253
295
|
colors?: any;
|
254
|
-
}
|
296
|
+
}>> & {
|
297
|
+
onInit?: (swiper: Swiper) => any;
|
298
|
+
onAfterInit?: (swiper: Swiper) => any;
|
299
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
300
|
+
afterInit: (swiper: Swiper) => void;
|
301
|
+
init: (swiper: Swiper) => void;
|
302
|
+
}, string, {
|
255
303
|
container?: any;
|
256
304
|
colorSchemaType?: any;
|
257
305
|
colors?: any;
|
@@ -274,6 +322,11 @@ declare const _default: {
|
|
274
322
|
"slides-per-view"?: number;
|
275
323
|
slideSpacing?: number;
|
276
324
|
"slide-spacing"?: number;
|
277
|
-
|
325
|
+
contentWrapperClass?: string;
|
326
|
+
"content-wrapper-class"?: string;
|
327
|
+
}>, "onInit" | "onAfterInit"> & {
|
328
|
+
onInit?: (swiper: Swiper) => any;
|
329
|
+
onAfterInit?: (swiper: Swiper) => any;
|
330
|
+
};
|
278
331
|
};
|
279
332
|
export default _default;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
export declare const SwiperClass: {
|
2
|
+
readonly swiper: "swiper";
|
3
|
+
readonly activePage: "swiper-pagination-bullet-active";
|
4
|
+
readonly wrapper: "swiper-wrapper";
|
5
|
+
readonly slide: "swiper-slide";
|
6
|
+
readonly pagination: "swiper-pagination";
|
7
|
+
readonly scrollbar: "swiper-scrollbar";
|
8
|
+
readonly buttonNext: "swiper-button-next";
|
9
|
+
readonly buttonPrev: "swiper-button-prev";
|
10
|
+
readonly scrollbarDrag: "swiper-scrollbar-drag";
|
11
|
+
};
|
@@ -1,5 +1,11 @@
|
|
1
|
+
import { TabsBlueprint } from "@omnia/fx-models";
|
1
2
|
declare const _default: {
|
2
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
blueprint: {
|
5
|
+
type: import("vue").PropType<TabsBlueprint>;
|
6
|
+
} & {
|
7
|
+
type: import("vue").PropType<TabsBlueprint>;
|
8
|
+
};
|
3
9
|
scrolling: {
|
4
10
|
type: import("vue").PropType<string>;
|
5
11
|
} & {
|
@@ -11,11 +17,11 @@ declare const _default: {
|
|
11
17
|
type: import("vue").PropType<boolean>;
|
12
18
|
};
|
13
19
|
alignTabs: {
|
14
|
-
type: import("vue").PropType<"center" | "
|
20
|
+
type: import("vue").PropType<"center" | "start" | "end">;
|
15
21
|
required: false;
|
16
22
|
};
|
17
23
|
"align-tabs": {
|
18
|
-
type: import("vue").PropType<"center" | "
|
24
|
+
type: import("vue").PropType<"center" | "start" | "end">;
|
19
25
|
required: false;
|
20
26
|
};
|
21
27
|
"no-scrolling": {
|
@@ -85,6 +91,11 @@ declare const _default: {
|
|
85
91
|
"update:modelValue": (model: number) => void;
|
86
92
|
};
|
87
93
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
94
|
+
blueprint: {
|
95
|
+
type: import("vue").PropType<TabsBlueprint>;
|
96
|
+
} & {
|
97
|
+
type: import("vue").PropType<TabsBlueprint>;
|
98
|
+
};
|
88
99
|
scrolling: {
|
89
100
|
type: import("vue").PropType<string>;
|
90
101
|
} & {
|
@@ -96,11 +107,11 @@ declare const _default: {
|
|
96
107
|
type: import("vue").PropType<boolean>;
|
97
108
|
};
|
98
109
|
alignTabs: {
|
99
|
-
type: import("vue").PropType<"center" | "
|
110
|
+
type: import("vue").PropType<"center" | "start" | "end">;
|
100
111
|
required: false;
|
101
112
|
};
|
102
113
|
"align-tabs": {
|
103
|
-
type: import("vue").PropType<"center" | "
|
114
|
+
type: import("vue").PropType<"center" | "start" | "end">;
|
104
115
|
required: false;
|
105
116
|
};
|
106
117
|
"no-scrolling": {
|
@@ -176,6 +187,11 @@ declare const _default: {
|
|
176
187
|
M: {};
|
177
188
|
Defaults: {};
|
178
189
|
}, Readonly<import("vue").ExtractPropTypes<{
|
190
|
+
blueprint: {
|
191
|
+
type: import("vue").PropType<TabsBlueprint>;
|
192
|
+
} & {
|
193
|
+
type: import("vue").PropType<TabsBlueprint>;
|
194
|
+
};
|
179
195
|
scrolling: {
|
180
196
|
type: import("vue").PropType<string>;
|
181
197
|
} & {
|
@@ -187,11 +203,11 @@ declare const _default: {
|
|
187
203
|
type: import("vue").PropType<boolean>;
|
188
204
|
};
|
189
205
|
alignTabs: {
|
190
|
-
type: import("vue").PropType<"center" | "
|
206
|
+
type: import("vue").PropType<"center" | "start" | "end">;
|
191
207
|
required: false;
|
192
208
|
};
|
193
209
|
"align-tabs": {
|
194
|
-
type: import("vue").PropType<"center" | "
|
210
|
+
type: import("vue").PropType<"center" | "start" | "end">;
|
195
211
|
required: false;
|
196
212
|
};
|
197
213
|
"no-scrolling": {
|
@@ -264,6 +280,11 @@ declare const _default: {
|
|
264
280
|
__isTeleport?: never;
|
265
281
|
__isSuspense?: never;
|
266
282
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
283
|
+
blueprint: {
|
284
|
+
type: import("vue").PropType<TabsBlueprint>;
|
285
|
+
} & {
|
286
|
+
type: import("vue").PropType<TabsBlueprint>;
|
287
|
+
};
|
267
288
|
scrolling: {
|
268
289
|
type: import("vue").PropType<string>;
|
269
290
|
} & {
|
@@ -275,11 +296,11 @@ declare const _default: {
|
|
275
296
|
type: import("vue").PropType<boolean>;
|
276
297
|
};
|
277
298
|
alignTabs: {
|
278
|
-
type: import("vue").PropType<"center" | "
|
299
|
+
type: import("vue").PropType<"center" | "start" | "end">;
|
279
300
|
required: false;
|
280
301
|
};
|
281
302
|
"align-tabs": {
|
282
|
-
type: import("vue").PropType<"center" | "
|
303
|
+
type: import("vue").PropType<"center" | "start" | "end">;
|
283
304
|
required: false;
|
284
305
|
};
|
285
306
|
"no-scrolling": {
|
@@ -362,6 +383,7 @@ declare const _default: {
|
|
362
383
|
vertical?: boolean;
|
363
384
|
contentClass?: string | string[];
|
364
385
|
grow?: boolean;
|
386
|
+
blueprint?: TabsBlueprint;
|
365
387
|
"v-model"?: number;
|
366
388
|
"onUpdate:modelValue"?: (value: number) => any;
|
367
389
|
modelValue?: number;
|
@@ -374,8 +396,8 @@ declare const _default: {
|
|
374
396
|
"hide-tab-name-if-only-one-tab"?: boolean;
|
375
397
|
noScrolling?: boolean;
|
376
398
|
"no-scrolling"?: boolean;
|
377
|
-
alignTabs?: "center" | "
|
378
|
-
"align-tabs"?: "center" | "
|
399
|
+
alignTabs?: "center" | "start" | "end";
|
400
|
+
"align-tabs"?: "center" | "start" | "end";
|
379
401
|
}>, "onUpdate:modelValue" | "onDoc$"> & {
|
380
402
|
"onUpdate:modelValue"?: (model: number) => any;
|
381
403
|
onDoc$?: (description?: string) => any;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ColorGradientValue, ColorTypes, TextBlueprint, TypographySizes, TypographyTypes } from "@omnia/fx/models";
|
1
|
+
import { ColorGradientValue, ColorTypes, TextBlueprint, TypographySizes, TypographyTypes, TypographyValue } from "@omnia/fx/models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
blueprint: {
|
@@ -35,6 +35,12 @@ declare const _default: {
|
|
35
35
|
colorType: {
|
36
36
|
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer" | ColorTypes>;
|
37
37
|
};
|
38
|
+
"typography-value": {
|
39
|
+
type: import("vue").PropType<TypographyValue>;
|
40
|
+
};
|
41
|
+
typographyValue: {
|
42
|
+
type: import("vue").PropType<TypographyValue>;
|
43
|
+
};
|
38
44
|
size: {
|
39
45
|
type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
|
40
46
|
} & {
|
@@ -87,6 +93,12 @@ declare const _default: {
|
|
87
93
|
colorType: {
|
88
94
|
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer" | ColorTypes>;
|
89
95
|
};
|
96
|
+
"typography-value": {
|
97
|
+
type: import("vue").PropType<TypographyValue>;
|
98
|
+
};
|
99
|
+
typographyValue: {
|
100
|
+
type: import("vue").PropType<TypographyValue>;
|
101
|
+
};
|
90
102
|
size: {
|
91
103
|
type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
|
92
104
|
} & {
|
@@ -150,6 +162,12 @@ declare const _default: {
|
|
150
162
|
colorType: {
|
151
163
|
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer" | ColorTypes>;
|
152
164
|
};
|
165
|
+
"typography-value": {
|
166
|
+
type: import("vue").PropType<TypographyValue>;
|
167
|
+
};
|
168
|
+
typographyValue: {
|
169
|
+
type: import("vue").PropType<TypographyValue>;
|
170
|
+
};
|
153
171
|
size: {
|
154
172
|
type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
|
155
173
|
} & {
|
@@ -210,6 +228,12 @@ declare const _default: {
|
|
210
228
|
colorType: {
|
211
229
|
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer" | ColorTypes>;
|
212
230
|
};
|
231
|
+
"typography-value": {
|
232
|
+
type: import("vue").PropType<TypographyValue>;
|
233
|
+
};
|
234
|
+
typographyValue: {
|
235
|
+
type: import("vue").PropType<TypographyValue>;
|
236
|
+
};
|
213
237
|
size: {
|
214
238
|
type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
|
215
239
|
} & {
|
@@ -242,6 +266,8 @@ declare const _default: {
|
|
242
266
|
size?: "xs" | "s" | "m" | "l" | "xl" | TypographySizes;
|
243
267
|
blueprint?: TextBlueprint;
|
244
268
|
toned?: boolean;
|
269
|
+
typographyValue?: TypographyValue;
|
270
|
+
"typography-value"?: TypographyValue;
|
245
271
|
colorType?: "base" | "onBase" | "container" | "onContainer" | ColorTypes;
|
246
272
|
"color-type"?: "base" | "onBase" | "container" | "onContainer" | ColorTypes;
|
247
273
|
truncateLines?: number;
|