@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,8 +1,8 @@
|
|
1
|
-
import {
|
1
|
+
import { ChromeBlueprint, SpacingDefinition, Spacing, SpacingValue, setColorOpacity } from "@omnia/fx-models";
|
2
2
|
import { useColorSchemaStore, useSpacingBlueprintStore } from "@omnia/fx/ux";
|
3
3
|
export declare function useStyling(): {
|
4
|
-
spacing: (spacing: import("
|
5
|
-
spacingStylex: (spacing: import("
|
4
|
+
spacing: (spacing: import("./styles").NumericalSpacing, type: import("./styles").SpacingTypes) => string;
|
5
|
+
spacingStylex: (spacing: import("./styles").NumericalSpacing, type: import("./styles").SpacingTypes) => Readonly<{
|
6
6
|
className?: string;
|
7
7
|
style?: Readonly<{
|
8
8
|
[$$Key$$: string]: string | number;
|
@@ -38,11 +38,12 @@ export declare function useThemeStyling(): {
|
|
38
38
|
};
|
39
39
|
selectedTableRowStyling: typeof import("./styles").getSelectedTableRowStyling;
|
40
40
|
colorStyling: (color: string, opacity?: number) => import("@omnia/fx-models").ColorStyles;
|
41
|
+
hoverStyling: typeof import("./styles").getHoverStyling;
|
41
42
|
scrollStyling: typeof import("./styles").getScrollStyling;
|
42
43
|
};
|
43
44
|
typography: {
|
44
|
-
valueStyling: (value: import("@omnia/fx-models").TypographyValue, blueprint: import("@omnia/fx-models").
|
45
|
-
typeStyling: (typographyType: import("@omnia/fx-models").TypographyTypes, size: "xs" | "s" | "m" | "l" | "xl", blueprint: import("@omnia/fx-models").
|
45
|
+
valueStyling: (value: import("@omnia/fx-models").TypographyValue, blueprint: import("@omnia/fx-models").TypographyBlueprint) => string;
|
46
|
+
typeStyling: (typographyType: import("@omnia/fx-models").TypographyTypes, size: "xs" | "s" | "m" | "l" | "xl", blueprint: import("@omnia/fx-models").TypographyBlueprint) => {
|
46
47
|
baseStyles: {
|
47
48
|
fontFamily: string;
|
48
49
|
fontSize: string;
|
@@ -58,19 +59,19 @@ export declare function useThemeStyling(): {
|
|
58
59
|
};
|
59
60
|
styling: (blueprints: {
|
60
61
|
state: {
|
61
|
-
blueprint: import("@omnia/fx-models").
|
62
|
-
blueprintType: import("@omnia/fx-models").
|
62
|
+
blueprint: import("@omnia/fx-models").TypographyBlueprint;
|
63
|
+
blueprintType: import("@omnia/fx-models").BlueprintVariant;
|
63
64
|
id: import("@omnia/fx-models").GuidValue;
|
64
65
|
};
|
65
66
|
events: {
|
66
|
-
onMutatedBlueprint: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").
|
67
|
-
onMutatedBlueprintType: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").
|
67
|
+
onMutatedBlueprint: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").TypographyBlueprint>;
|
68
|
+
onMutatedBlueprintType: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").BlueprintVariant>;
|
68
69
|
onMutatedId: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
69
70
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
70
71
|
actions: {
|
71
72
|
onDispatching: {
|
72
73
|
setBlueprint: {
|
73
|
-
subscribe(fn: (type: import("@omnia/fx-models").
|
74
|
+
subscribe(fn: (type: import("@omnia/fx-models").BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
74
75
|
};
|
75
76
|
setThemeStore: {
|
76
77
|
subscribe(fn: (themeStoreInstance: {
|
@@ -101,11 +102,11 @@ export declare function useThemeStyling(): {
|
|
101
102
|
};
|
102
103
|
get: {
|
103
104
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
104
|
-
blueprint<TType extends import("@omnia/fx-models").
|
105
|
-
typography(): import("@omnia/fx-models").
|
106
|
-
spacing(): import("@omnia/fx-models").
|
107
|
-
chrome(): import("@omnia/fx-models").
|
108
|
-
component(): import("@omnia/fx-models").
|
105
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
106
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
107
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
108
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
109
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
109
110
|
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;
|
110
111
|
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;
|
111
112
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -118,7 +119,7 @@ export declare function useThemeStyling(): {
|
|
118
119
|
};
|
119
120
|
onDispatched: {
|
120
121
|
setBlueprint: {
|
121
|
-
subscribe(fn: (result: void, type: import("@omnia/fx-models").
|
122
|
+
subscribe(fn: (result: void, type: import("@omnia/fx-models").BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
122
123
|
};
|
123
124
|
setThemeStore: {
|
124
125
|
subscribe(fn: (result: void, themeStoreInstance: {
|
@@ -149,11 +150,11 @@ export declare function useThemeStyling(): {
|
|
149
150
|
};
|
150
151
|
get: {
|
151
152
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
152
|
-
blueprint<TType extends import("@omnia/fx-models").
|
153
|
-
typography(): import("@omnia/fx-models").
|
154
|
-
spacing(): import("@omnia/fx-models").
|
155
|
-
chrome(): import("@omnia/fx-models").
|
156
|
-
component(): import("@omnia/fx-models").
|
153
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
154
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
155
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
156
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
157
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
157
158
|
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;
|
158
159
|
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;
|
159
160
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -166,7 +167,7 @@ export declare function useThemeStyling(): {
|
|
166
167
|
};
|
167
168
|
onFailure: {
|
168
169
|
setBlueprint: {
|
169
|
-
subscribe(fn: (failureReason: any, type: import("@omnia/fx-models").
|
170
|
+
subscribe(fn: (failureReason: any, type: import("@omnia/fx-models").BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
170
171
|
};
|
171
172
|
setThemeStore: {
|
172
173
|
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
@@ -197,11 +198,11 @@ export declare function useThemeStyling(): {
|
|
197
198
|
};
|
198
199
|
get: {
|
199
200
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
200
|
-
blueprint<TType extends import("@omnia/fx-models").
|
201
|
-
typography(): import("@omnia/fx-models").
|
202
|
-
spacing(): import("@omnia/fx-models").
|
203
|
-
chrome(): import("@omnia/fx-models").
|
204
|
-
component(): import("@omnia/fx-models").
|
201
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
202
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
203
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
204
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
205
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
205
206
|
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;
|
206
207
|
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;
|
207
208
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -213,7 +214,7 @@ export declare function useThemeStyling(): {
|
|
213
214
|
};
|
214
215
|
};
|
215
216
|
} & {
|
216
|
-
setBlueprint(type: import("@omnia/fx-models").
|
217
|
+
setBlueprint(type: import("@omnia/fx-models").BlueprintVariant): void;
|
217
218
|
setThemeStore(themeStoreInstance: {
|
218
219
|
state: {
|
219
220
|
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
@@ -242,11 +243,11 @@ export declare function useThemeStyling(): {
|
|
242
243
|
};
|
243
244
|
get: {
|
244
245
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
245
|
-
blueprint<TType extends import("@omnia/fx-models").
|
246
|
-
typography(): import("@omnia/fx-models").
|
247
|
-
spacing(): import("@omnia/fx-models").
|
248
|
-
chrome(): import("@omnia/fx-models").
|
249
|
-
component(): import("@omnia/fx-models").
|
246
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
247
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
248
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
249
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
250
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
250
251
|
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;
|
251
252
|
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;
|
252
253
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -481,7 +482,7 @@ export declare function useThemeStyling(): {
|
|
481
482
|
};
|
482
483
|
blueprints: {
|
483
484
|
type: import("@omnia/fx-models").BlueprintType;
|
484
|
-
name
|
485
|
+
name?: string;
|
485
486
|
}[];
|
486
487
|
};
|
487
488
|
};
|
@@ -514,11 +515,11 @@ export declare function useThemeStyling(): {
|
|
514
515
|
};
|
515
516
|
get: {
|
516
517
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
517
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
518
|
-
typography: () => import("@omnia/fx-models").
|
519
|
-
spacing: () => import("@omnia/fx-models").
|
520
|
-
chrome: () => import("@omnia/fx-models").
|
521
|
-
component: () => import("@omnia/fx-models").
|
518
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
519
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
520
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
521
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
522
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
522
523
|
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;
|
523
524
|
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;
|
524
525
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -527,14 +528,14 @@ export declare function useThemeStyling(): {
|
|
527
528
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
528
529
|
};
|
529
530
|
};
|
530
|
-
readonly blueprint: import("@omnia/fx-models").
|
531
|
-
typography(typographyType: "title" | "text" | "navigation" | import("@omnia/fx-models").TypographyTypes, size: "xs" | "s" | "m" | "l" | "xl" | import("@omnia/fx-models").TypographySizes): import("@omnia/fx-models").
|
531
|
+
readonly blueprint: import("@omnia/fx-models").TypographyBlueprint;
|
532
|
+
typography(typographyType: "title" | "text" | "navigation" | import("@omnia/fx-models").TypographyTypes, size: "xs" | "s" | "m" | "l" | "xl" | import("@omnia/fx-models").TypographySizes): import("@omnia/fx-models").TypographyDefinition;
|
532
533
|
};
|
533
534
|
deactivated(): void;
|
534
535
|
}) => import("./styles").TypographyTypesResult;
|
535
536
|
};
|
536
537
|
chrome: {
|
537
|
-
chromeStylex: (blueprint:
|
538
|
+
chromeStylex: (blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingDefinition: SpacingDefinition) => Readonly<{
|
538
539
|
className?: string;
|
539
540
|
style?: Readonly<{
|
540
541
|
[$$Key$$: string]: string | number;
|
@@ -545,7 +546,7 @@ export declare function useThemeStyling(): {
|
|
545
546
|
}>;
|
546
547
|
classname: string;
|
547
548
|
};
|
548
|
-
chromeStyling: (blueprint:
|
549
|
+
chromeStyling: (blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingDefinition: SpacingDefinition) => any[];
|
549
550
|
};
|
550
551
|
blueprints: {
|
551
552
|
button: (bluePrint: import("@omnia/fx-models").ButtonBlueprint, colors: {
|
@@ -609,11 +610,11 @@ export declare function useThemeStyling(): {
|
|
609
610
|
};
|
610
611
|
get: {
|
611
612
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
612
|
-
blueprint<TType extends import("@omnia/fx-models").
|
613
|
-
typography(): import("@omnia/fx-models").
|
614
|
-
spacing(): import("@omnia/fx-models").
|
615
|
-
chrome(): import("@omnia/fx-models").
|
616
|
-
component(): import("@omnia/fx-models").
|
613
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
614
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
615
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
616
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
617
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
617
618
|
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;
|
618
619
|
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;
|
619
620
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -663,11 +664,11 @@ export declare function useThemeStyling(): {
|
|
663
664
|
};
|
664
665
|
get: {
|
665
666
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
666
|
-
blueprint<TType extends import("@omnia/fx-models").
|
667
|
-
typography(): import("@omnia/fx-models").
|
668
|
-
spacing(): import("@omnia/fx-models").
|
669
|
-
chrome(): import("@omnia/fx-models").
|
670
|
-
component(): import("@omnia/fx-models").
|
667
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
668
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
669
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
670
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
671
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
671
672
|
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
672
673
|
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
673
674
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -717,11 +718,11 @@ export declare function useThemeStyling(): {
|
|
717
718
|
};
|
718
719
|
get: {
|
719
720
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
720
|
-
blueprint<TType extends import("@omnia/fx-models").
|
721
|
-
typography(): import("@omnia/fx-models").
|
722
|
-
spacing(): import("@omnia/fx-models").
|
723
|
-
chrome(): import("@omnia/fx-models").
|
724
|
-
component(): import("@omnia/fx-models").
|
721
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
722
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
723
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
724
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
725
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
725
726
|
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
726
727
|
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
727
728
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -764,11 +765,11 @@ export declare function useThemeStyling(): {
|
|
764
765
|
};
|
765
766
|
get: {
|
766
767
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
767
|
-
blueprint<TType extends import("@omnia/fx-models").
|
768
|
-
typography(): import("@omnia/fx-models").
|
769
|
-
spacing(): import("@omnia/fx-models").
|
770
|
-
chrome(): import("@omnia/fx-models").
|
771
|
-
component(): import("@omnia/fx-models").
|
768
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
769
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
770
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
771
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
772
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
772
773
|
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;
|
773
774
|
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;
|
774
775
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -1003,7 +1004,7 @@ export declare function useThemeStyling(): {
|
|
1003
1004
|
};
|
1004
1005
|
blueprints: {
|
1005
1006
|
type: import("@omnia/fx-models").BlueprintType;
|
1006
|
-
name
|
1007
|
+
name?: string;
|
1007
1008
|
}[];
|
1008
1009
|
};
|
1009
1010
|
};
|
@@ -1036,11 +1037,11 @@ export declare function useThemeStyling(): {
|
|
1036
1037
|
};
|
1037
1038
|
get: {
|
1038
1039
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
1039
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
1040
|
-
typography: () => import("@omnia/fx-models").
|
1041
|
-
spacing: () => import("@omnia/fx-models").
|
1042
|
-
chrome: () => import("@omnia/fx-models").
|
1043
|
-
component: () => import("@omnia/fx-models").
|
1040
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
1041
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
1042
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
1043
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
1044
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
1044
1045
|
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;
|
1045
1046
|
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;
|
1046
1047
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -1126,11 +1127,11 @@ export declare function useThemeStyling(): {
|
|
1126
1127
|
};
|
1127
1128
|
get: {
|
1128
1129
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
1129
|
-
blueprint<TType extends import("@omnia/fx-models").
|
1130
|
-
typography(): import("@omnia/fx-models").
|
1131
|
-
spacing(): import("@omnia/fx-models").
|
1132
|
-
chrome(): import("@omnia/fx-models").
|
1133
|
-
component(): import("@omnia/fx-models").
|
1130
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
1131
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
1132
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
1133
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
1134
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
1134
1135
|
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;
|
1135
1136
|
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;
|
1136
1137
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -1180,11 +1181,11 @@ export declare function useThemeStyling(): {
|
|
1180
1181
|
};
|
1181
1182
|
get: {
|
1182
1183
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
1183
|
-
blueprint<TType extends import("@omnia/fx-models").
|
1184
|
-
typography(): import("@omnia/fx-models").
|
1185
|
-
spacing(): import("@omnia/fx-models").
|
1186
|
-
chrome(): import("@omnia/fx-models").
|
1187
|
-
component(): import("@omnia/fx-models").
|
1184
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
1185
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
1186
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
1187
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
1188
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
1188
1189
|
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;
|
1189
1190
|
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;
|
1190
1191
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -1234,11 +1235,11 @@ export declare function useThemeStyling(): {
|
|
1234
1235
|
};
|
1235
1236
|
get: {
|
1236
1237
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
1237
|
-
blueprint<TType extends import("@omnia/fx-models").
|
1238
|
-
typography(): import("@omnia/fx-models").
|
1239
|
-
spacing(): import("@omnia/fx-models").
|
1240
|
-
chrome(): import("@omnia/fx-models").
|
1241
|
-
component(): import("@omnia/fx-models").
|
1238
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
1239
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
1240
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
1241
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
1242
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
1242
1243
|
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;
|
1243
1244
|
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;
|
1244
1245
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -1281,11 +1282,11 @@ export declare function useThemeStyling(): {
|
|
1281
1282
|
};
|
1282
1283
|
get: {
|
1283
1284
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
1284
|
-
blueprint<TType extends import("@omnia/fx-models").
|
1285
|
-
typography(): import("@omnia/fx-models").
|
1286
|
-
spacing(): import("@omnia/fx-models").
|
1287
|
-
chrome(): import("@omnia/fx-models").
|
1288
|
-
component(): import("@omnia/fx-models").
|
1285
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
1286
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
1287
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
1288
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
1289
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
1289
1290
|
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;
|
1290
1291
|
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;
|
1291
1292
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -1520,7 +1521,7 @@ export declare function useThemeStyling(): {
|
|
1520
1521
|
};
|
1521
1522
|
blueprints: {
|
1522
1523
|
type: import("@omnia/fx-models").BlueprintType;
|
1523
|
-
name
|
1524
|
+
name?: string;
|
1524
1525
|
}[];
|
1525
1526
|
};
|
1526
1527
|
};
|
@@ -1553,11 +1554,11 @@ export declare function useThemeStyling(): {
|
|
1553
1554
|
};
|
1554
1555
|
get: {
|
1555
1556
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
1556
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
1557
|
-
typography: () => import("@omnia/fx-models").
|
1558
|
-
spacing: () => import("@omnia/fx-models").
|
1559
|
-
chrome: () => import("@omnia/fx-models").
|
1560
|
-
component: () => import("@omnia/fx-models").
|
1557
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
1558
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
1559
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
1560
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
1561
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
1561
1562
|
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;
|
1562
1563
|
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;
|
1563
1564
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -1643,11 +1644,11 @@ export declare function useThemeStyling(): {
|
|
1643
1644
|
};
|
1644
1645
|
get: {
|
1645
1646
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
1646
|
-
blueprint<TType extends import("@omnia/fx-models").
|
1647
|
-
typography(): import("@omnia/fx-models").
|
1648
|
-
spacing(): import("@omnia/fx-models").
|
1649
|
-
chrome(): import("@omnia/fx-models").
|
1650
|
-
component(): import("@omnia/fx-models").
|
1647
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
1648
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
1649
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
1650
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
1651
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
1651
1652
|
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;
|
1652
1653
|
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;
|
1653
1654
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -1697,11 +1698,11 @@ export declare function useThemeStyling(): {
|
|
1697
1698
|
};
|
1698
1699
|
get: {
|
1699
1700
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
1700
|
-
blueprint<TType extends import("@omnia/fx-models").
|
1701
|
-
typography(): import("@omnia/fx-models").
|
1702
|
-
spacing(): import("@omnia/fx-models").
|
1703
|
-
chrome(): import("@omnia/fx-models").
|
1704
|
-
component(): import("@omnia/fx-models").
|
1701
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
1702
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
1703
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
1704
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
1705
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
1705
1706
|
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;
|
1706
1707
|
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;
|
1707
1708
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -1751,11 +1752,11 @@ export declare function useThemeStyling(): {
|
|
1751
1752
|
};
|
1752
1753
|
get: {
|
1753
1754
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
1754
|
-
blueprint<TType extends import("@omnia/fx-models").
|
1755
|
-
typography(): import("@omnia/fx-models").
|
1756
|
-
spacing(): import("@omnia/fx-models").
|
1757
|
-
chrome(): import("@omnia/fx-models").
|
1758
|
-
component(): import("@omnia/fx-models").
|
1755
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
1756
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
1757
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
1758
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
1759
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
1759
1760
|
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;
|
1760
1761
|
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;
|
1761
1762
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -1798,11 +1799,11 @@ export declare function useThemeStyling(): {
|
|
1798
1799
|
};
|
1799
1800
|
get: {
|
1800
1801
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
1801
|
-
blueprint<TType extends import("@omnia/fx-models").
|
1802
|
-
typography(): import("@omnia/fx-models").
|
1803
|
-
spacing(): import("@omnia/fx-models").
|
1804
|
-
chrome(): import("@omnia/fx-models").
|
1805
|
-
component(): import("@omnia/fx-models").
|
1802
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
1803
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
1804
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
1805
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
1806
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
1806
1807
|
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;
|
1807
1808
|
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;
|
1808
1809
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -2037,7 +2038,7 @@ export declare function useThemeStyling(): {
|
|
2037
2038
|
};
|
2038
2039
|
blueprints: {
|
2039
2040
|
type: import("@omnia/fx-models").BlueprintType;
|
2040
|
-
name
|
2041
|
+
name?: string;
|
2041
2042
|
}[];
|
2042
2043
|
};
|
2043
2044
|
};
|
@@ -2070,11 +2071,11 @@ export declare function useThemeStyling(): {
|
|
2070
2071
|
};
|
2071
2072
|
get: {
|
2072
2073
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
2073
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
2074
|
-
typography: () => import("@omnia/fx-models").
|
2075
|
-
spacing: () => import("@omnia/fx-models").
|
2076
|
-
chrome: () => import("@omnia/fx-models").
|
2077
|
-
component: () => import("@omnia/fx-models").
|
2074
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
2075
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
2076
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
2077
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
2078
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
2078
2079
|
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;
|
2079
2080
|
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;
|
2080
2081
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -2099,7 +2100,7 @@ export declare function useThemeStyling(): {
|
|
2099
2100
|
};
|
2100
2101
|
deactivated(): void;
|
2101
2102
|
}) => string;
|
2102
|
-
border: (definition: import("@omnia/fx-models").BorderStylingDefinition,
|
2103
|
+
border: (definition: import("@omnia/fx-models").BorderStylingDefinition, gradientFillFallbackColor?: string, colors?: {
|
2103
2104
|
state: {
|
2104
2105
|
base: import("@omnia/fx-models").ColorDefinition;
|
2105
2106
|
onBase: import("@omnia/fx-models").ColorDefinition;
|
@@ -2160,11 +2161,11 @@ export declare function useThemeStyling(): {
|
|
2160
2161
|
};
|
2161
2162
|
get: {
|
2162
2163
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2163
|
-
blueprint<TType extends import("@omnia/fx-models").
|
2164
|
-
typography(): import("@omnia/fx-models").
|
2165
|
-
spacing(): import("@omnia/fx-models").
|
2166
|
-
chrome(): import("@omnia/fx-models").
|
2167
|
-
component(): import("@omnia/fx-models").
|
2164
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
2165
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
2166
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
2167
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
2168
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
2168
2169
|
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;
|
2169
2170
|
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;
|
2170
2171
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -2214,11 +2215,11 @@ export declare function useThemeStyling(): {
|
|
2214
2215
|
};
|
2215
2216
|
get: {
|
2216
2217
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2217
|
-
blueprint<TType extends import("@omnia/fx-models").
|
2218
|
-
typography(): import("@omnia/fx-models").
|
2219
|
-
spacing(): import("@omnia/fx-models").
|
2220
|
-
chrome(): import("@omnia/fx-models").
|
2221
|
-
component(): import("@omnia/fx-models").
|
2218
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
2219
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
2220
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
2221
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
2222
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
2222
2223
|
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;
|
2223
2224
|
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;
|
2224
2225
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -2268,11 +2269,11 @@ export declare function useThemeStyling(): {
|
|
2268
2269
|
};
|
2269
2270
|
get: {
|
2270
2271
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2271
|
-
blueprint<TType extends import("@omnia/fx-models").
|
2272
|
-
typography(): import("@omnia/fx-models").
|
2273
|
-
spacing(): import("@omnia/fx-models").
|
2274
|
-
chrome(): import("@omnia/fx-models").
|
2275
|
-
component(): import("@omnia/fx-models").
|
2272
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
2273
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
2274
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
2275
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
2276
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
2276
2277
|
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;
|
2277
2278
|
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;
|
2278
2279
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -2315,11 +2316,11 @@ export declare function useThemeStyling(): {
|
|
2315
2316
|
};
|
2316
2317
|
get: {
|
2317
2318
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2318
|
-
blueprint<TType extends import("@omnia/fx-models").
|
2319
|
-
typography(): import("@omnia/fx-models").
|
2320
|
-
spacing(): import("@omnia/fx-models").
|
2321
|
-
chrome(): import("@omnia/fx-models").
|
2322
|
-
component(): import("@omnia/fx-models").
|
2319
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
2320
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
2321
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
2322
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
2323
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
2323
2324
|
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;
|
2324
2325
|
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;
|
2325
2326
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -2554,7 +2555,7 @@ export declare function useThemeStyling(): {
|
|
2554
2555
|
};
|
2555
2556
|
blueprints: {
|
2556
2557
|
type: import("@omnia/fx-models").BlueprintType;
|
2557
|
-
name
|
2558
|
+
name?: string;
|
2558
2559
|
}[];
|
2559
2560
|
};
|
2560
2561
|
};
|
@@ -2587,11 +2588,528 @@ export declare function useThemeStyling(): {
|
|
2587
2588
|
};
|
2588
2589
|
get: {
|
2589
2590
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
2590
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
2591
|
-
typography: () => import("@omnia/fx-models").
|
2592
|
-
spacing: () => import("@omnia/fx-models").
|
2593
|
-
chrome: () => import("@omnia/fx-models").
|
2594
|
-
component: () => import("@omnia/fx-models").
|
2591
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
2592
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
2593
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
2594
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
2595
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
2596
|
+
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;
|
2597
|
+
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;
|
2598
|
+
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
2599
|
+
complementaryColor: (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;
|
2600
|
+
complementaryColorDefinition: (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;
|
2601
|
+
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
2602
|
+
};
|
2603
|
+
};
|
2604
|
+
colorValue(color: import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue): string;
|
2605
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
2606
|
+
readonly theme: "light" | "dark";
|
2607
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
2608
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
2609
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
2610
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
2611
|
+
dynamic: (isContainer: boolean) => {
|
2612
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
2613
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
2614
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
2615
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
2616
|
+
};
|
2617
|
+
};
|
2618
|
+
deactivated(): void;
|
2619
|
+
}) => string;
|
2620
|
+
background: (definition: import("@omnia/fx-models").BackgroundDefinition, gradientFillFallbackColor?: string, colors?: {
|
2621
|
+
state: {
|
2622
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
2623
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
2624
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
2625
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
2626
|
+
isContainer: boolean;
|
2627
|
+
name: string;
|
2628
|
+
colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes;
|
2629
|
+
id: import("@omnia/fx-models").GuidValue;
|
2630
|
+
};
|
2631
|
+
events: {
|
2632
|
+
onMutatedBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
2633
|
+
onMutatedOnBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
2634
|
+
onMutatedContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
2635
|
+
onMutatedOnContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
2636
|
+
onMutatedIsContainer: import("../../..").MessageBusExposeOnlySubscription<boolean>;
|
2637
|
+
onMutatedName: import("../../..").MessageBusExposeOnlySubscription<string>;
|
2638
|
+
onMutatedColorSchemaType: import("../../..").MessageBusExposeOnlySubscription<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes>;
|
2639
|
+
onMutatedId: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
2640
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2641
|
+
actions: {
|
2642
|
+
onDispatching: {
|
2643
|
+
setColorSchema: {
|
2644
|
+
subscribe(fn: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2645
|
+
};
|
2646
|
+
setCustomColorSchema: {
|
2647
|
+
subscribe(fn: (colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2648
|
+
};
|
2649
|
+
setColor: {
|
2650
|
+
subscribe(fn: (colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2651
|
+
};
|
2652
|
+
setThemeStore: {
|
2653
|
+
subscribe(fn: (themeStoreInstance: {
|
2654
|
+
state: {
|
2655
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
2656
|
+
};
|
2657
|
+
events: {
|
2658
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
2659
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2660
|
+
actions: {
|
2661
|
+
onDispatching: {
|
2662
|
+
setTheme: {
|
2663
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2664
|
+
};
|
2665
|
+
};
|
2666
|
+
onDispatched: {
|
2667
|
+
setTheme: {
|
2668
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2669
|
+
};
|
2670
|
+
};
|
2671
|
+
onFailure: {
|
2672
|
+
setTheme: {
|
2673
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2674
|
+
};
|
2675
|
+
};
|
2676
|
+
} & {
|
2677
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
2678
|
+
};
|
2679
|
+
get: {
|
2680
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2681
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
2682
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
2683
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
2684
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
2685
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
2686
|
+
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;
|
2687
|
+
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;
|
2688
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
2689
|
+
complementaryColor(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;
|
2690
|
+
complementaryColorDefinition(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;
|
2691
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
2692
|
+
};
|
2693
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2694
|
+
};
|
2695
|
+
};
|
2696
|
+
onDispatched: {
|
2697
|
+
setColorSchema: {
|
2698
|
+
subscribe(fn: (result: void, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2699
|
+
};
|
2700
|
+
setCustomColorSchema: {
|
2701
|
+
subscribe(fn: (result: void, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2702
|
+
};
|
2703
|
+
setColor: {
|
2704
|
+
subscribe(fn: (result: void, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2705
|
+
};
|
2706
|
+
setThemeStore: {
|
2707
|
+
subscribe(fn: (result: void, themeStoreInstance: {
|
2708
|
+
state: {
|
2709
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
2710
|
+
};
|
2711
|
+
events: {
|
2712
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
2713
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2714
|
+
actions: {
|
2715
|
+
onDispatching: {
|
2716
|
+
setTheme: {
|
2717
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2718
|
+
};
|
2719
|
+
};
|
2720
|
+
onDispatched: {
|
2721
|
+
setTheme: {
|
2722
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2723
|
+
};
|
2724
|
+
};
|
2725
|
+
onFailure: {
|
2726
|
+
setTheme: {
|
2727
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2728
|
+
};
|
2729
|
+
};
|
2730
|
+
} & {
|
2731
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
2732
|
+
};
|
2733
|
+
get: {
|
2734
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2735
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
2736
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
2737
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
2738
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
2739
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
2740
|
+
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;
|
2741
|
+
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;
|
2742
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
2743
|
+
complementaryColor(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;
|
2744
|
+
complementaryColorDefinition(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;
|
2745
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
2746
|
+
};
|
2747
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2748
|
+
};
|
2749
|
+
};
|
2750
|
+
onFailure: {
|
2751
|
+
setColorSchema: {
|
2752
|
+
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2753
|
+
};
|
2754
|
+
setCustomColorSchema: {
|
2755
|
+
subscribe(fn: (failureReason: any, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2756
|
+
};
|
2757
|
+
setColor: {
|
2758
|
+
subscribe(fn: (failureReason: any, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2759
|
+
};
|
2760
|
+
setThemeStore: {
|
2761
|
+
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
2762
|
+
state: {
|
2763
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
2764
|
+
};
|
2765
|
+
events: {
|
2766
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
2767
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2768
|
+
actions: {
|
2769
|
+
onDispatching: {
|
2770
|
+
setTheme: {
|
2771
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2772
|
+
};
|
2773
|
+
};
|
2774
|
+
onDispatched: {
|
2775
|
+
setTheme: {
|
2776
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2777
|
+
};
|
2778
|
+
};
|
2779
|
+
onFailure: {
|
2780
|
+
setTheme: {
|
2781
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2782
|
+
};
|
2783
|
+
};
|
2784
|
+
} & {
|
2785
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
2786
|
+
};
|
2787
|
+
get: {
|
2788
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2789
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
2790
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
2791
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
2792
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
2793
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
2794
|
+
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;
|
2795
|
+
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;
|
2796
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
2797
|
+
complementaryColor(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;
|
2798
|
+
complementaryColorDefinition(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;
|
2799
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
2800
|
+
};
|
2801
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2802
|
+
};
|
2803
|
+
};
|
2804
|
+
} & {
|
2805
|
+
setColorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean): void;
|
2806
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
2807
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
2808
|
+
setThemeStore(themeStoreInstance: {
|
2809
|
+
state: {
|
2810
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
2811
|
+
};
|
2812
|
+
events: {
|
2813
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
2814
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2815
|
+
actions: {
|
2816
|
+
onDispatching: {
|
2817
|
+
setTheme: {
|
2818
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2819
|
+
};
|
2820
|
+
};
|
2821
|
+
onDispatched: {
|
2822
|
+
setTheme: {
|
2823
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2824
|
+
};
|
2825
|
+
};
|
2826
|
+
onFailure: {
|
2827
|
+
setTheme: {
|
2828
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2829
|
+
};
|
2830
|
+
};
|
2831
|
+
} & {
|
2832
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
2833
|
+
};
|
2834
|
+
get: {
|
2835
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2836
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
2837
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
2838
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
2839
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
2840
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
2841
|
+
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;
|
2842
|
+
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;
|
2843
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
2844
|
+
complementaryColor(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;
|
2845
|
+
complementaryColorDefinition(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;
|
2846
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
2847
|
+
};
|
2848
|
+
}): void;
|
2849
|
+
};
|
2850
|
+
get: {
|
2851
|
+
readonly themeStore: {
|
2852
|
+
state: {
|
2853
|
+
currentTheme: {
|
2854
|
+
id: {
|
2855
|
+
equals: {
|
2856
|
+
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
2857
|
+
};
|
2858
|
+
toString: () => string;
|
2859
|
+
toJSON: () => string;
|
2860
|
+
valueOf: () => string;
|
2861
|
+
};
|
2862
|
+
name: string;
|
2863
|
+
dark: boolean;
|
2864
|
+
colors: {
|
2865
|
+
primary: {
|
2866
|
+
name: string;
|
2867
|
+
base: {
|
2868
|
+
dark: boolean;
|
2869
|
+
color: string;
|
2870
|
+
colorToned: string;
|
2871
|
+
};
|
2872
|
+
onBase: {
|
2873
|
+
dark: boolean;
|
2874
|
+
color: string;
|
2875
|
+
colorToned: string;
|
2876
|
+
};
|
2877
|
+
container: {
|
2878
|
+
dark: boolean;
|
2879
|
+
color: string;
|
2880
|
+
colorToned: string;
|
2881
|
+
};
|
2882
|
+
onContainer: {
|
2883
|
+
dark: boolean;
|
2884
|
+
color: string;
|
2885
|
+
colorToned: string;
|
2886
|
+
};
|
2887
|
+
};
|
2888
|
+
secondary: {
|
2889
|
+
name: string;
|
2890
|
+
base: {
|
2891
|
+
dark: boolean;
|
2892
|
+
color: string;
|
2893
|
+
colorToned: string;
|
2894
|
+
};
|
2895
|
+
onBase: {
|
2896
|
+
dark: boolean;
|
2897
|
+
color: string;
|
2898
|
+
colorToned: string;
|
2899
|
+
};
|
2900
|
+
container: {
|
2901
|
+
dark: boolean;
|
2902
|
+
color: string;
|
2903
|
+
colorToned: string;
|
2904
|
+
};
|
2905
|
+
onContainer: {
|
2906
|
+
dark: boolean;
|
2907
|
+
color: string;
|
2908
|
+
colorToned: string;
|
2909
|
+
};
|
2910
|
+
};
|
2911
|
+
accent1: {
|
2912
|
+
name: string;
|
2913
|
+
base: {
|
2914
|
+
dark: boolean;
|
2915
|
+
color: string;
|
2916
|
+
colorToned: string;
|
2917
|
+
};
|
2918
|
+
onBase: {
|
2919
|
+
dark: boolean;
|
2920
|
+
color: string;
|
2921
|
+
colorToned: string;
|
2922
|
+
};
|
2923
|
+
container: {
|
2924
|
+
dark: boolean;
|
2925
|
+
color: string;
|
2926
|
+
colorToned: string;
|
2927
|
+
};
|
2928
|
+
onContainer: {
|
2929
|
+
dark: boolean;
|
2930
|
+
color: string;
|
2931
|
+
colorToned: string;
|
2932
|
+
};
|
2933
|
+
};
|
2934
|
+
accent2: {
|
2935
|
+
name: string;
|
2936
|
+
base: {
|
2937
|
+
dark: boolean;
|
2938
|
+
color: string;
|
2939
|
+
colorToned: string;
|
2940
|
+
};
|
2941
|
+
onBase: {
|
2942
|
+
dark: boolean;
|
2943
|
+
color: string;
|
2944
|
+
colorToned: string;
|
2945
|
+
};
|
2946
|
+
container: {
|
2947
|
+
dark: boolean;
|
2948
|
+
color: string;
|
2949
|
+
colorToned: string;
|
2950
|
+
};
|
2951
|
+
onContainer: {
|
2952
|
+
dark: boolean;
|
2953
|
+
color: string;
|
2954
|
+
colorToned: string;
|
2955
|
+
};
|
2956
|
+
};
|
2957
|
+
accent3: {
|
2958
|
+
name: string;
|
2959
|
+
base: {
|
2960
|
+
dark: boolean;
|
2961
|
+
color: string;
|
2962
|
+
colorToned: string;
|
2963
|
+
};
|
2964
|
+
onBase: {
|
2965
|
+
dark: boolean;
|
2966
|
+
color: string;
|
2967
|
+
colorToned: string;
|
2968
|
+
};
|
2969
|
+
container: {
|
2970
|
+
dark: boolean;
|
2971
|
+
color: string;
|
2972
|
+
colorToned: string;
|
2973
|
+
};
|
2974
|
+
onContainer: {
|
2975
|
+
dark: boolean;
|
2976
|
+
color: string;
|
2977
|
+
colorToned: string;
|
2978
|
+
};
|
2979
|
+
};
|
2980
|
+
neutral: {
|
2981
|
+
name: string;
|
2982
|
+
base: {
|
2983
|
+
dark: boolean;
|
2984
|
+
color: string;
|
2985
|
+
colorToned: string;
|
2986
|
+
};
|
2987
|
+
onBase: {
|
2988
|
+
dark: boolean;
|
2989
|
+
color: string;
|
2990
|
+
colorToned: string;
|
2991
|
+
};
|
2992
|
+
container: {
|
2993
|
+
dark: boolean;
|
2994
|
+
color: string;
|
2995
|
+
colorToned: string;
|
2996
|
+
};
|
2997
|
+
onContainer: {
|
2998
|
+
dark: boolean;
|
2999
|
+
color: string;
|
3000
|
+
colorToned: string;
|
3001
|
+
};
|
3002
|
+
};
|
3003
|
+
background: {
|
3004
|
+
name: string;
|
3005
|
+
base: {
|
3006
|
+
dark: boolean;
|
3007
|
+
color: string;
|
3008
|
+
colorToned: string;
|
3009
|
+
};
|
3010
|
+
onBase: {
|
3011
|
+
dark: boolean;
|
3012
|
+
color: string;
|
3013
|
+
colorToned: string;
|
3014
|
+
};
|
3015
|
+
container: {
|
3016
|
+
dark: boolean;
|
3017
|
+
color: string;
|
3018
|
+
colorToned: string;
|
3019
|
+
};
|
3020
|
+
onContainer: {
|
3021
|
+
dark: boolean;
|
3022
|
+
color: string;
|
3023
|
+
colorToned: string;
|
3024
|
+
};
|
3025
|
+
};
|
3026
|
+
error: {
|
3027
|
+
name: string;
|
3028
|
+
base: {
|
3029
|
+
dark: boolean;
|
3030
|
+
color: string;
|
3031
|
+
colorToned: string;
|
3032
|
+
};
|
3033
|
+
onBase: {
|
3034
|
+
dark: boolean;
|
3035
|
+
color: string;
|
3036
|
+
colorToned: string;
|
3037
|
+
};
|
3038
|
+
container: {
|
3039
|
+
dark: boolean;
|
3040
|
+
color: string;
|
3041
|
+
colorToned: string;
|
3042
|
+
};
|
3043
|
+
onContainer: {
|
3044
|
+
dark: boolean;
|
3045
|
+
color: string;
|
3046
|
+
colorToned: string;
|
3047
|
+
};
|
3048
|
+
};
|
3049
|
+
info: {
|
3050
|
+
name: string;
|
3051
|
+
base: {
|
3052
|
+
dark: boolean;
|
3053
|
+
color: string;
|
3054
|
+
colorToned: string;
|
3055
|
+
};
|
3056
|
+
onBase: {
|
3057
|
+
dark: boolean;
|
3058
|
+
color: string;
|
3059
|
+
colorToned: string;
|
3060
|
+
};
|
3061
|
+
container: {
|
3062
|
+
dark: boolean;
|
3063
|
+
color: string;
|
3064
|
+
colorToned: string;
|
3065
|
+
};
|
3066
|
+
onContainer: {
|
3067
|
+
dark: boolean;
|
3068
|
+
color: string;
|
3069
|
+
colorToned: string;
|
3070
|
+
};
|
3071
|
+
};
|
3072
|
+
};
|
3073
|
+
blueprints: {
|
3074
|
+
type: import("@omnia/fx-models").BlueprintType;
|
3075
|
+
name?: string;
|
3076
|
+
}[];
|
3077
|
+
};
|
3078
|
+
};
|
3079
|
+
events: {
|
3080
|
+
[x: string]: {
|
3081
|
+
subscribe: (fn: (obj: any) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3082
|
+
publish: (msg: any) => void;
|
3083
|
+
};
|
3084
|
+
onMutatedCurrentTheme: {
|
3085
|
+
subscribe: (fn: (obj: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3086
|
+
};
|
3087
|
+
};
|
3088
|
+
actions: {
|
3089
|
+
onDispatching: {
|
3090
|
+
setTheme: {
|
3091
|
+
subscribe: (fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3092
|
+
};
|
3093
|
+
};
|
3094
|
+
onDispatched: {
|
3095
|
+
setTheme: {
|
3096
|
+
subscribe: (fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3097
|
+
};
|
3098
|
+
};
|
3099
|
+
onFailure: {
|
3100
|
+
setTheme: {
|
3101
|
+
subscribe: (fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3102
|
+
};
|
3103
|
+
};
|
3104
|
+
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
3105
|
+
};
|
3106
|
+
get: {
|
3107
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
3108
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
3109
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
3110
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
3111
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
3112
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
2595
3113
|
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;
|
2596
3114
|
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;
|
2597
3115
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -2677,11 +3195,1003 @@ export declare function useThemeStyling(): {
|
|
2677
3195
|
};
|
2678
3196
|
get: {
|
2679
3197
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2680
|
-
blueprint<TType extends import("@omnia/fx-models").
|
2681
|
-
typography(): import("@omnia/fx-models").
|
2682
|
-
spacing(): import("@omnia/fx-models").
|
2683
|
-
chrome(): import("@omnia/fx-models").
|
2684
|
-
component(): import("@omnia/fx-models").
|
3198
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
3199
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
3200
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
3201
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
3202
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
3203
|
+
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;
|
3204
|
+
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;
|
3205
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
3206
|
+
complementaryColor(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;
|
3207
|
+
complementaryColorDefinition(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;
|
3208
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
3209
|
+
};
|
3210
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3211
|
+
};
|
3212
|
+
};
|
3213
|
+
onDispatched: {
|
3214
|
+
setColorSchema: {
|
3215
|
+
subscribe(fn: (result: void, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3216
|
+
};
|
3217
|
+
setCustomColorSchema: {
|
3218
|
+
subscribe(fn: (result: void, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3219
|
+
};
|
3220
|
+
setColor: {
|
3221
|
+
subscribe(fn: (result: void, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3222
|
+
};
|
3223
|
+
setThemeStore: {
|
3224
|
+
subscribe(fn: (result: void, themeStoreInstance: {
|
3225
|
+
state: {
|
3226
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
3227
|
+
};
|
3228
|
+
events: {
|
3229
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
3230
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3231
|
+
actions: {
|
3232
|
+
onDispatching: {
|
3233
|
+
setTheme: {
|
3234
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3235
|
+
};
|
3236
|
+
};
|
3237
|
+
onDispatched: {
|
3238
|
+
setTheme: {
|
3239
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3240
|
+
};
|
3241
|
+
};
|
3242
|
+
onFailure: {
|
3243
|
+
setTheme: {
|
3244
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3245
|
+
};
|
3246
|
+
};
|
3247
|
+
} & {
|
3248
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
3249
|
+
};
|
3250
|
+
get: {
|
3251
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3252
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
3253
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
3254
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
3255
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
3256
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
3257
|
+
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;
|
3258
|
+
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;
|
3259
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
3260
|
+
complementaryColor(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;
|
3261
|
+
complementaryColorDefinition(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;
|
3262
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
3263
|
+
};
|
3264
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3265
|
+
};
|
3266
|
+
};
|
3267
|
+
onFailure: {
|
3268
|
+
setColorSchema: {
|
3269
|
+
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3270
|
+
};
|
3271
|
+
setCustomColorSchema: {
|
3272
|
+
subscribe(fn: (failureReason: any, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3273
|
+
};
|
3274
|
+
setColor: {
|
3275
|
+
subscribe(fn: (failureReason: any, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3276
|
+
};
|
3277
|
+
setThemeStore: {
|
3278
|
+
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
3279
|
+
state: {
|
3280
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
3281
|
+
};
|
3282
|
+
events: {
|
3283
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
3284
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3285
|
+
actions: {
|
3286
|
+
onDispatching: {
|
3287
|
+
setTheme: {
|
3288
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3289
|
+
};
|
3290
|
+
};
|
3291
|
+
onDispatched: {
|
3292
|
+
setTheme: {
|
3293
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3294
|
+
};
|
3295
|
+
};
|
3296
|
+
onFailure: {
|
3297
|
+
setTheme: {
|
3298
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3299
|
+
};
|
3300
|
+
};
|
3301
|
+
} & {
|
3302
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
3303
|
+
};
|
3304
|
+
get: {
|
3305
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3306
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
3307
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
3308
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
3309
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
3310
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
3311
|
+
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;
|
3312
|
+
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;
|
3313
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
3314
|
+
complementaryColor(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;
|
3315
|
+
complementaryColorDefinition(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;
|
3316
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
3317
|
+
};
|
3318
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3319
|
+
};
|
3320
|
+
};
|
3321
|
+
} & {
|
3322
|
+
setColorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean): void;
|
3323
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
3324
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
3325
|
+
setThemeStore(themeStoreInstance: {
|
3326
|
+
state: {
|
3327
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
3328
|
+
};
|
3329
|
+
events: {
|
3330
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
3331
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3332
|
+
actions: {
|
3333
|
+
onDispatching: {
|
3334
|
+
setTheme: {
|
3335
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3336
|
+
};
|
3337
|
+
};
|
3338
|
+
onDispatched: {
|
3339
|
+
setTheme: {
|
3340
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3341
|
+
};
|
3342
|
+
};
|
3343
|
+
onFailure: {
|
3344
|
+
setTheme: {
|
3345
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3346
|
+
};
|
3347
|
+
};
|
3348
|
+
} & {
|
3349
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
3350
|
+
};
|
3351
|
+
get: {
|
3352
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3353
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
3354
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
3355
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
3356
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
3357
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
3358
|
+
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;
|
3359
|
+
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;
|
3360
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
3361
|
+
complementaryColor(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;
|
3362
|
+
complementaryColorDefinition(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;
|
3363
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
3364
|
+
};
|
3365
|
+
}): void;
|
3366
|
+
};
|
3367
|
+
get: {
|
3368
|
+
readonly themeStore: {
|
3369
|
+
state: {
|
3370
|
+
currentTheme: {
|
3371
|
+
id: {
|
3372
|
+
equals: {
|
3373
|
+
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
3374
|
+
};
|
3375
|
+
toString: () => string;
|
3376
|
+
toJSON: () => string;
|
3377
|
+
valueOf: () => string;
|
3378
|
+
};
|
3379
|
+
name: string;
|
3380
|
+
dark: boolean;
|
3381
|
+
colors: {
|
3382
|
+
primary: {
|
3383
|
+
name: string;
|
3384
|
+
base: {
|
3385
|
+
dark: boolean;
|
3386
|
+
color: string;
|
3387
|
+
colorToned: string;
|
3388
|
+
};
|
3389
|
+
onBase: {
|
3390
|
+
dark: boolean;
|
3391
|
+
color: string;
|
3392
|
+
colorToned: string;
|
3393
|
+
};
|
3394
|
+
container: {
|
3395
|
+
dark: boolean;
|
3396
|
+
color: string;
|
3397
|
+
colorToned: string;
|
3398
|
+
};
|
3399
|
+
onContainer: {
|
3400
|
+
dark: boolean;
|
3401
|
+
color: string;
|
3402
|
+
colorToned: string;
|
3403
|
+
};
|
3404
|
+
};
|
3405
|
+
secondary: {
|
3406
|
+
name: string;
|
3407
|
+
base: {
|
3408
|
+
dark: boolean;
|
3409
|
+
color: string;
|
3410
|
+
colorToned: string;
|
3411
|
+
};
|
3412
|
+
onBase: {
|
3413
|
+
dark: boolean;
|
3414
|
+
color: string;
|
3415
|
+
colorToned: string;
|
3416
|
+
};
|
3417
|
+
container: {
|
3418
|
+
dark: boolean;
|
3419
|
+
color: string;
|
3420
|
+
colorToned: string;
|
3421
|
+
};
|
3422
|
+
onContainer: {
|
3423
|
+
dark: boolean;
|
3424
|
+
color: string;
|
3425
|
+
colorToned: string;
|
3426
|
+
};
|
3427
|
+
};
|
3428
|
+
accent1: {
|
3429
|
+
name: string;
|
3430
|
+
base: {
|
3431
|
+
dark: boolean;
|
3432
|
+
color: string;
|
3433
|
+
colorToned: string;
|
3434
|
+
};
|
3435
|
+
onBase: {
|
3436
|
+
dark: boolean;
|
3437
|
+
color: string;
|
3438
|
+
colorToned: string;
|
3439
|
+
};
|
3440
|
+
container: {
|
3441
|
+
dark: boolean;
|
3442
|
+
color: string;
|
3443
|
+
colorToned: string;
|
3444
|
+
};
|
3445
|
+
onContainer: {
|
3446
|
+
dark: boolean;
|
3447
|
+
color: string;
|
3448
|
+
colorToned: string;
|
3449
|
+
};
|
3450
|
+
};
|
3451
|
+
accent2: {
|
3452
|
+
name: string;
|
3453
|
+
base: {
|
3454
|
+
dark: boolean;
|
3455
|
+
color: string;
|
3456
|
+
colorToned: string;
|
3457
|
+
};
|
3458
|
+
onBase: {
|
3459
|
+
dark: boolean;
|
3460
|
+
color: string;
|
3461
|
+
colorToned: string;
|
3462
|
+
};
|
3463
|
+
container: {
|
3464
|
+
dark: boolean;
|
3465
|
+
color: string;
|
3466
|
+
colorToned: string;
|
3467
|
+
};
|
3468
|
+
onContainer: {
|
3469
|
+
dark: boolean;
|
3470
|
+
color: string;
|
3471
|
+
colorToned: string;
|
3472
|
+
};
|
3473
|
+
};
|
3474
|
+
accent3: {
|
3475
|
+
name: string;
|
3476
|
+
base: {
|
3477
|
+
dark: boolean;
|
3478
|
+
color: string;
|
3479
|
+
colorToned: string;
|
3480
|
+
};
|
3481
|
+
onBase: {
|
3482
|
+
dark: boolean;
|
3483
|
+
color: string;
|
3484
|
+
colorToned: string;
|
3485
|
+
};
|
3486
|
+
container: {
|
3487
|
+
dark: boolean;
|
3488
|
+
color: string;
|
3489
|
+
colorToned: string;
|
3490
|
+
};
|
3491
|
+
onContainer: {
|
3492
|
+
dark: boolean;
|
3493
|
+
color: string;
|
3494
|
+
colorToned: string;
|
3495
|
+
};
|
3496
|
+
};
|
3497
|
+
neutral: {
|
3498
|
+
name: string;
|
3499
|
+
base: {
|
3500
|
+
dark: boolean;
|
3501
|
+
color: string;
|
3502
|
+
colorToned: string;
|
3503
|
+
};
|
3504
|
+
onBase: {
|
3505
|
+
dark: boolean;
|
3506
|
+
color: string;
|
3507
|
+
colorToned: string;
|
3508
|
+
};
|
3509
|
+
container: {
|
3510
|
+
dark: boolean;
|
3511
|
+
color: string;
|
3512
|
+
colorToned: string;
|
3513
|
+
};
|
3514
|
+
onContainer: {
|
3515
|
+
dark: boolean;
|
3516
|
+
color: string;
|
3517
|
+
colorToned: string;
|
3518
|
+
};
|
3519
|
+
};
|
3520
|
+
background: {
|
3521
|
+
name: string;
|
3522
|
+
base: {
|
3523
|
+
dark: boolean;
|
3524
|
+
color: string;
|
3525
|
+
colorToned: string;
|
3526
|
+
};
|
3527
|
+
onBase: {
|
3528
|
+
dark: boolean;
|
3529
|
+
color: string;
|
3530
|
+
colorToned: string;
|
3531
|
+
};
|
3532
|
+
container: {
|
3533
|
+
dark: boolean;
|
3534
|
+
color: string;
|
3535
|
+
colorToned: string;
|
3536
|
+
};
|
3537
|
+
onContainer: {
|
3538
|
+
dark: boolean;
|
3539
|
+
color: string;
|
3540
|
+
colorToned: string;
|
3541
|
+
};
|
3542
|
+
};
|
3543
|
+
error: {
|
3544
|
+
name: string;
|
3545
|
+
base: {
|
3546
|
+
dark: boolean;
|
3547
|
+
color: string;
|
3548
|
+
colorToned: string;
|
3549
|
+
};
|
3550
|
+
onBase: {
|
3551
|
+
dark: boolean;
|
3552
|
+
color: string;
|
3553
|
+
colorToned: string;
|
3554
|
+
};
|
3555
|
+
container: {
|
3556
|
+
dark: boolean;
|
3557
|
+
color: string;
|
3558
|
+
colorToned: string;
|
3559
|
+
};
|
3560
|
+
onContainer: {
|
3561
|
+
dark: boolean;
|
3562
|
+
color: string;
|
3563
|
+
colorToned: string;
|
3564
|
+
};
|
3565
|
+
};
|
3566
|
+
info: {
|
3567
|
+
name: string;
|
3568
|
+
base: {
|
3569
|
+
dark: boolean;
|
3570
|
+
color: string;
|
3571
|
+
colorToned: string;
|
3572
|
+
};
|
3573
|
+
onBase: {
|
3574
|
+
dark: boolean;
|
3575
|
+
color: string;
|
3576
|
+
colorToned: string;
|
3577
|
+
};
|
3578
|
+
container: {
|
3579
|
+
dark: boolean;
|
3580
|
+
color: string;
|
3581
|
+
colorToned: string;
|
3582
|
+
};
|
3583
|
+
onContainer: {
|
3584
|
+
dark: boolean;
|
3585
|
+
color: string;
|
3586
|
+
colorToned: string;
|
3587
|
+
};
|
3588
|
+
};
|
3589
|
+
};
|
3590
|
+
blueprints: {
|
3591
|
+
type: import("@omnia/fx-models").BlueprintType;
|
3592
|
+
name?: string;
|
3593
|
+
}[];
|
3594
|
+
};
|
3595
|
+
};
|
3596
|
+
events: {
|
3597
|
+
[x: string]: {
|
3598
|
+
subscribe: (fn: (obj: any) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3599
|
+
publish: (msg: any) => void;
|
3600
|
+
};
|
3601
|
+
onMutatedCurrentTheme: {
|
3602
|
+
subscribe: (fn: (obj: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3603
|
+
};
|
3604
|
+
};
|
3605
|
+
actions: {
|
3606
|
+
onDispatching: {
|
3607
|
+
setTheme: {
|
3608
|
+
subscribe: (fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3609
|
+
};
|
3610
|
+
};
|
3611
|
+
onDispatched: {
|
3612
|
+
setTheme: {
|
3613
|
+
subscribe: (fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3614
|
+
};
|
3615
|
+
};
|
3616
|
+
onFailure: {
|
3617
|
+
setTheme: {
|
3618
|
+
subscribe: (fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3619
|
+
};
|
3620
|
+
};
|
3621
|
+
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
3622
|
+
};
|
3623
|
+
get: {
|
3624
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
3625
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
3626
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
3627
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
3628
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
3629
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
3630
|
+
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;
|
3631
|
+
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;
|
3632
|
+
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
3633
|
+
complementaryColor: (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;
|
3634
|
+
complementaryColorDefinition: (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;
|
3635
|
+
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
3636
|
+
};
|
3637
|
+
};
|
3638
|
+
colorValue(color: import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue): string;
|
3639
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
3640
|
+
readonly theme: "light" | "dark";
|
3641
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
3642
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
3643
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
3644
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
3645
|
+
dynamic: (isContainer: boolean) => {
|
3646
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
3647
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
3648
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
3649
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
3650
|
+
};
|
3651
|
+
};
|
3652
|
+
deactivated(): void;
|
3653
|
+
}, blueprints: {
|
3654
|
+
state: {
|
3655
|
+
blueprint: import("@omnia/fx-models").TypographyBlueprint;
|
3656
|
+
blueprintType: import("@omnia/fx-models").BlueprintVariant;
|
3657
|
+
id: import("@omnia/fx-models").GuidValue;
|
3658
|
+
};
|
3659
|
+
events: {
|
3660
|
+
onMutatedBlueprint: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").TypographyBlueprint>;
|
3661
|
+
onMutatedBlueprintType: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").BlueprintVariant>;
|
3662
|
+
onMutatedId: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
3663
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3664
|
+
actions: {
|
3665
|
+
onDispatching: {
|
3666
|
+
setBlueprint: {
|
3667
|
+
subscribe(fn: (type: import("@omnia/fx-models").BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3668
|
+
};
|
3669
|
+
setThemeStore: {
|
3670
|
+
subscribe(fn: (themeStoreInstance: {
|
3671
|
+
state: {
|
3672
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
3673
|
+
};
|
3674
|
+
events: {
|
3675
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
3676
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3677
|
+
actions: {
|
3678
|
+
onDispatching: {
|
3679
|
+
setTheme: {
|
3680
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3681
|
+
};
|
3682
|
+
};
|
3683
|
+
onDispatched: {
|
3684
|
+
setTheme: {
|
3685
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3686
|
+
};
|
3687
|
+
};
|
3688
|
+
onFailure: {
|
3689
|
+
setTheme: {
|
3690
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3691
|
+
};
|
3692
|
+
};
|
3693
|
+
} & {
|
3694
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
3695
|
+
};
|
3696
|
+
get: {
|
3697
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3698
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
3699
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
3700
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
3701
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
3702
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
3703
|
+
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;
|
3704
|
+
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;
|
3705
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
3706
|
+
complementaryColor(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;
|
3707
|
+
complementaryColorDefinition(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;
|
3708
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
3709
|
+
};
|
3710
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3711
|
+
};
|
3712
|
+
};
|
3713
|
+
onDispatched: {
|
3714
|
+
setBlueprint: {
|
3715
|
+
subscribe(fn: (result: void, type: import("@omnia/fx-models").BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3716
|
+
};
|
3717
|
+
setThemeStore: {
|
3718
|
+
subscribe(fn: (result: void, themeStoreInstance: {
|
3719
|
+
state: {
|
3720
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
3721
|
+
};
|
3722
|
+
events: {
|
3723
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
3724
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3725
|
+
actions: {
|
3726
|
+
onDispatching: {
|
3727
|
+
setTheme: {
|
3728
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3729
|
+
};
|
3730
|
+
};
|
3731
|
+
onDispatched: {
|
3732
|
+
setTheme: {
|
3733
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3734
|
+
};
|
3735
|
+
};
|
3736
|
+
onFailure: {
|
3737
|
+
setTheme: {
|
3738
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3739
|
+
};
|
3740
|
+
};
|
3741
|
+
} & {
|
3742
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
3743
|
+
};
|
3744
|
+
get: {
|
3745
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3746
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
3747
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
3748
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
3749
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
3750
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
3751
|
+
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;
|
3752
|
+
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;
|
3753
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
3754
|
+
complementaryColor(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;
|
3755
|
+
complementaryColorDefinition(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;
|
3756
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
3757
|
+
};
|
3758
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3759
|
+
};
|
3760
|
+
};
|
3761
|
+
onFailure: {
|
3762
|
+
setBlueprint: {
|
3763
|
+
subscribe(fn: (failureReason: any, type: import("@omnia/fx-models").BlueprintVariant) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3764
|
+
};
|
3765
|
+
setThemeStore: {
|
3766
|
+
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
3767
|
+
state: {
|
3768
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
3769
|
+
};
|
3770
|
+
events: {
|
3771
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
3772
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3773
|
+
actions: {
|
3774
|
+
onDispatching: {
|
3775
|
+
setTheme: {
|
3776
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3777
|
+
};
|
3778
|
+
};
|
3779
|
+
onDispatched: {
|
3780
|
+
setTheme: {
|
3781
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3782
|
+
};
|
3783
|
+
};
|
3784
|
+
onFailure: {
|
3785
|
+
setTheme: {
|
3786
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3787
|
+
};
|
3788
|
+
};
|
3789
|
+
} & {
|
3790
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
3791
|
+
};
|
3792
|
+
get: {
|
3793
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3794
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
3795
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
3796
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
3797
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
3798
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
3799
|
+
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;
|
3800
|
+
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;
|
3801
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
3802
|
+
complementaryColor(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;
|
3803
|
+
complementaryColorDefinition(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;
|
3804
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
3805
|
+
};
|
3806
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3807
|
+
};
|
3808
|
+
};
|
3809
|
+
} & {
|
3810
|
+
setBlueprint(type: import("@omnia/fx-models").BlueprintVariant): void;
|
3811
|
+
setThemeStore(themeStoreInstance: {
|
3812
|
+
state: {
|
3813
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
3814
|
+
};
|
3815
|
+
events: {
|
3816
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
3817
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3818
|
+
actions: {
|
3819
|
+
onDispatching: {
|
3820
|
+
setTheme: {
|
3821
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3822
|
+
};
|
3823
|
+
};
|
3824
|
+
onDispatched: {
|
3825
|
+
setTheme: {
|
3826
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3827
|
+
};
|
3828
|
+
};
|
3829
|
+
onFailure: {
|
3830
|
+
setTheme: {
|
3831
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3832
|
+
};
|
3833
|
+
};
|
3834
|
+
} & {
|
3835
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
3836
|
+
};
|
3837
|
+
get: {
|
3838
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3839
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
3840
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
3841
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
3842
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
3843
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
3844
|
+
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;
|
3845
|
+
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;
|
3846
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
3847
|
+
complementaryColor(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;
|
3848
|
+
complementaryColorDefinition(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;
|
3849
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
3850
|
+
};
|
3851
|
+
}): void;
|
3852
|
+
};
|
3853
|
+
get: {
|
3854
|
+
readonly themeStore: {
|
3855
|
+
state: {
|
3856
|
+
currentTheme: {
|
3857
|
+
id: {
|
3858
|
+
equals: {
|
3859
|
+
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
3860
|
+
};
|
3861
|
+
toString: () => string;
|
3862
|
+
toJSON: () => string;
|
3863
|
+
valueOf: () => string;
|
3864
|
+
};
|
3865
|
+
name: string;
|
3866
|
+
dark: boolean;
|
3867
|
+
colors: {
|
3868
|
+
primary: {
|
3869
|
+
name: string;
|
3870
|
+
base: {
|
3871
|
+
dark: boolean;
|
3872
|
+
color: string;
|
3873
|
+
colorToned: string;
|
3874
|
+
};
|
3875
|
+
onBase: {
|
3876
|
+
dark: boolean;
|
3877
|
+
color: string;
|
3878
|
+
colorToned: string;
|
3879
|
+
};
|
3880
|
+
container: {
|
3881
|
+
dark: boolean;
|
3882
|
+
color: string;
|
3883
|
+
colorToned: string;
|
3884
|
+
};
|
3885
|
+
onContainer: {
|
3886
|
+
dark: boolean;
|
3887
|
+
color: string;
|
3888
|
+
colorToned: string;
|
3889
|
+
};
|
3890
|
+
};
|
3891
|
+
secondary: {
|
3892
|
+
name: string;
|
3893
|
+
base: {
|
3894
|
+
dark: boolean;
|
3895
|
+
color: string;
|
3896
|
+
colorToned: string;
|
3897
|
+
};
|
3898
|
+
onBase: {
|
3899
|
+
dark: boolean;
|
3900
|
+
color: string;
|
3901
|
+
colorToned: string;
|
3902
|
+
};
|
3903
|
+
container: {
|
3904
|
+
dark: boolean;
|
3905
|
+
color: string;
|
3906
|
+
colorToned: string;
|
3907
|
+
};
|
3908
|
+
onContainer: {
|
3909
|
+
dark: boolean;
|
3910
|
+
color: string;
|
3911
|
+
colorToned: string;
|
3912
|
+
};
|
3913
|
+
};
|
3914
|
+
accent1: {
|
3915
|
+
name: string;
|
3916
|
+
base: {
|
3917
|
+
dark: boolean;
|
3918
|
+
color: string;
|
3919
|
+
colorToned: string;
|
3920
|
+
};
|
3921
|
+
onBase: {
|
3922
|
+
dark: boolean;
|
3923
|
+
color: string;
|
3924
|
+
colorToned: string;
|
3925
|
+
};
|
3926
|
+
container: {
|
3927
|
+
dark: boolean;
|
3928
|
+
color: string;
|
3929
|
+
colorToned: string;
|
3930
|
+
};
|
3931
|
+
onContainer: {
|
3932
|
+
dark: boolean;
|
3933
|
+
color: string;
|
3934
|
+
colorToned: string;
|
3935
|
+
};
|
3936
|
+
};
|
3937
|
+
accent2: {
|
3938
|
+
name: string;
|
3939
|
+
base: {
|
3940
|
+
dark: boolean;
|
3941
|
+
color: string;
|
3942
|
+
colorToned: string;
|
3943
|
+
};
|
3944
|
+
onBase: {
|
3945
|
+
dark: boolean;
|
3946
|
+
color: string;
|
3947
|
+
colorToned: string;
|
3948
|
+
};
|
3949
|
+
container: {
|
3950
|
+
dark: boolean;
|
3951
|
+
color: string;
|
3952
|
+
colorToned: string;
|
3953
|
+
};
|
3954
|
+
onContainer: {
|
3955
|
+
dark: boolean;
|
3956
|
+
color: string;
|
3957
|
+
colorToned: string;
|
3958
|
+
};
|
3959
|
+
};
|
3960
|
+
accent3: {
|
3961
|
+
name: string;
|
3962
|
+
base: {
|
3963
|
+
dark: boolean;
|
3964
|
+
color: string;
|
3965
|
+
colorToned: string;
|
3966
|
+
};
|
3967
|
+
onBase: {
|
3968
|
+
dark: boolean;
|
3969
|
+
color: string;
|
3970
|
+
colorToned: string;
|
3971
|
+
};
|
3972
|
+
container: {
|
3973
|
+
dark: boolean;
|
3974
|
+
color: string;
|
3975
|
+
colorToned: string;
|
3976
|
+
};
|
3977
|
+
onContainer: {
|
3978
|
+
dark: boolean;
|
3979
|
+
color: string;
|
3980
|
+
colorToned: string;
|
3981
|
+
};
|
3982
|
+
};
|
3983
|
+
neutral: {
|
3984
|
+
name: string;
|
3985
|
+
base: {
|
3986
|
+
dark: boolean;
|
3987
|
+
color: string;
|
3988
|
+
colorToned: string;
|
3989
|
+
};
|
3990
|
+
onBase: {
|
3991
|
+
dark: boolean;
|
3992
|
+
color: string;
|
3993
|
+
colorToned: string;
|
3994
|
+
};
|
3995
|
+
container: {
|
3996
|
+
dark: boolean;
|
3997
|
+
color: string;
|
3998
|
+
colorToned: string;
|
3999
|
+
};
|
4000
|
+
onContainer: {
|
4001
|
+
dark: boolean;
|
4002
|
+
color: string;
|
4003
|
+
colorToned: string;
|
4004
|
+
};
|
4005
|
+
};
|
4006
|
+
background: {
|
4007
|
+
name: string;
|
4008
|
+
base: {
|
4009
|
+
dark: boolean;
|
4010
|
+
color: string;
|
4011
|
+
colorToned: string;
|
4012
|
+
};
|
4013
|
+
onBase: {
|
4014
|
+
dark: boolean;
|
4015
|
+
color: string;
|
4016
|
+
colorToned: string;
|
4017
|
+
};
|
4018
|
+
container: {
|
4019
|
+
dark: boolean;
|
4020
|
+
color: string;
|
4021
|
+
colorToned: string;
|
4022
|
+
};
|
4023
|
+
onContainer: {
|
4024
|
+
dark: boolean;
|
4025
|
+
color: string;
|
4026
|
+
colorToned: string;
|
4027
|
+
};
|
4028
|
+
};
|
4029
|
+
error: {
|
4030
|
+
name: string;
|
4031
|
+
base: {
|
4032
|
+
dark: boolean;
|
4033
|
+
color: string;
|
4034
|
+
colorToned: string;
|
4035
|
+
};
|
4036
|
+
onBase: {
|
4037
|
+
dark: boolean;
|
4038
|
+
color: string;
|
4039
|
+
colorToned: string;
|
4040
|
+
};
|
4041
|
+
container: {
|
4042
|
+
dark: boolean;
|
4043
|
+
color: string;
|
4044
|
+
colorToned: string;
|
4045
|
+
};
|
4046
|
+
onContainer: {
|
4047
|
+
dark: boolean;
|
4048
|
+
color: string;
|
4049
|
+
colorToned: string;
|
4050
|
+
};
|
4051
|
+
};
|
4052
|
+
info: {
|
4053
|
+
name: string;
|
4054
|
+
base: {
|
4055
|
+
dark: boolean;
|
4056
|
+
color: string;
|
4057
|
+
colorToned: string;
|
4058
|
+
};
|
4059
|
+
onBase: {
|
4060
|
+
dark: boolean;
|
4061
|
+
color: string;
|
4062
|
+
colorToned: string;
|
4063
|
+
};
|
4064
|
+
container: {
|
4065
|
+
dark: boolean;
|
4066
|
+
color: string;
|
4067
|
+
colorToned: string;
|
4068
|
+
};
|
4069
|
+
onContainer: {
|
4070
|
+
dark: boolean;
|
4071
|
+
color: string;
|
4072
|
+
colorToned: string;
|
4073
|
+
};
|
4074
|
+
};
|
4075
|
+
};
|
4076
|
+
blueprints: {
|
4077
|
+
type: import("@omnia/fx-models").BlueprintType;
|
4078
|
+
name?: string;
|
4079
|
+
}[];
|
4080
|
+
};
|
4081
|
+
};
|
4082
|
+
events: {
|
4083
|
+
[x: string]: {
|
4084
|
+
subscribe: (fn: (obj: any) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4085
|
+
publish: (msg: any) => void;
|
4086
|
+
};
|
4087
|
+
onMutatedCurrentTheme: {
|
4088
|
+
subscribe: (fn: (obj: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4089
|
+
};
|
4090
|
+
};
|
4091
|
+
actions: {
|
4092
|
+
onDispatching: {
|
4093
|
+
setTheme: {
|
4094
|
+
subscribe: (fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4095
|
+
};
|
4096
|
+
};
|
4097
|
+
onDispatched: {
|
4098
|
+
setTheme: {
|
4099
|
+
subscribe: (fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4100
|
+
};
|
4101
|
+
};
|
4102
|
+
onFailure: {
|
4103
|
+
setTheme: {
|
4104
|
+
subscribe: (fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4105
|
+
};
|
4106
|
+
};
|
4107
|
+
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
4108
|
+
};
|
4109
|
+
get: {
|
4110
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
4111
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
4112
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
4113
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
4114
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
4115
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
4116
|
+
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;
|
4117
|
+
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;
|
4118
|
+
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
4119
|
+
complementaryColor: (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;
|
4120
|
+
complementaryColorDefinition: (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;
|
4121
|
+
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
4122
|
+
};
|
4123
|
+
};
|
4124
|
+
readonly blueprint: import("@omnia/fx-models").TypographyBlueprint;
|
4125
|
+
typography(typographyType: "title" | "text" | "navigation" | import("@omnia/fx-models").TypographyTypes, size: "xs" | "s" | "m" | "l" | "xl" | import("@omnia/fx-models").TypographySizes): import("@omnia/fx-models").TypographyDefinition;
|
4126
|
+
};
|
4127
|
+
deactivated(): void;
|
4128
|
+
}) => string;
|
4129
|
+
tab: (blueprint: import("@omnia/fx-models").TabsBlueprint, colors: {
|
4130
|
+
state: {
|
4131
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
4132
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
4133
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
4134
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
4135
|
+
isContainer: boolean;
|
4136
|
+
name: string;
|
4137
|
+
colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes;
|
4138
|
+
id: import("@omnia/fx-models").GuidValue;
|
4139
|
+
};
|
4140
|
+
events: {
|
4141
|
+
onMutatedBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
4142
|
+
onMutatedOnBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
4143
|
+
onMutatedContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
4144
|
+
onMutatedOnContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
4145
|
+
onMutatedIsContainer: import("../../..").MessageBusExposeOnlySubscription<boolean>;
|
4146
|
+
onMutatedName: import("../../..").MessageBusExposeOnlySubscription<string>;
|
4147
|
+
onMutatedColorSchemaType: import("../../..").MessageBusExposeOnlySubscription<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes>;
|
4148
|
+
onMutatedId: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
4149
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
4150
|
+
actions: {
|
4151
|
+
onDispatching: {
|
4152
|
+
setColorSchema: {
|
4153
|
+
subscribe(fn: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4154
|
+
};
|
4155
|
+
setCustomColorSchema: {
|
4156
|
+
subscribe(fn: (colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4157
|
+
};
|
4158
|
+
setColor: {
|
4159
|
+
subscribe(fn: (colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4160
|
+
};
|
4161
|
+
setThemeStore: {
|
4162
|
+
subscribe(fn: (themeStoreInstance: {
|
4163
|
+
state: {
|
4164
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
4165
|
+
};
|
4166
|
+
events: {
|
4167
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
4168
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
4169
|
+
actions: {
|
4170
|
+
onDispatching: {
|
4171
|
+
setTheme: {
|
4172
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4173
|
+
};
|
4174
|
+
};
|
4175
|
+
onDispatched: {
|
4176
|
+
setTheme: {
|
4177
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4178
|
+
};
|
4179
|
+
};
|
4180
|
+
onFailure: {
|
4181
|
+
setTheme: {
|
4182
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4183
|
+
};
|
4184
|
+
};
|
4185
|
+
} & {
|
4186
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
4187
|
+
};
|
4188
|
+
get: {
|
4189
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
4190
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
4191
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
4192
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
4193
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
4194
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
2685
4195
|
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;
|
2686
4196
|
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;
|
2687
4197
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -2731,11 +4241,11 @@ export declare function useThemeStyling(): {
|
|
2731
4241
|
};
|
2732
4242
|
get: {
|
2733
4243
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2734
|
-
blueprint<TType extends import("@omnia/fx-models").
|
2735
|
-
typography(): import("@omnia/fx-models").
|
2736
|
-
spacing(): import("@omnia/fx-models").
|
2737
|
-
chrome(): import("@omnia/fx-models").
|
2738
|
-
component(): import("@omnia/fx-models").
|
4244
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
4245
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
4246
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
4247
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
4248
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
2739
4249
|
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;
|
2740
4250
|
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;
|
2741
4251
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -2785,11 +4295,11 @@ export declare function useThemeStyling(): {
|
|
2785
4295
|
};
|
2786
4296
|
get: {
|
2787
4297
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2788
|
-
blueprint<TType extends import("@omnia/fx-models").
|
2789
|
-
typography(): import("@omnia/fx-models").
|
2790
|
-
spacing(): import("@omnia/fx-models").
|
2791
|
-
chrome(): import("@omnia/fx-models").
|
2792
|
-
component(): import("@omnia/fx-models").
|
4298
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
4299
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
4300
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
4301
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
4302
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
2793
4303
|
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;
|
2794
4304
|
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;
|
2795
4305
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -2832,11 +4342,11 @@ export declare function useThemeStyling(): {
|
|
2832
4342
|
};
|
2833
4343
|
get: {
|
2834
4344
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
2835
|
-
blueprint<TType extends import("@omnia/fx-models").
|
2836
|
-
typography(): import("@omnia/fx-models").
|
2837
|
-
spacing(): import("@omnia/fx-models").
|
2838
|
-
chrome(): import("@omnia/fx-models").
|
2839
|
-
component(): import("@omnia/fx-models").
|
4345
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
4346
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
4347
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
4348
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
4349
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
2840
4350
|
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;
|
2841
4351
|
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;
|
2842
4352
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -3071,7 +4581,7 @@ export declare function useThemeStyling(): {
|
|
3071
4581
|
};
|
3072
4582
|
blueprints: {
|
3073
4583
|
type: import("@omnia/fx-models").BlueprintType;
|
3074
|
-
name
|
4584
|
+
name?: string;
|
3075
4585
|
}[];
|
3076
4586
|
};
|
3077
4587
|
};
|
@@ -3104,11 +4614,11 @@ export declare function useThemeStyling(): {
|
|
3104
4614
|
};
|
3105
4615
|
get: {
|
3106
4616
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
3107
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
3108
|
-
typography: () => import("@omnia/fx-models").
|
3109
|
-
spacing: () => import("@omnia/fx-models").
|
3110
|
-
chrome: () => import("@omnia/fx-models").
|
3111
|
-
component: () => import("@omnia/fx-models").
|
4617
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
4618
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
4619
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
4620
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
4621
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
3112
4622
|
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;
|
3113
4623
|
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;
|
3114
4624
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -3132,21 +4642,38 @@ export declare function useThemeStyling(): {
|
|
3132
4642
|
};
|
3133
4643
|
};
|
3134
4644
|
deactivated(): void;
|
3135
|
-
},
|
4645
|
+
}, active?: boolean) => string;
|
4646
|
+
tabs: (blueprint: import("@omnia/fx-models").TabsBlueprint, colors: {
|
3136
4647
|
state: {
|
3137
|
-
|
3138
|
-
|
4648
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
4649
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
4650
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
4651
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
4652
|
+
isContainer: boolean;
|
4653
|
+
name: string;
|
4654
|
+
colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes;
|
3139
4655
|
id: import("@omnia/fx-models").GuidValue;
|
3140
4656
|
};
|
3141
4657
|
events: {
|
3142
|
-
|
3143
|
-
|
4658
|
+
onMutatedBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
4659
|
+
onMutatedOnBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
4660
|
+
onMutatedContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
4661
|
+
onMutatedOnContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
4662
|
+
onMutatedIsContainer: import("../../..").MessageBusExposeOnlySubscription<boolean>;
|
4663
|
+
onMutatedName: import("../../..").MessageBusExposeOnlySubscription<string>;
|
4664
|
+
onMutatedColorSchemaType: import("../../..").MessageBusExposeOnlySubscription<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes>;
|
3144
4665
|
onMutatedId: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
3145
4666
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
3146
4667
|
actions: {
|
3147
4668
|
onDispatching: {
|
3148
|
-
|
3149
|
-
subscribe(fn: (
|
4669
|
+
setColorSchema: {
|
4670
|
+
subscribe(fn: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4671
|
+
};
|
4672
|
+
setCustomColorSchema: {
|
4673
|
+
subscribe(fn: (colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4674
|
+
};
|
4675
|
+
setColor: {
|
4676
|
+
subscribe(fn: (colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3150
4677
|
};
|
3151
4678
|
setThemeStore: {
|
3152
4679
|
subscribe(fn: (themeStoreInstance: {
|
@@ -3177,11 +4704,11 @@ export declare function useThemeStyling(): {
|
|
3177
4704
|
};
|
3178
4705
|
get: {
|
3179
4706
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3180
|
-
blueprint<TType extends import("@omnia/fx-models").
|
3181
|
-
typography(): import("@omnia/fx-models").
|
3182
|
-
spacing(): import("@omnia/fx-models").
|
3183
|
-
chrome(): import("@omnia/fx-models").
|
3184
|
-
component(): import("@omnia/fx-models").
|
4707
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
4708
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
4709
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
4710
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
4711
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
3185
4712
|
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;
|
3186
4713
|
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;
|
3187
4714
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -3193,8 +4720,14 @@ export declare function useThemeStyling(): {
|
|
3193
4720
|
};
|
3194
4721
|
};
|
3195
4722
|
onDispatched: {
|
3196
|
-
|
3197
|
-
subscribe(fn: (result: void,
|
4723
|
+
setColorSchema: {
|
4724
|
+
subscribe(fn: (result: void, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4725
|
+
};
|
4726
|
+
setCustomColorSchema: {
|
4727
|
+
subscribe(fn: (result: void, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4728
|
+
};
|
4729
|
+
setColor: {
|
4730
|
+
subscribe(fn: (result: void, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3198
4731
|
};
|
3199
4732
|
setThemeStore: {
|
3200
4733
|
subscribe(fn: (result: void, themeStoreInstance: {
|
@@ -3225,11 +4758,11 @@ export declare function useThemeStyling(): {
|
|
3225
4758
|
};
|
3226
4759
|
get: {
|
3227
4760
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3228
|
-
blueprint<TType extends import("@omnia/fx-models").
|
3229
|
-
typography(): import("@omnia/fx-models").
|
3230
|
-
spacing(): import("@omnia/fx-models").
|
3231
|
-
chrome(): import("@omnia/fx-models").
|
3232
|
-
component(): import("@omnia/fx-models").
|
4761
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
4762
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
4763
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
4764
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
4765
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
3233
4766
|
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;
|
3234
4767
|
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;
|
3235
4768
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -3241,8 +4774,14 @@ export declare function useThemeStyling(): {
|
|
3241
4774
|
};
|
3242
4775
|
};
|
3243
4776
|
onFailure: {
|
3244
|
-
|
3245
|
-
subscribe(fn: (failureReason: any,
|
4777
|
+
setColorSchema: {
|
4778
|
+
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4779
|
+
};
|
4780
|
+
setCustomColorSchema: {
|
4781
|
+
subscribe(fn: (failureReason: any, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
4782
|
+
};
|
4783
|
+
setColor: {
|
4784
|
+
subscribe(fn: (failureReason: any, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
3246
4785
|
};
|
3247
4786
|
setThemeStore: {
|
3248
4787
|
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
@@ -3273,11 +4812,11 @@ export declare function useThemeStyling(): {
|
|
3273
4812
|
};
|
3274
4813
|
get: {
|
3275
4814
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3276
|
-
blueprint<TType extends import("@omnia/fx-models").
|
3277
|
-
typography(): import("@omnia/fx-models").
|
3278
|
-
spacing(): import("@omnia/fx-models").
|
3279
|
-
chrome(): import("@omnia/fx-models").
|
3280
|
-
component(): import("@omnia/fx-models").
|
4815
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
4816
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
4817
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
4818
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
4819
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
3281
4820
|
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;
|
3282
4821
|
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;
|
3283
4822
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -3289,7 +4828,9 @@ export declare function useThemeStyling(): {
|
|
3289
4828
|
};
|
3290
4829
|
};
|
3291
4830
|
} & {
|
3292
|
-
|
4831
|
+
setColorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean): void;
|
4832
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
4833
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
3293
4834
|
setThemeStore(themeStoreInstance: {
|
3294
4835
|
state: {
|
3295
4836
|
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
@@ -3318,11 +4859,11 @@ export declare function useThemeStyling(): {
|
|
3318
4859
|
};
|
3319
4860
|
get: {
|
3320
4861
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
3321
|
-
blueprint<TType extends import("@omnia/fx-models").
|
3322
|
-
typography(): import("@omnia/fx-models").
|
3323
|
-
spacing(): import("@omnia/fx-models").
|
3324
|
-
chrome(): import("@omnia/fx-models").
|
3325
|
-
component(): import("@omnia/fx-models").
|
4862
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
4863
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
4864
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
4865
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprints;
|
4866
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
3326
4867
|
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;
|
3327
4868
|
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;
|
3328
4869
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -3557,7 +5098,7 @@ export declare function useThemeStyling(): {
|
|
3557
5098
|
};
|
3558
5099
|
blueprints: {
|
3559
5100
|
type: import("@omnia/fx-models").BlueprintType;
|
3560
|
-
name
|
5101
|
+
name?: string;
|
3561
5102
|
}[];
|
3562
5103
|
};
|
3563
5104
|
};
|
@@ -3590,11 +5131,11 @@ export declare function useThemeStyling(): {
|
|
3590
5131
|
};
|
3591
5132
|
get: {
|
3592
5133
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
3593
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
3594
|
-
typography: () => import("@omnia/fx-models").
|
3595
|
-
spacing: () => import("@omnia/fx-models").
|
3596
|
-
chrome: () => import("@omnia/fx-models").
|
3597
|
-
component: () => import("@omnia/fx-models").
|
5134
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
5135
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
5136
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
5137
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprints;
|
5138
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
3598
5139
|
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;
|
3599
5140
|
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;
|
3600
5141
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -3603,40 +5144,51 @@ export declare function useThemeStyling(): {
|
|
3603
5144
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
3604
5145
|
};
|
3605
5146
|
};
|
3606
|
-
|
3607
|
-
|
5147
|
+
colorValue(color: import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue): string;
|
5148
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
5149
|
+
readonly theme: "light" | "dark";
|
5150
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
5151
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
5152
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
5153
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
5154
|
+
dynamic: (isContainer: boolean) => {
|
5155
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
5156
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
5157
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
5158
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
5159
|
+
};
|
3608
5160
|
};
|
3609
5161
|
deactivated(): void;
|
3610
5162
|
}) => string;
|
3611
5163
|
spacing: {
|
3612
|
-
innerPaddingStylex: (value:
|
5164
|
+
innerPaddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<{
|
3613
5165
|
className?: string;
|
3614
5166
|
style?: Readonly<{
|
3615
5167
|
[$$Key$$: string]: string | number;
|
3616
5168
|
}>;
|
3617
5169
|
}>;
|
3618
|
-
innerMarginStylex: (value:
|
5170
|
+
innerMarginStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<{
|
3619
5171
|
className?: string;
|
3620
5172
|
style?: Readonly<{
|
3621
5173
|
[$$Key$$: string]: string | number;
|
3622
5174
|
}>;
|
3623
5175
|
}>;
|
3624
|
-
layoutPaddingStylex: (value:
|
5176
|
+
layoutPaddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<{
|
3625
5177
|
className?: string;
|
3626
5178
|
style?: Readonly<{
|
3627
5179
|
[$$Key$$: string]: string | number;
|
3628
5180
|
}>;
|
3629
5181
|
}>;
|
3630
|
-
layoutMarginStylex: (value:
|
5182
|
+
layoutMarginStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<{
|
3631
5183
|
className?: string;
|
3632
5184
|
style?: Readonly<{
|
3633
5185
|
[$$Key$$: string]: string | number;
|
3634
5186
|
}>;
|
3635
5187
|
}>;
|
3636
|
-
innerPadding: (value:
|
3637
|
-
innerMargin: (value:
|
3638
|
-
layoutPadding: (value:
|
3639
|
-
layoutMargin: (value:
|
5188
|
+
innerPadding: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
|
5189
|
+
innerMargin: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
|
5190
|
+
layoutPadding: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
|
5191
|
+
layoutMargin: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
|
3640
5192
|
innerValue: (value: any, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => number;
|
3641
5193
|
layoutValue: (value: any, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => number;
|
3642
5194
|
};
|