@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,9 +74,9 @@ declare const _default: {
|
|
74
74
|
type: import("vue").PropType<ButtonTooltipOptions>;
|
75
75
|
};
|
76
76
|
preset: {
|
77
|
-
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "
|
77
|
+
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "save" | "remove" | "retry" | "ok" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
|
78
78
|
} & {
|
79
|
-
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "
|
79
|
+
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "save" | "remove" | "retry" | "ok" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
|
80
80
|
};
|
81
81
|
overrides: {
|
82
82
|
type: import("vue").PropType<object>;
|
@@ -188,9 +188,9 @@ declare const _default: {
|
|
188
188
|
type: import("vue").PropType<ButtonTooltipOptions>;
|
189
189
|
};
|
190
190
|
preset: {
|
191
|
-
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "
|
191
|
+
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "save" | "remove" | "retry" | "ok" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
|
192
192
|
} & {
|
193
|
-
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "
|
193
|
+
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "save" | "remove" | "retry" | "ok" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
|
194
194
|
};
|
195
195
|
overrides: {
|
196
196
|
type: import("vue").PropType<object>;
|
@@ -313,9 +313,9 @@ declare const _default: {
|
|
313
313
|
type: import("vue").PropType<ButtonTooltipOptions>;
|
314
314
|
};
|
315
315
|
preset: {
|
316
|
-
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "
|
316
|
+
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "save" | "remove" | "retry" | "ok" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
|
317
317
|
} & {
|
318
|
-
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "
|
318
|
+
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "save" | "remove" | "retry" | "ok" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
|
319
319
|
};
|
320
320
|
overrides: {
|
321
321
|
type: import("vue").PropType<object>;
|
@@ -435,9 +435,9 @@ declare const _default: {
|
|
435
435
|
type: import("vue").PropType<ButtonTooltipOptions>;
|
436
436
|
};
|
437
437
|
preset: {
|
438
|
-
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "
|
438
|
+
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "save" | "remove" | "retry" | "ok" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
|
439
439
|
} & {
|
440
|
-
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "
|
440
|
+
type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "save" | "remove" | "retry" | "ok" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
|
441
441
|
};
|
442
442
|
overrides: {
|
443
443
|
type: import("vue").PropType<object>;
|
@@ -503,7 +503,7 @@ declare const _default: {
|
|
503
503
|
toned?: boolean;
|
504
504
|
loading?: boolean;
|
505
505
|
overrides?: object;
|
506
|
-
preset?: "cancel" | "close" | "select" | "delete" | "details" | "settings" | "
|
506
|
+
preset?: "cancel" | "close" | "select" | "delete" | "details" | "settings" | "save" | "remove" | "retry" | "ok" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request";
|
507
507
|
transparentHover?: boolean;
|
508
508
|
"transparent-hover"?: boolean;
|
509
509
|
stacked?: boolean;
|
@@ -1,21 +1,21 @@
|
|
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
|
"align-y": {
|
15
|
-
type: import("vue").PropType<"center" | "
|
15
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
16
16
|
};
|
17
17
|
alignY: {
|
18
|
-
type: import("vue").PropType<"center" | "
|
18
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
19
19
|
};
|
20
20
|
"min-width": {
|
21
21
|
type: import("vue").PropType<string>;
|
@@ -52,20 +52,20 @@ declare const _default: {
|
|
52
52
|
colors?: any;
|
53
53
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
54
54
|
margin: {
|
55
|
-
type: import("vue").PropType<
|
55
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
56
56
|
} & {
|
57
|
-
type: import("vue").PropType<
|
57
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
58
58
|
};
|
59
59
|
padding: {
|
60
|
-
type: import("vue").PropType<
|
60
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
61
61
|
} & {
|
62
|
-
type: import("vue").PropType<
|
62
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
63
63
|
};
|
64
64
|
"align-y": {
|
65
|
-
type: import("vue").PropType<"center" | "
|
65
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
66
66
|
};
|
67
67
|
alignY: {
|
68
|
-
type: import("vue").PropType<"center" | "
|
68
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
69
69
|
};
|
70
70
|
"min-width": {
|
71
71
|
type: import("vue").PropType<string>;
|
@@ -113,20 +113,20 @@ declare const _default: {
|
|
113
113
|
Defaults: {};
|
114
114
|
}, Readonly<import("vue").ExtractPropTypes<{
|
115
115
|
margin: {
|
116
|
-
type: import("vue").PropType<
|
116
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
117
117
|
} & {
|
118
|
-
type: import("vue").PropType<
|
118
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
119
119
|
};
|
120
120
|
padding: {
|
121
|
-
type: import("vue").PropType<
|
121
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
122
122
|
} & {
|
123
|
-
type: import("vue").PropType<
|
123
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
124
124
|
};
|
125
125
|
"align-y": {
|
126
|
-
type: import("vue").PropType<"center" | "
|
126
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
127
127
|
};
|
128
128
|
alignY: {
|
129
|
-
type: import("vue").PropType<"center" | "
|
129
|
+
type: import("vue").PropType<"center" | "top" | "bottom">;
|
130
130
|
};
|
131
131
|
"min-width": {
|
132
132
|
type: import("vue").PropType<string>;
|
@@ -171,20 +171,20 @@ declare const _default: {
|
|
171
171
|
__isSuspense?: never;
|
172
172
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
173
173
|
margin: {
|
174
|
-
type: import("vue").PropType<
|
174
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
175
175
|
} & {
|
176
|
-
type: import("vue").PropType<
|
176
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
177
177
|
};
|
178
178
|
padding: {
|
179
|
-
type: import("vue").PropType<
|
179
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
180
180
|
} & {
|
181
|
-
type: import("vue").PropType<
|
181
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
182
182
|
};
|
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
|
"min-width": {
|
190
190
|
type: import("vue").PropType<string>;
|
@@ -232,14 +232,14 @@ declare const _default: {
|
|
232
232
|
class?: String | String[];
|
233
233
|
minWidth?: string;
|
234
234
|
width?: string;
|
235
|
-
margin?:
|
236
|
-
padding?:
|
235
|
+
margin?: Spacing | SpacingValue;
|
236
|
+
padding?: Spacing | SpacingValue;
|
237
237
|
filled?: boolean;
|
238
|
-
alignY?: "center" | "
|
238
|
+
alignY?: "center" | "top" | "bottom";
|
239
239
|
grow?: number;
|
240
240
|
toned?: boolean;
|
241
241
|
"min-width"?: string;
|
242
|
-
"align-y"?: "center" | "
|
242
|
+
"align-y"?: "center" | "top" | "bottom";
|
243
243
|
}>, never>;
|
244
244
|
};
|
245
245
|
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
|
xl: {
|
15
15
|
type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "auto" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
|
@@ -54,10 +54,10 @@ declare const _default: {
|
|
54
54
|
type: import("vue").PropType<boolean>;
|
55
55
|
};
|
56
56
|
"align-self": {
|
57
|
-
type: import("vue").PropType<"center" | "
|
57
|
+
type: import("vue").PropType<"center" | "start" | "end" | "auto" | "stretch" | "baseline">;
|
58
58
|
};
|
59
59
|
alignSelf: {
|
60
|
-
type: import("vue").PropType<"center" | "
|
60
|
+
type: import("vue").PropType<"center" | "start" | "end" | "auto" | "stretch" | "baseline">;
|
61
61
|
};
|
62
62
|
filled: {
|
63
63
|
type: import("vue").PropType<boolean>;
|
@@ -73,14 +73,14 @@ declare const _default: {
|
|
73
73
|
colors?: any;
|
74
74
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
75
75
|
margin: {
|
76
|
-
type: import("vue").PropType<
|
76
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
77
77
|
} & {
|
78
|
-
type: import("vue").PropType<
|
78
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
79
79
|
};
|
80
80
|
padding: {
|
81
|
-
type: import("vue").PropType<
|
81
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
82
82
|
} & {
|
83
|
-
type: import("vue").PropType<
|
83
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
84
84
|
};
|
85
85
|
xl: {
|
86
86
|
type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "auto" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
|
@@ -125,10 +125,10 @@ declare const _default: {
|
|
125
125
|
type: import("vue").PropType<boolean>;
|
126
126
|
};
|
127
127
|
"align-self": {
|
128
|
-
type: import("vue").PropType<"center" | "
|
128
|
+
type: import("vue").PropType<"center" | "start" | "end" | "auto" | "stretch" | "baseline">;
|
129
129
|
};
|
130
130
|
alignSelf: {
|
131
|
-
type: import("vue").PropType<"center" | "
|
131
|
+
type: import("vue").PropType<"center" | "start" | "end" | "auto" | "stretch" | "baseline">;
|
132
132
|
};
|
133
133
|
filled: {
|
134
134
|
type: import("vue").PropType<boolean>;
|
@@ -155,14 +155,14 @@ declare const _default: {
|
|
155
155
|
Defaults: {};
|
156
156
|
}, Readonly<import("vue").ExtractPropTypes<{
|
157
157
|
margin: {
|
158
|
-
type: import("vue").PropType<
|
158
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
159
159
|
} & {
|
160
|
-
type: import("vue").PropType<
|
160
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
161
161
|
};
|
162
162
|
padding: {
|
163
|
-
type: import("vue").PropType<
|
163
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
164
164
|
} & {
|
165
|
-
type: import("vue").PropType<
|
165
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
166
166
|
};
|
167
167
|
xl: {
|
168
168
|
type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "auto" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
|
@@ -207,10 +207,10 @@ declare const _default: {
|
|
207
207
|
type: import("vue").PropType<boolean>;
|
208
208
|
};
|
209
209
|
"align-self": {
|
210
|
-
type: import("vue").PropType<"center" | "
|
210
|
+
type: import("vue").PropType<"center" | "start" | "end" | "auto" | "stretch" | "baseline">;
|
211
211
|
};
|
212
212
|
alignSelf: {
|
213
|
-
type: import("vue").PropType<"center" | "
|
213
|
+
type: import("vue").PropType<"center" | "start" | "end" | "auto" | "stretch" | "baseline">;
|
214
214
|
};
|
215
215
|
filled: {
|
216
216
|
type: import("vue").PropType<boolean>;
|
@@ -234,14 +234,14 @@ declare const _default: {
|
|
234
234
|
__isSuspense?: never;
|
235
235
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
236
236
|
margin: {
|
237
|
-
type: import("vue").PropType<
|
237
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
238
238
|
} & {
|
239
|
-
type: import("vue").PropType<
|
239
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
240
240
|
};
|
241
241
|
padding: {
|
242
|
-
type: import("vue").PropType<
|
242
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
243
243
|
} & {
|
244
|
-
type: import("vue").PropType<
|
244
|
+
type: import("vue").PropType<Spacing | SpacingValue>;
|
245
245
|
};
|
246
246
|
xl: {
|
247
247
|
type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "auto" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
|
@@ -286,10 +286,10 @@ declare const _default: {
|
|
286
286
|
type: import("vue").PropType<boolean>;
|
287
287
|
};
|
288
288
|
"align-self": {
|
289
|
-
type: import("vue").PropType<"center" | "
|
289
|
+
type: import("vue").PropType<"center" | "start" | "end" | "auto" | "stretch" | "baseline">;
|
290
290
|
};
|
291
291
|
alignSelf: {
|
292
|
-
type: import("vue").PropType<"center" | "
|
292
|
+
type: import("vue").PropType<"center" | "start" | "end" | "auto" | "stretch" | "baseline">;
|
293
293
|
};
|
294
294
|
filled: {
|
295
295
|
type: import("vue").PropType<boolean>;
|
@@ -319,14 +319,14 @@ declare const _default: {
|
|
319
319
|
lg?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "auto" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
|
320
320
|
xl?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "auto" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
|
321
321
|
class?: String | String[];
|
322
|
-
alignSelf?: "center" | "
|
323
|
-
margin?:
|
324
|
-
padding?:
|
322
|
+
alignSelf?: "center" | "start" | "end" | "auto" | "stretch" | "baseline";
|
323
|
+
margin?: Spacing | SpacingValue;
|
324
|
+
padding?: Spacing | SpacingValue;
|
325
325
|
filled?: boolean;
|
326
326
|
variant?: "default" | "grid";
|
327
327
|
toned?: boolean;
|
328
328
|
cols?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "auto" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
|
329
|
-
"align-self"?: "center" | "
|
329
|
+
"align-self"?: "center" | "start" | "end" | "auto" | "stretch" | "baseline";
|
330
330
|
}>, never>;
|
331
331
|
};
|
332
332
|
export default _default;
|
@@ -63,11 +63,11 @@ declare const _default: {
|
|
63
63
|
};
|
64
64
|
get: {
|
65
65
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
66
|
-
blueprint<TType extends import("@omnia/fx-models").
|
67
|
-
typography(): import("@omnia/fx-models").
|
68
|
-
spacing(): import("@omnia/fx-models").
|
69
|
-
chrome(): import("@omnia/fx-models").
|
70
|
-
component(): import("@omnia/fx-models").
|
66
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
67
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
68
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
69
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
70
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
71
71
|
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;
|
72
72
|
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): ColorDefinition;
|
73
73
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -117,11 +117,11 @@ declare const _default: {
|
|
117
117
|
};
|
118
118
|
get: {
|
119
119
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
120
|
-
blueprint<TType extends import("@omnia/fx-models").
|
121
|
-
typography(): import("@omnia/fx-models").
|
122
|
-
spacing(): import("@omnia/fx-models").
|
123
|
-
chrome(): import("@omnia/fx-models").
|
124
|
-
component(): import("@omnia/fx-models").
|
120
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
121
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
122
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
123
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
124
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
125
125
|
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;
|
126
126
|
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): ColorDefinition;
|
127
127
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -171,11 +171,11 @@ declare const _default: {
|
|
171
171
|
};
|
172
172
|
get: {
|
173
173
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
174
|
-
blueprint<TType extends import("@omnia/fx-models").
|
175
|
-
typography(): import("@omnia/fx-models").
|
176
|
-
spacing(): import("@omnia/fx-models").
|
177
|
-
chrome(): import("@omnia/fx-models").
|
178
|
-
component(): import("@omnia/fx-models").
|
174
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
175
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
176
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
177
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
178
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
179
179
|
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;
|
180
180
|
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): ColorDefinition;
|
181
181
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -218,11 +218,11 @@ declare const _default: {
|
|
218
218
|
};
|
219
219
|
get: {
|
220
220
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
221
|
-
blueprint<TType extends import("@omnia/fx-models").
|
222
|
-
typography(): import("@omnia/fx-models").
|
223
|
-
spacing(): import("@omnia/fx-models").
|
224
|
-
chrome(): import("@omnia/fx-models").
|
225
|
-
component(): import("@omnia/fx-models").
|
221
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
222
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
223
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
224
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
225
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
226
226
|
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;
|
227
227
|
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): ColorDefinition;
|
228
228
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -457,7 +457,7 @@ declare const _default: {
|
|
457
457
|
};
|
458
458
|
blueprints: {
|
459
459
|
type: import("@omnia/fx-models").BlueprintType;
|
460
|
-
name
|
460
|
+
name?: string;
|
461
461
|
}[];
|
462
462
|
};
|
463
463
|
};
|
@@ -490,11 +490,11 @@ declare const _default: {
|
|
490
490
|
};
|
491
491
|
get: {
|
492
492
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
493
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
494
|
-
typography: () => import("@omnia/fx-models").
|
495
|
-
spacing: () => import("@omnia/fx-models").
|
496
|
-
chrome: () => import("@omnia/fx-models").
|
497
|
-
component: () => import("@omnia/fx-models").
|
493
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
494
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
495
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
496
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
497
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
498
498
|
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;
|
499
499
|
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) => ColorDefinition;
|
500
500
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|