@omnia/fx 8.0.264-dev → 8.0.266-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.manifest.json +1 -1
- package/internal-do-not-import-from-here/stores/{markdown/MarkdownPluginStore.d.ts → floweditor/FlowEditorPluginStore.d.ts} +12 -11
- package/internal-do-not-import-from-here/stores/{markdown/MarkdownToolbarStateStore.d.ts → floweditor/FlowEditorToolbarStateStore.d.ts} +1 -1
- package/internal-do-not-import-from-here/stores/floweditor/index.d.ts +2 -0
- package/internal-do-not-import-from-here/stores/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appimageinput/AppImageInput.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/aurora/designkits/default/DefinitionRegistrations.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/designkits/pages/DefinitionRegistrations.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +36 -0
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +36 -0
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +3 -14
- package/internal-do-not-import-from-here/ux/features/models/FeatureAction.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/features/models/VDataGridItemScopedSlot.d.ts +13 -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/shared/FeatureActions.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/features/shared/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/floweditor/FlowEditor.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/{markdown2/MarkdownEditorFuture.d.ts → floweditor/FlowEditor.d.ts} +4 -4
- package/internal-do-not-import-from-here/ux/{markdown2/MarkdownToolbar.css.d.ts → floweditor/FlowEditorToolbar.css.d.ts} +1 -1
- package/internal-do-not-import-from-here/ux/floweditor/commands/EditorCommands.d.ts +99 -0
- package/internal-do-not-import-from-here/ux/floweditor/commands/helpers/EditorNodeHelper.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/floweditor/commands/helpers/Editorhelper.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/floweditor/commands/helpers/HtmlNodehelper.d.ts +25 -0
- package/internal-do-not-import-from-here/ux/floweditor/models/Constants.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/floweditor/models/EditorModels.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/floweditor/models/EditorPlugin.d.ts +40 -0
- package/internal-do-not-import-from-here/ux/floweditor/parsers/HtmlParser.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/floweditor/parsers/JSONParser.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/DefineEditorPlugin.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/bold/BoldPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/colorstyle/ColorButton.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/colorstyle/ColorStylePlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/floweditor/plugins/elements/ElementPlugin.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/eventhandlers/EditorEvents.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/eventhandlers/KeyboardEvents.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/eventhandlers/handlers/BackspaceHandler.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/eventhandlers/handlers/ClipboardHandler.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/eventhandlers/handlers/EnterHandler.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/italic/ItalicPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/floweditor/plugins/sourceeditor/SourceEditorPlugin.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/testdata/TestDataPlugin.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/text/TextPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/typography/TypographyButton.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/typography/TypographyPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/velcron/VelcronPlugin.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/floweditor/rules/EditorRules.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/floweditor/stores/FlowEditorStore.d.ts +370 -0
- package/internal-do-not-import-from-here/ux/floweditor/stores/FlowEditorToolbarStore.d.ts +1901 -0
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/CommunityUpdate.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/DefinitionRegistrations.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/DocumentReview.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/NewsArticleTemplate.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/QuickPoll.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/Reach.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/UpdatedProcess.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/identities/loc/Localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/markdown/stores/MarkdownEditorStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsDisplay.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +18 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/VelcronDefinitionPicker.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/VelcronEditorBuilder.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/{components/contenteditor/models → definitions}/VelcronDefinitionIds.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/definitions/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/models/ComponentDescriptors.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/{Markdown.d.ts → Flow.d.ts} +6 -6
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Property.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/MarkdownEditor.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyResolverEditor.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/stores/VelcronDefinitionStore.d.ts +47 -7
- package/internal-do-not-import-from-here/wctypings.d.ts +10 -32
- package/package.json +2 -2
- package/internal-do-not-import-from-here/stores/markdown/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/markdown2/MarkdownEditorFuture.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/markdown2/commands/ClipboardCommands.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/markdown2/commands/EditorCommands.d.ts +0 -52
- package/internal-do-not-import-from-here/ux/markdown2/commands/helpers/EditorNodeHelper.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/markdown2/commands/helpers/Editorhelper.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/markdown2/commands/helpers/HtmlNodehelper.d.ts +0 -9
- package/internal-do-not-import-from-here/ux/markdown2/markdowntester/MarkdownTester.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/markdown2/markdowntester/MarkdownTester.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/markdown2/models/EditorModels.d.ts +0 -21
- package/internal-do-not-import-from-here/ux/markdown2/models/EditorPlugin.d.ts +0 -18
- package/internal-do-not-import-from-here/ux/markdown2/parsers/HtmlParser.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/markdown2/parsers/JSONParser.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/markdown2/parsers/markdownparser_old/MarkdownParser_engine.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/markdown2/parsers/markdownparser_old/component.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/markdown2/parsers/markdownparser_old/tags.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/markdown2/parsers/markdownparser_old/textParser.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/markdown2/plugins/sourceeditor/SourceEditorPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/markdown2/plugins/testdata/TestDataPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/markdown2/plugins/text/TextPlugin.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownStore.d.ts +0 -200
- package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownToolbarStore.d.ts +0 -1051
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.d.ts +0 -949
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/content/Quote.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/Image.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/MicroBlog.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/MicroBlog2.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/Praise.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/SocialText.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/index.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/models/ContentDefinitionRegistration.d.ts +0 -9
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/models/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/stores/ContentEditorStore.d.ts +0 -180
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/definitions/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/VelcronContentEditor.css.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/VelcronContentEditor.d.ts +0 -1133
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/VelcronContentRenderer.d.ts +0 -80
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/ActionMenu.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/ActionMenu.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/BorderSelector copy.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/BorderSelector.css.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/BorderSelector.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/DefinitionToolbar copy.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/DefinitionToolbar.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/DefinitionToolbar.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/definitions/DefinitionRegistrations.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/definitions/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/editorHooks/ContentEditorHooks.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/editorHooks/ContentEditorHooks.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/models/EditorRenderingHooks.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/models/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/stores/ContentEditorStore.d.ts +0 -222
- /package/internal-do-not-import-from-here/ux/{markdown2/MarkdownToolbar.d.ts → floweditor/FlowEditorToolbar.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/PluginRegistrationHandler.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/registrations/PluginRegistrations.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/sourceeditor/SourceEditorButton.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{aurora/RegistrationHandlerDefinitions.d.ts → velcron/apis/VelcronCategoriesHandler.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{components/contenteditor/DefinitionRegistrations.d.ts → apis/VelcronDefinitionsHandler.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{registrations → definitions}/CategoryRegistrations.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{components/contenteditor/definitions → definitions}/content/Image.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{components/contenteditor/definitions → definitions}/content/ImageText.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{components/contenteditorNew/definitions/DefinitionRegistrations.d.ts → definitions/content/Quote.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{components/contenteditor/definitions → definitions}/content/Text.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{components/contenteditor/definitions → definitions}/content/index.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{aurora/designkits/default/definitions/content → velcron/definitions/social}/Image.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{aurora/designkits/default/definitions/content/ImageText.d.ts → velcron/definitions/social/MicroBlog.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{aurora/designkits/default/definitions/content/Quote.d.ts → velcron/definitions/social/MicroBlog2.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{aurora/designkits/default/definitions/content/Text.d.ts → velcron/definitions/social/Praise.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{aurora/designkits/default/definitions/content/index.d.ts → velcron/definitions/social/SocialText.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{markdown2/parsers/markdownparser_old/MarkdownParser.d.ts → velcron/definitions/social/index.d.ts} +0 -0
@@ -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","destroyVueApp","extendApi","getVueApps","getVueMixins","getVueOptionsHooks","getVuePlugins","injectByTypeId","isInjectable","mergeLocaliation","omniaScriptApi","propertyPath","propertyPathValue","registerApi","registerAsyncVueComponent","registerInjectResolver","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","GalleryStore","GroupIdentityStore","IdentityStore","IdentitySyncProviderStore","ImageCropperByRatioHandler","ImageCropperUtils","ImageFilterHandler","ImageFlipHandler","ImageGalleryHandler","ImageRotateHandler","KEEP_ORIGINAL_SIZE_OPTION_VALUE","LinkReferencesStore","MSTeamsStore","MediaFileProcessor","MediaPickerCommonStore","MediaPickerImageHandler","MediaPickerStore","MediaPickerUtils","MultilingualStore","OrganizationTreeStore","PostStore","ProfileCardStore","PromotedTagStore","ProviderStore","SiteStore","Store","StoreAction","StoreLogTypes","StoreLogger","StoreMutation","StoreState","SystemLogStore","TargetingPropertyStore","TimeZoneStore","TokenStatus","TokenStore","TuiImgScaleQuality","UserIdentityStore","UserTargetingStore","UserTypeIdentityPickerStore","UserTypeIdentityStore","UserTypeStore","VersionedLayoutStore","VideoGalleryHandler","defineStore","getMediaProviderEditor","getTuiImageRendition","onApplyStyle","updateTransformedImageBase64","useCompontentHostStore","useCompontentSharedSettingsStore","
|
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","destroyVueApp","extendApi","getVueApps","getVueMixins","getVueOptionsHooks","getVuePlugins","injectByTypeId","isInjectable","mergeLocaliation","omniaScriptApi","propertyPath","propertyPathValue","registerApi","registerAsyncVueComponent","registerInjectResolver","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","GalleryStore","GroupIdentityStore","IdentityStore","IdentitySyncProviderStore","ImageCropperByRatioHandler","ImageCropperUtils","ImageFilterHandler","ImageFlipHandler","ImageGalleryHandler","ImageRotateHandler","KEEP_ORIGINAL_SIZE_OPTION_VALUE","LinkReferencesStore","MSTeamsStore","MediaFileProcessor","MediaPickerCommonStore","MediaPickerImageHandler","MediaPickerStore","MediaPickerUtils","MultilingualStore","OrganizationTreeStore","PostStore","ProfileCardStore","PromotedTagStore","ProviderStore","SiteStore","Store","StoreAction","StoreLogTypes","StoreLogger","StoreMutation","StoreState","SystemLogStore","TargetingPropertyStore","TimeZoneStore","TokenStatus","TokenStore","TuiImgScaleQuality","UserIdentityStore","UserTargetingStore","UserTypeIdentityPickerStore","UserTypeIdentityStore","UserTypeStore","VersionedLayoutStore","VideoGalleryHandler","defineStore","getMediaProviderEditor","getTuiImageRendition","onApplyStyle","updateTransformedImageBase64","useCompontentHostStore","useCompontentSharedSettingsStore","useFlowEditorPluginStore","useFlowEditorToolbarStateStore","useLocalizationStore","useMediaPickerImageTransformerStore","useMediaPickerStorageProviderContext","useSizeContainerStore"]},"./node_modules/@omnia/fx/vue/index.js":{"id":"c041fe9f-1e14-443d-9407-5aa8829fbc21","buildMeta":{"exportsType":"namespace"},"expo.js":["createVueApp","destroyVueApp","getVueApps","getVueMixins","getVueOptionsHooks","getVuePlugins","registerAsyncVueComponent","registerVueMixin","registerVueOptionsHook","registerVuePlugin","resolveAsyncVueComponent","vueCustomElement"]},"./node_modules/@omnia/fx/services/index.js":{"id":"e25b9dd8-6dd7-4437-8ddd-0b9fadba73ac","buildMeta":{"exportsType":"namespace"},"expo.js":["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","IdentityService","IdentitySyncProviderService","ImageProxyService","LinkStatusService","LocalizationService","LoginLogService","ManifestService","MediaPickerService","MicrosoftStreamService","OmniaSearchService","OmniaSearchUserService","OrganizationTreeService","PermissionNode","PermissionService","PostService","ProfileCardService","PropertyBindingService","PropertyDataSourceBase","QueryablePropertiesService","QueueService","ReindexOmniaSearchUserService","SecretsService","SecurityRoles","SecurityService","SettingsService","SiteService","TagsService","TargetingPropertyService","TenantContactService","TenantPreSetupService","TestDataSourcePropertiesService","TimeZoneService","TranslationService","UserIdentityService","UserPresenceStatus","UserPropertyBindingProvider","UserService","UserTypeService","VersionedDataService","VersionedLayoutService","WebImageService","WriteBackStatus","activityService","activitySubscriptionService","defineService","useRealtimeService"]}}}
|
@@ -1,16 +1,17 @@
|
|
1
|
-
import {
|
2
|
-
export declare const
|
1
|
+
import { FlowEditorPluginRegistration, guid } from "@omnia/fx-models";
|
2
|
+
export declare const useFlowEditorPluginStore: () => {
|
3
3
|
state: {
|
4
|
-
plugins:
|
5
|
-
hiddenPlugins:
|
4
|
+
plugins: FlowEditorPluginRegistration[];
|
5
|
+
hiddenPlugins: FlowEditorPluginRegistration[];
|
6
6
|
};
|
7
7
|
get: {
|
8
|
-
|
8
|
+
mandatory: () => FlowEditorPluginRegistration[];
|
9
|
+
byId(id: guid): FlowEditorPluginRegistration;
|
9
10
|
};
|
10
11
|
actions: {
|
11
12
|
onDispatching: {
|
12
13
|
addPlugin: {
|
13
|
-
subscribe(fn: (plugin:
|
14
|
+
subscribe(fn: (plugin: FlowEditorPluginRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
14
15
|
};
|
15
16
|
load: {
|
16
17
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -18,7 +19,7 @@ export declare const useMarkdownPluginStore: () => {
|
|
18
19
|
};
|
19
20
|
onDispatched: {
|
20
21
|
addPlugin: {
|
21
|
-
subscribe(fn: (result: void, plugin:
|
22
|
+
subscribe(fn: (result: void, plugin: FlowEditorPluginRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
22
23
|
};
|
23
24
|
load: {
|
24
25
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -26,19 +27,19 @@ export declare const useMarkdownPluginStore: () => {
|
|
26
27
|
};
|
27
28
|
onFailure: {
|
28
29
|
addPlugin: {
|
29
|
-
subscribe(fn: (failureReason: any, plugin:
|
30
|
+
subscribe(fn: (failureReason: any, plugin: FlowEditorPluginRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
30
31
|
};
|
31
32
|
load: {
|
32
33
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
33
34
|
};
|
34
35
|
};
|
35
36
|
} & {
|
36
|
-
addPlugin(plugin:
|
37
|
+
addPlugin(plugin: FlowEditorPluginRegistration): void;
|
37
38
|
load(): Promise<void>;
|
38
39
|
};
|
39
40
|
events: {
|
40
|
-
onMutatedPlugins: import("internal/fx/core").MessageBusExposeOnlySubscription<
|
41
|
-
onMutatedHiddenPlugins: import("internal/fx/core").MessageBusExposeOnlySubscription<
|
41
|
+
onMutatedPlugins: import("internal/fx/core").MessageBusExposeOnlySubscription<FlowEditorPluginRegistration[]>;
|
42
|
+
onMutatedHiddenPlugins: import("internal/fx/core").MessageBusExposeOnlySubscription<FlowEditorPluginRegistration[]>;
|
42
43
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
43
44
|
} & {
|
44
45
|
dispose?: () => void;
|
package/internal-do-not-import-from-here/ux/appprovisioning/appimageinput/AppImageInput.d.ts
CHANGED
@@ -3,6 +3,7 @@ declare const _default: {
|
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
alignX: {
|
5
5
|
type: import("vue").PropType<"left" | "right" | "center">;
|
6
|
+
required: false;
|
6
7
|
};
|
7
8
|
imageHeight: {
|
8
9
|
type: import("vue").PropType<number>;
|
@@ -24,6 +25,7 @@ declare const _default: {
|
|
24
25
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
25
26
|
alignX: {
|
26
27
|
type: import("vue").PropType<"left" | "right" | "center">;
|
28
|
+
required: false;
|
27
29
|
};
|
28
30
|
imageHeight: {
|
29
31
|
type: import("vue").PropType<number>;
|
@@ -47,6 +49,7 @@ declare const _default: {
|
|
47
49
|
}, Readonly<import("vue").ExtractPropTypes<{
|
48
50
|
alignX: {
|
49
51
|
type: import("vue").PropType<"left" | "right" | "center">;
|
52
|
+
required: false;
|
50
53
|
};
|
51
54
|
imageHeight: {
|
52
55
|
type: import("vue").PropType<number>;
|
@@ -67,6 +70,7 @@ declare const _default: {
|
|
67
70
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
68
71
|
alignX: {
|
69
72
|
type: import("vue").PropType<"left" | "right" | "center">;
|
73
|
+
required: false;
|
70
74
|
};
|
71
75
|
imageHeight: {
|
72
76
|
type: import("vue").PropType<number>;
|
package/internal-do-not-import-from-here/ux/aurora/designkits/default/DefinitionRegistrations.d.ts
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|
package/internal-do-not-import-from-here/ux/aurora/designkits/pages/DefinitionRegistrations.d.ts
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|
@@ -1192,7 +1192,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1192
1192
|
};
|
1193
1193
|
viewTemplate?: {
|
1194
1194
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1195
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
1195
1196
|
version: string;
|
1197
|
+
state?: import("@omnia/fx-models").DynamicState;
|
1196
1198
|
};
|
1197
1199
|
};
|
1198
1200
|
basic?: {
|
@@ -1339,7 +1341,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1339
1341
|
};
|
1340
1342
|
viewTemplate?: {
|
1341
1343
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1344
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
1342
1345
|
version: string;
|
1346
|
+
state?: import("@omnia/fx-models").DynamicState;
|
1343
1347
|
};
|
1344
1348
|
};
|
1345
1349
|
accent1?: {
|
@@ -1486,7 +1490,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1486
1490
|
};
|
1487
1491
|
viewTemplate?: {
|
1488
1492
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1493
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
1489
1494
|
version: string;
|
1495
|
+
state?: import("@omnia/fx-models").DynamicState;
|
1490
1496
|
};
|
1491
1497
|
};
|
1492
1498
|
warn?: {
|
@@ -1633,7 +1639,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1633
1639
|
};
|
1634
1640
|
viewTemplate?: {
|
1635
1641
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1642
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
1636
1643
|
version: string;
|
1644
|
+
state?: import("@omnia/fx-models").DynamicState;
|
1637
1645
|
};
|
1638
1646
|
};
|
1639
1647
|
link?: {
|
@@ -1780,7 +1788,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1780
1788
|
};
|
1781
1789
|
viewTemplate?: {
|
1782
1790
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1791
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
1783
1792
|
version: string;
|
1793
|
+
state?: import("@omnia/fx-models").DynamicState;
|
1784
1794
|
};
|
1785
1795
|
};
|
1786
1796
|
variant1?: {
|
@@ -1927,7 +1937,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1927
1937
|
};
|
1928
1938
|
viewTemplate?: {
|
1929
1939
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1940
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
1930
1941
|
version: string;
|
1942
|
+
state?: import("@omnia/fx-models").DynamicState;
|
1931
1943
|
};
|
1932
1944
|
};
|
1933
1945
|
variant2?: {
|
@@ -2074,7 +2086,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2074
2086
|
};
|
2075
2087
|
viewTemplate?: {
|
2076
2088
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2089
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2077
2090
|
version: string;
|
2091
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2078
2092
|
};
|
2079
2093
|
};
|
2080
2094
|
variant3?: {
|
@@ -2221,7 +2235,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2221
2235
|
};
|
2222
2236
|
viewTemplate?: {
|
2223
2237
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2238
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2224
2239
|
version: string;
|
2240
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2225
2241
|
};
|
2226
2242
|
};
|
2227
2243
|
variant4?: {
|
@@ -2368,7 +2384,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2368
2384
|
};
|
2369
2385
|
viewTemplate?: {
|
2370
2386
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2387
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2371
2388
|
version: string;
|
2389
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2372
2390
|
};
|
2373
2391
|
};
|
2374
2392
|
};
|
@@ -2517,7 +2535,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2517
2535
|
};
|
2518
2536
|
viewTemplate?: {
|
2519
2537
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2538
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2520
2539
|
version: string;
|
2540
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2521
2541
|
};
|
2522
2542
|
};
|
2523
2543
|
basic?: {
|
@@ -2664,7 +2684,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2664
2684
|
};
|
2665
2685
|
viewTemplate?: {
|
2666
2686
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2687
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2667
2688
|
version: string;
|
2689
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2668
2690
|
};
|
2669
2691
|
};
|
2670
2692
|
accent1?: {
|
@@ -2811,7 +2833,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2811
2833
|
};
|
2812
2834
|
viewTemplate?: {
|
2813
2835
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2836
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2814
2837
|
version: string;
|
2838
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2815
2839
|
};
|
2816
2840
|
};
|
2817
2841
|
warn?: {
|
@@ -2958,7 +2982,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2958
2982
|
};
|
2959
2983
|
viewTemplate?: {
|
2960
2984
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2985
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2961
2986
|
version: string;
|
2987
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2962
2988
|
};
|
2963
2989
|
};
|
2964
2990
|
link?: {
|
@@ -3105,7 +3131,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3105
3131
|
};
|
3106
3132
|
viewTemplate?: {
|
3107
3133
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3134
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
3108
3135
|
version: string;
|
3136
|
+
state?: import("@omnia/fx-models").DynamicState;
|
3109
3137
|
};
|
3110
3138
|
};
|
3111
3139
|
variant1?: {
|
@@ -3252,7 +3280,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3252
3280
|
};
|
3253
3281
|
viewTemplate?: {
|
3254
3282
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3283
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
3255
3284
|
version: string;
|
3285
|
+
state?: import("@omnia/fx-models").DynamicState;
|
3256
3286
|
};
|
3257
3287
|
};
|
3258
3288
|
variant2?: {
|
@@ -3399,7 +3429,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3399
3429
|
};
|
3400
3430
|
viewTemplate?: {
|
3401
3431
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3432
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
3402
3433
|
version: string;
|
3434
|
+
state?: import("@omnia/fx-models").DynamicState;
|
3403
3435
|
};
|
3404
3436
|
};
|
3405
3437
|
variant3?: {
|
@@ -3546,7 +3578,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3546
3578
|
};
|
3547
3579
|
viewTemplate?: {
|
3548
3580
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3581
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
3549
3582
|
version: string;
|
3583
|
+
state?: import("@omnia/fx-models").DynamicState;
|
3550
3584
|
};
|
3551
3585
|
};
|
3552
3586
|
variant4?: {
|
@@ -3693,7 +3727,9 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3693
3727
|
};
|
3694
3728
|
viewTemplate?: {
|
3695
3729
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3730
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
3696
3731
|
version: string;
|
3732
|
+
state?: import("@omnia/fx-models").DynamicState;
|
3697
3733
|
};
|
3698
3734
|
};
|
3699
3735
|
};
|
@@ -1194,7 +1194,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
1194
1194
|
};
|
1195
1195
|
viewTemplate?: {
|
1196
1196
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1197
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
1197
1198
|
version: string;
|
1199
|
+
state?: import("@omnia/fx-models").DynamicState;
|
1198
1200
|
};
|
1199
1201
|
};
|
1200
1202
|
basic?: {
|
@@ -1341,7 +1343,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
1341
1343
|
};
|
1342
1344
|
viewTemplate?: {
|
1343
1345
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1346
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
1344
1347
|
version: string;
|
1348
|
+
state?: import("@omnia/fx-models").DynamicState;
|
1345
1349
|
};
|
1346
1350
|
};
|
1347
1351
|
accent1?: {
|
@@ -1488,7 +1492,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
1488
1492
|
};
|
1489
1493
|
viewTemplate?: {
|
1490
1494
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1495
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
1491
1496
|
version: string;
|
1497
|
+
state?: import("@omnia/fx-models").DynamicState;
|
1492
1498
|
};
|
1493
1499
|
};
|
1494
1500
|
warn?: {
|
@@ -1635,7 +1641,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
1635
1641
|
};
|
1636
1642
|
viewTemplate?: {
|
1637
1643
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1644
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
1638
1645
|
version: string;
|
1646
|
+
state?: import("@omnia/fx-models").DynamicState;
|
1639
1647
|
};
|
1640
1648
|
};
|
1641
1649
|
link?: {
|
@@ -1782,7 +1790,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
1782
1790
|
};
|
1783
1791
|
viewTemplate?: {
|
1784
1792
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1793
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
1785
1794
|
version: string;
|
1795
|
+
state?: import("@omnia/fx-models").DynamicState;
|
1786
1796
|
};
|
1787
1797
|
};
|
1788
1798
|
variant1?: {
|
@@ -1929,7 +1939,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
1929
1939
|
};
|
1930
1940
|
viewTemplate?: {
|
1931
1941
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1942
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
1932
1943
|
version: string;
|
1944
|
+
state?: import("@omnia/fx-models").DynamicState;
|
1933
1945
|
};
|
1934
1946
|
};
|
1935
1947
|
variant2?: {
|
@@ -2076,7 +2088,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2076
2088
|
};
|
2077
2089
|
viewTemplate?: {
|
2078
2090
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2091
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2079
2092
|
version: string;
|
2093
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2080
2094
|
};
|
2081
2095
|
};
|
2082
2096
|
variant3?: {
|
@@ -2223,7 +2237,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2223
2237
|
};
|
2224
2238
|
viewTemplate?: {
|
2225
2239
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2240
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2226
2241
|
version: string;
|
2242
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2227
2243
|
};
|
2228
2244
|
};
|
2229
2245
|
variant4?: {
|
@@ -2370,7 +2386,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2370
2386
|
};
|
2371
2387
|
viewTemplate?: {
|
2372
2388
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2389
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2373
2390
|
version: string;
|
2391
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2374
2392
|
};
|
2375
2393
|
};
|
2376
2394
|
};
|
@@ -2519,7 +2537,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2519
2537
|
};
|
2520
2538
|
viewTemplate?: {
|
2521
2539
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2540
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2522
2541
|
version: string;
|
2542
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2523
2543
|
};
|
2524
2544
|
};
|
2525
2545
|
basic?: {
|
@@ -2666,7 +2686,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2666
2686
|
};
|
2667
2687
|
viewTemplate?: {
|
2668
2688
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2689
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2669
2690
|
version: string;
|
2691
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2670
2692
|
};
|
2671
2693
|
};
|
2672
2694
|
accent1?: {
|
@@ -2813,7 +2835,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2813
2835
|
};
|
2814
2836
|
viewTemplate?: {
|
2815
2837
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2838
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2816
2839
|
version: string;
|
2840
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2817
2841
|
};
|
2818
2842
|
};
|
2819
2843
|
warn?: {
|
@@ -2960,7 +2984,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2960
2984
|
};
|
2961
2985
|
viewTemplate?: {
|
2962
2986
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2987
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
2963
2988
|
version: string;
|
2989
|
+
state?: import("@omnia/fx-models").DynamicState;
|
2964
2990
|
};
|
2965
2991
|
};
|
2966
2992
|
link?: {
|
@@ -3107,7 +3133,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
3107
3133
|
};
|
3108
3134
|
viewTemplate?: {
|
3109
3135
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3136
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
3110
3137
|
version: string;
|
3138
|
+
state?: import("@omnia/fx-models").DynamicState;
|
3111
3139
|
};
|
3112
3140
|
};
|
3113
3141
|
variant1?: {
|
@@ -3254,7 +3282,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
3254
3282
|
};
|
3255
3283
|
viewTemplate?: {
|
3256
3284
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3285
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
3257
3286
|
version: string;
|
3287
|
+
state?: import("@omnia/fx-models").DynamicState;
|
3258
3288
|
};
|
3259
3289
|
};
|
3260
3290
|
variant2?: {
|
@@ -3401,7 +3431,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
3401
3431
|
};
|
3402
3432
|
viewTemplate?: {
|
3403
3433
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3434
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
3404
3435
|
version: string;
|
3436
|
+
state?: import("@omnia/fx-models").DynamicState;
|
3405
3437
|
};
|
3406
3438
|
};
|
3407
3439
|
variant3?: {
|
@@ -3548,7 +3580,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
3548
3580
|
};
|
3549
3581
|
viewTemplate?: {
|
3550
3582
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3583
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
3551
3584
|
version: string;
|
3585
|
+
state?: import("@omnia/fx-models").DynamicState;
|
3552
3586
|
};
|
3553
3587
|
};
|
3554
3588
|
variant4?: {
|
@@ -3695,7 +3729,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
3695
3729
|
};
|
3696
3730
|
viewTemplate?: {
|
3697
3731
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3732
|
+
resolver: import("@omnia/fx-models").VelcronResolverId;
|
3698
3733
|
version: string;
|
3734
|
+
state?: import("@omnia/fx-models").DynamicState;
|
3699
3735
|
};
|
3700
3736
|
};
|
3701
3737
|
};
|
@@ -5,19 +5,6 @@ export interface VDataGridHeader {
|
|
5
5
|
text: string;
|
6
6
|
align: string;
|
7
7
|
}
|
8
|
-
export interface VDataGridItemScopedSlot<TItem> {
|
9
|
-
item?: TItem;
|
10
|
-
selected?: boolean;
|
11
|
-
isGroupHeader?: boolean;
|
12
|
-
title?: string;
|
13
|
-
description?: string;
|
14
|
-
consentInformation?: string;
|
15
|
-
category?: string;
|
16
|
-
needConsent?: boolean;
|
17
|
-
isBusy?: boolean;
|
18
|
-
hasError?: boolean;
|
19
|
-
errorMsg?: string;
|
20
|
-
}
|
21
8
|
export interface IFeatureActivationProps {
|
22
9
|
appInstanceId?: guid;
|
23
10
|
handleClose: () => void;
|
@@ -26,7 +13,9 @@ export interface IFeatureActivationProps {
|
|
26
13
|
}
|
27
14
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
28
15
|
appInstanceId?: guid;
|
16
|
+
} & {
|
17
|
+
idTeleport?: guid;
|
29
18
|
} & {
|
30
19
|
targetResolverType?: string;
|
31
|
-
} & DefineEmit<"handleFeatureAction", (action: string, featureId: guid) => true> & DefineEmit<"openConsentUrl", () => void>>) => any;
|
20
|
+
} & DefineEmit<"handleFeatureAction", (action: string, featureId: guid) => true> & DefineEmit<"openConsentUrl", () => void> & DefineEmit<"travelToProperties", () => void>>) => any;
|
32
21
|
export default _default;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
export interface VDataGridItemScopedSlot<TItem> {
|
2
|
+
item?: TItem;
|
3
|
+
selected?: boolean;
|
4
|
+
isGroupHeader?: boolean;
|
5
|
+
title?: string;
|
6
|
+
description?: string;
|
7
|
+
consentInformation?: string;
|
8
|
+
category?: string;
|
9
|
+
needConsent?: boolean;
|
10
|
+
isBusy?: boolean;
|
11
|
+
hasError?: boolean;
|
12
|
+
errorMsg?: string;
|
13
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./FeatureActions";
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import { AppInstance, AppTemplate, AzurePermissionResource, FeatureInstance, guid, TargetResolverTypes } from "@omnia/fx-models";
|
2
|
-
import { FeatureInstanceDetails, RequiredAzureAdPermission } from "..";
|
3
|
-
import { VDataGridItemScopedSlot } from "../FeatureActivation";
|
2
|
+
import { FeatureInstanceDetails, RequiredAzureAdPermission, VDataGridItemScopedSlot } from "..";
|
4
3
|
export declare const useFeatureJourneyStore: () => {
|
5
4
|
state: {
|
6
5
|
targetResolverType: TargetResolverTypes;
|
@@ -156,7 +155,7 @@ export declare const useFeatureJourneyStore: () => {
|
|
156
155
|
isLastRequiredPermissionFeature: (featureDeactivated: VDataGridItemScopedSlot<FeatureInstance>) => void;
|
157
156
|
};
|
158
157
|
get: {
|
159
|
-
isLoading
|
158
|
+
isLoading(): boolean;
|
160
159
|
getFeaturesByCategory(category: string): FeatureInstanceDetails<FeatureInstance>[];
|
161
160
|
getConsentUrl(): string;
|
162
161
|
};
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { ColorDefinition, TextBlueprint, TypographySize, TypographySizes, TypographyType, TypographyTypes } from "@omnia/fx-models";
|
2
|
+
import { useColorSchemaStore, useTypographyBlueprintStore } from "@omnia/fx/ux";
|
3
|
+
export declare const flowEditorStyles: {
|
4
|
+
placeholder: string;
|
5
|
+
container: (color: ColorDefinition, colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>, toned: boolean, textBlueprint: TextBlueprint, typography: TypographyTypes | TypographyType, size: TypographySizes | TypographySize) => string;
|
6
|
+
};
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { DefineEmit } from "@omnia/fx/ux";
|
2
|
-
import {
|
3
|
-
import {
|
2
|
+
import { FlowEditorPluginSettings } from "@omnia/fx-models";
|
3
|
+
import { useFlowEditorStore } from "./stores/FlowEditorStore";
|
4
4
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
5
5
|
"emit:update:modelValue": (value: string) => void;
|
6
6
|
} & {
|
@@ -16,8 +16,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
16
16
|
} & {
|
17
17
|
edit?: boolean;
|
18
18
|
} & {
|
19
|
-
getApi?: (store: ReturnType<typeof
|
19
|
+
getApi?: (store: ReturnType<typeof useFlowEditorStore>) => void;
|
20
20
|
} & {
|
21
|
-
plugins?:
|
21
|
+
plugins?: FlowEditorPluginSettings[];
|
22
22
|
} & DefineEmit<"update:modelValue", (value: string) => true>>) => any;
|
23
23
|
export default _default;
|