@acorex/components 20.3.13 → 20.3.15
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,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "20.3.
|
|
3
|
+
"version": "20.3.15",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/core": "20.3.
|
|
6
|
-
"@acorex/cdk": "20.3.
|
|
5
|
+
"@acorex/core": "20.3.15",
|
|
6
|
+
"@acorex/cdk": "20.3.15",
|
|
7
7
|
"@angular/common": "^20.0.0",
|
|
8
8
|
"@angular/core": "^20.0.0",
|
|
9
9
|
"@angular/cdk": "^20.0.0",
|
|
@@ -89,14 +89,14 @@
|
|
|
89
89
|
"types": "./autocomplete/index.d.ts",
|
|
90
90
|
"default": "./fesm2022/acorex-components-autocomplete.mjs"
|
|
91
91
|
},
|
|
92
|
-
"./avatar": {
|
|
93
|
-
"types": "./avatar/index.d.ts",
|
|
94
|
-
"default": "./fesm2022/acorex-components-avatar.mjs"
|
|
95
|
-
},
|
|
96
92
|
"./badge": {
|
|
97
93
|
"types": "./badge/index.d.ts",
|
|
98
94
|
"default": "./fesm2022/acorex-components-badge.mjs"
|
|
99
95
|
},
|
|
96
|
+
"./avatar": {
|
|
97
|
+
"types": "./avatar/index.d.ts",
|
|
98
|
+
"default": "./fesm2022/acorex-components-avatar.mjs"
|
|
99
|
+
},
|
|
100
100
|
"./bottom-navigation": {
|
|
101
101
|
"types": "./bottom-navigation/index.d.ts",
|
|
102
102
|
"default": "./fesm2022/acorex-components-bottom-navigation.mjs"
|
package/tree-view/index.d.ts
CHANGED
|
@@ -123,6 +123,17 @@ interface AXTreeViewItemTemplateContext {
|
|
|
123
123
|
loading: boolean;
|
|
124
124
|
/** Whether the node is effectively disabled (considering inheritance from parents) */
|
|
125
125
|
disabled: boolean;
|
|
126
|
+
/** Whether checkbox should be shown for this node */
|
|
127
|
+
showCheckbox: boolean;
|
|
128
|
+
/** Checkbox value (null for indeterminate, boolean for checked/unchecked) */
|
|
129
|
+
checkboxValue: boolean | null;
|
|
130
|
+
/** Whether checkbox is in indeterminate state */
|
|
131
|
+
checkboxIndeterminate: boolean;
|
|
132
|
+
/** Handler function for checkbox value changes */
|
|
133
|
+
onCheckboxChange: (event: {
|
|
134
|
+
value: boolean | null;
|
|
135
|
+
isUserInteraction: boolean;
|
|
136
|
+
}) => void;
|
|
126
137
|
}
|
|
127
138
|
type AXTreeViewViewLook = 'default' | 'card' | 'with-line';
|
|
128
139
|
type AXTreeViewDragArea = 'handler' | 'item';
|