@omnia/fx 8.0.263-dev → 8.0.265-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} +11 -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/aurora/admin/blades/blueprints/typography/components/FontPicker.css.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/typography/components/FontPicker.d.ts +12 -8
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/typography/components/FontRegistration.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/typography/store/TypographyEditorStore.d.ts +41 -16
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/fontsmanager/FontManager.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/fontsmanager/blade/FontDefinitionBlade.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/fontsmanager/store/FontManagerStore.d.ts +75 -0
- package/internal-do-not-import-from-here/ux/aurora/store/FontStore.d.ts +77 -0
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +114 -10
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +117 -11
- package/internal-do-not-import-from-here/ux/aurora/store/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +2 -13
- 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/{markdown2/MarkdownEditorFuture.d.ts → floweditor/FlowEditor.d.ts} +4 -4
- package/internal-do-not-import-from-here/ux/floweditor/FlowEditorToolbar.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/floweditor/commands/EditorCommands.d.ts +53 -0
- package/internal-do-not-import-from-here/ux/floweditor/commands/helpers/EditorNodeHelper.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/floweditor/commands/helpers/HtmlNodehelper.d.ts +9 -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 +30 -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/{markdown2 → floweditor}/plugins/italic/ItalicPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/sourceeditor/SourceEditorPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/testdata/TestDataPlugin.d.ts +1 -1
- 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/{markdown2/stores/MarkdownStore.d.ts → floweditor/stores/FlowEditorStore.d.ts} +41 -32
- package/internal-do-not-import-from-here/ux/{markdown2/stores/MarkdownToolbarStore.d.ts → floweditor/stores/FlowEditorToolbarStore.d.ts} +214 -147
- package/internal-do-not-import-from-here/ux/markdown/stores/MarkdownEditorStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.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/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +10 -1
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/VelcronEditorBuilder.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronEditorDescriptors.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/templates/EditorTemplates.d.ts +1 -0
- 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/PropertyResolverEditor.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/blade/VersionedLayoutBladeBuilder.d.ts +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +30 -16
- 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/MarkdownToolbar.css.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/markdown2/commands/EditorCommands.d.ts +0 -60
- package/internal-do-not-import-from-here/ux/markdown2/commands/helpers/EditorNodeHelper.d.ts +0 -12
- 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 -17
- package/internal-do-not-import-from-here/ux/markdown2/models/EditorPlugin.d.ts +0 -16
- 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.d.ts +0 -0
- 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/text/TextPlugin.d.ts +0 -7
- /package/internal-do-not-import-from-here/ux/{markdown2/MarkdownEditorFuture.css.d.ts → floweditor/FlowEditor.css.d.ts} +0 -0
- /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}/commands/ClipboardCommands.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/commands/helpers/Editorhelper.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
@@ -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,16 @@
|
|
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
|
-
byId(id: guid):
|
8
|
+
byId(id: guid): FlowEditorPluginRegistration;
|
9
9
|
};
|
10
10
|
actions: {
|
11
11
|
onDispatching: {
|
12
12
|
addPlugin: {
|
13
|
-
subscribe(fn: (plugin:
|
13
|
+
subscribe(fn: (plugin: FlowEditorPluginRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
14
14
|
};
|
15
15
|
load: {
|
16
16
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -18,7 +18,7 @@ export declare const useMarkdownPluginStore: () => {
|
|
18
18
|
};
|
19
19
|
onDispatched: {
|
20
20
|
addPlugin: {
|
21
|
-
subscribe(fn: (result: void, plugin:
|
21
|
+
subscribe(fn: (result: void, plugin: FlowEditorPluginRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
22
22
|
};
|
23
23
|
load: {
|
24
24
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -26,19 +26,19 @@ export declare const useMarkdownPluginStore: () => {
|
|
26
26
|
};
|
27
27
|
onFailure: {
|
28
28
|
addPlugin: {
|
29
|
-
subscribe(fn: (failureReason: any, plugin:
|
29
|
+
subscribe(fn: (failureReason: any, plugin: FlowEditorPluginRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
30
30
|
};
|
31
31
|
load: {
|
32
32
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
33
33
|
};
|
34
34
|
};
|
35
35
|
} & {
|
36
|
-
addPlugin(plugin:
|
36
|
+
addPlugin(plugin: FlowEditorPluginRegistration): void;
|
37
37
|
load(): Promise<void>;
|
38
38
|
};
|
39
39
|
events: {
|
40
|
-
onMutatedPlugins: import("internal/fx/core").MessageBusExposeOnlySubscription<
|
41
|
-
onMutatedHiddenPlugins: import("internal/fx/core").MessageBusExposeOnlySubscription<
|
40
|
+
onMutatedPlugins: import("internal/fx/core").MessageBusExposeOnlySubscription<FlowEditorPluginRegistration[]>;
|
41
|
+
onMutatedHiddenPlugins: import("internal/fx/core").MessageBusExposeOnlySubscription<FlowEditorPluginRegistration[]>;
|
42
42
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
43
43
|
} & {
|
44
44
|
dispose?: () => void;
|
@@ -1,8 +1,11 @@
|
|
1
|
+
import { guid, TypographyFontDefinition } from "@omnia/fx-models";
|
1
2
|
export interface FontRegistration {
|
2
3
|
name: string;
|
3
4
|
family: string;
|
4
5
|
cdn?: string;
|
6
|
+
isCustom?: boolean;
|
7
|
+
manifestId?: guid;
|
5
8
|
}
|
6
9
|
export declare const FontPickerStyles: {
|
7
|
-
fontWrapper: (font:
|
10
|
+
fontWrapper: (font: TypographyFontDefinition) => string;
|
8
11
|
};
|
@@ -1,5 +1,9 @@
|
|
1
|
+
import { TypographyFontDefinition } from "@omnia/fx-models";
|
1
2
|
import { VNodeChild } from "vue";
|
2
|
-
|
3
|
+
export declare enum FontAddition {
|
4
|
+
Available = 0,
|
5
|
+
CDN = 1
|
6
|
+
}
|
3
7
|
declare const _default: {
|
4
8
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
5
9
|
"v-slots": import("vue").Prop<{
|
@@ -74,9 +78,9 @@ declare const _default: {
|
|
74
78
|
}>;
|
75
79
|
};
|
76
80
|
}>> & {
|
77
|
-
"onFont:selected"?: (selectedFont:
|
81
|
+
"onFont:selected"?: (selectedFont: TypographyFontDefinition) => any;
|
78
82
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
79
|
-
"font:selected": (selectedFont:
|
83
|
+
"font:selected": (selectedFont: TypographyFontDefinition) => any;
|
80
84
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
81
85
|
"v-slots": import("vue").Prop<{
|
82
86
|
default?: import("../../../../../../DefineVueTypings").Slot;
|
@@ -150,7 +154,7 @@ declare const _default: {
|
|
150
154
|
}>;
|
151
155
|
};
|
152
156
|
}>> & {
|
153
|
-
"onFont:selected"?: (selectedFont:
|
157
|
+
"onFont:selected"?: (selectedFont: TypographyFontDefinition) => any;
|
154
158
|
}, {}, true, {}, {}, {
|
155
159
|
P: {};
|
156
160
|
B: {};
|
@@ -231,7 +235,7 @@ declare const _default: {
|
|
231
235
|
}>;
|
232
236
|
};
|
233
237
|
}>> & {
|
234
|
-
"onFont:selected"?: (selectedFont:
|
238
|
+
"onFont:selected"?: (selectedFont: TypographyFontDefinition) => any;
|
235
239
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
236
240
|
__isFragment?: never;
|
237
241
|
__isTeleport?: never;
|
@@ -309,9 +313,9 @@ declare const _default: {
|
|
309
313
|
}>;
|
310
314
|
};
|
311
315
|
}>> & {
|
312
|
-
"onFont:selected"?: (selectedFont:
|
316
|
+
"onFont:selected"?: (selectedFont: TypographyFontDefinition) => any;
|
313
317
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
314
|
-
"font:selected": (selectedFont:
|
318
|
+
"font:selected": (selectedFont: TypographyFontDefinition) => any;
|
315
319
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
316
320
|
propsDefinition: Omit<Readonly<{} & {
|
317
321
|
name?: {
|
@@ -384,7 +388,7 @@ declare const _default: {
|
|
384
388
|
activator?: () => VNodeChild;
|
385
389
|
};
|
386
390
|
}>, "onFont:selected"> & {
|
387
|
-
"onFont:selected"?: (selectedFont:
|
391
|
+
"onFont:selected"?: (selectedFont: TypographyFontDefinition) => any;
|
388
392
|
};
|
389
393
|
};
|
390
394
|
export default _default;
|
@@ -1,7 +1,8 @@
|
|
1
|
-
import { FillDefinition, FillVariant, guid, ITemplateRegistration, TypographyBlueprint, TypographyBlueprints, TypographyDefinition, TypographySizes, TypographyType } from "@omnia/fx-models";
|
1
|
+
import { FillDefinition, FillVariant, guid, ITemplateRegistration, TypographyBlueprint, TypographyBlueprints, TypographyDefinition, TypographySizes, TypographyType, TypographyFontDefinition, IFontBlueprints, TypographyFontRef } from "@omnia/fx-models";
|
2
2
|
export declare const useTypographyEditorStore: () => {
|
3
3
|
state: {
|
4
4
|
blueprints: ITemplateRegistration<TypographyBlueprints>;
|
5
|
+
availableFonts: ITemplateRegistration<IFontBlueprints>;
|
5
6
|
blueprint: TypographyBlueprint;
|
6
7
|
editMode: boolean;
|
7
8
|
selectedTypography: {
|
@@ -14,6 +15,7 @@ export declare const useTypographyEditorStore: () => {
|
|
14
15
|
};
|
15
16
|
events: {
|
16
17
|
onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<ITemplateRegistration<TypographyBlueprints, import("@omnia/fx-models").TemplateRegistrationType>>;
|
18
|
+
onMutatedAvailableFonts: import("@omnia/fx").MessageBusExposeOnlySubscription<ITemplateRegistration<IFontBlueprints, import("@omnia/fx-models").TemplateRegistrationType>>;
|
17
19
|
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<TypographyBlueprint>;
|
18
20
|
onMutatedEditMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
19
21
|
onMutatedSelectedTypography: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
@@ -51,8 +53,18 @@ export declare const useTypographyEditorStore: () => {
|
|
51
53
|
subscribe(fn: (font: {
|
52
54
|
family: string;
|
53
55
|
cdn?: string;
|
56
|
+
manifestId?: guid;
|
54
57
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
55
58
|
};
|
59
|
+
setFontForTypoType: {
|
60
|
+
subscribe(fn: (font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
61
|
+
};
|
62
|
+
setFontForTypoTypeSize: {
|
63
|
+
subscribe(fn: (font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
64
|
+
};
|
65
|
+
saveTenantAvailableFont: {
|
66
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
67
|
+
};
|
56
68
|
save: {
|
57
69
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
58
70
|
};
|
@@ -86,8 +98,18 @@ export declare const useTypographyEditorStore: () => {
|
|
86
98
|
subscribe(fn: (result: void, font: {
|
87
99
|
family: string;
|
88
100
|
cdn?: string;
|
101
|
+
manifestId?: guid;
|
89
102
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
90
103
|
};
|
104
|
+
setFontForTypoType: {
|
105
|
+
subscribe(fn: (result: void, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
106
|
+
};
|
107
|
+
setFontForTypoTypeSize: {
|
108
|
+
subscribe(fn: (result: void, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
109
|
+
};
|
110
|
+
saveTenantAvailableFont: {
|
111
|
+
subscribe(fn: (result: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
112
|
+
};
|
91
113
|
save: {
|
92
114
|
subscribe(fn: (result: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
93
115
|
};
|
@@ -121,8 +143,18 @@ export declare const useTypographyEditorStore: () => {
|
|
121
143
|
subscribe(fn: (failureReason: any, font: {
|
122
144
|
family: string;
|
123
145
|
cdn?: string;
|
146
|
+
manifestId?: guid;
|
124
147
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
125
148
|
};
|
149
|
+
setFontForTypoType: {
|
150
|
+
subscribe(fn: (failureReason: any, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
151
|
+
};
|
152
|
+
setFontForTypoTypeSize: {
|
153
|
+
subscribe(fn: (failureReason: any, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
154
|
+
};
|
155
|
+
saveTenantAvailableFont: {
|
156
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
157
|
+
};
|
126
158
|
save: {
|
127
159
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
128
160
|
};
|
@@ -141,7 +173,11 @@ export declare const useTypographyEditorStore: () => {
|
|
141
173
|
setFont(font: {
|
142
174
|
family: string;
|
143
175
|
cdn?: string;
|
176
|
+
manifestId?: guid;
|
144
177
|
}): void;
|
178
|
+
setFontForTypoType(font: TypographyFontDefinition): void;
|
179
|
+
setFontForTypoTypeSize(font: TypographyFontDefinition): void;
|
180
|
+
saveTenantAvailableFont(): Promise<boolean>;
|
145
181
|
save(): Promise<boolean>;
|
146
182
|
delete(): Promise<boolean>;
|
147
183
|
};
|
@@ -152,30 +188,19 @@ export declare const useTypographyEditorStore: () => {
|
|
152
188
|
m: TypographyDefinition;
|
153
189
|
s: TypographyDefinition;
|
154
190
|
xs: TypographyDefinition;
|
155
|
-
font?:
|
156
|
-
id: guid;
|
157
|
-
family: string;
|
158
|
-
cdn?: string;
|
159
|
-
};
|
191
|
+
font?: TypographyFontRef;
|
160
192
|
} | {
|
161
193
|
l: TypographyDefinition;
|
162
194
|
m: TypographyDefinition;
|
163
195
|
s: TypographyDefinition;
|
164
196
|
xs: TypographyDefinition;
|
165
|
-
font?:
|
166
|
-
id: guid;
|
167
|
-
family: string;
|
168
|
-
cdn?: string;
|
169
|
-
};
|
197
|
+
font?: TypographyFontRef;
|
170
198
|
} | {
|
171
199
|
l: TypographyDefinition;
|
172
200
|
m: TypographyDefinition;
|
173
|
-
font?:
|
174
|
-
id: guid;
|
175
|
-
family: string;
|
176
|
-
cdn?: string;
|
177
|
-
};
|
201
|
+
font?: TypographyFontRef;
|
178
202
|
};
|
203
|
+
selectedTypoSizeFont: () => string;
|
179
204
|
};
|
180
205
|
bladeId: {
|
181
206
|
startBlade: guid;
|
@@ -0,0 +1,75 @@
|
|
1
|
+
import { guid, TypographyFontDefinition } from "@omnia/fx-models";
|
2
|
+
export declare const useFontManagerStore: () => {
|
3
|
+
get: {
|
4
|
+
readonly editFont: TypographyFontDefinition;
|
5
|
+
};
|
6
|
+
state: {
|
7
|
+
editFont: TypographyFontDefinition;
|
8
|
+
editMode: boolean;
|
9
|
+
};
|
10
|
+
bladeId: {
|
11
|
+
allFontsBlade: guid;
|
12
|
+
editFontBlade: guid;
|
13
|
+
};
|
14
|
+
actions: {
|
15
|
+
onDispatching: {
|
16
|
+
editFont: {
|
17
|
+
subscribe(fn: (font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
18
|
+
};
|
19
|
+
selectApiHubFont: {
|
20
|
+
subscribe(fn: (font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
21
|
+
};
|
22
|
+
addFontMode: {
|
23
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
24
|
+
};
|
25
|
+
deleteFont: {
|
26
|
+
subscribe(fn: (font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
27
|
+
};
|
28
|
+
saveFont: {
|
29
|
+
subscribe(fn: (font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
30
|
+
};
|
31
|
+
};
|
32
|
+
onDispatched: {
|
33
|
+
editFont: {
|
34
|
+
subscribe(fn: (result: void, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
35
|
+
};
|
36
|
+
selectApiHubFont: {
|
37
|
+
subscribe(fn: (result: void, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
38
|
+
};
|
39
|
+
addFontMode: {
|
40
|
+
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
41
|
+
};
|
42
|
+
deleteFont: {
|
43
|
+
subscribe(fn: (result: void, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
44
|
+
};
|
45
|
+
saveFont: {
|
46
|
+
subscribe(fn: (result: void, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
47
|
+
};
|
48
|
+
};
|
49
|
+
onFailure: {
|
50
|
+
editFont: {
|
51
|
+
subscribe(fn: (failureReason: any, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
52
|
+
};
|
53
|
+
selectApiHubFont: {
|
54
|
+
subscribe(fn: (failureReason: any, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
55
|
+
};
|
56
|
+
addFontMode: {
|
57
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
58
|
+
};
|
59
|
+
deleteFont: {
|
60
|
+
subscribe(fn: (failureReason: any, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
61
|
+
};
|
62
|
+
saveFont: {
|
63
|
+
subscribe(fn: (failureReason: any, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
64
|
+
};
|
65
|
+
};
|
66
|
+
} & {
|
67
|
+
editFont(font: TypographyFontDefinition): void;
|
68
|
+
selectApiHubFont(font: TypographyFontDefinition): void;
|
69
|
+
addFontMode(): void;
|
70
|
+
deleteFont(font: TypographyFontDefinition): Promise<void>;
|
71
|
+
saveFont(font: TypographyFontDefinition): Promise<void>;
|
72
|
+
};
|
73
|
+
} & {
|
74
|
+
dispose?: () => void;
|
75
|
+
};
|
@@ -0,0 +1,77 @@
|
|
1
|
+
import { TypographyFontDefinition } from "@omnia/fx-models";
|
2
|
+
export declare const useFontStore: () => {
|
3
|
+
actions: {
|
4
|
+
onDispatching: {
|
5
|
+
addFont: {
|
6
|
+
subscribe(fn: (font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
7
|
+
};
|
8
|
+
editFont: {
|
9
|
+
subscribe(fn: (font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
10
|
+
};
|
11
|
+
onFinishLoad: {
|
12
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
13
|
+
};
|
14
|
+
saveFont: {
|
15
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
16
|
+
};
|
17
|
+
delete: {
|
18
|
+
subscribe(fn: (font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
19
|
+
};
|
20
|
+
};
|
21
|
+
onDispatched: {
|
22
|
+
addFont: {
|
23
|
+
subscribe(fn: (result: void, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
24
|
+
};
|
25
|
+
editFont: {
|
26
|
+
subscribe(fn: (result: void, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
27
|
+
};
|
28
|
+
onFinishLoad: {
|
29
|
+
subscribe(fn: (result: unknown) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
30
|
+
};
|
31
|
+
saveFont: {
|
32
|
+
subscribe(fn: (result: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
33
|
+
};
|
34
|
+
delete: {
|
35
|
+
subscribe(fn: (result: void, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
36
|
+
};
|
37
|
+
};
|
38
|
+
onFailure: {
|
39
|
+
addFont: {
|
40
|
+
subscribe(fn: (failureReason: any, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
41
|
+
};
|
42
|
+
editFont: {
|
43
|
+
subscribe(fn: (failureReason: any, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
44
|
+
};
|
45
|
+
onFinishLoad: {
|
46
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
47
|
+
};
|
48
|
+
saveFont: {
|
49
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
50
|
+
};
|
51
|
+
delete: {
|
52
|
+
subscribe(fn: (failureReason: any, font: TypographyFontDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
53
|
+
};
|
54
|
+
};
|
55
|
+
} & {
|
56
|
+
addFont(font: TypographyFontDefinition): void;
|
57
|
+
editFont(font: TypographyFontDefinition): void;
|
58
|
+
onFinishLoad(): Promise<unknown>;
|
59
|
+
saveFont(): Promise<boolean>;
|
60
|
+
delete(font: TypographyFontDefinition): Promise<void>;
|
61
|
+
};
|
62
|
+
get: {
|
63
|
+
readonly availableFonts: TypographyFontDefinition[] | ({
|
64
|
+
name: string;
|
65
|
+
family: string;
|
66
|
+
cdn?: undefined;
|
67
|
+
} | {
|
68
|
+
name: string;
|
69
|
+
family: string;
|
70
|
+
cdn: string;
|
71
|
+
})[];
|
72
|
+
findFont(family: string): TypographyFontDefinition;
|
73
|
+
readonly finishLoad: boolean;
|
74
|
+
};
|
75
|
+
} & {
|
76
|
+
dispose?: () => void;
|
77
|
+
};
|