@omnia/fx 8.0.124-dev → 8.0.126-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/libs/swiper/Swiper.d.ts +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
- package/internal-do-not-import-from-here/services/TransactionLogService.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/broadcasting/InternalTopics.d.ts +5 -0
- package/internal-do-not-import-from-here/shared/models/HttpCommon.d.ts +14 -0
- package/internal-do-not-import-from-here/shared/models/HttpCommon.js +7 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/Activity.d.ts +8 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/Activity.js +7 -1
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivitySender.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivitySubscription.d.ts +16 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivitySubscription.js +5 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/index.js +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/index.js +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/targeting/ExternalIdentityProperty.d.ts +10 -0
- package/internal-do-not-import-from-here/shared/models/hub/targeting/ExternalIdentityProperty.js +19 -0
- package/internal-do-not-import-from-here/shared/models/hub/targeting/HubSource.d.ts +3 -0
- package/internal-do-not-import-from-here/shared/models/hub/targeting/HubSource.js +7 -0
- package/internal-do-not-import-from-here/shared/models/hub/targeting/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/targeting/index.js +4 -0
- package/internal-do-not-import-from-here/shared/models/theming/Blueprints.d.ts +127 -0
- package/internal-do-not-import-from-here/shared/models/theming/{ChromeDefinition.d.ts → Chrome.d.ts} +3 -3
- package/internal-do-not-import-from-here/shared/models/theming/SharedBlueprintMethods.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/theming/SharedBlueprintMethods.js +6 -6
- package/internal-do-not-import-from-here/shared/models/theming/Spacing.d.ts +22 -0
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +2 -3
- package/internal-do-not-import-from-here/shared/models/theming/{TypographyDefinition.d.ts → Typography.d.ts} +16 -16
- package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.d.ts +2 -2
- package/internal-do-not-import-from-here/shared/models/theming/index.d.ts +4 -4
- package/internal-do-not-import-from-here/shared/models/theming/index.js +4 -4
- package/internal-do-not-import-from-here/shared/models/velcron/VelcronReference.d.ts +20 -0
- package/internal-do-not-import-from-here/shared/models/velcron/VelcronReference.js +5 -0
- package/internal-do-not-import-from-here/shared/models/velcron/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/velcron/index.js +1 -0
- package/internal-do-not-import-from-here/shared/services/ActivityService.d.ts +12 -16
- package/internal-do-not-import-from-here/shared/services/ActivitySubscriptionService.d.ts +15 -0
- package/internal-do-not-import-from-here/shared/services/DefineService.d.ts +1 -6
- package/internal-do-not-import-from-here/shared/services/index.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/{ux/mediapickerV2/imagetransformer/store → stores/mediapicker}/ImageTransformerStore.d.ts +16 -18
- package/internal-do-not-import-from-here/{ux/mediapickerV2/stores → stores/mediapicker}/MediaPickerCommonStore.d.ts +4 -3
- package/internal-do-not-import-from-here/{ux/mediapickerV2/stores → stores/mediapicker}/MediaPickerGalleryStore.d.ts +15 -15
- package/internal-do-not-import-from-here/{ux/mediapickerV2/stores → stores/mediapicker}/ProviderStore.d.ts +26 -28
- package/internal-do-not-import-from-here/{ux/mediapickerV2/chrome/core → stores/mediapicker/Utils}/MediaFileProcessor.d.ts +1 -1
- package/internal-do-not-import-from-here/{ux/mediapickerV2/chrome/core → stores/mediapicker/Utils}/index.d.ts +1 -0
- package/internal-do-not-import-from-here/{ux/mediapickerV2/stores → stores/mediapicker}/constants.d.ts +1 -1
- package/internal-do-not-import-from-here/{ux/mediapickerV2/imagetransformer → stores/mediapicker/handlers}/Utils/index.d.ts +1 -0
- package/internal-do-not-import-from-here/{ux/mediapickerV2/handlers/imagetransformer → stores/mediapicker/handlers/Utils}/utils.d.ts +1 -1
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/gallery/ImageHandler.d.ts +1 -2
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/gallery/VideoHandler.d.ts +2 -3
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/imagetransformer/cropByRatio.d.ts +1 -2
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/imagetransformer/filter.d.ts +1 -2
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/imagetransformer/flip.d.ts +1 -2
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/imagetransformer/index.d.ts +0 -1
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/index.d.ts +2 -1
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/provider/BaseImageHandler.d.ts +2 -3
- package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/provider/BaseVideoHandler.d.ts +2 -3
- package/internal-do-not-import-from-here/{ux/mediapickerV2/stores → stores/mediapicker}/index.d.ts +3 -1
- package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/StyleHelper.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/backgroundstylepicker/BackgroundStyleEditor.d.ts +76 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/ButtonBlueprintsViewer.d.ts +72 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/ButtonStyleEditor.d.ts +85 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/ButtonStylePicker.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/ButtonStylePicker.d.ts +9 -7
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromeEditor.d.ts +119 -98
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.d.ts +98 -98
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromeViewer.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/blueprintpickers/componentblueprints/ComponentBlueprintsViewer.d.ts +68 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/spacingpicker/SpacingPicker3.d.ts +98 -98
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/TabBlueprintsViewer.d.ts +76 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/TabStyleEditor.d.ts +77 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/TabStylePicker.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/TabStylePicker.d.ts +68 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabstylepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/typographypicker/TypographyEditor.d.ts +459 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/typographypicker/TypographyPicker.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/typographypicker/TypographyPicker.d.ts +12 -4
- package/internal-do-not-import-from-here/ux/colorpickerV2/ColorPicker.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +97 -97
- package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/docs/chrome/VelcronSampleViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/governancedashboard/BarChartIndicator.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointSectionSettingsComponent.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +19 -19
- package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Delimiter.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Slider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/types.d.ts +13 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/docs/MediaProviderExample.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/ImageGrid.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditorCanvas.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/handler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/models/AppInstanceRollupStyles.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +29 -29
- package/internal-do-not-import-from-here/ux/oxide/column/ColumnGrid.d.ts +29 -29
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +26 -26
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +52 -52
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +53 -0
- package/internal-do-not-import-from-here/ux/oxide/flex/Flex2.d.ts +19 -19
- package/internal-do-not-import-from-here/ux/oxide/flex/Row.d.ts +49 -49
- package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/main/Main.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +52 -52
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/Slide.d.ts +26 -4
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/constants.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/store/SlidePanelStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +32 -10
- package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +27 -1
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +19 -19
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerEditorExtension.d.ts +14 -14
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerToolbar.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/PastingImageFromFileHandler.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/PastingMicrosoftOfficeImageHandler.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/PastingOmniaImageFromClipboardHandler.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/settings/SettingsPane.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/shapedivider/ShapeDivider.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/chrome/store/ChromeEditorStore.d.ts +16 -16
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/components/blades/TabBlade.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/components/blades/TabBladeEdit.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/components/store/ComponentEditorStore.d.ts +36 -21
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/typography/store/TypographyEditorStore.d.ts +22 -22
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/DefinitionsChrome.d.ts +19 -19
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/ThemeDefinitionInstance.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsChrome.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsComponents.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsSpacing.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsTypography.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/DefinitionsTypography.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsChrome.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsComponents.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsSpacing.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsTypography.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/DefinitionsTypography.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsChrome.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsComponents.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsSpacing.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsTypography.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/DefinitionsTypography.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeBlueprintStore.d.ts +26 -26
- package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeDefinitionStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +21 -21
- package/internal-do-not-import-from-here/ux/theming-v2/store/ComponentBlueprintStore.d.ts +23 -23
- package/internal-do-not-import-from-here/ux/theming-v2/store/ComponentDefinitionStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming-v2/store/SpacingBlueprintStore.d.ts +31 -31
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +45 -45
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeStoreV2.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyBlueprintStore.d.ts +32 -32
- package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyDefinitionStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +1774 -222
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Blueprints.d.ts +11 -6
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Chrome.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/General.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Spacing.d.ts +9 -4
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Typography.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +52 -12268
- package/internal-do-not-import-from-here/ux/use/UseClone.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +26 -26
- package/internal-do-not-import-from-here/ux/velcron/{renderer/VelcronUnitProvider.d.ts → VelcronUnitProvider.d.ts} +1 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/Praise.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/models/VelcronDefinitionIds.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +27 -7
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronRenderers.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/definitions/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/definitions/praise/PraiseApp.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/definitions/praise/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Lottie.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Reference.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Rive.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/SpacingEditor.d.ts +8 -8
- package/internal-do-not-import-from-here/wctypings.d.ts +108 -8
- package/package.json +4 -4
- package/internal-do-not-import-from-here/shared/models/theming/ComponentDefinitions.d.ts +0 -93
- package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.d.ts +0 -30
- package/internal-do-not-import-from-here/shared/services/SocialSourceService.d.ts +0 -10
- package/internal-do-not-import-from-here/shared/services/SourceFileService.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/colorschemadefinitionpicker/ColorSchemaDefinitionPicker.css.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/colorschemadefinitionpicker/ColorSchemaDefinitionPicker.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/GalleryPanel.css.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/GalleryPanels.d.ts +0 -35
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/IMediaPicker.d.ts +0 -36
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/MediaPicker.css.d.ts +0 -20
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/MediaPicker.d.ts +0 -20
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/MediaPickerComponentProps.d.ts +0 -33
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/MediaPickerContext.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/core/MediaPickerImageHandler.d.ts +0 -33
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/core/Utils.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/core/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/index.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/loc/localize.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/mediapickerV2/Utils/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/store/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IImageTransformHandler.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IMediaPickerGalleryHandler.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IMediaPickerProviderMediaHandler.d.ts +0 -56
- package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/index.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/types.d.ts +0 -55
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/DefinitionsJourney.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/velcron/test-definitions/AppTestJson.d.ts +0 -1
- /package/internal-do-not-import-from-here/shared/models/theming/{ComponentDefinitions.js → Blueprints.js} +0 -0
- /package/internal-do-not-import-from-here/shared/models/theming/{ChromeDefinition.js → Chrome.js} +0 -0
- /package/internal-do-not-import-from-here/shared/models/theming/{SpacingSetting.js → Spacing.js} +0 -0
- /package/internal-do-not-import-from-here/shared/models/theming/{TypographyDefinition.js → Typography.js} +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2/chrome/core → stores/mediapicker/Utils}/MediaPickerImageHandler.d.ts +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/Utils/getMediaProvider.d.ts +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2/chrome/core → stores/mediapicker/Utils}/utils.d.ts +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2/imagetransformer → stores/mediapicker/handlers}/Utils/cropUtils.d.ts +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2/imagetransformer → stores/mediapicker/handlers}/Utils/transformUtils.d.ts +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/gallery/index.d.ts +0 -0
- /package/internal-do-not-import-from-here/{ux/mediapickerV2 → stores/mediapicker}/handlers/provider/index.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/components/{BlueprintsJourney.d.ts → ComponentsJourney.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{depricated-mediapicker/MediaPickerRenderer.d.ts → velcron/VelcronSetup.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{renderer/VelcronStylesProvider.d.ts → VelcronStylesProvider.d.ts} +0 -0
@@ -65,11 +65,11 @@ declare const _default: <T extends unknown>(props: {
|
|
65
65
|
};
|
66
66
|
get: {
|
67
67
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
68
|
-
blueprint<TType extends import("@omnia/fx-models").
|
69
|
-
typography(): import("@omnia/fx-models").
|
70
|
-
spacing(): import("@omnia/fx-models").
|
71
|
-
chrome(): import("@omnia/fx-models").
|
72
|
-
component(): import("@omnia/fx-models").
|
68
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
69
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
70
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
71
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
72
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
73
73
|
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;
|
74
74
|
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;
|
75
75
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -119,11 +119,11 @@ declare const _default: <T extends unknown>(props: {
|
|
119
119
|
};
|
120
120
|
get: {
|
121
121
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
122
|
-
blueprint<TType extends import("@omnia/fx-models").
|
123
|
-
typography(): import("@omnia/fx-models").
|
124
|
-
spacing(): import("@omnia/fx-models").
|
125
|
-
chrome(): import("@omnia/fx-models").
|
126
|
-
component(): import("@omnia/fx-models").
|
122
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
123
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
124
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
125
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
126
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
127
127
|
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;
|
128
128
|
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;
|
129
129
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -173,11 +173,11 @@ declare const _default: <T extends unknown>(props: {
|
|
173
173
|
};
|
174
174
|
get: {
|
175
175
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
176
|
-
blueprint<TType extends import("@omnia/fx-models").
|
177
|
-
typography(): import("@omnia/fx-models").
|
178
|
-
spacing(): import("@omnia/fx-models").
|
179
|
-
chrome(): import("@omnia/fx-models").
|
180
|
-
component(): import("@omnia/fx-models").
|
176
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
177
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
178
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
179
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
180
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
181
181
|
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;
|
182
182
|
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;
|
183
183
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -220,11 +220,11 @@ declare const _default: <T extends unknown>(props: {
|
|
220
220
|
};
|
221
221
|
get: {
|
222
222
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
223
|
-
blueprint<TType extends import("@omnia/fx-models").
|
224
|
-
typography(): import("@omnia/fx-models").
|
225
|
-
spacing(): import("@omnia/fx-models").
|
226
|
-
chrome(): import("@omnia/fx-models").
|
227
|
-
component(): import("@omnia/fx-models").
|
223
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
224
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
225
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
226
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
227
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
228
228
|
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;
|
229
229
|
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;
|
230
230
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -459,7 +459,7 @@ declare const _default: <T extends unknown>(props: {
|
|
459
459
|
};
|
460
460
|
blueprints: {
|
461
461
|
type: import("@omnia/fx-models").BlueprintType;
|
462
|
-
name
|
462
|
+
name?: string;
|
463
463
|
}[];
|
464
464
|
};
|
465
465
|
};
|
@@ -492,11 +492,11 @@ declare const _default: <T extends unknown>(props: {
|
|
492
492
|
};
|
493
493
|
get: {
|
494
494
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
495
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
496
|
-
typography: () => import("@omnia/fx-models").
|
497
|
-
spacing: () => import("@omnia/fx-models").
|
498
|
-
chrome: () => import("@omnia/fx-models").
|
499
|
-
component: () => import("@omnia/fx-models").
|
495
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
496
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
497
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
498
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
499
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
500
500
|
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;
|
501
501
|
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;
|
502
502
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -664,11 +664,11 @@ declare const _default: <T extends unknown>(props: {
|
|
664
664
|
};
|
665
665
|
get: {
|
666
666
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
667
|
-
blueprint<TType extends import("@omnia/fx-models").
|
668
|
-
typography(): import("@omnia/fx-models").
|
669
|
-
spacing(): import("@omnia/fx-models").
|
670
|
-
chrome(): import("@omnia/fx-models").
|
671
|
-
component(): import("@omnia/fx-models").
|
667
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
668
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
669
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
670
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
671
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
672
672
|
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;
|
673
673
|
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;
|
674
674
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -718,11 +718,11 @@ declare const _default: <T extends unknown>(props: {
|
|
718
718
|
};
|
719
719
|
get: {
|
720
720
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
721
|
-
blueprint<TType extends import("@omnia/fx-models").
|
722
|
-
typography(): import("@omnia/fx-models").
|
723
|
-
spacing(): import("@omnia/fx-models").
|
724
|
-
chrome(): import("@omnia/fx-models").
|
725
|
-
component(): import("@omnia/fx-models").
|
721
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
722
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
723
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
724
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
725
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
726
726
|
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;
|
727
727
|
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;
|
728
728
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -772,11 +772,11 @@ declare const _default: <T extends unknown>(props: {
|
|
772
772
|
};
|
773
773
|
get: {
|
774
774
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
775
|
-
blueprint<TType extends import("@omnia/fx-models").
|
776
|
-
typography(): import("@omnia/fx-models").
|
777
|
-
spacing(): import("@omnia/fx-models").
|
778
|
-
chrome(): import("@omnia/fx-models").
|
779
|
-
component(): import("@omnia/fx-models").
|
775
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
776
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
777
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
778
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
779
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
780
780
|
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;
|
781
781
|
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;
|
782
782
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -819,11 +819,11 @@ declare const _default: <T extends unknown>(props: {
|
|
819
819
|
};
|
820
820
|
get: {
|
821
821
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
822
|
-
blueprint<TType extends import("@omnia/fx-models").
|
823
|
-
typography(): import("@omnia/fx-models").
|
824
|
-
spacing(): import("@omnia/fx-models").
|
825
|
-
chrome(): import("@omnia/fx-models").
|
826
|
-
component(): import("@omnia/fx-models").
|
822
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
823
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
824
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
825
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
826
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
827
827
|
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;
|
828
828
|
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;
|
829
829
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -1058,7 +1058,7 @@ declare const _default: <T extends unknown>(props: {
|
|
1058
1058
|
};
|
1059
1059
|
blueprints: {
|
1060
1060
|
type: import("@omnia/fx-models").BlueprintType;
|
1061
|
-
name
|
1061
|
+
name?: string;
|
1062
1062
|
}[];
|
1063
1063
|
};
|
1064
1064
|
};
|
@@ -1091,11 +1091,11 @@ declare const _default: <T extends unknown>(props: {
|
|
1091
1091
|
};
|
1092
1092
|
get: {
|
1093
1093
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
1094
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
1095
|
-
typography: () => import("@omnia/fx-models").
|
1096
|
-
spacing: () => import("@omnia/fx-models").
|
1097
|
-
chrome: () => import("@omnia/fx-models").
|
1098
|
-
component: () => import("@omnia/fx-models").
|
1094
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
1095
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
1096
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
1097
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
1098
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
1099
1099
|
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;
|
1100
1100
|
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;
|
1101
1101
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -1,5 +1,18 @@
|
|
1
|
+
import { TypographySizes, TypographyTypes } from "@omnia/fx-models";
|
1
2
|
declare const _default: {
|
2
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
"label-type": {
|
5
|
+
type: import("vue").PropType<"title" | "text" | "navigation" | TypographyTypes>;
|
6
|
+
};
|
7
|
+
labelType: {
|
8
|
+
type: import("vue").PropType<"title" | "text" | "navigation" | TypographyTypes>;
|
9
|
+
};
|
10
|
+
"label-size": {
|
11
|
+
type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
|
12
|
+
};
|
13
|
+
labelSize: {
|
14
|
+
type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
|
15
|
+
};
|
3
16
|
toned: {
|
4
17
|
type: import("vue").PropType<boolean>;
|
5
18
|
} & {
|
@@ -21,6 +34,18 @@ declare const _default: {
|
|
21
34
|
type: import("vue").PropType<string>;
|
22
35
|
};
|
23
36
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
37
|
+
"label-type": {
|
38
|
+
type: import("vue").PropType<"title" | "text" | "navigation" | TypographyTypes>;
|
39
|
+
};
|
40
|
+
labelType: {
|
41
|
+
type: import("vue").PropType<"title" | "text" | "navigation" | TypographyTypes>;
|
42
|
+
};
|
43
|
+
"label-size": {
|
44
|
+
type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
|
45
|
+
};
|
46
|
+
labelSize: {
|
47
|
+
type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
|
48
|
+
};
|
24
49
|
toned: {
|
25
50
|
type: import("vue").PropType<boolean>;
|
26
51
|
} & {
|
@@ -49,6 +74,18 @@ declare const _default: {
|
|
49
74
|
M: {};
|
50
75
|
Defaults: {};
|
51
76
|
}, Readonly<import("vue").ExtractPropTypes<{
|
77
|
+
"label-type": {
|
78
|
+
type: import("vue").PropType<"title" | "text" | "navigation" | TypographyTypes>;
|
79
|
+
};
|
80
|
+
labelType: {
|
81
|
+
type: import("vue").PropType<"title" | "text" | "navigation" | TypographyTypes>;
|
82
|
+
};
|
83
|
+
"label-size": {
|
84
|
+
type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
|
85
|
+
};
|
86
|
+
labelSize: {
|
87
|
+
type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
|
88
|
+
};
|
52
89
|
toned: {
|
53
90
|
type: import("vue").PropType<boolean>;
|
54
91
|
} & {
|
@@ -74,6 +111,18 @@ declare const _default: {
|
|
74
111
|
__isTeleport?: never;
|
75
112
|
__isSuspense?: never;
|
76
113
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
114
|
+
"label-type": {
|
115
|
+
type: import("vue").PropType<"title" | "text" | "navigation" | TypographyTypes>;
|
116
|
+
};
|
117
|
+
labelType: {
|
118
|
+
type: import("vue").PropType<"title" | "text" | "navigation" | TypographyTypes>;
|
119
|
+
};
|
120
|
+
"label-size": {
|
121
|
+
type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
|
122
|
+
};
|
123
|
+
labelSize: {
|
124
|
+
type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
|
125
|
+
};
|
77
126
|
toned: {
|
78
127
|
type: import("vue").PropType<boolean>;
|
79
128
|
} & {
|
@@ -100,6 +149,10 @@ declare const _default: {
|
|
100
149
|
class?: string;
|
101
150
|
variant?: "default" | "prominent";
|
102
151
|
toned?: boolean;
|
152
|
+
labelSize?: "xs" | "s" | "m" | "l" | "xl" | TypographySizes;
|
153
|
+
"label-size"?: "xs" | "s" | "m" | "l" | "xl" | TypographySizes;
|
154
|
+
labelType?: "title" | "text" | "navigation" | TypographyTypes;
|
155
|
+
"label-type"?: "title" | "text" | "navigation" | TypographyTypes;
|
103
156
|
}>, never>;
|
104
157
|
};
|
105
158
|
export default _default;
|
@@ -1,15 +1,15 @@
|
|
1
|
-
import {
|
1
|
+
import { Spacing, SpacingValue } from "@omnia/fx/models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
margin: {
|
5
|
-
type: import("vue").PropType<
|
5
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
6
6
|
} & {
|
7
|
-
type: import("vue").PropType<
|
7
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
8
8
|
};
|
9
9
|
padding: {
|
10
|
-
type: import("vue").PropType<
|
10
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
11
11
|
} & {
|
12
|
-
type: import("vue").PropType<
|
12
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
13
13
|
};
|
14
14
|
toned: {
|
15
15
|
type: import("vue").PropType<boolean>;
|
@@ -30,14 +30,14 @@ declare const _default: {
|
|
30
30
|
colors?: any;
|
31
31
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
32
32
|
margin: {
|
33
|
-
type: import("vue").PropType<
|
33
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
34
34
|
} & {
|
35
|
-
type: import("vue").PropType<
|
35
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
36
36
|
};
|
37
37
|
padding: {
|
38
|
-
type: import("vue").PropType<
|
38
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
39
39
|
} & {
|
40
|
-
type: import("vue").PropType<
|
40
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
41
41
|
};
|
42
42
|
toned: {
|
43
43
|
type: import("vue").PropType<boolean>;
|
@@ -69,14 +69,14 @@ declare const _default: {
|
|
69
69
|
Defaults: {};
|
70
70
|
}, Readonly<import("vue").ExtractPropTypes<{
|
71
71
|
margin: {
|
72
|
-
type: import("vue").PropType<
|
72
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
73
73
|
} & {
|
74
|
-
type: import("vue").PropType<
|
74
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
75
75
|
};
|
76
76
|
padding: {
|
77
|
-
type: import("vue").PropType<
|
77
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
78
78
|
} & {
|
79
|
-
type: import("vue").PropType<
|
79
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
80
80
|
};
|
81
81
|
toned: {
|
82
82
|
type: import("vue").PropType<boolean>;
|
@@ -105,14 +105,14 @@ declare const _default: {
|
|
105
105
|
__isSuspense?: never;
|
106
106
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
107
107
|
margin: {
|
108
|
-
type: import("vue").PropType<
|
108
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
109
109
|
} & {
|
110
|
-
type: import("vue").PropType<
|
110
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
111
111
|
};
|
112
112
|
padding: {
|
113
|
-
type: import("vue").PropType<
|
113
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
114
114
|
} & {
|
115
|
-
type: import("vue").PropType<
|
115
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
116
116
|
};
|
117
117
|
toned: {
|
118
118
|
type: import("vue").PropType<boolean>;
|
@@ -142,8 +142,8 @@ declare const _default: {
|
|
142
142
|
colors?: any;
|
143
143
|
} & {
|
144
144
|
class?: String | String[];
|
145
|
-
margin?:
|
146
|
-
padding?:
|
145
|
+
margin?: Spacing | SpacingValue;
|
146
|
+
padding?: Spacing | SpacingValue;
|
147
147
|
filled?: boolean;
|
148
148
|
toned?: boolean;
|
149
149
|
}>, never>;
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import {
|
1
|
+
import { Spacing, SpacingValue } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
"align-y": {
|
5
|
-
type: import("vue").PropType<"center" | "
|
5
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
6
6
|
};
|
7
7
|
alignY: {
|
8
|
-
type: import("vue").PropType<"center" | "
|
8
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
9
9
|
};
|
10
10
|
"align-x": {
|
11
11
|
type: import("vue").PropType<"left" | "center" | "right">;
|
@@ -14,26 +14,26 @@ declare const _default: {
|
|
14
14
|
type: import("vue").PropType<"left" | "center" | "right">;
|
15
15
|
};
|
16
16
|
margin: {
|
17
|
-
type: import("vue").PropType<
|
17
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
18
18
|
} & {
|
19
|
-
type: import("vue").PropType<
|
19
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
20
20
|
};
|
21
21
|
padding: {
|
22
|
-
type: import("vue").PropType<
|
22
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
23
23
|
} & {
|
24
|
-
type: import("vue").PropType<
|
24
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
25
25
|
};
|
26
26
|
"gap-y": {
|
27
|
-
type: import("vue").PropType<
|
27
|
+
type: import("vue").PropType<SpacingValue>;
|
28
28
|
};
|
29
29
|
gapY: {
|
30
|
-
type: import("vue").PropType<
|
30
|
+
type: import("vue").PropType<SpacingValue>;
|
31
31
|
};
|
32
32
|
"gap-x": {
|
33
|
-
type: import("vue").PropType<
|
33
|
+
type: import("vue").PropType<SpacingValue>;
|
34
34
|
};
|
35
35
|
gapX: {
|
36
|
-
type: import("vue").PropType<
|
36
|
+
type: import("vue").PropType<SpacingValue>;
|
37
37
|
};
|
38
38
|
"min-height": {
|
39
39
|
type: import("vue").PropType<string>;
|
@@ -86,10 +86,10 @@ declare const _default: {
|
|
86
86
|
colors?: any;
|
87
87
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
88
88
|
"align-y": {
|
89
|
-
type: import("vue").PropType<"center" | "
|
89
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
90
90
|
};
|
91
91
|
alignY: {
|
92
|
-
type: import("vue").PropType<"center" | "
|
92
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
93
93
|
};
|
94
94
|
"align-x": {
|
95
95
|
type: import("vue").PropType<"left" | "center" | "right">;
|
@@ -98,26 +98,26 @@ declare const _default: {
|
|
98
98
|
type: import("vue").PropType<"left" | "center" | "right">;
|
99
99
|
};
|
100
100
|
margin: {
|
101
|
-
type: import("vue").PropType<
|
101
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
102
102
|
} & {
|
103
|
-
type: import("vue").PropType<
|
103
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
104
104
|
};
|
105
105
|
padding: {
|
106
|
-
type: import("vue").PropType<
|
106
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
107
107
|
} & {
|
108
|
-
type: import("vue").PropType<
|
108
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
109
109
|
};
|
110
110
|
"gap-y": {
|
111
|
-
type: import("vue").PropType<
|
111
|
+
type: import("vue").PropType<SpacingValue>;
|
112
112
|
};
|
113
113
|
gapY: {
|
114
|
-
type: import("vue").PropType<
|
114
|
+
type: import("vue").PropType<SpacingValue>;
|
115
115
|
};
|
116
116
|
"gap-x": {
|
117
|
-
type: import("vue").PropType<
|
117
|
+
type: import("vue").PropType<SpacingValue>;
|
118
118
|
};
|
119
119
|
gapX: {
|
120
|
-
type: import("vue").PropType<
|
120
|
+
type: import("vue").PropType<SpacingValue>;
|
121
121
|
};
|
122
122
|
"min-height": {
|
123
123
|
type: import("vue").PropType<string>;
|
@@ -181,10 +181,10 @@ declare const _default: {
|
|
181
181
|
Defaults: {};
|
182
182
|
}, Readonly<import("vue").ExtractPropTypes<{
|
183
183
|
"align-y": {
|
184
|
-
type: import("vue").PropType<"center" | "
|
184
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
185
185
|
};
|
186
186
|
alignY: {
|
187
|
-
type: import("vue").PropType<"center" | "
|
187
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
188
188
|
};
|
189
189
|
"align-x": {
|
190
190
|
type: import("vue").PropType<"left" | "center" | "right">;
|
@@ -193,26 +193,26 @@ declare const _default: {
|
|
193
193
|
type: import("vue").PropType<"left" | "center" | "right">;
|
194
194
|
};
|
195
195
|
margin: {
|
196
|
-
type: import("vue").PropType<
|
196
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
197
197
|
} & {
|
198
|
-
type: import("vue").PropType<
|
198
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
199
199
|
};
|
200
200
|
padding: {
|
201
|
-
type: import("vue").PropType<
|
201
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
202
202
|
} & {
|
203
|
-
type: import("vue").PropType<
|
203
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
204
204
|
};
|
205
205
|
"gap-y": {
|
206
|
-
type: import("vue").PropType<
|
206
|
+
type: import("vue").PropType<SpacingValue>;
|
207
207
|
};
|
208
208
|
gapY: {
|
209
|
-
type: import("vue").PropType<
|
209
|
+
type: import("vue").PropType<SpacingValue>;
|
210
210
|
};
|
211
211
|
"gap-x": {
|
212
|
-
type: import("vue").PropType<
|
212
|
+
type: import("vue").PropType<SpacingValue>;
|
213
213
|
};
|
214
214
|
gapX: {
|
215
|
-
type: import("vue").PropType<
|
215
|
+
type: import("vue").PropType<SpacingValue>;
|
216
216
|
};
|
217
217
|
"min-height": {
|
218
218
|
type: import("vue").PropType<string>;
|
@@ -273,10 +273,10 @@ declare const _default: {
|
|
273
273
|
__isSuspense?: never;
|
274
274
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
275
275
|
"align-y": {
|
276
|
-
type: import("vue").PropType<"center" | "
|
276
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
277
277
|
};
|
278
278
|
alignY: {
|
279
|
-
type: import("vue").PropType<"center" | "
|
279
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
280
280
|
};
|
281
281
|
"align-x": {
|
282
282
|
type: import("vue").PropType<"left" | "center" | "right">;
|
@@ -285,26 +285,26 @@ declare const _default: {
|
|
285
285
|
type: import("vue").PropType<"left" | "center" | "right">;
|
286
286
|
};
|
287
287
|
margin: {
|
288
|
-
type: import("vue").PropType<
|
288
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
289
289
|
} & {
|
290
|
-
type: import("vue").PropType<
|
290
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
291
291
|
};
|
292
292
|
padding: {
|
293
|
-
type: import("vue").PropType<
|
293
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
294
294
|
} & {
|
295
|
-
type: import("vue").PropType<
|
295
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
296
296
|
};
|
297
297
|
"gap-y": {
|
298
|
-
type: import("vue").PropType<
|
298
|
+
type: import("vue").PropType<SpacingValue>;
|
299
299
|
};
|
300
300
|
gapY: {
|
301
|
-
type: import("vue").PropType<
|
301
|
+
type: import("vue").PropType<SpacingValue>;
|
302
302
|
};
|
303
303
|
"gap-x": {
|
304
|
-
type: import("vue").PropType<
|
304
|
+
type: import("vue").PropType<SpacingValue>;
|
305
305
|
};
|
306
306
|
gapX: {
|
307
|
-
type: import("vue").PropType<
|
307
|
+
type: import("vue").PropType<SpacingValue>;
|
308
308
|
};
|
309
309
|
"min-height": {
|
310
310
|
type: import("vue").PropType<string>;
|
@@ -371,21 +371,21 @@ declare const _default: {
|
|
371
371
|
minHeight?: string;
|
372
372
|
minWidth?: string;
|
373
373
|
width?: string;
|
374
|
-
margin?:
|
375
|
-
padding?:
|
374
|
+
margin?: Spacing | SpacingValue;
|
375
|
+
padding?: Spacing | SpacingValue;
|
376
376
|
wrap?: boolean;
|
377
377
|
filled?: boolean;
|
378
|
-
gapX?:
|
379
|
-
gapY?:
|
378
|
+
gapX?: SpacingValue;
|
379
|
+
gapY?: SpacingValue;
|
380
380
|
alignX?: "left" | "center" | "right";
|
381
|
-
alignY?: "center" | "
|
381
|
+
alignY?: "center" | "top" | "bottom";
|
382
382
|
toned?: boolean;
|
383
383
|
"min-width"?: string;
|
384
384
|
"min-height"?: string;
|
385
|
-
"gap-x"?:
|
386
|
-
"gap-y"?:
|
385
|
+
"gap-x"?: SpacingValue;
|
386
|
+
"gap-y"?: SpacingValue;
|
387
387
|
"align-x"?: "left" | "center" | "right";
|
388
|
-
"align-y"?: "center" | "
|
388
|
+
"align-y"?: "center" | "top" | "bottom";
|
389
389
|
}>, never>;
|
390
390
|
};
|
391
391
|
export default _default;
|