@masterteam/form-builder 0.0.31 → 0.0.33

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@masterteam/form-builder",
3
- "version": "0.0.31",
3
+ "version": "0.0.33",
4
4
  "publishConfig": {
5
5
  "directory": "../../../dist/masterteam/form-builder",
6
6
  "linkDirectory": true,
@@ -19,10 +19,10 @@
19
19
  "rxjs": "^7.8.2",
20
20
  "tailwindcss": "^4.2.2",
21
21
  "tailwindcss-primeui": "^0.6.1",
22
- "@masterteam/components": "^0.0.170",
23
- "@masterteam/properties": "^0.0.51",
24
- "@masterteam/icons": "^0.0.15",
25
- "@masterteam/forms": "^0.0.77"
22
+ "@masterteam/properties": "^0.0.55",
23
+ "@masterteam/forms": "^0.0.81",
24
+ "@masterteam/components": "^0.0.176",
25
+ "@masterteam/icons": "^0.0.15"
26
26
  },
27
27
  "sideEffects": false,
28
28
  "exports": {
@@ -31,6 +31,7 @@ interface FormField {
31
31
  sectionId: string;
32
32
  propertyKey: string;
33
33
  property?: PropertyItem;
34
+ propertyMetadata?: PropertyItem;
34
35
  width: FieldWidth;
35
36
  order: number;
36
37
  hiddenInCreation?: boolean;
@@ -146,6 +147,7 @@ interface PropertyItem {
146
147
  propertyId?: number;
147
148
  name: string | Record<string, string>;
148
149
  viewType?: string;
150
+ isTranslatable?: boolean;
149
151
  [key: string]: any;
150
152
  }
151
153
  interface EnrichedFormField extends FormField {