@acorex/cdk 19.4.0-next.0 → 19.4.1
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-cdk-selection.mjs +119 -0
- package/fesm2022/acorex-cdk-selection.mjs.map +1 -0
- package/package.json +5 -1
- package/selection/README.md +3 -0
- package/selection/index.d.ts +3 -0
- package/selection/lib/selection-group.directive.d.ts +10 -0
- package/selection/lib/selection-item.directive.d.ts +15 -0
- package/selection/lib/selection.module.d.ts +9 -0
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { inject, ElementRef, signal, output, input, afterNextRender, Directive, contentChildren, effect, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
|
|
5
|
+
class AXSelectionItemDirective {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.elm = inject(ElementRef);
|
|
8
|
+
this.isActive = signal(false);
|
|
9
|
+
this.onActiveState = output();
|
|
10
|
+
this.key = input.required();
|
|
11
|
+
this.#init2 = afterNextRender(() => {
|
|
12
|
+
this.elm.nativeElement.onclick = () => {
|
|
13
|
+
this.onActiveState.emit({ component: this });
|
|
14
|
+
};
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
#init2;
|
|
18
|
+
toggle() {
|
|
19
|
+
this.isActive.update((prev) => !prev);
|
|
20
|
+
}
|
|
21
|
+
select() {
|
|
22
|
+
this.isActive.set(true);
|
|
23
|
+
}
|
|
24
|
+
unselect() {
|
|
25
|
+
this.isActive.set(false);
|
|
26
|
+
}
|
|
27
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXSelectionItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
28
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.0.3", type: AXSelectionItemDirective, isStandalone: false, selector: "[axSelectionItem]", inputs: { key: { classPropertyName: "key", publicName: "key", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { onActiveState: "onActiveState" }, exportAs: ["axSelectionItem"], ngImport: i0 }); }
|
|
29
|
+
}
|
|
30
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXSelectionItemDirective, decorators: [{
|
|
31
|
+
type: Directive,
|
|
32
|
+
args: [{
|
|
33
|
+
selector: '[axSelectionItem]',
|
|
34
|
+
exportAs: 'axSelectionItem',
|
|
35
|
+
standalone: false,
|
|
36
|
+
}]
|
|
37
|
+
}] });
|
|
38
|
+
|
|
39
|
+
class AXSelectionGroupDirective {
|
|
40
|
+
constructor() {
|
|
41
|
+
this.content = contentChildren(AXSelectionItemDirective);
|
|
42
|
+
this.activeIndex = signal(null);
|
|
43
|
+
this.multi = input(false);
|
|
44
|
+
this.selectedItem = input();
|
|
45
|
+
this.#init = afterNextRender(() => {
|
|
46
|
+
this.content().forEach((element) => {
|
|
47
|
+
element.onActiveState.subscribe((e) => {
|
|
48
|
+
this.activeIndex.set(e.component.key());
|
|
49
|
+
if (this.multi()) {
|
|
50
|
+
element.toggle();
|
|
51
|
+
}
|
|
52
|
+
else {
|
|
53
|
+
this.content().forEach((element) => {
|
|
54
|
+
if (element.key() !== this.activeIndex()) {
|
|
55
|
+
element.unselect();
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
element.toggle();
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
});
|
|
62
|
+
});
|
|
63
|
+
this.#eff2 = effect(() => {
|
|
64
|
+
if (!this.selectedItem())
|
|
65
|
+
return;
|
|
66
|
+
if (typeof this.selectedItem() === 'string') {
|
|
67
|
+
this.content().forEach((element) => {
|
|
68
|
+
if (this.selectedItem() === element.key()) {
|
|
69
|
+
element.isActive.set(true);
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
else if (this.selectedItem() instanceof Array) {
|
|
74
|
+
this.selectedItem().forEach((index) => {
|
|
75
|
+
this.content().forEach((element) => {
|
|
76
|
+
if (index === element.key()) {
|
|
77
|
+
element.isActive.set(true);
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
#init;
|
|
85
|
+
#eff2;
|
|
86
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXSelectionGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
87
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.2.0", version: "19.0.3", type: AXSelectionGroupDirective, isStandalone: false, selector: "[axSelectionGroup]", inputs: { multi: { classPropertyName: "multi", publicName: "multi", isSignal: true, isRequired: false, transformFunction: null }, selectedItem: { classPropertyName: "selectedItem", publicName: "selectedItem", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "content", predicate: AXSelectionItemDirective, isSignal: true }], ngImport: i0 }); }
|
|
88
|
+
}
|
|
89
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXSelectionGroupDirective, decorators: [{
|
|
90
|
+
type: Directive,
|
|
91
|
+
args: [{
|
|
92
|
+
selector: '[axSelectionGroup]',
|
|
93
|
+
standalone: false,
|
|
94
|
+
}]
|
|
95
|
+
}] });
|
|
96
|
+
|
|
97
|
+
const COMPONENT = [AXSelectionGroupDirective, AXSelectionItemDirective];
|
|
98
|
+
const MODULES = [CommonModule];
|
|
99
|
+
class AXSelectionModule {
|
|
100
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXSelectionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
101
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXSelectionModule, declarations: [AXSelectionGroupDirective, AXSelectionItemDirective], imports: [CommonModule], exports: [AXSelectionGroupDirective, AXSelectionItemDirective] }); }
|
|
102
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXSelectionModule, imports: [MODULES] }); }
|
|
103
|
+
}
|
|
104
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXSelectionModule, decorators: [{
|
|
105
|
+
type: NgModule,
|
|
106
|
+
args: [{
|
|
107
|
+
declarations: [...COMPONENT],
|
|
108
|
+
imports: [...MODULES],
|
|
109
|
+
exports: [...COMPONENT],
|
|
110
|
+
providers: [],
|
|
111
|
+
}]
|
|
112
|
+
}] });
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Generated bundle index. Do not edit.
|
|
116
|
+
*/
|
|
117
|
+
|
|
118
|
+
export { AXSelectionGroupDirective, AXSelectionItemDirective, AXSelectionModule };
|
|
119
|
+
//# sourceMappingURL=acorex-cdk-selection.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"acorex-cdk-selection.mjs","sources":["../../../../libs/cdk/selection/src/lib/selection-item.directive.ts","../../../../libs/cdk/selection/src/lib/selection-group.directive.ts","../../../../libs/cdk/selection/src/lib/selection.module.ts","../../../../libs/cdk/selection/src/acorex-cdk-selection.ts"],"sourcesContent":["import { afterNextRender, Directive, ElementRef, inject, input, output, signal } from '@angular/core';\n\n@Directive({\n selector: '[axSelectionItem]',\n exportAs: 'axSelectionItem',\n standalone: false,\n})\nexport class AXSelectionItemDirective {\n private elm = inject(ElementRef);\n isActive = signal(false);\n onActiveState = output<{ component: AXSelectionItemDirective }>();\n key = input.required<string>();\n\n #init2 = afterNextRender(() => {\n (this.elm.nativeElement as HTMLElement).onclick = () => {\n this.onActiveState.emit({ component: this });\n };\n });\n\n public toggle() {\n this.isActive.update((prev) => !prev);\n }\n public select() {\n this.isActive.set(true);\n }\n public unselect() {\n this.isActive.set(false);\n }\n}\n","import { afterNextRender, contentChildren, Directive, effect, input, signal } from '@angular/core';\nimport { AXSelectionItemDirective } from './selection-item.directive';\n\n@Directive({\n selector: '[axSelectionGroup]',\n standalone: false,\n})\nexport class AXSelectionGroupDirective {\n private content = contentChildren(AXSelectionItemDirective);\n private activeIndex = signal(null);\n multi = input(false);\n selectedItem = input<string | string[]>();\n\n #init = afterNextRender(() => {\n this.content().forEach((element) => {\n element.onActiveState.subscribe((e) => {\n this.activeIndex.set(e.component.key());\n if (this.multi()) {\n element.toggle();\n } else {\n this.content().forEach((element) => {\n if (element.key() !== this.activeIndex()) {\n element.unselect();\n }\n });\n element.toggle();\n }\n });\n });\n });\n\n #eff2 = effect(() => {\n if (!this.selectedItem()) return;\n if (typeof this.selectedItem() === 'string') {\n this.content().forEach((element) => {\n if (this.selectedItem() === element.key()) {\n element.isActive.set(true);\n }\n });\n } else if (this.selectedItem() instanceof Array) {\n (this.selectedItem() as Array<string>).forEach((index) => {\n this.content().forEach((element) => {\n if (index === element.key()) {\n element.isActive.set(true);\n }\n });\n });\n }\n });\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { AXSelectionGroupDirective } from './selection-group.directive';\nimport { AXSelectionItemDirective } from './selection-item.directive';\n\nconst COMPONENT = [AXSelectionGroupDirective, AXSelectionItemDirective];\nconst MODULES = [CommonModule];\n\n@NgModule({\n declarations: [...COMPONENT],\n imports: [...MODULES],\n exports: [...COMPONENT],\n providers: [],\n})\nexport class AXSelectionModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/cdk",
|
|
3
|
-
"version": "19.4.
|
|
3
|
+
"version": "19.4.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=19.0.0",
|
|
6
6
|
"@angular/core": ">=19.0.0",
|
|
@@ -35,6 +35,10 @@
|
|
|
35
35
|
"types": "./qrcode/index.d.ts",
|
|
36
36
|
"default": "./fesm2022/acorex-cdk-qrcode.mjs"
|
|
37
37
|
},
|
|
38
|
+
"./selection": {
|
|
39
|
+
"types": "./selection/index.d.ts",
|
|
40
|
+
"default": "./fesm2022/acorex-cdk-selection.mjs"
|
|
41
|
+
},
|
|
38
42
|
"./sticky": {
|
|
39
43
|
"types": "./sticky/index.d.ts",
|
|
40
44
|
"default": "./fesm2022/acorex-cdk-sticky.mjs"
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AXSelectionGroupDirective {
|
|
3
|
+
#private;
|
|
4
|
+
private content;
|
|
5
|
+
private activeIndex;
|
|
6
|
+
multi: import("@angular/core").InputSignal<boolean>;
|
|
7
|
+
selectedItem: import("@angular/core").InputSignal<string | string[]>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXSelectionGroupDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXSelectionGroupDirective, "[axSelectionGroup]", never, { "multi": { "alias": "multi"; "required": false; "isSignal": true; }; "selectedItem": { "alias": "selectedItem"; "required": false; "isSignal": true; }; }, {}, ["content"], never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AXSelectionItemDirective {
|
|
3
|
+
#private;
|
|
4
|
+
private elm;
|
|
5
|
+
isActive: import("@angular/core").WritableSignal<boolean>;
|
|
6
|
+
onActiveState: import("@angular/core").OutputEmitterRef<{
|
|
7
|
+
component: AXSelectionItemDirective;
|
|
8
|
+
}>;
|
|
9
|
+
key: import("@angular/core").InputSignal<string>;
|
|
10
|
+
toggle(): void;
|
|
11
|
+
select(): void;
|
|
12
|
+
unselect(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXSelectionItemDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXSelectionItemDirective, "[axSelectionItem]", ["axSelectionItem"], { "key": { "alias": "key"; "required": true; "isSignal": true; }; }, { "onActiveState": "onActiveState"; }, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./selection-group.directive";
|
|
3
|
+
import * as i2 from "./selection-item.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
export declare class AXSelectionModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXSelectionModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXSelectionModule, [typeof i1.AXSelectionGroupDirective, typeof i2.AXSelectionItemDirective], [typeof i3.CommonModule], [typeof i1.AXSelectionGroupDirective, typeof i2.AXSelectionItemDirective]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXSelectionModule>;
|
|
9
|
+
}
|