@acorex/components 20.2.41 → 20.2.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-image-editor.mjs +1 -0
- package/fesm2022/acorex-components-image-editor.mjs.map +1 -1
- package/fesm2022/acorex-components-phone-box.mjs +37 -0
- package/fesm2022/acorex-components-phone-box.mjs.map +1 -1
- package/fesm2022/acorex-components-tabs.mjs +8 -4
- package/fesm2022/acorex-components-tabs.mjs.map +1 -1
- package/fesm2022/acorex-components-tree2.mjs +44 -3
- package/fesm2022/acorex-components-tree2.mjs.map +1 -1
- package/package.json +14 -14
- package/phone-box/index.d.ts +1 -0
- package/tree2/index.d.ts +9 -0
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "20.2.
|
|
3
|
+
"version": "20.2.43",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/core": "20.2.
|
|
6
|
-
"@acorex/cdk": "20.2.
|
|
5
|
+
"@acorex/core": "20.2.43",
|
|
6
|
+
"@acorex/cdk": "20.2.43",
|
|
7
7
|
"@angular/common": "^20.0.0",
|
|
8
8
|
"@angular/core": "^20.0.0",
|
|
9
9
|
"@angular/cdk": "^20.0.0",
|
|
@@ -68,14 +68,14 @@
|
|
|
68
68
|
"types": "./accordion/index.d.ts",
|
|
69
69
|
"default": "./fesm2022/acorex-components-accordion.mjs"
|
|
70
70
|
},
|
|
71
|
-
"./action-sheet": {
|
|
72
|
-
"types": "./action-sheet/index.d.ts",
|
|
73
|
-
"default": "./fesm2022/acorex-components-action-sheet.mjs"
|
|
74
|
-
},
|
|
75
71
|
"./alert": {
|
|
76
72
|
"types": "./alert/index.d.ts",
|
|
77
73
|
"default": "./fesm2022/acorex-components-alert.mjs"
|
|
78
74
|
},
|
|
75
|
+
"./action-sheet": {
|
|
76
|
+
"types": "./action-sheet/index.d.ts",
|
|
77
|
+
"default": "./fesm2022/acorex-components-action-sheet.mjs"
|
|
78
|
+
},
|
|
79
79
|
"./aspect-ratio": {
|
|
80
80
|
"types": "./aspect-ratio/index.d.ts",
|
|
81
81
|
"default": "./fesm2022/acorex-components-aspect-ratio.mjs"
|
|
@@ -132,22 +132,22 @@
|
|
|
132
132
|
"types": "./code-editor/index.d.ts",
|
|
133
133
|
"default": "./fesm2022/acorex-components-code-editor.mjs"
|
|
134
134
|
},
|
|
135
|
-
"./color-box": {
|
|
136
|
-
"types": "./color-box/index.d.ts",
|
|
137
|
-
"default": "./fesm2022/acorex-components-color-box.mjs"
|
|
138
|
-
},
|
|
139
135
|
"./collapse": {
|
|
140
136
|
"types": "./collapse/index.d.ts",
|
|
141
137
|
"default": "./fesm2022/acorex-components-collapse.mjs"
|
|
142
138
|
},
|
|
143
|
-
"./
|
|
144
|
-
"types": "./
|
|
145
|
-
"default": "./fesm2022/acorex-components-
|
|
139
|
+
"./color-box": {
|
|
140
|
+
"types": "./color-box/index.d.ts",
|
|
141
|
+
"default": "./fesm2022/acorex-components-color-box.mjs"
|
|
146
142
|
},
|
|
147
143
|
"./color-palette": {
|
|
148
144
|
"types": "./color-palette/index.d.ts",
|
|
149
145
|
"default": "./fesm2022/acorex-components-color-palette.mjs"
|
|
150
146
|
},
|
|
147
|
+
"./command": {
|
|
148
|
+
"types": "./command/index.d.ts",
|
|
149
|
+
"default": "./fesm2022/acorex-components-command.mjs"
|
|
150
|
+
},
|
|
151
151
|
"./comment": {
|
|
152
152
|
"types": "./comment/index.d.ts",
|
|
153
153
|
"default": "./fesm2022/acorex-components-comment.mjs"
|
package/phone-box/index.d.ts
CHANGED
|
@@ -78,6 +78,7 @@ declare class AXPhoneBoxComponent extends AXPhoneBoxComponent_base {
|
|
|
78
78
|
*/
|
|
79
79
|
setDefaultValue(): void;
|
|
80
80
|
protected handleKeyDown(e: KeyboardEvent): void;
|
|
81
|
+
private parsePhoneNumber;
|
|
81
82
|
/** @ignore */
|
|
82
83
|
_handleCountryValueChanged(event: AXValueChangedEvent): void;
|
|
83
84
|
private get __hostName();
|
package/tree2/index.d.ts
CHANGED
|
@@ -108,6 +108,10 @@ declare class AXTree2Component {
|
|
|
108
108
|
private readonly ROOT_LIST_ID;
|
|
109
109
|
private readonly NODE_DROP_PREFIX;
|
|
110
110
|
private readonly LIST_PREFIX;
|
|
111
|
+
/** Platform service for RTL detection */
|
|
112
|
+
private readonly platformService;
|
|
113
|
+
/** DestroyRef for cleanup */
|
|
114
|
+
private readonly destroyRef;
|
|
111
115
|
/** Tree data nodes */
|
|
112
116
|
nodes: _angular_core.ModelSignal<AXTreeNode[]>;
|
|
113
117
|
/** Whether to show checkboxes for selection */
|
|
@@ -124,6 +128,8 @@ declare class AXTree2Component {
|
|
|
124
128
|
expandedIcon: _angular_core.InputSignal<string>;
|
|
125
129
|
/** Custom icon for collapsed nodes */
|
|
126
130
|
collapsedIcon: _angular_core.InputSignal<string>;
|
|
131
|
+
/** RTL detection signal */
|
|
132
|
+
protected readonly isRtl: _angular_core.WritableSignal<boolean>;
|
|
127
133
|
/** Indent size in pixels for each level */
|
|
128
134
|
indentSize: _angular_core.InputSignal<number>;
|
|
129
135
|
/** Node height in pixels */
|
|
@@ -150,6 +156,9 @@ declare class AXTree2Component {
|
|
|
150
156
|
onItemsChange: _angular_core.OutputEmitterRef<AXTreeDropEvent>;
|
|
151
157
|
/** Internal signal for tracking loading state */
|
|
152
158
|
protected readonly loadingNodes: _angular_core.WritableSignal<Set<string>>;
|
|
159
|
+
/** Computed chevron icons that flip for RTL */
|
|
160
|
+
protected readonly directionExpandedIcon: _angular_core.Signal<string>;
|
|
161
|
+
protected readonly directionCollapsedIcon: _angular_core.Signal<string>;
|
|
153
162
|
/**
|
|
154
163
|
* Toggle node expansion state with lazy loading support
|
|
155
164
|
*/
|