@masterteam/form-builder 0.0.18 → 0.0.20
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.20",
|
|
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/icons": "^0.0.14",
|
|
23
22
|
"@masterteam/properties": "^0.0.41",
|
|
24
|
-
"@masterteam/
|
|
25
|
-
"@masterteam/components": "^0.0.
|
|
23
|
+
"@masterteam/icons": "^0.0.14",
|
|
24
|
+
"@masterteam/components": "^0.0.130",
|
|
25
|
+
"@masterteam/forms": "^0.0.61"
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|
|
28
28
|
"exports": {
|
|
@@ -268,7 +268,6 @@ declare class FormBuilder implements OnInit {
|
|
|
268
268
|
readonly scopeLoading: _angular_core.WritableSignal<boolean>;
|
|
269
269
|
readonly scopeProperties: _angular_core.WritableSignal<PropertyItem[]>;
|
|
270
270
|
readonly scopePath: _angular_core.WritableSignal<PathSegment[]>;
|
|
271
|
-
readonly scopeSelectedKey: _angular_core.WritableSignal<string>;
|
|
272
271
|
private scopeNavigation;
|
|
273
272
|
private initialRequestId;
|
|
274
273
|
private scopeRequestId;
|
|
@@ -336,13 +335,6 @@ declare class FormBuilder implements OnInit {
|
|
|
336
335
|
removeScopePath(_scope?: ScopeKey): void;
|
|
337
336
|
/** Template-compatible version (returns properties array for the scope) */
|
|
338
337
|
getScopeProperties(_scope?: ScopeKey): PropertyItem[];
|
|
339
|
-
getScopePropertyOptions(_scope?: ScopeKey): Array<{
|
|
340
|
-
key: string;
|
|
341
|
-
name: string;
|
|
342
|
-
}>;
|
|
343
|
-
getScopeSelectedPropertyKey(_scope?: ScopeKey): string;
|
|
344
|
-
setScopeSelectedProperty(_scope: ScopeKey, key: string): void;
|
|
345
|
-
getScopeSelectedProperty(_scope?: ScopeKey): PropertyItem | null;
|
|
346
338
|
getFilteredProperties(_scope?: ScopeKey): PropertyItem[];
|
|
347
339
|
isScopePropertiesLoading(_scope?: ScopeKey): boolean;
|
|
348
340
|
getPropertyLabel(property: PropertyItem): string;
|