@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
@@ -1,29 +1,29 @@
|
|
1
|
-
import {
|
1
|
+
import { ChromeBlueprint } from "@omnia/fx-models";
|
2
2
|
export declare const useChromeDefinitionStore: () => {
|
3
3
|
state: {
|
4
|
-
chromeDefinitions:
|
4
|
+
chromeDefinitions: ChromeBlueprint[];
|
5
5
|
};
|
6
6
|
events: {
|
7
|
-
onMutatedChromeDefinitions: import("@omnia/fx").MessageBusExposeOnlySubscription<
|
7
|
+
onMutatedChromeDefinitions: import("@omnia/fx").MessageBusExposeOnlySubscription<ChromeBlueprint[]>;
|
8
8
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
9
9
|
actions: {
|
10
10
|
onDispatching: {
|
11
11
|
addChromeDefinition: {
|
12
|
-
subscribe(fn: (typography:
|
12
|
+
subscribe(fn: (typography: ChromeBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
13
13
|
};
|
14
14
|
};
|
15
15
|
onDispatched: {
|
16
16
|
addChromeDefinition: {
|
17
|
-
subscribe(fn: (result: void, typography:
|
17
|
+
subscribe(fn: (result: void, typography: ChromeBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
18
18
|
};
|
19
19
|
};
|
20
20
|
onFailure: {
|
21
21
|
addChromeDefinition: {
|
22
|
-
subscribe(fn: (failureReason: any, typography:
|
22
|
+
subscribe(fn: (failureReason: any, typography: ChromeBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
23
23
|
};
|
24
24
|
};
|
25
25
|
} & {
|
26
|
-
addChromeDefinition(typography:
|
26
|
+
addChromeDefinition(typography: ChromeBlueprint): void;
|
27
27
|
};
|
28
28
|
get: {};
|
29
29
|
};
|
@@ -61,11 +61,11 @@ export declare const useColorSchemaStore: () => {
|
|
61
61
|
};
|
62
62
|
get: {
|
63
63
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): ColorSchema;
|
64
|
-
blueprint<TType extends import("@omnia/fx-models").
|
65
|
-
typography(): import("@omnia/fx-models").
|
66
|
-
spacing(): import("@omnia/fx-models").
|
67
|
-
chrome(): import("@omnia/fx-models").
|
68
|
-
component(): import("@omnia/fx-models").
|
64
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
65
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
66
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
67
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
68
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
69
69
|
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | ColorTypes): string;
|
70
70
|
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | ColorTypes): ColorDefinition;
|
71
71
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | ColorTypes): ColorTypes;
|
@@ -115,11 +115,11 @@ export declare const useColorSchemaStore: () => {
|
|
115
115
|
};
|
116
116
|
get: {
|
117
117
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): ColorSchema;
|
118
|
-
blueprint<TType extends import("@omnia/fx-models").
|
119
|
-
typography(): import("@omnia/fx-models").
|
120
|
-
spacing(): import("@omnia/fx-models").
|
121
|
-
chrome(): import("@omnia/fx-models").
|
122
|
-
component(): import("@omnia/fx-models").
|
118
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
119
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
120
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
121
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
122
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
123
123
|
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | ColorTypes): string;
|
124
124
|
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | ColorTypes): ColorDefinition;
|
125
125
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | ColorTypes): ColorTypes;
|
@@ -169,11 +169,11 @@ export declare const useColorSchemaStore: () => {
|
|
169
169
|
};
|
170
170
|
get: {
|
171
171
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): ColorSchema;
|
172
|
-
blueprint<TType extends import("@omnia/fx-models").
|
173
|
-
typography(): import("@omnia/fx-models").
|
174
|
-
spacing(): import("@omnia/fx-models").
|
175
|
-
chrome(): import("@omnia/fx-models").
|
176
|
-
component(): import("@omnia/fx-models").
|
172
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
173
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
174
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
175
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
176
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
177
177
|
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | ColorTypes): string;
|
178
178
|
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | ColorTypes): ColorDefinition;
|
179
179
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | ColorTypes): ColorTypes;
|
@@ -415,7 +415,7 @@ export declare const useColorSchemaStore: () => {
|
|
415
415
|
};
|
416
416
|
blueprints: {
|
417
417
|
type: import("@omnia/fx-models").BlueprintType;
|
418
|
-
name
|
418
|
+
name?: string;
|
419
419
|
}[];
|
420
420
|
};
|
421
421
|
};
|
@@ -448,11 +448,11 @@ export declare const useColorSchemaStore: () => {
|
|
448
448
|
};
|
449
449
|
get: {
|
450
450
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => ColorSchema;
|
451
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
452
|
-
typography: () => import("@omnia/fx-models").
|
453
|
-
spacing: () => import("@omnia/fx-models").
|
454
|
-
chrome: () => import("@omnia/fx-models").
|
455
|
-
component: () => import("@omnia/fx-models").
|
451
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
452
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
453
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
454
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
455
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
456
456
|
color: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | ColorTypes) => string;
|
457
457
|
colorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | ColorTypes) => ColorDefinition;
|
458
458
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | ColorTypes) => ColorTypes;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { Blueprint, ComponentBlueprints, WebBlueprintItemDefintionType } from "@omnia/fx-models";
|
2
2
|
import { useThemeStoreV2 } from "./ThemeStoreV2";
|
3
3
|
type blueprintType = "default";
|
4
4
|
export declare const useComponentBlueprintStore: () => {
|
@@ -46,11 +46,11 @@ export declare const useComponentBlueprintStore: () => {
|
|
46
46
|
};
|
47
47
|
get: {
|
48
48
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
49
|
-
blueprint<TType extends import("@omnia/fx-models").
|
50
|
-
typography(): import("@omnia/fx-models").
|
51
|
-
spacing(): import("@omnia/fx-models").
|
52
|
-
chrome(): import("@omnia/fx-models").
|
53
|
-
component():
|
49
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
50
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
51
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
52
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
53
|
+
component(): ComponentBlueprints;
|
54
54
|
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;
|
55
55
|
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;
|
56
56
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -94,11 +94,11 @@ export declare const useComponentBlueprintStore: () => {
|
|
94
94
|
};
|
95
95
|
get: {
|
96
96
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
97
|
-
blueprint<TType extends import("@omnia/fx-models").
|
98
|
-
typography(): import("@omnia/fx-models").
|
99
|
-
spacing(): import("@omnia/fx-models").
|
100
|
-
chrome(): import("@omnia/fx-models").
|
101
|
-
component():
|
97
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
98
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
99
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
100
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
101
|
+
component(): ComponentBlueprints;
|
102
102
|
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;
|
103
103
|
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;
|
104
104
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -142,11 +142,11 @@ export declare const useComponentBlueprintStore: () => {
|
|
142
142
|
};
|
143
143
|
get: {
|
144
144
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
145
|
-
blueprint<TType extends import("@omnia/fx-models").
|
146
|
-
typography(): import("@omnia/fx-models").
|
147
|
-
spacing(): import("@omnia/fx-models").
|
148
|
-
chrome(): import("@omnia/fx-models").
|
149
|
-
component():
|
145
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
146
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
147
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
148
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
149
|
+
component(): ComponentBlueprints;
|
150
150
|
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;
|
151
151
|
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;
|
152
152
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -162,7 +162,7 @@ export declare const useComponentBlueprintStore: () => {
|
|
162
162
|
setThemeStore(themeStoreInstance: ReturnType<typeof useThemeStoreV2>): void;
|
163
163
|
};
|
164
164
|
get: {
|
165
|
-
byType<TType_1 extends
|
165
|
+
byType<TType_1 extends Blueprint>(type: WebBlueprintItemDefintionType): TType_1;
|
166
166
|
readonly themeStore: {
|
167
167
|
state: {
|
168
168
|
currentTheme: {
|
@@ -387,7 +387,7 @@ export declare const useComponentBlueprintStore: () => {
|
|
387
387
|
};
|
388
388
|
blueprints: {
|
389
389
|
type: import("@omnia/fx-models").BlueprintType;
|
390
|
-
name
|
390
|
+
name?: string;
|
391
391
|
}[];
|
392
392
|
};
|
393
393
|
};
|
@@ -420,11 +420,11 @@ export declare const useComponentBlueprintStore: () => {
|
|
420
420
|
};
|
421
421
|
get: {
|
422
422
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
423
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
424
|
-
typography: () => import("@omnia/fx-models").
|
425
|
-
spacing: () => import("@omnia/fx-models").
|
426
|
-
chrome: () => import("@omnia/fx-models").
|
427
|
-
component: () =>
|
423
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
424
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
425
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
426
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
427
|
+
component: () => ComponentBlueprints;
|
428
428
|
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;
|
429
429
|
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;
|
430
430
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -1,29 +1,29 @@
|
|
1
|
-
import {
|
1
|
+
import { Blueprints } from "@omnia/fx-models";
|
2
2
|
export declare const useComponentDefinitionStore: () => {
|
3
3
|
state: {
|
4
|
-
blueprints:
|
4
|
+
blueprints: Blueprints[];
|
5
5
|
};
|
6
6
|
events: {
|
7
|
-
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<
|
7
|
+
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<Blueprints[]>;
|
8
8
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
9
9
|
actions: {
|
10
10
|
onDispatching: {
|
11
11
|
addBluprint: {
|
12
|
-
subscribe(fn: (blueprint:
|
12
|
+
subscribe(fn: (blueprint: Blueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
13
13
|
};
|
14
14
|
};
|
15
15
|
onDispatched: {
|
16
16
|
addBluprint: {
|
17
|
-
subscribe(fn: (result: void, blueprint:
|
17
|
+
subscribe(fn: (result: void, blueprint: Blueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
18
18
|
};
|
19
19
|
};
|
20
20
|
onFailure: {
|
21
21
|
addBluprint: {
|
22
|
-
subscribe(fn: (failureReason: any, blueprint:
|
22
|
+
subscribe(fn: (failureReason: any, blueprint: Blueprints) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
23
23
|
};
|
24
24
|
};
|
25
25
|
} & {
|
26
|
-
addBluprint(blueprint:
|
26
|
+
addBluprint(blueprint: Blueprints): void;
|
27
27
|
};
|
28
28
|
get: {};
|
29
29
|
};
|
@@ -1,20 +1,20 @@
|
|
1
|
-
import {
|
1
|
+
import { BlueprintVariant, SpacingBlueprints } from "@omnia/fx-models";
|
2
2
|
import { useThemeStoreV2 } from "./ThemeStoreV2";
|
3
3
|
export declare const useSpacingBlueprintStore: () => {
|
4
4
|
state: {
|
5
|
-
blueprint: import("@omnia/fx-models").
|
6
|
-
blueprintType:
|
5
|
+
blueprint: import("@omnia/fx-models").SpacingBlueprint;
|
6
|
+
blueprintType: BlueprintVariant;
|
7
7
|
id: import("@omnia/fx-models").GuidValue;
|
8
8
|
};
|
9
9
|
events: {
|
10
|
-
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").
|
11
|
-
onMutatedBlueprintType: import("@omnia/fx").MessageBusExposeOnlySubscription<
|
10
|
+
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").SpacingBlueprint>;
|
11
|
+
onMutatedBlueprintType: import("@omnia/fx").MessageBusExposeOnlySubscription<BlueprintVariant>;
|
12
12
|
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
13
13
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
14
14
|
actions: {
|
15
15
|
onDispatching: {
|
16
16
|
setBlueprint: {
|
17
|
-
subscribe(fn: (type:
|
17
|
+
subscribe(fn: (type: BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
18
18
|
};
|
19
19
|
setThemeStore: {
|
20
20
|
subscribe(fn: (themeStoreInstance: {
|
@@ -45,11 +45,11 @@ export declare const useSpacingBlueprintStore: () => {
|
|
45
45
|
};
|
46
46
|
get: {
|
47
47
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
48
|
-
blueprint<TType extends import("@omnia/fx-models").
|
49
|
-
typography(): import("@omnia/fx-models").
|
50
|
-
spacing():
|
51
|
-
chrome(): import("@omnia/fx-models").
|
52
|
-
component(): import("@omnia/fx-models").
|
48
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
49
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
50
|
+
spacing(): SpacingBlueprints;
|
51
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
52
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
53
53
|
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;
|
54
54
|
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;
|
55
55
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -62,7 +62,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
62
62
|
};
|
63
63
|
onDispatched: {
|
64
64
|
setBlueprint: {
|
65
|
-
subscribe(fn: (result: void, type:
|
65
|
+
subscribe(fn: (result: void, type: BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
66
66
|
};
|
67
67
|
setThemeStore: {
|
68
68
|
subscribe(fn: (result: void, themeStoreInstance: {
|
@@ -93,11 +93,11 @@ export declare const useSpacingBlueprintStore: () => {
|
|
93
93
|
};
|
94
94
|
get: {
|
95
95
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
96
|
-
blueprint<TType extends import("@omnia/fx-models").
|
97
|
-
typography(): import("@omnia/fx-models").
|
98
|
-
spacing():
|
99
|
-
chrome(): import("@omnia/fx-models").
|
100
|
-
component(): import("@omnia/fx-models").
|
96
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
97
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
98
|
+
spacing(): SpacingBlueprints;
|
99
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
100
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
101
101
|
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;
|
102
102
|
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;
|
103
103
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -110,7 +110,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
110
110
|
};
|
111
111
|
onFailure: {
|
112
112
|
setBlueprint: {
|
113
|
-
subscribe(fn: (failureReason: any, type:
|
113
|
+
subscribe(fn: (failureReason: any, type: BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
114
114
|
};
|
115
115
|
setThemeStore: {
|
116
116
|
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
@@ -141,11 +141,11 @@ export declare const useSpacingBlueprintStore: () => {
|
|
141
141
|
};
|
142
142
|
get: {
|
143
143
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
144
|
-
blueprint<TType extends import("@omnia/fx-models").
|
145
|
-
typography(): import("@omnia/fx-models").
|
146
|
-
spacing():
|
147
|
-
chrome(): import("@omnia/fx-models").
|
148
|
-
component(): import("@omnia/fx-models").
|
144
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
145
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
146
|
+
spacing(): SpacingBlueprints;
|
147
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
148
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
149
149
|
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;
|
150
150
|
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;
|
151
151
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -157,7 +157,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
157
157
|
};
|
158
158
|
};
|
159
159
|
} & {
|
160
|
-
setBlueprint(type:
|
160
|
+
setBlueprint(type: BlueprintVariant): void;
|
161
161
|
setThemeStore(themeStoreInstance: ReturnType<typeof useThemeStoreV2>): void;
|
162
162
|
};
|
163
163
|
get: {
|
@@ -385,7 +385,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
385
385
|
};
|
386
386
|
blueprints: {
|
387
387
|
type: import("@omnia/fx-models").BlueprintType;
|
388
|
-
name
|
388
|
+
name?: string;
|
389
389
|
}[];
|
390
390
|
};
|
391
391
|
};
|
@@ -418,11 +418,11 @@ export declare const useSpacingBlueprintStore: () => {
|
|
418
418
|
};
|
419
419
|
get: {
|
420
420
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
421
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
422
|
-
typography: () => import("@omnia/fx-models").
|
423
|
-
spacing: () =>
|
424
|
-
chrome: () => import("@omnia/fx-models").
|
425
|
-
component: () => import("@omnia/fx-models").
|
421
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
422
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
423
|
+
spacing: () => SpacingBlueprints;
|
424
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
425
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
426
426
|
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;
|
427
427
|
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;
|
428
428
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -431,7 +431,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
431
431
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
432
432
|
};
|
433
433
|
};
|
434
|
-
readonly blueprint: import("@omnia/fx-models").
|
434
|
+
readonly blueprint: import("@omnia/fx-models").SpacingBlueprint;
|
435
435
|
};
|
436
436
|
deactivated(): void;
|
437
437
|
};
|
@@ -28,11 +28,11 @@ export declare const useThemeContextStore: () => {
|
|
28
28
|
};
|
29
29
|
get: {
|
30
30
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
31
|
-
blueprint<TType extends import("@omnia/fx-models").
|
32
|
-
typography(): import("@omnia/fx-models").
|
33
|
-
spacing(): import("@omnia/fx-models").
|
34
|
-
chrome(): import("@omnia/fx-models").
|
35
|
-
component(): import("@omnia/fx-models").
|
31
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
32
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
33
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
34
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
35
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
36
36
|
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;
|
37
37
|
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;
|
38
38
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -69,11 +69,11 @@ export declare const useThemeContextStore: () => {
|
|
69
69
|
};
|
70
70
|
get: {
|
71
71
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
72
|
-
blueprint<TType extends import("@omnia/fx-models").
|
73
|
-
typography(): import("@omnia/fx-models").
|
74
|
-
spacing(): import("@omnia/fx-models").
|
75
|
-
chrome(): import("@omnia/fx-models").
|
76
|
-
component(): import("@omnia/fx-models").
|
72
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
73
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
74
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
75
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
76
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
77
77
|
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;
|
78
78
|
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;
|
79
79
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -110,11 +110,11 @@ export declare const useThemeContextStore: () => {
|
|
110
110
|
};
|
111
111
|
get: {
|
112
112
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
113
|
-
blueprint<TType extends import("@omnia/fx-models").
|
114
|
-
typography(): import("@omnia/fx-models").
|
115
|
-
spacing(): import("@omnia/fx-models").
|
116
|
-
chrome(): import("@omnia/fx-models").
|
117
|
-
component(): import("@omnia/fx-models").
|
113
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
114
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
115
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
116
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
117
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
118
118
|
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;
|
119
119
|
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;
|
120
120
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -153,11 +153,11 @@ export declare const useThemeContextStore: () => {
|
|
153
153
|
};
|
154
154
|
get: {
|
155
155
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
156
|
-
blueprint<TType extends import("@omnia/fx-models").
|
157
|
-
typography(): import("@omnia/fx-models").
|
158
|
-
spacing(): import("@omnia/fx-models").
|
159
|
-
chrome(): import("@omnia/fx-models").
|
160
|
-
component(): import("@omnia/fx-models").
|
156
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
157
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
158
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
159
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
160
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
161
161
|
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;
|
162
162
|
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;
|
163
163
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -194,11 +194,11 @@ export declare const useThemeContextStore: () => {
|
|
194
194
|
};
|
195
195
|
get: {
|
196
196
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
197
|
-
blueprint<TType extends import("@omnia/fx-models").
|
198
|
-
typography(): import("@omnia/fx-models").
|
199
|
-
spacing(): import("@omnia/fx-models").
|
200
|
-
chrome(): import("@omnia/fx-models").
|
201
|
-
component(): import("@omnia/fx-models").
|
197
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
198
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
199
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
200
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
201
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
202
202
|
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;
|
203
203
|
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;
|
204
204
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -235,11 +235,11 @@ export declare const useThemeContextStore: () => {
|
|
235
235
|
};
|
236
236
|
get: {
|
237
237
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
238
|
-
blueprint<TType extends import("@omnia/fx-models").
|
239
|
-
typography(): import("@omnia/fx-models").
|
240
|
-
spacing(): import("@omnia/fx-models").
|
241
|
-
chrome(): import("@omnia/fx-models").
|
242
|
-
component(): import("@omnia/fx-models").
|
238
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
239
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
240
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
241
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
242
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
243
243
|
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;
|
244
244
|
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;
|
245
245
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -278,11 +278,11 @@ export declare const useThemeContextStore: () => {
|
|
278
278
|
};
|
279
279
|
get: {
|
280
280
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
281
|
-
blueprint<TType extends import("@omnia/fx-models").
|
282
|
-
typography(): import("@omnia/fx-models").
|
283
|
-
spacing(): import("@omnia/fx-models").
|
284
|
-
chrome(): import("@omnia/fx-models").
|
285
|
-
component(): import("@omnia/fx-models").
|
281
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
282
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
283
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
284
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
285
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
286
286
|
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;
|
287
287
|
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;
|
288
288
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -319,11 +319,11 @@ export declare const useThemeContextStore: () => {
|
|
319
319
|
};
|
320
320
|
get: {
|
321
321
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
322
|
-
blueprint<TType extends import("@omnia/fx-models").
|
323
|
-
typography(): import("@omnia/fx-models").
|
324
|
-
spacing(): import("@omnia/fx-models").
|
325
|
-
chrome(): import("@omnia/fx-models").
|
326
|
-
component(): import("@omnia/fx-models").
|
322
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
323
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
324
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
325
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
326
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
327
327
|
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;
|
328
328
|
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;
|
329
329
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -360,11 +360,11 @@ export declare const useThemeContextStore: () => {
|
|
360
360
|
};
|
361
361
|
get: {
|
362
362
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
363
|
-
blueprint<TType extends import("@omnia/fx-models").
|
364
|
-
typography(): import("@omnia/fx-models").
|
365
|
-
spacing(): import("@omnia/fx-models").
|
366
|
-
chrome(): import("@omnia/fx-models").
|
367
|
-
component(): import("@omnia/fx-models").
|
363
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
364
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
365
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
366
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
367
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
368
368
|
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;
|
369
369
|
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;
|
370
370
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|