@omnia/fx-models 8.0.90-vnext → 8.0.92-vnext

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.
Files changed (30) hide show
  1. package/ManifestIds.d.ts +1 -0
  2. package/ManifestIds.js +3 -0
  3. package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +3 -3
  4. package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +3 -4
  5. package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.js +0 -1
  6. package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.js +0 -3
  7. package/internal-do-not-import-from-here/velcron/core/models/Enums.d.ts +6 -0
  8. package/internal-do-not-import-from-here/velcron/core/models/Enums.js +8 -1
  9. package/internal-do-not-import-from-here/velcron/core/models/VelcronDefinitions.d.ts +28 -9
  10. package/internal-do-not-import-from-here/velcron/core/models/VelcronDefinitions.js +1 -1
  11. package/internal-do-not-import-from-here/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +2 -1
  12. package/oxide/OxideTypeDefinitions.d.ts +1 -1
  13. package/oxide/OxideTypeDefinitions.js +1 -1
  14. package/oxide/SharedSettings.d.ts +4 -0
  15. package/oxide/SharedSettings.js +2 -0
  16. package/oxide/index.d.ts +1 -0
  17. package/oxide/index.js +1 -0
  18. package/package.json +1 -1
  19. package/properties/IPropertyValueRenderer.d.ts +3 -4
  20. package/properties/definitions/MultilingualTextPropertyDefinition.d.ts +3 -3
  21. package/properties/definitions/MultilingualTextPropertyDefinition.js +3 -3
  22. package/properties/values/DatePropertyValue.d.ts +1 -1
  23. package/properties/values/DatePropertyValue.js +1 -1
  24. package/ux/ThemingApi.d.ts +19 -0
  25. package/ux/ThemingApi.js +2 -0
  26. package/ux/VelcronDefinitionApi.d.ts +24 -0
  27. package/ux/VelcronDefinitionApi.js +2 -0
  28. package/ux/index.d.ts +2 -0
  29. package/ux/index.js +2 -0
  30. package/velcron/VelcronDefinitionRegistration.d.ts +1 -1
package/ManifestIds.d.ts CHANGED
@@ -177,6 +177,7 @@ export declare class OmniaWebComponentManifests {
177
177
  static get OTab(): Guid;
178
178
  static get OTabs(): Guid;
179
179
  static get OText(): Guid;
180
+ static get OLink(): Guid;
180
181
  static get OTextArea(): Guid;
181
182
  static get OTextField(): Guid;
182
183
  static get OToolbar(): Guid;
package/ManifestIds.js CHANGED
@@ -544,6 +544,9 @@ class OmniaWebComponentManifests {
544
544
  static get OText() {
545
545
  return new models_1.Guid("b5a11307-4f70-4ba8-9e1e-e4102ea95536");
546
546
  }
547
+ static get OLink() {
548
+ return new models_1.Guid("75cd9309-9dd1-4646-9e0c-e6b5b1cac14d");
549
+ }
547
550
  static get OTextArea() {
548
551
  return new models_1.Guid("1e7db8a9-8533-485d-97b4-359f64601ff0");
549
552
  }
@@ -50,7 +50,7 @@ export interface ThemeDefinitionV2 {
50
50
  colors: ColorSchemas;
51
51
  blueprints: BluePrintDefinitions;
52
52
  }
53
- export type ColorSchemaType = "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | "error" | "info";
53
+ export type ColorSchemaType = keyof typeof ColorSchemaTypes;
54
54
  export declare enum ColorSchemaTypes {
55
55
  primary = "primary",
56
56
  secondary = "secondary",
@@ -62,14 +62,14 @@ export declare enum ColorSchemaTypes {
62
62
  error = "error",
63
63
  info = "info"
64
64
  }
65
- export type BlueprintType = "default" | "variant1" | "variant2" | "variant3";
65
+ export type BlueprintType = keyof typeof BlueprintTypes;
66
66
  export declare enum BlueprintTypes {
67
67
  default = "default",
68
68
  variant1 = "variant1",
69
69
  variant2 = "variant2",
70
70
  variant3 = "variant3"
71
71
  }
72
- export type ColorType = "base" | "onBase" | "container" | "onContainer";
72
+ export type ColorType = keyof typeof ColorTypes;
73
73
  export declare enum ColorTypes {
74
74
  base = "base",
75
75
  onBase = "onBase",
@@ -33,14 +33,13 @@ export interface TypographyTypeBreakPoint {
33
33
  size: number;
34
34
  lineHeight: number;
35
35
  }
36
- export type TypographyType = "title" | "text" | "navigation" | "link";
36
+ export type TypographyType = keyof typeof TypographyTypes;
37
37
  export declare enum TypographyTypes {
38
38
  title = "title",
39
39
  text = "text",
40
- navigation = "navigation",
41
- link = "link"
40
+ navigation = "navigation"
42
41
  }
43
- export type TypographySize = "xl" | "l" | "m" | "s" | "xs";
42
+ export type TypographySize = keyof typeof TypographySizes;
44
43
  export declare enum TypographySizes {
45
44
  xl = "xl",
46
45
  l = "l",
@@ -6,7 +6,6 @@ var TypographyTypes;
6
6
  TypographyTypes["title"] = "title";
7
7
  TypographyTypes["text"] = "text";
8
8
  TypographyTypes["navigation"] = "navigation";
9
- TypographyTypes["link"] = "link";
10
9
  })(TypographyTypes = exports.TypographyTypes || (exports.TypographyTypes = {}));
11
10
  var TypographySizes;
12
11
  (function (TypographySizes) {
@@ -59,9 +59,6 @@ function useThemeMethods(getThemeDefinition) {
59
59
  else if (typographyType === TypographyDefinition_1.TypographyTypes.navigation) {
60
60
  return typographyBlueprint.definition[size];
61
61
  }
62
- else if (typographyType === TypographyDefinition_1.TypographyTypes.link) {
63
- return typographyBlueprint.definition.link[TypographyDefinition_1.TypographySizes.m];
64
- }
65
62
  }
66
63
  function color(colorSchemaType, colorType) {
67
64
  const mappedColorSchema = colorSchema(colorSchemaType);
@@ -16,6 +16,12 @@ export declare enum VelcronActionTypes {
16
16
  export declare enum VelcronIconTypes {
17
17
  fontAwesome = "fa"
18
18
  }
19
+ export declare enum VelcronViewDirections {
20
+ row = "row",
21
+ column = "column",
22
+ rowReverse = "row-reverse",
23
+ columnRevers = "column-reverse"
24
+ }
19
25
  export declare enum VelcronHorizontalAlignments {
20
26
  left = "left",
21
27
  center = "center",
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VelcronDataTypes = exports.VelcronVerticalAlignments = exports.VelcronHorizontalAlignments = exports.VelcronIconTypes = exports.VelcronActionTypes = exports.AssignOperators = void 0;
3
+ exports.VelcronDataTypes = exports.VelcronVerticalAlignments = exports.VelcronHorizontalAlignments = exports.VelcronViewDirections = exports.VelcronIconTypes = exports.VelcronActionTypes = exports.AssignOperators = void 0;
4
4
  var AssignOperators;
5
5
  (function (AssignOperators) {
6
6
  AssignOperators["equals"] = "=";
@@ -22,6 +22,13 @@ var VelcronIconTypes;
22
22
  (function (VelcronIconTypes) {
23
23
  VelcronIconTypes["fontAwesome"] = "fa";
24
24
  })(VelcronIconTypes = exports.VelcronIconTypes || (exports.VelcronIconTypes = {}));
25
+ var VelcronViewDirections;
26
+ (function (VelcronViewDirections) {
27
+ VelcronViewDirections["row"] = "row";
28
+ VelcronViewDirections["column"] = "column";
29
+ VelcronViewDirections["rowReverse"] = "row-reverse";
30
+ VelcronViewDirections["columnRevers"] = "column-reverse";
31
+ })(VelcronViewDirections = exports.VelcronViewDirections || (exports.VelcronViewDirections = {}));
25
32
  var VelcronHorizontalAlignments;
26
33
  (function (VelcronHorizontalAlignments) {
27
34
  VelcronHorizontalAlignments["left"] = "left";
@@ -2,12 +2,13 @@ import { VelcronEvent, VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnClo
2
2
  import { VelcroncomponentArrayType, VelcronPrimitiveType } from "./VelcronTypes";
3
3
  import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, VelcronActionTypes, VelcronVerticalAlignments } from "./Enums";
4
4
  import { VelcronPropertyEditor, useVelcronThemingStore } from "..";
5
+ import { GuidValue, PropertyConfiguration, PropertyValue, PropertyDefinition, PropertySetupBase } from "@omnia/fx/models";
5
6
  import { useVelcronColorSchemaStore } from "../stores/VelcronColorSchema";
6
7
  import { useVelcronBlueprintStore } from "../stores/VelcronBlueprint";
7
8
  export interface ResolvedComponentRenderer {
8
9
  component: unknown;
9
10
  definition: VelcronDefinition;
10
- customComponent: boolean;
11
+ customComponent?: boolean;
11
12
  }
12
13
  export interface BuiltInComponentRenderers {
13
14
  "view": unknown;
@@ -23,6 +24,8 @@ export interface BuiltInComponentRenderers {
23
24
  "icon": unknown;
24
25
  "chip": unknown;
25
26
  "markdown": unknown;
27
+ "slot": unknown;
28
+ "property": unknown;
26
29
  }
27
30
  export interface ColorSchemaReference {
28
31
  name: string;
@@ -120,6 +123,7 @@ export interface VelcronDefinitionWithEditMode extends VelcronDefinition {
120
123
  bind?: VelcronBindableProp;
121
124
  }
122
125
  interface VelcronDimensionStyling {
126
+ margin?: VelcronSpacing;
123
127
  padding?: VelcronSpacing;
124
128
  }
125
129
  export interface VelcronColorStyling {
@@ -163,8 +167,8 @@ export interface VelcronIcon {
163
167
  }
164
168
  export interface VelcronAppDefinition<TState extends DynamicState = DynamicState> extends VelcronDefinitionBase {
165
169
  type: "velcron";
166
- version: string;
167
- name: string;
170
+ version?: string;
171
+ name?: string;
168
172
  body?: Array<VelcronDefinition>;
169
173
  events?: VelcronOnLoadEvent & VelcronOnEditModeEvent;
170
174
  actions?: {
@@ -187,10 +191,10 @@ export interface VelcronComponentDefinition extends VelcronDefinition {
187
191
  export interface VelcronViewDefinition extends VelcronDefinition, VelcronColorStyling {
188
192
  type: "view";
189
193
  events?: VelcronOnPressEvent;
190
- direction?: "row" | "column" | "row-reverse" | "column-reverse" | string;
194
+ direction?: VelcronBindableProp<"row" | "column" | "row-reverse" | "column-reverse">;
191
195
  columnStyle?: object;
192
- horizontalAlignment?: VelcronHorizontalAlignments;
193
- verticalAlignment?: VelcronVerticalAlignments;
196
+ hAlign?: VelcronHorizontalAlignments;
197
+ vAlign?: VelcronVerticalAlignments;
194
198
  grow?: number;
195
199
  absolute?: VelcronSpacing;
196
200
  border?: VelcronBorder;
@@ -215,12 +219,12 @@ export interface VelcronTextDefinition extends VelcronDefinitionWithEditMode, Ve
215
219
  }
216
220
  export declare enum VelcronImageRatios {
217
221
  square = "square",
218
- landscape = "landscapre"
222
+ landscape = "landscape"
219
223
  }
220
224
  export interface VelcronImageDefinition extends VelcronDefinition {
221
225
  type: "image";
222
226
  source: string;
223
- ratio: VelcronImageRatios | string;
227
+ ratio?: VelcronImageRatios | string;
224
228
  cover?: VelcronBindableProp<boolean>;
225
229
  borderRadius?: VelcronDimensions;
226
230
  events?: VelcronOnPressEvent;
@@ -270,7 +274,9 @@ export interface VelcronDimensions {
270
274
  left: number | string;
271
275
  }
272
276
  export interface VelcronBorder extends VelcronDimensions {
273
- color: string;
277
+ colorType?: string;
278
+ toned?: boolean;
279
+ opacity?: number;
274
280
  }
275
281
  export interface VelcronChipDefinition extends VelcronDefinition {
276
282
  type: "chip";
@@ -279,6 +285,19 @@ export interface VelcronChipDefinition extends VelcronDefinition {
279
285
  disabled?: boolean;
280
286
  events?: VelcronOnPressEvent;
281
287
  }
288
+ export interface VelcronSlotDefinition extends VelcronDefinition {
289
+ type: "slot";
290
+ bind: VelcronBindableProp<string>;
291
+ }
292
+ export interface VelcronPropertyDefinition extends VelcronDefinition {
293
+ type: "property";
294
+ bind: VelcronBindableProp<string>;
295
+ }
296
+ export interface VelcronPropertyDefinitionValue {
297
+ definitionId: GuidValue;
298
+ value: PropertyValue;
299
+ configuration: PropertyConfiguration<PropertyDefinition<any, any, any, PropertySetupBase>>;
300
+ }
282
301
  export type VelcronCustomComponentDefinition = VelcronComponentDefinition;
283
302
  export type VelcronRenderProps<TDefinition> = {
284
303
  definition: TDefinition;
@@ -4,5 +4,5 @@ exports.VelcronImageRatios = void 0;
4
4
  var VelcronImageRatios;
5
5
  (function (VelcronImageRatios) {
6
6
  VelcronImageRatios["square"] = "square";
7
- VelcronImageRatios["landscape"] = "landscapre";
7
+ VelcronImageRatios["landscape"] = "landscape";
8
8
  })(VelcronImageRatios = exports.VelcronImageRatios || (exports.VelcronImageRatios = {}));
@@ -8,7 +8,8 @@ export interface VelcronPropertyEditor<TSettings = any> {
8
8
  type: BuiltInPropertyEditorType | string;
9
9
  settings?: TSettings;
10
10
  stateMapping?: string;
11
- propertyMapping?: string;
11
+ propertyMapping?: boolean;
12
+ multiple?: boolean;
12
13
  component?: unknown;
13
14
  }
14
15
  export interface BuiltInPropertyEditors {
@@ -44,7 +44,7 @@ export declare const DialogTypeDefinitions: readonly ["save-cancel", "confirm",
44
44
  export type DialogTypes = typeof DialogTypeDefinitions[number];
45
45
  export declare const DialogTypesName = "DialogTypes";
46
46
  /** Expansion Panel */
47
- export declare const PanelTypeDefinitions: readonly ["default", "navigation"];
47
+ export declare const PanelTypeDefinitions: readonly ["default", "navigation", "section", "tab"];
48
48
  export type PanelTypes = typeof PanelTypeDefinitions[number];
49
49
  export declare const PanelTypesName = "PanelTypes";
50
50
  /**Icon */
@@ -34,7 +34,7 @@ exports.AlignmentTypesName = "AlignmentTypes";
34
34
  exports.DialogTypeDefinitions = ["save-cancel", "confirm", "ok-cancel", "default", "app"];
35
35
  exports.DialogTypesName = "DialogTypes";
36
36
  /** Expansion Panel */
37
- exports.PanelTypeDefinitions = ["default", "navigation"];
37
+ exports.PanelTypeDefinitions = ["default", "navigation", "section", "tab"];
38
38
  exports.PanelTypesName = "PanelTypes";
39
39
  /**Icon */
40
40
  exports.IconPresetDefinitions = ["add", "delete", "edit", "drag-handle", "copy", "code", "expand", "remove", "info"];
@@ -0,0 +1,4 @@
1
+ export interface ExpansionPanelSharedSettings {
2
+ variant?: string;
3
+ toned?: boolean;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/oxide/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from "./TreeView";
2
2
  export * from "./OxideTypeDefinitions";
3
+ export * from "./SharedSettings";
package/oxide/index.js CHANGED
@@ -3,3 +3,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./TreeView"), exports);
5
5
  tslib_1.__exportStar(require("./OxideTypeDefinitions"), exports);
6
+ tslib_1.__exportStar(require("./SharedSettings"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.90-vnext",
4
+ "version": "8.0.92-vnext",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -4,20 +4,19 @@ import { PropertyDefinition, PropertyDisplaySettingsType, PropertyEditorSettings
4
4
  * Interface for webcomponent rendering a property value belonging to a property definition
5
5
  * */
6
6
  export interface IPropertyDisplayRenderer<TPropertyDef extends PropertyDefinition<any, any, any>> {
7
- valueBind: PropertyValueType<TPropertyDef>;
7
+ modelValue: PropertyValueType<TPropertyDef>;
8
8
  displaySettings: PropertyDisplaySettingsType<TPropertyDef>;
9
9
  setupSettings?: PropertySetupSettingsType<TPropertyDef>;
10
10
  }
11
11
  export interface IPropertyEditorRenderer<TPropertyDef extends PropertyDefinition<any, any, any>> {
12
- valueBind: PropertyValueType<TPropertyDef>;
12
+ modelValue: PropertyValueType<TPropertyDef>;
13
13
  editorSettings: PropertyEditorSettingsType<TPropertyDef>;
14
14
  displaySettings: PropertyDisplaySettingsType<TPropertyDef>;
15
15
  setupSettings?: PropertySetupSettingsType<TPropertyDef>;
16
- onValueBindChanged(newValue: PropertyValueType<TPropertyDef>): void;
17
16
  disabled?: boolean;
18
17
  }
19
18
  export interface IPropertyConfigurationRenderer<TPropertyDef extends PropertyDefinition<any, any, any>> {
20
- valueBind: PropertyConfiguration<TPropertyDef>;
19
+ modelValue: PropertyConfiguration<TPropertyDef>;
21
20
  /**
22
21
  * Call each time the configuration is considered valid, i.e. the values of the configuration is good
23
22
  * Also called when no longer valid, but with value null
@@ -1,16 +1,16 @@
1
1
  import { Guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
2
  import { PropertyDefinition, PropertyDisplaySettingsBase } from "../PropertyDefinition";
3
3
  import { MultilingualTextPropertyValue } from "../values";
4
- export declare class MultilinugalTextDisplaySettings extends PropertyDisplaySettingsBase {
4
+ export declare class MultilingualTextDisplaySettings extends PropertyDisplaySettingsBase {
5
5
  inline?: boolean;
6
6
  }
7
- export type MultilinugalTextEditorSettings = {
7
+ export type MultilingualTextEditorSettings = {
8
8
  required?: boolean;
9
9
  maxLength?: number;
10
10
  multiLine?: boolean;
11
11
  rows?: number;
12
12
  };
13
- export declare class MultilingualTextPropertyDefinition extends PropertyDefinition<MultilingualTextPropertyValue, MultilinugalTextDisplaySettings, MultilinugalTextEditorSettings> {
13
+ export declare class MultilingualTextPropertyDefinition extends PropertyDefinition<MultilingualTextPropertyValue, MultilingualTextDisplaySettings, MultilingualTextEditorSettings> {
14
14
  id: Guid;
15
15
  typeName: string;
16
16
  }
@@ -1,11 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MultilingualTextPropertyDefinition = exports.MultilinugalTextDisplaySettings = void 0;
3
+ exports.MultilingualTextPropertyDefinition = exports.MultilingualTextDisplaySettings = void 0;
4
4
  const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
5
5
  const PropertyDefinition_1 = require("../PropertyDefinition");
6
- class MultilinugalTextDisplaySettings extends PropertyDefinition_1.PropertyDisplaySettingsBase {
6
+ class MultilingualTextDisplaySettings extends PropertyDefinition_1.PropertyDisplaySettingsBase {
7
7
  }
8
- exports.MultilinugalTextDisplaySettings = MultilinugalTextDisplaySettings;
8
+ exports.MultilingualTextDisplaySettings = MultilingualTextDisplaySettings;
9
9
  class MultilingualTextPropertyDefinition extends PropertyDefinition_1.PropertyDefinition {
10
10
  constructor() {
11
11
  super(...arguments);
@@ -1,6 +1,6 @@
1
1
  import { PropertyValue } from "../PropertyValue";
2
2
  export declare class DatePropertyValue extends PropertyValue {
3
3
  date: string;
4
- timeZoneid: string;
4
+ timeZoneId: string;
5
5
  constructor(date: Date, timeZoneId: string);
6
6
  }
@@ -6,7 +6,7 @@ class DatePropertyValue extends PropertyValue_1.PropertyValue {
6
6
  constructor(date, timeZoneId) {
7
7
  super();
8
8
  this.date = date.toJSON();
9
- this.timeZoneid = timeZoneId.toString();
9
+ this.timeZoneId = timeZoneId.toString();
10
10
  }
11
11
  }
12
12
  exports.DatePropertyValue = DatePropertyValue;
@@ -0,0 +1,19 @@
1
+ import { ThemeDefinitionV2 } from "@omnia/fx-models";
2
+ import { ApiPath } from "../Extends";
3
+ export interface IThemeRegistrationApiHandler {
4
+ getAll(): any;
5
+ register(definitions: ThemeDefinitionV2 | ThemeDefinitionV2[]): any;
6
+ }
7
+ export interface IThemeRegistrationApi {
8
+ registration: Promise<IThemeRegistrationApiHandler>;
9
+ }
10
+ declare module "./UxApi" {
11
+ interface IOmniaUxApi {
12
+ theming: IThemeRegistrationApi;
13
+ }
14
+ interface IOmniaUxExtendApiManifest {
15
+ theming: {
16
+ registration: ApiPath;
17
+ };
18
+ }
19
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,24 @@
1
+ import { VelcronDefinitionRegistration } from "@omnia/fx-models";
2
+ import { ApiPath } from "../Extends";
3
+ export interface IVelcronDefinitionRegistrationHandler {
4
+ getAll(): any;
5
+ register(definitions: VelcronDefinitionRegistration | VelcronDefinitionRegistration[]): any;
6
+ }
7
+ export interface IVelcronDefinitionRegistration {
8
+ registration: Promise<IVelcronDefinitionRegistrationHandler>;
9
+ }
10
+ export interface IVelcronRegistrationApi {
11
+ definitions: IVelcronDefinitionRegistration;
12
+ }
13
+ declare module "./UxApi" {
14
+ interface IOmniaUxApi {
15
+ velcron: IVelcronRegistrationApi;
16
+ }
17
+ interface IOmniaUxExtendApiManifest {
18
+ velcron: {
19
+ definitions: {
20
+ registration: ApiPath;
21
+ };
22
+ };
23
+ }
24
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/ux/index.d.ts CHANGED
@@ -15,3 +15,5 @@ export * from "./LinkHandlerApi";
15
15
  export * from "./FeatureManagementApi";
16
16
  export * from "./FeatureValidatorBase";
17
17
  export * from "./SidePanelApi";
18
+ export * from "./VelcronDefinitionApi";
19
+ export * from "./ThemingApi";
package/ux/index.js CHANGED
@@ -18,3 +18,5 @@ tslib_1.__exportStar(require("./LinkHandlerApi"), exports);
18
18
  tslib_1.__exportStar(require("./FeatureManagementApi"), exports);
19
19
  tslib_1.__exportStar(require("./FeatureValidatorBase"), exports);
20
20
  tslib_1.__exportStar(require("./SidePanelApi"), exports);
21
+ tslib_1.__exportStar(require("./VelcronDefinitionApi"), exports);
22
+ tslib_1.__exportStar(require("./ThemingApi"), exports);
@@ -1,5 +1,5 @@
1
1
  import { DynamicState, Guid, ThemeDefinitionV2, VelcronAppDefinition } from "..";
2
- export type VelcronDefitinionRegistrationsTypes = "content" | "card" | "header" | "general";
2
+ export type VelcronDefitinionRegistrationsTypes = "content" | "card" | "header" | "general" | "property";
3
3
  export interface VelcronDefinitionRegistration<TDefinitionState extends DynamicState = DynamicState> {
4
4
  id: Guid;
5
5
  definition: VelcronAppDefinition<TDefinitionState>;