@omnia/fx 8.0.267-dev → 8.0.269-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/core/Extend.d.ts +1 -1
- package/internal-do-not-import-from-here/core/propertyPath.d.ts +1 -1
- package/internal-do-not-import-from-here/index.d.ts +2 -2
- package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/stores/floweditor/FlowRendererPluginStore.d.ts +43 -0
- package/internal-do-not-import-from-here/stores/floweditor/index.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/app/management/api/AppManagementApi.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/ViewTemplatePicker.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +18 -18
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +18 -18
- package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/FlowEditor.d.ts +7 -6
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/commands/EditorCommands.d.ts +7 -8
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/commands/helpers/EditorNodeHelper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/commands/helpers/HtmlNodehelper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/commands/helpers/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/editor/commands/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/flow/editor/index.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/models/Constants.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/models/EditorModels.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/models/EditorPlugin.d.ts +12 -11
- package/internal-do-not-import-from-here/ux/flow/editor/models/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/parsers/HtmlParser.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/parsers/JSONParser.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/flow/editor/parsers/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/DefineEditorPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/bold/BoldPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/colorstyle/ColorConverter.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/colorstyle/ColorStylePlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/elements/ElementConverter.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/elements/ElementPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/eventhandlers/EditorEvents.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/eventhandlers/KeyboardEvents.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/eventhandlers/converters/WordConverter.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/eventhandlers/handlers/BackspaceHandler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/eventhandlers/handlers/ClipboardHandler.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/eventhandlers/handlers/EnterHandler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/eventhandlers/handlers/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/italic/ItalicPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/sourceeditor/SourceEditorButton.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/sourceeditor/SourceEditorPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/testdata/TestDataPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/text/TextConverter.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/text/TextPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/typography/TypographyButton.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/typography/TypographyPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/velcron/VelcronPlugin.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/rules/EditorRules.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/flow/editor/rules/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/stores/FlowEditorStore.d.ts +31 -21
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/stores/FlowEditorToolbarStore.d.ts +216 -166
- package/internal-do-not-import-from-here/ux/flow/editor/stores/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/flow/models/ColorFormatNode.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/flow/models/ElementNode.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/flow/models/FlowContent.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/flow/models/TypographyNode.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/flow/models/VelcronNode.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/flow/models/index.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/FlowRenderer.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/FlowRenderer.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/PluginRegistrationHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/Constants.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererContentPlugin.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererContext.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererPluginContext.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererToHtmlContext.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/index.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/parsers/JSONParser.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/parsers/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/DefineRendererPlugin.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/PluginRegistrations.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/bold/BoldPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/colorstyle/ColorStylePlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/elements/ElementPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/italic/ItalicPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/text/TextConverter.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/text/TextPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/typography/TypographyPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/velcron/VelcronPlugin.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/stores/FlowRendererStore.d.ts +109 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/core/JourneyRouter.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/journey/core/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitemactiontoolbar/LayoutItemActionToolbar.d.ts +9 -129
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.d.ts +2 -4
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.stylex.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.stylex.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/VelcronDefinitionPicker.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/velcron/definitions/VelcronDefinitionIds.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/velcron/stores/VelcronDefinitionStore.d.ts +57 -3
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItem.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +28 -22
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/floweditor/plugins/bold/BoldPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/floweditor/plugins/colorstyle/ColorButton.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/floweditor/plugins/elements/ElementPlugin.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/floweditor/plugins/eventhandlers/handlers/ClipboardHandler.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/floweditor/plugins/italic/ItalicPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/floweditor/plugins/text/TextPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/floweditor/plugins/typography/TypographyButton.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/floweditor/plugins/velcron/VelcronPlugin.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.css.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +0 -89
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentRenderer.d.ts +0 -80
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/ActionMenu.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/ActionMenu.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector copy.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector.css.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar copy.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/editorHooks/ContentEditorHooks.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/editorHooks/ContentEditorHooks.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/markdownplugins/section/SectionRenderer.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/markdownplugins/section/SectionRendererPlugin.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/models/EditorRenderingHooks.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/models/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +0 -249
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/FlowEditor.css.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/FlowEditorToolbar.css.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/FlowEditorToolbar.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/PluginRegistrationHandler.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/commands/helpers/Editorhelper.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor/plugins/registrations → flow/editor/plugins}/PluginRegistrations.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor/plugins/sourceeditor/SourceEditorButton.d.ts → flow/editor/plugins/colorstyle/ColorButton.d.ts} +0 -0
@@ -8,6 +8,6 @@ export declare function registerApi<T>(targetApi: ((extend: IExtend) => Promise<
|
|
8
8
|
export declare namespace InternalExtend {
|
9
9
|
function getApiPathString(exp: (extend: IExtend | IExtendApiManifest) => ApiPath | IExtendApiManifestWithConfiguration<any>): string;
|
10
10
|
function getExtendApiConfiguration<T>(targetApi: (extend: IExtendApiManifest) => IExtendApiManifestWithConfiguration<T>): Promise<ExtendApiConfigurationManifest<T>[]>;
|
11
|
-
function extendApi<T>(targetApi: ((extend: IExtend) => Promise<T>) | string, omniaServiceId: guid, omniaManifestId: guid, callback?: (api: T) => void | Promise<void>): void;
|
11
|
+
function extendApi<T, TConfiguration>(targetApi: ((extend: IExtend) => Promise<T>) | string, omniaServiceId: guid, omniaManifestId: guid, callback?: (api: T, configuration: TConfiguration) => void | Promise<void>): void;
|
12
12
|
function initApiHub(): Future<void>;
|
13
13
|
}
|
@@ -17,5 +17,5 @@ type PropStartPathCheckTargetType<T, Path extends string, StartPath extends stri
|
|
17
17
|
* @param name
|
18
18
|
* @returns {string} 'PropertyName1.SomeSubProperty.SomeSubSubProperty' as string
|
19
19
|
*/
|
20
|
-
export declare
|
20
|
+
export declare function propertyPath<StartType, TargetType = any>(): <Path extends string>(propertyPathToCheck: PropPathCheckTargetType<StartType, Path, TargetType>) => string;
|
21
21
|
export {};
|
@@ -30,7 +30,7 @@ export declare class WebComponentBootstrapper {
|
|
30
30
|
static registerElement: (registrationHandler: IWebComponentRegistrationHandler) => void;
|
31
31
|
static registerElementInstance(instanceHandler: IWebComponentInstance, htmlElement: HTMLElement | Element): IWebComponentInstanceContext;
|
32
32
|
}
|
33
|
-
export declare function extendApi<T>(targetApi: (extend: IExtend) => Promise<T>, callback?: (api: T) => void | Promise<void>): void;
|
33
|
+
export declare function extendApi<T, TConfiguration>(targetApi: (extend: IExtend) => Promise<T>, callback?: (api: T, configuration: TConfiguration) => void | Promise<void>): void;
|
34
34
|
export declare function setCurrentManifest(omniaServiceId: any, resourceId: any): {
|
35
35
|
extendApi: (api: any, callback: any) => void;
|
36
36
|
WebComponentBootstrapper: {
|
@@ -64,7 +64,7 @@ export declare function setCurrentManifest(omniaServiceId: any, resourceId: any)
|
|
64
64
|
LocalStorage: typeof Exposes.LocalStorage;
|
65
65
|
Encoder: typeof Exposes.Encoder;
|
66
66
|
Require: typeof Exposes.Require;
|
67
|
-
propertyPath
|
67
|
+
propertyPath<StartType, TargetType = any>(): <Path extends string>(propertyPathToCheck: Exposes.PropPathCheckTargetType<StartType, Path, TargetType>) => string;
|
68
68
|
propertyPathValue: <T, P extends string>(obj: T, path: Exposes.PropPathCheckTargetType<T, P, Exposes.PropPathType<T, P>>) => Exposes.PropPathType<T, P>;
|
69
69
|
MessageBusTopicMediator: typeof Exposes.MessageBusTopicMediator;
|
70
70
|
MessageBus: typeof Exposes.MessageBus;
|
@@ -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","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
|
+
{"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","useFlowRendererPluginStore","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"]}}}
|
@@ -0,0 +1,43 @@
|
|
1
|
+
import { FlowRendererPluginRegistration, guid } from "@omnia/fx-models";
|
2
|
+
export declare const useFlowRendererPluginStore: () => {
|
3
|
+
state: {
|
4
|
+
plugins: FlowRendererPluginRegistration[];
|
5
|
+
};
|
6
|
+
get: {
|
7
|
+
byId(id: guid): FlowRendererPluginRegistration;
|
8
|
+
};
|
9
|
+
actions: {
|
10
|
+
onDispatching: {
|
11
|
+
addPlugin: {
|
12
|
+
subscribe(fn: (plugin: FlowRendererPluginRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
13
|
+
};
|
14
|
+
load: {
|
15
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
16
|
+
};
|
17
|
+
};
|
18
|
+
onDispatched: {
|
19
|
+
addPlugin: {
|
20
|
+
subscribe(fn: (result: void, plugin: FlowRendererPluginRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
21
|
+
};
|
22
|
+
load: {
|
23
|
+
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
24
|
+
};
|
25
|
+
};
|
26
|
+
onFailure: {
|
27
|
+
addPlugin: {
|
28
|
+
subscribe(fn: (failureReason: any, plugin: FlowRendererPluginRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
29
|
+
};
|
30
|
+
load: {
|
31
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
32
|
+
};
|
33
|
+
};
|
34
|
+
} & {
|
35
|
+
addPlugin(plugin: FlowRendererPluginRegistration): void;
|
36
|
+
load(): Promise<void>;
|
37
|
+
};
|
38
|
+
events: {
|
39
|
+
onMutatedPlugins: import("internal/fx/core").MessageBusExposeOnlySubscription<FlowRendererPluginRegistration[]>;
|
40
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
41
|
+
} & {
|
42
|
+
dispose?: () => void;
|
43
|
+
};
|
@@ -21,7 +21,7 @@ export declare const useCompontentHostStore: () => {
|
|
21
21
|
};
|
22
22
|
events: {
|
23
23
|
onMutatedHost: import("internal/fx/core").MessageBusExposeOnlySubscription<"admin" | "editor" | "docs">;
|
24
|
-
onMutatedComponentHost: import("internal/fx/core").MessageBusExposeOnlySubscription<"toolbar" | "tab" | "menu" | "dialog" | "table" | "chip" | "app" | "tab-vertical" | "
|
24
|
+
onMutatedComponentHost: import("internal/fx/core").MessageBusExposeOnlySubscription<"toolbar" | "tab" | "menu" | "dialog" | "table" | "chip" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx">;
|
25
25
|
onMutatedComponentVariant: import("internal/fx/core").MessageBusExposeOnlySubscription<"toolbar" | "navigation" | "default" | "section" | "content" | "footer" | "header" | "options" | "settings" | "info-section">;
|
26
26
|
onMutatedAppliedComponents: import("internal/fx/core").MessageBusExposeOnlySubscription<string[]>;
|
27
27
|
onMutatedForce: import("internal/fx/core").MessageBusExposeOnlySubscription<boolean>;
|
@@ -35,7 +35,7 @@ export declare const useCompontentHostStore: () => {
|
|
35
35
|
subscribe(fn: (type: "admin" | "editor" | "docs") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
36
36
|
};
|
37
37
|
setComponentHost: {
|
38
|
-
subscribe(fn: (type: "toolbar" | "tab" | "menu" | "dialog" | "table" | "chip" | "app" | "tab-vertical" | "
|
38
|
+
subscribe(fn: (type: "toolbar" | "tab" | "menu" | "dialog" | "table" | "chip" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
39
39
|
};
|
40
40
|
setComponentVariant: {
|
41
41
|
subscribe(fn: (variant: "toolbar" | "navigation" | "default" | "section" | "content" | "footer" | "header" | "options" | "settings" | "info-section") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -55,7 +55,7 @@ export declare const useCompontentHostStore: () => {
|
|
55
55
|
subscribe(fn: (result: void, type: "admin" | "editor" | "docs") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
56
56
|
};
|
57
57
|
setComponentHost: {
|
58
|
-
subscribe(fn: (result: void, type: "toolbar" | "tab" | "menu" | "dialog" | "table" | "chip" | "app" | "tab-vertical" | "
|
58
|
+
subscribe(fn: (result: void, type: "toolbar" | "tab" | "menu" | "dialog" | "table" | "chip" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
59
59
|
};
|
60
60
|
setComponentVariant: {
|
61
61
|
subscribe(fn: (result: void, variant: "toolbar" | "navigation" | "default" | "section" | "content" | "footer" | "header" | "options" | "settings" | "info-section") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -75,7 +75,7 @@ export declare const useCompontentHostStore: () => {
|
|
75
75
|
subscribe(fn: (failureReason: any, type: "admin" | "editor" | "docs") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
76
76
|
};
|
77
77
|
setComponentHost: {
|
78
|
-
subscribe(fn: (failureReason: any, type: "toolbar" | "tab" | "menu" | "dialog" | "table" | "chip" | "app" | "tab-vertical" | "
|
78
|
+
subscribe(fn: (failureReason: any, type: "toolbar" | "tab" | "menu" | "dialog" | "table" | "chip" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
79
79
|
};
|
80
80
|
setComponentVariant: {
|
81
81
|
subscribe(fn: (failureReason: any, variant: "toolbar" | "navigation" | "default" | "section" | "content" | "footer" | "header" | "options" | "settings" | "info-section") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -98,7 +98,7 @@ export declare const useCompontentHostStore: () => {
|
|
98
98
|
get: {
|
99
99
|
canApplyOn: (hostType: ComponentHostTypes | HostTypes, variant?: any) => boolean;
|
100
100
|
readonly host: "admin" | "editor" | "docs";
|
101
|
-
readonly componentHost: "toolbar" | "tab" | "menu" | "dialog" | "table" | "chip" | "app" | "tab-vertical" | "
|
101
|
+
readonly componentHost: "toolbar" | "tab" | "menu" | "dialog" | "table" | "chip" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx";
|
102
102
|
readonly componentVariant: "toolbar" | "navigation" | "default" | "section" | "content" | "footer" | "header" | "options" | "settings" | "info-section";
|
103
103
|
readonly force: boolean;
|
104
104
|
appliedComponents(host: string): boolean;
|
@@ -45,6 +45,7 @@ export declare class AppManagementInstanceApi implements IAppManagementInstanceA
|
|
45
45
|
archive: import("@omnia/fx-models").FontAwesomeIcon;
|
46
46
|
award: import("@omnia/fx-models").FontAwesomeIcon;
|
47
47
|
back: import("@omnia/fx-models").FontAwesomeIcon;
|
48
|
+
brush: import("@omnia/fx-models").FontAwesomeIcon;
|
48
49
|
blueprint: import("@omnia/fx-models").FontAwesomeIcon;
|
49
50
|
background: import("@omnia/fx-models").FontAwesomeIcon;
|
50
51
|
businessProfile: import("@omnia/fx-models").FontAwesomeIcon;
|
@@ -1,18 +1,18 @@
|
|
1
|
-
import {
|
1
|
+
import { VelcronRendererResolverReference, guid } from "@omnia/fx-models";
|
2
2
|
import { DefineEmit } from "@omnia/fx/ux";
|
3
3
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
4
|
-
"emit:update:modelValue": (value:
|
4
|
+
"emit:update:modelValue": (value: VelcronRendererResolverReference) => void;
|
5
5
|
} & {
|
6
|
-
"v-model"?:
|
6
|
+
"v-model"?: VelcronRendererResolverReference;
|
7
7
|
} & {
|
8
|
-
"onUpdate:modelValue"?: (value:
|
8
|
+
"onUpdate:modelValue"?: (value: VelcronRendererResolverReference) => void;
|
9
9
|
} & {
|
10
|
-
modelValue?:
|
10
|
+
modelValue?: VelcronRendererResolverReference;
|
11
11
|
} & {
|
12
12
|
label?: string;
|
13
13
|
} & {
|
14
14
|
categoryFilters?: guid[];
|
15
15
|
} & {
|
16
16
|
renderTypeFilters?: guid[];
|
17
|
-
} & DefineEmit<"update:modelValue", (renderer:
|
17
|
+
} & DefineEmit<"update:modelValue", (renderer: VelcronRendererResolverReference) => void>>) => any;
|
18
18
|
export default _default;
|
@@ -1192,7 +1192,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1192
1192
|
};
|
1193
1193
|
viewTemplate?: {
|
1194
1194
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1195
|
-
|
1195
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
1196
1196
|
version: string;
|
1197
1197
|
state?: import("@omnia/fx-models").DynamicState;
|
1198
1198
|
};
|
@@ -1341,7 +1341,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1341
1341
|
};
|
1342
1342
|
viewTemplate?: {
|
1343
1343
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1344
|
-
|
1344
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
1345
1345
|
version: string;
|
1346
1346
|
state?: import("@omnia/fx-models").DynamicState;
|
1347
1347
|
};
|
@@ -1490,7 +1490,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1490
1490
|
};
|
1491
1491
|
viewTemplate?: {
|
1492
1492
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1493
|
-
|
1493
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
1494
1494
|
version: string;
|
1495
1495
|
state?: import("@omnia/fx-models").DynamicState;
|
1496
1496
|
};
|
@@ -1639,7 +1639,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1639
1639
|
};
|
1640
1640
|
viewTemplate?: {
|
1641
1641
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1642
|
-
|
1642
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
1643
1643
|
version: string;
|
1644
1644
|
state?: import("@omnia/fx-models").DynamicState;
|
1645
1645
|
};
|
@@ -1788,7 +1788,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1788
1788
|
};
|
1789
1789
|
viewTemplate?: {
|
1790
1790
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1791
|
-
|
1791
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
1792
1792
|
version: string;
|
1793
1793
|
state?: import("@omnia/fx-models").DynamicState;
|
1794
1794
|
};
|
@@ -1937,7 +1937,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1937
1937
|
};
|
1938
1938
|
viewTemplate?: {
|
1939
1939
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1940
|
-
|
1940
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
1941
1941
|
version: string;
|
1942
1942
|
state?: import("@omnia/fx-models").DynamicState;
|
1943
1943
|
};
|
@@ -2086,7 +2086,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2086
2086
|
};
|
2087
2087
|
viewTemplate?: {
|
2088
2088
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2089
|
-
|
2089
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2090
2090
|
version: string;
|
2091
2091
|
state?: import("@omnia/fx-models").DynamicState;
|
2092
2092
|
};
|
@@ -2235,7 +2235,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2235
2235
|
};
|
2236
2236
|
viewTemplate?: {
|
2237
2237
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2238
|
-
|
2238
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2239
2239
|
version: string;
|
2240
2240
|
state?: import("@omnia/fx-models").DynamicState;
|
2241
2241
|
};
|
@@ -2384,7 +2384,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2384
2384
|
};
|
2385
2385
|
viewTemplate?: {
|
2386
2386
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2387
|
-
|
2387
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2388
2388
|
version: string;
|
2389
2389
|
state?: import("@omnia/fx-models").DynamicState;
|
2390
2390
|
};
|
@@ -2535,7 +2535,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2535
2535
|
};
|
2536
2536
|
viewTemplate?: {
|
2537
2537
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2538
|
-
|
2538
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2539
2539
|
version: string;
|
2540
2540
|
state?: import("@omnia/fx-models").DynamicState;
|
2541
2541
|
};
|
@@ -2684,7 +2684,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2684
2684
|
};
|
2685
2685
|
viewTemplate?: {
|
2686
2686
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2687
|
-
|
2687
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2688
2688
|
version: string;
|
2689
2689
|
state?: import("@omnia/fx-models").DynamicState;
|
2690
2690
|
};
|
@@ -2833,7 +2833,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2833
2833
|
};
|
2834
2834
|
viewTemplate?: {
|
2835
2835
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2836
|
-
|
2836
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2837
2837
|
version: string;
|
2838
2838
|
state?: import("@omnia/fx-models").DynamicState;
|
2839
2839
|
};
|
@@ -2982,7 +2982,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2982
2982
|
};
|
2983
2983
|
viewTemplate?: {
|
2984
2984
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2985
|
-
|
2985
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2986
2986
|
version: string;
|
2987
2987
|
state?: import("@omnia/fx-models").DynamicState;
|
2988
2988
|
};
|
@@ -3131,7 +3131,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3131
3131
|
};
|
3132
3132
|
viewTemplate?: {
|
3133
3133
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3134
|
-
|
3134
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
3135
3135
|
version: string;
|
3136
3136
|
state?: import("@omnia/fx-models").DynamicState;
|
3137
3137
|
};
|
@@ -3280,7 +3280,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3280
3280
|
};
|
3281
3281
|
viewTemplate?: {
|
3282
3282
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3283
|
-
|
3283
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
3284
3284
|
version: string;
|
3285
3285
|
state?: import("@omnia/fx-models").DynamicState;
|
3286
3286
|
};
|
@@ -3429,7 +3429,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3429
3429
|
};
|
3430
3430
|
viewTemplate?: {
|
3431
3431
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3432
|
-
|
3432
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
3433
3433
|
version: string;
|
3434
3434
|
state?: import("@omnia/fx-models").DynamicState;
|
3435
3435
|
};
|
@@ -3578,7 +3578,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3578
3578
|
};
|
3579
3579
|
viewTemplate?: {
|
3580
3580
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3581
|
-
|
3581
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
3582
3582
|
version: string;
|
3583
3583
|
state?: import("@omnia/fx-models").DynamicState;
|
3584
3584
|
};
|
@@ -3727,7 +3727,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3727
3727
|
};
|
3728
3728
|
viewTemplate?: {
|
3729
3729
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3730
|
-
|
3730
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
3731
3731
|
version: string;
|
3732
3732
|
state?: import("@omnia/fx-models").DynamicState;
|
3733
3733
|
};
|
@@ -1194,7 +1194,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
1194
1194
|
};
|
1195
1195
|
viewTemplate?: {
|
1196
1196
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1197
|
-
|
1197
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
1198
1198
|
version: string;
|
1199
1199
|
state?: import("@omnia/fx-models").DynamicState;
|
1200
1200
|
};
|
@@ -1343,7 +1343,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
1343
1343
|
};
|
1344
1344
|
viewTemplate?: {
|
1345
1345
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1346
|
-
|
1346
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
1347
1347
|
version: string;
|
1348
1348
|
state?: import("@omnia/fx-models").DynamicState;
|
1349
1349
|
};
|
@@ -1492,7 +1492,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
1492
1492
|
};
|
1493
1493
|
viewTemplate?: {
|
1494
1494
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1495
|
-
|
1495
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
1496
1496
|
version: string;
|
1497
1497
|
state?: import("@omnia/fx-models").DynamicState;
|
1498
1498
|
};
|
@@ -1641,7 +1641,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
1641
1641
|
};
|
1642
1642
|
viewTemplate?: {
|
1643
1643
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1644
|
-
|
1644
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
1645
1645
|
version: string;
|
1646
1646
|
state?: import("@omnia/fx-models").DynamicState;
|
1647
1647
|
};
|
@@ -1790,7 +1790,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
1790
1790
|
};
|
1791
1791
|
viewTemplate?: {
|
1792
1792
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1793
|
-
|
1793
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
1794
1794
|
version: string;
|
1795
1795
|
state?: import("@omnia/fx-models").DynamicState;
|
1796
1796
|
};
|
@@ -1939,7 +1939,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
1939
1939
|
};
|
1940
1940
|
viewTemplate?: {
|
1941
1941
|
id: import("@omnia/fx-models").VelcronRendererId;
|
1942
|
-
|
1942
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
1943
1943
|
version: string;
|
1944
1944
|
state?: import("@omnia/fx-models").DynamicState;
|
1945
1945
|
};
|
@@ -2088,7 +2088,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2088
2088
|
};
|
2089
2089
|
viewTemplate?: {
|
2090
2090
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2091
|
-
|
2091
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2092
2092
|
version: string;
|
2093
2093
|
state?: import("@omnia/fx-models").DynamicState;
|
2094
2094
|
};
|
@@ -2237,7 +2237,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2237
2237
|
};
|
2238
2238
|
viewTemplate?: {
|
2239
2239
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2240
|
-
|
2240
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2241
2241
|
version: string;
|
2242
2242
|
state?: import("@omnia/fx-models").DynamicState;
|
2243
2243
|
};
|
@@ -2386,7 +2386,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2386
2386
|
};
|
2387
2387
|
viewTemplate?: {
|
2388
2388
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2389
|
-
|
2389
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2390
2390
|
version: string;
|
2391
2391
|
state?: import("@omnia/fx-models").DynamicState;
|
2392
2392
|
};
|
@@ -2537,7 +2537,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2537
2537
|
};
|
2538
2538
|
viewTemplate?: {
|
2539
2539
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2540
|
-
|
2540
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2541
2541
|
version: string;
|
2542
2542
|
state?: import("@omnia/fx-models").DynamicState;
|
2543
2543
|
};
|
@@ -2686,7 +2686,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2686
2686
|
};
|
2687
2687
|
viewTemplate?: {
|
2688
2688
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2689
|
-
|
2689
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2690
2690
|
version: string;
|
2691
2691
|
state?: import("@omnia/fx-models").DynamicState;
|
2692
2692
|
};
|
@@ -2835,7 +2835,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2835
2835
|
};
|
2836
2836
|
viewTemplate?: {
|
2837
2837
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2838
|
-
|
2838
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2839
2839
|
version: string;
|
2840
2840
|
state?: import("@omnia/fx-models").DynamicState;
|
2841
2841
|
};
|
@@ -2984,7 +2984,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
2984
2984
|
};
|
2985
2985
|
viewTemplate?: {
|
2986
2986
|
id: import("@omnia/fx-models").VelcronRendererId;
|
2987
|
-
|
2987
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
2988
2988
|
version: string;
|
2989
2989
|
state?: import("@omnia/fx-models").DynamicState;
|
2990
2990
|
};
|
@@ -3133,7 +3133,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
3133
3133
|
};
|
3134
3134
|
viewTemplate?: {
|
3135
3135
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3136
|
-
|
3136
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
3137
3137
|
version: string;
|
3138
3138
|
state?: import("@omnia/fx-models").DynamicState;
|
3139
3139
|
};
|
@@ -3282,7 +3282,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
3282
3282
|
};
|
3283
3283
|
viewTemplate?: {
|
3284
3284
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3285
|
-
|
3285
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
3286
3286
|
version: string;
|
3287
3287
|
state?: import("@omnia/fx-models").DynamicState;
|
3288
3288
|
};
|
@@ -3431,7 +3431,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
3431
3431
|
};
|
3432
3432
|
viewTemplate?: {
|
3433
3433
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3434
|
-
|
3434
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
3435
3435
|
version: string;
|
3436
3436
|
state?: import("@omnia/fx-models").DynamicState;
|
3437
3437
|
};
|
@@ -3580,7 +3580,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
3580
3580
|
};
|
3581
3581
|
viewTemplate?: {
|
3582
3582
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3583
|
-
|
3583
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
3584
3584
|
version: string;
|
3585
3585
|
state?: import("@omnia/fx-models").DynamicState;
|
3586
3586
|
};
|
@@ -3729,7 +3729,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
3729
3729
|
};
|
3730
3730
|
viewTemplate?: {
|
3731
3731
|
id: import("@omnia/fx-models").VelcronRendererId;
|
3732
|
-
|
3732
|
+
resolverId: import("@omnia/fx-models").VelcronResolverId;
|
3733
3733
|
version: string;
|
3734
3734
|
state?: import("@omnia/fx-models").DynamicState;
|
3735
3735
|
};
|
@@ -151,7 +151,7 @@ export declare const useFeatureJourneyStore: () => {
|
|
151
151
|
searchFeatures: (searchText: string) => void;
|
152
152
|
handleFeatureStatus: (featureInstance: FeatureInstance) => void;
|
153
153
|
populateAzureAdPermissionsInfo: (featureInstance: FeatureInstance) => Promise<void>;
|
154
|
-
checkRequestedPermissionsSynced: (permissionIds: Array<string>) => void
|
154
|
+
checkRequestedPermissionsSynced: (permissionIds: Array<string>) => Promise<void>;
|
155
155
|
isLastRequiredPermissionFeature: (featureDeactivated: VDataGridItemScopedSlot<FeatureInstance>) => void;
|
156
156
|
};
|
157
157
|
get: {
|
@@ -1,14 +1,15 @@
|
|
1
1
|
import { DefineEmit } from "@omnia/fx/ux";
|
2
2
|
import { FlowEditorPluginSettings } from "@omnia/fx-models";
|
3
|
-
import { useFlowEditorStore } from "./stores
|
3
|
+
import { useFlowEditorStore } from "./stores";
|
4
|
+
import { FlowContent } from "../models";
|
4
5
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
5
|
-
"emit:update:modelValue": (value:
|
6
|
+
"emit:update:modelValue": (value: FlowContent) => void;
|
6
7
|
} & {
|
7
|
-
"v-model"?:
|
8
|
+
"v-model"?: FlowContent;
|
8
9
|
} & {
|
9
|
-
"onUpdate:modelValue"?: (value:
|
10
|
+
"onUpdate:modelValue"?: (value: FlowContent) => void;
|
10
11
|
} & {
|
11
|
-
modelValue?:
|
12
|
+
modelValue?: FlowContent;
|
12
13
|
} & {
|
13
14
|
placeholder?: string;
|
14
15
|
} & {
|
@@ -19,5 +20,5 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
19
20
|
getApi?: (store: ReturnType<typeof useFlowEditorStore>) => void;
|
20
21
|
} & {
|
21
22
|
plugins?: FlowEditorPluginSettings[];
|
22
|
-
} & DefineEmit<"update:modelValue", (value:
|
23
|
+
} & DefineEmit<"update:modelValue", (value: FlowContent) => true>>) => any;
|
23
24
|
export default _default;
|