@acorex/components 20.2.40 → 20.2.42
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-phone-box.mjs +37 -0
- package/fesm2022/acorex-components-phone-box.mjs.map +1 -1
- package/fesm2022/acorex-components-tabs.mjs +2 -2
- 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/fesm2022/acorex-components-wysiwyg.mjs +2 -6
- package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
- package/package.json +7 -7
- package/phone-box/index.d.ts +1 -0
- package/tree2/index.d.ts +9 -0
- package/wysiwyg/index.d.ts +1 -2
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "20.2.
|
|
3
|
+
"version": "20.2.42",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/core": "20.2.
|
|
6
|
-
"@acorex/cdk": "20.2.
|
|
5
|
+
"@acorex/core": "20.2.42",
|
|
6
|
+
"@acorex/cdk": "20.2.42",
|
|
7
7
|
"@angular/common": "^20.0.0",
|
|
8
8
|
"@angular/core": "^20.0.0",
|
|
9
9
|
"@angular/cdk": "^20.0.0",
|
|
@@ -252,14 +252,14 @@
|
|
|
252
252
|
"types": "./kbd/index.d.ts",
|
|
253
253
|
"default": "./fesm2022/acorex-components-kbd.mjs"
|
|
254
254
|
},
|
|
255
|
-
"./list": {
|
|
256
|
-
"types": "./list/index.d.ts",
|
|
257
|
-
"default": "./fesm2022/acorex-components-list.mjs"
|
|
258
|
-
},
|
|
259
255
|
"./label": {
|
|
260
256
|
"types": "./label/index.d.ts",
|
|
261
257
|
"default": "./fesm2022/acorex-components-label.mjs"
|
|
262
258
|
},
|
|
259
|
+
"./list": {
|
|
260
|
+
"types": "./list/index.d.ts",
|
|
261
|
+
"default": "./fesm2022/acorex-components-list.mjs"
|
|
262
|
+
},
|
|
263
263
|
"./loading": {
|
|
264
264
|
"types": "./loading/index.d.ts",
|
|
265
265
|
"default": "./fesm2022/acorex-components-loading.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
|
*/
|
package/wysiwyg/index.d.ts
CHANGED
|
@@ -62,12 +62,11 @@ declare class AXWysiwygContainerComponent extends AXWysiwygContainerComponent_ba
|
|
|
62
62
|
* @returns void - No return value.
|
|
63
63
|
*/
|
|
64
64
|
setDisabledState(isDisabled: boolean): void;
|
|
65
|
-
protected internalValueChanged(value: string): void;
|
|
66
65
|
setWysiwygContent(value: string): void;
|
|
67
66
|
private get __hostName();
|
|
68
67
|
get __hostClass(): string;
|
|
69
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXWysiwygContainerComponent, never>;
|
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXWysiwygContainerComponent, "ax-wysiwyg-container", never, { "look": { "alias": "look"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "placeHolder": { "alias": "placeHolder"; "required": false; "isSignal": true; }; }, { "onValueChanged": "onValueChanged"; }, ["container", "toolbar"], ["*", "ax-validation-rule"], true, never>;
|
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXWysiwygContainerComponent, "ax-wysiwyg-container", never, { "look": { "alias": "look"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "placeHolder": { "alias": "placeHolder"; "required": false; "isSignal": true; }; }, { "onValueChanged": "onValueChanged"; }, ["container", "toolbar"], ["*", "ax-validation-rule"], true, never>;
|
|
71
70
|
}
|
|
72
71
|
|
|
73
72
|
/**
|