@skedulo/mex-types 1.9.0 → 1.10.0

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.
@@ -9,6 +9,10 @@ export interface BaseFlatPageViewComponentModel extends BaseComponentModel {
9
9
  */
10
10
  showIfExpression?: DataExpressionType;
11
11
  }
12
+ export interface TextViewComponentModel extends BaseFlatPageViewComponentModel {
13
+ title?: LocalizedKey;
14
+ text: LocalizedKey;
15
+ }
12
16
  export type KeyboardType = 'default' | 'email-address' | 'numeric' | 'phone-pad' | 'number-pad' | 'decimal-pad';
13
17
  export interface CommonEditorViewComponentModel extends BaseFlatPageViewComponentModel {
14
18
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skedulo/mex-types",
3
- "version": "1.9.0",
3
+ "version": "1.10.0",
4
4
  "engines": {
5
5
  "node": "18"
6
6
  },