@masterteam/properties 0.0.54 → 0.0.55
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.55",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/properties",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"tailwindcss": "^4.2.2",
|
|
20
20
|
"tailwindcss-primeui": "^0.6.1",
|
|
21
21
|
"@ngxs/store": "^20.1.0",
|
|
22
|
-
"@masterteam/components": "^0.0.
|
|
23
|
-
"@masterteam/
|
|
24
|
-
"@masterteam/
|
|
22
|
+
"@masterteam/components": "^0.0.176",
|
|
23
|
+
"@masterteam/formula-builder": "^0.0.14",
|
|
24
|
+
"@masterteam/forms": "^0.0.81",
|
|
25
25
|
"@masterteam/icons": "^0.0.15"
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|
|
@@ -205,6 +205,7 @@ interface PropertiesQueryParams {
|
|
|
205
205
|
interface PropertyPayload {
|
|
206
206
|
viewType: string;
|
|
207
207
|
isCalculated: boolean;
|
|
208
|
+
isTranslatable?: boolean;
|
|
208
209
|
addToForm?: boolean;
|
|
209
210
|
formula?: FormulaBuilderValue | null;
|
|
210
211
|
name: Record<string, string>;
|
|
@@ -361,6 +362,7 @@ interface CatalogPropertyDto {
|
|
|
361
362
|
source?: string;
|
|
362
363
|
order?: number;
|
|
363
364
|
isCalculated?: boolean;
|
|
365
|
+
isTranslatable?: boolean;
|
|
364
366
|
isRequired?: boolean;
|
|
365
367
|
isSystem?: boolean;
|
|
366
368
|
}
|
|
@@ -574,6 +576,7 @@ declare class PropertyForm implements OnDestroy {
|
|
|
574
576
|
private readonly propertyTypes;
|
|
575
577
|
private readonly legacyReplacedViewTypes;
|
|
576
578
|
private readonly calculatedToggleViewTypes;
|
|
579
|
+
private readonly translatableToggleViewTypes;
|
|
577
580
|
submitLabel: _angular_core.Signal<string>;
|
|
578
581
|
isEditing: _angular_core.Signal<boolean>;
|
|
579
582
|
readonly propertyForm: FormGroup<{
|