@masterteam/form-builder 0.0.28 → 0.0.30
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.
|
|
3
|
+
"version": "0.0.30",
|
|
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/
|
|
23
|
-
"@masterteam/forms": "^0.0.
|
|
22
|
+
"@masterteam/properties": "^0.0.50",
|
|
23
|
+
"@masterteam/forms": "^0.0.77",
|
|
24
24
|
"@masterteam/icons": "^0.0.15",
|
|
25
|
-
"@masterteam/
|
|
25
|
+
"@masterteam/components": "^0.0.169"
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|
|
28
28
|
"exports": {
|
|
@@ -258,6 +258,8 @@ declare class FormBuilder implements OnInit {
|
|
|
258
258
|
readonly canvasStyleClass: _angular_core.InputSignal<string>;
|
|
259
259
|
/** Operating mode: 'builder' (full editor) or 'manageProperties' (read/write permissions only). */
|
|
260
260
|
readonly mode: _angular_core.InputSignal<FormBuilderMode>;
|
|
261
|
+
/** Controls the draggable properties sidebar independently from the main builder canvas. */
|
|
262
|
+
readonly showPropertiesSection: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
261
263
|
private dialogRef;
|
|
262
264
|
readonly sections: _angular_core.Signal<_masterteam_form_builder.FormSection[]>;
|
|
263
265
|
readonly formConfiguration: _angular_core.Signal<_masterteam_form_builder.FormConfiguration | null>;
|
|
@@ -279,8 +281,12 @@ declare class FormBuilder implements OnInit {
|
|
|
279
281
|
private scopeNavigation;
|
|
280
282
|
private initialRequestId;
|
|
281
283
|
private scopeRequestId;
|
|
282
|
-
private
|
|
284
|
+
private lastFormConfigurationContextKey;
|
|
285
|
+
private lastResolvedContextKey;
|
|
286
|
+
private hasResolvedContextState;
|
|
287
|
+
private initialContextStateCleared;
|
|
283
288
|
private readonly contextKey;
|
|
289
|
+
readonly propertiesSectionVisible: _angular_core.Signal<boolean>;
|
|
284
290
|
private readonly usedPropertyKeys;
|
|
285
291
|
private readonly propertiesMap;
|
|
286
292
|
/** Navigation options from initial context */
|
|
@@ -319,7 +325,9 @@ declare class FormBuilder implements OnInit {
|
|
|
319
325
|
})[]>;
|
|
320
326
|
constructor();
|
|
321
327
|
ngOnInit(): void;
|
|
328
|
+
private syncContextData;
|
|
322
329
|
private loadInitialContext;
|
|
330
|
+
private clearInitialContextState;
|
|
323
331
|
onScopeChange(scope: ScopeKey): void;
|
|
324
332
|
private loadScopeContext;
|
|
325
333
|
private resetScopeState;
|
|
@@ -368,7 +376,7 @@ declare class FormBuilder implements OnInit {
|
|
|
368
376
|
resetFormConfiguration(): void;
|
|
369
377
|
noReturnPredicate: () => boolean;
|
|
370
378
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormBuilder, never>;
|
|
371
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormBuilder, "mt-form-builder", never, { "canvasStyleClass": { "alias": "canvasStyleClass"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
379
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormBuilder, "mt-form-builder", never, { "canvasStyleClass": { "alias": "canvasStyleClass"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "showPropertiesSection": { "alias": "showPropertiesSection"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
372
380
|
}
|
|
373
381
|
|
|
374
382
|
/**
|