@omnia/fx 8.0.17-vnext → 8.0.18-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/console/components/Console.d.ts +91 -40
- package/internal-do-not-import-from-here/console/components/SocketComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/contexts/index.d.ts +0 -1
- package/internal-do-not-import-from-here/core/DefineFactory.d.ts +12 -0
- package/internal-do-not-import-from-here/core/Extend.d.ts +1 -1
- package/internal-do-not-import-from-here/core/Inject.d.ts +4 -2
- package/internal-do-not-import-from-here/core/Injectable.d.ts +1 -0
- package/internal-do-not-import-from-here/core/Provide.d.ts +1 -1
- package/internal-do-not-import-from-here/core/ServiceContainer.d.ts +22 -5
- package/internal-do-not-import-from-here/core/console/ConsoleKeyboardShortcuts.d.ts +1 -5
- package/internal-do-not-import-from-here/core/http/HttpClient.d.ts +1 -0
- package/internal-do-not-import-from-here/core/index.d.ts +2 -1
- package/internal-do-not-import-from-here/core/messaging/BuiltInTopics.d.ts +1 -0
- package/internal-do-not-import-from-here/core/messaging/InternalTopics.d.ts +3 -0
- package/internal-do-not-import-from-here/core/services/ClientManifestHelper.d.ts +5 -0
- package/internal-do-not-import-from-here/core/services/LocalizationService.d.ts +15 -0
- package/internal-do-not-import-from-here/core/services/ServiceManifestProvider.d.ts +9 -3
- package/internal-do-not-import-from-here/core/services/ServiceManifestProviderInternal.d.ts +3 -3
- package/internal-do-not-import-from-here/core/services/index.d.ts +1 -0
- package/internal-do-not-import-from-here/core/use/UseEventHook.d.ts +21 -4
- package/internal-do-not-import-from-here/core/utils/Utils.d.ts +8 -8
- package/internal-do-not-import-from-here/expose.d.ts +2 -1
- package/internal-do-not-import-from-here/index.d.ts +25 -13
- package/internal-do-not-import-from-here/libs/prismjs/index.d.ts +2 -0
- package/internal-do-not-import-from-here/manifests/omfx.libs.prosemirror.manifest.json +1 -0
- package/internal-do-not-import-from-here/manifests/omnia.fx.context.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +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.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.richtexteditor.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/microsoftteams/index.d.ts +1 -0
- package/internal-do-not-import-from-here/runtime/core/InternalManifestLog.d.ts +3 -1
- package/internal-do-not-import-from-here/runtime/core/InternalWebComponentBootstrapper.d.ts +6 -12
- package/internal-do-not-import-from-here/runtime/core/LocalHostingService.d.ts +2 -2
- package/internal-do-not-import-from-here/runtime/core/ManifestByElementLoader.d.ts +1 -0
- package/internal-do-not-import-from-here/runtime/core/ManifestPublisher.d.ts +1 -1
- package/internal-do-not-import-from-here/runtime/core/ManifestResourceLoader.d.ts +5 -4
- package/internal-do-not-import-from-here/runtime/core/PrivateWebComponentBootstrapper.d.ts +7 -13
- package/internal-do-not-import-from-here/runtime/core/ServerSideLoader.d.ts +4 -4
- package/internal-do-not-import-from-here/services/AiSettingsService.d.ts +10 -0
- package/internal-do-not-import-from-here/services/AzureOpenAIService.d.ts +19 -0
- package/internal-do-not-import-from-here/services/EnterprisePropertyService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/FeatureService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/LinkStatusService.d.ts +9 -0
- package/internal-do-not-import-from-here/services/LocalizationService.d.ts +4 -9
- package/internal-do-not-import-from-here/services/OmniaSearchService.d.ts +13 -0
- package/internal-do-not-import-from-here/services/SecurityService.d.ts +3 -2
- package/internal-do-not-import-from-here/services/VersionedLayoutService.d.ts +2 -0
- package/internal-do-not-import-from-here/services/identities/GroupService.d.ts +3 -3
- package/internal-do-not-import-from-here/services/identities/IdentityAuthenticationService.d.ts +8 -0
- package/internal-do-not-import-from-here/services/identities/IdentityCreationRequestService.d.ts +11 -0
- package/internal-do-not-import-from-here/services/identities/IdentityService.d.ts +6 -1
- package/internal-do-not-import-from-here/services/identities/UserIdentityService.d.ts +8 -4
- package/internal-do-not-import-from-here/services/identities/UserService.d.ts +10 -5
- package/internal-do-not-import-from-here/services/identities/index.d.ts +2 -0
- package/internal-do-not-import-from-here/services/index.d.ts +5 -0
- package/internal-do-not-import-from-here/services/permissions/PermissionService.d.ts +2 -1
- package/internal-do-not-import-from-here/services/properties/EnterprisePropertiesProvider.d.ts +30 -0
- package/internal-do-not-import-from-here/services/properties/bindings/PropertyBindingService.d.ts +12 -0
- package/internal-do-not-import-from-here/services/properties/bindings/bindingProviders/BusinessProfilePropertyBindingProvider.d.ts +9 -0
- package/internal-do-not-import-from-here/services/properties/bindings/bindingProviders/ExtendedEnterprisePropertyBindingProvider.d.ts +10 -0
- package/internal-do-not-import-from-here/services/properties/bindings/bindingProviders/IdentityPropertyBindingProvider.d.ts +10 -0
- package/internal-do-not-import-from-here/services/properties/bindings/bindingProviders/UserPropertyBindingProvider.d.ts +9 -0
- package/internal-do-not-import-from-here/services/properties/bindings/bindingProviders/index.d.ts +4 -0
- package/internal-do-not-import-from-here/services/properties/bindings/index.d.ts +2 -0
- package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertiesService.d.ts +88 -0
- package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyDefinitionHandler.d.ts +35 -0
- package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyProvider.d.ts +49 -0
- package/internal-do-not-import-from-here/services/properties/datasource/TestDataSourceService.d.ts +6 -0
- package/internal-do-not-import-from-here/services/properties/datasource/index.d.ts +4 -0
- package/internal-do-not-import-from-here/services/properties/index.d.ts +3 -0
- package/internal-do-not-import-from-here/shared/broadcasting/InternalTopics.d.ts +11 -1
- package/internal-do-not-import-from-here/shared/http/Http.d.ts +141 -0
- package/internal-do-not-import-from-here/shared/http/index.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/DynamicState.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/Equals.d.ts +3 -0
- package/internal-do-not-import-from-here/shared/models/Equals.js +45 -0
- package/internal-do-not-import-from-here/shared/models/Future.d.ts +17 -1
- package/internal-do-not-import-from-here/shared/models/Future.js +26 -5
- package/internal-do-not-import-from-here/shared/models/Guid.d.ts +9 -2
- package/internal-do-not-import-from-here/shared/models/Guid.js +26 -4
- package/internal-do-not-import-from-here/shared/models/HttpCommon.d.ts +27 -0
- package/internal-do-not-import-from-here/shared/models/HttpCommon.js +2 -0
- package/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.d.ts +7 -0
- package/internal-do-not-import-from-here/shared/models/StronglyTypedId.d.ts +3 -0
- package/internal-do-not-import-from-here/shared/models/StronglyTypedId.js +2 -0
- package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +2 -1
- package/internal-do-not-import-from-here/shared/models/WorkerProxyFuncs.d.ts +7 -1
- package/internal-do-not-import-from-here/shared/models/WorkerProxyFuncs.js +5 -1
- package/internal-do-not-import-from-here/shared/models/hub/activities/Activity.d.ts +58 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/Activity.js +7 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityChannel.d.ts +7 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityChannel.js +5 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityDefinition.d.ts +14 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityDefinition.js +15 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityFeed.d.ts +21 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityFeed.js +2 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityRenderer.d.ts +14 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityRenderer.js +5 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivitySender.d.ts +12 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivitySender.js +5 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.d.ts +22 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.js +31 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/index.d.ts +7 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/index.js +10 -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 +4 -0
- package/internal-do-not-import-from-here/shared/models/index.d.ts +5 -1
- package/internal-do-not-import-from-here/shared/models/index.js +5 -1
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +61 -22
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.js +16 -0
- package/internal-do-not-import-from-here/shared/models/theming/SharedBlueprintMethods.d.ts +2 -0
- package/internal-do-not-import-from-here/shared/models/theming/SharedBlueprintMethods.js +37 -0
- package/internal-do-not-import-from-here/shared/models/theming/SharedColorMethods.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/theming/SharedColorMethods.js +45 -0
- package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.d.ts +23 -0
- package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.js +11 -0
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +26 -14
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.js +8 -5
- package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +31 -12
- package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.js +11 -6
- package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.d.ts +7 -5
- package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.js +47 -38
- package/internal-do-not-import-from-here/shared/models/theming/index.d.ts +4 -0
- package/internal-do-not-import-from-here/shared/models/theming/index.js +4 -0
- package/internal-do-not-import-from-here/shared/services/ActivityService.d.ts +9 -0
- package/internal-do-not-import-from-here/shared/services/DefineService.d.ts +6 -0
- package/internal-do-not-import-from-here/shared/services/RealtimeService.d.ts +7 -9
- package/internal-do-not-import-from-here/shared/services/index.d.ts +2 -0
- package/internal-do-not-import-from-here/spfx/components/OmniaWPContainer.d.ts +1 -1
- package/internal-do-not-import-from-here/spfx/components/OmniaWPContainerSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/stores/AiSettingsStore.d.ts +36 -0
- package/internal-do-not-import-from-here/stores/AppNamingPolicyStore.d.ts +1 -1
- package/internal-do-not-import-from-here/stores/DefineStore.d.ts +36 -29
- package/internal-do-not-import-from-here/stores/EnterprisePropertyStore.d.ts +8 -3
- package/internal-do-not-import-from-here/stores/FeatureStore.d.ts +2 -1
- package/internal-do-not-import-from-here/stores/GroupIdentityStore.d.ts +2 -0
- package/internal-do-not-import-from-here/stores/IdentityStore.d.ts +23 -5
- package/internal-do-not-import-from-here/stores/IdentitySyncProviderStore.d.ts +2 -1
- package/internal-do-not-import-from-here/stores/LinkReferencesStore.d.ts +23 -0
- package/internal-do-not-import-from-here/stores/LocalizationStore.d.ts +28 -14
- package/internal-do-not-import-from-here/stores/MediaPickerStore.d.ts +3 -2
- package/internal-do-not-import-from-here/stores/ProfileCardStore.d.ts +7 -3
- package/internal-do-not-import-from-here/stores/Store.d.ts +4 -5
- package/internal-do-not-import-from-here/stores/TimeZoneStore.d.ts +3 -6
- package/internal-do-not-import-from-here/stores/UserIdentityStore.d.ts +11 -2
- package/internal-do-not-import-from-here/stores/VersionedLayoutStore.d.ts +9 -0
- package/internal-do-not-import-from-here/stores/index.d.ts +3 -0
- package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +71 -0
- package/internal-do-not-import-from-here/stores/oxide/ComponentSharedSettingsStore.d.ts +24 -0
- package/internal-do-not-import-from-here/stores/oxide/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/AppRollupFilterEngineContext.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +74 -4
- package/internal-do-not-import-from-here/ux/DefineVueTypings.d.ts +112 -0
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +5 -4
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +272 -0
- package/internal-do-not-import-from-here/ux/ListViewComponentBase.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/OmniaTheming.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/ScrollHelper.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/SidePanelContext.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/TokenBasedRouter.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/UxCore.d.ts +1 -3
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +283 -26
- package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +73 -24
- package/internal-do-not-import-from-here/ux/VueTags.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/actionhandler/ActionHandler.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.css.d.ts +12 -1
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChromeWrapper.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/IQueryablePropertiesJourney.d.ts +4 -13
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesAddBlade.d.ts +139 -34
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesHomeBlade.d.ts +176 -38
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesInfoBlade.d.ts +124 -0
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesJourney.d.ts +176 -19
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesJourneyConstants.d.ts +4 -6
- package/internal-do-not-import-from-here/ux/admin/store/AdminStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/alignmentpicker/AlignmentPicker.d.ts +158 -0
- package/internal-do-not-import-from-here/ux/alignmentpicker/docs/AlignmentPickerExample.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/alignmentpicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/alignmentpicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/app/AppPropertiesProvider.d.ts +33 -18
- package/internal-do-not-import-from-here/ux/app/appinstance/renderer/AppInstanceRollup.d.ts +79 -35
- package/internal-do-not-import-from-here/ux/app/appinstance/renderer/AppInstanceRollupRenderer.d.ts +92 -0
- package/internal-do-not-import-from-here/ux/app/appinstance/renderer/metric/MetricDetailsDialogRenderer.d.ts +106 -0
- package/internal-do-not-import-from-here/ux/app/appinstance/renderer/metric/MetricRenderer.d.ts +100 -0
- package/internal-do-not-import-from-here/ux/app/appinstance/settings/AppInstanceRollupSettings.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/app/appinstance/settings/components/DisplayTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/settings/components/MetricTab.d.ts +111 -0
- package/internal-do-not-import-from-here/ux/app/appinstance/settings/components/QueryTab.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/app/appinstance/shared/AppInstanceRollupRenderingInstance.d.ts +19 -0
- package/internal-do-not-import-from-here/ux/app/appinstance/view/listing/ListView.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/app/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/app/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/app/management/AppManagement.d.ts +82 -38
- package/internal-do-not-import-from-here/ux/app/management/components/TabsManagement.d.ts +438 -37
- package/internal-do-not-import-from-here/ux/app/management/core/loc.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditAliasDialog.d.ts +70 -26
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditItem.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditPermissionDialog.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Features.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InstanceTab.d.ts +54 -29
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Item.d.ts +91 -47
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/ItemAction.d.ts +78 -34
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/ItemAdmin.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Listing.d.ts +74 -30
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/EditLayout.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutListing.d.ts +74 -30
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutTab.d.ts +54 -29
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/addlayout/AddLayout.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/AffixRow.d.ts +86 -19
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/BlockWords.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/EditNamingPolicies.d.ts +67 -23
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/ListingNamingPolicies.d.ts +53 -12
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/NamingPolicyTab.d.ts +54 -29
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/PreviewPolicyNaming.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/app/management/tabs/shared/addbutton/AddButton.d.ts +74 -30
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +75 -31
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateDetail.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateTab.d.ts +54 -29
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplatesListing.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/CustomSteps.d.ts +82 -38
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/Features.d.ts +82 -38
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/GeneralTab.d.ts +82 -38
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PoliciesTab.d.ts +176 -36
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertiesTab.d.ts +82 -38
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts +83 -39
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/StepRow.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/appprovisioning/AppInstanceComponentProps.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/IAppProvisioningValidatorComponent.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceeditingjourney/EditEnterprisePropertiesBlade.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceeditingjourney/EditProperiesBlade.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstancepermissionblade/AppInstancePermissionBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceroutepathblade/AppInstanceRoutePathBlade.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/apppropertynamingpolicyinput/IAppPropertyNamingPolicyInput.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningwizard/AppProvisioningWizard.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/AppRouteInput.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/IAppRouteInput.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/appshowinpubliclistingsinput/AppShowInPublicListingsInput.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitledescription/AppDescriptionInput.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitledescription/IAppDescriptionInput.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitleinput/AppTitleInput.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitleinput/IAppTitleInput.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceCompletedStepVueComponent.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceEnterprisePropertiesVueComponent.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceInformationVueComponent.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstancePermissionsVueComponent.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppProvisioningComponentBase.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppProvisioningStepComponentBase.d.ts +1 -3
- package/internal-do-not-import-from-here/ux/authsetup/AuthSetup.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/authsetup/AuthSetup.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/authsetup/loc/localize.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/authsetup/services/AuthSetupService.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/authsetup/steps/EmailVerify.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/authsetup/steps/OTP.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/authsetup/steps/Password.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/blueprintpicker/BlueprintPicker.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/blueprintpicker/BlueprintPicker.d.ts +434 -0
- package/internal-do-not-import-from-here/ux/blueprintpicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpicker/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/blueprintpicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/button/Button.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/button/ButtonPresets.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/button/IButton.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/colorpicker/ColorPicker.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/colorpicker/IColorPicker.d.ts +1 -1
- 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/colorschemapicker/ColorSchemaDefinitionPicker.d.ts +481 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaEditor.css.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaEditor.d.ts +440 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +486 -0
- package/internal-do-not-import-from-here/ux/{velcron/editor/components/pickers/ColorSchemaPicker/ColorSchemaPicker.css.d.ts → colorschemapicker/ColorSchemaViewer.css.d.ts} +2 -2
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaViewer.d.ts +511 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/colorsettingspicker/ColorSettingsPicker.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/colorsettingspicker/ColorSettingsPicker.d.ts +488 -0
- package/internal-do-not-import-from-here/ux/colorsettingspicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/colorsettingspicker/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/colorsettingspicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/commandpalette/CommandPalette.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/confirmdialog/ConfirmDialog.d.ts +326 -24
- package/internal-do-not-import-from-here/ux/confirmdialog/IConfirmDialog.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/confirmdialog/IVueConfirmDialog.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +225 -20
- package/internal-do-not-import-from-here/ux/datetimezonepicker/docs/DateTimeZonePickerExample.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/datetimezonepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/datetimezonepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +157 -13
- package/internal-do-not-import-from-here/ux/datetimezonerenderer/IDateTimeZoneRenderer.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +153 -109
- package/internal-do-not-import-from-here/ux/directives/IframeResizer.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/directives/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/Docs.d.ts +141 -0
- package/internal-do-not-import-from-here/ux/docs/chrome/DocsChrome.css.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/docs/chrome/DocsChrome.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/docs/chrome/SampleViewer.css.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/docs/chrome/SampleViewer.d.ts +168 -0
- package/internal-do-not-import-from-here/ux/docs/chrome/VelcronSampleViewer.css.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/docs/chrome/VelcronSampleViewer.d.ts +217 -0
- package/internal-do-not-import-from-here/ux/docs/imports.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/VModel.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/Emits.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/Properties.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/Slots.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/VModel.d.ts +422 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/index.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/index.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/services/Http.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/services/Introduction.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/services/Use.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/services/docs/Service.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/services/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/stores/Actions.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/stores/Introduction.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/stores/State.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/stores/Use.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/stores/docs/Store.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/stores/index.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/theming/Introduction.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/theming/Styling.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/theming/Themestyling.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/theming/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/use/Introduction.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/use/UseBlockInstance.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/use/docs/UseBlockInstance.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/use/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/docs/services/DocsService.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/docs/services/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/documenticon/DocumentIcon.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/ActionToolbar.d.ts +226 -26
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/DisplaySettingsToolbar.d.ts +196 -17
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/IActionToolbar.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/editorchrome/app_bar/AppBar.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/editorchrome/app_bar/AppBar.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.css.d.ts +3 -19
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.d.ts +223 -35
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome_old.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/editorchrome/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/editorchrome/panel_tabs/TabsPanel.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/editorchrome/panel_tabs/TabsPanel.d.ts +140 -21
- package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorChromeStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/enterpriseglossary/componentbase/EnterpriseGlossaryTermComponentBase.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/EnterprisePropertyComponentProps.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/richtextfield/RichTextFieldEdit.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/tagsproperty/TagsPropertyEdit.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/EnterprisePropertyPicker.d.ts +275 -78
- package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/IEnterprisePropertyPicker.d.ts +1 -12
- package/internal-do-not-import-from-here/ux/enterpriseproperties/renderers/EnterprisePropertyConfiguration.d.ts +453 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/renderers/EnterprisePropertyValue.d.ts +540 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/settings/extendedproperty/ExtendedPropertySettings.d.ts +76 -26
- package/internal-do-not-import-from-here/ux/enterpriseproperties/settings/registration/RegistrationEnterprisePropertyToPropertySettingMap.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/datafield/DataFieldValueDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterprisepropertysets/picker/EnterprisePropertySetPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/errormessage/ErrorMessage.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.css.d.ts +2 -7
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +153 -92
- package/internal-do-not-import-from-here/ux/features/FeatureActivation_old.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/features/FeatureComponentProps.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/features/FeaturesJourney.css.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/features/FeaturesJourney.d.ts +153 -18
- package/internal-do-not-import-from-here/ux/features/FeaturesJourneyTenant.d.ts +91 -6
- package/internal-do-not-import-from-here/ux/features/FeaturesJourney_old.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/features/blades/FeatureHomeBlade.d.ts +152 -12
- package/internal-do-not-import-from-here/ux/features/blades/FeaturePropertiesBlade.d.ts +91 -34
- package/internal-do-not-import-from-here/ux/features/blades/FeaturePropertiesBlade_old.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/features/blades/FeauturePropertiesBlad.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/features/index.d.ts +1 -3
- package/internal-do-not-import-from-here/ux/features/loc/localize.d.ts +8 -1
- package/internal-do-not-import-from-here/ux/features/models/FeatureInstanceDetails.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/features/models/RequiredAzureAdPermission.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/features/models/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +87 -0
- package/internal-do-not-import-from-here/ux/features/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineHandlerStorage.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +106 -52
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSection.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSettings.d.ts +70 -26
- package/internal-do-not-import-from-here/ux/filterengine/Helper.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +54 -29
- package/internal-do-not-import-from-here/ux/filterengine/api/TagsRegistration.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/PropertyDropdownRenderer.d.ts +111 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/PropertyListRenderer.d.ts +106 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/boolean/BooleanPropertyRenderer.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/date/DatePropertyRenderer.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/date/DateTimePeriodSlider.d.ts +110 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/dialog/DialogContent.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/number/NumberPropertyRenderer.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChipItem.d.ts +201 -37
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChips.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyItemRenderer.d.ts +81 -37
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyList.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyRenderer.d.ts +73 -18
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyChips.d.ts +101 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyRenderer.d.ts +101 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyRendererStyle.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/text/TextPropertyRefinementList.d.ts +115 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/text/TextPropertyRefinementSelection.d.ts +122 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/text/TextPropertyRenderer.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/boolean/SelectionsAreaBooleanRenderer.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/date/SelectionsAreaDateRenderer.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/number/SelectionsAreaNumberRenderer.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/person/SelectionsAreaPersonRenderer.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/tags/SelectionsAreaTagsRenderer.d.ts +106 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/text/SelectionsAreaTextRenderer.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/PropertyList.d.ts +71 -27
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertyDefaultValueInput.d.ts +79 -29
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertySettings.d.ts +84 -34
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertyDefaultValueInput.d.ts +79 -29
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertySettings.d.ts +84 -34
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertyDefaultValueInput.d.ts +79 -29
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettings.d.ts +84 -34
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettingsFixer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertyDefaultValueInput.d.ts +148 -30
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertySettings.d.ts +84 -34
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertyDefaultValueInput.d.ts +127 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettings.d.ts +132 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettingsFixer.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertyDefaultValueInput.d.ts +79 -29
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettings.d.ts +84 -34
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettingsFixer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/handler/BooleanFilterEngineHandler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/handler/DateFilterEngineHandler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineHandler.d.ts +26 -16
- package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineRouter.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/filterengine/handler/NumberFilterEngineHandler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/handler/PersonFilterEngineHandler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/handler/TagsFilterEngineHandler.d.ts +37 -0
- package/internal-do-not-import-from-here/ux/filterengine/handler/TextFilterEngineHandler.d.ts +10 -6
- package/internal-do-not-import-from-here/ux/filterengine/handler/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterengine/shared/BasePropertySettings.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/filterengine/shared/date/DateTimeFilterEngineHelper.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/filterengine/shared/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.css.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +296 -0
- package/internal-do-not-import-from-here/ux/filterpicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterpicker/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/filterpicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/grecaptcha/GRecaptcha.d.ts +129 -0
- package/internal-do-not-import-from-here/ux/heading/Heading.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/html/HtmlRenderer.d.ts +97 -0
- package/internal-do-not-import-from-here/ux/hub/chat/HubChat.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/hub/chat/HubChat.d.ts +104 -0
- package/internal-do-not-import-from-here/ux/hub/feed/HubFeed.d.ts +577 -0
- package/internal-do-not-import-from-here/ux/hub/feed/HubFeedChrome.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/hub/feed/HubFeedSettings.d.ts +94 -0
- package/internal-do-not-import-from-here/ux/hub/feed/components/StoryComponent.d.ts +123 -0
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/Story.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/hub/feed/stores/ActivityFeedStore.d.ts +97 -0
- package/internal-do-not-import-from-here/ux/hub/feed/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +376 -97
- package/internal-do-not-import-from-here/ux/identities/components/settings/AzureAdSyncProviderSettings.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncPropertyBindingSetup.d.ts +70 -26
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleBlade.d.ts +74 -30
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleSetup.d.ts +70 -26
- package/internal-do-not-import-from-here/ux/identities/loc/Localize.d.ts +13 -8
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.css.d.ts +4 -15
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +436 -141
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +459 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +800 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +589 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +558 -0
- package/internal-do-not-import-from-here/ux/identitypicker/Shared.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/identitypicker/loc/Localize.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/iframe/OmniaIFrameResizer.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/iframe/ResizingIFrame.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/image/scalingsettings/ScalingSettings.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/image/scalingsettings/ScalingSettings.d.ts +533 -0
- package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid copy.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +172 -27
- package/internal-do-not-import-from-here/ux/imagegrid/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/imagegrid/loc/localize.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/imagetransformation/utils.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageSetting/ImageSetting.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformCropper/ImageTransformCropper.d.ts +0 -59
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/cropper/ImageCropMenu.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/cropper/ImageCropper.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/editor/ImageEditor.css.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/editor/ImageEditor.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/editor/ImageEditorCanvas.d.ts +250 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/editor/ImageTransformEditor_old.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/filters/ImageFilters.d.ts +133 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/flipper/ImageFlipper.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/flipper/ImageFlipper.d.ts +118 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/rollup/ImageRollup.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/settings/ImageSettings.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/settings/ImageSettings.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/IImageTransformer.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/imagetransformer/ImageTransformer.d.ts +0 -40
- package/internal-do-not-import-from-here/ux/imagetransformer/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/imageEditor.d.ts +4 -885
- package/internal-do-not-import-from-here/ux/inputlanguagepicker/IInputLanguagePicker.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/inputlanguagepicker/InputLanguagePicker.d.ts +116 -43
- package/internal-do-not-import-from-here/ux/inputtoken/InputToken.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/IJourney.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/MenuBlade.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/journey/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/journey/testbench/JourneyTest.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/journey/testbench/JourneyTest.d.ts +97 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.css.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +392 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyMenu.d.ts +193 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.css.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.d.ts +107 -0
- package/internal-do-not-import-from-here/ux/journey/v2/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/v2/docs/ExampleComponentsMenu.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/v2/docs/SampleButtons.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/journey/v2/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/journey/v2/docs/SampleComponentMenu.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/journey/v2/docs/SampleVariants.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/journey/v2/docs/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/journey/v2/models/BladeInstance.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/journey/v2/models/Constants.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/journey/v2/models/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyMenuStore.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +146 -0
- package/internal-do-not-import-from-here/ux/journey/v2/stores/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/languagepicker/ILanguagePicker.d.ts +3 -14
- package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +648 -41
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +105 -258
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/blockplaceholder/BlockPlaceholder.css.d.ts +1 -9
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/blockplaceholder/BlockPlaceholder.d.ts +201 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/canvastoolbar/CanvasToolbar.d.ts +181 -16
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/developertools/DeveloperTools.d.ts +56 -32
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/devicepreviewer/DevicePreviewer.d.ts +152 -29
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/OneColumnIcon.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnHeroIcon.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnIcon.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnPageIcon.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/TwoColumnIcon.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelection.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelection.d.ts +79 -37
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelector.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelector.d.ts +118 -106
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitemactiontoolbar/LayoutItemActionToolbar.d.ts +179 -52
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.css.d.ts +6 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts +229 -58
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlockInstance.d.ts +163 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts +255 -49
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.css.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.d.ts +238 -80
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSectionTab.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutStep.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutTab.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layouttemplates/LayoutTemplateSelector.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/BlockSettingsPanel.d.ts +91 -39
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/ColorSettings.d.ts +146 -27
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SettingsPanel.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TabsSettingsStylePanel.d.ts +113 -29
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TemplatePreview.d.ts +75 -13
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/backgroundsettings/BackgroundSettings.d.ts +222 -35
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Css.d.ts +91 -13
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Header.d.ts +91 -16
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Spacing.d.ts +91 -18
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Style.d.ts +91 -18
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Targeting.d.ts +91 -13
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Theming.d.ts +0 -25
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.css.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.d.ts +234 -24
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitleSettings.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitleSettings.d.ts +75 -170
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/canvas/Spacing.d.ts +117 -15
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/imagebackgroundsettings/ImageBackgroundSettings.d.ts +139 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/BlockHeader.d.ts +577 -13
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/GlobalHeaderStyling.d.ts +577 -16
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/LayoutTheming.d.ts +0 -17
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/Style.d.ts +577 -11
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layoutclipboard/LayoutClipboard.css.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layoutclipboard/LayoutClipboard.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/lock/Lock.d.ts +577 -13
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Css.d.ts +577 -15
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/General.d.ts +91 -22
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Header.d.ts +577 -21
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Spacing.d.ts +577 -23
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Style.d.ts +577 -16
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Targeting.d.ts +577 -14
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Theming.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/AccordionListingSettingsPanel.d.ts +112 -19
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/ColumnListingSettingsPanel.d.ts +113 -16
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/SectionItemListing.d.ts +194 -18
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/StepListingSettingsPanel.d.ts +112 -22
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/TabListingSettingsPanel.d.ts +112 -22
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/settingstabs/TabBlockSettings.d.ts +124 -17
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/settingstabs/TabLayoutSettings.d.ts +110 -8
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/targetselector/TargetSelector.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/targetselector/TargetSelector.d.ts +217 -19
- package/internal-do-not-import-from-here/ux/layoutcanvas/index.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutBlockRendererHelper.d.ts +339 -30
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvas.d.ts +214 -35
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/BreakPointManager.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutdefinitionsettings/LayoutItemSettingsDefinitions.d.ts +0 -21
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsdesigner/StepperSectionDesigner.d.ts +136 -49
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsdesigner/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +223 -68
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutColumnRenderer.d.ts +196 -27
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +205 -48
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionStepperRenderer.d.ts +178 -11
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.d.ts +179 -55
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutStepRenderer.d.ts +218 -30
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutTabRenderer.d.ts +218 -30
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/index.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/LayerIndex.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/SharedRendererFunctions.d.ts +8 -28
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/SharedRendererStyles.css.d.ts +19 -17
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/BlockCatalogStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutTemplateStore.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/limited-label/LimitedLabel.d.ts +70 -26
- package/internal-do-not-import-from-here/ux/magiclink/MagicLink.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/magiclink/MagicLink.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/magiclink/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.css.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +502 -0
- package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.d.ts +150 -0
- package/internal-do-not-import-from-here/ux/markdown/plugins/CodeMarkdownRenderer.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/markdown/plugins/MarkdownPluginContext.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/markdown/plugins/VelcronMarkdownRenderer.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediagallery/Helper.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediagallery/Shared.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/apis/IInternalGalleryDialogProvider.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/apis/Registration.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/apis/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Delimiter.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Delimiter.d.ts +120 -0
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Slider.css.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Slider.d.ts +121 -0
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/localize.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/apis/IInternalGalleryDisplayProvider.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/apis/Registration.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/apis/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/PhotoWall.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/PhotoWall.d.ts +136 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/CollageMetadata.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/NumberOfRemaining.d.ts +94 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/PhotoCollage.d.ts +169 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/PhotoCollageWrapper.d.ts +141 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/PhotoGrid.d.ts +124 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/PhotoMask.d.ts +106 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/PhotoRow.d.ts +121 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/PhotoThumb.d.ts +114 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/RowPhotos.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/RowPhotos.d.ts +158 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/ViewMore.d.ts +94 -0
- package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/loc/localize.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/mediagallery/view/MediaDisplayRenderer.d.ts +134 -0
- package/internal-do-not-import-from-here/ux/mediagallery/view/PhotoWallWithSliderDisplayRenderer.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/mediagallery/view/PhotoWallWithSliderDisplayRenderer.d.ts +128 -0
- package/internal-do-not-import-from-here/ux/mediapicker/GalleryPanel.css.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/mediapicker/GalleryPanels.d.ts +35 -0
- package/internal-do-not-import-from-here/ux/mediapicker/IMediaPicker.d.ts +7 -4
- package/internal-do-not-import-from-here/ux/mediapicker/MediaPicker.css.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/mediapicker/MediaPicker.d.ts +6 -3
- package/internal-do-not-import-from-here/ux/mediapicker/MediaPickerComponentProps.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/mediapicker/MediaPickerRenderer.d.ts +0 -85
- package/internal-do-not-import-from-here/ux/mediapicker/components/ImageSelector.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/mediapicker/components/ImageSelector.d.ts +104 -0
- package/internal-do-not-import-from-here/ux/mediapicker/core/MediaPickerImageHandler.d.ts +2 -5
- package/internal-do-not-import-from-here/ux/mediapicker/core/Utils.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/mediapicker/core/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.css.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.d.ts +614 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPickerContext.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/components/ImageSelector.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/components/ImageSelector.d.ts +104 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/MediaFileProcessor.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/MediaPickerImageHandler.d.ts +33 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/loc/localize.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/docs/MediaProviderExample.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/ImageGrid.css.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/ImageGrid.d.ts +136 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/index.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/loc/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/loc/localize.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/cropper/ImageCropMenu.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/cropper/ImageCropper.d.ts +124 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditor.css.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditor.d.ts +117 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditorCanvas.d.ts +250 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/filters/ImageFilters.d.ts +133 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/flipper/ImageFlipper.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/flipper/ImageFlipper.d.ts +118 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/settings/ImageSettings.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/settings/ImageSettings.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Constants.d.ts +92 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/ImageTransformer.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/ImageTransformer.d.ts +105 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/loc/localize.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.css.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.d.ts +128 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerEditorStore.d.ts +151 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerProviderStore.d.ts +126 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerimage/IMediaPickerImage.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/MicrosoftStream/MicrosoftStreamProvider.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/mediapickerproviders/MicrosoftStream/loc/localize.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/YouTubeProvider.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/loc/localize.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/apis/IInternalMediaPickerProviderRegistration.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/BingProvider.d.ts +0 -38
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/IBingProvider.d.ts +0 -17
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/loc/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/loc/localize.d.ts +0 -34
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/services/BingImageService.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/BingProvider.d.ts +577 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/BingProvider_old.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/loc/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/loc/localize.d.ts +34 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/services/BingImageService.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/centralimagelocationprovider/ICentralImageLocationProvider.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/DallEProvider.css.d.ts +41 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/DallEProvider.d.ts +53 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/PollingImageComponent.d.ts +141 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/loc/localize.d.ts +23 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/MediaflowProvider.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/MediaflowProviderStyles.css.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/MediaflowVideoPlayer.d.ts +101 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/loc/localize.d.ts +25 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowEmbedMethods.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowMedia.d.ts +31 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowResponse.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowVideoInfo.d.ts +27 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowVideoPlayerProps.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/index.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/service/MediaflowService.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/store/MediaflowProviderStore.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +8 -5
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.d.ts +8 -7
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MultiSelectMediaProviderComponentBase.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mycomputerprovider/MyComputerProvider.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mycomputerprovider/loc/localize.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/IPexelProvider.d.ts +0 -17
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/PexelProvider.css.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/PexelProvider.d.ts +0 -27
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/loc/localize.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/models/PexelImage.d.ts +0 -27
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/services/PexelImageService.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider-V2/PexelProvider.css.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider-V2/PexelProvider.d.ts +578 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider-V2/loc/localize.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider-V2/models/PexelImage.d.ts +27 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider-V2/services/PexelImageService.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/DefineMediaPickerProvider.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/DefineMediaPickerStorageProvider.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/BingProvider.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/CentralImageLocationProvider.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/DallEProvider.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/MediaflowProvider.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/MicrosoftStreamProvider.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/MyComputerProvider.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/PexelProvider.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/UnsplashProvider.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/YoutubeProvider.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/index.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/storages/MediaPickerStorageProviderAppInstanceContext.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/storages/MediaPickerStorageProviderAppInstancePostContext.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/storages/MediaPickerStorageProviderVersionedLayoutContext.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/storages/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/sharepointvideosettings/ISharePointVideoSettings.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/sharepointvideosettings/SharePointVideoSettings.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/sharepointvideosettings/loc/localize.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.css.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/loc/localize.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/models/UnsplashImage.d.ts +41 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/services/UnsplashImageService.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/mediapickervideo/IMediaPickerVideo.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/mediapickervideo/MediaPickerVideo.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/mediapickervideo/MediaPickerVideo.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/models/ActionToolbarStyles.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/models/AppInstanceRollupStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/models/DataTable.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/models/DateTimePickerStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/models/IdentityPicker.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/models/LegacySvgImage.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/models/MultilingualInputStyles.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/models/ProfileCardStyles.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/models/QueryablePropertiesStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/models/SpecialUserConfiguration.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/models/Validation.d.ts +33 -0
- package/internal-do-not-import-from-here/ux/models/enterpriseproperties/EnterprisePropertyPickerStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/models/index.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/monaco/Monaco.d.ts +19 -0
- package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +638 -42
- package/internal-do-not-import-from-here/ux/multilingualinput/IMultilingualInput.d.ts +3 -14
- package/internal-do-not-import-from-here/ux/multilingualinput/MultilingualInput.d.ts +694 -81
- package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +95 -51
- package/internal-do-not-import-from-here/ux/oxide/alert/Alert.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/alert/Alert.d.ts +179 -0
- package/internal-do-not-import-from-here/ux/oxide/alert/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/alert/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/alert/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +138 -162
- package/internal-do-not-import-from-here/ux/oxide/appbar/docs/AppbarExample.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +128 -0
- package/internal-do-not-import-from-here/ux/oxide/avatar/docs/AvatarExample.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/avatar/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/avatar/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/badge/Badge.d.ts +196 -0
- package/internal-do-not-import-from-here/ux/oxide/badge/docs/BadgeExample.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/badge/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/badge/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.css.d.ts +2 -4
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +189 -249
- package/internal-do-not-import-from-here/ux/oxide/btn/docs/ButtonExamples.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/docs/ButtonIntro.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/docs/Presets.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.css.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.d.ts +267 -0
- package/internal-do-not-import-from-here/ux/oxide/btngroup/docs/ButtonIntro.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/btngroup/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/btngroup/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +82 -44
- package/internal-do-not-import-from-here/ux/oxide/card/docs/CardSample.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/card/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/card/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +247 -0
- package/internal-do-not-import-from-here/ux/oxide/checkbox/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/checkbox/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/checkbox/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.css.d.ts +20 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +191 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/docs/ChipExample.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.d.ts +264 -0
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker_omfx.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/column/Column.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +116 -204
- package/internal-do-not-import-from-here/ux/oxide/column/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/column/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/column/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +376 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.css.d.ts +6 -3
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +208 -240
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogExamples.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithAppNavigation.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithFixedContent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithLeftBar.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithNavigation.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/SampleDialog.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +91 -9
- package/internal-do-not-import-from-here/ux/oxide/divider/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/divider/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/divider/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +275 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.css.d.ts +6 -4
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +129 -101
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +169 -30
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/docs/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/oxide/flex/Flex.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/flex/Flex.d.ts +311 -0
- package/internal-do-not-import-from-here/ux/oxide/flex/docs/BasicFlexTypes.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/flex/docs/Examples.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/flex/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +174 -0
- package/internal-do-not-import-from-here/ux/oxide/hostprovider/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/hostprovider/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/hostprovider/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +104 -96
- package/internal-do-not-import-from-here/ux/oxide/icon/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/icon/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/icon/docs/SystemIcons.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/icon/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +107 -107
- package/internal-do-not-import-from-here/ux/oxide/image/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/image/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/image/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/infinite-scroll/InfiniteScroll.d.ts +250 -0
- package/internal-do-not-import-from-here/ux/oxide/infinite-scroll/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/infinite-scroll/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/infinite-scroll/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/layout/Layout.d.ts +75 -17
- package/internal-do-not-import-from-here/ux/oxide/layout/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/layout/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/layout/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/link/Link.d.ts +252 -0
- package/internal-do-not-import-from-here/ux/oxide/link/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/link/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/link/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/list/List.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +98 -128
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +156 -106
- package/internal-do-not-import-from-here/ux/oxide/list/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/list/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/list/docs/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/oxide/main/Main.d.ts +79 -119
- package/internal-do-not-import-from-here/ux/oxide/main/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/main/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/main/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +260 -37
- package/internal-do-not-import-from-here/ux/oxide/menu/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/menu/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/menu/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.css.d.ts +3 -5
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +137 -112
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.css.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +173 -313
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/BasicPanelTypes.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/Examples.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/PanelAlignment.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/PanelVariants.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/Scrolling.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/SettingsPanel.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/ShowHide.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/progress/Progress.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/progress/Progress.d.ts +131 -0
- package/internal-do-not-import-from-here/ux/oxide/progress/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/progress/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/progress/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/radio/Radio.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/oxide/radio/Radio.d.ts +77 -71
- package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +155 -27
- package/internal-do-not-import-from-here/ux/oxide/radio/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/radio/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/radio/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/select/Select.css.d.ts +4 -10
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +322 -144
- package/internal-do-not-import-from-here/ux/oxide/select/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/select/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/select/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/skeletonloader/SkeletonLoader.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/skeletonloader/SkeletonLoader.d.ts +180 -0
- package/internal-do-not-import-from-here/ux/oxide/skeletonloader/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/skeletonloader/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/skeletonloader/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/slider/Slider.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +183 -147
- package/internal-do-not-import-from-here/ux/oxide/slider/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/slider/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/slider/docs/SampleComponent2.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/slider/docs/SampleComponent3.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/slider/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +113 -52
- package/internal-do-not-import-from-here/ux/oxide/snackbar/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/snackbar/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/snackbar/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/spacer/Spacer.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/oxide/spacer/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/spacer/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/spacer/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/stepper/Stepper.d.ts +101 -44
- package/internal-do-not-import-from-here/ux/oxide/stepper/StepperStep.d.ts +101 -44
- package/internal-do-not-import-from-here/ux/oxide/stepper/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/stepper/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/stepper/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/switch/Switch.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +144 -56
- package/internal-do-not-import-from-here/ux/oxide/switch/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/switch/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/switch/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/Tab.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +124 -104
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.css.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +142 -76
- package/internal-do-not-import-from-here/ux/oxide/tab/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/docs/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/oxide/table/Table.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/table/Table.d.ts +163 -0
- package/internal-do-not-import-from-here/ux/oxide/table/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/table/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/table/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/text/Text.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +118 -130
- package/internal-do-not-import-from-here/ux/oxide/text/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/text/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/text/docs/SampleGradients.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/text/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +303 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.css.d.ts +3 -9
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +307 -119
- package/internal-do-not-import-from-here/ux/oxide/textfield/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.css.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +235 -52
- package/internal-do-not-import-from-here/ux/oxide/toolbar/docs/ToolbarExamples.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/toolbar/docs/ToolbarIntro.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/toolbar/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/tooltip/Tooltip.d.ts +183 -0
- package/internal-do-not-import-from-here/ux/oxide/tooltip/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/tooltip/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/tooltip/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +142 -104
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/TreeviewExamples.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/TreeviewIntro.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/validation/Validation.d.ts +126 -0
- package/internal-do-not-import-from-here/ux/oxide/validation/docs/AdvanceExample.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/validation/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/validation/docs/SimpleExample.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/validation/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/permissioninput/IPermissionInput.d.ts +0 -30
- package/internal-do-not-import-from-here/ux/permissioninput/PermissionInput.d.ts +315 -46
- package/internal-do-not-import-from-here/ux/persona/Persona.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/presetupwizard/PreSetupWizard.d.ts +54 -29
- package/internal-do-not-import-from-here/ux/profilecard/IProfileCard.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +8 -1
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCardDialog.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCardRenderer.d.ts +108 -20
- package/internal-do-not-import-from-here/ux/properties/apis/PropertyBindingProviderApi.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/block/PropertyBlock.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/properties/block/PropertyBlock.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/properties/block/PropertyBlockSettings.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/properties/block/PropertyBlockSettings.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/properties/block/components/PropertySettings.css.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/properties/block/components/PropertySettings.d.ts +426 -0
- package/internal-do-not-import-from-here/ux/properties/block/shared/PropertyBlockModels.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/properties/block/shared/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +120 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayEditor.d.ts +108 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayPropertyDefinition.d.ts +1 -13
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanDisplay.css.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanDisplay.d.ts +124 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanEditor.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanEditor.d.ts +129 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanPropertyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfileDisplay.css.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfileDisplay.d.ts +124 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfileEditor.css.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfileEditor.d.ts +129 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfilePropertyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +120 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateEditor.d.ts +108 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DatePropertyDefinition.d.ts +1 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeConfiguration.d.ts +126 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +120 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeEditor.d.ts +108 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimePropertyDefinition.d.ts +1 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +84 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailEditor.d.ts +93 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailPropertyDefinition.d.ts +1 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +89 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +84 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlEditor.d.ts +88 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlPropertyDefinition.d.ts +1 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +89 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +165 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityEditor.d.ts +108 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityPropertyDefinition.d.ts +1 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +89 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +84 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageEditor.d.ts +88 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImagePropertyDefinition.d.ts +1 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerDisplay.css.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerDisplay.d.ts +124 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerEditor.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerEditor.d.ts +129 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerPropertyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +87 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageEditor.d.ts +91 -17
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguagePropertyDefinition.d.ts +1 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +89 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.css.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +87 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkEditor.d.ts +91 -17
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkPropertyDefinition.d.ts +1 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.css.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.d.ts +121 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaEditor.css.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaEditor.d.ts +126 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaPropertyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +87 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextEditor.d.ts +91 -17
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextPropertyDefinition.d.ts +1 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +87 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextEditor.d.ts +91 -17
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextPropertyDefinition.d.ts +1 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +121 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberEditor.d.ts +88 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberPropertyDefinition.d.ts +1 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsDisplay.css.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsDisplay.d.ts +124 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsEditor.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsEditor.d.ts +129 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsPropertyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +87 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextEditor.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextEditor.d.ts +91 -17
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextPropertyDefinition.d.ts +1 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +120 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeEditor.d.ts +108 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimePropertyDefinition.d.ts +1 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeDisplay.css.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeDisplay.d.ts +124 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeEditor.css.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeEditor.d.ts +129 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypePropertyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/properties/models/DataSource.d.ts +26 -19
- package/internal-do-not-import-from-here/ux/properties/models/PropertyApi.d.ts +23 -4
- package/internal-do-not-import-from-here/ux/properties/models/PropertyBindingProvider.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/properties/models/PropertyInput.d.ts +9 -1
- package/internal-do-not-import-from-here/ux/properties/models/PropertyPicker.d.ts +13 -3
- package/internal-do-not-import-from-here/ux/properties/models/PropertySettingsLock.d.ts +25 -0
- package/internal-do-not-import-from-here/ux/properties/models/index.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +127 -0
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfiguration.d.ts +127 -0
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfigurationV2.d.ts +520 -0
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.d.ts +147 -0
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +100 -12
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +110 -13
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyBindingValueRenderer.d.ts +450 -0
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts +550 -0
- package/internal-do-not-import-from-here/ux/propertyBindingProvider/propertyBindingProviderRegistration.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/EditorMenuBar.d.ts +140 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/Emoticon/EmoticonComponent.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/richtexteditor/IRichTextEditor.d.ts +2 -16
- package/internal-do-not-import-from-here/ux/richtexteditor/MentionComponent/MentionComponent.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.d.ts +535 -104
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditorInstance.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditorSettings.d.ts +3 -4
- package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/TextCompletionPanel.css.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/TextCompletionPanel.d.ts +138 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/loc/localize.d.ts +30 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Bold/BoldToolbar.d.ts +91 -9
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/BulletList/BulletListToolbar.d.ts +91 -9
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Doc/DocNode.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/History/HistoryToolbar.d.ts +91 -11
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Italic/ItalicToolbar.d.ts +91 -9
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerToolbar.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/{ParsingMicrosoftWordImageHandler.d.ts → PastingMicrosoftOfficeImageHandler.d.ts} +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/OrderedList/OrderedListToolbar.d.ts +91 -9
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/Registration.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletion.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionHandler.d.ts +44 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionMenu.d.ts +40 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionNode.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionToolbar.d.ts +34 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/index.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Underline/UnderlineToolbar.d.ts +91 -9
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/loc/localize.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/rollupempty/RollupEmpty.d.ts +172 -14
- package/internal-do-not-import-from-here/ux/securitytrimmer/SecurityTrimmer.d.ts +219 -0
- package/internal-do-not-import-from-here/ux/settings/ISettingsPane.d.ts +0 -18
- package/internal-do-not-import-from-here/ux/settings/SettingsPane.d.ts +336 -29
- package/internal-do-not-import-from-here/ux/shapedivider/ShapeDivider.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/sharepointvideo/SharepointVideo.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/sidepanel/SidePanelRenderer.d.ts +63 -18
- package/internal-do-not-import-from-here/ux/sidepanel/models/IRegistration.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/signin/Shared.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/signin/SignInBlock.css.d.ts +15 -5
- package/internal-do-not-import-from-here/ux/signin/SignInBlock.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/signin/SignInFactory.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/signin/SignInPage.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/signin/identitycreationrequest/ConfirmEmailView.d.ts +101 -0
- package/internal-do-not-import-from-here/ux/signin/identitycreationrequest/IdentityCreationRequestView.d.ts +100 -0
- package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +22 -0
- package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +79 -35
- package/internal-do-not-import-from-here/ux/signin/omnia/providers/MagicLinkProvider.d.ts +67 -23
- package/internal-do-not-import-from-here/ux/signin/omnia/providers/OtpProvider.d.ts +67 -23
- package/internal-do-not-import-from-here/ux/signin/omnia/providers/PasswordProvider.d.ts +67 -23
- package/internal-do-not-import-from-here/ux/signout/SignOut.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/signout/SignOut.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/social/Comment.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/social/CommentDialog.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/social/IComment.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/social/PeopleTagging.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/social/likehandler/LikeActionSettings.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker3.css.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker3.d.ts +540 -0
- package/internal-do-not-import-from-here/ux/spacingpicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/spacingpicker/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/spacingpicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/spacingpicker/loc/localize.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/statuscoderenderer/NavigationTrackingHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/statuscoderenderer/StatusCodeLayoutApi.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/statuscoderenderer/StatusCodeRenderer.d.ts +101 -0
- package/internal-do-not-import-from-here/ux/statuscoderenderer/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/statuscoderenderer/layoutregistration/NotFoundDefaultLayout.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/statuscoderenderer/layoutregistration/Registration.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/statuscoderenderer/layoutregistration/UnauthorizedDefaultLayout.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/LayoutEngineTest.d.ts +92 -0
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/StatusMessageOverlay.d.ts +169 -25
- package/internal-do-not-import-from-here/ux/theming/ThemeManager.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming/ThemeStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming/Theming.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/theming/components/ThemeDefinitionEditor.d.ts +522 -39
- package/internal-do-not-import-from-here/ux/theming/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/theming-v2/BlueprintDefinitionStore.d.ts +23 -0
- package/internal-do-not-import-from-here/ux/theming-v2/BlueprintStore.d.ts +44 -0
- package/internal-do-not-import-from-here/ux/theming-v2/ColorManager.d.ts +3 -6
- package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaDefinitionStore.d.ts +23 -0
- package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaManager.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaStore.d.ts +62 -25
- package/internal-do-not-import-from-here/ux/theming-v2/RegistrationHandlerDefinitions.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/RegistrationHandlerTheming.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeContextStore.d.ts +200 -0
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeDefinitionStoreV2.d.ts +26 -23
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeStoreV2.d.ts +31 -25
- package/internal-do-not-import-from-here/ux/theming-v2/VelcronDefinitionStore.d.ts +33 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/DesignJourney.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/Registrations.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/BlueprintsJourney.d.ts +97 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/blades/BlockBlade.d.ts +118 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/blades/ComponentsBlade.d.ts +118 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/blades/EditBlueprint.d.ts +135 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/blades/SpacingBlade.d.ts +118 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/blades/TypographyBlade.d.ts +118 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/components/BlockPreview.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/store/BlueprintEditorStore.d.ts +33 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/colorschemes/ColorSchemasJourney.d.ts +97 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/colorschemes/blades/ColorSchemaDefinitionBlade.d.ts +157 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/colorschemes/blades/ColorSchemasBlade.d.ts +138 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/themes/ThemesJourney.d.ts +97 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/themes/blades/EditThemeBlade.d.ts +157 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/typography/TypographyJourney.d.ts +97 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/Colors.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/ThemeDefinitionInstance.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/DefinitionRegistrations.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/ThemeRegistrations.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/actions/Todo.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/actions/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/BannerImageTop.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/RollupAvatar.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/RollupImageLarge.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/RollupImageSmall.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/RollupImageTop.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/RollupImageTopAvatar.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/index.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Contentblocks.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Image.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/ImageText.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Quote.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Text.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/index.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/headers/BlockTextIcon.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/headers/Pageheader.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/headers/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/index.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/Blueprints.d.ts +25 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/SpacingTypes.d.ts +25 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/ThemeDefinitions.d.ts +23 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/TypographyTypes.d.ts +317 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/useDefaultDesignKit.d.ts +49 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/ApiRegistrations.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/Blueprints.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/SpacingTypes.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/ThemeDefinitions.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/TypographyTypes.d.ts +97 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/useDocumentationDesignKit.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/ThemeRegistrations.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/Blueprints.d.ts +19 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/SpacingTypes.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/ThemeDefinitions.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/TypographyTypes.d.ts +97 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/useEditorDesignKit.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/pages/DefinitionRegistrations.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/pages/definitions/headers/HeaderWithImage.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/pages/definitions/property/PropertiesWithColumLayout.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/pages/definitions/property/PropertiesWithRowLayout.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/useDesignKits.d.ts +64 -0
- package/internal-do-not-import-from-here/ux/theming-v2/index.d.ts +8 -1
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +536 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/index.d.ts +1 -5
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Blueprints.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Colors.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/General.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Spacing.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Typography.d.ts +45 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/index.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +441 -30
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.css.d.ts +0 -88
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.d.ts +100 -45
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ThemeCodeEditor.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/blueprints/BlueprintEditor.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/blueprints/BlueprintSelector.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/blueprints/BlueprintSelector.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/blueprints/components/BlockBlueprintEditor.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/colors/ColorSelector.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/colors/ComponentsViewer.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/colors/FxViewer.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/colors/ThemeViewer.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/model/CodeEditor.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/BlueprintEditorStore.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/ThemeEditorStore.d.ts +32 -24
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +2447 -0
- package/internal-do-not-import-from-here/ux/typographypicker/TypographyPicker.css.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/typographypicker/TypographyPicker.d.ts +488 -0
- package/internal-do-not-import-from-here/ux/typographypicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/typographypicker/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/typographypicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/urlinput/IUrlInput.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/urlinput/UrlInput.d.ts +0 -46
- package/internal-do-not-import-from-here/ux/urlinput/UrlInputLegacy.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/use/TryOnMounted.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/use/TryOnScopeDispose.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/use/Types.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/use/UseBlockInstance.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/use/UseBlueprintSetup.d.ts +166 -0
- package/internal-do-not-import-from-here/ux/use/UseBreakPoint.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +186 -0
- package/internal-do-not-import-from-here/ux/use/UseConfirm.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/use/UseDebouncer.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/use/UseEventListener.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +123 -3
- package/internal-do-not-import-from-here/ux/use/UseMounted.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/use/UseSupported.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/use/UseValidation.d.ts +5 -9
- package/internal-do-not-import-from-here/ux/use/UseVariantSetup.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/use/UseVueInstance.d.ts +1 -11
- package/internal-do-not-import-from-here/ux/use/UseWebNotification.d.ts +105 -0
- package/internal-do-not-import-from-here/ux/use/index.d.ts +9 -2
- package/internal-do-not-import-from-here/ux/user/UserPropertiesByMicrosoftGraphProvider.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/user/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/userpresence/UserPresence.d.ts +431 -34
- package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutBladeBuilder.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +74 -30
- package/internal-do-not-import-from-here/ux/validation/FieldValidation.d.ts +132 -17
- package/internal-do-not-import-from-here/ux/validation/FieldValueValidation.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/validation/FormValidator.d.ts +1 -10
- package/internal-do-not-import-from-here/ux/validation/IComponentValidationEnabled.d.ts +1 -10
- package/internal-do-not-import-from-here/ux/validation/IFieldValidation.d.ts +1 -21
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.d.ts +97 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlockSettings.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlockSettings.d.ts +93 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/ContentViewer.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/ContentViewer.d.ts +132 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/DefinitionPickerPanel.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/DefinitionPickerPanel.d.ts +151 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/model/ContentDefinitionRegistration.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts +65 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/VelcronBlock.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/VelcronBlock.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/VelcronBlockSettings.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/VelcronBlockSettings.d.ts +95 -0
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.d.ts +556 -0
- package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/VelcronPropertiesEditor.d.ts +457 -0
- package/internal-do-not-import-from-here/ux/velcron/core/actions/Date.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/core/actions/IActionHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/actions/Timer.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/velcron/core/actions/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/core/index.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/velcron/core/models/ActionHooks.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/Enums.d.ts +7 -16
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +149 -95
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronEvents.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +120 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/index.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronActions.d.ts +8 -2
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +13 -5
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronPropertyEditors.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronRenderers.d.ts +4 -32
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronStyles.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/core/parser/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/rules/IsEditMode.d.ts +20 -0
- package/internal-do-not-import-from-here/ux/velcron/core/rules/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/stores/ReactivitySystem.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronBlueprint.d.ts +39 -0
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +44 -0
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/velcron/core/stores/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronColorSchemaEditor.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronContentEditor.d.ts +38 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronEditorBuilder.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronEditorBuilderBase.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronImageEditor.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronPropertyMappingEditorBuilder.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronColorSchemaBuilder.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronContentStateBuilder.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronImageStateBuilder.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronPropertyMappingStateBuilder.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronStateBuilder.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronStateBuilderBase.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronTextContentBuilder.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/useVelcronTemplateBuilder.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/DocDataTypes.d.ts +30 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/Introduction.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/State.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/actions/Date.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/actions/Introduction.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/actions/Timer.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/actions/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/components/Button.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/components/Checkbox.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/components/Image.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/components/Property.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/components/Text.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/components/Velcron.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/components/View.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/components/index.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/velcron/docs/index.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.css.d.ts +7 -84
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +614 -43
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AddComponent.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AddComponent.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AddDataObject.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AppExplorer.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/velcron/editor/components/CodeEditor.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/components/CodeEditor.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/velcron/editor/components/ContainerRenderer.d.ts +77 -11
- package/internal-do-not-import-from-here/ux/velcron/editor/components/ContainerRendererStyles.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditComponentPane.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditDataPane.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditDefinitionPropertiesPane.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/ConditionalStatements.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/EventsPanel.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/PropertiesPanel.d.ts +54 -9
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/StylingPanel.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-data/EditDataMemberPanel.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorpicker/ColorPicker.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemamapper/ColorSchemaMapper.d.ts +74 -25
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemareferencepicker/ColorSchemaReferencePicker.d.ts +53 -8
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/ratiopicker/RatioPicker.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/typographypicker/TypographyPicker.d.ts +66 -22
- package/internal-do-not-import-from-here/ux/velcron/editor/models/BuiltInDescriptors.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/velcron/editor/models/Enums.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/models/Shared.d.ts +4 -6
- package/internal-do-not-import-from-here/ux/velcron/{core → editor}/models/VelcronDescriptors.d.ts +9 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/models/index.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +140 -66
- package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStoreOld.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronActionHooks.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +225 -41
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronStylesProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/App.d.ts +69 -13
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Button.d.ts +68 -12
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Card.d.ts +68 -12
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Checkbox.d.ts +106 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Chip.d.ts +68 -12
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/ComponentCreator.d.ts +76 -16
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Custom.d.ts +69 -13
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Dialog.d.ts +68 -12
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Icon.d.ts +68 -12
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Image.d.ts +68 -12
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Markdown.d.ts +106 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/ProgressCircle.d.ts +68 -12
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Property.d.ts +106 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Slot.d.ts +106 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Text.d.ts +68 -12
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/TextInput.d.ts +68 -12
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/View.d.ts +68 -12
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/WebView.d.ts +68 -12
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/AlignmentEditor.d.ts +454 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/ColorEditor.d.ts +434 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/ColorSchemaEditor.d.ts +434 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/ImageEditor.d.ts +450 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/MarkdownEditor.d.ts +433 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/PropertyEditorCreator.d.ts +451 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/SliderEditor.d.ts +451 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/SwitchEditor.d.ts +450 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/TextEditor.d.ts +450 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/TypographyEditor.d.ts +455 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/blade/LayoutAliasBlade.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/blade/VersionedLayoutListBladeBuilder.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/LayoutEditorTabRenderer.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItem.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItemFactory.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts +88 -44
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/alternatelayout/AlternateLayoutCreationForm.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/alternatelayout/AlternateLayoutRenameForm.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/InternalVersionedLayoutRenderer.d.ts +250 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +95 -91
- package/internal-do-not-import-from-here/ux/vuetify/VuetifyCore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/vuetify/colorpicker/VColorPicker.bundle.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/wizard/IWizard.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/wizard/WizardComponent.d.ts +2 -2
- package/internal-do-not-import-from-here/vue/VueApp.d.ts +7 -2
- package/internal-do-not-import-from-here/vue/VueHooks.d.ts +1 -4
- package/internal-do-not-import-from-here/vue/index.d.ts +0 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +2050 -275
- package/internal-do-not-import-from-here/workers/HttpRequestProxy.d.ts +1 -0
- package/package.json +5 -6
- package/task.js +5 -4
- package/task.ts +5 -5
- package/internal-do-not-import-from-here/console/components/MessageOverlay.d.ts +0 -47
- package/internal-do-not-import-from-here/contexts/CurrentDisplayUserContext.d.ts +0 -5
- package/internal-do-not-import-from-here/shared/http/Bring.d.ts +0 -130
- package/internal-do-not-import-from-here/shared/models/Bring.d.ts +0 -23
- package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +0 -110
- package/internal-do-not-import-from-here/ux/compositiontests/CompositionBlockCurrent.d.ts +0 -61
- package/internal-do-not-import-from-here/ux/compositiontests/CompositionBlockFuture.d.ts +0 -61
- package/internal-do-not-import-from-here/ux/compositiontests/OptionsBlockCurrent.d.ts +0 -65
- package/internal-do-not-import-from-here/ux/compositiontests/TestInjectComponent.d.ts +0 -49
- package/internal-do-not-import-from-here/ux/compositiontests/models/SharedContext.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/compositiontests/models/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/compositiontests/services/CompositionService.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/compositiontests/services/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/compositiontests/stores/OldStoreTest.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/compositiontests/stores/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/compositiontests/stores/useNewStoreTest.d.ts +0 -19
- package/internal-do-not-import-from-here/ux/compositiontests/use/useTitleComputed.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/confirmdialog/VueConfirmDialog.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/datetimezonepicker/IDateTimeZonePicker.d.ts +0 -18
- package/internal-do-not-import-from-here/ux/datetimezonepicker/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/datetimezonerenderer/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/dynamicgroup/DynamicGroupPropertyEditorRenderer.d.ts +0 -73
- package/internal-do-not-import-from-here/ux/dynamicgroup/loc/localize.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/IEditorChrome.d.ts +0 -26
- package/internal-do-not-import-from-here/ux/features/IFeaturesJourney.d.ts +0 -18
- package/internal-do-not-import-from-here/ux/group/GroupPropertyEditorRenderer.d.ts +0 -73
- package/internal-do-not-import-from-here/ux/group/loc/localize.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/imagegrid/IImageGrid.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageRollup/ImageRollup.d.ts +0 -66
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformEditor/ImageTransformEditor.d.ts +0 -66
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformFlipper/ImageTransformFlipper.d.ts +0 -23
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/action.d.ts +0 -101
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/addIcon.d.ts +0 -20
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/addImageObject.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/addObject.d.ts +0 -17
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/addShape.d.ts +0 -27
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/addText.d.ts +0 -26
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/applyFilter.d.ts +0 -20
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/changeIconColor.d.ts +0 -17
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/changeShape.d.ts +0 -28
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/changeText.d.ts +0 -17
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/changeTextStyle.d.ts +0 -25
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/clearObjects.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/flip.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/loadImage.d.ts +0 -17
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/removeFilter.d.ts +0 -17
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/removeObject.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/resizeCanvasDimension.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/rotate.d.ts +0 -18
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/setObjectPosition.d.ts +0 -21
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/setObjectProperties.d.ts +0 -25
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/cropper.d.ts +0 -118
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/filter.d.ts +0 -89
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/flip.d.ts +0 -70
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/freeDrawing.d.ts +0 -26
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/icon.d.ts +0 -51
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/imageLoader.d.ts +0 -30
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/line.d.ts +0 -55
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/rotation.d.ts +0 -42
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/shape.d.ts +0 -144
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/text.d.ts +0 -173
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/consts.d.ts +0 -243
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/drawingMode/cropper.d.ts +0 -26
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/drawingMode/freeDrawing.d.ts +0 -27
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/drawingMode/lineDrawing.d.ts +0 -27
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/drawingMode/shape.d.ts +0 -26
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/drawingMode/text.d.ts +0 -26
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/arrowLine.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/blur.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/colorFilter.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/cropzone.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/emboss.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/mask.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/sharpen.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/factory/command.d.ts +0 -27
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/factory/errorMessage.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/graphics.d.ts +0 -569
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/helper/imagetracer.d.ts +0 -56
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/helper/shapeFilterFillHelper.d.ts +0 -44
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/helper/shapeResizeHelper.d.ts +0 -20
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/index.d.ts +0 -15
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/interface/command.d.ts +0 -49
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/interface/component.d.ts +0 -76
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/interface/drawingMode.d.ts +0 -26
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/interfaces.d.ts +0 -283
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/invoker.d.ts +0 -91
- package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/util.d.ts +0 -154
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/blockplaceholder/IBlockPlaceholder.d.ts +0 -19
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/canvastoolbar/ICanvasToolbar.d.ts +0 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/devicepreviewer/IDevicePreviewer.d.ts +0 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/ColorSettings.css.d.ts +0 -18
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure.css.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SectionSettingsPanel.css.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SettingsPanel.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TemplatePreview.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/backgroundsettings/BackgroundSettings.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/backgroundsettings/IBackgroundSettings.d.ts +0 -23
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/IBlockTitle.d.ts +0 -21
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/imagebackgroundsettings/IImageBackgroundSettings.d.ts +0 -19
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/BlockTheming.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/SectionItemListing.css.d.ts +0 -17
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/ILayoutBlockRendererHelper.d.ts +0 -29
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/ILayoutRendererCanvas.d.ts +0 -22
- package/internal-do-not-import-from-here/ux/oxide/btntoggle/ButtonToggle.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/oxide/btntoggle/ButtonToggle.d.ts +0 -172
- package/internal-do-not-import-from-here/ux/playground_test/Play2Component.d.ts +0 -46
- package/internal-do-not-import-from-here/ux/playground_test/PlayComponent.d.ts +0 -108
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/FileUploaderTab.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/MediaPickerTab.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/MultilingualInputTab.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/RichtextEditorTab.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/SharePointPermissionTab.d.ts +0 -17
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/TermPickerTab.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/TestChart.d.ts +0 -15
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/TimePeriodPickerTab.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/playground_test/testvalidate/DemoValidate.d.ts +0 -21
- package/internal-do-not-import-from-here/ux/playground_test/testvalidate/IDemoValidate.d.ts +0 -17
- package/internal-do-not-import-from-here/ux/playground_test/testvalidate/SubComponent1.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/properties/LegacyEnterprisePropertiesProvider.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/properties/PropertyDataSourceContext.d.ts +0 -21
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDefinition.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDisplay.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDisplay.d.ts +0 -57
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.d.ts +0 -60
- package/internal-do-not-import-from-here/ux/properties/models/PropertySelection.d.ts +0 -19
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyDatasourceRenderer.d.ts +0 -72
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyRenderer.d.ts +0 -83
- package/internal-do-not-import-from-here/ux/rollupempty/IRollupEmpty.d.ts +0 -18
- package/internal-do-not-import-from-here/ux/rollupempty/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/securitytrimer/ISecurityTrimer.d.ts +0 -23
- package/internal-do-not-import-from-here/ux/securitytrimer/SecurityTrimer.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/securitytrimer/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker2.css.d.ts +0 -29
- package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker2.d.ts +0 -323
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/IStatusMessageOverlay.d.ts +0 -19
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/theming/components/IThemeDefinitionEditor.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/theming/components/ThemeDefinitionEditor.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.css.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.d.ts +0 -122
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseBlueprintStyling.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseComponentStyling.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseThemeStyling.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseTypographyStyling.d.ts +0 -25
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseVuetifyStyling.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ColorSelector.d.ts +0 -46
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ComponentsViewer.d.ts +0 -46
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/FxViewer.d.ts +0 -46
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ThemeViewer.d.ts +0 -46
- package/internal-do-not-import-from-here/ux/theming-v2/themes/Blueprints.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/theming-v2/themes/Colors.d.ts +0 -19
- package/internal-do-not-import-from-here/ux/theming-v2/themes/Themes.d.ts +0 -27
- package/internal-do-not-import-from-here/ux/theming-v2/themes/TypographyTypes.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/theming-v2/themes/index.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/use/UseComponentSetup.d.ts +0 -13
- package/internal-do-not-import-from-here/ux/user/UserPropertiesByMicrosoftGraphDefinition.d.ts +0 -18
- package/internal-do-not-import-from-here/ux/user/UserPropertyProviderDefinition.d.ts +0 -15
- package/internal-do-not-import-from-here/ux/user/UserPropertyRenderer.d.ts +0 -78
- package/internal-do-not-import-from-here/ux/user/components/PropertyConfigurationRenderer.d.ts +0 -62
- package/internal-do-not-import-from-here/ux/user/components/UserPropertiesByMicrosoftGraphDisplay.d.ts +0 -52
- package/internal-do-not-import-from-here/ux/user/components/UserPropertiesByMicrosoftGraphEditor.d.ts +0 -55
- package/internal-do-not-import-from-here/ux/user/components/UserPropertyProviderDisplay.d.ts +0 -52
- package/internal-do-not-import-from-here/ux/user/components/UserPropertyProviderEditor.d.ts +0 -55
- package/internal-do-not-import-from-here/ux/velcron/blocks/VelcronBlock.d.ts +0 -46
- package/internal-do-not-import-from-here/ux/velcron/blocks/VelcronBlockSettings.d.ts +0 -50
- package/internal-do-not-import-from-here/ux/velcron/core/utilities/ColorUtility.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/core/utilities/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/ShareApp.d.ts +0 -46
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/ColorSchemaPicker/ColorSchemaPicker.d.ts +0 -66
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/FlexView.d.ts +0 -50
- package/internal-do-not-import-from-here/wcdefinitions.json +0 -1
- /package/internal-do-not-import-from-here/{vue/Localize.d.ts → Localize.d.ts} +0 -0
- /package/internal-do-not-import-from-here/shared/models/{Bring.js → DynamicState.js} +0 -0
- /package/internal-do-not-import-from-here/{console/components/MessageOverlay.css.d.ts → ux/docs/apis/DocsApis.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{imagetransformer/tui-image-editor/dependencies/tui-code-snippet.d.ts → docs/omfx/components/Emits.md.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{layoutcanvas/editor/developertools/DeveloperTools copy.d.ts → docs/omfx/components/Introduction.md.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{monaco/RegisterMonacoEditorComponent.d.ts → docs/omfx/components/Properties.md.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{vuetify/stepper/VStepperItems.d.ts → docs/omfx/components/Slots.md.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{velcron/blocks/VelcronBlock.css.d.ts → hub/feed/HubFeed.css.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{velcron/blocks/VelcronBlockSettings.css.d.ts → hub/feed/HubFeedSettings.css.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/imagetransformer/Components/{ImageTransformFilter/ImageTransformFilter.d.ts → filters/ImageTransformFilter_old.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/{ColorSelector.css.d.ts → colors/ColorSelector.css.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/{ThemeViewerStyles.d.ts → colors/ThemeViewerStyles.d.ts} +0 -0
@@ -0,0 +1,2447 @@
|
|
1
|
+
import { useThemeStoreV2, useColorSchemaStore, useBlueprintStore } from "@omnia/fx/ux";
|
2
|
+
import { ThemeDefinitionV2 } from "@omnia/fx-models";
|
3
|
+
type themeType = "default" | "admin";
|
4
|
+
declare const _default: {
|
5
|
+
new (...args: any[]): {
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
7
|
+
$data: {};
|
8
|
+
$props: {
|
9
|
+
style?: unknown;
|
10
|
+
class?: unknown;
|
11
|
+
key?: string | number | symbol;
|
12
|
+
readonly themeDefinition?: ThemeDefinitionV2;
|
13
|
+
readonly "theme-definition"?: ThemeDefinitionV2;
|
14
|
+
ref?: import("vue").VNodeRef;
|
15
|
+
ref_for?: boolean;
|
16
|
+
ref_key?: string;
|
17
|
+
onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
18
|
+
[key: string]: any;
|
19
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
20
|
+
[key: string]: any;
|
21
|
+
}>) => void)[];
|
22
|
+
onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
23
|
+
[key: string]: any;
|
24
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
25
|
+
[key: string]: any;
|
26
|
+
}>) => void)[];
|
27
|
+
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
28
|
+
[key: string]: any;
|
29
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
30
|
+
[key: string]: any;
|
31
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
32
|
+
[key: string]: any;
|
33
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
34
|
+
[key: string]: any;
|
35
|
+
}>) => void)[];
|
36
|
+
onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
37
|
+
[key: string]: any;
|
38
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
39
|
+
[key: string]: any;
|
40
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
41
|
+
[key: string]: any;
|
42
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
43
|
+
[key: string]: any;
|
44
|
+
}>) => void)[];
|
45
|
+
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
46
|
+
[key: string]: any;
|
47
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
48
|
+
[key: string]: any;
|
49
|
+
}>) => void)[];
|
50
|
+
onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
51
|
+
[key: string]: any;
|
52
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
53
|
+
[key: string]: any;
|
54
|
+
}>) => void)[];
|
55
|
+
readonly themeType?: themeType;
|
56
|
+
readonly "theme-type"?: themeType;
|
57
|
+
"onTheme:initialized"?: (themeStore: {
|
58
|
+
state: {
|
59
|
+
currentTheme: ThemeDefinitionV2;
|
60
|
+
};
|
61
|
+
events: {
|
62
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
63
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
64
|
+
actions: {
|
65
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
66
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
67
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
68
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
69
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
70
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
71
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
72
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
73
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
74
|
+
} & {
|
75
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
76
|
+
};
|
77
|
+
get: {
|
78
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
79
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
80
|
+
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").TypographyTypeDefinition;
|
81
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
82
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
83
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
84
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
85
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
86
|
+
currentTheme(): ThemeDefinitionV2;
|
87
|
+
};
|
88
|
+
}, colorSchemaStore: {
|
89
|
+
state: {
|
90
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
91
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
92
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
93
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
94
|
+
isContainer: boolean;
|
95
|
+
name: string;
|
96
|
+
colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
97
|
+
id: import("@omnia/fx-models").GuidValue;
|
98
|
+
};
|
99
|
+
events: {
|
100
|
+
onMutatedBase: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
101
|
+
onMutatedOnBase: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
102
|
+
onMutatedContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
103
|
+
onMutatedOnContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
104
|
+
onMutatedIsContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
105
|
+
onMutatedName: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
106
|
+
onMutatedColorSchemaType: import("@omnia/fx").MessageBusExposeOnlySubscription<"info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
107
|
+
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
108
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
109
|
+
actions: {
|
110
|
+
onDispatching<T_3 extends (...args: any) => any>(action: (actions: {
|
111
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
112
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
113
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
114
|
+
setThemeStore(themeStoreInstance: {
|
115
|
+
state: {
|
116
|
+
currentTheme: ThemeDefinitionV2;
|
117
|
+
};
|
118
|
+
events: {
|
119
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
120
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
121
|
+
actions: {
|
122
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
123
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
124
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
125
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
126
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
127
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
128
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
129
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
130
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
131
|
+
} & {
|
132
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
133
|
+
};
|
134
|
+
get: {
|
135
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
136
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
137
|
+
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").TypographyTypeDefinition;
|
138
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
139
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
140
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
141
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
142
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
143
|
+
currentTheme(): ThemeDefinitionV2;
|
144
|
+
};
|
145
|
+
}): void;
|
146
|
+
}) => T_3, fn: T_3 extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
147
|
+
onDispatched<T_4 extends (...args: any) => any>(action: (actions: {
|
148
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
149
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
150
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
151
|
+
setThemeStore(themeStoreInstance: {
|
152
|
+
state: {
|
153
|
+
currentTheme: ThemeDefinitionV2;
|
154
|
+
};
|
155
|
+
events: {
|
156
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
157
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
158
|
+
actions: {
|
159
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
160
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
161
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
162
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
163
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
164
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
165
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
166
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
167
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
168
|
+
} & {
|
169
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
170
|
+
};
|
171
|
+
get: {
|
172
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
173
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
174
|
+
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").TypographyTypeDefinition;
|
175
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
176
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
177
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
178
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
179
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
180
|
+
currentTheme(): ThemeDefinitionV2;
|
181
|
+
};
|
182
|
+
}): void;
|
183
|
+
}) => T_4, fn: T_4 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
184
|
+
onFailure<T_5 extends (...args: any) => any>(action: (actions: {
|
185
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
186
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
187
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
188
|
+
setThemeStore(themeStoreInstance: {
|
189
|
+
state: {
|
190
|
+
currentTheme: ThemeDefinitionV2;
|
191
|
+
};
|
192
|
+
events: {
|
193
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
194
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
195
|
+
actions: {
|
196
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
197
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
198
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
199
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
200
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
201
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
202
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
203
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
204
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
205
|
+
} & {
|
206
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
207
|
+
};
|
208
|
+
get: {
|
209
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
210
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
211
|
+
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").TypographyTypeDefinition;
|
212
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
213
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
214
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
215
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
216
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
217
|
+
currentTheme(): ThemeDefinitionV2;
|
218
|
+
};
|
219
|
+
}): void;
|
220
|
+
}) => T_5, fn: T_5 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
221
|
+
} & {
|
222
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
223
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
224
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
225
|
+
setThemeStore(themeStoreInstance: {
|
226
|
+
state: {
|
227
|
+
currentTheme: ThemeDefinitionV2;
|
228
|
+
};
|
229
|
+
events: {
|
230
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
231
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
232
|
+
actions: {
|
233
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
234
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
235
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
236
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
237
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
238
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
239
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
240
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
241
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
242
|
+
} & {
|
243
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
244
|
+
};
|
245
|
+
get: {
|
246
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
247
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
248
|
+
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").TypographyTypeDefinition;
|
249
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
250
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
251
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
252
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
253
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
254
|
+
currentTheme(): ThemeDefinitionV2;
|
255
|
+
};
|
256
|
+
}): void;
|
257
|
+
};
|
258
|
+
get: {
|
259
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
260
|
+
readonly theme: "light" | "dark";
|
261
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
262
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
263
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
264
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
265
|
+
dynamic: (isContainer: boolean) => {
|
266
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
267
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
268
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
269
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
270
|
+
};
|
271
|
+
};
|
272
|
+
deactivated(): void;
|
273
|
+
}, blueprintStore: {
|
274
|
+
state: {
|
275
|
+
blueprint: import("@omnia/fx-models").BlueprintDefinition;
|
276
|
+
blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes;
|
277
|
+
};
|
278
|
+
events: {
|
279
|
+
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").BlueprintDefinition>;
|
280
|
+
onMutatedBlueprintType: import("@omnia/fx").MessageBusExposeOnlySubscription<"default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes>;
|
281
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
282
|
+
actions: {
|
283
|
+
onDispatching<T_6 extends (...args: any) => any>(action: (actions: {
|
284
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
285
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
286
|
+
setThemeStore(themeStoreInstance: {
|
287
|
+
state: {
|
288
|
+
currentTheme: ThemeDefinitionV2;
|
289
|
+
};
|
290
|
+
events: {
|
291
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
292
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
293
|
+
actions: {
|
294
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
295
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
296
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
297
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
298
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
299
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
300
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
301
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
302
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
303
|
+
} & {
|
304
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
305
|
+
};
|
306
|
+
get: {
|
307
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
308
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
309
|
+
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").TypographyTypeDefinition;
|
310
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
311
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
312
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
313
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
314
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
315
|
+
currentTheme(): ThemeDefinitionV2;
|
316
|
+
};
|
317
|
+
}): void;
|
318
|
+
}) => T_6, fn: T_6 extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
319
|
+
onDispatched<T_7 extends (...args: any) => any>(action: (actions: {
|
320
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
321
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
322
|
+
setThemeStore(themeStoreInstance: {
|
323
|
+
state: {
|
324
|
+
currentTheme: ThemeDefinitionV2;
|
325
|
+
};
|
326
|
+
events: {
|
327
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
328
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
329
|
+
actions: {
|
330
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
331
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
332
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
333
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
334
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
335
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
336
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
337
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
338
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
339
|
+
} & {
|
340
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
341
|
+
};
|
342
|
+
get: {
|
343
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
344
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
345
|
+
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").TypographyTypeDefinition;
|
346
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
347
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
348
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
349
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
350
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
351
|
+
currentTheme(): ThemeDefinitionV2;
|
352
|
+
};
|
353
|
+
}): void;
|
354
|
+
}) => T_7, fn: T_7 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
355
|
+
onFailure<T_8 extends (...args: any) => any>(action: (actions: {
|
356
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
357
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
358
|
+
setThemeStore(themeStoreInstance: {
|
359
|
+
state: {
|
360
|
+
currentTheme: ThemeDefinitionV2;
|
361
|
+
};
|
362
|
+
events: {
|
363
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
364
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
365
|
+
actions: {
|
366
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
367
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
368
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
369
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
370
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
371
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
372
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
373
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
374
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
375
|
+
} & {
|
376
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
377
|
+
};
|
378
|
+
get: {
|
379
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
380
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
381
|
+
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").TypographyTypeDefinition;
|
382
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
383
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
384
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
385
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
386
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
387
|
+
currentTheme(): ThemeDefinitionV2;
|
388
|
+
};
|
389
|
+
}): void;
|
390
|
+
}) => T_8, fn: T_8 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
391
|
+
} & {
|
392
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
393
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
394
|
+
setThemeStore(themeStoreInstance: {
|
395
|
+
state: {
|
396
|
+
currentTheme: ThemeDefinitionV2;
|
397
|
+
};
|
398
|
+
events: {
|
399
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
400
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
401
|
+
actions: {
|
402
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
403
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
404
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
405
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
406
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
407
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
408
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
409
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
410
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
411
|
+
} & {
|
412
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
413
|
+
};
|
414
|
+
get: {
|
415
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
416
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
417
|
+
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").TypographyTypeDefinition;
|
418
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
419
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
420
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
421
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
422
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
423
|
+
currentTheme(): ThemeDefinitionV2;
|
424
|
+
};
|
425
|
+
}): void;
|
426
|
+
};
|
427
|
+
get: {
|
428
|
+
readonly all: import("@omnia/fx-models").BlueprintDefinition;
|
429
|
+
byType: <TType extends import("@omnia/fx-models").BlueprintItemDefinition>(type: import("@omnia/fx-models").WebBlueprintDefintionType | import("@omnia/fx-models").WebBlueprintDefintionTypes) => TType;
|
430
|
+
readonly typography: import("@omnia/fx-models").TypographyBlueprint;
|
431
|
+
readonly block: import("@omnia/fx-models").BlockBlueprint;
|
432
|
+
spacing: {
|
433
|
+
readonly inner: import("@omnia/fx-models").SpacingBlueprint;
|
434
|
+
readonly layout: import("@omnia/fx-models").SpacingBlueprint;
|
435
|
+
};
|
436
|
+
};
|
437
|
+
deactivated(): void;
|
438
|
+
}) => any;
|
439
|
+
};
|
440
|
+
$attrs: {
|
441
|
+
[x: string]: unknown;
|
442
|
+
};
|
443
|
+
$refs: {
|
444
|
+
[x: string]: unknown;
|
445
|
+
};
|
446
|
+
$slots: Readonly<{
|
447
|
+
[name: string]: import("vue").Slot<any>;
|
448
|
+
}>;
|
449
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
450
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
451
|
+
$emit: (event: "theme:initialized", themeStore: {
|
452
|
+
state: {
|
453
|
+
currentTheme: ThemeDefinitionV2;
|
454
|
+
};
|
455
|
+
events: {
|
456
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
457
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
458
|
+
actions: {
|
459
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
460
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
461
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
462
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
463
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
464
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
465
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
466
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
467
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
468
|
+
} & {
|
469
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
470
|
+
};
|
471
|
+
get: {
|
472
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
473
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
474
|
+
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").TypographyTypeDefinition;
|
475
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
476
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
477
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
478
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
479
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
480
|
+
currentTheme(): ThemeDefinitionV2;
|
481
|
+
};
|
482
|
+
}, colorSchemaStore: {
|
483
|
+
state: {
|
484
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
485
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
486
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
487
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
488
|
+
isContainer: boolean;
|
489
|
+
name: string;
|
490
|
+
colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
491
|
+
id: import("@omnia/fx-models").GuidValue;
|
492
|
+
};
|
493
|
+
events: {
|
494
|
+
onMutatedBase: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
495
|
+
onMutatedOnBase: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
496
|
+
onMutatedContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
497
|
+
onMutatedOnContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
498
|
+
onMutatedIsContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
499
|
+
onMutatedName: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
500
|
+
onMutatedColorSchemaType: import("@omnia/fx").MessageBusExposeOnlySubscription<"info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
501
|
+
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
502
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
503
|
+
actions: {
|
504
|
+
onDispatching<T_3 extends (...args: any) => any>(action: (actions: {
|
505
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
506
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
507
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
508
|
+
setThemeStore(themeStoreInstance: {
|
509
|
+
state: {
|
510
|
+
currentTheme: ThemeDefinitionV2;
|
511
|
+
};
|
512
|
+
events: {
|
513
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
514
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
515
|
+
actions: {
|
516
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
517
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
518
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
519
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
520
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
521
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
522
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
523
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
524
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
525
|
+
} & {
|
526
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
527
|
+
};
|
528
|
+
get: {
|
529
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
530
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
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").TypographyTypeDefinition;
|
532
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
533
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
534
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
535
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
536
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
537
|
+
currentTheme(): ThemeDefinitionV2;
|
538
|
+
};
|
539
|
+
}): void;
|
540
|
+
}) => T_3, fn: T_3 extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
541
|
+
onDispatched<T_4 extends (...args: any) => any>(action: (actions: {
|
542
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
543
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
544
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
545
|
+
setThemeStore(themeStoreInstance: {
|
546
|
+
state: {
|
547
|
+
currentTheme: ThemeDefinitionV2;
|
548
|
+
};
|
549
|
+
events: {
|
550
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
551
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
552
|
+
actions: {
|
553
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
554
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
555
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
556
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
557
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
558
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
559
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
560
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
561
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
562
|
+
} & {
|
563
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
564
|
+
};
|
565
|
+
get: {
|
566
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
567
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
568
|
+
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").TypographyTypeDefinition;
|
569
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
570
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
571
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
572
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
573
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
574
|
+
currentTheme(): ThemeDefinitionV2;
|
575
|
+
};
|
576
|
+
}): void;
|
577
|
+
}) => T_4, fn: T_4 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
578
|
+
onFailure<T_5 extends (...args: any) => any>(action: (actions: {
|
579
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
580
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
581
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
582
|
+
setThemeStore(themeStoreInstance: {
|
583
|
+
state: {
|
584
|
+
currentTheme: ThemeDefinitionV2;
|
585
|
+
};
|
586
|
+
events: {
|
587
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
588
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
589
|
+
actions: {
|
590
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
591
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
592
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
593
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
594
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
595
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
596
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
597
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
598
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
599
|
+
} & {
|
600
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
601
|
+
};
|
602
|
+
get: {
|
603
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
604
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
605
|
+
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").TypographyTypeDefinition;
|
606
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
607
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
608
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
609
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
610
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
611
|
+
currentTheme(): ThemeDefinitionV2;
|
612
|
+
};
|
613
|
+
}): void;
|
614
|
+
}) => T_5, fn: T_5 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
615
|
+
} & {
|
616
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
617
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
618
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
619
|
+
setThemeStore(themeStoreInstance: {
|
620
|
+
state: {
|
621
|
+
currentTheme: ThemeDefinitionV2;
|
622
|
+
};
|
623
|
+
events: {
|
624
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
625
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
626
|
+
actions: {
|
627
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
628
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
629
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
630
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
631
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
632
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
633
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
634
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
635
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
636
|
+
} & {
|
637
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
638
|
+
};
|
639
|
+
get: {
|
640
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
641
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
642
|
+
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").TypographyTypeDefinition;
|
643
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
644
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
645
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
646
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
647
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
648
|
+
currentTheme(): ThemeDefinitionV2;
|
649
|
+
};
|
650
|
+
}): void;
|
651
|
+
};
|
652
|
+
get: {
|
653
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
654
|
+
readonly theme: "light" | "dark";
|
655
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
656
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
657
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
658
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
659
|
+
dynamic: (isContainer: boolean) => {
|
660
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
661
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
662
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
663
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
664
|
+
};
|
665
|
+
};
|
666
|
+
deactivated(): void;
|
667
|
+
}, blueprintStore: {
|
668
|
+
state: {
|
669
|
+
blueprint: import("@omnia/fx-models").BlueprintDefinition;
|
670
|
+
blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes;
|
671
|
+
};
|
672
|
+
events: {
|
673
|
+
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").BlueprintDefinition>;
|
674
|
+
onMutatedBlueprintType: import("@omnia/fx").MessageBusExposeOnlySubscription<"default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes>;
|
675
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
676
|
+
actions: {
|
677
|
+
onDispatching<T_6 extends (...args: any) => any>(action: (actions: {
|
678
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
679
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
680
|
+
setThemeStore(themeStoreInstance: {
|
681
|
+
state: {
|
682
|
+
currentTheme: ThemeDefinitionV2;
|
683
|
+
};
|
684
|
+
events: {
|
685
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
686
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
687
|
+
actions: {
|
688
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
689
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
690
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
691
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
692
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
693
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
694
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
695
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
696
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
697
|
+
} & {
|
698
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
699
|
+
};
|
700
|
+
get: {
|
701
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
702
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
703
|
+
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").TypographyTypeDefinition;
|
704
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
705
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
706
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
707
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
708
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
709
|
+
currentTheme(): ThemeDefinitionV2;
|
710
|
+
};
|
711
|
+
}): void;
|
712
|
+
}) => T_6, fn: T_6 extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
713
|
+
onDispatched<T_7 extends (...args: any) => any>(action: (actions: {
|
714
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
715
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
716
|
+
setThemeStore(themeStoreInstance: {
|
717
|
+
state: {
|
718
|
+
currentTheme: ThemeDefinitionV2;
|
719
|
+
};
|
720
|
+
events: {
|
721
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
722
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
723
|
+
actions: {
|
724
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
725
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
726
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
727
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
728
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
729
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
730
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
731
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
732
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
733
|
+
} & {
|
734
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
735
|
+
};
|
736
|
+
get: {
|
737
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
738
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
739
|
+
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").TypographyTypeDefinition;
|
740
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
741
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
742
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
743
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
744
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
745
|
+
currentTheme(): ThemeDefinitionV2;
|
746
|
+
};
|
747
|
+
}): void;
|
748
|
+
}) => T_7, fn: T_7 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
749
|
+
onFailure<T_8 extends (...args: any) => any>(action: (actions: {
|
750
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
751
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
752
|
+
setThemeStore(themeStoreInstance: {
|
753
|
+
state: {
|
754
|
+
currentTheme: ThemeDefinitionV2;
|
755
|
+
};
|
756
|
+
events: {
|
757
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
758
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
759
|
+
actions: {
|
760
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
761
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
762
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
763
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
764
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
765
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
766
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
767
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
768
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
769
|
+
} & {
|
770
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
771
|
+
};
|
772
|
+
get: {
|
773
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
774
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
775
|
+
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").TypographyTypeDefinition;
|
776
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
777
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
778
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
779
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
780
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
781
|
+
currentTheme(): ThemeDefinitionV2;
|
782
|
+
};
|
783
|
+
}): void;
|
784
|
+
}) => T_8, fn: T_8 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
785
|
+
} & {
|
786
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
787
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
788
|
+
setThemeStore(themeStoreInstance: {
|
789
|
+
state: {
|
790
|
+
currentTheme: ThemeDefinitionV2;
|
791
|
+
};
|
792
|
+
events: {
|
793
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
794
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
795
|
+
actions: {
|
796
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
797
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
798
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
799
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
800
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
801
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
802
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
803
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
804
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
805
|
+
} & {
|
806
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
807
|
+
};
|
808
|
+
get: {
|
809
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
810
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
811
|
+
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").TypographyTypeDefinition;
|
812
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
813
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
814
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
815
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
816
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
817
|
+
currentTheme(): ThemeDefinitionV2;
|
818
|
+
};
|
819
|
+
}): void;
|
820
|
+
};
|
821
|
+
get: {
|
822
|
+
readonly all: import("@omnia/fx-models").BlueprintDefinition;
|
823
|
+
byType: <TType extends import("@omnia/fx-models").BlueprintItemDefinition>(type: import("@omnia/fx-models").WebBlueprintDefintionType | import("@omnia/fx-models").WebBlueprintDefintionTypes) => TType;
|
824
|
+
readonly typography: import("@omnia/fx-models").TypographyBlueprint;
|
825
|
+
readonly block: import("@omnia/fx-models").BlockBlueprint;
|
826
|
+
spacing: {
|
827
|
+
readonly inner: import("@omnia/fx-models").SpacingBlueprint;
|
828
|
+
readonly layout: import("@omnia/fx-models").SpacingBlueprint;
|
829
|
+
};
|
830
|
+
};
|
831
|
+
deactivated(): void;
|
832
|
+
}) => void;
|
833
|
+
$el: any;
|
834
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
835
|
+
"theme-type": {
|
836
|
+
type: import("vue").PropType<themeType>;
|
837
|
+
};
|
838
|
+
themeType: {
|
839
|
+
type: import("vue").PropType<themeType>;
|
840
|
+
};
|
841
|
+
"theme-definition": {
|
842
|
+
type: import("vue").PropType<ThemeDefinitionV2>;
|
843
|
+
};
|
844
|
+
themeDefinition: {
|
845
|
+
type: import("vue").PropType<ThemeDefinitionV2>;
|
846
|
+
};
|
847
|
+
}>> & {
|
848
|
+
"onTheme:initialized"?: (themeStore: {
|
849
|
+
state: {
|
850
|
+
currentTheme: ThemeDefinitionV2;
|
851
|
+
};
|
852
|
+
events: {
|
853
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
854
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
855
|
+
actions: {
|
856
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
857
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
858
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
859
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
860
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
861
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
862
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
863
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
864
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
865
|
+
} & {
|
866
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
867
|
+
};
|
868
|
+
get: {
|
869
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
870
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
871
|
+
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").TypographyTypeDefinition;
|
872
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
873
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
874
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
875
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
876
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
877
|
+
currentTheme(): ThemeDefinitionV2;
|
878
|
+
};
|
879
|
+
}, colorSchemaStore: {
|
880
|
+
state: {
|
881
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
882
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
883
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
884
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
885
|
+
isContainer: boolean;
|
886
|
+
name: string;
|
887
|
+
colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
888
|
+
id: import("@omnia/fx-models").GuidValue;
|
889
|
+
};
|
890
|
+
events: {
|
891
|
+
onMutatedBase: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
892
|
+
onMutatedOnBase: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
893
|
+
onMutatedContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
894
|
+
onMutatedOnContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
895
|
+
onMutatedIsContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
896
|
+
onMutatedName: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
897
|
+
onMutatedColorSchemaType: import("@omnia/fx").MessageBusExposeOnlySubscription<"info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
898
|
+
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
899
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
900
|
+
actions: {
|
901
|
+
onDispatching<T_3 extends (...args: any) => any>(action: (actions: {
|
902
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
903
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
904
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
905
|
+
setThemeStore(themeStoreInstance: {
|
906
|
+
state: {
|
907
|
+
currentTheme: ThemeDefinitionV2;
|
908
|
+
};
|
909
|
+
events: {
|
910
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
911
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
912
|
+
actions: {
|
913
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
914
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
915
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
916
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
917
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
918
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
919
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
920
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
921
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
922
|
+
} & {
|
923
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
924
|
+
};
|
925
|
+
get: {
|
926
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
927
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
928
|
+
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").TypographyTypeDefinition;
|
929
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
930
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
931
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
932
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
933
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
934
|
+
currentTheme(): ThemeDefinitionV2;
|
935
|
+
};
|
936
|
+
}): void;
|
937
|
+
}) => T_3, fn: T_3 extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
938
|
+
onDispatched<T_4 extends (...args: any) => any>(action: (actions: {
|
939
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
940
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
941
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
942
|
+
setThemeStore(themeStoreInstance: {
|
943
|
+
state: {
|
944
|
+
currentTheme: ThemeDefinitionV2;
|
945
|
+
};
|
946
|
+
events: {
|
947
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
948
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
949
|
+
actions: {
|
950
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
951
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
952
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
953
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
954
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
955
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
956
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
957
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
958
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
959
|
+
} & {
|
960
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
961
|
+
};
|
962
|
+
get: {
|
963
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
964
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
965
|
+
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").TypographyTypeDefinition;
|
966
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
967
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
968
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
969
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
970
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
971
|
+
currentTheme(): ThemeDefinitionV2;
|
972
|
+
};
|
973
|
+
}): void;
|
974
|
+
}) => T_4, fn: T_4 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
975
|
+
onFailure<T_5 extends (...args: any) => any>(action: (actions: {
|
976
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
977
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
978
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
979
|
+
setThemeStore(themeStoreInstance: {
|
980
|
+
state: {
|
981
|
+
currentTheme: ThemeDefinitionV2;
|
982
|
+
};
|
983
|
+
events: {
|
984
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
985
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
986
|
+
actions: {
|
987
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
988
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
989
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
990
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
991
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
992
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
993
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
994
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
995
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
996
|
+
} & {
|
997
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
998
|
+
};
|
999
|
+
get: {
|
1000
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1001
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1002
|
+
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").TypographyTypeDefinition;
|
1003
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1004
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1005
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1006
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1007
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1008
|
+
currentTheme(): ThemeDefinitionV2;
|
1009
|
+
};
|
1010
|
+
}): void;
|
1011
|
+
}) => T_5, fn: T_5 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1012
|
+
} & {
|
1013
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
1014
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
1015
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
1016
|
+
setThemeStore(themeStoreInstance: {
|
1017
|
+
state: {
|
1018
|
+
currentTheme: ThemeDefinitionV2;
|
1019
|
+
};
|
1020
|
+
events: {
|
1021
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1022
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1023
|
+
actions: {
|
1024
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1025
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1026
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1027
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1028
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1029
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1030
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1031
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1032
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1033
|
+
} & {
|
1034
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1035
|
+
};
|
1036
|
+
get: {
|
1037
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1038
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1039
|
+
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").TypographyTypeDefinition;
|
1040
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1041
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1042
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1043
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1044
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1045
|
+
currentTheme(): ThemeDefinitionV2;
|
1046
|
+
};
|
1047
|
+
}): void;
|
1048
|
+
};
|
1049
|
+
get: {
|
1050
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
1051
|
+
readonly theme: "light" | "dark";
|
1052
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
1053
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
1054
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
1055
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
1056
|
+
dynamic: (isContainer: boolean) => {
|
1057
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
1058
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
1059
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
1060
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
1061
|
+
};
|
1062
|
+
};
|
1063
|
+
deactivated(): void;
|
1064
|
+
}, blueprintStore: {
|
1065
|
+
state: {
|
1066
|
+
blueprint: import("@omnia/fx-models").BlueprintDefinition;
|
1067
|
+
blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes;
|
1068
|
+
};
|
1069
|
+
events: {
|
1070
|
+
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").BlueprintDefinition>;
|
1071
|
+
onMutatedBlueprintType: import("@omnia/fx").MessageBusExposeOnlySubscription<"default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes>;
|
1072
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1073
|
+
actions: {
|
1074
|
+
onDispatching<T_6 extends (...args: any) => any>(action: (actions: {
|
1075
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
1076
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
1077
|
+
setThemeStore(themeStoreInstance: {
|
1078
|
+
state: {
|
1079
|
+
currentTheme: ThemeDefinitionV2;
|
1080
|
+
};
|
1081
|
+
events: {
|
1082
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1083
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1084
|
+
actions: {
|
1085
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1086
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1087
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1088
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1089
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1090
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1091
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1092
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1093
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1094
|
+
} & {
|
1095
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1096
|
+
};
|
1097
|
+
get: {
|
1098
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1099
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1100
|
+
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").TypographyTypeDefinition;
|
1101
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1102
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1103
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1104
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1105
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1106
|
+
currentTheme(): ThemeDefinitionV2;
|
1107
|
+
};
|
1108
|
+
}): void;
|
1109
|
+
}) => T_6, fn: T_6 extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1110
|
+
onDispatched<T_7 extends (...args: any) => any>(action: (actions: {
|
1111
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
1112
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
1113
|
+
setThemeStore(themeStoreInstance: {
|
1114
|
+
state: {
|
1115
|
+
currentTheme: ThemeDefinitionV2;
|
1116
|
+
};
|
1117
|
+
events: {
|
1118
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1119
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1120
|
+
actions: {
|
1121
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1122
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1123
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1124
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1125
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1126
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1127
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1128
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1129
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1130
|
+
} & {
|
1131
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1132
|
+
};
|
1133
|
+
get: {
|
1134
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1135
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1136
|
+
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").TypographyTypeDefinition;
|
1137
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1138
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1139
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1140
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1141
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1142
|
+
currentTheme(): ThemeDefinitionV2;
|
1143
|
+
};
|
1144
|
+
}): void;
|
1145
|
+
}) => T_7, fn: T_7 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1146
|
+
onFailure<T_8 extends (...args: any) => any>(action: (actions: {
|
1147
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
1148
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
1149
|
+
setThemeStore(themeStoreInstance: {
|
1150
|
+
state: {
|
1151
|
+
currentTheme: ThemeDefinitionV2;
|
1152
|
+
};
|
1153
|
+
events: {
|
1154
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1155
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1156
|
+
actions: {
|
1157
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1158
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1159
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1160
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1161
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1162
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1163
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1164
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1165
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1166
|
+
} & {
|
1167
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1168
|
+
};
|
1169
|
+
get: {
|
1170
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1171
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1172
|
+
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").TypographyTypeDefinition;
|
1173
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1174
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1175
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1176
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1177
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1178
|
+
currentTheme(): ThemeDefinitionV2;
|
1179
|
+
};
|
1180
|
+
}): void;
|
1181
|
+
}) => T_8, fn: T_8 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1182
|
+
} & {
|
1183
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
1184
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
1185
|
+
setThemeStore(themeStoreInstance: {
|
1186
|
+
state: {
|
1187
|
+
currentTheme: ThemeDefinitionV2;
|
1188
|
+
};
|
1189
|
+
events: {
|
1190
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1191
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1192
|
+
actions: {
|
1193
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1194
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1195
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1196
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1197
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1198
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1199
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1200
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1201
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1202
|
+
} & {
|
1203
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1204
|
+
};
|
1205
|
+
get: {
|
1206
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1207
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1208
|
+
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").TypographyTypeDefinition;
|
1209
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1210
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1211
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1212
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1213
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1214
|
+
currentTheme(): ThemeDefinitionV2;
|
1215
|
+
};
|
1216
|
+
}): void;
|
1217
|
+
};
|
1218
|
+
get: {
|
1219
|
+
readonly all: import("@omnia/fx-models").BlueprintDefinition;
|
1220
|
+
byType: <TType extends import("@omnia/fx-models").BlueprintItemDefinition>(type: import("@omnia/fx-models").WebBlueprintDefintionType | import("@omnia/fx-models").WebBlueprintDefintionTypes) => TType;
|
1221
|
+
readonly typography: import("@omnia/fx-models").TypographyBlueprint;
|
1222
|
+
readonly block: import("@omnia/fx-models").BlockBlueprint;
|
1223
|
+
spacing: {
|
1224
|
+
readonly inner: import("@omnia/fx-models").SpacingBlueprint;
|
1225
|
+
readonly layout: import("@omnia/fx-models").SpacingBlueprint;
|
1226
|
+
};
|
1227
|
+
};
|
1228
|
+
deactivated(): void;
|
1229
|
+
}) => any;
|
1230
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
1231
|
+
[key: string]: any;
|
1232
|
+
}>[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
1233
|
+
"theme:initialized": (themeStore: ReturnType<typeof useThemeStoreV2>, colorSchemaStore: ReturnType<typeof useColorSchemaStore>, blueprintStore: ReturnType<typeof useBlueprintStore>) => any;
|
1234
|
+
}, string, {}, {}, string, {}> & {
|
1235
|
+
beforeCreate?: (() => void) | (() => void)[];
|
1236
|
+
created?: (() => void) | (() => void)[];
|
1237
|
+
beforeMount?: (() => void) | (() => void)[];
|
1238
|
+
mounted?: (() => void) | (() => void)[];
|
1239
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
1240
|
+
updated?: (() => void) | (() => void)[];
|
1241
|
+
activated?: (() => void) | (() => void)[];
|
1242
|
+
deactivated?: (() => void) | (() => void)[];
|
1243
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
1244
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
1245
|
+
destroyed?: (() => void) | (() => void)[];
|
1246
|
+
unmounted?: (() => void) | (() => void)[];
|
1247
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
1248
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
1249
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
1250
|
+
};
|
1251
|
+
$forceUpdate: () => void;
|
1252
|
+
$nextTick: typeof import("vue").nextTick;
|
1253
|
+
$watch<T_9 extends string | ((...args: any) => any)>(source: T_9, cb: T_9 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
1254
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
1255
|
+
"theme-type": {
|
1256
|
+
type: import("vue").PropType<themeType>;
|
1257
|
+
};
|
1258
|
+
themeType: {
|
1259
|
+
type: import("vue").PropType<themeType>;
|
1260
|
+
};
|
1261
|
+
"theme-definition": {
|
1262
|
+
type: import("vue").PropType<ThemeDefinitionV2>;
|
1263
|
+
};
|
1264
|
+
themeDefinition: {
|
1265
|
+
type: import("vue").PropType<ThemeDefinitionV2>;
|
1266
|
+
};
|
1267
|
+
}>> & {
|
1268
|
+
"onTheme:initialized"?: (themeStore: {
|
1269
|
+
state: {
|
1270
|
+
currentTheme: ThemeDefinitionV2;
|
1271
|
+
};
|
1272
|
+
events: {
|
1273
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1274
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1275
|
+
actions: {
|
1276
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1277
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1278
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1279
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1280
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1281
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1282
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1283
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1284
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1285
|
+
} & {
|
1286
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1287
|
+
};
|
1288
|
+
get: {
|
1289
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1290
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1291
|
+
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").TypographyTypeDefinition;
|
1292
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1293
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1294
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1295
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1296
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1297
|
+
currentTheme(): ThemeDefinitionV2;
|
1298
|
+
};
|
1299
|
+
}, colorSchemaStore: {
|
1300
|
+
state: {
|
1301
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
1302
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
1303
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
1304
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
1305
|
+
isContainer: boolean;
|
1306
|
+
name: string;
|
1307
|
+
colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
1308
|
+
id: import("@omnia/fx-models").GuidValue;
|
1309
|
+
};
|
1310
|
+
events: {
|
1311
|
+
onMutatedBase: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
1312
|
+
onMutatedOnBase: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
1313
|
+
onMutatedContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
1314
|
+
onMutatedOnContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
1315
|
+
onMutatedIsContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
1316
|
+
onMutatedName: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
1317
|
+
onMutatedColorSchemaType: import("@omnia/fx").MessageBusExposeOnlySubscription<"info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
1318
|
+
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
1319
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1320
|
+
actions: {
|
1321
|
+
onDispatching<T_3 extends (...args: any) => any>(action: (actions: {
|
1322
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
1323
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
1324
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
1325
|
+
setThemeStore(themeStoreInstance: {
|
1326
|
+
state: {
|
1327
|
+
currentTheme: ThemeDefinitionV2;
|
1328
|
+
};
|
1329
|
+
events: {
|
1330
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1331
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1332
|
+
actions: {
|
1333
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1334
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1335
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1336
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1337
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1338
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1339
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1340
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1341
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1342
|
+
} & {
|
1343
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1344
|
+
};
|
1345
|
+
get: {
|
1346
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1347
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1348
|
+
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").TypographyTypeDefinition;
|
1349
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1350
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1351
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1352
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1353
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1354
|
+
currentTheme(): ThemeDefinitionV2;
|
1355
|
+
};
|
1356
|
+
}): void;
|
1357
|
+
}) => T_3, fn: T_3 extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1358
|
+
onDispatched<T_4 extends (...args: any) => any>(action: (actions: {
|
1359
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
1360
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
1361
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
1362
|
+
setThemeStore(themeStoreInstance: {
|
1363
|
+
state: {
|
1364
|
+
currentTheme: ThemeDefinitionV2;
|
1365
|
+
};
|
1366
|
+
events: {
|
1367
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1368
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1369
|
+
actions: {
|
1370
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1371
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1372
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1373
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1374
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1375
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1376
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1377
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1378
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1379
|
+
} & {
|
1380
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1381
|
+
};
|
1382
|
+
get: {
|
1383
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1384
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1385
|
+
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").TypographyTypeDefinition;
|
1386
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1387
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1388
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1389
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1390
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1391
|
+
currentTheme(): ThemeDefinitionV2;
|
1392
|
+
};
|
1393
|
+
}): void;
|
1394
|
+
}) => T_4, fn: T_4 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1395
|
+
onFailure<T_5 extends (...args: any) => any>(action: (actions: {
|
1396
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
1397
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
1398
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
1399
|
+
setThemeStore(themeStoreInstance: {
|
1400
|
+
state: {
|
1401
|
+
currentTheme: ThemeDefinitionV2;
|
1402
|
+
};
|
1403
|
+
events: {
|
1404
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1405
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1406
|
+
actions: {
|
1407
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1408
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1409
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1410
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1411
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1412
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1413
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1414
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1415
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1416
|
+
} & {
|
1417
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1418
|
+
};
|
1419
|
+
get: {
|
1420
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1421
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1422
|
+
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").TypographyTypeDefinition;
|
1423
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1424
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1425
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1426
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1427
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1428
|
+
currentTheme(): ThemeDefinitionV2;
|
1429
|
+
};
|
1430
|
+
}): void;
|
1431
|
+
}) => T_5, fn: T_5 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1432
|
+
} & {
|
1433
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
1434
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
1435
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
1436
|
+
setThemeStore(themeStoreInstance: {
|
1437
|
+
state: {
|
1438
|
+
currentTheme: ThemeDefinitionV2;
|
1439
|
+
};
|
1440
|
+
events: {
|
1441
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1442
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1443
|
+
actions: {
|
1444
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1445
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1446
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1447
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1448
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1449
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1450
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1451
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1452
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1453
|
+
} & {
|
1454
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1455
|
+
};
|
1456
|
+
get: {
|
1457
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1458
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1459
|
+
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").TypographyTypeDefinition;
|
1460
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1461
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1462
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1463
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1464
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1465
|
+
currentTheme(): ThemeDefinitionV2;
|
1466
|
+
};
|
1467
|
+
}): void;
|
1468
|
+
};
|
1469
|
+
get: {
|
1470
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
1471
|
+
readonly theme: "light" | "dark";
|
1472
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
1473
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
1474
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
1475
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
1476
|
+
dynamic: (isContainer: boolean) => {
|
1477
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
1478
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
1479
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
1480
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
1481
|
+
};
|
1482
|
+
};
|
1483
|
+
deactivated(): void;
|
1484
|
+
}, blueprintStore: {
|
1485
|
+
state: {
|
1486
|
+
blueprint: import("@omnia/fx-models").BlueprintDefinition;
|
1487
|
+
blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes;
|
1488
|
+
};
|
1489
|
+
events: {
|
1490
|
+
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").BlueprintDefinition>;
|
1491
|
+
onMutatedBlueprintType: import("@omnia/fx").MessageBusExposeOnlySubscription<"default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes>;
|
1492
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1493
|
+
actions: {
|
1494
|
+
onDispatching<T_6 extends (...args: any) => any>(action: (actions: {
|
1495
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
1496
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
1497
|
+
setThemeStore(themeStoreInstance: {
|
1498
|
+
state: {
|
1499
|
+
currentTheme: ThemeDefinitionV2;
|
1500
|
+
};
|
1501
|
+
events: {
|
1502
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1503
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1504
|
+
actions: {
|
1505
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1506
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1507
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1508
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1509
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1510
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1511
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1512
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1513
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1514
|
+
} & {
|
1515
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1516
|
+
};
|
1517
|
+
get: {
|
1518
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1519
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1520
|
+
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").TypographyTypeDefinition;
|
1521
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1522
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1523
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1524
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1525
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1526
|
+
currentTheme(): ThemeDefinitionV2;
|
1527
|
+
};
|
1528
|
+
}): void;
|
1529
|
+
}) => T_6, fn: T_6 extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1530
|
+
onDispatched<T_7 extends (...args: any) => any>(action: (actions: {
|
1531
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
1532
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
1533
|
+
setThemeStore(themeStoreInstance: {
|
1534
|
+
state: {
|
1535
|
+
currentTheme: ThemeDefinitionV2;
|
1536
|
+
};
|
1537
|
+
events: {
|
1538
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1539
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1540
|
+
actions: {
|
1541
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1542
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1543
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1544
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1545
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1546
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1547
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1548
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1549
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1550
|
+
} & {
|
1551
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1552
|
+
};
|
1553
|
+
get: {
|
1554
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1555
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1556
|
+
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").TypographyTypeDefinition;
|
1557
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1558
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1559
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1560
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1561
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1562
|
+
currentTheme(): ThemeDefinitionV2;
|
1563
|
+
};
|
1564
|
+
}): void;
|
1565
|
+
}) => T_7, fn: T_7 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1566
|
+
onFailure<T_8 extends (...args: any) => any>(action: (actions: {
|
1567
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
1568
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
1569
|
+
setThemeStore(themeStoreInstance: {
|
1570
|
+
state: {
|
1571
|
+
currentTheme: ThemeDefinitionV2;
|
1572
|
+
};
|
1573
|
+
events: {
|
1574
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1575
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1576
|
+
actions: {
|
1577
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1578
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1579
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1580
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1581
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1582
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1583
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1584
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1585
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1586
|
+
} & {
|
1587
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1588
|
+
};
|
1589
|
+
get: {
|
1590
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1591
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1592
|
+
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").TypographyTypeDefinition;
|
1593
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1594
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1595
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1596
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1597
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1598
|
+
currentTheme(): ThemeDefinitionV2;
|
1599
|
+
};
|
1600
|
+
}): void;
|
1601
|
+
}) => T_8, fn: T_8 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1602
|
+
} & {
|
1603
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
1604
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
1605
|
+
setThemeStore(themeStoreInstance: {
|
1606
|
+
state: {
|
1607
|
+
currentTheme: ThemeDefinitionV2;
|
1608
|
+
};
|
1609
|
+
events: {
|
1610
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1611
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1612
|
+
actions: {
|
1613
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1614
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1615
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1616
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1617
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1618
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1619
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1620
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1621
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1622
|
+
} & {
|
1623
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1624
|
+
};
|
1625
|
+
get: {
|
1626
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1627
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1628
|
+
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").TypographyTypeDefinition;
|
1629
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1630
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1631
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1632
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1633
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1634
|
+
currentTheme(): ThemeDefinitionV2;
|
1635
|
+
};
|
1636
|
+
}): void;
|
1637
|
+
};
|
1638
|
+
get: {
|
1639
|
+
readonly all: import("@omnia/fx-models").BlueprintDefinition;
|
1640
|
+
byType: <TType extends import("@omnia/fx-models").BlueprintItemDefinition>(type: import("@omnia/fx-models").WebBlueprintDefintionType | import("@omnia/fx-models").WebBlueprintDefintionTypes) => TType;
|
1641
|
+
readonly typography: import("@omnia/fx-models").TypographyBlueprint;
|
1642
|
+
readonly block: import("@omnia/fx-models").BlockBlueprint;
|
1643
|
+
spacing: {
|
1644
|
+
readonly inner: import("@omnia/fx-models").SpacingBlueprint;
|
1645
|
+
readonly layout: import("@omnia/fx-models").SpacingBlueprint;
|
1646
|
+
};
|
1647
|
+
};
|
1648
|
+
deactivated(): void;
|
1649
|
+
}) => any;
|
1650
|
+
} & import("vue").ShallowUnwrapRef<() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
1651
|
+
[key: string]: any;
|
1652
|
+
}>[]> & {} & import("vue").ComponentCustomProperties & {};
|
1653
|
+
__isFragment?: never;
|
1654
|
+
__isTeleport?: never;
|
1655
|
+
__isSuspense?: never;
|
1656
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
1657
|
+
"theme-type": {
|
1658
|
+
type: import("vue").PropType<themeType>;
|
1659
|
+
};
|
1660
|
+
themeType: {
|
1661
|
+
type: import("vue").PropType<themeType>;
|
1662
|
+
};
|
1663
|
+
"theme-definition": {
|
1664
|
+
type: import("vue").PropType<ThemeDefinitionV2>;
|
1665
|
+
};
|
1666
|
+
themeDefinition: {
|
1667
|
+
type: import("vue").PropType<ThemeDefinitionV2>;
|
1668
|
+
};
|
1669
|
+
}>> & {
|
1670
|
+
"onTheme:initialized"?: (themeStore: {
|
1671
|
+
state: {
|
1672
|
+
currentTheme: ThemeDefinitionV2;
|
1673
|
+
};
|
1674
|
+
events: {
|
1675
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1676
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1677
|
+
actions: {
|
1678
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1679
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1680
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1681
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1682
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1683
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1684
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1685
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1686
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1687
|
+
} & {
|
1688
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1689
|
+
};
|
1690
|
+
get: {
|
1691
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1692
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1693
|
+
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").TypographyTypeDefinition;
|
1694
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1695
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1696
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1697
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1698
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1699
|
+
currentTheme(): ThemeDefinitionV2;
|
1700
|
+
};
|
1701
|
+
}, colorSchemaStore: {
|
1702
|
+
state: {
|
1703
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
1704
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
1705
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
1706
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
1707
|
+
isContainer: boolean;
|
1708
|
+
name: string;
|
1709
|
+
colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
1710
|
+
id: import("@omnia/fx-models").GuidValue;
|
1711
|
+
};
|
1712
|
+
events: {
|
1713
|
+
onMutatedBase: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
1714
|
+
onMutatedOnBase: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
1715
|
+
onMutatedContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
1716
|
+
onMutatedOnContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
1717
|
+
onMutatedIsContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
1718
|
+
onMutatedName: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
1719
|
+
onMutatedColorSchemaType: import("@omnia/fx").MessageBusExposeOnlySubscription<"info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
1720
|
+
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
1721
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1722
|
+
actions: {
|
1723
|
+
onDispatching<T_3 extends (...args: any) => any>(action: (actions: {
|
1724
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
1725
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
1726
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
1727
|
+
setThemeStore(themeStoreInstance: {
|
1728
|
+
state: {
|
1729
|
+
currentTheme: ThemeDefinitionV2;
|
1730
|
+
};
|
1731
|
+
events: {
|
1732
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1733
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1734
|
+
actions: {
|
1735
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1736
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1737
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1738
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1739
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1740
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1741
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1742
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1743
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1744
|
+
} & {
|
1745
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1746
|
+
};
|
1747
|
+
get: {
|
1748
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1749
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1750
|
+
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").TypographyTypeDefinition;
|
1751
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1752
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1753
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1754
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1755
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1756
|
+
currentTheme(): ThemeDefinitionV2;
|
1757
|
+
};
|
1758
|
+
}): void;
|
1759
|
+
}) => T_3, fn: T_3 extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1760
|
+
onDispatched<T_4 extends (...args: any) => any>(action: (actions: {
|
1761
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
1762
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
1763
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
1764
|
+
setThemeStore(themeStoreInstance: {
|
1765
|
+
state: {
|
1766
|
+
currentTheme: ThemeDefinitionV2;
|
1767
|
+
};
|
1768
|
+
events: {
|
1769
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1770
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1771
|
+
actions: {
|
1772
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1773
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1774
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1775
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1776
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1777
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1778
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1779
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1780
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1781
|
+
} & {
|
1782
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1783
|
+
};
|
1784
|
+
get: {
|
1785
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1786
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1787
|
+
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").TypographyTypeDefinition;
|
1788
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1789
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1790
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1791
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1792
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1793
|
+
currentTheme(): ThemeDefinitionV2;
|
1794
|
+
};
|
1795
|
+
}): void;
|
1796
|
+
}) => T_4, fn: T_4 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1797
|
+
onFailure<T_5 extends (...args: any) => any>(action: (actions: {
|
1798
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
1799
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
1800
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
1801
|
+
setThemeStore(themeStoreInstance: {
|
1802
|
+
state: {
|
1803
|
+
currentTheme: ThemeDefinitionV2;
|
1804
|
+
};
|
1805
|
+
events: {
|
1806
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1807
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1808
|
+
actions: {
|
1809
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1810
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1811
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1812
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1813
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1814
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1815
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1816
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1817
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1818
|
+
} & {
|
1819
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1820
|
+
};
|
1821
|
+
get: {
|
1822
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1823
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1824
|
+
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").TypographyTypeDefinition;
|
1825
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1826
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1827
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1828
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1829
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1830
|
+
currentTheme(): ThemeDefinitionV2;
|
1831
|
+
};
|
1832
|
+
}): void;
|
1833
|
+
}) => T_5, fn: T_5 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1834
|
+
} & {
|
1835
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
1836
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
1837
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
1838
|
+
setThemeStore(themeStoreInstance: {
|
1839
|
+
state: {
|
1840
|
+
currentTheme: ThemeDefinitionV2;
|
1841
|
+
};
|
1842
|
+
events: {
|
1843
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1844
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1845
|
+
actions: {
|
1846
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1847
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1848
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1849
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1850
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1851
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1852
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1853
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1854
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1855
|
+
} & {
|
1856
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1857
|
+
};
|
1858
|
+
get: {
|
1859
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1860
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1861
|
+
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").TypographyTypeDefinition;
|
1862
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1863
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1864
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1865
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1866
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1867
|
+
currentTheme(): ThemeDefinitionV2;
|
1868
|
+
};
|
1869
|
+
}): void;
|
1870
|
+
};
|
1871
|
+
get: {
|
1872
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
1873
|
+
readonly theme: "light" | "dark";
|
1874
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
1875
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
1876
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
1877
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
1878
|
+
dynamic: (isContainer: boolean) => {
|
1879
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
1880
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
1881
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
1882
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
1883
|
+
};
|
1884
|
+
};
|
1885
|
+
deactivated(): void;
|
1886
|
+
}, blueprintStore: {
|
1887
|
+
state: {
|
1888
|
+
blueprint: import("@omnia/fx-models").BlueprintDefinition;
|
1889
|
+
blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes;
|
1890
|
+
};
|
1891
|
+
events: {
|
1892
|
+
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").BlueprintDefinition>;
|
1893
|
+
onMutatedBlueprintType: import("@omnia/fx").MessageBusExposeOnlySubscription<"default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes>;
|
1894
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1895
|
+
actions: {
|
1896
|
+
onDispatching<T_6 extends (...args: any) => any>(action: (actions: {
|
1897
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
1898
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
1899
|
+
setThemeStore(themeStoreInstance: {
|
1900
|
+
state: {
|
1901
|
+
currentTheme: ThemeDefinitionV2;
|
1902
|
+
};
|
1903
|
+
events: {
|
1904
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1905
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1906
|
+
actions: {
|
1907
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1908
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1909
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1910
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1911
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1912
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1913
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1914
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1915
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1916
|
+
} & {
|
1917
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1918
|
+
};
|
1919
|
+
get: {
|
1920
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1921
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1922
|
+
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").TypographyTypeDefinition;
|
1923
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1924
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1925
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1926
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1927
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1928
|
+
currentTheme(): ThemeDefinitionV2;
|
1929
|
+
};
|
1930
|
+
}): void;
|
1931
|
+
}) => T_6, fn: T_6 extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1932
|
+
onDispatched<T_7 extends (...args: any) => any>(action: (actions: {
|
1933
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
1934
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
1935
|
+
setThemeStore(themeStoreInstance: {
|
1936
|
+
state: {
|
1937
|
+
currentTheme: ThemeDefinitionV2;
|
1938
|
+
};
|
1939
|
+
events: {
|
1940
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1941
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1942
|
+
actions: {
|
1943
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1944
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1945
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1946
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1947
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1948
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1949
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1950
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1951
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1952
|
+
} & {
|
1953
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1954
|
+
};
|
1955
|
+
get: {
|
1956
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1957
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1958
|
+
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").TypographyTypeDefinition;
|
1959
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1960
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1961
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1962
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1963
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1964
|
+
currentTheme(): ThemeDefinitionV2;
|
1965
|
+
};
|
1966
|
+
}): void;
|
1967
|
+
}) => T_7, fn: T_7 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1968
|
+
onFailure<T_8 extends (...args: any) => any>(action: (actions: {
|
1969
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
1970
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
1971
|
+
setThemeStore(themeStoreInstance: {
|
1972
|
+
state: {
|
1973
|
+
currentTheme: ThemeDefinitionV2;
|
1974
|
+
};
|
1975
|
+
events: {
|
1976
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
1977
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
1978
|
+
actions: {
|
1979
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
1980
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1981
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1982
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
1983
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1984
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1985
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
1986
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1987
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1988
|
+
} & {
|
1989
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
1990
|
+
};
|
1991
|
+
get: {
|
1992
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
1993
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
1994
|
+
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").TypographyTypeDefinition;
|
1995
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1996
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
1997
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
1998
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
1999
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2000
|
+
currentTheme(): ThemeDefinitionV2;
|
2001
|
+
};
|
2002
|
+
}): void;
|
2003
|
+
}) => T_8, fn: T_8 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2004
|
+
} & {
|
2005
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
2006
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
2007
|
+
setThemeStore(themeStoreInstance: {
|
2008
|
+
state: {
|
2009
|
+
currentTheme: ThemeDefinitionV2;
|
2010
|
+
};
|
2011
|
+
events: {
|
2012
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
2013
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2014
|
+
actions: {
|
2015
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
2016
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2017
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2018
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
2019
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2020
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2021
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
2022
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2023
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2024
|
+
} & {
|
2025
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2026
|
+
};
|
2027
|
+
get: {
|
2028
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
2029
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
2030
|
+
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").TypographyTypeDefinition;
|
2031
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2032
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2033
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
2034
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2035
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2036
|
+
currentTheme(): ThemeDefinitionV2;
|
2037
|
+
};
|
2038
|
+
}): void;
|
2039
|
+
};
|
2040
|
+
get: {
|
2041
|
+
readonly all: import("@omnia/fx-models").BlueprintDefinition;
|
2042
|
+
byType: <TType extends import("@omnia/fx-models").BlueprintItemDefinition>(type: import("@omnia/fx-models").WebBlueprintDefintionType | import("@omnia/fx-models").WebBlueprintDefintionTypes) => TType;
|
2043
|
+
readonly typography: import("@omnia/fx-models").TypographyBlueprint;
|
2044
|
+
readonly block: import("@omnia/fx-models").BlockBlueprint;
|
2045
|
+
spacing: {
|
2046
|
+
readonly inner: import("@omnia/fx-models").SpacingBlueprint;
|
2047
|
+
readonly layout: import("@omnia/fx-models").SpacingBlueprint;
|
2048
|
+
};
|
2049
|
+
};
|
2050
|
+
deactivated(): void;
|
2051
|
+
}) => any;
|
2052
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
2053
|
+
[key: string]: any;
|
2054
|
+
}>[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
2055
|
+
"theme:initialized": (themeStore: ReturnType<typeof useThemeStoreV2>, colorSchemaStore: ReturnType<typeof useColorSchemaStore>, blueprintStore: ReturnType<typeof useBlueprintStore>) => any;
|
2056
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
2057
|
+
propsDefinition: Omit<Readonly<{} & {
|
2058
|
+
themeDefinition?: ThemeDefinitionV2;
|
2059
|
+
"theme-definition"?: ThemeDefinitionV2;
|
2060
|
+
themeType?: themeType;
|
2061
|
+
"theme-type"?: themeType;
|
2062
|
+
}>, "onTheme:initialized"> & {
|
2063
|
+
"onTheme:initialized"?: (themeStore: {
|
2064
|
+
state: {
|
2065
|
+
currentTheme: ThemeDefinitionV2;
|
2066
|
+
};
|
2067
|
+
events: {
|
2068
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
2069
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2070
|
+
actions: {
|
2071
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
2072
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2073
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2074
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
2075
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2076
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2077
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
2078
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2079
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2080
|
+
} & {
|
2081
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2082
|
+
};
|
2083
|
+
get: {
|
2084
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
2085
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
2086
|
+
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").TypographyTypeDefinition;
|
2087
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2088
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2089
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
2090
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2091
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2092
|
+
currentTheme(): ThemeDefinitionV2;
|
2093
|
+
};
|
2094
|
+
}, colorSchemaStore: {
|
2095
|
+
state: {
|
2096
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
2097
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
2098
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
2099
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
2100
|
+
isContainer: boolean;
|
2101
|
+
name: string;
|
2102
|
+
colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
2103
|
+
id: import("@omnia/fx-models").GuidValue;
|
2104
|
+
};
|
2105
|
+
events: {
|
2106
|
+
onMutatedBase: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
2107
|
+
onMutatedOnBase: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
2108
|
+
onMutatedContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
2109
|
+
onMutatedOnContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
2110
|
+
onMutatedIsContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
2111
|
+
onMutatedName: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
2112
|
+
onMutatedColorSchemaType: import("@omnia/fx").MessageBusExposeOnlySubscription<"info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
|
2113
|
+
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
2114
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2115
|
+
actions: {
|
2116
|
+
onDispatching<T_3 extends (...args: any) => any>(action: (actions: {
|
2117
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
2118
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
2119
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
2120
|
+
setThemeStore(themeStoreInstance: {
|
2121
|
+
state: {
|
2122
|
+
currentTheme: ThemeDefinitionV2;
|
2123
|
+
};
|
2124
|
+
events: {
|
2125
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
2126
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2127
|
+
actions: {
|
2128
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
2129
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2130
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2131
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
2132
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2133
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2134
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
2135
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2136
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2137
|
+
} & {
|
2138
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2139
|
+
};
|
2140
|
+
get: {
|
2141
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
2142
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
2143
|
+
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").TypographyTypeDefinition;
|
2144
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2145
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2146
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
2147
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2148
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2149
|
+
currentTheme(): ThemeDefinitionV2;
|
2150
|
+
};
|
2151
|
+
}): void;
|
2152
|
+
}) => T_3, fn: T_3 extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2153
|
+
onDispatched<T_4 extends (...args: any) => any>(action: (actions: {
|
2154
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
2155
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
2156
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
2157
|
+
setThemeStore(themeStoreInstance: {
|
2158
|
+
state: {
|
2159
|
+
currentTheme: ThemeDefinitionV2;
|
2160
|
+
};
|
2161
|
+
events: {
|
2162
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
2163
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2164
|
+
actions: {
|
2165
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
2166
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2167
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2168
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
2169
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2170
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2171
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
2172
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2173
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2174
|
+
} & {
|
2175
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2176
|
+
};
|
2177
|
+
get: {
|
2178
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
2179
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
2180
|
+
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").TypographyTypeDefinition;
|
2181
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2182
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2183
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
2184
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2185
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2186
|
+
currentTheme(): ThemeDefinitionV2;
|
2187
|
+
};
|
2188
|
+
}): void;
|
2189
|
+
}) => T_4, fn: T_4 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2190
|
+
onFailure<T_5 extends (...args: any) => any>(action: (actions: {
|
2191
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
2192
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
2193
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
2194
|
+
setThemeStore(themeStoreInstance: {
|
2195
|
+
state: {
|
2196
|
+
currentTheme: ThemeDefinitionV2;
|
2197
|
+
};
|
2198
|
+
events: {
|
2199
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
2200
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2201
|
+
actions: {
|
2202
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
2203
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2204
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2205
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
2206
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2207
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2208
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
2209
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2210
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2211
|
+
} & {
|
2212
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2213
|
+
};
|
2214
|
+
get: {
|
2215
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
2216
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
2217
|
+
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").TypographyTypeDefinition;
|
2218
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2219
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2220
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
2221
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2222
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2223
|
+
currentTheme(): ThemeDefinitionV2;
|
2224
|
+
};
|
2225
|
+
}): void;
|
2226
|
+
}) => T_5, fn: T_5 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2227
|
+
} & {
|
2228
|
+
setColorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", container?: boolean): void;
|
2229
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
2230
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
2231
|
+
setThemeStore(themeStoreInstance: {
|
2232
|
+
state: {
|
2233
|
+
currentTheme: ThemeDefinitionV2;
|
2234
|
+
};
|
2235
|
+
events: {
|
2236
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
2237
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2238
|
+
actions: {
|
2239
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
2240
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2241
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2242
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
2243
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2244
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2245
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
2246
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2247
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2248
|
+
} & {
|
2249
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2250
|
+
};
|
2251
|
+
get: {
|
2252
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
2253
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
2254
|
+
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").TypographyTypeDefinition;
|
2255
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2256
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2257
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
2258
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2259
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2260
|
+
currentTheme(): ThemeDefinitionV2;
|
2261
|
+
};
|
2262
|
+
}): void;
|
2263
|
+
};
|
2264
|
+
get: {
|
2265
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
2266
|
+
readonly theme: "light" | "dark";
|
2267
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
2268
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
2269
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
2270
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
2271
|
+
dynamic: (isContainer: boolean) => {
|
2272
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
2273
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
2274
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
2275
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
2276
|
+
};
|
2277
|
+
};
|
2278
|
+
deactivated(): void;
|
2279
|
+
}, blueprintStore: {
|
2280
|
+
state: {
|
2281
|
+
blueprint: import("@omnia/fx-models").BlueprintDefinition;
|
2282
|
+
blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes;
|
2283
|
+
};
|
2284
|
+
events: {
|
2285
|
+
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").BlueprintDefinition>;
|
2286
|
+
onMutatedBlueprintType: import("@omnia/fx").MessageBusExposeOnlySubscription<"default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes>;
|
2287
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2288
|
+
actions: {
|
2289
|
+
onDispatching<T_6 extends (...args: any) => any>(action: (actions: {
|
2290
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
2291
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
2292
|
+
setThemeStore(themeStoreInstance: {
|
2293
|
+
state: {
|
2294
|
+
currentTheme: ThemeDefinitionV2;
|
2295
|
+
};
|
2296
|
+
events: {
|
2297
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
2298
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2299
|
+
actions: {
|
2300
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
2301
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2302
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2303
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
2304
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2305
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2306
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
2307
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2308
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2309
|
+
} & {
|
2310
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2311
|
+
};
|
2312
|
+
get: {
|
2313
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
2314
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
2315
|
+
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").TypographyTypeDefinition;
|
2316
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2317
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2318
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
2319
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2320
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2321
|
+
currentTheme(): ThemeDefinitionV2;
|
2322
|
+
};
|
2323
|
+
}): void;
|
2324
|
+
}) => T_6, fn: T_6 extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2325
|
+
onDispatched<T_7 extends (...args: any) => any>(action: (actions: {
|
2326
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
2327
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
2328
|
+
setThemeStore(themeStoreInstance: {
|
2329
|
+
state: {
|
2330
|
+
currentTheme: ThemeDefinitionV2;
|
2331
|
+
};
|
2332
|
+
events: {
|
2333
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
2334
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2335
|
+
actions: {
|
2336
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
2337
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2338
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2339
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
2340
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2341
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2342
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
2343
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2344
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2345
|
+
} & {
|
2346
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2347
|
+
};
|
2348
|
+
get: {
|
2349
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
2350
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
2351
|
+
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").TypographyTypeDefinition;
|
2352
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2353
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2354
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
2355
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2356
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2357
|
+
currentTheme(): ThemeDefinitionV2;
|
2358
|
+
};
|
2359
|
+
}): void;
|
2360
|
+
}) => T_7, fn: T_7 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2361
|
+
onFailure<T_8 extends (...args: any) => any>(action: (actions: {
|
2362
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
2363
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
2364
|
+
setThemeStore(themeStoreInstance: {
|
2365
|
+
state: {
|
2366
|
+
currentTheme: ThemeDefinitionV2;
|
2367
|
+
};
|
2368
|
+
events: {
|
2369
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
2370
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2371
|
+
actions: {
|
2372
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
2373
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2374
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2375
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
2376
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2377
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2378
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
2379
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2380
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2381
|
+
} & {
|
2382
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2383
|
+
};
|
2384
|
+
get: {
|
2385
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
2386
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
2387
|
+
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").TypographyTypeDefinition;
|
2388
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2389
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2390
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
2391
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2392
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2393
|
+
currentTheme(): ThemeDefinitionV2;
|
2394
|
+
};
|
2395
|
+
}): void;
|
2396
|
+
}) => T_8, fn: T_8 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2397
|
+
} & {
|
2398
|
+
setBlueprint(type: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): void;
|
2399
|
+
setCustomBlueprint(blueprint: import("@omnia/fx-models").BlueprintDefinition): void;
|
2400
|
+
setThemeStore(themeStoreInstance: {
|
2401
|
+
state: {
|
2402
|
+
currentTheme: ThemeDefinitionV2;
|
2403
|
+
};
|
2404
|
+
events: {
|
2405
|
+
onMutatedCurrentTheme: import("@omnia/fx").MessageBusExposeOnlySubscription<ThemeDefinitionV2>;
|
2406
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
2407
|
+
actions: {
|
2408
|
+
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
2409
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2410
|
+
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2411
|
+
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
2412
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2413
|
+
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2414
|
+
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
2415
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2416
|
+
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
2417
|
+
} & {
|
2418
|
+
setTheme(themeDefinition: ThemeDefinitionV2): void;
|
2419
|
+
};
|
2420
|
+
get: {
|
2421
|
+
colorSchema(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background"): import("@omnia/fx-models").ColorSchema;
|
2422
|
+
blueprint(blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes): import("@omnia/fx-models").BlueprintDefinition;
|
2423
|
+
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").TypographyTypeDefinition;
|
2424
|
+
color(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2425
|
+
colorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2426
|
+
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
2427
|
+
complementaryColor(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
2428
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | import("@omnia/fx-models").ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
2429
|
+
currentTheme(): ThemeDefinitionV2;
|
2430
|
+
};
|
2431
|
+
}): void;
|
2432
|
+
};
|
2433
|
+
get: {
|
2434
|
+
readonly all: import("@omnia/fx-models").BlueprintDefinition;
|
2435
|
+
byType: <TType extends import("@omnia/fx-models").BlueprintItemDefinition>(type: import("@omnia/fx-models").WebBlueprintDefintionType | import("@omnia/fx-models").WebBlueprintDefintionTypes) => TType;
|
2436
|
+
readonly typography: import("@omnia/fx-models").TypographyBlueprint;
|
2437
|
+
readonly block: import("@omnia/fx-models").BlockBlueprint;
|
2438
|
+
spacing: {
|
2439
|
+
readonly inner: import("@omnia/fx-models").SpacingBlueprint;
|
2440
|
+
readonly layout: import("@omnia/fx-models").SpacingBlueprint;
|
2441
|
+
};
|
2442
|
+
};
|
2443
|
+
deactivated(): void;
|
2444
|
+
}) => any;
|
2445
|
+
};
|
2446
|
+
};
|
2447
|
+
export default _default;
|