@masterteam/properties 0.0.31 → 0.0.32
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/properties",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.32",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/properties",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"tailwindcss": "^4.1.17",
|
|
20
20
|
"tailwindcss-primeui": "^0.6.1",
|
|
21
21
|
"@ngxs/store": "^20.1.0",
|
|
22
|
+
"@masterteam/forms": "^0.0.40",
|
|
23
|
+
"@masterteam/components": "^0.0.94",
|
|
22
24
|
"@masterteam/formula-builder": "^0.0.2",
|
|
23
|
-
"@masterteam/icons": "^0.0.13"
|
|
24
|
-
"@masterteam/components": "^0.0.87",
|
|
25
|
-
"@masterteam/forms": "^0.0.35"
|
|
25
|
+
"@masterteam/icons": "^0.0.13"
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|
|
28
28
|
"exports": {
|
|
@@ -108,8 +108,8 @@ interface ApiPropertyOption {
|
|
|
108
108
|
interface ApiConfigurationValue {
|
|
109
109
|
endpoint: string;
|
|
110
110
|
headers: Record<string, string>;
|
|
111
|
-
key
|
|
112
|
-
value
|
|
111
|
+
key: string;
|
|
112
|
+
value: string;
|
|
113
113
|
schema?: ApiSchema | null;
|
|
114
114
|
supportMultiSelect?: boolean;
|
|
115
115
|
}
|
|
@@ -435,6 +435,7 @@ declare class PropertyForm implements OnDestroy {
|
|
|
435
435
|
private readonly transloco;
|
|
436
436
|
propertyId: _angular_core.InputSignal<string>;
|
|
437
437
|
private readonly propertyTypes;
|
|
438
|
+
private readonly legacyReplacedViewTypes;
|
|
438
439
|
submitLabel: _angular_core.Signal<string>;
|
|
439
440
|
isEditing: _angular_core.Signal<boolean>;
|
|
440
441
|
readonly propertyForm: FormGroup<{
|
|
@@ -452,6 +453,7 @@ declare class PropertyForm implements OnDestroy {
|
|
|
452
453
|
readonly propertyType: _angular_core.Signal<any>;
|
|
453
454
|
readonly isCalculated: _angular_core.Signal<boolean>;
|
|
454
455
|
readonly formulaSchemaId: _angular_core.Signal<number | undefined>;
|
|
456
|
+
readonly availablePropertyTypes: _angular_core.Signal<any>;
|
|
455
457
|
private readonly selectedPropertyTypeConfiguration;
|
|
456
458
|
readonly configurationFormConfig: _angular_core.Signal<any>;
|
|
457
459
|
private configurationHost?;
|