@omnia/fx-models 8.0.276-dev → 8.0.278-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
@@ -261,6 +261,7 @@ export interface HeaderItemSettings {
261
261
  titleSettings: BlockTitleSettings;
262
262
  anchorName?: string;
263
263
  scrollIntoViewDisabled: boolean;
264
+ titleRenderer?: TitleRendererValue;
264
265
  }
265
266
  export interface SpacingItemSettings {
266
267
  paddingRight: number | SpacingValue;
@@ -60,7 +60,7 @@ export interface VelcronComponentDefinition extends VelcronDefinition {
60
60
  icon?: any;
61
61
  }
62
62
  export type VelcronCustomComponentDefinition = VelcronComponentDefinition;
63
- export type BuiltInPropertyEditorType = "text" | "number" | "slider" | "switch" | "alignment" | "color" | "markdown" | "icon" | "image" | "typography" | "spacing" | "color-schema-type" | "blueprint" | "background" | "grid" | "reference" | "select" | "property-resolver";
63
+ export type BuiltInPropertyEditorType = "text" | "number" | "slider" | "switch" | "alignment" | "color" | "flow" | "icon" | "image" | "typography" | "spacing" | "color-schema-type" | "blueprint" | "background" | "grid" | "reference" | "select" | "property-resolver";
64
64
  export type EditorLocation = "inline" | "pane" | "toolbar";
65
65
  export interface VelcronEditor<TSettings = any> {
66
66
  name?: string;
@@ -1,4 +1,4 @@
1
- import { VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnPressEvent, VelcronSpacing, VelcronStyling, VelcronCustomComponentDefinition, VelcronAppDefinition, VelcronRendererResolverReference, EventHook, Future, TextBlueprint, VelcronBindableProp, VelcronEditor, ContainerBlueprint, BackgroundDefinition, ContainerVariant, IconBlueprint } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
1
+ import { VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnPressEvent, VelcronSpacing, VelcronStyling, VelcronCustomComponentDefinition, VelcronAppDefinition, VelcronRendererResolverReference, EventHook, Future, TextBlueprint, VelcronBindableProp, VelcronEditor, ContainerBlueprint, BackgroundDefinition, ContainerVariant, IconBlueprint, ButtonBlueprint } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
2
  import { VelcroncomponentArrayType, VelcronPrimitiveType } from "./VelcronTypes";
3
3
  import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, VelcronActionTypes, VelcronVerticalAlignments } from "./Enums";
4
4
  import { DynamicState, VelcronDefinition, VelcronEffects, useVelcronThemingStore } from "..";
@@ -46,6 +46,14 @@ export interface OnItemRenderedHookResult {
46
46
  cssClass: string;
47
47
  containerRenderer?: VelcronContainerRenderer;
48
48
  }
49
+ export interface VelcronDisplay {
50
+ size: VelcronDisplaySizes;
51
+ }
52
+ export interface VelcronDisplaySizes {
53
+ sm: boolean;
54
+ md: boolean;
55
+ lg: boolean;
56
+ }
49
57
  export interface VelcronRenderContext {
50
58
  id?: string;
51
59
  rootContext: DynamicState;
@@ -71,6 +79,7 @@ export interface VelcronRenderContext {
71
79
  baseDefinition?: VelcronAppDefinition;
72
80
  subApp?: boolean;
73
81
  subAppreferenceId?: guid;
82
+ $display: VelcronDisplay;
74
83
  }
75
84
  export interface VelcronRenderContextEventHandlers {
76
85
  receiving?: {
@@ -240,13 +249,14 @@ export interface VelcronVideoDefinition extends VelcronDefinition {
240
249
  autoplay?: VelcronBindableProp<boolean>;
241
250
  muted?: VelcronBindableProp<boolean>;
242
251
  }
243
- export interface VelcronButtonDefinition extends VelcronDefinition {
252
+ export interface VelcronButtonDefinition extends VelcronDefinition, VelcronColorStyling {
244
253
  type: "button";
245
254
  text: string;
246
255
  icon?: VelcronIcon;
247
256
  disabled?: boolean;
248
257
  events?: VelcronOnPressEvent;
249
258
  size?: string;
259
+ blueprint?: VelcronBindableProp<ButtonBlueprint>;
250
260
  }
251
261
  export interface VelcronTextInputDefinition extends VelcronDefinition {
252
262
  type: "text-input";
@@ -372,8 +382,10 @@ export interface VelcronPropertyDefinitionValue {
372
382
  configuration: PropertyConfiguration<PropertyDefinition<any, any, any, PropertySetupBase>>;
373
383
  }
374
384
  export interface VelcronPropertyDefinitionValueResolver {
375
- name: string;
376
- source: IDataSourcePropertySelection;
385
+ source?: IDataSourcePropertySelection;
386
+ }
387
+ export interface VelcronPropertyEditorValue {
388
+ [key: string]: VelcronPropertyDefinitionValueResolver;
377
389
  }
378
390
  export type VelcronRenderProps<TDefinition> = {
379
391
  definition: TDefinition;
@@ -37,15 +37,16 @@ export interface VelcronNumberEditorSettings {
37
37
  step: number;
38
38
  }
39
39
  export interface VelcronPropertyMapping {
40
- name: string;
40
+ state: string;
41
+ title: string;
41
42
  definitionId: guid;
42
- dataSourceId?: guid;
43
+ dataSourceIds?: guid[];
43
44
  }
44
45
  export interface VelcronPropertyResolverEditorSettings {
45
46
  properties: Array<VelcronPropertyMapping>;
46
47
  }
47
48
  export interface VelcronBlueprintEditorSettings {
48
- type: "container" | "icon";
49
+ type: "container" | "icon" | "button";
49
50
  }
50
51
  export interface VelcronBackgroundEditorSettings {
51
52
  type: "image" | "video";
@@ -71,8 +71,10 @@ export interface VelcronImageState {
71
71
  }
72
72
  export declare const VelcronImagesStateBinding: {
73
73
  main: {
74
+ mediapickerImage: string;
74
75
  editor: string;
75
76
  url: string;
77
+ value: string;
76
78
  ratio: string;
77
79
  caption: string;
78
80
  width: string;
@@ -81,6 +83,7 @@ export declare const VelcronImagesStateBinding: {
81
83
  alt1: {
82
84
  editor: string;
83
85
  url: string;
86
+ value: string;
84
87
  ratio: string;
85
88
  caption: string;
86
89
  width: string;
@@ -89,6 +92,7 @@ export declare const VelcronImagesStateBinding: {
89
92
  alt2: {
90
93
  editor: string;
91
94
  url: string;
95
+ value: string;
92
96
  ratio: string;
93
97
  caption: string;
94
98
  width: string;
@@ -129,8 +133,10 @@ export declare const VelcronStateBinding: {
129
133
  };
130
134
  images: {
131
135
  main: {
136
+ mediapickerImage: string;
132
137
  editor: string;
133
138
  url: string;
139
+ value: string;
134
140
  ratio: string;
135
141
  caption: string;
136
142
  width: string;
@@ -139,6 +145,7 @@ export declare const VelcronStateBinding: {
139
145
  alt1: {
140
146
  editor: string;
141
147
  url: string;
148
+ value: string;
142
149
  ratio: string;
143
150
  caption: string;
144
151
  width: string;
@@ -147,6 +154,7 @@ export declare const VelcronStateBinding: {
147
154
  alt2: {
148
155
  editor: string;
149
156
  url: string;
157
+ value: string;
150
158
  ratio: string;
151
159
  caption: string;
152
160
  width: string;
@@ -4,28 +4,32 @@ exports.VelcronStateBinding = exports.VelcronStateMapping = exports.VelcronImage
4
4
  const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
5
5
  exports.VelcronImagesStateBinding = {
6
6
  main: {
7
- editor: "{{images.main.url}}",
8
- url: "{{images.main.url}}",
9
- ratio: "{{images.main.ratio}}",
10
- caption: "{{images.main.caption}}",
11
- width: "{{images.main.width}}",
12
- height: "{{images.main.height}}",
7
+ mediapickerImage: (0, models_1.velcronBind)("images.main"),
8
+ editor: (0, models_1.velcronBind)("images.main.url"),
9
+ url: (0, models_1.velcronBind)("images.main.url"),
10
+ value: (0, models_1.velcronBind)("images.main.url"),
11
+ ratio: (0, models_1.velcronBind)("images.main.ratio"),
12
+ caption: (0, models_1.velcronBind)("images.main.caption"),
13
+ width: (0, models_1.velcronBind)("images.main.width"),
14
+ height: (0, models_1.velcronBind)("images.main.height"),
13
15
  },
14
16
  alt1: {
15
- editor: "{{images.alt1.url}}",
16
- url: "{{images.alt1.url}}",
17
- ratio: "{{images.alt1.ratio}}",
18
- caption: "{{images.alt1.caption}}",
19
- width: "{{images.alt1.width}}",
20
- height: "{{images.alt1.height}}",
17
+ editor: (0, models_1.velcronBind)("images.alt1.url"),
18
+ url: (0, models_1.velcronBind)("images.alt1.url"),
19
+ value: (0, models_1.velcronBind)("images.alt1.url"),
20
+ ratio: (0, models_1.velcronBind)("images.alt1.ratio"),
21
+ caption: (0, models_1.velcronBind)("images.alt1.caption"),
22
+ width: (0, models_1.velcronBind)("images.alt1.width"),
23
+ height: (0, models_1.velcronBind)("images.alt1.height"),
21
24
  },
22
25
  alt2: {
23
- editor: "{{images.alt2.url}}",
24
- url: "{{images.alt2.url}}",
25
- ratio: "{{images.alt2.ratio}}",
26
- caption: "{{images.alt2.caption}}",
27
- width: "{{images.alt2.width}}",
28
- height: "{{images.alt2.height}}",
26
+ editor: (0, models_1.velcronBind)("images.alt2.url"),
27
+ url: (0, models_1.velcronBind)("images.alt2.url"),
28
+ value: (0, models_1.velcronBind)("images.alt2.url"),
29
+ ratio: (0, models_1.velcronBind)("images.alt2.ratio"),
30
+ caption: (0, models_1.velcronBind)("images.alt2.caption"),
31
+ width: (0, models_1.velcronBind)("images.alt2.width"),
32
+ height: (0, models_1.velcronBind)("images.alt2.height"),
29
33
  },
30
34
  };
31
35
  const VelcronContentStateBinding = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.276-dev",
4
+ "version": "8.0.278-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -8,7 +8,9 @@ export declare class DataSourcePropertyCategory {
8
8
  constructor(id: guid, title: MultilingualString, order: number, builtIn: boolean);
9
9
  }
10
10
  export declare class DataSourcePropertyDisplayInformation {
11
+ name: string;
11
12
  title: string;
12
13
  category?: DataSourcePropertyCategory;
13
- constructor(title: string, category?: DataSourcePropertyCategory);
14
+ constructor(name: string, // like property internal name use to query
15
+ title: string, category?: DataSourcePropertyCategory);
14
16
  }
@@ -11,7 +11,9 @@ class DataSourcePropertyCategory {
11
11
  }
12
12
  exports.DataSourcePropertyCategory = DataSourcePropertyCategory;
13
13
  class DataSourcePropertyDisplayInformation {
14
- constructor(title, category) {
14
+ constructor(name, // like property internal name use to query
15
+ title, category) {
16
+ this.name = name;
15
17
  this.title = title;
16
18
  this.category = category;
17
19
  }