@acorex/components 21.0.0-next.41 → 21.0.0-next.43
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/fesm2022/acorex-components-tree-view.mjs +6 -2
- package/fesm2022/acorex-components-tree-view.mjs.map +1 -1
- package/fesm2022/acorex-components-wysiwyg.mjs +2 -2
- package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
- package/package.json +3 -3
- package/tree-view/index.d.ts +2 -0
- package/wysiwyg/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.43",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/core": "21.0.0-next.
|
|
6
|
-
"@acorex/cdk": "21.0.0-next.
|
|
5
|
+
"@acorex/core": "21.0.0-next.43",
|
|
6
|
+
"@acorex/cdk": "21.0.0-next.43",
|
|
7
7
|
"@angular/common": "^20.0.0",
|
|
8
8
|
"@angular/core": "^20.0.0",
|
|
9
9
|
"@angular/cdk": "^20.0.0",
|
package/tree-view/index.d.ts
CHANGED
|
@@ -264,6 +264,8 @@ declare class AXTreeViewComponent {
|
|
|
264
264
|
protected readonly cascadesToChildren: _angular_core.Signal<boolean>;
|
|
265
265
|
/** Computed: Returns true when parent nodes show indeterminate state based on children selection */
|
|
266
266
|
protected readonly hasIntermediateState: _angular_core.Signal<boolean>;
|
|
267
|
+
/** Computed: Returns true when drag handle should be shown */
|
|
268
|
+
protected readonly shouldShowDragHandle: _angular_core.Signal<boolean>;
|
|
267
269
|
/**
|
|
268
270
|
* Get a property value from a node using the configured field name
|
|
269
271
|
*/
|
package/wysiwyg/index.d.ts
CHANGED