@omnia/fx-models 8.0.151-dev → 8.0.153-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/Layout.d.ts CHANGED
@@ -115,8 +115,7 @@ export declare enum SectionTypes {
115
115
  Tab = 2,
116
116
  Accordion = 3,
117
117
  Stepper = 4,
118
- PlaceHolder = 5,
119
- Slider = 6
118
+ Slider = 5
120
119
  }
121
120
  export interface Section<T extends SectionSettings = SectionSettings> extends LayoutItem {
122
121
  name?: string;
@@ -201,19 +200,6 @@ export interface AccordionedSectionSettings extends SectionSettings {
201
200
  flatHeader: boolean;
202
201
  singleSelect: boolean;
203
202
  }
204
- export interface PlaceHolderLayoutRegistration {
205
- id: GuidValue;
206
- title: string;
207
- }
208
- export interface PlaceHolderSectionSettings extends SectionSettings {
209
- placeHolderLayoutRegistrationId: GuidValue;
210
- }
211
- export interface PlaceHolderSectionItemSettings extends SectionItemSettings {
212
- type: SectionTypes.PlaceHolder;
213
- size: string;
214
- minWidth: number;
215
- chrome: string;
216
- }
217
203
  export interface StepperSectionSettings extends SectionSettings {
218
204
  type: SectionTypes.Stepper;
219
205
  vertical: boolean;
package/Layout.js CHANGED
@@ -7,8 +7,7 @@ var SectionTypes;
7
7
  SectionTypes[SectionTypes["Tab"] = 2] = "Tab";
8
8
  SectionTypes[SectionTypes["Accordion"] = 3] = "Accordion";
9
9
  SectionTypes[SectionTypes["Stepper"] = 4] = "Stepper";
10
- SectionTypes[SectionTypes["PlaceHolder"] = 5] = "PlaceHolder";
11
- SectionTypes[SectionTypes["Slider"] = 6] = "Slider";
10
+ SectionTypes[SectionTypes["Slider"] = 5] = "Slider";
12
11
  })(SectionTypes || (exports.SectionTypes = SectionTypes = {}));
13
12
  var JsonNullValueHandling;
14
13
  (function (JsonNullValueHandling) {
package/ManifestIds.d.ts CHANGED
@@ -19,7 +19,7 @@ export declare class OmniaResourceManifests {
19
19
  static get LayoutCanvasShared(): Guid;
20
20
  static get AwesomeProFont(): Guid;
21
21
  static get FxUxVuetifyShared(): Guid;
22
- static get LayoutCanvasPlaceHolderApis(): Guid;
22
+ static get DynamicPlaceholderApis(): Guid;
23
23
  static get AppPlaceHolderApis(): Guid;
24
24
  static get FxUxVuetifyCommon(): Guid;
25
25
  static get FxUxMonacoEditor(): Guid;
package/ManifestIds.js CHANGED
@@ -55,7 +55,7 @@ class OmniaResourceManifests {
55
55
  static get FxUxVuetifyShared() {
56
56
  return new models_1.Guid("8769dc42-712d-4ce2-8d32-4b8604b92ae6");
57
57
  }
58
- static get LayoutCanvasPlaceHolderApis() {
58
+ static get DynamicPlaceholderApis() {
59
59
  return new models_1.Guid("9f2c7a3b-c455-461a-b9e6-b05dcdf37aa1");
60
60
  }
61
61
  static get AppPlaceHolderApis() {
@@ -0,0 +1,8 @@
1
+ export interface IChromeProvider {
2
+ chrome: string;
3
+ }
4
+ export declare const ChromeProvider: IChromeProvider;
5
+ declare module "@omnia/fx-models" {
6
+ interface ILayoutDependencyProvider extends IChromeProvider {
7
+ }
8
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ChromeProvider = void 0;
4
+ exports.ChromeProvider = {
5
+ chrome: "chrome"
6
+ };
@@ -0,0 +1 @@
1
+ export * from "./ChromeProvider";
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./ChromeProvider"), exports);
@@ -1,4 +1,4 @@
1
- import { BackgroundDefinition, BlueprintsReference, ColorSchemaType, ColorValue, FillDefinition } from "./ThemeDefinitionV2";
1
+ import { BackgroundDefinition, BlueprintsReference, ColorSchemaType, ColorValue, FillDefinition, FillDefinitionValue } from "./ThemeDefinitionV2";
2
2
  import { SpacingDefinition, Spacing } from "./Spacing";
3
3
  import { TypographyValue } from "./Typography";
4
4
  export interface BoxDimensions extends Spacing {
@@ -130,7 +130,7 @@ export interface TabsBlueprint extends Blueprint {
130
130
  };
131
131
  }
132
132
  export interface TextBlueprint extends Blueprint {
133
- color?: FillDefinition;
133
+ color?: FillDefinitionValue;
134
134
  typography?: TypographyValue;
135
135
  }
136
136
  export interface IconBlueprint extends Blueprint {
@@ -135,6 +135,8 @@ export interface FillDefinition {
135
135
  acrylic?: boolean;
136
136
  opacity?: number;
137
137
  }
138
+ export type FillVariant = "variant1" | "variant2" | "variant3";
139
+ export type FillDefinitionValue = FillVariant | FillDefinition | ColorValue;
138
140
  export interface LinearGradientFillDefinition extends FillDefinition {
139
141
  degrees: number;
140
142
  }
@@ -1,4 +1,5 @@
1
1
  import { GuidValue } from "../Guid";
2
+ import { FillDefinition } from "./ThemeDefinitionV2";
2
3
  export interface TypographyBlueprint {
3
4
  name: string;
4
5
  font?: {
@@ -6,25 +7,50 @@ export interface TypographyBlueprint {
6
7
  family: string;
7
8
  cdn?: string;
8
9
  };
10
+ fills?: {
11
+ variant1?: FillDefinition;
12
+ variant2?: FillDefinition;
13
+ variant3?: FillDefinition;
14
+ };
9
15
  title: {
10
16
  xl: TypographyDefinition;
11
17
  l: TypographyDefinition;
12
18
  m: TypographyDefinition;
13
19
  s: TypographyDefinition;
14
20
  xs: TypographyDefinition;
21
+ font?: {
22
+ id: GuidValue;
23
+ family: string;
24
+ cdn?: string;
25
+ };
15
26
  };
16
27
  text: {
17
28
  l: TypographyDefinition;
18
29
  m: TypographyDefinition;
19
30
  s: TypographyDefinition;
20
31
  xs: TypographyDefinition;
32
+ font?: {
33
+ id: GuidValue;
34
+ family: string;
35
+ cdn?: string;
36
+ };
21
37
  };
22
38
  navigation: {
23
39
  l: TypographyDefinition;
24
40
  m: TypographyDefinition;
41
+ font?: {
42
+ id: GuidValue;
43
+ family: string;
44
+ cdn?: string;
45
+ };
25
46
  };
26
47
  link: {
27
48
  m: TypographyDefinition;
49
+ font?: {
50
+ id: GuidValue;
51
+ family: string;
52
+ cdn?: string;
53
+ };
28
54
  };
29
55
  }
30
56
  export interface TypographyDefinition {
@@ -1,3 +1,4 @@
1
+ import { IFontAwesomeIcon } from "@omnia/fx-models";
1
2
  import { DynamicState } from "../DynamicState";
2
3
  import { VelcronEvent, VelcronOnEditModeEvent, VelcronOnLoadEvent, VelcronOnPersistingStateEvent, VelcronOnSavingEvent } from "./VelcronEvents";
3
4
  /**
@@ -57,9 +58,10 @@ export interface VelcronComponentDefinition extends VelcronDefinition {
57
58
  icon?: any;
58
59
  }
59
60
  export type VelcronCustomComponentDefinition = VelcronComponentDefinition;
60
- export type BuiltInPropertyEditorType = "text" | "slider" | "switch" | "alignment" | "color" | "markdown" | "icon" | "image" | "typography" | "color-schema-type" | "spacing";
61
- export interface VelcronPropertyEditor<TSettings = any> {
61
+ export type BuiltInPropertyEditorType = "text" | "slider" | "switch" | "alignment" | "color" | "markdown" | "icon" | "image" | "typography" | "spacing" | "color-schema-type" | "reference";
62
+ export interface VelcronStateEditor<TSettings = any> {
62
63
  name?: string;
64
+ icon?: IFontAwesomeIcon;
63
65
  category?: string;
64
66
  type: BuiltInPropertyEditorType | string;
65
67
  settings?: TSettings;
@@ -78,7 +80,7 @@ export interface VelcronAppDefinition<TState extends DynamicState = DynamicState
78
80
  [name: string]: Array<string>;
79
81
  };
80
82
  components?: Array<VelcronCustomComponentDefinition>;
81
- propEditors?: Array<VelcronPropertyEditor>;
83
+ editors?: Array<VelcronStateEditor>;
82
84
  state?: TState;
83
85
  computed?: {
84
86
  [name: string]: Array<string>;
@@ -34,6 +34,7 @@ export interface BuiltInComponentRenderers {
34
34
  "radio": unknown;
35
35
  "rive": unknown;
36
36
  "lottie": unknown;
37
+ "slide-panel": unknown;
37
38
  }
38
39
  export interface ColorSchemaReference {
39
40
  name: string;
@@ -248,9 +249,9 @@ export interface VelcronIconDefinition extends VelcronDefinition, VelcronColorSt
248
249
  }
249
250
  export interface VelcronMarkdownDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling, VelcronTextStyling {
250
251
  type: "markdown";
251
- value: VelcronBindableProp<string>;
252
- placeholder: VelcronBindableProp<string>;
253
- events: VelcronOnUpdatedEvent;
252
+ value?: VelcronBindableProp<string>;
253
+ placeholder?: VelcronBindableProp<string>;
254
+ events?: VelcronOnUpdatedEvent;
254
255
  }
255
256
  export interface VelcronRiveDefinition extends VelcronDefinition {
256
257
  type: "rive";
@@ -270,6 +271,17 @@ export interface VelcronLottieDefinition extends VelcronDefinition {
270
271
  direction?: VelcronBindableProp<"normal" | "reverse">;
271
272
  hover?: VelcronBindableProp<boolean>;
272
273
  }
274
+ export interface VelcronSlidePanelDefinition extends VelcronDefinition {
275
+ type: "slide-panel";
276
+ slidesPerView?: VelcronBindableProp<number>;
277
+ pagination?: VelcronBindableProp<boolean>;
278
+ navigation?: VelcronBindableProp<boolean>;
279
+ scrollbar?: VelcronBindableProp<boolean>;
280
+ autoplay?: VelcronBindableProp<boolean>;
281
+ loop?: VelcronBindableProp<boolean>;
282
+ style?: VelcronCardStyling;
283
+ events?: VelcronOnPressEvent;
284
+ }
273
285
  export interface VelcronDimensions {
274
286
  top: number | string;
275
287
  right: number | string;
@@ -1,34 +1,10 @@
1
- import { TypographySize, TypographyType, VelcronImageRatios, VelcronPropertyEditor, VelcronSpacing } from "@omnia/fx-models";
1
+ import { TypographySize, TypographyType, VelcronImageRatios, VelcronStateEditor, VelcronSpacing, BuiltInPropertyEditorType } from "@omnia/fx-models";
2
2
  export interface ResolvedPropertyEditor {
3
- editor: VelcronPropertyEditor;
4
- }
5
- export interface BuiltInPropertyEditors {
6
- text: unknown;
7
- slider: unknown;
8
- switch: unknown;
9
- alignment: unknown;
10
- color: unknown;
11
- markdown: unknown;
12
- icon: unknown;
13
- image: unknown;
14
- typography: unknown;
15
- spacing: unknown;
16
- "color-schema-type": unknown;
17
- reference: unknown;
18
- }
19
- export declare enum BuiltInPropertyEditorTypes {
20
- text = "text",
21
- slider = "slider",
22
- switch = "switch",
23
- alignment = "alignment",
24
- color = "color",
25
- markdown = "markdown",
26
- icon = "icon",
27
- image = "image",
28
- typography = "typography",
29
- spacing = "spacing",
30
- "color-schema-type" = "color-schema-type"
3
+ editor: VelcronStateEditor;
31
4
  }
5
+ export type BuiltInPropertyEditorMap = {
6
+ [key in BuiltInPropertyEditorType]: unknown;
7
+ };
32
8
  export interface VelcronSliderPropertyEditorSettings {
33
9
  min: number;
34
10
  max: number;
@@ -47,43 +23,43 @@ export interface VelcronTextEditorSettings {
47
23
  type: TypographyType;
48
24
  placeholder: string;
49
25
  }
50
- export interface VelcronSliderPropertyEditor extends VelcronPropertyEditor<VelcronSliderPropertyEditorSettings> {
26
+ export interface VelcronSliderPropertyEditor extends VelcronStateEditor<VelcronSliderPropertyEditorSettings> {
51
27
  type: "slider";
52
28
  }
53
- export interface VelcronTextPropertyEditor extends VelcronPropertyEditor<VelcronTextEditorSettings> {
29
+ export interface VelcronTextPropertyEditor extends VelcronStateEditor<VelcronTextEditorSettings> {
54
30
  type: "text";
55
31
  }
56
- export interface VelcronEnterprisePropertyEditor extends VelcronPropertyEditor<any> {
32
+ export interface VelcronEnterprisePropertyEditor extends VelcronStateEditor<any> {
57
33
  type: "enterprise-property";
58
34
  }
59
- export interface VelcronTypographyPropertyEditor extends VelcronPropertyEditor<VelcronTypographyEditorSettings> {
35
+ export interface VelcronTypographyPropertyEditor extends VelcronStateEditor<VelcronTypographyEditorSettings> {
60
36
  type: "typography";
61
37
  }
62
- export interface VelcronSwitchPropertyEditor extends VelcronPropertyEditor<any> {
38
+ export interface VelcronSwitchPropertyEditor extends VelcronStateEditor<any> {
63
39
  type: "switch";
64
40
  }
65
- export interface VelcronAlignmentPropertyEditor extends VelcronPropertyEditor<any> {
41
+ export interface VelcronAlignmentPropertyEditor extends VelcronStateEditor<any> {
66
42
  type: "alignment";
67
43
  }
68
- export interface VelcronColorPropertyEditor extends VelcronPropertyEditor<any> {
44
+ export interface VelcronColorPropertyEditor extends VelcronStateEditor<any> {
69
45
  type: "color";
70
46
  }
71
- export interface VelcronColorSchemaPropertyEditor extends VelcronPropertyEditor<any> {
47
+ export interface VelcronColorSchemaPropertyEditor extends VelcronStateEditor<any> {
72
48
  type: "color-schema-type";
73
49
  }
74
- export interface VelcronIconPropertyEditor extends VelcronPropertyEditor<any> {
50
+ export interface VelcronIconPropertyEditor extends VelcronStateEditor<any> {
75
51
  type: "icon";
76
52
  }
77
- export interface VelcronMarkdownPropertyEditor extends VelcronPropertyEditor<VelcronMarkdownEditorSettings> {
53
+ export interface VelcronMarkdownPropertyEditor extends VelcronStateEditor<VelcronMarkdownEditorSettings> {
78
54
  type: "markdown";
79
55
  }
80
- export interface VelcronImagePropertyEditor extends VelcronPropertyEditor<any> {
56
+ export interface VelcronImagePropertyEditor extends VelcronStateEditor<any> {
81
57
  type: "image";
82
58
  }
83
- export interface VelcronSpacingPropertyEditor extends VelcronPropertyEditor<VelcronSpacingEditorSettings> {
59
+ export interface VelcronSpacingPropertyEditor extends VelcronStateEditor<VelcronSpacingEditorSettings> {
84
60
  type: "spacing";
85
61
  }
86
- export interface VelcronReferencePropertyEditor extends VelcronPropertyEditor<any> {
62
+ export interface VelcronReferencePropertyEditor extends VelcronStateEditor<any> {
87
63
  type: "reference";
88
64
  }
89
65
  export interface VelcronState {
@@ -1,21 +1,20 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VelcronStateBinding = exports.VelcronSpacingStateBinding = exports.VelcronColorSchemasStateBinding = exports.VelcronContentStateBinding = exports.VelcronHeaderStateBinding = exports.VelcronImagesStateBinding = exports.BuiltInPropertyEditorTypes = void 0;
4
- // export type BuiltInPropertyEditorType = "text" | "slider" | "switch" | "alignment" | "color" | "markdown" | "icon" | "image" | "typography" | "color-schema-type" | "spacing" ;
5
- var BuiltInPropertyEditorTypes;
6
- (function (BuiltInPropertyEditorTypes) {
7
- BuiltInPropertyEditorTypes["text"] = "text";
8
- BuiltInPropertyEditorTypes["slider"] = "slider";
9
- BuiltInPropertyEditorTypes["switch"] = "switch";
10
- BuiltInPropertyEditorTypes["alignment"] = "alignment";
11
- BuiltInPropertyEditorTypes["color"] = "color";
12
- BuiltInPropertyEditorTypes["markdown"] = "markdown";
13
- BuiltInPropertyEditorTypes["icon"] = "icon";
14
- BuiltInPropertyEditorTypes["image"] = "image";
15
- BuiltInPropertyEditorTypes["typography"] = "typography";
16
- BuiltInPropertyEditorTypes["spacing"] = "spacing";
17
- BuiltInPropertyEditorTypes["color-schema-type"] = "color-schema-type";
18
- })(BuiltInPropertyEditorTypes || (exports.BuiltInPropertyEditorTypes = BuiltInPropertyEditorTypes = {}));
3
+ exports.VelcronStateBinding = exports.VelcronSpacingStateBinding = exports.VelcronColorSchemasStateBinding = exports.VelcronContentStateBinding = exports.VelcronHeaderStateBinding = exports.VelcronImagesStateBinding = void 0;
4
+ const builtInPropertyEditors = {
5
+ text: undefined,
6
+ slider: undefined,
7
+ switch: undefined,
8
+ alignment: undefined,
9
+ color: undefined,
10
+ markdown: undefined,
11
+ icon: undefined,
12
+ image: undefined,
13
+ typography: undefined,
14
+ spacing: undefined,
15
+ "color-schema-type": undefined,
16
+ reference: undefined,
17
+ };
19
18
  exports.VelcronImagesStateBinding = {
20
19
  main: {
21
20
  editor: "{{images.main.url}}",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.151-dev",
4
+ "version": "8.0.153-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,37 @@
1
+ import { VNode, h } from "vue";
2
+ import { GuidValue } from "../Exposes";
3
+ import { ApiPath, IExtendApiManifestWithConfiguration } from "../Extends";
4
+ import { LayoutPlaceHolderRegistration } from "../Layout";
5
+ import { IMessageBusTopicSubscription } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
6
+ export interface IInternalDynamicPlaceHolderLayoutRegistration extends IDynamicPlaceHolderLayoutRegistration {
7
+ getRegistrations: () => LayoutPlaceHolderRegistration[];
8
+ }
9
+ export interface IDynamicPlaceHolderLayoutRegistration {
10
+ register: (placeHolder: LayoutPlaceHolderRegistration) => void;
11
+ }
12
+ export interface IDynamicPlaceHolderLayoutHandler {
13
+ register(layoutPlaceHolderRegistrationId: GuidValue, cb: (createVueNode: typeof h) => VNode | void): {
14
+ unregister(): void;
15
+ };
16
+ }
17
+ export interface IInternalDynamicPlaceHolderLayoutHandler extends IDynamicPlaceHolderLayoutHandler {
18
+ getHandlers(placeHolderLayoutRegistrationId: GuidValue): Promise<Array<(createVueNode: typeof h) => VNode | void>>;
19
+ onHandlerChanged(): IMessageBusTopicSubscription<void>;
20
+ }
21
+ declare module "./UxApi" {
22
+ interface IOmniaUxApi {
23
+ dynamicPlaceHolder: {
24
+ registrations: Promise<IDynamicPlaceHolderLayoutRegistration>;
25
+ handlers: Promise<IDynamicPlaceHolderLayoutHandler>;
26
+ };
27
+ }
28
+ interface IOmniaUxExtendApiManifest {
29
+ dynamicPlaceHolder: {
30
+ registrations: ApiPath;
31
+ /**
32
+ * Require PlaceHolderLayoutRegistrationId
33
+ */
34
+ handlers: IExtendApiManifestWithConfiguration<GuidValue>;
35
+ };
36
+ }
37
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,7 +1,5 @@
1
- import { VNode, h } from "vue";
2
- import { GuidValue } from "../Exposes";
3
- import { ApiPath, IExtendApiManifestWithConfiguration } from "../Extends";
4
- import { LayoutPlaceHolderRegistration, LayoutTemplateRegistration } from "../Layout";
1
+ import { ApiPath } from "../Extends";
2
+ import { LayoutTemplateRegistration } from "../Layout";
5
3
  import { IMessageBusTopicSubscription } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
6
4
  export interface IInternalLayoutTemplateRegistration extends ILayoutTemplateRegistration {
7
5
  getAllLayoutTemplates: () => LayoutTemplateRegistration[];
@@ -10,28 +8,9 @@ export interface IInternalLayoutTemplateRegistration extends ILayoutTemplateRegi
10
8
  export interface ILayoutTemplateRegistration {
11
9
  registerLayoutTemplates: (items: LayoutTemplateRegistration | LayoutTemplateRegistration[]) => void;
12
10
  }
13
- export interface IInternalPlaceHolderLayoutRegistration extends IPlaceHolderLayoutRegistration {
14
- getRegistrations: () => LayoutPlaceHolderRegistration[];
15
- }
16
- export interface IPlaceHolderLayoutRegistration {
17
- register: (placeHolder: LayoutPlaceHolderRegistration) => void;
18
- }
19
- export interface IPlaceHolderLayoutHandler {
20
- register(layoutPlaceHolderRegistrationId: GuidValue, cb: (createVueNode: typeof h) => VNode | void): {
21
- unregister(): void;
22
- };
23
- }
24
- export interface IInternalPlaceHolderLayoutHandler extends IPlaceHolderLayoutHandler {
25
- getHandlers(placeHolderLayoutRegistrationId: GuidValue): Promise<Array<(createVueNode: typeof h) => VNode | void>>;
26
- onHandlerChanged(): IMessageBusTopicSubscription<void>;
27
- }
28
11
  declare module "./UxApi" {
29
12
  interface IOmniaUxApi {
30
13
  layoutCanvas: {
31
- placeHolders: {
32
- registrations: Promise<IPlaceHolderLayoutRegistration>;
33
- hanlders: Promise<IPlaceHolderLayoutHandler>;
34
- };
35
14
  templates: {
36
15
  registrations: Promise<ILayoutTemplateRegistration>;
37
16
  };
@@ -39,13 +18,6 @@ declare module "./UxApi" {
39
18
  }
40
19
  interface IOmniaUxExtendApiManifest {
41
20
  layoutCanvas: {
42
- placeHolders: {
43
- registrations: ApiPath;
44
- /**
45
- * Require PlaceHolderLayoutRegistrationId
46
- */
47
- hanlders: IExtendApiManifestWithConfiguration<GuidValue>;
48
- };
49
21
  templates: {
50
22
  registrations: ApiPath;
51
23
  };
package/ux/index.d.ts CHANGED
@@ -19,4 +19,5 @@ export * from "./VelcronDefinitionApi";
19
19
  export * from "./ThemingApi";
20
20
  export * from "./EnterprisePropertyToPropertySettingMappingApi";
21
21
  export * from "./MediaGalleryApi";
22
+ export * from "./DynamicPlaceholderApi";
22
23
  export { type Directives, type DirectiveDefinition, type IInternalDirectiveRegistration } from "./Directive";
package/ux/index.js CHANGED
@@ -22,3 +22,4 @@ tslib_1.__exportStar(require("./VelcronDefinitionApi"), exports);
22
22
  tslib_1.__exportStar(require("./ThemingApi"), exports);
23
23
  tslib_1.__exportStar(require("./EnterprisePropertyToPropertySettingMappingApi"), exports);
24
24
  tslib_1.__exportStar(require("./MediaGalleryApi"), exports);
25
+ tslib_1.__exportStar(require("./DynamicPlaceholderApi"), exports);