@masterteam/form-builder 0.0.4 → 0.0.6

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.4",
3
+ "version": "0.0.6",
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.28",
23
+ "@masterteam/forms": "^0.0.34",
22
24
  "@masterteam/icons": "^0.0.12",
23
- "@masterteam/properties": "^0.0.26",
24
- "@masterteam/components": "^0.0.76",
25
- "@masterteam/forms": "^0.0.33"
25
+ "@masterteam/components": "^0.0.79"
26
26
  },
27
27
  "sideEffects": false,
28
28
  "exports": {
@@ -154,6 +154,7 @@ declare class FormBuilder {
154
154
  protected readonly facade: FormBuilderFacade;
155
155
  private dialogRef;
156
156
  readonly activeTab: _angular_core.WritableSignal<string>;
157
+ readonly searchQuery: _angular_core.WritableSignal<string>;
157
158
  readonly sections: _angular_core.Signal<_masterteam_form_builder.FormSection[]>;
158
159
  readonly properties: _angular_core.Signal<PropertyItem[]>;
159
160
  readonly isLoading: _angular_core.Signal<boolean>;
@@ -165,6 +166,11 @@ declare class FormBuilder {
165
166
  title: string;
166
167
  properties: PropertyItem[];
167
168
  }[]>;
169
+ readonly filteredPropertiesByTab: _angular_core.Signal<{
170
+ id: string;
171
+ title: string;
172
+ properties: PropertyItem[];
173
+ }[]>;
168
174
  constructor();
169
175
  drop(event: CdkDragDrop<EnrichedFormField[] | PropertyItem[]>): void;
170
176
  addSection(): void;