@omnia/fx 8.0.546-dev → 8.0.547-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/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/services/shared-mobile/MediaPickerService.d.ts +2 -2
- package/internal-do-not-import-from-here/services/shared-mobile/TagService.d.ts +5 -0
- package/internal-do-not-import-from-here/services/shared-mobile/index.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/mediapicker/ImageTransformerStore.d.ts +6 -5
- package/internal-do-not-import-from-here/stores/mediapicker/handlers/imagetransformer/flip.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/mediapicker/handlers/imagetransformer/rotate.d.ts +1 -1
- package/internal-do-not-import-from-here/stores/shared-mobile/MediaPickerStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/loc/Localize.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/textstyles/blades/TextStyleBreakpointBlade.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/textstyles/blades/TextStyleDetailBlade.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/textstyles/store/TextStyleEditorStore.d.ts +168 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/themes/EditMediaResourcesBlade.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/themes/store/ThemeEditorStore.d.ts +11 -2
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-selection/SelectAppThemeJourney.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-selection/SelectBPThemeJourney.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-selection/SelectTenantAdminThemeJourney.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-selection/SelectTenantThemeJourney.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes → theme-selection}/ThemeSelectionJourney.d.ts +3 -7
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-selection/store/ThemesJourneyStore.d.ts +73 -0
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/{ThemePicker.d.ts → ThemeDefinitionPicker.d.ts} +4 -1
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeSwitcher.css.d.ts +95 -0
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeSwitcher.d.ts +25 -0
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeViewer.css.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/store/{ThemePickerStore.d.ts → ThemeDefinitionPickerStore.d.ts} +4 -7
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/store/ThemeSwitcherStore.d.ts +54 -0
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeStorage.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/aurora/styling/animations/SwitchAnimationEffect.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/aurora/styling/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/context/ContextPicker.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/context/ContextSuggestion.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/context/PluginRegistrationHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/context/plugins/EnterpriseGlossary.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/context/plugins/EnterpriseProperty.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/context/plugins/PluginRegistrations.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/context/stores/ContextPickerStore.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/DefineRef.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/DefineRef.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/FlowEditor.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/context/ContextButton.d.ts +233 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/context/ContextPlugin.d.ts +20 -0
- package/internal-do-not-import-from-here/ux/iconpicker/IconPicker.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/models/flow/ContextNode.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/models/flow/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/btn/shared-mobile/useBtnComponent.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/speeddial/SpeedDial.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/switch/SwitchSlider.css.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/oxide/switch/SwitchSlider.d.ts +12 -0
- 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/SampleSwitchSlider.d.ts +7 -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/Tabs.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/vuetify/VuetifyCore.d.ts +14 -14
- package/internal-do-not-import-from-here/wctypings.d.ts +123 -66
- package/package.json +3 -3
- package/internal-do-not-import-from-here/ux/aurora/admin/themedesigner/themes/store/ThemesJourneyStore.d.ts +0 -38
- /package/internal-do-not-import-from-here/ux/aurora/admin/{DesignJourney.d.ts → theme-designer/DesignToolsJourney.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/ThemeDesigner.d.ts → theme-designer/ThemeDesignMenu.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/chrome/Chrome.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/colorschemas/ColorSchemasJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/colorschemas/blades/ColorSchemaDefinitionBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/colorschemas/store/ColorSchemaEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/BlueprintsJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/BlueprintPreview.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/ButtonBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/ButtonsBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/EditBlueprints.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/HeaderBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/HeaderBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/IconsBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/IconsBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/InputBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/InputBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/TabBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/TabBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/store/ButtonsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/store/ComponentEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/store/HeaderEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/store/IconsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/store/InputEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/store/TabsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/ContainerFillsBlade.stylex.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/FillsJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/containerBlades/ContainerFillsBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/containerBlades/ContainerFillsEditBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/store/ContainerFillsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/store/FillsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/store/TextFillsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/textBlades/TextFillsBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/textBlades/TextFillsEditBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fontsmanager/FontManager.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fontsmanager/blade/FontDefinitionBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fontsmanager/store/FontManagerStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/spacing/SpacingJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/spacing/blades/EditSpacingBlueprintBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/spacing/blades/EditSpacingDefinitionBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/spacing/store/SpacingEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/store/ThemeDesignerStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/templates/TemplatesJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/templates/blades/ButtonTemplateEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/templates/blades/ButtonTemplates.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/templates/blades/TabTemplateEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/templates/blades/TabTemplates.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/templates/store/TemplateEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{DesignAppJourney.d.ts → theme-designer/textstyles/TextStyles.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes/blades → theme-designer/themes}/EditColorSchemasBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{DesignBPJourney.d.ts → theme-designer/themes/EditLayoutWidthBlade.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes/blades → theme-designer/themes}/EditThemeBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes/blades → theme-designer/themes}/EditThemeBladeStyles.stylex.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes/blades/SelectionThemeBlade.d.ts → theme-designer/themes/ThemeDesignJourney.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes/blades → theme-designer/themes}/ViewThemeBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/TypographyJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/blades/EditScaleBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/blades/EditTextStyleBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/blades/EditTextStylesBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/blades/EditTypographyBlueprintBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/blades/SelectBreakpointBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/blades/ViewTypeScaleBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/components/FontPicker.css.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/components/FontPicker.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/components/FontRegistration.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/store/TypographyEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes → theme-selection}/models/Theme.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes → theme-selection}/models/index.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/components/themepicker/{ThemePicker.css.d.ts → ThemeDefinitionPicker.css.d.ts} +0 -0
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a2892051-fd9f-4056-ae8d-30d16d48417d']","content":{"./node_modules/@omnia/fx/core/messaging/InternalTopics.js":{"id":"./node_modules/@omnia/fx/core/messaging/internaltopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./node_modules/@omnia/fx/core/services/IAppRouteFactory.js":{"id":"./node_modules/@omnia/fx/core/services/iapproutefactory.js","buildMeta":{"exportsType":"namespace"},"expo.js":["IAppRouteFactory"]},"./node_modules/@omnia/fx/core/services/InternalConfigurationService.js":{"id":"./node_modules/@omnia/fx/core/services/internalconfigurationservice.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalConfigurationService"]},"./node_modules/@omnia/fx-models/shared-mobile/index.js":{"id":"./node_modules/@omnia/fx-models/shared-mobile/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ActivityFeedChannelIdProperty","AllEnterprisePropertiesContentHashSettings","AllEnterprisePropertyDataTypesContentHashSettings","AnalyticService","AnonymousIdentity","ArchiveSortColumn","BoolFilter","BuiltInIdentityProviderIds","CustomIcon","CustomRatio","DocumentDirectionSettings","DynamicGroupIdentity","EmailDisplaySettings","EmailEditorSettings","EmailPropertyDefinition","EmailPropertyDefinitionId","EmailPropertyValue","ExtensionIdentity","FabricIcon","FlagIcon","FontAwesomeIcon","GroupIdentity","GroupSortColumn","HubActorIdBagProperty","Identity","IdentityQuery","IdentityTypes","ImageDisplaySettings","ImageEditorSettings","ImagePropertyDefinition","ImagePropertyValue","ItemQuery","Landscape83Ratio","LandscapeRatio","LanguageDisplaySettings","LanguageEditorSettings","LanguagePropertyDefinition","LanguagePropertyDefinitionId","LanguagePropertyValue","LanguageTags","MaterialIcon","
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a2892051-fd9f-4056-ae8d-30d16d48417d']","content":{"./node_modules/@omnia/fx/core/messaging/InternalTopics.js":{"id":"./node_modules/@omnia/fx/core/messaging/internaltopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./node_modules/@omnia/fx/core/services/IAppRouteFactory.js":{"id":"./node_modules/@omnia/fx/core/services/iapproutefactory.js","buildMeta":{"exportsType":"namespace"},"expo.js":["IAppRouteFactory"]},"./node_modules/@omnia/fx/core/services/InternalConfigurationService.js":{"id":"./node_modules/@omnia/fx/core/services/internalconfigurationservice.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalConfigurationService"]},"./node_modules/@omnia/fx-models/shared-mobile/index.js":{"id":"./node_modules/@omnia/fx-models/shared-mobile/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ActivityFeedChannelIdProperty","AllEnterprisePropertiesContentHashSettings","AllEnterprisePropertyDataTypesContentHashSettings","AnalyticService","AnonymousIdentity","ArchiveSortColumn","BoolFilter","BuiltInIdentityProviderIds","CustomIcon","CustomRatio","DocumentDirectionSettings","DynamicGroupIdentity","EmailDisplaySettings","EmailEditorSettings","EmailPropertyDefinition","EmailPropertyDefinitionId","EmailPropertyValue","ExtensionIdentity","FabricIcon","FlagIcon","FontAwesomeIcon","GroupIdentity","GroupSortColumn","HubActorIdBagProperty","Identity","IdentityQuery","IdentityTypes","ImageDisplaySettings","ImageEditorSettings","ImagePropertyDefinition","ImagePropertyValue","ItemQuery","Landscape83Ratio","LandscapeRatio","LanguageDisplaySettings","LanguageEditorSettings","LanguagePropertyDefinition","LanguagePropertyDefinitionId","LanguagePropertyValue","LanguageTags","MaterialIcon","MediaPickerImageRatio","MediaPickerImageRatioDefinition","MediaPickerImageScaling","MediaPickerImageScalingDefinition","MediaPickerRollupImageRatio","MediaPickerRollupImageRatioDefinition","MultilingualTextDisplaySettings","MultilingualTextEditorSettings","MultilingualTextPropertyDefinition","MultilingualTextPropertyValue","OmniaNamedModel","OmniaService","PhoneNumberPropertyValue","PortraitRatio","PropertyLockStatus","ResolvedAnonymousIdentity","ResolvedDynamicGroupIdentity","ResolvedExtensionIdentity","ResolvedGroupIdentity","ResolvedRoleIdentity","ResolvedUserIdentity","RoleIdentity","ScopeTypes","SecurityIdentities","SquareRatio","SvgIcon","TenantApiSettings","TenantAuthenticationSettings","TenantCSOMClientContextFallbackUrl","TenantEnterpriseGlossary","TenantErrorInformation","TenantFaviconSettings","TenantInfoSettings","TenantLanguageSettings","TenantPeopleInformation","TenantPreSetup","TenantProperty","TenantRegionalSettings","TenantThemeManager","TenantTypographyFonts","TextDisplaySettings","TextEditorSettings","TextPropertyDefinition","TextPropertyValue","UserAccessibilitySettings","UserIdentity","UserIdentityQuery","UserPropertyBagModel","UserSortColumn","UserThemeManager","WideRatio","imagePropertyDefinitionId","multilingualTextPropertyDefinitionId","textPropertyDefinitionId"]},"./node_modules/@omnia/fx-models/shared-mobile/ManifestIds.js":{"id":"./node_modules/@omnia/fx-models/shared-mobile/manifestids.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AnalyticService","OmniaService"]},"./node_modules/@omnia/fx/ux/shared-mobile/index.js":{"id":"./node_modules/@omnia/fx/ux/shared-mobile/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["registerUseIconProvider","useIconClass","useIcons"]},"./node_modules/@omnia/fx/ux/velcron/core/models/index.js":{"id":"./node_modules/@omnia/fx/ux/velcron/core/models/index.js","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/core/services/ServiceManifestProviderInternal.js":{"id":"0688ceff-4257-4427-b385-a83d6802c509","buildMeta":{"exportsType":"namespace"},"expo.js":["ServiceManifestProviderInternal"]},"./node_modules/@omnia/fx/core/Extend.js":{"id":"4eeb27d5-906a-4edf-bd38-3d97048cda3d","buildMeta":{"exportsType":"namespace"},"expo.js":["Extend","InternalExtend","registerApi"]},"./node_modules/@omnia/fx/core/index.js":{"id":"97786ea9-4861-48bd-8a57-eae9bbdb4892","buildMeta":{"exportsType":"namespace"},"expo.js":["AppRoutePropertyBagFactory","AuthenticationSessionService","Broadcast","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","Cookies","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","Http","HttpBuilder","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","Inject","Injectable","LocalStorage","LocalizationServiceProviders","MD5Util","ManifestResourceLoader","MessageBus","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","ObjectMerger","OmniaPropertyBagBase","Provide","Require","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","Utils","WebUtils","createEventHook","defineFactory","defineInjectable","defineService","http","injectByTypeId","isInjectable","mergeLocaliation","propertyPath","propertyPathValue","registerApi","useInject","useOmniaClient","useProvide"]},"./node_modules/@omnia/fx/core/http/InternalHttpPlugins.js":{"id":"b8d937e0-3fc3-4412-a469-92941b829cdb","buildMeta":{"exportsType":"namespace"},"expo.js":["HttpContextConfigPlugin","HttpRetryPlugIn"]},"./node_modules/@omnia/fx/runtime/core/InternalWebComponentBootstrapper.js":{"id":"c9f21f62-e664-44e4-8cf4-0dcbec75c4bf","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWebComponentBootstrapper"]},"./node_modules/@omnia/fx-models/index.js":{"id":"d0a145a7-d1ef-4217-aa6f-85dd18c4231d","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/core/messaging/InternalMessageBusMediator.js":{"id":"f986d8dd-7c76-40b6-9bf8-b64ac2902642","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/runtime/core/index.js":{"id":"ff061abc-7f0e-444b-b2b9-7ff71c5842c5","buildMeta":{"exportsType":"namespace"},"expo.js":["LoadableManifest","LocalHostingService","ManifestByBackendRuntimeLoader","ManifestByClientRuntimeLoader","ManifestByElementLoader","ManifestByFeatureLoader","ManifestByLicenseLoader","ManifestByUrlLoader","ManifestByUserLoader","ManifestCombinedRuleLoader","ManifestExtendRuleLoader","ManifestPublisher","ManifestResourceLoader","ManifestSubscriber","PublicManifestResourceLoader"]}}}
|
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a5a89056-b5f5-475d-8518-a1f55090379d']","content":{"./node_modules/@omnia/fx/Bootstrapper.js":{"id":"./node_modules/@omnia/fx/bootstrapper.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/index.js":{"id":"14a8d443-2e58-450b-a462-258bdaf69b49","buildMeta":{"exportsType":"namespace"},"expo.js":["ApiHelper","AppRoutePropertyBagFactory","AuthenticationSessionService","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","ContextProviderCollection","Cookies","DisplayRules","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","ImageProxyService","Inject","Injectable","LocalStorage","LocalizationServiceProviders","Localize","MD5Util","ManifestResourceLoader","MessageBus","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","ObjectMerger","OmniaContext","OmniaContextProvider","OmniaPropertyBagBase","Provide","ReplaceToken","Require","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","UserTypeStore","Utils","WebComponentBootstrapper","WebUtils","createEventHook","createVueApp","defineFactory","defineInjectable","defineService","extendApi","getVueMixins","getVueOptionsHooks","getVuePlugins","injectByTypeId","isInjectable","mergeLocaliation","omniaScriptApi","propertyPath","propertyPathValue","registerApi","registerInjectResolver","registerVueComponent","registerVueMixin","registerVueOptionsHook","registerVuePlugin","resolveAsyncVueComponent","setCurrentManifest","useInject","useLocalize","useOmniaClient","useProvide","vueCustomElement"]},"./node_modules/@omnia/fx/stores/index.js":{"id":"5e618f4d-d014-414e-a681-89e34cbeda0f","buildMeta":{"exportsType":"namespace"},"expo.js":["AiSettingsStore","AppNamingPolicyStore","AppStore","AuditLogStore","AzureAdUserStore","BaseProviderImageHandler","BaseProviderVideoHandler","BlockTitleGlobalSettingsStore","BlockTitleSettingsStore","BusinessProfileStore","ClipboardStore","CommentLikeStore","ConnectedTenantStore","DirectionRuleStore","DynamicGroupStore","EnterpriseGlossaryStore","EnterprisePropertyCategoryStore","EnterprisePropertySetStore","EnterprisePropertyStore","ExtensionStore","FeatureStore","FileUploaderStore","GroupIdentityStore","IdentitySyncProviderStore","ImageCropperByRatioHandler","ImageCropperUtils","ImageFilterHandler","ImageFlipHandler","ImageGalleryHandler","ImageRotateHandler","KEEP_ORIGINAL_SIZE_OPTION_VALUE","LinkReferencesStore","MSTeamsStore","MediaFileProcessor","MediaPickerImageHandler","MediaPickerUtils","MultilingualStore","OrganizationTreeStore","PostStore","ProfileCardStore","PromotedTagStore","SiteStore","Store","StoreAction","StoreLogTypes","StoreLogger","StoreMutation","StoreState","SystemLogStore","TargetingPropertyStore","TimeZoneStore","TokenStatus","TokenStore","TuiImgScaleQuality","UserIdentityStore","UserTargetingStore","UserTypeIdentityStore","UserTypeStore","VersionedLayoutStore","VideoGalleryHandler","defineStore","ensureBase64String","getMediaPickerBase64OriginalImage","getMediaPickerImageInformation","getMediaProviderEditor","getOriginalImageUrl","getTuiImageRendition","onApplyStyle","removeBase64FormatTags","updateTransformedImageBase64","useArchivedIdentityStore","useCommandStore","useCompontentHostStore","useCompontentSharedSettingsStore","useFlowEditorPluginStore","useFlowEditorToolbarStateStore","useGalleryStore","useIdentityStore","useLocalizationStore","useMediaPickerCommonStore","useMediaPickerImageTransformerStore","useMediaPickerStorageProviderContext","useMediaPickerStore","useProfileCardHandlerStore","useProviderStore","useSizeContainerStore","useUserTypeIdentityPickerStore"]},"./node_modules/@omnia/fx/vue/index.js":{"id":"c041fe9f-1e14-443d-9407-5aa8829fbc21","buildMeta":{"exportsType":"namespace"},"expo.js":["createVueApp","getVueMixins","getVueOptionsHooks","getVuePlugins","registerVueComponent","registerVueMixin","registerVueOptionsHook","registerVuePlugin","resolveAsyncVueComponent","vueCustomElement"]},"./node_modules/@omnia/fx/services/index.js":{"id":"e25b9dd8-6dd7-4437-8ddd-0b9fadba73ac","buildMeta":{"exportsType":"namespace"},"expo.js":["AIEngineSetupService","AiSettingsService","AppNamingPolicyService","AppRouteService","AppService","AuditLogService","AzureAdGroupService","AzureAdUserService","AzureOpenAIService","BusinessProfilePropertyBindingProvider","BusinessProfileService","ConnectedTenantService","DataSourcePropertiesService","DataSourcePropertyDefinitionHandler","DynamicGroupService","DynamicPropertyDataSource","EnterpriseGlossaryService","EnterprisePropertiesProvider","EnterprisePropertyCategoryService","EnterprisePropertySetService","ExtendedEnterprisePropertiesPropertyBindingProvider","ExtensionsService","FeatureService","FileStorageService","GroupIdentityService","GroupService","IdentityAuthenticationService","IdentityCreationRequestService","IdentityPropertyBindingProvider","IdentitySelfServiceService","IdentitySyncProviderService","ImageProxyService","LinkStatusService","LocalizationService","LoginLogService","ManifestService","MicrosoftStreamService","OmniaSearchService","OmniaSearchUserService","OrganizationTreeService","PermissionNode","PermissionService","PostService","ProfileCardService","PropertyBindingService","PropertyDataSourceBase","QueryablePropertiesService","QueueService","ReindexOmniaSearchUserService","SecretsService","SecurityRoles","SecurityService","SemanticSearchService","ServiceLocator","SettingsService","SiteService","TagsService","TargetingPropertyService","TenantContactService","TenantPreSetupService","TestDataSourcePropertiesService","TimeZoneService","TranslationService","UserIdentityService","UserPresenceStatus","UserPropertyBindingProvider","UserService","UserTypeService","VersionedDataService","VersionedLayoutService","WebImageService","WriteBackStatus","defineService","themeService","useIdentityService","useMediaPickerService"]}}}
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a5a89056-b5f5-475d-8518-a1f55090379d']","content":{"./node_modules/@omnia/fx/Bootstrapper.js":{"id":"./node_modules/@omnia/fx/bootstrapper.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/index.js":{"id":"14a8d443-2e58-450b-a462-258bdaf69b49","buildMeta":{"exportsType":"namespace"},"expo.js":["ApiHelper","AppRoutePropertyBagFactory","AuthenticationSessionService","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","ContextProviderCollection","Cookies","DisplayRules","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","ImageProxyService","Inject","Injectable","LocalStorage","LocalizationServiceProviders","Localize","MD5Util","ManifestResourceLoader","MessageBus","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","ObjectMerger","OmniaContext","OmniaContextProvider","OmniaPropertyBagBase","Provide","ReplaceToken","Require","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","UserTypeStore","Utils","WebComponentBootstrapper","WebUtils","createEventHook","createVueApp","defineFactory","defineInjectable","defineService","extendApi","getVueMixins","getVueOptionsHooks","getVuePlugins","injectByTypeId","isInjectable","mergeLocaliation","omniaScriptApi","propertyPath","propertyPathValue","registerApi","registerInjectResolver","registerVueComponent","registerVueMixin","registerVueOptionsHook","registerVuePlugin","resolveAsyncVueComponent","setCurrentManifest","useInject","useLocalize","useOmniaClient","useProvide","vueCustomElement"]},"./node_modules/@omnia/fx/stores/index.js":{"id":"5e618f4d-d014-414e-a681-89e34cbeda0f","buildMeta":{"exportsType":"namespace"},"expo.js":["AiSettingsStore","AppNamingPolicyStore","AppStore","AuditLogStore","AzureAdUserStore","BaseProviderImageHandler","BaseProviderVideoHandler","BlockTitleGlobalSettingsStore","BlockTitleSettingsStore","BusinessProfileStore","ClipboardStore","CommentLikeStore","ConnectedTenantStore","DirectionRuleStore","DynamicGroupStore","EnterpriseGlossaryStore","EnterprisePropertyCategoryStore","EnterprisePropertySetStore","EnterprisePropertyStore","ExtensionStore","FeatureStore","FileUploaderStore","GroupIdentityStore","IdentitySyncProviderStore","ImageCropperByRatioHandler","ImageCropperUtils","ImageFilterHandler","ImageFlipHandler","ImageGalleryHandler","ImageRotateHandler","KEEP_ORIGINAL_SIZE_OPTION_VALUE","LinkReferencesStore","MSTeamsStore","MediaFileProcessor","MediaPickerImageHandler","MediaPickerUtils","MultilingualStore","OrganizationTreeStore","PostStore","ProfileCardStore","PromotedTagStore","SiteStore","Store","StoreAction","StoreLogTypes","StoreLogger","StoreMutation","StoreState","SystemLogStore","TargetingPropertyStore","TimeZoneStore","TokenStatus","TokenStore","TuiImgScaleQuality","UserIdentityStore","UserTargetingStore","UserTypeIdentityStore","UserTypeStore","VersionedLayoutStore","VideoGalleryHandler","defineStore","ensureBase64String","getMediaPickerBase64OriginalImage","getMediaPickerImageInformation","getMediaProviderEditor","getOriginalImageUrl","getTuiImageRendition","onApplyStyle","removeBase64FormatTags","updateTransformedImageBase64","useArchivedIdentityStore","useCommandStore","useCompontentHostStore","useCompontentSharedSettingsStore","useFlowEditorPluginStore","useFlowEditorToolbarStateStore","useGalleryStore","useIdentityStore","useLocalizationStore","useMediaPickerCommonStore","useMediaPickerImageTransformerStore","useMediaPickerStorageProviderContext","useMediaPickerStore","useProfileCardHandlerStore","useProviderStore","useSizeContainerStore","useUserTypeIdentityPickerStore"]},"./node_modules/@omnia/fx/vue/index.js":{"id":"c041fe9f-1e14-443d-9407-5aa8829fbc21","buildMeta":{"exportsType":"namespace"},"expo.js":["createVueApp","getVueMixins","getVueOptionsHooks","getVuePlugins","registerVueComponent","registerVueMixin","registerVueOptionsHook","registerVuePlugin","resolveAsyncVueComponent","vueCustomElement"]},"./node_modules/@omnia/fx/services/index.js":{"id":"e25b9dd8-6dd7-4437-8ddd-0b9fadba73ac","buildMeta":{"exportsType":"namespace"},"expo.js":["AIEngineSetupService","AiSettingsService","AppNamingPolicyService","AppRouteService","AppService","AuditLogService","AzureAdGroupService","AzureAdUserService","AzureOpenAIService","BusinessProfilePropertyBindingProvider","BusinessProfileService","ConnectedTenantService","DataSourcePropertiesService","DataSourcePropertyDefinitionHandler","DynamicGroupService","DynamicPropertyDataSource","EnterpriseGlossaryService","EnterprisePropertiesProvider","EnterprisePropertyCategoryService","EnterprisePropertySetService","ExtendedEnterprisePropertiesPropertyBindingProvider","ExtensionsService","FeatureService","FileStorageService","GroupIdentityService","GroupService","IdentityAuthenticationService","IdentityCreationRequestService","IdentityPropertyBindingProvider","IdentitySelfServiceService","IdentitySyncProviderService","ImageProxyService","LinkStatusService","LocalizationService","LoginLogService","ManifestService","MicrosoftStreamService","OmniaSearchService","OmniaSearchUserService","OrganizationTreeService","PermissionNode","PermissionService","PostService","ProfileCardService","PropertyBindingService","PropertyDataSourceBase","QueryablePropertiesService","QueueService","ReindexOmniaSearchUserService","SecretsService","SecurityRoles","SecurityService","SemanticSearchService","ServiceLocator","SettingsService","SiteService","TagsService","TargetingPropertyService","TenantContactService","TenantPreSetupService","TestDataSourcePropertiesService","TimeZoneService","TranslationService","UserIdentityService","UserPresenceStatus","UserPropertyBindingProvider","UserService","UserTypeService","VersionedDataService","VersionedLayoutService","WebImageService","WriteBackStatus","defineService","themeService","useIdentityService","useMediaPickerService","useTagService"]}}}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { MediaPickerBase64Image,
|
2
|
-
import { Future, guid, MultilingualString } from "@omnia/fx-models/internal-do-not-import-from-here/shared";
|
1
|
+
import { MediaPickerBase64Image, MediaPickerImageRatio, MediaPickerImageRatioDefinition, MediaPickerImageScaling, MediaPickerImageScalingDefinition, MediaPickerPersistedImage, MediaPickerRenditionData, MediaPickerStorageProviderContext, MediaPickerTransformedBase64Image } from "internal/fx/models/shared-mobile";
|
2
|
+
import { Future, guid, MediaPickerImage, MultilingualString } from "@omnia/fx-models/internal-do-not-import-from-here/shared";
|
3
3
|
export declare const useMediaPickerService: () => {
|
4
4
|
getMediaPickerImage: (mediaPickerImageId: number) => Future<MediaPickerPersistedImage>;
|
5
5
|
getPersistedImage: (mediaPickerImageId: number) => Future<MediaPickerPersistedImage>;
|
@@ -2,7 +2,8 @@ import { MediaPickerCropTransformation, MediaPickerImageRatio, MediaPickerRendit
|
|
2
2
|
import ImageEditor from "tui-image-editor";
|
3
3
|
export declare const useMediaPickerImageTransformerStore: () => {
|
4
4
|
actions: import("../DefineStore").StoreReturnDefineAction<{
|
5
|
-
setSelectedRatio(ratio:
|
5
|
+
setSelectedRatio(ratio: MediaPickerImageRatio): void;
|
6
|
+
setSelectedDefaultRatio(ratio: MediaPickerImageRatio): void;
|
6
7
|
toDataURL: (options: tuiImageEditor.IToDataURLOptions) => string;
|
7
8
|
resetState(): void;
|
8
9
|
changeEditingImage(mediaState: MediaState): void;
|
@@ -57,7 +58,7 @@ export declare const useMediaPickerImageTransformerStore: () => {
|
|
57
58
|
loadCounter: number;
|
58
59
|
selectedCropArea: MediaPickerCropTransformation;
|
59
60
|
selectedRatio: MediaPickerImageRatio;
|
60
|
-
|
61
|
+
selectedDefaultRatio: MediaPickerImageRatio;
|
61
62
|
showWarningCropInvalidDialog: boolean;
|
62
63
|
customCropZone: MediaPickerCropTransformation;
|
63
64
|
currentFilter: MediaPickerFilterTransformation;
|
@@ -81,7 +82,7 @@ export declare const useMediaPickerImageTransformerStore: () => {
|
|
81
82
|
loadCounter: (value: number | ((prev: number) => number)) => void;
|
82
83
|
selectedCropArea: (value: MediaPickerCropTransformation | ((prev: MediaPickerCropTransformation) => MediaPickerCropTransformation)) => void;
|
83
84
|
selectedRatio: (value: MediaPickerImageRatio | ((prev: MediaPickerImageRatio) => MediaPickerImageRatio)) => void;
|
84
|
-
|
85
|
+
selectedDefaultRatio: (value: MediaPickerImageRatio | ((prev: MediaPickerImageRatio) => MediaPickerImageRatio)) => void;
|
85
86
|
showWarningCropInvalidDialog: (value: boolean | ((prev: boolean) => boolean)) => void;
|
86
87
|
customCropZone: (value: MediaPickerCropTransformation | ((prev: MediaPickerCropTransformation) => MediaPickerCropTransformation)) => void;
|
87
88
|
currentFilter: (value: MediaPickerFilterTransformation | ((prev: MediaPickerFilterTransformation) => MediaPickerFilterTransformation)) => void;
|
@@ -119,7 +120,7 @@ export declare const useMediaPickerImageTransformerStore: () => {
|
|
119
120
|
editorInstance(): ImageEditor;
|
120
121
|
currentTransformedImgBase64(): string;
|
121
122
|
currentTransformation(): MediaPickerImageTransformationResult;
|
122
|
-
|
123
|
+
isWorkingOnDefaultRendition: () => boolean;
|
123
124
|
ratio(): {
|
124
125
|
getById: (id: number) => MediaPickerImageRatio;
|
125
126
|
all: MediaPickerImageRatio[];
|
@@ -144,7 +145,7 @@ export declare const useMediaPickerImageTransformerStore: () => {
|
|
144
145
|
loadCounter: number;
|
145
146
|
selectedCropArea: MediaPickerCropTransformation;
|
146
147
|
selectedRatio: MediaPickerImageRatio;
|
147
|
-
|
148
|
+
selectedDefaultRatio: MediaPickerImageRatio;
|
148
149
|
showWarningCropInvalidDialog: boolean;
|
149
150
|
customCropZone: MediaPickerCropTransformation;
|
150
151
|
currentFilter: MediaPickerFilterTransformation;
|
package/internal-do-not-import-from-here/stores/mediapicker/handlers/imagetransformer/flip.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
import { IImageTransformHandler, MediaPickerFlipTransformation } from "@omnia/fx-models";
|
2
2
|
export declare class ImageFlipHandler implements IImageTransformHandler {
|
3
3
|
private imageTransformationStore;
|
4
|
+
private imageCropperByRatioHandler;
|
4
5
|
transform(options: MediaPickerFlipTransformation): Promise<void>;
|
5
6
|
updateTransformationData(options: MediaPickerFlipTransformation): Promise<void>;
|
6
7
|
}
|
package/internal-do-not-import-from-here/stores/mediapicker/handlers/imagetransformer/rotate.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
import { IImageTransformHandler, MediaPickerRotateTransformation } from "@omnia/fx-models";
|
2
2
|
export declare class ImageRotateHandler implements IImageTransformHandler {
|
3
3
|
private imageTransformationStore;
|
4
|
+
private imageCropperByRatioHandler;
|
4
5
|
transform(options: MediaPickerRotateTransformation): Promise<void>;
|
5
6
|
updateTransformationData(options: MediaPickerRotateTransformation): Promise<void>;
|
6
7
|
/**
|
@@ -8,5 +9,4 @@ export declare class ImageRotateHandler implements IImageTransformHandler {
|
|
8
9
|
*/
|
9
10
|
private normalizeRotation;
|
10
11
|
private needToSwapWidthAndHeight;
|
11
|
-
private ensureCorrectCropAreaAfterRotate;
|
12
12
|
}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { MediaPickerImageRatio, MediaPickerImageScaling, MediaPickerProvider, MediaPickerImageRatioDefinition, MediaPickerRollupImageRatio, MediaPickerImageScalingDefinition
|
2
|
-
import { MultilingualString, guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared";
|
1
|
+
import { MediaPickerImageRatio, MediaPickerImageScaling, MediaPickerProvider, MediaPickerImageRatioDefinition, MediaPickerRollupImageRatio, MediaPickerImageScalingDefinition } from "internal/fx/models/shared-mobile";
|
2
|
+
import { MultilingualString, guid, MediaPickerVideo, MediaPickerImage } from "@omnia/fx-models/internal-do-not-import-from-here/shared";
|
3
3
|
export declare const useMediaPickerStore: () => {
|
4
4
|
get: {
|
5
5
|
readonly imageRatios: Array<MediaPickerImageRatio>;
|
@@ -10,6 +10,7 @@ export declare namespace ThemingLocalization {
|
|
10
10
|
Spacing: string;
|
11
11
|
Blueprints: string;
|
12
12
|
Fonts: string;
|
13
|
+
TextStyles: string;
|
13
14
|
};
|
14
15
|
ThemeSettings: {
|
15
16
|
Title: string;
|
@@ -17,5 +18,32 @@ export declare namespace ThemingLocalization {
|
|
17
18
|
VelcronStudio: {
|
18
19
|
Title: string;
|
19
20
|
};
|
21
|
+
TextStyles: {
|
22
|
+
NavigationLabel: string;
|
23
|
+
ConfigureStyle: string;
|
24
|
+
Configure: string;
|
25
|
+
CreateConfigureStyle: string;
|
26
|
+
EditBreakPoint: string;
|
27
|
+
Custom: string;
|
28
|
+
Preset: string;
|
29
|
+
EditConfigureStyle: string;
|
30
|
+
Title: string;
|
31
|
+
FontSize: string;
|
32
|
+
Bold: string;
|
33
|
+
Italic: string;
|
34
|
+
Underline: string;
|
35
|
+
Role: string;
|
36
|
+
FontStyle: string;
|
37
|
+
Uppercase: string;
|
38
|
+
FontColor: string;
|
39
|
+
LineHeight: string;
|
40
|
+
FontFamily: string;
|
41
|
+
Inherit: string;
|
42
|
+
Enabled: string;
|
43
|
+
Modify: string;
|
44
|
+
OnHoverStyle: string;
|
45
|
+
UseOnHoverStyle: string;
|
46
|
+
DefaultStyle: string;
|
47
|
+
};
|
20
48
|
}
|
21
49
|
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
2
|
+
isCreate?: boolean;
|
3
|
+
}> & {} & {
|
4
|
+
"v-slots"?: {} & Omit<{
|
5
|
+
default?: import("vue").Slot;
|
6
|
+
$stable?: boolean;
|
7
|
+
}, never>;
|
8
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isCreate"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
9
|
+
export default _default;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
2
|
+
isCreate?: boolean;
|
3
|
+
}> & {} & {
|
4
|
+
"v-slots"?: {} & Omit<{
|
5
|
+
default?: import("vue").Slot;
|
6
|
+
$stable?: boolean;
|
7
|
+
}, never>;
|
8
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isCreate"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
9
|
+
export default _default;
|
@@ -0,0 +1,168 @@
|
|
1
|
+
import { FontAwesomeIcon, guid, HeadingConfiguration, JourneyMenuItem, TextStyleBreakpointType, TextStyleConfiguration, TextStyleDefinition, ThemedTextStyleValue } from "@omnia/fx-models";
|
2
|
+
export interface TextStyleSettings {
|
3
|
+
headings: Array<HeadingConfiguration>;
|
4
|
+
textStyles: Array<TextStyleConfiguration>;
|
5
|
+
}
|
6
|
+
export interface BreakpointItem {
|
7
|
+
icon?: FontAwesomeIcon;
|
8
|
+
title?: string;
|
9
|
+
subTitle?: string;
|
10
|
+
scale?: TextStyleBreakpointType;
|
11
|
+
}
|
12
|
+
export interface SelectionItem {
|
13
|
+
title?: string;
|
14
|
+
value?: string;
|
15
|
+
}
|
16
|
+
export interface SharedTextStyles {
|
17
|
+
decoration?: string;
|
18
|
+
uppercase?: boolean;
|
19
|
+
italic?: boolean;
|
20
|
+
bold?: boolean;
|
21
|
+
}
|
22
|
+
export declare const useTextStyleEditorStore: () => {
|
23
|
+
state: {
|
24
|
+
configurations: TextStyleConfiguration[];
|
25
|
+
textStylesText: JourneyMenuItem[];
|
26
|
+
editing: {
|
27
|
+
isCustom: boolean;
|
28
|
+
configuration: TextStyleConfiguration;
|
29
|
+
textStyle: {
|
30
|
+
shared: SharedTextStyles;
|
31
|
+
themed: ThemedTextStyleValue;
|
32
|
+
custom: TextStyleDefinition;
|
33
|
+
};
|
34
|
+
};
|
35
|
+
selected: {
|
36
|
+
breakpoint: TextStyleBreakpointType;
|
37
|
+
};
|
38
|
+
};
|
39
|
+
events: import("@omnia/fx/stores").StoreEvents<{
|
40
|
+
configurations: TextStyleConfiguration[];
|
41
|
+
textStylesText: JourneyMenuItem[];
|
42
|
+
editing: {
|
43
|
+
isCustom: boolean;
|
44
|
+
configuration: TextStyleConfiguration;
|
45
|
+
textStyle: {
|
46
|
+
shared: SharedTextStyles;
|
47
|
+
themed: ThemedTextStyleValue;
|
48
|
+
custom: TextStyleDefinition;
|
49
|
+
};
|
50
|
+
};
|
51
|
+
selected: {
|
52
|
+
breakpoint: TextStyleBreakpointType;
|
53
|
+
};
|
54
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
55
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
56
|
+
breakpoint(): {
|
57
|
+
setSelected(breakpoint: TextStyleBreakpointType): void;
|
58
|
+
activate(value: boolean): void;
|
59
|
+
};
|
60
|
+
editingContext: () => {
|
61
|
+
set: {
|
62
|
+
type: (custom: boolean) => void;
|
63
|
+
};
|
64
|
+
};
|
65
|
+
travelTo: (id: guid) => void;
|
66
|
+
configuration: () => {
|
67
|
+
disable: (disabled: boolean) => void;
|
68
|
+
syncSharedTextStyles: () => void;
|
69
|
+
create: () => void;
|
70
|
+
edit: (item: TextStyleConfiguration) => void;
|
71
|
+
save: () => Promise<boolean>;
|
72
|
+
upsert: (item: TextStyleConfiguration) => Promise<boolean>;
|
73
|
+
delete: (item: TextStyleConfiguration) => Promise<boolean>;
|
74
|
+
import: (items: TextStyleConfiguration[]) => Promise<boolean>;
|
75
|
+
saveAll: () => Promise<boolean>;
|
76
|
+
};
|
77
|
+
}>;
|
78
|
+
get: {
|
79
|
+
route: {
|
80
|
+
headingId: string;
|
81
|
+
isCreate: boolean;
|
82
|
+
};
|
83
|
+
blade: {
|
84
|
+
listing: {
|
85
|
+
element: (props: Omit<import("@omnia/fx/ux").ConstructComponentProps<import("../../../../../journey/JourneyBlade").JourneyBladeProps>, "id" | "getApi" | "manageList"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
86
|
+
ManageList: (<T extends unknown>(props: import("@omnia/fx/ux").ExtractProps<import("../../../../../oxide/list/List").OListProps<T>> & {
|
87
|
+
"onUpdate:modelValue"?: (value: T[]) => any;
|
88
|
+
} & {
|
89
|
+
"v-slots"?: {
|
90
|
+
item?: (item: import("../../../../../oxide/list/List").IListItem<T>) => import("vue").VNodeChild;
|
91
|
+
} & Omit<{
|
92
|
+
default?: import("vue").Slot;
|
93
|
+
$stable?: boolean;
|
94
|
+
}, "item">;
|
95
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "variant" | "class" | "remove" | "drag" | "nav" | "colors" | "toned" | "v-model" | "modelValue" | "emit:update:modelValue" | "navigation" | "lines" | "divider" | "dragStyles" | "itemValue" | "disableItemClickable" | "slot:item"> & import("@omnia/fx/ux").VNodeEvents) => any) & {
|
96
|
+
item: typeof import("../../../../../oxide/list/ListItem").default extends {
|
97
|
+
propsDefinition: infer TProp;
|
98
|
+
} ? {
|
99
|
+
new (...args: any[]): {
|
100
|
+
$props: TProp & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof TProp>;
|
101
|
+
};
|
102
|
+
} : typeof import("../../../../../oxide/list/ListItem").default;
|
103
|
+
};
|
104
|
+
id: guid;
|
105
|
+
};
|
106
|
+
addUpdate: {
|
107
|
+
element: (props: Omit<import("@omnia/fx/ux").ConstructComponentProps<import("../../../../../journey/JourneyBlade").JourneyBladeProps>, "id" | "getApi" | "manageList"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
108
|
+
ManageList: (<T extends unknown>(props: import("@omnia/fx/ux").ExtractProps<import("../../../../../oxide/list/List").OListProps<T>> & {
|
109
|
+
"onUpdate:modelValue"?: (value: T[]) => any;
|
110
|
+
} & {
|
111
|
+
"v-slots"?: {
|
112
|
+
item?: (item: import("../../../../../oxide/list/List").IListItem<T>) => import("vue").VNodeChild;
|
113
|
+
} & Omit<{
|
114
|
+
default?: import("vue").Slot;
|
115
|
+
$stable?: boolean;
|
116
|
+
}, "item">;
|
117
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "variant" | "class" | "remove" | "drag" | "nav" | "colors" | "toned" | "v-model" | "modelValue" | "emit:update:modelValue" | "navigation" | "lines" | "divider" | "dragStyles" | "itemValue" | "disableItemClickable" | "slot:item"> & import("@omnia/fx/ux").VNodeEvents) => any) & {
|
118
|
+
item: typeof import("../../../../../oxide/list/ListItem").default extends {
|
119
|
+
propsDefinition: infer TProp;
|
120
|
+
} ? {
|
121
|
+
new (...args: any[]): {
|
122
|
+
$props: TProp & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof TProp>;
|
123
|
+
};
|
124
|
+
} : typeof import("../../../../../oxide/list/ListItem").default;
|
125
|
+
};
|
126
|
+
id: guid;
|
127
|
+
};
|
128
|
+
breakpoint: {
|
129
|
+
element: (props: Omit<import("@omnia/fx/ux").ConstructComponentProps<import("../../../../../journey/JourneyBlade").JourneyBladeProps>, "id" | "getApi" | "manageList"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
130
|
+
ManageList: (<T extends unknown>(props: import("@omnia/fx/ux").ExtractProps<import("../../../../../oxide/list/List").OListProps<T>> & {
|
131
|
+
"onUpdate:modelValue"?: (value: T[]) => any;
|
132
|
+
} & {
|
133
|
+
"v-slots"?: {
|
134
|
+
item?: (item: import("../../../../../oxide/list/List").IListItem<T>) => import("vue").VNodeChild;
|
135
|
+
} & Omit<{
|
136
|
+
default?: import("vue").Slot;
|
137
|
+
$stable?: boolean;
|
138
|
+
}, "item">;
|
139
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "variant" | "class" | "remove" | "drag" | "nav" | "colors" | "toned" | "v-model" | "modelValue" | "emit:update:modelValue" | "navigation" | "lines" | "divider" | "dragStyles" | "itemValue" | "disableItemClickable" | "slot:item"> & import("@omnia/fx/ux").VNodeEvents) => any) & {
|
140
|
+
item: typeof import("../../../../../oxide/list/ListItem").default extends {
|
141
|
+
propsDefinition: infer TProp;
|
142
|
+
} ? {
|
143
|
+
new (...args: any[]): {
|
144
|
+
$props: TProp & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof TProp>;
|
145
|
+
};
|
146
|
+
} : typeof import("../../../../../oxide/list/ListItem").default;
|
147
|
+
};
|
148
|
+
id: guid;
|
149
|
+
};
|
150
|
+
};
|
151
|
+
fontSize: (configuration: TextStyleConfiguration) => number;
|
152
|
+
};
|
153
|
+
rules: {
|
154
|
+
isAdvancedModeEnabled: () => boolean;
|
155
|
+
breakpoint: {
|
156
|
+
readonly showStatus: boolean;
|
157
|
+
hasActiveScale: (size: TextStyleBreakpointType) => boolean;
|
158
|
+
readonly showEnableDisable: boolean;
|
159
|
+
readonly isEnabled: boolean;
|
160
|
+
};
|
161
|
+
};
|
162
|
+
dataTypes: {
|
163
|
+
breakpoints: BreakpointItem[];
|
164
|
+
roles: SelectionItem[];
|
165
|
+
};
|
166
|
+
} & {
|
167
|
+
dispose?: () => void;
|
168
|
+
};
|
@@ -0,0 +1,7 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
|
2
|
+
"v-slots"?: {} & Omit<{
|
3
|
+
default?: import("vue").Slot;
|
4
|
+
$stable?: boolean;
|
5
|
+
}, never>;
|
6
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
|
7
|
+
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { guid, ITemplateRegistration, ResolvedThemeDefinition, TemplateRegistrationType, ColorSchema, ColorSchemaType } from "@omnia/fx-models";
|
1
|
+
import { guid, ITemplateRegistration, ResolvedThemeDefinition, TemplateRegistrationType, ColorSchema, ColorSchemaType, MediaPickerImage } from "@omnia/fx-models";
|
2
2
|
export declare const useThemeEditorStore: () => {
|
3
3
|
state: {
|
4
4
|
definition: ITemplateRegistration<ResolvedThemeDefinition>;
|
@@ -47,9 +47,13 @@ export declare const useThemeEditorStore: () => {
|
|
47
47
|
colorSchemas(): {
|
48
48
|
set: (colorSchema: ColorSchemaType, value: ColorSchema) => void;
|
49
49
|
};
|
50
|
+
mediaResources(): {
|
51
|
+
setLogo: (image: MediaPickerImage) => void;
|
52
|
+
};
|
50
53
|
addThemeDefinition(): void;
|
54
|
+
importThemeDefinition(themeDefinition2Import: ITemplateRegistration<ResolvedThemeDefinition>): void;
|
51
55
|
editThemeDefinition(definition: ITemplateRegistration<ResolvedThemeDefinition>): void;
|
52
|
-
copyDefinition(definition: ResolvedThemeDefinition): void;
|
56
|
+
copyDefinition(definition: ITemplateRegistration<ResolvedThemeDefinition>): void;
|
53
57
|
save(): Promise<boolean>;
|
54
58
|
delete(): Promise<boolean>;
|
55
59
|
}>;
|
@@ -67,11 +71,16 @@ export declare const useThemeEditorStore: () => {
|
|
67
71
|
spacing: () => any[];
|
68
72
|
blueprints: () => any[];
|
69
73
|
};
|
74
|
+
mediaResources: {
|
75
|
+
logo: () => MediaPickerImage;
|
76
|
+
};
|
70
77
|
};
|
71
78
|
bladeId: {
|
72
79
|
editBlade: guid;
|
73
80
|
viewBlade: guid;
|
74
81
|
editColorSchemasBlade: guid;
|
82
|
+
editMediaResourcesBlade: guid;
|
83
|
+
editLayoutWidthBlade: guid;
|
75
84
|
};
|
76
85
|
dataTypes: {
|
77
86
|
itemTypes: {
|
package/internal-do-not-import-from-here/ux/aurora/admin/theme-selection/SelectAppThemeJourney.d.ts
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
|
2
|
+
"v-slots"?: {} & Omit<{
|
3
|
+
default?: import("vue").Slot;
|
4
|
+
$stable?: boolean;
|
5
|
+
}, never>;
|
6
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
|
7
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/aurora/admin/theme-selection/SelectBPThemeJourney.d.ts
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
|
2
|
+
"v-slots"?: {} & Omit<{
|
3
|
+
default?: import("vue").Slot;
|
4
|
+
$stable?: boolean;
|
5
|
+
}, never>;
|
6
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
|
7
|
+
export default _default;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
|
2
|
+
"v-slots"?: {} & Omit<{
|
3
|
+
default?: import("vue").Slot;
|
4
|
+
$stable?: boolean;
|
5
|
+
}, never>;
|
6
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
|
7
|
+
export default _default;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
|
2
|
+
"v-slots"?: {} & Omit<{
|
3
|
+
default?: import("vue").Slot;
|
4
|
+
$stable?: boolean;
|
5
|
+
}, never>;
|
6
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
|
7
|
+
export default _default;
|
@@ -1,15 +1,11 @@
|
|
1
|
-
import { DynamicState } from "@omnia/fx-models";
|
2
|
-
export interface ContentBlockVelcronState extends DynamicState {
|
3
|
-
content: {
|
4
|
-
[id: string]: unknown;
|
5
|
-
};
|
6
|
-
}
|
7
1
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
8
2
|
targetResolverType?: string;
|
3
|
+
} & {
|
4
|
+
isAdminTheme?: boolean;
|
9
5
|
}> & {} & {
|
10
6
|
"v-slots"?: {} & Omit<{
|
11
7
|
default?: import("vue").Slot;
|
12
8
|
$stable?: boolean;
|
13
9
|
}, never>;
|
14
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "targetResolverType"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
10
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "targetResolverType" | "isAdminTheme"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
15
11
|
export default _default;
|
@@ -0,0 +1,73 @@
|
|
1
|
+
import { AppThemeManager, BusinessProfileThemeManager, guid, IIcon, TargetResolverTypes, TenantThemeManager, ThemeSelection, ThemeSelectionValue } from "@omnia/fx-models";
|
2
|
+
export declare const useThemeJourneyStore: () => {
|
3
|
+
state: {
|
4
|
+
id: guid;
|
5
|
+
themeSettings: {
|
6
|
+
parentModel: ThemeSelection;
|
7
|
+
currentModel: ThemeSelection;
|
8
|
+
};
|
9
|
+
themeManger: {
|
10
|
+
tenant: TenantThemeManager;
|
11
|
+
businessProfile: BusinessProfileThemeManager;
|
12
|
+
appInstance: AppThemeManager;
|
13
|
+
};
|
14
|
+
settings: {
|
15
|
+
targetResolverType: TargetResolverTypes;
|
16
|
+
isAdminTheme: boolean;
|
17
|
+
};
|
18
|
+
editingThemeModel: ThemeSelectionValue;
|
19
|
+
editingThemeSettings: {
|
20
|
+
themeManager: TenantThemeManager | AppThemeManager | BusinessProfileThemeManager;
|
21
|
+
inheritSettings: boolean;
|
22
|
+
selectIcon: IIcon;
|
23
|
+
switchIcon: IIcon;
|
24
|
+
switchIconAdditional: IIcon;
|
25
|
+
customIcons: boolean;
|
26
|
+
};
|
27
|
+
};
|
28
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
29
|
+
toggleCustomIcons: (custom: boolean) => void;
|
30
|
+
toggleInheritSettings: (inherit: boolean) => void;
|
31
|
+
additionalTheme: () => {
|
32
|
+
add: (id: guid) => void;
|
33
|
+
remove: (id: guid) => void;
|
34
|
+
};
|
35
|
+
updateTheme: (id: guid, mode: "default" | "accessibility") => void;
|
36
|
+
save: () => Promise<boolean>;
|
37
|
+
init: () => {
|
38
|
+
iconSetup: () => void;
|
39
|
+
state: (targetResolverType: TargetResolverTypes, isAdminTheme: boolean) => Promise<void>;
|
40
|
+
themeManager: {
|
41
|
+
tenant: () => void;
|
42
|
+
businessProfile: () => void;
|
43
|
+
appInstance: () => void;
|
44
|
+
};
|
45
|
+
};
|
46
|
+
}>;
|
47
|
+
get: {
|
48
|
+
themeTemplate: {
|
49
|
+
all: import("@omnia/fx-models").ITemplateRegistration<any, import("@omnia/fx-models").TemplateRegistrationType>[];
|
50
|
+
byId: (id: guid) => import("@omnia/fx-models").ITemplateRegistration<any, import("@omnia/fx-models").TemplateRegistrationType>;
|
51
|
+
};
|
52
|
+
editingBlade: (props: Omit<import("@omnia/fx/ux").ConstructComponentProps<import("../../../../journey/JourneyBlade").JourneyBladeProps>, "id" | "getApi" | "manageList"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
53
|
+
readonly editingType: "" | "tenant" | "app-instance" | "business-profile";
|
54
|
+
settings: {
|
55
|
+
tenant: () => void;
|
56
|
+
};
|
57
|
+
};
|
58
|
+
rules: {
|
59
|
+
editingTheme: {
|
60
|
+
isSwitchableThemeAndCustomIcon(): boolean;
|
61
|
+
isMultiSelectThemeAndCustomIcon(): boolean;
|
62
|
+
};
|
63
|
+
showInheritThemeSettings: () => boolean;
|
64
|
+
showSettingsForm: () => boolean;
|
65
|
+
showIconsSelection: {
|
66
|
+
customSwitch: () => boolean;
|
67
|
+
multi: () => boolean;
|
68
|
+
switch: () => boolean;
|
69
|
+
};
|
70
|
+
};
|
71
|
+
} & {
|
72
|
+
dispose?: () => void;
|
73
|
+
};
|