@masterteam/form-builder 0.0.15 → 0.0.17

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.15",
3
+ "version": "0.0.17",
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.1.17",
21
21
  "tailwindcss-primeui": "^0.6.1",
22
- "@masterteam/properties": "^0.0.36",
23
- "@masterteam/components": "^0.0.108",
24
- "@masterteam/icons": "^0.0.13",
25
- "@masterteam/forms": "^0.0.51"
22
+ "@masterteam/icons": "^0.0.14",
23
+ "@masterteam/forms": "^0.0.59",
24
+ "@masterteam/components": "^0.0.124",
25
+ "@masterteam/properties": "^0.0.41"
26
26
  },
27
27
  "sideEffects": false,
28
28
  "exports": {
@@ -24,7 +24,7 @@ declare enum FormBuilderActionKey {
24
24
  ToggleValidationActive = "toggleValidationActive"
25
25
  }
26
26
  type FieldWidth = '25' | '50' | '100';
27
- type FormRenderMode = 'sections' | 'steps' | 'tabs';
27
+ type FormRenderMode = 'sections' | 'steps' | 'tabs' | 'wizard' | undefined;
28
28
  interface FormField {
29
29
  id: string;
30
30
  sectionId: string;
@@ -301,6 +301,11 @@ declare class FormBuilder implements OnInit {
301
301
  value: "tabs";
302
302
  icon: string;
303
303
  color: string;
304
+ } | {
305
+ label: string;
306
+ value: "wizard";
307
+ icon: string;
308
+ color: string;
304
309
  })[]>;
305
310
  constructor();
306
311
  ngOnInit(): void;