@omnia/fx 8.0.264-dev → 8.0.266-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/stores/{markdown/MarkdownPluginStore.d.ts → floweditor/FlowEditorPluginStore.d.ts} +12 -11
- package/internal-do-not-import-from-here/stores/{markdown/MarkdownToolbarStateStore.d.ts → floweditor/FlowEditorToolbarStateStore.d.ts} +1 -1
- package/internal-do-not-import-from-here/stores/floweditor/index.d.ts +2 -0
- package/internal-do-not-import-from-here/stores/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appimageinput/AppImageInput.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/aurora/designkits/default/DefinitionRegistrations.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/designkits/pages/DefinitionRegistrations.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +36 -0
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +36 -0
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +3 -14
- package/internal-do-not-import-from-here/ux/features/models/FeatureAction.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/features/models/VDataGridItemScopedSlot.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/features/models/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/features/shared/FeatureActions.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/features/shared/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/floweditor/FlowEditor.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/{markdown2/MarkdownEditorFuture.d.ts → floweditor/FlowEditor.d.ts} +4 -4
- package/internal-do-not-import-from-here/ux/{markdown2/MarkdownToolbar.css.d.ts → floweditor/FlowEditorToolbar.css.d.ts} +1 -1
- package/internal-do-not-import-from-here/ux/floweditor/commands/EditorCommands.d.ts +99 -0
- package/internal-do-not-import-from-here/ux/floweditor/commands/helpers/EditorNodeHelper.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/floweditor/commands/helpers/Editorhelper.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/floweditor/commands/helpers/HtmlNodehelper.d.ts +25 -0
- package/internal-do-not-import-from-here/ux/floweditor/models/Constants.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/floweditor/models/EditorModels.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/floweditor/models/EditorPlugin.d.ts +40 -0
- package/internal-do-not-import-from-here/ux/floweditor/parsers/HtmlParser.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/floweditor/parsers/JSONParser.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/DefineEditorPlugin.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/bold/BoldPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/colorstyle/ColorButton.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/colorstyle/ColorStylePlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/floweditor/plugins/elements/ElementPlugin.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/eventhandlers/EditorEvents.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/eventhandlers/KeyboardEvents.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/eventhandlers/handlers/BackspaceHandler.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/eventhandlers/handlers/ClipboardHandler.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/eventhandlers/handlers/EnterHandler.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/italic/ItalicPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/floweditor/plugins/sourceeditor/SourceEditorPlugin.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/testdata/TestDataPlugin.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/floweditor/plugins/text/TextPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/typography/TypographyButton.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/typography/TypographyPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/velcron/VelcronPlugin.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/floweditor/rules/EditorRules.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/floweditor/stores/FlowEditorStore.d.ts +370 -0
- package/internal-do-not-import-from-here/ux/floweditor/stores/FlowEditorToolbarStore.d.ts +1901 -0
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/CommunityUpdate.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/DefinitionRegistrations.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/DocumentReview.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/NewsArticleTemplate.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/QuickPoll.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/Reach.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/hub/feed/definitions/UpdatedProcess.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/identities/loc/Localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/markdown/stores/MarkdownEditorStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsDisplay.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +18 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/VelcronDefinitionPicker.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/VelcronEditorBuilder.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/{components/contenteditor/models → definitions}/VelcronDefinitionIds.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/definitions/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/models/ComponentDescriptors.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/{Markdown.d.ts → Flow.d.ts} +6 -6
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Property.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/MarkdownEditor.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyResolverEditor.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/stores/VelcronDefinitionStore.d.ts +47 -7
- package/internal-do-not-import-from-here/wctypings.d.ts +10 -32
- package/package.json +2 -2
- package/internal-do-not-import-from-here/stores/markdown/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/markdown2/MarkdownEditorFuture.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/markdown2/commands/ClipboardCommands.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/markdown2/commands/EditorCommands.d.ts +0 -52
- package/internal-do-not-import-from-here/ux/markdown2/commands/helpers/EditorNodeHelper.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/markdown2/commands/helpers/Editorhelper.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/markdown2/commands/helpers/HtmlNodehelper.d.ts +0 -9
- package/internal-do-not-import-from-here/ux/markdown2/markdowntester/MarkdownTester.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/markdown2/markdowntester/MarkdownTester.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/markdown2/models/EditorModels.d.ts +0 -21
- package/internal-do-not-import-from-here/ux/markdown2/models/EditorPlugin.d.ts +0 -18
- package/internal-do-not-import-from-here/ux/markdown2/parsers/HtmlParser.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/markdown2/parsers/JSONParser.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/markdown2/parsers/markdownparser_old/MarkdownParser_engine.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/markdown2/parsers/markdownparser_old/component.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/markdown2/parsers/markdownparser_old/tags.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/markdown2/parsers/markdownparser_old/textParser.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/markdown2/plugins/sourceeditor/SourceEditorPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/markdown2/plugins/testdata/TestDataPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/markdown2/plugins/text/TextPlugin.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownStore.d.ts +0 -200
- package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownToolbarStore.d.ts +0 -1051
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.d.ts +0 -949
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/content/Quote.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/Image.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/MicroBlog.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/MicroBlog2.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/Praise.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/SocialText.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/index.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/models/ContentDefinitionRegistration.d.ts +0 -9
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/models/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/stores/ContentEditorStore.d.ts +0 -180
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/definitions/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/VelcronContentEditor.css.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/VelcronContentEditor.d.ts +0 -1133
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/VelcronContentRenderer.d.ts +0 -80
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/ActionMenu.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/ActionMenu.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/BorderSelector copy.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/BorderSelector.css.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/BorderSelector.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/DefinitionToolbar copy.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/DefinitionToolbar.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/DefinitionToolbar.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/definitions/DefinitionRegistrations.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/definitions/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/editorHooks/ContentEditorHooks.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/editorHooks/ContentEditorHooks.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/models/EditorRenderingHooks.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/models/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/stores/ContentEditorStore.d.ts +0 -222
- /package/internal-do-not-import-from-here/ux/{markdown2/MarkdownToolbar.d.ts → floweditor/FlowEditorToolbar.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/PluginRegistrationHandler.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/registrations/PluginRegistrations.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{markdown2 → floweditor}/plugins/sourceeditor/SourceEditorButton.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{aurora/RegistrationHandlerDefinitions.d.ts → velcron/apis/VelcronCategoriesHandler.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{components/contenteditor/DefinitionRegistrations.d.ts → apis/VelcronDefinitionsHandler.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{registrations → definitions}/CategoryRegistrations.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{components/contenteditor/definitions → definitions}/content/Image.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{components/contenteditor/definitions → definitions}/content/ImageText.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{components/contenteditorNew/definitions/DefinitionRegistrations.d.ts → definitions/content/Quote.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{components/contenteditor/definitions → definitions}/content/Text.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/{components/contenteditor/definitions → definitions}/content/index.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{aurora/designkits/default/definitions/content → velcron/definitions/social}/Image.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{aurora/designkits/default/definitions/content/ImageText.d.ts → velcron/definitions/social/MicroBlog.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{aurora/designkits/default/definitions/content/Quote.d.ts → velcron/definitions/social/MicroBlog2.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{aurora/designkits/default/definitions/content/Text.d.ts → velcron/definitions/social/Praise.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{aurora/designkits/default/definitions/content/index.d.ts → velcron/definitions/social/SocialText.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{markdown2/parsers/markdownparser_old/MarkdownParser.d.ts → velcron/definitions/social/index.d.ts} +0 -0
package/internal-do-not-import-from-here/ux/hub/feed/definitions/DefinitionRegistrations.d.ts
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import {
|
1
|
+
import { FlowEditorActionRegistration, guid } from "@omnia/fx-models";
|
2
2
|
import { type Editor } from "internal/fx/libs/toastui";
|
3
3
|
export declare const useMarkdownEditorStore: () => {
|
4
4
|
state: {
|
5
5
|
toolbar: {
|
6
6
|
show: boolean;
|
7
|
-
textActions:
|
8
|
-
additionalActions:
|
7
|
+
textActions: FlowEditorActionRegistration[];
|
8
|
+
additionalActions: FlowEditorActionRegistration[];
|
9
9
|
};
|
10
10
|
toolbarOwnerId: guid;
|
11
11
|
activeEditor: Editor;
|
@@ -13,8 +13,8 @@ export declare const useMarkdownEditorStore: () => {
|
|
13
13
|
events: {
|
14
14
|
onMutatedToolbar: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
15
15
|
show: boolean;
|
16
|
-
textActions:
|
17
|
-
additionalActions:
|
16
|
+
textActions: FlowEditorActionRegistration[];
|
17
|
+
additionalActions: FlowEditorActionRegistration[];
|
18
18
|
}>;
|
19
19
|
onMutatedToolbarOwnerId: import("@omnia/fx").MessageBusExposeOnlySubscription<guid>;
|
20
20
|
onMutatedActiveEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<Editor>;
|
@@ -39,7 +39,7 @@ export declare const useMarkdownEditorStore: () => {
|
|
39
39
|
};
|
40
40
|
toolbar: {
|
41
41
|
subscribe(fn: (result: {
|
42
|
-
addAdditionalAction: (action:
|
42
|
+
addAdditionalAction: (action: FlowEditorActionRegistration) => void;
|
43
43
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
44
44
|
};
|
45
45
|
editor: {
|
@@ -65,7 +65,7 @@ export declare const useMarkdownEditorStore: () => {
|
|
65
65
|
exec: (command: string, payload: any) => void;
|
66
66
|
};
|
67
67
|
toolbar: () => {
|
68
|
-
addAdditionalAction: (action:
|
68
|
+
addAdditionalAction: (action: FlowEditorActionRegistration) => void;
|
69
69
|
};
|
70
70
|
editor: () => {
|
71
71
|
onEnter: (editor: Editor, editorId: guid) => void;
|
@@ -1,6 +1,6 @@
|
|
1
|
+
import { IIcon, OSelectRenderingItem, OSelectTypes } from "@omnia/fx-models";
|
1
2
|
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineType, DefineVModel, ItemType, ItemValueType, ValidationRule } from "@omnia/fx/ux";
|
2
3
|
import { VNodeChild } from "vue";
|
3
|
-
import { IIcon, OSelectRenderingItem, OSelectTypes } from "@omnia/fx-models";
|
4
4
|
import { VSelectSlots } from "../../ComponentTypings";
|
5
5
|
export interface OSelectSlots extends Omit<VSelectSlots, "item" | "selection" | "chip" | "append-item"> {
|
6
6
|
chip?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
|
package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts
CHANGED
@@ -30,7 +30,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
30
30
|
item: import("typestyle/lib/types").NestedCSSProperties;
|
31
31
|
inline: import("typestyle/lib/types").NestedCSSProperties;
|
32
32
|
};
|
33
|
-
} & DefineSlot<"
|
33
|
+
} & DefineSlot<"left", (resolvedIdentity: IResolvedIdentity) => VNodeChild> & DefineSlot<"right", (resolvedIdentity: IResolvedIdentity) => VNodeChild> & DefineSlot<"renderer", (renderProps: {
|
34
34
|
identities: Array<IResolvedIdentity>;
|
35
35
|
}) => VNodeChild>>) => any;
|
36
36
|
export default _default;
|
@@ -1,11 +1,14 @@
|
|
1
1
|
import { TagsPropertyDefinition, IPropertyDisplayRenderer, PropertyValueType, Tag, IIcon, TagsDisplaySettings } from "@omnia/fx-models";
|
2
2
|
import { DefineProp, DefineSlot, DefineVModel, TagsFieldDisplayStyles } from "@omnia/fx/ux";
|
3
|
+
import { VNodeChild } from "vue";
|
3
4
|
export type TagsDisplayProps = IPropertyDisplayRenderer<TagsPropertyDefinition> & ComponentProps;
|
4
5
|
type ComponentProps = DefineVModel<"", PropertyValueType<TagsPropertyDefinition>> & DefineProp<"displaySettings", TagsDisplaySettings> & DefineProp<"renderTextOnly", boolean, false, false> & DefineProp<"renderTextOnly", boolean, false, false> & DefineProp<"clickableIcon", IIcon> & DefineProp<"appendedTagContents", {
|
5
6
|
[tagName: string]: {
|
6
7
|
icon: IIcon;
|
7
8
|
title: string;
|
8
9
|
};
|
9
|
-
}[]> & DefineProp<"hideSelected", boolean> & DefineProp<"styles", typeof TagsFieldDisplayStyles> & DefineProp<"contentColor", string> & DefineProp<"onTagClicked", (tag: Tag) => void> & DefineProp<"persistentLabels", boolean, false, false> & DefineSlot<"appendedElement", () => JSX.Element
|
10
|
+
}[]> & DefineProp<"hideSelected", boolean> & DefineProp<"styles", typeof TagsFieldDisplayStyles> & DefineProp<"contentColor", string> & DefineProp<"onTagClicked", (tag: Tag) => void> & DefineProp<"persistentLabels", boolean, false, false> & DefineSlot<"appendedElement", () => JSX.Element> & DefineSlot<"renderer", (renderProps: {
|
11
|
+
tags: Array<Tag>;
|
12
|
+
}) => VNodeChild>;
|
10
13
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<TagsDisplayProps>) => any;
|
11
14
|
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { guid } from "@omnia/fx-models";
|
1
|
+
import { guid, PropertyDefinition } from "@omnia/fx-models";
|
2
2
|
import { IDataSourcePropertySelection } from "@omnia/fx/ux";
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
@@ -13,6 +13,10 @@ declare const _default: {
|
|
13
13
|
type: import("vue").PropType<guid[]>;
|
14
14
|
required: false;
|
15
15
|
};
|
16
|
+
selectableProperties: {
|
17
|
+
type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
|
18
|
+
required: false;
|
19
|
+
};
|
16
20
|
selectableDataSources: {
|
17
21
|
type: import("vue").PropType<guid[]>;
|
18
22
|
required: false;
|
@@ -53,6 +57,10 @@ declare const _default: {
|
|
53
57
|
type: import("vue").PropType<guid[]>;
|
54
58
|
required: false;
|
55
59
|
};
|
60
|
+
selectableProperties: {
|
61
|
+
type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
|
62
|
+
required: false;
|
63
|
+
};
|
56
64
|
selectableDataSources: {
|
57
65
|
type: import("vue").PropType<guid[]>;
|
58
66
|
required: false;
|
@@ -100,6 +108,10 @@ declare const _default: {
|
|
100
108
|
type: import("vue").PropType<guid[]>;
|
101
109
|
required: false;
|
102
110
|
};
|
111
|
+
selectableProperties: {
|
112
|
+
type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
|
113
|
+
required: false;
|
114
|
+
};
|
103
115
|
selectableDataSources: {
|
104
116
|
type: import("vue").PropType<guid[]>;
|
105
117
|
required: false;
|
@@ -144,6 +156,10 @@ declare const _default: {
|
|
144
156
|
type: import("vue").PropType<guid[]>;
|
145
157
|
required: false;
|
146
158
|
};
|
159
|
+
selectableProperties: {
|
160
|
+
type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
|
161
|
+
required: false;
|
162
|
+
};
|
147
163
|
selectableDataSources: {
|
148
164
|
type: import("vue").PropType<guid[]>;
|
149
165
|
required: false;
|
@@ -181,6 +197,7 @@ declare const _default: {
|
|
181
197
|
hideConfiguration?: boolean;
|
182
198
|
selectionProperty?: IDataSourcePropertySelection;
|
183
199
|
selectableDataSources?: guid[];
|
200
|
+
selectableProperties?: guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[];
|
184
201
|
selectablePropertyConverters?: guid[];
|
185
202
|
hideLabelIfSingleSource?: boolean;
|
186
203
|
onDataSourcePropertySelected?: (selection: IDataSourcePropertySelection, allowEdit: boolean) => Promise<void>;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { VelcronAppDefinition, VelcronDefinition,
|
1
|
+
import { VelcronAppDefinition, VelcronDefinition, ContainerBlueprint, ContainerVariant, VelcronSectionInstance, guid, BorderSelectorActionRegistration, FlowEditorPluginSettings, VelcronDefinitionRegistrationWithoutApp } from "@omnia/fx-models";
|
2
2
|
type InsertMode = "add" | "change";
|
3
3
|
export interface InsertOptions {
|
4
4
|
preInsert?: boolean;
|
@@ -108,7 +108,7 @@ export declare const useVelcronContentEditorStore: () => {
|
|
108
108
|
};
|
109
109
|
plugins: {
|
110
110
|
subscribe(fn: (result: {
|
111
|
-
register: (pluginSettings:
|
111
|
+
register: (pluginSettings: FlowEditorPluginSettings | FlowEditorPluginSettings[]) => void;
|
112
112
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
113
113
|
};
|
114
114
|
selectorActions: {
|
@@ -150,7 +150,7 @@ export declare const useVelcronContentEditorStore: () => {
|
|
150
150
|
definition: {
|
151
151
|
subscribe(fn: (result: {
|
152
152
|
updateColorSchema: (definitionRegistration: VelcronSectionInstance, colorSchemaType: string) => void;
|
153
|
-
addByRegistration: (definition:
|
153
|
+
addByRegistration: (definition: VelcronDefinitionRegistrationWithoutApp, insertOptions: InsertOptions, setAsActive?: boolean) => void;
|
154
154
|
addBySection: (definitions: Array<VelcronSectionInstance>) => void;
|
155
155
|
delete: (definition: VelcronSectionInstance) => void;
|
156
156
|
deleteReference: (definition: VelcronSectionInstance) => any;
|
@@ -199,7 +199,7 @@ export declare const useVelcronContentEditorStore: () => {
|
|
199
199
|
} & {
|
200
200
|
setMarkdownEditorStore(store: any): void;
|
201
201
|
plugins: () => {
|
202
|
-
register: (pluginSettings:
|
202
|
+
register: (pluginSettings: FlowEditorPluginSettings | FlowEditorPluginSettings[]) => void;
|
203
203
|
};
|
204
204
|
selectorActions: () => {
|
205
205
|
hideDefaultSelector: () => void;
|
@@ -229,7 +229,7 @@ export declare const useVelcronContentEditorStore: () => {
|
|
229
229
|
};
|
230
230
|
definition: () => {
|
231
231
|
updateColorSchema: (definitionRegistration: VelcronSectionInstance, colorSchemaType: string) => void;
|
232
|
-
addByRegistration: (definition:
|
232
|
+
addByRegistration: (definition: VelcronDefinitionRegistrationWithoutApp, insertOptions: InsertOptions, setAsActive?: boolean) => void;
|
233
233
|
addBySection: (definitions: Array<VelcronSectionInstance>) => void;
|
234
234
|
delete: (definition: VelcronSectionInstance) => void;
|
235
235
|
deleteReference: (definition: VelcronSectionInstance) => any;
|
@@ -10,6 +10,7 @@ declare const _default: {
|
|
10
10
|
}>;
|
11
11
|
allowBuiltIn: {
|
12
12
|
type: import("vue").PropType<boolean>;
|
13
|
+
required: false;
|
13
14
|
};
|
14
15
|
exclusions: {
|
15
16
|
type: import("vue").PropType<guid[]>;
|
@@ -133,6 +134,7 @@ declare const _default: {
|
|
133
134
|
}>;
|
134
135
|
allowBuiltIn: {
|
135
136
|
type: import("vue").PropType<boolean>;
|
137
|
+
required: false;
|
136
138
|
};
|
137
139
|
exclusions: {
|
138
140
|
type: import("vue").PropType<guid[]>;
|
@@ -259,6 +261,7 @@ declare const _default: {
|
|
259
261
|
}>;
|
260
262
|
allowBuiltIn: {
|
261
263
|
type: import("vue").PropType<boolean>;
|
264
|
+
required: false;
|
262
265
|
};
|
263
266
|
exclusions: {
|
264
267
|
type: import("vue").PropType<guid[]>;
|
@@ -382,6 +385,7 @@ declare const _default: {
|
|
382
385
|
}>;
|
383
386
|
allowBuiltIn: {
|
384
387
|
type: import("vue").PropType<boolean>;
|
388
|
+
required: false;
|
385
389
|
};
|
386
390
|
exclusions: {
|
387
391
|
type: import("vue").PropType<guid[]>;
|
@@ -577,9 +581,9 @@ declare const _default: {
|
|
577
581
|
};
|
578
582
|
variant?: Variant;
|
579
583
|
allowEdit?: boolean;
|
580
|
-
previewState?: VelcronState;
|
581
584
|
categoryFilters?: guid[];
|
582
585
|
renderTypeFilters?: guid[];
|
586
|
+
previewState?: VelcronState;
|
583
587
|
exclusions?: guid[];
|
584
588
|
allowBuiltIn?: boolean;
|
585
589
|
}>, "onUpdate:modelValue" | "onAdd" | "onSelected" | "onDefinition:enter" | "onDefinition:leave"> & {
|
@@ -4,6 +4,7 @@ import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, Velcron
|
|
4
4
|
import { DynamicState, VelcronDefinition, VelcronEffects, useVelcronThemingStore } from "..";
|
5
5
|
import { guid, PropertyConfiguration, PropertyValue, PropertyDefinition, PropertySetupBase } from "@omnia/fx/models";
|
6
6
|
import { useVelcronColorSchemaStore } from "../stores/VelcronColorSchema";
|
7
|
+
import { IDataSourcePropertySelection } from "internal/fx/ux/properties/models/PropertyPicker";
|
7
8
|
export interface ResolvedComponentRenderer {
|
8
9
|
component: unknown;
|
9
10
|
definition: VelcronDefinition;
|
@@ -26,7 +27,7 @@ export interface BuiltInComponentRenderers {
|
|
26
27
|
"dialog": unknown;
|
27
28
|
"icon": unknown;
|
28
29
|
"chip": unknown;
|
29
|
-
"
|
30
|
+
"flow": unknown;
|
30
31
|
"slot": unknown;
|
31
32
|
"property": unknown;
|
32
33
|
"checkbox": unknown;
|
@@ -276,8 +277,8 @@ export interface VelcronIconDefinition extends VelcronDefinition, VelcronColorSt
|
|
276
277
|
events?: VelcronOnPressEvent;
|
277
278
|
blueprint?: VelcronBindableProp<IconBlueprint>;
|
278
279
|
}
|
279
|
-
export interface
|
280
|
-
type: "
|
280
|
+
export interface VelcronFlowDefinition extends VelcronDefinition, VelcronColorStyling, VelcronTextStyling {
|
281
|
+
type: "flow";
|
281
282
|
value?: VelcronBindableProp<string>;
|
282
283
|
placeholder?: VelcronBindableProp<string>;
|
283
284
|
events?: VelcronOnUpdatedEvent;
|
@@ -372,8 +373,7 @@ export interface VelcronPropertyDefinitionValue {
|
|
372
373
|
}
|
373
374
|
export interface VelcronPropertyDefinitionValueResolver {
|
374
375
|
name: string;
|
375
|
-
|
376
|
-
path: string;
|
376
|
+
source: IDataSourcePropertySelection;
|
377
377
|
}
|
378
378
|
export type VelcronRenderProps<TDefinition> = {
|
379
379
|
definition: TDefinition;
|
@@ -13,7 +13,7 @@ export interface VelcronSliderPropertyEditorSettings {
|
|
13
13
|
export interface VelcronTypographyEditorSettings {
|
14
14
|
type: "title" | "text";
|
15
15
|
}
|
16
|
-
export interface
|
16
|
+
export interface VelcronFlowEditorSettings {
|
17
17
|
placeholder: string;
|
18
18
|
}
|
19
19
|
export interface VelcronSpacingEditorSettings {
|
@@ -78,8 +78,8 @@ export interface VelcronColorSchemaPropertyEditor extends VelcronEditor<any> {
|
|
78
78
|
export interface VelcronIconPropertyEditor extends VelcronEditor<any> {
|
79
79
|
type: "icon";
|
80
80
|
}
|
81
|
-
export interface
|
82
|
-
type: "
|
81
|
+
export interface VelcronFlowPropertyEditor extends VelcronEditor<VelcronFlowEditorSettings> {
|
82
|
+
type: "flow";
|
83
83
|
}
|
84
84
|
export interface VelcronImagePropertyEditor extends VelcronEditor<any> {
|
85
85
|
type: "image";
|
package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/VelcronEditorBuilder.d.ts
CHANGED
@@ -7,7 +7,7 @@ export declare class VelcronEditorBuilder {
|
|
7
7
|
spacingEditor: (name: string, stateMapping: string, individualSelection?: boolean) => VelcronEditorBuilder;
|
8
8
|
imageEditor: (name: string, stateMapping: string) => VelcronEditorBuilder;
|
9
9
|
colorSchemaEditor: (name: string, stateMapping: string) => VelcronEditorBuilder;
|
10
|
-
|
10
|
+
flow: (name: string, stateMapping: string, placeholder?: string) => VelcronEditorBuilder;
|
11
11
|
textEditor: (name: string, stateMapping: string, typographyType: TypographyType, placeholder?: string) => VelcronEditorBuilder;
|
12
12
|
blockHeaderEditor: () => VelcronEditorBuilder;
|
13
13
|
typographyEditor: (stateMapping: string, settings: VelcronTypographyEditorSettings) => VelcronEditorBuilder;
|
@@ -1 +1 @@
|
|
1
|
-
export * from "./
|
1
|
+
export * from "./VelcronDefinitionIds";
|
@@ -12,7 +12,7 @@ export declare const VelcronColumnComponentDescriptor: VelcronComponentDescripto
|
|
12
12
|
export declare const VelcronDialogComponentDescriptor: VelcronComponentDescriptor;
|
13
13
|
export declare const VelcronIconComponentDescriptor: VelcronComponentDescriptor;
|
14
14
|
export declare const VelcronChipComponentDescriptor: VelcronComponentDescriptor;
|
15
|
-
export declare const
|
15
|
+
export declare const VelcronFlowComponentDescriptor: VelcronComponentDescriptor;
|
16
16
|
export declare const VelcronReferenceComponentDescriptor: VelcronComponentDescriptor;
|
17
17
|
export declare const VelcronSliderComponentDescriptor: VelcronComponentDescriptor;
|
18
18
|
export declare const VelcronEditorComponentDescriptor: VelcronComponentDescriptor;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { guid, TreeViewItem, VelcronAppDefinition, VelcronDefinition,
|
1
|
+
import { guid, TreeViewItem, VelcronAppDefinition, VelcronDefinition, VelcronDefinitionRegistrationWithoutApp } from "@omnia/fx-models";
|
2
2
|
import { AppTreeItem, AppValidationState, EditorAppTreeItem, StatePropertyAppTreeItem, editorModes } from "../models/Shared";
|
3
3
|
import { CodeEditorState, VelcronComponentDescriptor, codeEditorTabs, AddVelcronComponentMode } from "../models";
|
4
4
|
import { ThemeDefinitionV2, VelcronRenderContext, VelcronEditor } from "../../core";
|
@@ -38,7 +38,7 @@ export declare const useVelcronEditorStore: () => {
|
|
38
38
|
appData: {};
|
39
39
|
appAsJson: string;
|
40
40
|
appDefinition: VelcronAppDefinition;
|
41
|
-
appRegistration:
|
41
|
+
appRegistration: VelcronDefinitionRegistrationWithoutApp;
|
42
42
|
appCacheKey: guid;
|
43
43
|
appTreeOpenIds: Array<string>;
|
44
44
|
treeViewItems: Array<TreeViewItem<AppTreeItem>>;
|
@@ -61,7 +61,7 @@ export declare const useVelcronEditorStore: () => {
|
|
61
61
|
subscribe(fn: (tree: TreeViewItem<AppTreeItem>[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
62
62
|
};
|
63
63
|
setAppRegistration: {
|
64
|
-
subscribe(fn: (registration:
|
64
|
+
subscribe(fn: (registration: VelcronDefinitionRegistrationWithoutApp) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
65
65
|
};
|
66
66
|
setAppDefinition: {
|
67
67
|
subscribe(fn: (newDefinition: VelcronAppDefinition<object>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -147,7 +147,7 @@ export declare const useVelcronEditorStore: () => {
|
|
147
147
|
subscribe(fn: (result: void, tree: TreeViewItem<AppTreeItem>[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
148
148
|
};
|
149
149
|
setAppRegistration: {
|
150
|
-
subscribe(fn: (result: void, registration:
|
150
|
+
subscribe(fn: (result: void, registration: VelcronDefinitionRegistrationWithoutApp) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
151
151
|
};
|
152
152
|
setAppDefinition: {
|
153
153
|
subscribe(fn: (result: void, newDefinition: VelcronAppDefinition<object>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -233,7 +233,7 @@ export declare const useVelcronEditorStore: () => {
|
|
233
233
|
subscribe(fn: (failureReason: any, tree: TreeViewItem<AppTreeItem>[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
234
234
|
};
|
235
235
|
setAppRegistration: {
|
236
|
-
subscribe(fn: (failureReason: any, registration:
|
236
|
+
subscribe(fn: (failureReason: any, registration: VelcronDefinitionRegistrationWithoutApp) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
237
237
|
};
|
238
238
|
setAppDefinition: {
|
239
239
|
subscribe(fn: (failureReason: any, newDefinition: VelcronAppDefinition<object>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -316,7 +316,7 @@ export declare const useVelcronEditorStore: () => {
|
|
316
316
|
};
|
317
317
|
} & {
|
318
318
|
setAppTree(tree: Array<TreeViewItem<AppTreeItem>>): void;
|
319
|
-
setAppRegistration(registration:
|
319
|
+
setAppRegistration(registration: VelcronDefinitionRegistrationWithoutApp): void;
|
320
320
|
setAppDefinition(newDefinition: VelcronAppDefinition): void;
|
321
321
|
setAppDefinitionFromJson(newState: string): void;
|
322
322
|
mergeInSubState(toMerge: object): void;
|
@@ -353,7 +353,7 @@ export declare const useVelcronEditorStore: () => {
|
|
353
353
|
onMutatedAppData: import("@omnia/fx").MessageBusExposeOnlySubscription<{}>;
|
354
354
|
onMutatedAppAsJson: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
355
355
|
onMutatedAppDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronAppDefinition<object>>;
|
356
|
-
onMutatedAppRegistration: import("@omnia/fx").MessageBusExposeOnlySubscription<
|
356
|
+
onMutatedAppRegistration: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronDefinitionRegistrationWithoutApp>;
|
357
357
|
onMutatedAppCacheKey: import("@omnia/fx").MessageBusExposeOnlySubscription<guid>;
|
358
358
|
onMutatedAppTreeOpenIds: import("@omnia/fx").MessageBusExposeOnlySubscription<string[]>;
|
359
359
|
onMutatedTreeViewItems: import("@omnia/fx").MessageBusExposeOnlySubscription<TreeViewItem<AppTreeItem>[]>;
|
package/internal-do-not-import-from-here/ux/velcron/renderer/components/{Markdown.d.ts → Flow.d.ts}
RENAMED
@@ -1,10 +1,10 @@
|
|
1
|
-
import { VelcronRenderContext,
|
1
|
+
import { VelcronRenderContext, VelcronFlowDefinition } from "../../core";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
definition: import("vue").Prop<
|
4
|
+
definition: import("vue").Prop<VelcronFlowDefinition, VelcronFlowDefinition>;
|
5
5
|
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
6
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
7
|
-
definition: import("vue").Prop<
|
7
|
+
definition: import("vue").Prop<VelcronFlowDefinition, VelcronFlowDefinition>;
|
8
8
|
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
9
9
|
}>>, {}, true, {}, {}, {
|
10
10
|
P: {};
|
@@ -14,18 +14,18 @@ declare const _default: {
|
|
14
14
|
M: {};
|
15
15
|
Defaults: {};
|
16
16
|
}, Readonly<import("vue").ExtractPropTypes<{
|
17
|
-
definition: import("vue").Prop<
|
17
|
+
definition: import("vue").Prop<VelcronFlowDefinition, VelcronFlowDefinition>;
|
18
18
|
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
19
19
|
}>>, {}, {}, {}, {}, {}>;
|
20
20
|
__isFragment?: never;
|
21
21
|
__isTeleport?: never;
|
22
22
|
__isSuspense?: never;
|
23
23
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
24
|
-
definition: import("vue").Prop<
|
24
|
+
definition: import("vue").Prop<VelcronFlowDefinition, VelcronFlowDefinition>;
|
25
25
|
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
26
26
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
27
27
|
propsDefinition: Omit<Readonly<{} & {
|
28
|
-
definition?:
|
28
|
+
definition?: VelcronFlowDefinition;
|
29
29
|
renderContext?: VelcronRenderContext;
|
30
30
|
}>, never>;
|
31
31
|
};
|
@@ -2,10 +2,10 @@ import { VelcronPropertyDefinition } from "../../core";
|
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
definition: import("vue").Prop<VelcronPropertyDefinition, VelcronPropertyDefinition>;
|
5
|
-
renderContext: import("vue").Prop<import("
|
5
|
+
renderContext: import("vue").Prop<import("@omnia/fx-models").VelcronRenderContext, import("@omnia/fx-models").VelcronRenderContext>;
|
6
6
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
7
7
|
definition: import("vue").Prop<VelcronPropertyDefinition, VelcronPropertyDefinition>;
|
8
|
-
renderContext: import("vue").Prop<import("
|
8
|
+
renderContext: import("vue").Prop<import("@omnia/fx-models").VelcronRenderContext, import("@omnia/fx-models").VelcronRenderContext>;
|
9
9
|
}>>, {}, true, {}, {}, {
|
10
10
|
P: {};
|
11
11
|
B: {};
|
@@ -15,18 +15,18 @@ declare const _default: {
|
|
15
15
|
Defaults: {};
|
16
16
|
}, Readonly<import("vue").ExtractPropTypes<{
|
17
17
|
definition: import("vue").Prop<VelcronPropertyDefinition, VelcronPropertyDefinition>;
|
18
|
-
renderContext: import("vue").Prop<import("
|
18
|
+
renderContext: import("vue").Prop<import("@omnia/fx-models").VelcronRenderContext, import("@omnia/fx-models").VelcronRenderContext>;
|
19
19
|
}>>, {}, {}, {}, {}, {}>;
|
20
20
|
__isFragment?: never;
|
21
21
|
__isTeleport?: never;
|
22
22
|
__isSuspense?: never;
|
23
23
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
24
24
|
definition: import("vue").Prop<VelcronPropertyDefinition, VelcronPropertyDefinition>;
|
25
|
-
renderContext: import("vue").Prop<import("
|
25
|
+
renderContext: import("vue").Prop<import("@omnia/fx-models").VelcronRenderContext, import("@omnia/fx-models").VelcronRenderContext>;
|
26
26
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
27
27
|
propsDefinition: Omit<Readonly<{} & {
|
28
28
|
definition?: VelcronPropertyDefinition;
|
29
|
-
renderContext?: import("
|
29
|
+
renderContext?: import("@omnia/fx-models").VelcronRenderContext;
|
30
30
|
}>, never>;
|
31
31
|
};
|
32
32
|
export default _default;
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { EditorLocation,
|
1
|
+
import { EditorLocation, VelcronFlowEditorSettings } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
location: {
|
5
5
|
type: import("vue").PropType<EditorLocation>;
|
6
6
|
};
|
7
7
|
settings: {
|
8
|
-
type: import("vue").PropType<
|
8
|
+
type: import("vue").PropType<VelcronFlowEditorSettings>;
|
9
9
|
};
|
10
10
|
"onUpdate:modelValue": {
|
11
11
|
type: import("vue").PropType<(value: string) => any | void>;
|
@@ -82,7 +82,7 @@ declare const _default: {
|
|
82
82
|
type: import("vue").PropType<EditorLocation>;
|
83
83
|
};
|
84
84
|
settings: {
|
85
|
-
type: import("vue").PropType<
|
85
|
+
type: import("vue").PropType<VelcronFlowEditorSettings>;
|
86
86
|
};
|
87
87
|
"onUpdate:modelValue": {
|
88
88
|
type: import("vue").PropType<(value: string) => any | void>;
|
@@ -164,7 +164,7 @@ declare const _default: {
|
|
164
164
|
type: import("vue").PropType<EditorLocation>;
|
165
165
|
};
|
166
166
|
settings: {
|
167
|
-
type: import("vue").PropType<
|
167
|
+
type: import("vue").PropType<VelcronFlowEditorSettings>;
|
168
168
|
};
|
169
169
|
"onUpdate:modelValue": {
|
170
170
|
type: import("vue").PropType<(value: string) => any | void>;
|
@@ -243,7 +243,7 @@ declare const _default: {
|
|
243
243
|
type: import("vue").PropType<EditorLocation>;
|
244
244
|
};
|
245
245
|
settings: {
|
246
|
-
type: import("vue").PropType<
|
246
|
+
type: import("vue").PropType<VelcronFlowEditorSettings>;
|
247
247
|
};
|
248
248
|
"onUpdate:modelValue": {
|
249
249
|
type: import("vue").PropType<(value: string) => any | void>;
|
@@ -378,7 +378,7 @@ declare const _default: {
|
|
378
378
|
};
|
379
379
|
}>;
|
380
380
|
};
|
381
|
-
settings?:
|
381
|
+
settings?: VelcronFlowEditorSettings;
|
382
382
|
modelValue?: string;
|
383
383
|
"v-model"?: string;
|
384
384
|
"onUpdate:modelValue"?: (value: string) => any | void;
|
package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyResolverEditor.d.ts
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
import { VelcronPropertyResolverEditorSettings } from "@omnia/fx-models";
|
1
|
+
import { VelcronPropertyDefinitionValueResolver, VelcronPropertyResolverEditorSettings } from "@omnia/fx-models";
|
2
2
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
3
|
settings?: VelcronPropertyResolverEditorSettings;
|
4
4
|
} & {
|
5
|
-
"emit:update:modelValue": (value:
|
5
|
+
"emit:update:modelValue": (value: VelcronPropertyDefinitionValueResolver[]) => void;
|
6
6
|
} & {
|
7
|
-
"v-model"?:
|
7
|
+
"v-model"?: VelcronPropertyDefinitionValueResolver[];
|
8
8
|
} & {
|
9
|
-
"onUpdate:modelValue"?: (value:
|
9
|
+
"onUpdate:modelValue"?: (value: VelcronPropertyDefinitionValueResolver[]) => void;
|
10
10
|
} & {
|
11
|
-
modelValue?:
|
11
|
+
modelValue?: VelcronPropertyDefinitionValueResolver[];
|
12
12
|
}>) => any;
|
13
13
|
export default _default;
|