@omnia/fx-models 8.0.28-dev → 8.0.29-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
@@ -184,6 +184,13 @@ export interface AccordionedSectionSettings extends SectionSettings {
184
184
  flatHeader: boolean;
185
185
  singleSelect: boolean;
186
186
  }
187
+ export interface PlaceHolderLayoutRegistration {
188
+ id: GuidValue;
189
+ title: string;
190
+ }
191
+ export interface PlaceHolderSectionSettings extends SectionSettings {
192
+ placeHolderLayoutRegistrationId: GuidValue;
193
+ }
187
194
  export interface StepperSectionSettings extends SectionSettings {
188
195
  type: SectionTypes.Stepper;
189
196
  vertical: boolean;
@@ -149,6 +149,16 @@ export declare const VelcronHeaderStateBinding: {
149
149
  icon: string;
150
150
  };
151
151
  export declare const VelcronContentStateBinding: {
152
+ title: {
153
+ text: string;
154
+ placeholder: string;
155
+ typography: {
156
+ editor: any;
157
+ type: any;
158
+ size: any;
159
+ toned: any;
160
+ };
161
+ };
152
162
  main: {
153
163
  text: string;
154
164
  placeholder: string;
@@ -169,6 +179,16 @@ export declare const VelcronContentStateBinding: {
169
179
  toned: any;
170
180
  };
171
181
  };
182
+ summary: {
183
+ text: string;
184
+ placeholder: string;
185
+ typography: {
186
+ editor: any;
187
+ type: any;
188
+ size: any;
189
+ toned: any;
190
+ };
191
+ };
172
192
  };
173
193
  export declare const VelcronColorSchemasStateBinding: {
174
194
  main: {
@@ -192,6 +212,16 @@ export declare const VelcronStateBinding: {
192
212
  };
193
213
  };
194
214
  content: {
215
+ title: {
216
+ text: string;
217
+ placeholder: string;
218
+ typography: {
219
+ editor: any;
220
+ type: any;
221
+ size: any;
222
+ toned: any;
223
+ };
224
+ };
195
225
  main: {
196
226
  text: string;
197
227
  placeholder: string;
@@ -212,6 +242,16 @@ export declare const VelcronStateBinding: {
212
242
  toned: any;
213
243
  };
214
244
  };
245
+ summary: {
246
+ text: string;
247
+ placeholder: string;
248
+ typography: {
249
+ editor: any;
250
+ type: any;
251
+ size: any;
252
+ toned: any;
253
+ };
254
+ };
215
255
  };
216
256
  header: {
217
257
  title: {
@@ -36,6 +36,16 @@ exports.VelcronHeaderStateBinding = {
36
36
  icon: "{{header.icon}}"
37
37
  };
38
38
  exports.VelcronContentStateBinding = {
39
+ title: {
40
+ text: "{{content.title.text}}",
41
+ placeholder: "{{content.title.placeholder}}",
42
+ typography: {
43
+ editor: "content.title.typography",
44
+ type: "{{content.title.typography.type}}",
45
+ size: "{{content.title.typography.size}}",
46
+ toned: "{{content.title.typography.toned}}",
47
+ }
48
+ },
39
49
  main: {
40
50
  text: "{{content.main.text}}",
41
51
  placeholder: "{{content.main.placeholder}}",
@@ -56,6 +66,16 @@ exports.VelcronContentStateBinding = {
56
66
  toned: "{{content.caption.typography.toned}}",
57
67
  }
58
68
  },
69
+ summary: {
70
+ text: "{{content.summary.text}}",
71
+ placeholder: "{{content.summary.placeholder}}",
72
+ typography: {
73
+ editor: "content.summary.typography",
74
+ type: "{{content.summary.typography.type}}",
75
+ size: "{{content.summary.typography.size}}",
76
+ toned: "{{content.summary.typography.toned}}",
77
+ }
78
+ },
59
79
  };
60
80
  exports.VelcronColorSchemasStateBinding = {
61
81
  main: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.28-dev",
4
+ "version": "8.0.29-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"