@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 CHANGED
@@ -16,7 +16,7 @@ export declare const Constants: {
16
16
  like: ActionHandlerRegistrationId;
17
17
  };
18
18
  components: {
19
- markdown: {
19
+ flow: {
20
20
  plugins: {
21
21
  text: guid;
22
22
  bold: guid;
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
- markdown: {
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 "./markdown";
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("./markdown"), exports);
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);
@@ -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 MarkdownEditorActionRegistration {
3
+ export interface FlowEditorActionRegistration {
4
4
  id: guid;
5
5
  icon: FontAwesomeIcon;
6
6
  altText?: string;
@@ -1,5 +1,5 @@
1
1
  import { guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
- export interface MarkdownPluginRegistration {
2
+ export interface FlowEditorPluginRegistration {
3
3
  id: guid;
4
4
  text: string;
5
5
  altText?: string;
@@ -1,5 +1,5 @@
1
1
  import { guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
- export interface MarkdownPluginSettings {
2
+ export interface FlowEditorPluginSettings {
3
3
  pluginId: guid;
4
4
  settings?: any;
5
5
  }
@@ -0,0 +1,3 @@
1
+ export * from "./FlowEditorActionRegistration";
2
+ export * from "./FlowEditorPluginRegistration";
3
+ export * from "./FlowEditorPluginSettings";
@@ -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
- provider: string;
376
- path: string;
376
+ source: IDataSourcePropertySelection;
377
377
  }
378
378
  export type VelcronRenderProps<TDefinition> = {
379
379
  definition: TDefinition;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.264-dev",
4
+ "version": "8.0.265-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -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 "./MarkdownApi";
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("./MarkdownApi"), exports);
28
+ tslib_1.__exportStar(require("./FlowEditorApi"), exports);
29
29
  tslib_1.__exportStar(require("./FontApi"), exports);
@@ -1,3 +0,0 @@
1
- export * from "./MarkdownActionRegistration";
2
- export * from "./MarkdownPluginRegistration";
3
- export * from "./MarkdownPluginSettings";
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);
@@ -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
- }
File without changes