@omnia/fx-models 8.0.264-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/Constants.d.ts +1 -1
- package/Constants.js +1 -1
- package/Exposes.d.ts +1 -1
- package/Exposes.js +1 -1
- package/{markdown/MarkdownActionRegistration.d.ts → floweditor/FlowEditorActionRegistration.d.ts} +1 -1
- package/{markdown/MarkdownPluginRegistration.d.ts → floweditor/FlowEditorPluginRegistration.d.ts} +1 -1
- package/{markdown/MarkdownPluginSettings.d.ts → floweditor/FlowEditorPluginSettings.d.ts} +1 -1
- package/floweditor/index.d.ts +3 -0
- package/floweditor/index.js +6 -0
- package/internal-do-not-import-from-here/velcron/core/models/VelcronDefinitions.d.ts +2 -2
- package/package.json +1 -1
- package/ux/FlowEditorApi.d.ts +24 -0
- package/ux/index.d.ts +1 -1
- package/ux/index.js +1 -1
- package/markdown/index.d.ts +0 -3
- package/markdown/index.js +0 -6
- package/ux/MarkdownApi.d.ts +0 -24
- /package/{markdown/MarkdownActionRegistration.js → floweditor/FlowEditorActionRegistration.js} +0 -0
- /package/{markdown/MarkdownPluginRegistration.js → floweditor/FlowEditorPluginRegistration.js} +0 -0
- /package/{markdown/MarkdownPluginSettings.js → floweditor/FlowEditorPluginSettings.js} +0 -0
- /package/ux/{MarkdownApi.js → FlowEditorApi.js} +0 -0
package/Constants.d.ts
CHANGED
package/Constants.js
CHANGED
@@ -21,7 +21,7 @@ exports.Constants = {
|
|
21
21
|
like: ActionHandler_1.ActionHandlerRegistrationId.create((0, models_1.guid)("d838c061-1ef4-49cb-8d6d-cee8f67bd17f")),
|
22
22
|
},
|
23
23
|
components: {
|
24
|
-
|
24
|
+
flow: {
|
25
25
|
plugins: {
|
26
26
|
text: (0, models_1.guid)("a9edb1ed-9e97-4c1b-a3ec-9f66d1a97ff9"),
|
27
27
|
bold: (0, models_1.guid)("678ed68f-db27-444a-bc06-f86f8e6c86dc"),
|
package/Exposes.d.ts
CHANGED
@@ -138,7 +138,7 @@ export * from "./statuscodelayout";
|
|
138
138
|
export * from "./system-logs";
|
139
139
|
export * from "./ux";
|
140
140
|
export * from "./velcron";
|
141
|
-
export * from "./
|
141
|
+
export * from "./floweditor";
|
142
142
|
export * from "./versionedlayout";
|
143
143
|
export * from "./ScopedPermissionRegistraion";
|
144
144
|
export * from "./action-btn";
|
package/Exposes.js
CHANGED
@@ -150,7 +150,7 @@ tslib_1.__exportStar(require("./statuscodelayout"), exports);
|
|
150
150
|
tslib_1.__exportStar(require("./system-logs"), exports);
|
151
151
|
tslib_1.__exportStar(require("./ux"), exports);
|
152
152
|
tslib_1.__exportStar(require("./velcron"), exports);
|
153
|
-
tslib_1.__exportStar(require("./
|
153
|
+
tslib_1.__exportStar(require("./floweditor"), exports);
|
154
154
|
tslib_1.__exportStar(require("./versionedlayout"), exports);
|
155
155
|
tslib_1.__exportStar(require("./ScopedPermissionRegistraion"), exports);
|
156
156
|
tslib_1.__exportStar(require("./action-btn"), exports);
|
package/{markdown/MarkdownActionRegistration.d.ts → floweditor/FlowEditorActionRegistration.d.ts}
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { FontAwesomeIcon } from "@omnia/fx-models";
|
2
2
|
import { guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
3
|
-
export interface
|
3
|
+
export interface FlowEditorActionRegistration {
|
4
4
|
id: guid;
|
5
5
|
icon: FontAwesomeIcon;
|
6
6
|
altText?: string;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const tslib_1 = require("tslib");
|
4
|
+
tslib_1.__exportStar(require("./FlowEditorActionRegistration"), exports);
|
5
|
+
tslib_1.__exportStar(require("./FlowEditorPluginRegistration"), exports);
|
6
|
+
tslib_1.__exportStar(require("./FlowEditorPluginSettings"), exports);
|
@@ -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;
|
@@ -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;
|
package/package.json
CHANGED
@@ -0,0 +1,24 @@
|
|
1
|
+
import { FlowEditorPluginRegistration } from "@omnia/fx-models";
|
2
|
+
import { ApiPath } from "../Extends";
|
3
|
+
export interface IFlowEditorPluginRegistrationHandler {
|
4
|
+
getAll: () => Array<FlowEditorPluginRegistration>;
|
5
|
+
register: (plugins: FlowEditorPluginRegistration | FlowEditorPluginRegistration[]) => void;
|
6
|
+
}
|
7
|
+
export interface IFlowEditorPluginRegistration {
|
8
|
+
registration: Promise<IFlowEditorPluginRegistrationHandler>;
|
9
|
+
}
|
10
|
+
export interface IFlowEditorRegistrationApi {
|
11
|
+
plugins: IFlowEditorPluginRegistration;
|
12
|
+
}
|
13
|
+
declare module "./UxApi" {
|
14
|
+
interface IOmniaUxApi {
|
15
|
+
flow: IFlowEditorRegistrationApi;
|
16
|
+
}
|
17
|
+
interface IOmniaUxExtendApiManifest {
|
18
|
+
flow: {
|
19
|
+
plugins: {
|
20
|
+
registration: ApiPath;
|
21
|
+
};
|
22
|
+
};
|
23
|
+
}
|
24
|
+
}
|
package/ux/index.d.ts
CHANGED
@@ -22,6 +22,6 @@ export * from "./MediaGalleryApi";
|
|
22
22
|
export * from "./DynamicPlaceholderApi";
|
23
23
|
export * from "./RouterApi";
|
24
24
|
export * from "./ScopedPermissionApi";
|
25
|
-
export * from "./
|
25
|
+
export * from "./FlowEditorApi";
|
26
26
|
export * from "./FontApi";
|
27
27
|
export { type Directives, type DirectiveDefinition, type IInternalDirectiveRegistration } from "./Directive";
|
package/ux/index.js
CHANGED
@@ -25,5 +25,5 @@ tslib_1.__exportStar(require("./MediaGalleryApi"), exports);
|
|
25
25
|
tslib_1.__exportStar(require("./DynamicPlaceholderApi"), exports);
|
26
26
|
tslib_1.__exportStar(require("./RouterApi"), exports);
|
27
27
|
tslib_1.__exportStar(require("./ScopedPermissionApi"), exports);
|
28
|
-
tslib_1.__exportStar(require("./
|
28
|
+
tslib_1.__exportStar(require("./FlowEditorApi"), exports);
|
29
29
|
tslib_1.__exportStar(require("./FontApi"), exports);
|
package/markdown/index.d.ts
DELETED
package/markdown/index.js
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
const tslib_1 = require("tslib");
|
4
|
-
tslib_1.__exportStar(require("./MarkdownActionRegistration"), exports);
|
5
|
-
tslib_1.__exportStar(require("./MarkdownPluginRegistration"), exports);
|
6
|
-
tslib_1.__exportStar(require("./MarkdownPluginSettings"), exports);
|
package/ux/MarkdownApi.d.ts
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
import { MarkdownPluginRegistration } from "@omnia/fx-models";
|
2
|
-
import { ApiPath } from "../Extends";
|
3
|
-
export interface IMarkdownPluginRegistrationHandler {
|
4
|
-
getAll: () => Array<MarkdownPluginRegistration>;
|
5
|
-
register: (plugins: MarkdownPluginRegistration | MarkdownPluginRegistration[]) => void;
|
6
|
-
}
|
7
|
-
export interface IMarkdownPluginRegistration {
|
8
|
-
registration: Promise<IMarkdownPluginRegistrationHandler>;
|
9
|
-
}
|
10
|
-
export interface IMarkdownRegistrationApi {
|
11
|
-
plugins: IMarkdownPluginRegistration;
|
12
|
-
}
|
13
|
-
declare module "./UxApi" {
|
14
|
-
interface IOmniaUxApi {
|
15
|
-
markdown: IMarkdownRegistrationApi;
|
16
|
-
}
|
17
|
-
interface IOmniaUxExtendApiManifest {
|
18
|
-
markdown: {
|
19
|
-
plugins: {
|
20
|
-
registration: ApiPath;
|
21
|
-
};
|
22
|
-
};
|
23
|
-
}
|
24
|
-
}
|
/package/{markdown/MarkdownActionRegistration.js → floweditor/FlowEditorActionRegistration.js}
RENAMED
File without changes
|
/package/{markdown/MarkdownPluginRegistration.js → floweditor/FlowEditorPluginRegistration.js}
RENAMED
File without changes
|
File without changes
|
File without changes
|