@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,7 +1,7 @@
|
|
1
|
-
import { Guid,
|
1
|
+
import { Guid, TypographyBlueprint, TypographySizes } from "@omnia/fx-models";
|
2
2
|
export declare const useTypographyEditorStore: () => {
|
3
3
|
state: {
|
4
|
-
blueprint:
|
4
|
+
blueprint: TypographyBlueprint;
|
5
5
|
editMode: boolean;
|
6
6
|
selectedTypography: {
|
7
7
|
type: "title" | "text" | "navigation";
|
@@ -9,7 +9,7 @@ export declare const useTypographyEditorStore: () => {
|
|
9
9
|
};
|
10
10
|
};
|
11
11
|
events: {
|
12
|
-
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<
|
12
|
+
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<TypographyBlueprint>;
|
13
13
|
onMutatedEditMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
14
14
|
onMutatedSelectedTypography: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
15
15
|
type: "title" | "text" | "navigation";
|
@@ -19,13 +19,13 @@ export declare const useTypographyEditorStore: () => {
|
|
19
19
|
actions: {
|
20
20
|
onDispatching: {
|
21
21
|
setBlueprint: {
|
22
|
-
subscribe(fn: (blueprint:
|
22
|
+
subscribe(fn: (blueprint: TypographyBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
23
23
|
};
|
24
24
|
addBlueprint: {
|
25
25
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
26
26
|
};
|
27
27
|
copyBlueprint: {
|
28
|
-
subscribe(fn: (blueprint:
|
28
|
+
subscribe(fn: (blueprint: TypographyBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
29
29
|
};
|
30
30
|
setFont: {
|
31
31
|
subscribe(fn: (font: {
|
@@ -39,13 +39,13 @@ export declare const useTypographyEditorStore: () => {
|
|
39
39
|
};
|
40
40
|
onDispatched: {
|
41
41
|
setBlueprint: {
|
42
|
-
subscribe(fn: (result: void, blueprint:
|
42
|
+
subscribe(fn: (result: void, blueprint: TypographyBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
43
43
|
};
|
44
44
|
addBlueprint: {
|
45
45
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
46
46
|
};
|
47
47
|
copyBlueprint: {
|
48
|
-
subscribe(fn: (result: void, blueprint:
|
48
|
+
subscribe(fn: (result: void, blueprint: TypographyBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
49
49
|
};
|
50
50
|
setFont: {
|
51
51
|
subscribe(fn: (result: void, font: {
|
@@ -59,13 +59,13 @@ export declare const useTypographyEditorStore: () => {
|
|
59
59
|
};
|
60
60
|
onFailure: {
|
61
61
|
setBlueprint: {
|
62
|
-
subscribe(fn: (failureReason: any, blueprint:
|
62
|
+
subscribe(fn: (failureReason: any, blueprint: TypographyBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
63
63
|
};
|
64
64
|
addBlueprint: {
|
65
65
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
66
66
|
};
|
67
67
|
copyBlueprint: {
|
68
|
-
subscribe(fn: (failureReason: any, blueprint:
|
68
|
+
subscribe(fn: (failureReason: any, blueprint: TypographyBlueprint) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
69
69
|
};
|
70
70
|
setFont: {
|
71
71
|
subscribe(fn: (failureReason: any, font: {
|
@@ -78,9 +78,9 @@ export declare const useTypographyEditorStore: () => {
|
|
78
78
|
};
|
79
79
|
};
|
80
80
|
} & {
|
81
|
-
setBlueprint(blueprint:
|
81
|
+
setBlueprint(blueprint: TypographyBlueprint): void;
|
82
82
|
addBlueprint(): void;
|
83
|
-
copyBlueprint(blueprint:
|
83
|
+
copyBlueprint(blueprint: TypographyBlueprint): void;
|
84
84
|
setFont(font: {
|
85
85
|
family: string;
|
86
86
|
cdn?: string;
|
@@ -89,19 +89,19 @@ export declare const useTypographyEditorStore: () => {
|
|
89
89
|
};
|
90
90
|
get: {
|
91
91
|
definitionType: () => {
|
92
|
-
xl: import("@omnia/fx-models").
|
93
|
-
l: import("@omnia/fx-models").
|
94
|
-
m: import("@omnia/fx-models").
|
95
|
-
s: import("@omnia/fx-models").
|
96
|
-
xs: import("@omnia/fx-models").
|
92
|
+
xl: import("@omnia/fx-models").TypographyDefinition;
|
93
|
+
l: import("@omnia/fx-models").TypographyDefinition;
|
94
|
+
m: import("@omnia/fx-models").TypographyDefinition;
|
95
|
+
s: import("@omnia/fx-models").TypographyDefinition;
|
96
|
+
xs: import("@omnia/fx-models").TypographyDefinition;
|
97
97
|
} | {
|
98
|
-
l: import("@omnia/fx-models").
|
99
|
-
m: import("@omnia/fx-models").
|
100
|
-
s: import("@omnia/fx-models").
|
101
|
-
xs: import("@omnia/fx-models").
|
98
|
+
l: import("@omnia/fx-models").TypographyDefinition;
|
99
|
+
m: import("@omnia/fx-models").TypographyDefinition;
|
100
|
+
s: import("@omnia/fx-models").TypographyDefinition;
|
101
|
+
xs: import("@omnia/fx-models").TypographyDefinition;
|
102
102
|
} | {
|
103
|
-
l: import("@omnia/fx-models").
|
104
|
-
m: import("@omnia/fx-models").
|
103
|
+
l: import("@omnia/fx-models").TypographyDefinition;
|
104
|
+
m: import("@omnia/fx-models").TypographyDefinition;
|
105
105
|
};
|
106
106
|
};
|
107
107
|
bladeId: {
|
package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/DefinitionsChrome.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import { BackgroundDefinition,
|
2
|
-
export declare class FilledChrome implements
|
1
|
+
import { BackgroundDefinition, ChromeBlueprint, FillDefinition, Guid, Spacing } from "@omnia/fx-models";
|
2
|
+
export declare class FilledChrome implements ChromeBlueprint {
|
3
3
|
name: string;
|
4
4
|
id: Guid;
|
5
5
|
header: {
|
@@ -10,10 +10,10 @@ export declare class FilledChrome implements ChromeDefinition {
|
|
10
10
|
filled: boolean;
|
11
11
|
fill: FillDefinition;
|
12
12
|
};
|
13
|
-
spacing:
|
13
|
+
spacing: Spacing;
|
14
14
|
};
|
15
15
|
}
|
16
|
-
export declare class FilledSmallRoundingChrome implements
|
16
|
+
export declare class FilledSmallRoundingChrome implements ChromeBlueprint {
|
17
17
|
name: string;
|
18
18
|
id: Guid;
|
19
19
|
header: {
|
@@ -21,10 +21,10 @@ export declare class FilledSmallRoundingChrome implements ChromeDefinition {
|
|
21
21
|
};
|
22
22
|
styles: {
|
23
23
|
background: BackgroundDefinition;
|
24
|
-
spacing:
|
24
|
+
spacing: Spacing;
|
25
25
|
};
|
26
26
|
}
|
27
|
-
export declare class FilledLargeRoundingChrome implements
|
27
|
+
export declare class FilledLargeRoundingChrome implements ChromeBlueprint {
|
28
28
|
name: string;
|
29
29
|
id: Guid;
|
30
30
|
header: {
|
@@ -32,10 +32,10 @@ export declare class FilledLargeRoundingChrome implements ChromeDefinition {
|
|
32
32
|
};
|
33
33
|
styles: {
|
34
34
|
background: BackgroundDefinition;
|
35
|
-
spacing:
|
35
|
+
spacing: Spacing;
|
36
36
|
};
|
37
37
|
}
|
38
|
-
export declare class OutlinedChrome implements
|
38
|
+
export declare class OutlinedChrome implements ChromeBlueprint {
|
39
39
|
name: string;
|
40
40
|
id: Guid;
|
41
41
|
header: {
|
@@ -43,10 +43,10 @@ export declare class OutlinedChrome implements ChromeDefinition {
|
|
43
43
|
};
|
44
44
|
styles: {
|
45
45
|
background: BackgroundDefinition;
|
46
|
-
spacing:
|
46
|
+
spacing: Spacing;
|
47
47
|
};
|
48
48
|
}
|
49
|
-
export declare class OutlinedSmallRoundingChrome implements
|
49
|
+
export declare class OutlinedSmallRoundingChrome implements ChromeBlueprint {
|
50
50
|
name: string;
|
51
51
|
id: Guid;
|
52
52
|
header: {
|
@@ -54,10 +54,10 @@ export declare class OutlinedSmallRoundingChrome implements ChromeDefinition {
|
|
54
54
|
};
|
55
55
|
styles: {
|
56
56
|
background: BackgroundDefinition;
|
57
|
-
spacing:
|
57
|
+
spacing: Spacing;
|
58
58
|
};
|
59
59
|
}
|
60
|
-
export declare class OutlinedLargeRoundingChrome implements
|
60
|
+
export declare class OutlinedLargeRoundingChrome implements ChromeBlueprint {
|
61
61
|
name: string;
|
62
62
|
id: Guid;
|
63
63
|
header: {
|
@@ -65,10 +65,10 @@ export declare class OutlinedLargeRoundingChrome implements ChromeDefinition {
|
|
65
65
|
};
|
66
66
|
styles: {
|
67
67
|
background: BackgroundDefinition;
|
68
|
-
spacing:
|
68
|
+
spacing: Spacing;
|
69
69
|
};
|
70
70
|
}
|
71
|
-
export declare class ElevatedChrome implements
|
71
|
+
export declare class ElevatedChrome implements ChromeBlueprint {
|
72
72
|
name: string;
|
73
73
|
id: Guid;
|
74
74
|
header: {
|
@@ -79,10 +79,10 @@ export declare class ElevatedChrome implements ChromeDefinition {
|
|
79
79
|
background: {
|
80
80
|
fill: FillDefinition;
|
81
81
|
};
|
82
|
-
spacing:
|
82
|
+
spacing: Spacing;
|
83
83
|
};
|
84
84
|
}
|
85
|
-
export declare class ElevatedSmallRoundingChrome implements
|
85
|
+
export declare class ElevatedSmallRoundingChrome implements ChromeBlueprint {
|
86
86
|
name: string;
|
87
87
|
id: Guid;
|
88
88
|
header: {
|
@@ -90,10 +90,10 @@ export declare class ElevatedSmallRoundingChrome implements ChromeDefinition {
|
|
90
90
|
};
|
91
91
|
styles: {
|
92
92
|
background: BackgroundDefinition;
|
93
|
-
spacing:
|
93
|
+
spacing: Spacing;
|
94
94
|
};
|
95
95
|
}
|
96
|
-
export declare class ElevatedLargeRoundingChrome implements
|
96
|
+
export declare class ElevatedLargeRoundingChrome implements ChromeBlueprint {
|
97
97
|
name: string;
|
98
98
|
id: Guid;
|
99
99
|
header: {
|
@@ -101,6 +101,6 @@ export declare class ElevatedLargeRoundingChrome implements ChromeDefinition {
|
|
101
101
|
};
|
102
102
|
styles: {
|
103
103
|
background: BackgroundDefinition;
|
104
|
-
spacing:
|
104
|
+
spacing: Spacing;
|
105
105
|
};
|
106
106
|
}
|
package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/ThemeDefinitionInstance.d.ts
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
import {
|
1
|
+
import { Blueprints, ColorSchema, ColorSchemas, Guid, ThemeDefinitionV2 } from "@omnia/fx-models";
|
2
2
|
export declare class ThemeDefinitionInstance implements ThemeDefinitionV2 {
|
3
3
|
id: Guid;
|
4
4
|
colors: ColorSchemas;
|
5
|
-
blueprints:
|
5
|
+
blueprints: Blueprints[];
|
6
6
|
dark: boolean;
|
7
7
|
name: string;
|
8
|
-
constructor(primary: string | ColorSchema, secondary: string | ColorSchema, accent1: string | ColorSchema, accent2: string | ColorSchema, accent3: string | ColorSchema, neutral: string | ColorSchema, background: string | ColorSchema, info: string | ColorSchema, error: string | ColorSchema, name: string, dark: boolean, id: Guid, blueprints:
|
8
|
+
constructor(primary: string | ColorSchema, secondary: string | ColorSchema, accent1: string | ColorSchema, accent2: string | ColorSchema, accent3: string | ColorSchema, neutral: string | ColorSchema, background: string | ColorSchema, info: string | ColorSchema, error: string | ColorSchema, name: string, dark: boolean, id: Guid, blueprints: Blueprints[]);
|
9
9
|
}
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import { ChromeBlueprints } from "@omnia/fx-models";
|
2
2
|
import { ElevatedSmallRoundingChrome, FilledChrome, FilledSmallRoundingChrome, OutlinedSmallRoundingChrome } from "../../core";
|
3
|
-
export declare class DefaultChromeBlueprint implements
|
3
|
+
export declare class DefaultChromeBlueprint implements ChromeBlueprints {
|
4
4
|
type: "chrome";
|
5
5
|
name: string;
|
6
6
|
default: FilledChrome;
|
@@ -1,22 +1,22 @@
|
|
1
|
-
import {
|
2
|
-
export declare class MD1Blueprint implements
|
1
|
+
import { Blueprint, ComponentBlueprints, Guid } from "@omnia/fx-models";
|
2
|
+
export declare class MD1Blueprint implements ComponentBlueprints {
|
3
3
|
id: Guid;
|
4
4
|
name: string;
|
5
5
|
type: "component";
|
6
|
-
default: Array<
|
6
|
+
default: Array<Blueprint>;
|
7
7
|
constructor(preview?: boolean);
|
8
8
|
}
|
9
|
-
export declare class MD2Blueprint implements
|
9
|
+
export declare class MD2Blueprint implements ComponentBlueprints {
|
10
10
|
id: Guid;
|
11
11
|
name: string;
|
12
12
|
type: "component";
|
13
|
-
default: Array<
|
13
|
+
default: Array<Blueprint>;
|
14
14
|
constructor(preview?: boolean);
|
15
15
|
}
|
16
|
-
export declare class MD3Blueprint implements
|
16
|
+
export declare class MD3Blueprint implements ComponentBlueprints {
|
17
17
|
type: "component";
|
18
18
|
id: Guid;
|
19
19
|
name: string;
|
20
|
-
default: Array<
|
20
|
+
default: Array<Blueprint>;
|
21
21
|
constructor(preview?: boolean);
|
22
22
|
}
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import { SpacingBlueprints } from "@omnia/fx-models";
|
2
2
|
import { DefaultInnerSpacing, DefaultLayoutSpacing, PreviewInnerSpacing } from "./DefinitionsSpacing";
|
3
|
-
export declare class DefaultSpacingBlueprint implements
|
3
|
+
export declare class DefaultSpacingBlueprint implements SpacingBlueprints {
|
4
4
|
type: "spacing";
|
5
5
|
name: string;
|
6
6
|
default: {
|
@@ -9,7 +9,7 @@ export declare class DefaultSpacingBlueprint implements SpacingBlueprint {
|
|
9
9
|
};
|
10
10
|
constructor();
|
11
11
|
}
|
12
|
-
export declare class PreviewSPacingBlueprint implements
|
12
|
+
export declare class PreviewSPacingBlueprint implements SpacingBlueprints {
|
13
13
|
type: "spacing";
|
14
14
|
name: string;
|
15
15
|
default: {
|
@@ -1,26 +1,26 @@
|
|
1
|
-
import {
|
1
|
+
import { TypographyBlueprints, TypographyBlueprint } from "@omnia/fx-models";
|
2
2
|
import { DefaultTypography, FunkyTypography, PreviewMiniTypography, PreviewTypography } from "./DefinitionsTypography";
|
3
|
-
export declare class DefaultTypographyBlueprint implements
|
3
|
+
export declare class DefaultTypographyBlueprint implements TypographyBlueprints {
|
4
4
|
type: "typography";
|
5
5
|
name: string;
|
6
6
|
default: DefaultTypography;
|
7
7
|
constructor();
|
8
8
|
}
|
9
|
-
export declare class FunkyTypographyBlueprint implements
|
9
|
+
export declare class FunkyTypographyBlueprint implements TypographyBlueprints {
|
10
10
|
type: "typography";
|
11
11
|
name: string;
|
12
12
|
default: FunkyTypography;
|
13
13
|
constructor();
|
14
14
|
}
|
15
|
-
export declare class PreviewTypographyBlueprint implements
|
15
|
+
export declare class PreviewTypographyBlueprint implements TypographyBlueprints {
|
16
16
|
type: "typography";
|
17
17
|
name: string;
|
18
18
|
default: PreviewTypography;
|
19
19
|
constructor();
|
20
20
|
}
|
21
|
-
export declare class PreviewMiniTypographyBlueprint implements
|
21
|
+
export declare class PreviewMiniTypographyBlueprint implements TypographyBlueprints {
|
22
22
|
type: "typography";
|
23
|
-
variant1?:
|
23
|
+
variant1?: TypographyBlueprint;
|
24
24
|
name: string;
|
25
25
|
default: PreviewMiniTypography;
|
26
26
|
constructor();
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import { Guid,
|
2
|
-
export declare class FunkyTypography implements
|
3
|
-
id: Guid;
|
1
|
+
import { Guid, TypographyBlueprint } from "@omnia/fx-models";
|
2
|
+
export declare class FunkyTypography implements TypographyBlueprint {
|
4
3
|
name: string;
|
5
4
|
type: "typography";
|
6
5
|
font: {
|
6
|
+
id: Guid;
|
7
7
|
family: string;
|
8
8
|
cdn: string;
|
9
9
|
};
|
@@ -101,11 +101,11 @@ export declare class FunkyTypography implements TypographyDefinition {
|
|
101
101
|
};
|
102
102
|
};
|
103
103
|
}
|
104
|
-
export declare class DefaultTypography implements
|
105
|
-
id: Guid;
|
104
|
+
export declare class DefaultTypography implements TypographyBlueprint {
|
106
105
|
name: string;
|
107
106
|
type: "typography";
|
108
107
|
font: {
|
108
|
+
id: Guid;
|
109
109
|
family: string;
|
110
110
|
};
|
111
111
|
title: {
|
@@ -202,7 +202,7 @@ export declare class DefaultTypography implements TypographyDefinition {
|
|
202
202
|
};
|
203
203
|
};
|
204
204
|
}
|
205
|
-
export declare class PreviewTypography implements
|
205
|
+
export declare class PreviewTypography implements TypographyBlueprint {
|
206
206
|
id: Guid;
|
207
207
|
name: string;
|
208
208
|
type: "typography";
|
@@ -302,7 +302,7 @@ export declare class PreviewTypography implements TypographyDefinition {
|
|
302
302
|
};
|
303
303
|
};
|
304
304
|
}
|
305
|
-
export declare class PreviewMiniTypography implements
|
305
|
+
export declare class PreviewMiniTypography implements TypographyBlueprint {
|
306
306
|
name: string;
|
307
307
|
id: Guid;
|
308
308
|
type: "typography";
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import { ChromeBlueprints } from "@omnia/fx-models";
|
2
2
|
import { FilledChrome } from "../../core";
|
3
|
-
export declare class DefaultChromeBlueprint implements
|
3
|
+
export declare class DefaultChromeBlueprint implements ChromeBlueprints {
|
4
4
|
type: "chrome";
|
5
5
|
name: string;
|
6
6
|
default: FilledChrome;
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import {
|
2
|
-
export declare class MD3Blueprint implements
|
1
|
+
import { Blueprint, ComponentBlueprints, Guid } from "@omnia/fx-models";
|
2
|
+
export declare class MD3Blueprint implements ComponentBlueprints {
|
3
3
|
type: "component";
|
4
4
|
id: Guid;
|
5
5
|
name: string;
|
6
|
-
default: Array<
|
6
|
+
default: Array<Blueprint>;
|
7
7
|
constructor(preview?: boolean);
|
8
8
|
}
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import { SpacingBlueprints } from "@omnia/fx-models";
|
2
2
|
import { DefaultInnerSpacing, DefaultLayoutSpacing } from "./DefinitionsSpacing";
|
3
|
-
export declare class DefaultSpacingBlueprint implements
|
3
|
+
export declare class DefaultSpacingBlueprint implements SpacingBlueprints {
|
4
4
|
type: "spacing";
|
5
5
|
name: string;
|
6
6
|
default: {
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import { TypographyBlueprints } from "@omnia/fx-models";
|
2
2
|
import { DocumentationTypography } from "./DefinitionsTypography";
|
3
|
-
export declare class DefaultTypographyBlueprint implements
|
3
|
+
export declare class DefaultTypographyBlueprint implements TypographyBlueprints {
|
4
4
|
type: "typography";
|
5
5
|
name: string;
|
6
6
|
default: DocumentationTypography;
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { Guid,
|
2
|
-
export declare class DocumentationTypography implements
|
1
|
+
import { Guid, TypographyBlueprint } from "@omnia/fx-models";
|
2
|
+
export declare class DocumentationTypography implements TypographyBlueprint {
|
3
3
|
name: string;
|
4
4
|
id: Guid;
|
5
5
|
title: {
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import { ChromeBlueprints } from "@omnia/fx-models";
|
2
2
|
import { ElevatedSmallRoundingChrome, FilledChrome, FilledSmallRoundingChrome, OutlinedSmallRoundingChrome } from "../../core";
|
3
|
-
export declare class DefaultChromeBlueprint implements
|
3
|
+
export declare class DefaultChromeBlueprint implements ChromeBlueprints {
|
4
4
|
type: "chrome";
|
5
5
|
name: string;
|
6
6
|
default: FilledChrome;
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import {
|
2
|
-
export declare class MD3Blueprint implements
|
1
|
+
import { Blueprint, ComponentBlueprints, Guid } from "@omnia/fx-models";
|
2
|
+
export declare class MD3Blueprint implements ComponentBlueprints {
|
3
3
|
type: "component";
|
4
4
|
id: Guid;
|
5
5
|
name: string;
|
6
|
-
default: Array<
|
6
|
+
default: Array<Blueprint>;
|
7
7
|
constructor(preview?: boolean);
|
8
8
|
}
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import { SpacingBlueprints } from "@omnia/fx-models";
|
2
2
|
import { DefaultInnerSpacing, DefaultLayoutSpacing } from "./DefinitionsSpacing";
|
3
|
-
export declare class DefaultSpacingBlueprint implements
|
3
|
+
export declare class DefaultSpacingBlueprint implements SpacingBlueprints {
|
4
4
|
type: "spacing";
|
5
5
|
name: string;
|
6
6
|
default: {
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import { TypographyBlueprints } from "@omnia/fx-models";
|
2
2
|
import { EditorTypography } from "./DefinitionsTypography";
|
3
|
-
export declare class DefaultTypographyBlueprint implements
|
3
|
+
export declare class DefaultTypographyBlueprint implements TypographyBlueprints {
|
4
4
|
type: "typography";
|
5
5
|
name: string;
|
6
6
|
default: EditorTypography;
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { Guid,
|
2
|
-
export declare class EditorTypography implements
|
1
|
+
import { Guid, TypographyBlueprint } from "@omnia/fx-models";
|
2
|
+
export declare class EditorTypography implements TypographyBlueprint {
|
3
3
|
name: "Davids editor typooos";
|
4
|
-
id: Guid;
|
5
4
|
font: {
|
5
|
+
id: Guid;
|
6
6
|
family: string;
|
7
7
|
cdn: string;
|
8
8
|
};
|
@@ -1,12 +1,12 @@
|
|
1
|
-
import {
|
1
|
+
import { BlueprintVariant, ChromeBlueprints } from "@omnia/fx-models";
|
2
2
|
import { useThemeStoreV2 } from "./ThemeStoreV2";
|
3
3
|
export declare const useChromeBlueprintStore: () => {
|
4
4
|
state: {
|
5
|
-
blueprint:
|
5
|
+
blueprint: ChromeBlueprints;
|
6
6
|
id: import("@omnia/fx-models").GuidValue;
|
7
7
|
};
|
8
8
|
events: {
|
9
|
-
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<
|
9
|
+
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<ChromeBlueprints>;
|
10
10
|
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
11
11
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
12
12
|
actions: {
|
@@ -43,11 +43,11 @@ export declare const useChromeBlueprintStore: () => {
|
|
43
43
|
};
|
44
44
|
get: {
|
45
45
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
46
|
-
blueprint<TType extends import("@omnia/fx-models").
|
47
|
-
typography(): import("@omnia/fx-models").
|
48
|
-
spacing(): import("@omnia/fx-models").
|
49
|
-
chrome():
|
50
|
-
component(): import("@omnia/fx-models").
|
46
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
47
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
48
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
49
|
+
chrome(): ChromeBlueprints;
|
50
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
51
51
|
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;
|
52
52
|
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;
|
53
53
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -91,11 +91,11 @@ export declare const useChromeBlueprintStore: () => {
|
|
91
91
|
};
|
92
92
|
get: {
|
93
93
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
94
|
-
blueprint<TType extends import("@omnia/fx-models").
|
95
|
-
typography(): import("@omnia/fx-models").
|
96
|
-
spacing(): import("@omnia/fx-models").
|
97
|
-
chrome():
|
98
|
-
component(): import("@omnia/fx-models").
|
94
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
95
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
96
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
97
|
+
chrome(): ChromeBlueprints;
|
98
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
99
99
|
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;
|
100
100
|
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;
|
101
101
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -139,11 +139,11 @@ export declare const useChromeBlueprintStore: () => {
|
|
139
139
|
};
|
140
140
|
get: {
|
141
141
|
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
142
|
-
blueprint<TType extends import("@omnia/fx-models").
|
143
|
-
typography(): import("@omnia/fx-models").
|
144
|
-
spacing(): import("@omnia/fx-models").
|
145
|
-
chrome():
|
146
|
-
component(): import("@omnia/fx-models").
|
142
|
+
blueprint<TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType): TType;
|
143
|
+
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
144
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
145
|
+
chrome(): ChromeBlueprints;
|
146
|
+
component(): import("@omnia/fx-models").ComponentBlueprints;
|
147
147
|
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;
|
148
148
|
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;
|
149
149
|
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
@@ -383,7 +383,7 @@ export declare const useChromeBlueprintStore: () => {
|
|
383
383
|
};
|
384
384
|
blueprints: {
|
385
385
|
type: import("@omnia/fx-models").BlueprintType;
|
386
|
-
name
|
386
|
+
name?: string;
|
387
387
|
}[];
|
388
388
|
};
|
389
389
|
};
|
@@ -416,11 +416,11 @@ export declare const useChromeBlueprintStore: () => {
|
|
416
416
|
};
|
417
417
|
get: {
|
418
418
|
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
419
|
-
blueprint: <TType extends import("@omnia/fx-models").
|
420
|
-
typography: () => import("@omnia/fx-models").
|
421
|
-
spacing: () => import("@omnia/fx-models").
|
422
|
-
chrome: () =>
|
423
|
-
component: () => import("@omnia/fx-models").
|
419
|
+
blueprint: <TType extends import("@omnia/fx-models").Blueprints>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
420
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
421
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
422
|
+
chrome: () => ChromeBlueprints;
|
423
|
+
component: () => import("@omnia/fx-models").ComponentBlueprints;
|
424
424
|
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;
|
425
425
|
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;
|
426
426
|
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
@@ -429,8 +429,8 @@ export declare const useChromeBlueprintStore: () => {
|
|
429
429
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
430
430
|
};
|
431
431
|
};
|
432
|
-
hasBlueprintVariant(type:
|
433
|
-
blueprintByType(type:
|
432
|
+
hasBlueprintVariant(type: BlueprintVariant | string): boolean;
|
433
|
+
blueprintByType(type: BlueprintVariant | string): import("@omnia/fx-models").ChromeBlueprint;
|
434
434
|
};
|
435
435
|
deactivated(): void;
|
436
436
|
};
|