@omnia/fx 8.0.268-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/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/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/{floweditor → flow/editor}/FlowEditor.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/commands/EditorCommands.d.ts +5 -5
- 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/EditorModels.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/models/EditorPlugin.d.ts +4 -5
- 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/{floweditor → flow/editor}/plugins/colorstyle/ColorConverter.d.ts +1 -1
- 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/{floweditor → flow/editor}/plugins/elements/ElementConverter.d.ts +2 -2
- 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/{floweditor → flow/editor}/plugins/eventhandlers/handlers/BackspaceHandler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/eventhandlers/handlers/ClipboardHandler.d.ts +2 -2
- 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/{floweditor → flow/editor}/plugins/text/TextConverter.d.ts +1 -1
- 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/{floweditor → flow/editor}/plugins/velcron/VelcronPlugin.d.ts +2 -6
- 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 +24 -25
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/stores/FlowEditorToolbarStore.d.ts +125 -125
- 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/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 +1 -0
- 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 +1 -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 +9 -9
- 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/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/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 → flow/editor}/models/Constants.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
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/eventhandlers/converters/WordConverter.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/rules/EditorRules.d.ts +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
import { guid, IIcon, VelcronState } from "@omnia/fx-models";
|
1
|
+
import { guid, IIcon, VelcronRendererResolverReference, VelcronState } from "@omnia/fx-models";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
type Variant = "dialog" | "panel" | "editor" | "default";
|
4
4
|
declare const _default: {
|
@@ -117,11 +117,11 @@ declare const _default: {
|
|
117
117
|
}>> & {
|
118
118
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
119
119
|
onAdd?: () => any;
|
120
|
-
onSelected?: (
|
120
|
+
onSelected?: (resolverReference: VelcronRendererResolverReference) => any;
|
121
121
|
"onDefinition:enter"?: (id: guid) => any;
|
122
122
|
"onDefinition:leave"?: (id: guid) => any;
|
123
123
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
124
|
-
selected: (
|
124
|
+
selected: (resolverReference: VelcronRendererResolverReference) => any;
|
125
125
|
add: () => any;
|
126
126
|
"update:modelValue": (value: boolean) => any;
|
127
127
|
"definition:enter": (id: guid) => any;
|
@@ -241,7 +241,7 @@ declare const _default: {
|
|
241
241
|
}>> & {
|
242
242
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
243
243
|
onAdd?: () => any;
|
244
|
-
onSelected?: (
|
244
|
+
onSelected?: (resolverReference: VelcronRendererResolverReference) => any;
|
245
245
|
"onDefinition:enter"?: (id: guid) => any;
|
246
246
|
"onDefinition:leave"?: (id: guid) => any;
|
247
247
|
}, {
|
@@ -368,7 +368,7 @@ declare const _default: {
|
|
368
368
|
}>> & {
|
369
369
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
370
370
|
onAdd?: () => any;
|
371
|
-
onSelected?: (
|
371
|
+
onSelected?: (resolverReference: VelcronRendererResolverReference) => any;
|
372
372
|
"onDefinition:enter"?: (id: guid) => any;
|
373
373
|
"onDefinition:leave"?: (id: guid) => any;
|
374
374
|
}, () => JSX.Element, {}, {}, {}, {
|
@@ -492,11 +492,11 @@ declare const _default: {
|
|
492
492
|
}>> & {
|
493
493
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
494
494
|
onAdd?: () => any;
|
495
|
-
onSelected?: (
|
495
|
+
onSelected?: (resolverReference: VelcronRendererResolverReference) => any;
|
496
496
|
"onDefinition:enter"?: (id: guid) => any;
|
497
497
|
"onDefinition:leave"?: (id: guid) => any;
|
498
498
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
499
|
-
selected: (
|
499
|
+
selected: (resolverReference: VelcronRendererResolverReference) => any;
|
500
500
|
add: () => any;
|
501
501
|
"update:modelValue": (value: boolean) => any;
|
502
502
|
"definition:enter": (id: guid) => any;
|
@@ -580,16 +580,16 @@ declare const _default: {
|
|
580
580
|
activator?: () => VNodeChild;
|
581
581
|
};
|
582
582
|
variant?: Variant;
|
583
|
+
allowEdit?: boolean;
|
583
584
|
categoryFilters?: guid[];
|
584
585
|
renderTypeFilters?: guid[];
|
585
|
-
allowEdit?: boolean;
|
586
586
|
previewState?: VelcronState;
|
587
587
|
exclusions?: guid[];
|
588
588
|
allowBuiltIn?: boolean;
|
589
589
|
}>, "onUpdate:modelValue" | "onAdd" | "onSelected" | "onDefinition:enter" | "onDefinition:leave"> & {
|
590
590
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
591
591
|
onAdd?: () => any;
|
592
|
-
onSelected?: (
|
592
|
+
onSelected?: (resolverReference: VelcronRendererResolverReference) => any;
|
593
593
|
"onDefinition:enter"?: (id: guid) => any;
|
594
594
|
"onDefinition:leave"?: (id: guid) => any;
|
595
595
|
};
|
@@ -65,6 +65,7 @@ export declare class VersionedLayoutDefinitionEditorItem implements IEditorItem
|
|
65
65
|
archive: import("@omnia/fx-models").FontAwesomeIcon;
|
66
66
|
award: import("@omnia/fx-models").FontAwesomeIcon;
|
67
67
|
back: import("@omnia/fx-models").FontAwesomeIcon;
|
68
|
+
brush: import("@omnia/fx-models").FontAwesomeIcon;
|
68
69
|
blueprint: import("@omnia/fx-models").FontAwesomeIcon;
|
69
70
|
background: import("@omnia/fx-models").FontAwesomeIcon;
|
70
71
|
businessProfile: import("@omnia/fx-models").FontAwesomeIcon;
|
@@ -39,7 +39,6 @@ import wc7813f37afbf34cb085a2ef74e71e20fa from './ux/filterengine/components/ren
|
|
39
39
|
import wc373cd0c180af441ca9f973b1da4de7f9 from './ux/filterengine/components/renderer/PropertyListRenderer';
|
40
40
|
import wc0b99953ef72848a7936f51500d69d771 from './ux/filterengine/components/renderer/date/DateTimePeriodSlider';
|
41
41
|
import wc46a6c15c2a0e446fbef9770274409366 from './ux/filterpicker/FilterPicker';
|
42
|
-
import wcfaee0b6397494a9abca9c480856e2498 from './ux/floweditor/FlowEditor';
|
43
42
|
import wca673e0befd6649dda5e680ae1cd3535d from './ux/governancedashboard/NumericIndicator';
|
44
43
|
import wca377536b4fd84773a9730966623601cd from './ux/governancedashboard/BarChartIndicator';
|
45
44
|
import wc08b9c70d2a77433f8492dc0fb50d900e from './ux/grecaptcha/GRecaptcha';
|
@@ -205,6 +204,8 @@ import wcb94ea0908c7f461085de9d21a61e0826 from './ux/enterpriseproperties/picker
|
|
205
204
|
import wc80899927961f45298421948c395d7f39 from './ux/enterpriseproperties/renderers/EnterprisePropertyValue';
|
206
205
|
import wc22666b255eb64f378edf70d5e9859216 from './ux/enterpriseproperties/renderers/EnterprisePropertyConfiguration';
|
207
206
|
import wc0619d10d541645aaabbdc17d5b867501 from './ux/enterprisepropertysets/picker/EnterprisePropertySetPicker';
|
207
|
+
import wcfaee0b6397494a9abca9c480856e2498 from './ux/flow/editor/FlowEditor';
|
208
|
+
import wc9f6fd018560b4c8cbd36f39c6d079bb7 from './ux/flow/renderer/FlowRenderer';
|
208
209
|
import wcc587659a68194582be3c393240709785 from './ux/hub/chat/HubChat';
|
209
210
|
import wcb4fdf9c1a0314fb7a3d3d0cc6e9569b3 from './ux/hub/feed/HubFeed';
|
210
211
|
import wcbaecc57591074830a5ae2dda9f6b5ed5 from './ux/hub/feed/HubFeedSettings';
|
@@ -457,10 +458,10 @@ import wcc9d01726f5594902bf4de68612b186de from './ux/velcron/blocks/demo/DemoBlo
|
|
457
458
|
import wcbbd5168574b64f0486adaf68ba31be49 from './ux/velcron/blocks/demo/DemoBlockSettings';
|
458
459
|
import wc80bd5b0978ea40439001d3d409236382 from './ux/velcron/blocks/velcron/VelcronBlock';
|
459
460
|
import wce8526e8ed3f74e848e0dd747fd4d376d from './ux/velcron/blocks/velcron/VelcronBlockSettings';
|
460
|
-
import wcb2999683f82046d6ad05a3c13df8e577 from './ux/velcron/components/contenteditorNew/VelcronContentEditor';
|
461
461
|
import wcb197c5e805cc4d6bb3d012e258560b31 from './ux/velcron/components/definitionpicker/VelcronDefinitionPicker';
|
462
462
|
import wcdabd67ab338243858fe7d1ca24399995 from './ux/velcron/components/propertieseditor/VelcronPropertiesEditor';
|
463
463
|
import wc5688474abe554cabb34c696620eb6be1 from './ux/velcron/renderer/editors/PropertyEditorCreator';
|
464
|
+
import wceda3a2e37278443899fcdc1e9dd694f4 from '../../fx-sp/internal-do-not-import-from-here/ux/enterpriseproperties/settings/taxonomyfield/TaxonomyFieldSettings';
|
464
465
|
import wcdb625bea89b04f32a946efe7a887c7f2 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/components/settings/TaxonomyPropertySettings';
|
465
466
|
import wcded30c240e6c4688955867472a8d0a02 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/components/settings/TaxonomyPropertyDefaultValueInput';
|
466
467
|
import wc0fb3af1182d849fc89b04ed67949091e from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/components/settings/ExtendedTaxonomyPropertyDefaultValueInput';
|
@@ -1306,15 +1307,6 @@ declare global {
|
|
1306
1307
|
};
|
1307
1308
|
} : typeof wc46a6c15c2a0e446fbef9770274409366;
|
1308
1309
|
};
|
1309
|
-
"flow": {
|
1310
|
-
"editor": typeof wcfaee0b6397494a9abca9c480856e2498 extends {
|
1311
|
-
propsDefinition: infer TProp;
|
1312
|
-
} ? {
|
1313
|
-
new (...args: any[]): {
|
1314
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1315
|
-
};
|
1316
|
-
} : typeof wcfaee0b6397494a9abca9c480856e2498;
|
1317
|
-
};
|
1318
1310
|
"numeric": {
|
1319
1311
|
"indicator": typeof wca673e0befd6649dda5e680ae1cd3535d extends {
|
1320
1312
|
propsDefinition: infer TProp;
|
@@ -2739,6 +2731,22 @@ declare global {
|
|
2739
2731
|
};
|
2740
2732
|
} : typeof wc0619d10d541645aaabbdc17d5b867501;
|
2741
2733
|
};
|
2734
|
+
"flow": {
|
2735
|
+
"editor": typeof wcfaee0b6397494a9abca9c480856e2498 extends {
|
2736
|
+
propsDefinition: infer TProp;
|
2737
|
+
} ? {
|
2738
|
+
new (...args: any[]): {
|
2739
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2740
|
+
};
|
2741
|
+
} : typeof wcfaee0b6397494a9abca9c480856e2498;
|
2742
|
+
"renderer": typeof wc9f6fd018560b4c8cbd36f39c6d079bb7 extends {
|
2743
|
+
propsDefinition: infer TProp;
|
2744
|
+
} ? {
|
2745
|
+
new (...args: any[]): {
|
2746
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2747
|
+
};
|
2748
|
+
} : typeof wc9f6fd018560b4c8cbd36f39c6d079bb7;
|
2749
|
+
};
|
2742
2750
|
"hub": {
|
2743
2751
|
"chat": typeof wcc587659a68194582be3c393240709785 extends {
|
2744
2752
|
propsDefinition: infer TProp;
|
@@ -3161,17 +3169,6 @@ declare global {
|
|
3161
3169
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3162
3170
|
};
|
3163
3171
|
} : typeof wc80bd5b0978ea40439001d3d409236382;
|
3164
|
-
"content": {
|
3165
|
-
"editor": {
|
3166
|
-
"new": typeof wcb2999683f82046d6ad05a3c13df8e577 extends {
|
3167
|
-
propsDefinition: infer TProp;
|
3168
|
-
} ? {
|
3169
|
-
new (...args: any[]): {
|
3170
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3171
|
-
};
|
3172
|
-
} : typeof wcb2999683f82046d6ad05a3c13df8e577;
|
3173
|
-
};
|
3174
|
-
};
|
3175
3172
|
"definition": {
|
3176
3173
|
"picker": typeof wcb197c5e805cc4d6bb3d012e258560b31 extends {
|
3177
3174
|
propsDefinition: infer TProp;
|
@@ -3893,6 +3890,15 @@ declare global {
|
|
3893
3890
|
} : typeof wc4ecc566131194348b7ec8495a06d4fd6;
|
3894
3891
|
};
|
3895
3892
|
};
|
3893
|
+
"taxonomyfield": {
|
3894
|
+
"settings": typeof wceda3a2e37278443899fcdc1e9dd694f4 extends {
|
3895
|
+
propsDefinition: infer TProp;
|
3896
|
+
} ? {
|
3897
|
+
new (...args: any[]): {
|
3898
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3899
|
+
};
|
3900
|
+
} : typeof wceda3a2e37278443899fcdc1e9dd694f4;
|
3901
|
+
};
|
3896
3902
|
};
|
3897
3903
|
"canvas": {
|
3898
3904
|
"toolbar": typeof wc4512676606d342adbd011def4b615151 extends {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.269-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.269-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
@@ -1,7 +0,0 @@
|
|
1
|
-
import { ColorValue } from "@omnia/fx-models";
|
2
|
-
import { FlowNode } from "../../models/EditorModels";
|
3
|
-
export interface ColorFormatNode extends FlowNode {
|
4
|
-
data: ColorValue;
|
5
|
-
}
|
6
|
-
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{}>) => any;
|
7
|
-
export default _default;
|
package/internal-do-not-import-from-here/ux/floweditor/plugins/typography/TypographyButton.d.ts
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
import { TypographyValue } from "@omnia/fx-models";
|
2
|
-
import { FlowNode } from "../../models/EditorModels";
|
3
|
-
export interface TypographyFormatNode extends FlowNode {
|
4
|
-
data: TypographyValue;
|
5
|
-
}
|
6
|
-
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{}>) => any;
|
7
|
-
export default _default;
|
@@ -1,89 +0,0 @@
|
|
1
|
-
import { useVelcronContentEditorStore } from "./stores/ContentEditorStore";
|
2
|
-
import { DynamicState, VelcronAppDefinition } from "@omnia/fx-models";
|
3
|
-
type ContentEditorVariants = "default" | "social" | "social-comments";
|
4
|
-
export interface ContentEditorVelcronState extends DynamicState {
|
5
|
-
content: {
|
6
|
-
[id: string]: unknown;
|
7
|
-
};
|
8
|
-
}
|
9
|
-
declare const _default: {
|
10
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
11
|
-
getApi: {
|
12
|
-
type: import("vue").PropType<(store: ReturnType<typeof useVelcronContentEditorStore>) => void>;
|
13
|
-
};
|
14
|
-
placeholder: {
|
15
|
-
type: import("vue").PropType<string>;
|
16
|
-
};
|
17
|
-
variant: {
|
18
|
-
type: import("vue").PropType<ContentEditorVariants>;
|
19
|
-
};
|
20
|
-
}>> & {
|
21
|
-
onPost?: (content: VelcronAppDefinition<object>[]) => any;
|
22
|
-
onFilesAdded?: (files: File[]) => any;
|
23
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
24
|
-
post: (content: VelcronAppDefinition[]) => true;
|
25
|
-
filesAdded: (files: Array<File>) => any;
|
26
|
-
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
27
|
-
getApi: {
|
28
|
-
type: import("vue").PropType<(store: ReturnType<typeof useVelcronContentEditorStore>) => void>;
|
29
|
-
};
|
30
|
-
placeholder: {
|
31
|
-
type: import("vue").PropType<string>;
|
32
|
-
};
|
33
|
-
variant: {
|
34
|
-
type: import("vue").PropType<ContentEditorVariants>;
|
35
|
-
};
|
36
|
-
}>> & {
|
37
|
-
onPost?: (content: VelcronAppDefinition<object>[]) => any;
|
38
|
-
onFilesAdded?: (files: File[]) => any;
|
39
|
-
}, {}, true, {}, {}, {
|
40
|
-
P: {};
|
41
|
-
B: {};
|
42
|
-
D: {};
|
43
|
-
C: {};
|
44
|
-
M: {};
|
45
|
-
Defaults: {};
|
46
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
47
|
-
getApi: {
|
48
|
-
type: import("vue").PropType<(store: ReturnType<typeof useVelcronContentEditorStore>) => void>;
|
49
|
-
};
|
50
|
-
placeholder: {
|
51
|
-
type: import("vue").PropType<string>;
|
52
|
-
};
|
53
|
-
variant: {
|
54
|
-
type: import("vue").PropType<ContentEditorVariants>;
|
55
|
-
};
|
56
|
-
}>> & {
|
57
|
-
onPost?: (content: VelcronAppDefinition<object>[]) => any;
|
58
|
-
onFilesAdded?: (files: File[]) => any;
|
59
|
-
}, () => JSX.Element, {}, {}, {}, {}>;
|
60
|
-
__isFragment?: never;
|
61
|
-
__isTeleport?: never;
|
62
|
-
__isSuspense?: never;
|
63
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
64
|
-
getApi: {
|
65
|
-
type: import("vue").PropType<(store: ReturnType<typeof useVelcronContentEditorStore>) => void>;
|
66
|
-
};
|
67
|
-
placeholder: {
|
68
|
-
type: import("vue").PropType<string>;
|
69
|
-
};
|
70
|
-
variant: {
|
71
|
-
type: import("vue").PropType<ContentEditorVariants>;
|
72
|
-
};
|
73
|
-
}>> & {
|
74
|
-
onPost?: (content: VelcronAppDefinition<object>[]) => any;
|
75
|
-
onFilesAdded?: (files: File[]) => any;
|
76
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
77
|
-
post: (content: VelcronAppDefinition[]) => true;
|
78
|
-
filesAdded: (files: Array<File>) => any;
|
79
|
-
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
80
|
-
propsDefinition: Omit<Readonly<{} & {
|
81
|
-
placeholder?: string;
|
82
|
-
variant?: ContentEditorVariants;
|
83
|
-
getApi?: (store: ReturnType<typeof useVelcronContentEditorStore>) => void;
|
84
|
-
}>, "onPost" | "onFilesAdded"> & {
|
85
|
-
onPost?: (content: VelcronAppDefinition<object>[]) => any;
|
86
|
-
onFilesAdded?: (files: File[]) => any;
|
87
|
-
};
|
88
|
-
};
|
89
|
-
export default _default;
|
@@ -1,80 +0,0 @@
|
|
1
|
-
import { DynamicState, ThemeDefinitionV2, VelcronSectionInstance } from "@omnia/fx-models";
|
2
|
-
import { EditorRenderingHooks } from "./models";
|
3
|
-
export interface ContentEditorVelcronState extends DynamicState {
|
4
|
-
content: {
|
5
|
-
[id: string]: unknown;
|
6
|
-
};
|
7
|
-
}
|
8
|
-
declare const _default: {
|
9
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
10
|
-
sections: {
|
11
|
-
type: import("vue").PropType<VelcronSectionInstance[]>;
|
12
|
-
};
|
13
|
-
editMode: {
|
14
|
-
type: import("vue").PropType<boolean>;
|
15
|
-
};
|
16
|
-
themeDefinition: {
|
17
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
18
|
-
};
|
19
|
-
hooks: {
|
20
|
-
type: import("vue").PropType<EditorRenderingHooks>;
|
21
|
-
};
|
22
|
-
}>>, () => JSX.Element[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
23
|
-
sections: {
|
24
|
-
type: import("vue").PropType<VelcronSectionInstance[]>;
|
25
|
-
};
|
26
|
-
editMode: {
|
27
|
-
type: import("vue").PropType<boolean>;
|
28
|
-
};
|
29
|
-
themeDefinition: {
|
30
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
31
|
-
};
|
32
|
-
hooks: {
|
33
|
-
type: import("vue").PropType<EditorRenderingHooks>;
|
34
|
-
};
|
35
|
-
}>>, {}, true, {}, {}, {
|
36
|
-
P: {};
|
37
|
-
B: {};
|
38
|
-
D: {};
|
39
|
-
C: {};
|
40
|
-
M: {};
|
41
|
-
Defaults: {};
|
42
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
43
|
-
sections: {
|
44
|
-
type: import("vue").PropType<VelcronSectionInstance[]>;
|
45
|
-
};
|
46
|
-
editMode: {
|
47
|
-
type: import("vue").PropType<boolean>;
|
48
|
-
};
|
49
|
-
themeDefinition: {
|
50
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
51
|
-
};
|
52
|
-
hooks: {
|
53
|
-
type: import("vue").PropType<EditorRenderingHooks>;
|
54
|
-
};
|
55
|
-
}>>, () => JSX.Element[], {}, {}, {}, {}>;
|
56
|
-
__isFragment?: never;
|
57
|
-
__isTeleport?: never;
|
58
|
-
__isSuspense?: never;
|
59
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
60
|
-
sections: {
|
61
|
-
type: import("vue").PropType<VelcronSectionInstance[]>;
|
62
|
-
};
|
63
|
-
editMode: {
|
64
|
-
type: import("vue").PropType<boolean>;
|
65
|
-
};
|
66
|
-
themeDefinition: {
|
67
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
68
|
-
};
|
69
|
-
hooks: {
|
70
|
-
type: import("vue").PropType<EditorRenderingHooks>;
|
71
|
-
};
|
72
|
-
}>>, () => JSX.Element[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
73
|
-
propsDefinition: Omit<Readonly<{} & {
|
74
|
-
themeDefinition?: ThemeDefinitionV2;
|
75
|
-
editMode?: boolean;
|
76
|
-
hooks?: EditorRenderingHooks;
|
77
|
-
sections?: VelcronSectionInstance[];
|
78
|
-
}>, never>;
|
79
|
-
};
|
80
|
-
export default _default;
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { VelcronSectionInstance } from "@omnia/fx-models";
|
2
|
-
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
-
"emit:update:modelValue": (value: VelcronSectionInstance) => void;
|
4
|
-
} & {
|
5
|
-
"v-model"?: VelcronSectionInstance;
|
6
|
-
} & {
|
7
|
-
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
8
|
-
} & {
|
9
|
-
modelValue?: VelcronSectionInstance;
|
10
|
-
}>) => any;
|
11
|
-
export default _default;
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { VelcronSectionInstance } from "@omnia/fx-models";
|
2
|
-
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
-
"emit:update:modelValue": (value: VelcronSectionInstance) => void;
|
4
|
-
} & {
|
5
|
-
"v-model"?: VelcronSectionInstance;
|
6
|
-
} & {
|
7
|
-
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
8
|
-
} & {
|
9
|
-
modelValue?: VelcronSectionInstance;
|
10
|
-
}>) => any;
|
11
|
-
export default _default;
|
@@ -1,12 +0,0 @@
|
|
1
|
-
export declare const BorderSelectorStyles: {
|
2
|
-
spacingPickerOuter: string;
|
3
|
-
spacingPickerInner: string;
|
4
|
-
spacingSeparator: string;
|
5
|
-
spacingBackground: (selected: Boolean) => string;
|
6
|
-
actionButtonContainer: string;
|
7
|
-
commonStyles: string;
|
8
|
-
topSpacing: string;
|
9
|
-
bottomSpacing: string;
|
10
|
-
topSelector: string;
|
11
|
-
bottomSelector: string;
|
12
|
-
};
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { VelcronSectionInstance } from "@omnia/fx-models";
|
2
|
-
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
-
"emit:update:modelValue": (value: VelcronSectionInstance) => void;
|
4
|
-
} & {
|
5
|
-
"v-model"?: VelcronSectionInstance;
|
6
|
-
} & {
|
7
|
-
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
8
|
-
} & {
|
9
|
-
modelValue?: VelcronSectionInstance;
|
10
|
-
}>) => any;
|
11
|
-
export default _default;
|
@@ -1,14 +0,0 @@
|
|
1
|
-
import { VelcronSectionInstance } from "@omnia/fx-models";
|
2
|
-
type ToolbarVariant = "default" | "reference";
|
3
|
-
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
4
|
-
"emit:update:modelValue": (value: VelcronSectionInstance) => void;
|
5
|
-
} & {
|
6
|
-
"v-model"?: VelcronSectionInstance;
|
7
|
-
} & {
|
8
|
-
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
9
|
-
} & {
|
10
|
-
modelValue?: VelcronSectionInstance;
|
11
|
-
} & {
|
12
|
-
variant?: ToolbarVariant;
|
13
|
-
}>) => any;
|
14
|
-
export default _default;
|
@@ -1,14 +0,0 @@
|
|
1
|
-
import { VelcronSectionInstance } from "@omnia/fx-models";
|
2
|
-
type ToolbarVariant = "default" | "reference";
|
3
|
-
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
4
|
-
"emit:update:modelValue": (value: VelcronSectionInstance) => void;
|
5
|
-
} & {
|
6
|
-
"v-model"?: VelcronSectionInstance;
|
7
|
-
} & {
|
8
|
-
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
9
|
-
} & {
|
10
|
-
modelValue?: VelcronSectionInstance;
|
11
|
-
} & {
|
12
|
-
variant?: ToolbarVariant;
|
13
|
-
}>) => any;
|
14
|
-
export default _default;
|
@@ -1,5 +0,0 @@
|
|
1
|
-
import { PluginContext, PluginInfo } from "internal/fx/libs/toastui";
|
2
|
-
export interface MarkdownPluginContext {
|
3
|
-
componentCreator: (component: any, props: {}, attachToHtmlElement: HTMLElement) => void;
|
4
|
-
}
|
5
|
-
export declare function useSectionRendererPlugin(context: PluginContext, options: MarkdownPluginContext): PluginInfo;
|
@@ -1,24 +0,0 @@
|
|
1
|
-
import { VNodeChild } from "vue";
|
2
|
-
import { VelcronDefinition, VelcronRenderContext, VelcronSectionInstance } from "@omnia/fx-models";
|
3
|
-
export interface EditorRenderingHooks {
|
4
|
-
styles?: {
|
5
|
-
activeItem?: (item: VelcronSectionInstance) => string;
|
6
|
-
hover?: (item: VelcronSectionInstance) => string;
|
7
|
-
};
|
8
|
-
renderBorderSelectors?: (item: VelcronSectionInstance) => VNodeChild;
|
9
|
-
renderActionMenu?: (item: VelcronSectionInstance) => VNodeChild;
|
10
|
-
renderDefinitionToolbar?: (item: VelcronSectionInstance) => VNodeChild;
|
11
|
-
renderEmptyEditor?: () => VNodeChild;
|
12
|
-
definition?: {
|
13
|
-
wrapperStyleExtensions?: ((item: VelcronDefinition, renderContext: VelcronRenderContext) => string);
|
14
|
-
renderExtensions?: (item: VelcronDefinition, renderContext: VelcronRenderContext) => VNodeChild;
|
15
|
-
onItemSelected?: (item: VelcronDefinition, renderContext: VelcronRenderContext) => void;
|
16
|
-
};
|
17
|
-
item?: {
|
18
|
-
onItemClicked?: (item: VelcronSectionInstance) => void;
|
19
|
-
onItemDblClicked?: (item: VelcronSectionInstance) => void;
|
20
|
-
onMouseenter?: (item: VelcronSectionInstance) => void;
|
21
|
-
onMouseleave?: (item: VelcronSectionInstance) => void;
|
22
|
-
isActive?: (item: VelcronSectionInstance) => boolean;
|
23
|
-
};
|
24
|
-
}
|
package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/models/index.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from "./EditorRenderingHooks";
|