@masterteam/properties 0.0.25 → 0.0.26
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/README.md +10 -10
- package/assets/i18n/ar.json +74 -74
- package/assets/i18n/en.json +74 -74
- package/assets/properties.css +1 -1
- package/fesm2022/masterteam-properties.mjs +74 -57
- package/fesm2022/masterteam-properties.mjs.map +1 -1
- package/package.json +4 -4
- package/types/masterteam-properties.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/properties",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.26",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/properties",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"tailwindcss": "^4.1.17",
|
|
20
20
|
"tailwindcss-primeui": "^0.6.1",
|
|
21
21
|
"@ngxs/store": "^20.1.0",
|
|
22
|
-
"@masterteam/
|
|
23
|
-
"@masterteam/
|
|
24
|
-
"@masterteam/
|
|
22
|
+
"@masterteam/components": "^0.0.75",
|
|
23
|
+
"@masterteam/icons": "^0.0.12",
|
|
24
|
+
"@masterteam/forms": "^0.0.33"
|
|
25
25
|
},
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"exports": {
|
|
@@ -361,13 +361,13 @@ declare class PropertiesList {
|
|
|
361
361
|
value: string;
|
|
362
362
|
}[]>;
|
|
363
363
|
activeTab: _angular_core.WritableSignal<string>;
|
|
364
|
-
readonly tableColumns: _angular_core.WritableSignal<ColumnDef[]>;
|
|
365
364
|
propertyTypes: _angular_core.WritableSignal<{
|
|
366
365
|
label: string;
|
|
367
366
|
icon: string;
|
|
368
367
|
value: string;
|
|
369
368
|
color: string;
|
|
370
369
|
}[]>;
|
|
370
|
+
readonly tableColumns: _angular_core.WritableSignal<ColumnDef[]>;
|
|
371
371
|
tableActions: _angular_core.Signal<TableAction[]>;
|
|
372
372
|
deletingRowIds: _angular_core.WritableSignal<any[]>;
|
|
373
373
|
readonly rowActions: _angular_core.WritableSignal<TableAction[]>;
|