aril 0.0.90 → 0.0.91
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/esm2022/ui/operation-types-dialog/aril-ui-operation-types-dialog.mjs +5 -0
- package/esm2022/ui/operation-types-dialog/index.mjs +2 -0
- package/esm2022/ui/operation-types-dialog/src/operation-types-dialog.component.mjs +64 -0
- package/fesm2022/aril-ui-operation-types-dialog.mjs +71 -0
- package/fesm2022/aril-ui-operation-types-dialog.mjs.map +1 -0
- package/package.json +101 -95
- package/ui/operation-types-dialog/index.d.ts +1 -0
- package/ui/operation-types-dialog/src/operation-types-dialog.component.d.ts +24 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './index';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXJpbC11aS1vcGVyYXRpb24tdHlwZXMtZGlhbG9nLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvYXJpbC91aS9vcGVyYXRpb24tdHlwZXMtZGlhbG9nL2FyaWwtdWktb3BlcmF0aW9uLXR5cGVzLWRpYWxvZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './src/operation-types-dialog.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9hcmlsL3VpL29wZXJhdGlvbi10eXBlcy1kaWFsb2cvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx3Q0FBd0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc3JjL29wZXJhdGlvbi10eXBlcy1kaWFsb2cuY29tcG9uZW50JztcclxuIl19
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { FormsModule } from '@angular/forms';
|
|
3
|
+
import { ButtonComponent } from 'aril/ui/button';
|
|
4
|
+
import { RadioButtonComponent } from 'aril/ui/radioButton';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "primeng/dynamicdialog";
|
|
7
|
+
import * as i2 from "@angular/forms";
|
|
8
|
+
export var OperationType;
|
|
9
|
+
(function (OperationType) {
|
|
10
|
+
OperationType["ApplyOnlySelected"] = "APPLY_ONLY_SELECTED";
|
|
11
|
+
OperationType["ApplyExceptSelected"] = "APPLY_EXCEPT_SELECTED";
|
|
12
|
+
OperationType["ApplyAll"] = "APPLY_ALL";
|
|
13
|
+
})(OperationType || (OperationType = {}));
|
|
14
|
+
export class OperationTypesComponent {
|
|
15
|
+
constructor(ref, dialogConfig) {
|
|
16
|
+
this.ref = ref;
|
|
17
|
+
this.dialogConfig = dialogConfig;
|
|
18
|
+
this.selectedOption = OperationType.ApplyOnlySelected;
|
|
19
|
+
this.options = [
|
|
20
|
+
{ key: OperationType.ApplyOnlySelected, label: `Yalnızca Seçilenlere Uygula (${this.selectedRowsLength}) Adet` },
|
|
21
|
+
{
|
|
22
|
+
key: OperationType.ApplyExceptSelected,
|
|
23
|
+
label: `Seçilenlere Hariç Tümüne Uygula (${this.totalRecords - this.selectedRowsLength}) Adet`
|
|
24
|
+
},
|
|
25
|
+
{ key: OperationType.ApplyAll, label: `Tüm Arama Sonuçlarına Uygula (${this.totalRecords}) Adet` }
|
|
26
|
+
];
|
|
27
|
+
this.dialogConfig.draggable = true;
|
|
28
|
+
this.dialogConfig.header = 'İşlem Hangi Satırlara Uygulansın?';
|
|
29
|
+
this.dialogConfig.contentStyle = { overflow: 'auto', 'max-width': '350px' };
|
|
30
|
+
}
|
|
31
|
+
get tableRef() {
|
|
32
|
+
return this.dialogConfig.data.tableRef;
|
|
33
|
+
}
|
|
34
|
+
get totalRecords() {
|
|
35
|
+
return this.tableRef.tableRef._totalRecords;
|
|
36
|
+
}
|
|
37
|
+
get selectedRowsLength() {
|
|
38
|
+
return this.tableRef.selectedRows.length;
|
|
39
|
+
}
|
|
40
|
+
submit() {
|
|
41
|
+
this.ref.close(this.selectedOption);
|
|
42
|
+
}
|
|
43
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: OperationTypesComponent, deps: [{ token: i1.DynamicDialogRef }, { token: i1.DynamicDialogConfig }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
44
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: OperationTypesComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: `
|
|
45
|
+
<div class="flex flex-column gap-4 px-3">
|
|
46
|
+
<aril-radio-button [(ngModel)]="selectedOption" [options]="options" />
|
|
47
|
+
<aril-button class="align-self-end" color="success" label="Devam" (clickEvent)="submit()" />
|
|
48
|
+
</div>
|
|
49
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: RadioButtonComponent, selector: "aril-radio-button[ngModel], aril-radio-button[formControl], aril-radio-button[formControlName]", inputs: ["options", "tabindex", "align"] }, { kind: "component", type: ButtonComponent, selector: "aril-button:not([click])", inputs: ["label", "loading", "disabled", "raised", "outlined", "badge", "size", "icon", "color"], outputs: ["clickEvent"] }] }); }
|
|
50
|
+
}
|
|
51
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: OperationTypesComponent, decorators: [{
|
|
52
|
+
type: Component,
|
|
53
|
+
args: [{
|
|
54
|
+
standalone: true,
|
|
55
|
+
template: `
|
|
56
|
+
<div class="flex flex-column gap-4 px-3">
|
|
57
|
+
<aril-radio-button [(ngModel)]="selectedOption" [options]="options" />
|
|
58
|
+
<aril-button class="align-self-end" color="success" label="Devam" (clickEvent)="submit()" />
|
|
59
|
+
</div>
|
|
60
|
+
`,
|
|
61
|
+
imports: [FormsModule, RadioButtonComponent, ButtonComponent]
|
|
62
|
+
}]
|
|
63
|
+
}], ctorParameters: () => [{ type: i1.DynamicDialogRef }, { type: i1.DynamicDialogConfig }] });
|
|
64
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3BlcmF0aW9uLXR5cGVzLWRpYWxvZy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hcmlsL3VpL29wZXJhdGlvbi10eXBlcy1kaWFsb2cvc3JjL29wZXJhdGlvbi10eXBlcy1kaWFsb2cuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBSTdDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNqRCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQzs7OztBQUczRCxNQUFNLENBQU4sSUFBWSxhQUlYO0FBSkQsV0FBWSxhQUFhO0lBQ3hCLDBEQUF5QyxDQUFBO0lBQ3pDLDhEQUE2QyxDQUFBO0lBQzdDLHVDQUFzQixDQUFBO0FBQ3ZCLENBQUMsRUFKVyxhQUFhLEtBQWIsYUFBYSxRQUl4QjtBQVlELE1BQU0sT0FBTyx1QkFBdUI7SUFZbkMsWUFBb0IsR0FBcUIsRUFBVSxZQUFpQztRQUFoRSxRQUFHLEdBQUgsR0FBRyxDQUFrQjtRQUFVLGlCQUFZLEdBQVosWUFBWSxDQUFxQjtRQVhwRixtQkFBYyxHQUFHLGFBQWEsQ0FBQyxpQkFBaUIsQ0FBQztRQUVqRCxZQUFPLEdBQUc7WUFDVCxFQUFFLEdBQUcsRUFBRSxhQUFhLENBQUMsaUJBQWlCLEVBQUUsS0FBSyxFQUFFLGdDQUFnQyxJQUFJLENBQUMsa0JBQWtCLFFBQVEsRUFBRTtZQUNoSDtnQkFDQyxHQUFHLEVBQUUsYUFBYSxDQUFDLG1CQUFtQjtnQkFDdEMsS0FBSyxFQUFFLG9DQUFvQyxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQyxrQkFBa0IsUUFBUTthQUM5RjtZQUNELEVBQUUsR0FBRyxFQUFFLGFBQWEsQ0FBQyxRQUFRLEVBQUUsS0FBSyxFQUFFLGlDQUFpQyxJQUFJLENBQUMsWUFBWSxRQUFRLEVBQUU7U0FDbEcsQ0FBQztRQUdELElBQUksQ0FBQyxZQUFZLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQztRQUNuQyxJQUFJLENBQUMsWUFBWSxDQUFDLE1BQU0sR0FBRyxtQ0FBbUMsQ0FBQztRQUMvRCxJQUFJLENBQUMsWUFBWSxDQUFDLFlBQVksR0FBRyxFQUFFLFFBQVEsRUFBRSxNQUFNLEVBQUUsV0FBVyxFQUFFLE9BQU8sRUFBRSxDQUFDO0lBQzdFLENBQUM7SUFFRCxJQUFJLFFBQVE7UUFDWCxPQUFPLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQztJQUN4QyxDQUFDO0lBRUQsSUFBSSxZQUFZO1FBQ2YsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxhQUFhLENBQUM7SUFDN0MsQ0FBQztJQUVELElBQUksa0JBQWtCO1FBQ3JCLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQyxZQUFZLENBQUMsTUFBTSxDQUFDO0lBQzFDLENBQUM7SUFFRCxNQUFNO1FBQ0wsSUFBSSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxDQUFDO0lBQ3JDLENBQUM7OEdBaENXLHVCQUF1QjtrR0FBdkIsdUJBQXVCLHdFQVJ6Qjs7Ozs7RUFLVCwyREFDUyxXQUFXLCtWQUFFLG9CQUFvQixxTEFBRSxlQUFlOzsyRkFFaEQsdUJBQXVCO2tCQVZuQyxTQUFTO21CQUFDO29CQUNWLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUU7Ozs7O0VBS1Q7b0JBQ0QsT0FBTyxFQUFFLENBQUMsV0FBVyxFQUFFLG9CQUFvQixFQUFFLGVBQWUsQ0FBQztpQkFDN0QiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcblxyXG5pbXBvcnQgeyBEeW5hbWljRGlhbG9nQ29uZmlnLCBEeW5hbWljRGlhbG9nUmVmIH0gZnJvbSAncHJpbWVuZy9keW5hbWljZGlhbG9nJztcclxuXHJcbmltcG9ydCB7IEJ1dHRvbkNvbXBvbmVudCB9IGZyb20gJ2FyaWwvdWkvYnV0dG9uJztcclxuaW1wb3J0IHsgUmFkaW9CdXR0b25Db21wb25lbnQgfSBmcm9tICdhcmlsL3VpL3JhZGlvQnV0dG9uJztcclxuaW1wb3J0IHsgVGFibGVDb21wb25lbnQgfSBmcm9tICdhcmlsL3VpL3RhYmxlJztcclxuXHJcbmV4cG9ydCBlbnVtIE9wZXJhdGlvblR5cGUge1xyXG5cdEFwcGx5T25seVNlbGVjdGVkID0gJ0FQUExZX09OTFlfU0VMRUNURUQnLFxyXG5cdEFwcGx5RXhjZXB0U2VsZWN0ZWQgPSAnQVBQTFlfRVhDRVBUX1NFTEVDVEVEJyxcclxuXHRBcHBseUFsbCA9ICdBUFBMWV9BTEwnXHJcbn1cclxuXHJcbkBDb21wb25lbnQoe1xyXG5cdHN0YW5kYWxvbmU6IHRydWUsXHJcblx0dGVtcGxhdGU6IGBcclxuXHRcdDxkaXYgY2xhc3M9XCJmbGV4IGZsZXgtY29sdW1uIGdhcC00IHB4LTNcIj5cclxuXHRcdFx0PGFyaWwtcmFkaW8tYnV0dG9uIFsobmdNb2RlbCldPVwic2VsZWN0ZWRPcHRpb25cIiBbb3B0aW9uc109XCJvcHRpb25zXCIgLz5cclxuXHRcdFx0PGFyaWwtYnV0dG9uIGNsYXNzPVwiYWxpZ24tc2VsZi1lbmRcIiBjb2xvcj1cInN1Y2Nlc3NcIiBsYWJlbD1cIkRldmFtXCIgKGNsaWNrRXZlbnQpPVwic3VibWl0KClcIiAvPlxyXG5cdFx0PC9kaXY+XHJcblx0YCxcclxuXHRpbXBvcnRzOiBbRm9ybXNNb2R1bGUsIFJhZGlvQnV0dG9uQ29tcG9uZW50LCBCdXR0b25Db21wb25lbnRdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBPcGVyYXRpb25UeXBlc0NvbXBvbmVudCB7XHJcblx0c2VsZWN0ZWRPcHRpb24gPSBPcGVyYXRpb25UeXBlLkFwcGx5T25seVNlbGVjdGVkO1xyXG5cclxuXHRvcHRpb25zID0gW1xyXG5cdFx0eyBrZXk6IE9wZXJhdGlvblR5cGUuQXBwbHlPbmx5U2VsZWN0ZWQsIGxhYmVsOiBgWWFsbsSxemNhIFNlw6dpbGVubGVyZSBVeWd1bGEgKCR7dGhpcy5zZWxlY3RlZFJvd3NMZW5ndGh9KSBBZGV0YCB9LFxyXG5cdFx0e1xyXG5cdFx0XHRrZXk6IE9wZXJhdGlvblR5cGUuQXBwbHlFeGNlcHRTZWxlY3RlZCxcclxuXHRcdFx0bGFiZWw6IGBTZcOnaWxlbmxlcmUgSGFyacOnIFTDvG3DvG5lIFV5Z3VsYSAoJHt0aGlzLnRvdGFsUmVjb3JkcyAtIHRoaXMuc2VsZWN0ZWRSb3dzTGVuZ3RofSkgQWRldGBcclxuXHRcdH0sXHJcblx0XHR7IGtleTogT3BlcmF0aW9uVHlwZS5BcHBseUFsbCwgbGFiZWw6IGBUw7xtIEFyYW1hIFNvbnXDp2xhcsSxbmEgVXlndWxhICgke3RoaXMudG90YWxSZWNvcmRzfSkgQWRldGAgfVxyXG5cdF07XHJcblxyXG5cdGNvbnN0cnVjdG9yKHByaXZhdGUgcmVmOiBEeW5hbWljRGlhbG9nUmVmLCBwcml2YXRlIGRpYWxvZ0NvbmZpZzogRHluYW1pY0RpYWxvZ0NvbmZpZykge1xyXG5cdFx0dGhpcy5kaWFsb2dDb25maWcuZHJhZ2dhYmxlID0gdHJ1ZTtcclxuXHRcdHRoaXMuZGlhbG9nQ29uZmlnLmhlYWRlciA9ICfEsMWfbGVtIEhhbmdpIFNhdMSxcmxhcmEgVXlndWxhbnPEsW4/JztcclxuXHRcdHRoaXMuZGlhbG9nQ29uZmlnLmNvbnRlbnRTdHlsZSA9IHsgb3ZlcmZsb3c6ICdhdXRvJywgJ21heC13aWR0aCc6ICczNTBweCcgfTtcclxuXHR9XHJcblxyXG5cdGdldCB0YWJsZVJlZigpOiBUYWJsZUNvbXBvbmVudCB7XHJcblx0XHRyZXR1cm4gdGhpcy5kaWFsb2dDb25maWcuZGF0YS50YWJsZVJlZjtcclxuXHR9XHJcblxyXG5cdGdldCB0b3RhbFJlY29yZHMoKTogbnVtYmVyIHtcclxuXHRcdHJldHVybiB0aGlzLnRhYmxlUmVmLnRhYmxlUmVmLl90b3RhbFJlY29yZHM7XHJcblx0fVxyXG5cclxuXHRnZXQgc2VsZWN0ZWRSb3dzTGVuZ3RoKCk6IG51bWJlciB7XHJcblx0XHRyZXR1cm4gdGhpcy50YWJsZVJlZi5zZWxlY3RlZFJvd3MubGVuZ3RoO1xyXG5cdH1cclxuXHJcblx0c3VibWl0KCk6IHZvaWQge1xyXG5cdFx0dGhpcy5yZWYuY2xvc2UodGhpcy5zZWxlY3RlZE9wdGlvbik7XHJcblx0fVxyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component } from '@angular/core';
|
|
3
|
+
import * as i2 from '@angular/forms';
|
|
4
|
+
import { FormsModule } from '@angular/forms';
|
|
5
|
+
import { ButtonComponent } from 'aril/ui/button';
|
|
6
|
+
import { RadioButtonComponent } from 'aril/ui/radioButton';
|
|
7
|
+
import * as i1 from 'primeng/dynamicdialog';
|
|
8
|
+
|
|
9
|
+
var OperationType;
|
|
10
|
+
(function (OperationType) {
|
|
11
|
+
OperationType["ApplyOnlySelected"] = "APPLY_ONLY_SELECTED";
|
|
12
|
+
OperationType["ApplyExceptSelected"] = "APPLY_EXCEPT_SELECTED";
|
|
13
|
+
OperationType["ApplyAll"] = "APPLY_ALL";
|
|
14
|
+
})(OperationType || (OperationType = {}));
|
|
15
|
+
class OperationTypesComponent {
|
|
16
|
+
constructor(ref, dialogConfig) {
|
|
17
|
+
this.ref = ref;
|
|
18
|
+
this.dialogConfig = dialogConfig;
|
|
19
|
+
this.selectedOption = OperationType.ApplyOnlySelected;
|
|
20
|
+
this.options = [
|
|
21
|
+
{ key: OperationType.ApplyOnlySelected, label: `Yalnızca Seçilenlere Uygula (${this.selectedRowsLength}) Adet` },
|
|
22
|
+
{
|
|
23
|
+
key: OperationType.ApplyExceptSelected,
|
|
24
|
+
label: `Seçilenlere Hariç Tümüne Uygula (${this.totalRecords - this.selectedRowsLength}) Adet`
|
|
25
|
+
},
|
|
26
|
+
{ key: OperationType.ApplyAll, label: `Tüm Arama Sonuçlarına Uygula (${this.totalRecords}) Adet` }
|
|
27
|
+
];
|
|
28
|
+
this.dialogConfig.draggable = true;
|
|
29
|
+
this.dialogConfig.header = 'İşlem Hangi Satırlara Uygulansın?';
|
|
30
|
+
this.dialogConfig.contentStyle = { overflow: 'auto', 'max-width': '350px' };
|
|
31
|
+
}
|
|
32
|
+
get tableRef() {
|
|
33
|
+
return this.dialogConfig.data.tableRef;
|
|
34
|
+
}
|
|
35
|
+
get totalRecords() {
|
|
36
|
+
return this.tableRef.tableRef._totalRecords;
|
|
37
|
+
}
|
|
38
|
+
get selectedRowsLength() {
|
|
39
|
+
return this.tableRef.selectedRows.length;
|
|
40
|
+
}
|
|
41
|
+
submit() {
|
|
42
|
+
this.ref.close(this.selectedOption);
|
|
43
|
+
}
|
|
44
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: OperationTypesComponent, deps: [{ token: i1.DynamicDialogRef }, { token: i1.DynamicDialogConfig }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
45
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: OperationTypesComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: `
|
|
46
|
+
<div class="flex flex-column gap-4 px-3">
|
|
47
|
+
<aril-radio-button [(ngModel)]="selectedOption" [options]="options" />
|
|
48
|
+
<aril-button class="align-self-end" color="success" label="Devam" (clickEvent)="submit()" />
|
|
49
|
+
</div>
|
|
50
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: RadioButtonComponent, selector: "aril-radio-button[ngModel], aril-radio-button[formControl], aril-radio-button[formControlName]", inputs: ["options", "tabindex", "align"] }, { kind: "component", type: ButtonComponent, selector: "aril-button:not([click])", inputs: ["label", "loading", "disabled", "raised", "outlined", "badge", "size", "icon", "color"], outputs: ["clickEvent"] }] }); }
|
|
51
|
+
}
|
|
52
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: OperationTypesComponent, decorators: [{
|
|
53
|
+
type: Component,
|
|
54
|
+
args: [{
|
|
55
|
+
standalone: true,
|
|
56
|
+
template: `
|
|
57
|
+
<div class="flex flex-column gap-4 px-3">
|
|
58
|
+
<aril-radio-button [(ngModel)]="selectedOption" [options]="options" />
|
|
59
|
+
<aril-button class="align-self-end" color="success" label="Devam" (clickEvent)="submit()" />
|
|
60
|
+
</div>
|
|
61
|
+
`,
|
|
62
|
+
imports: [FormsModule, RadioButtonComponent, ButtonComponent]
|
|
63
|
+
}]
|
|
64
|
+
}], ctorParameters: () => [{ type: i1.DynamicDialogRef }, { type: i1.DynamicDialogConfig }] });
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Generated bundle index. Do not edit.
|
|
68
|
+
*/
|
|
69
|
+
|
|
70
|
+
export { OperationType, OperationTypesComponent };
|
|
71
|
+
//# sourceMappingURL=aril-ui-operation-types-dialog.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"aril-ui-operation-types-dialog.mjs","sources":["../../projects/aril/ui/operation-types-dialog/src/operation-types-dialog.component.ts","../../projects/aril/ui/operation-types-dialog/aril-ui-operation-types-dialog.ts"],"sourcesContent":["import { Component } from '@angular/core';\r\nimport { FormsModule } from '@angular/forms';\r\n\r\nimport { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';\r\n\r\nimport { ButtonComponent } from 'aril/ui/button';\r\nimport { RadioButtonComponent } from 'aril/ui/radioButton';\r\nimport { TableComponent } from 'aril/ui/table';\r\n\r\nexport enum OperationType {\r\n\tApplyOnlySelected = 'APPLY_ONLY_SELECTED',\r\n\tApplyExceptSelected = 'APPLY_EXCEPT_SELECTED',\r\n\tApplyAll = 'APPLY_ALL'\r\n}\r\n\r\n@Component({\r\n\tstandalone: true,\r\n\ttemplate: `\r\n\t\t<div class=\"flex flex-column gap-4 px-3\">\r\n\t\t\t<aril-radio-button [(ngModel)]=\"selectedOption\" [options]=\"options\" />\r\n\t\t\t<aril-button class=\"align-self-end\" color=\"success\" label=\"Devam\" (clickEvent)=\"submit()\" />\r\n\t\t</div>\r\n\t`,\r\n\timports: [FormsModule, RadioButtonComponent, ButtonComponent]\r\n})\r\nexport class OperationTypesComponent {\r\n\tselectedOption = OperationType.ApplyOnlySelected;\r\n\r\n\toptions = [\r\n\t\t{ key: OperationType.ApplyOnlySelected, label: `Yalnızca Seçilenlere Uygula (${this.selectedRowsLength}) Adet` },\r\n\t\t{\r\n\t\t\tkey: OperationType.ApplyExceptSelected,\r\n\t\t\tlabel: `Seçilenlere Hariç Tümüne Uygula (${this.totalRecords - this.selectedRowsLength}) Adet`\r\n\t\t},\r\n\t\t{ key: OperationType.ApplyAll, label: `Tüm Arama Sonuçlarına Uygula (${this.totalRecords}) Adet` }\r\n\t];\r\n\r\n\tconstructor(private ref: DynamicDialogRef, private dialogConfig: DynamicDialogConfig) {\r\n\t\tthis.dialogConfig.draggable = true;\r\n\t\tthis.dialogConfig.header = 'İşlem Hangi Satırlara Uygulansın?';\r\n\t\tthis.dialogConfig.contentStyle = { overflow: 'auto', 'max-width': '350px' };\r\n\t}\r\n\r\n\tget tableRef(): TableComponent {\r\n\t\treturn this.dialogConfig.data.tableRef;\r\n\t}\r\n\r\n\tget totalRecords(): number {\r\n\t\treturn this.tableRef.tableRef._totalRecords;\r\n\t}\r\n\r\n\tget selectedRowsLength(): number {\r\n\t\treturn this.tableRef.selectedRows.length;\r\n\t}\r\n\r\n\tsubmit(): void {\r\n\t\tthis.ref.close(this.selectedOption);\r\n\t}\r\n}\r\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": "aril",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.91",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^17.1.0",
|
|
6
6
|
"@angular/core": "^17.1.0",
|
|
@@ -38,18 +38,18 @@
|
|
|
38
38
|
"esm": "./esm2022/boot/aril-boot.mjs",
|
|
39
39
|
"default": "./fesm2022/aril-boot.mjs"
|
|
40
40
|
},
|
|
41
|
-
"./i18n": {
|
|
42
|
-
"types": "./i18n/index.d.ts",
|
|
43
|
-
"esm2022": "./esm2022/i18n/aril-i18n.mjs",
|
|
44
|
-
"esm": "./esm2022/i18n/aril-i18n.mjs",
|
|
45
|
-
"default": "./fesm2022/aril-i18n.mjs"
|
|
46
|
-
},
|
|
47
41
|
"./http": {
|
|
48
42
|
"types": "./http/index.d.ts",
|
|
49
43
|
"esm2022": "./esm2022/http/aril-http.mjs",
|
|
50
44
|
"esm": "./esm2022/http/aril-http.mjs",
|
|
51
45
|
"default": "./fesm2022/aril-http.mjs"
|
|
52
46
|
},
|
|
47
|
+
"./i18n": {
|
|
48
|
+
"types": "./i18n/index.d.ts",
|
|
49
|
+
"esm2022": "./esm2022/i18n/aril-i18n.mjs",
|
|
50
|
+
"esm": "./esm2022/i18n/aril-i18n.mjs",
|
|
51
|
+
"default": "./fesm2022/aril-i18n.mjs"
|
|
52
|
+
},
|
|
53
53
|
"./keycloak": {
|
|
54
54
|
"types": "./keycloak/index.d.ts",
|
|
55
55
|
"esm2022": "./esm2022/keycloak/aril-keycloak.mjs",
|
|
@@ -74,18 +74,18 @@
|
|
|
74
74
|
"esm": "./esm2022/util/aril-util.mjs",
|
|
75
75
|
"default": "./fesm2022/aril-util.mjs"
|
|
76
76
|
},
|
|
77
|
-
"./boot/host": {
|
|
78
|
-
"types": "./boot/host/index.d.ts",
|
|
79
|
-
"esm2022": "./esm2022/boot/host/aril-boot-host.mjs",
|
|
80
|
-
"esm": "./esm2022/boot/host/aril-boot-host.mjs",
|
|
81
|
-
"default": "./fesm2022/aril-boot-host.mjs"
|
|
82
|
-
},
|
|
83
77
|
"./boot/mfe": {
|
|
84
78
|
"types": "./boot/mfe/index.d.ts",
|
|
85
79
|
"esm2022": "./esm2022/boot/mfe/aril-boot-mfe.mjs",
|
|
86
80
|
"esm": "./esm2022/boot/mfe/aril-boot-mfe.mjs",
|
|
87
81
|
"default": "./fesm2022/aril-boot-mfe.mjs"
|
|
88
82
|
},
|
|
83
|
+
"./boot/host": {
|
|
84
|
+
"types": "./boot/host/index.d.ts",
|
|
85
|
+
"esm2022": "./esm2022/boot/host/aril-boot-host.mjs",
|
|
86
|
+
"esm": "./esm2022/boot/host/aril-boot-host.mjs",
|
|
87
|
+
"default": "./fesm2022/aril-boot-host.mjs"
|
|
88
|
+
},
|
|
89
89
|
"./theme/layout": {
|
|
90
90
|
"types": "./theme/layout/index.d.ts",
|
|
91
91
|
"esm2022": "./esm2022/theme/layout/aril-theme-layout.mjs",
|
|
@@ -104,6 +104,12 @@
|
|
|
104
104
|
"esm": "./esm2022/ui/badge/aril-ui-badge.mjs",
|
|
105
105
|
"default": "./fesm2022/aril-ui-badge.mjs"
|
|
106
106
|
},
|
|
107
|
+
"./ui/button": {
|
|
108
|
+
"types": "./ui/button/index.d.ts",
|
|
109
|
+
"esm2022": "./esm2022/ui/button/aril-ui-button.mjs",
|
|
110
|
+
"esm": "./esm2022/ui/button/aril-ui-button.mjs",
|
|
111
|
+
"default": "./fesm2022/aril-ui-button.mjs"
|
|
112
|
+
},
|
|
107
113
|
"./ui/calendar": {
|
|
108
114
|
"types": "./ui/calendar/index.d.ts",
|
|
109
115
|
"esm2022": "./esm2022/ui/calendar/aril-ui-calendar.mjs",
|
|
@@ -116,11 +122,11 @@
|
|
|
116
122
|
"esm": "./esm2022/ui/checkbox/aril-ui-checkbox.mjs",
|
|
117
123
|
"default": "./fesm2022/aril-ui-checkbox.mjs"
|
|
118
124
|
},
|
|
119
|
-
"./ui/
|
|
120
|
-
"types": "./ui/
|
|
121
|
-
"esm2022": "./esm2022/ui/
|
|
122
|
-
"esm": "./esm2022/ui/
|
|
123
|
-
"default": "./fesm2022/aril-ui-
|
|
125
|
+
"./ui/field": {
|
|
126
|
+
"types": "./ui/field/index.d.ts",
|
|
127
|
+
"esm2022": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
128
|
+
"esm": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
129
|
+
"default": "./fesm2022/aril-ui-field.mjs"
|
|
124
130
|
},
|
|
125
131
|
"./ui/dxField": {
|
|
126
132
|
"types": "./ui/dxField/index.d.ts",
|
|
@@ -128,11 +134,17 @@
|
|
|
128
134
|
"esm": "./esm2022/ui/dxField/aril-ui-dxField.mjs",
|
|
129
135
|
"default": "./fesm2022/aril-ui-dxField.mjs"
|
|
130
136
|
},
|
|
131
|
-
"./ui/
|
|
132
|
-
"types": "./ui/
|
|
133
|
-
"esm2022": "./esm2022/ui/
|
|
134
|
-
"esm": "./esm2022/ui/
|
|
135
|
-
"default": "./fesm2022/aril-ui-
|
|
137
|
+
"./ui/chip": {
|
|
138
|
+
"types": "./ui/chip/index.d.ts",
|
|
139
|
+
"esm2022": "./esm2022/ui/chip/aril-ui-chip.mjs",
|
|
140
|
+
"esm": "./esm2022/ui/chip/aril-ui-chip.mjs",
|
|
141
|
+
"default": "./fesm2022/aril-ui-chip.mjs"
|
|
142
|
+
},
|
|
143
|
+
"./ui/form": {
|
|
144
|
+
"types": "./ui/form/index.d.ts",
|
|
145
|
+
"esm2022": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
146
|
+
"esm": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
147
|
+
"default": "./fesm2022/aril-ui-form.mjs"
|
|
136
148
|
},
|
|
137
149
|
"./ui/fileUpload": {
|
|
138
150
|
"types": "./ui/fileUpload/index.d.ts",
|
|
@@ -140,17 +152,11 @@
|
|
|
140
152
|
"esm": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
141
153
|
"default": "./fesm2022/aril-ui-fileUpload.mjs"
|
|
142
154
|
},
|
|
143
|
-
"./ui/
|
|
144
|
-
"types": "./ui/
|
|
145
|
-
"esm2022": "./esm2022/ui/
|
|
146
|
-
"esm": "./esm2022/ui/
|
|
147
|
-
"default": "./fesm2022/aril-ui-
|
|
148
|
-
},
|
|
149
|
-
"./ui/form": {
|
|
150
|
-
"types": "./ui/form/index.d.ts",
|
|
151
|
-
"esm2022": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
152
|
-
"esm": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
153
|
-
"default": "./fesm2022/aril-ui-form.mjs"
|
|
155
|
+
"./ui/mask": {
|
|
156
|
+
"types": "./ui/mask/index.d.ts",
|
|
157
|
+
"esm2022": "./esm2022/ui/mask/aril-ui-mask.mjs",
|
|
158
|
+
"esm": "./esm2022/ui/mask/aril-ui-mask.mjs",
|
|
159
|
+
"default": "./fesm2022/aril-ui-mask.mjs"
|
|
154
160
|
},
|
|
155
161
|
"./ui/lib": {
|
|
156
162
|
"types": "./ui/lib/index.d.ts",
|
|
@@ -158,18 +164,18 @@
|
|
|
158
164
|
"esm": "./esm2022/ui/lib/aril-ui-lib.mjs",
|
|
159
165
|
"default": "./fesm2022/aril-ui-lib.mjs"
|
|
160
166
|
},
|
|
167
|
+
"./ui/operation-types-dialog": {
|
|
168
|
+
"types": "./ui/operation-types-dialog/index.d.ts",
|
|
169
|
+
"esm2022": "./esm2022/ui/operation-types-dialog/aril-ui-operation-types-dialog.mjs",
|
|
170
|
+
"esm": "./esm2022/ui/operation-types-dialog/aril-ui-operation-types-dialog.mjs",
|
|
171
|
+
"default": "./fesm2022/aril-ui-operation-types-dialog.mjs"
|
|
172
|
+
},
|
|
161
173
|
"./ui/loader": {
|
|
162
174
|
"types": "./ui/loader/index.d.ts",
|
|
163
175
|
"esm2022": "./esm2022/ui/loader/aril-ui-loader.mjs",
|
|
164
176
|
"esm": "./esm2022/ui/loader/aril-ui-loader.mjs",
|
|
165
177
|
"default": "./fesm2022/aril-ui-loader.mjs"
|
|
166
178
|
},
|
|
167
|
-
"./ui/mask": {
|
|
168
|
-
"types": "./ui/mask/index.d.ts",
|
|
169
|
-
"esm2022": "./esm2022/ui/mask/aril-ui-mask.mjs",
|
|
170
|
-
"esm": "./esm2022/ui/mask/aril-ui-mask.mjs",
|
|
171
|
-
"default": "./fesm2022/aril-ui-mask.mjs"
|
|
172
|
-
},
|
|
173
179
|
"./ui/number": {
|
|
174
180
|
"types": "./ui/number/index.d.ts",
|
|
175
181
|
"esm2022": "./esm2022/ui/number/aril-ui-number.mjs",
|
|
@@ -182,6 +188,12 @@
|
|
|
182
188
|
"esm": "./esm2022/ui/panel/aril-ui-panel.mjs",
|
|
183
189
|
"default": "./fesm2022/aril-ui-panel.mjs"
|
|
184
190
|
},
|
|
191
|
+
"./ui/radioButton": {
|
|
192
|
+
"types": "./ui/radioButton/index.d.ts",
|
|
193
|
+
"esm2022": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
194
|
+
"esm": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
195
|
+
"default": "./fesm2022/aril-ui-radioButton.mjs"
|
|
196
|
+
},
|
|
185
197
|
"./ui/overlayPanel": {
|
|
186
198
|
"types": "./ui/overlayPanel/index.d.ts",
|
|
187
199
|
"esm2022": "./esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs",
|
|
@@ -200,18 +212,18 @@
|
|
|
200
212
|
"esm": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
201
213
|
"default": "./fesm2022/aril-ui-progressbar.mjs"
|
|
202
214
|
},
|
|
203
|
-
"./ui/radioButton": {
|
|
204
|
-
"types": "./ui/radioButton/index.d.ts",
|
|
205
|
-
"esm2022": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
206
|
-
"esm": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
207
|
-
"default": "./fesm2022/aril-ui-radioButton.mjs"
|
|
208
|
-
},
|
|
209
215
|
"./ui/selectBox": {
|
|
210
216
|
"types": "./ui/selectBox/index.d.ts",
|
|
211
217
|
"esm2022": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
212
218
|
"esm": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
213
219
|
"default": "./fesm2022/aril-ui-selectBox.mjs"
|
|
214
220
|
},
|
|
221
|
+
"./ui/table-expand": {
|
|
222
|
+
"types": "./ui/table-expand/index.d.ts",
|
|
223
|
+
"esm2022": "./esm2022/ui/table-expand/aril-ui-table-expand.mjs",
|
|
224
|
+
"esm": "./esm2022/ui/table-expand/aril-ui-table-expand.mjs",
|
|
225
|
+
"default": "./fesm2022/aril-ui-table-expand.mjs"
|
|
226
|
+
},
|
|
215
227
|
"./ui/switch": {
|
|
216
228
|
"types": "./ui/switch/index.d.ts",
|
|
217
229
|
"esm2022": "./esm2022/ui/switch/aril-ui-switch.mjs",
|
|
@@ -224,11 +236,11 @@
|
|
|
224
236
|
"esm": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
225
237
|
"default": "./fesm2022/aril-ui-table.mjs"
|
|
226
238
|
},
|
|
227
|
-
"./ui/
|
|
228
|
-
"types": "./ui/
|
|
229
|
-
"esm2022": "./esm2022/ui/
|
|
230
|
-
"esm": "./esm2022/ui/
|
|
231
|
-
"default": "./fesm2022/aril-ui-
|
|
239
|
+
"./ui/text": {
|
|
240
|
+
"types": "./ui/text/index.d.ts",
|
|
241
|
+
"esm2022": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
242
|
+
"esm": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
243
|
+
"default": "./fesm2022/aril-ui-text.mjs"
|
|
232
244
|
},
|
|
233
245
|
"./ui/tagBox": {
|
|
234
246
|
"types": "./ui/tagBox/index.d.ts",
|
|
@@ -236,29 +248,29 @@
|
|
|
236
248
|
"esm": "./esm2022/ui/tagBox/aril-ui-tagBox.mjs",
|
|
237
249
|
"default": "./fesm2022/aril-ui-tagBox.mjs"
|
|
238
250
|
},
|
|
239
|
-
"./ui/text": {
|
|
240
|
-
"types": "./ui/text/index.d.ts",
|
|
241
|
-
"esm2022": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
242
|
-
"esm": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
243
|
-
"default": "./fesm2022/aril-ui-text.mjs"
|
|
244
|
-
},
|
|
245
251
|
"./ui/textArea": {
|
|
246
252
|
"types": "./ui/textArea/index.d.ts",
|
|
247
253
|
"esm2022": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
248
254
|
"esm": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
249
255
|
"default": "./fesm2022/aril-ui-textArea.mjs"
|
|
250
256
|
},
|
|
257
|
+
"./ui/tree": {
|
|
258
|
+
"types": "./ui/tree/index.d.ts",
|
|
259
|
+
"esm2022": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
260
|
+
"esm": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
261
|
+
"default": "./fesm2022/aril-ui-tree.mjs"
|
|
262
|
+
},
|
|
251
263
|
"./ui/toggle-button": {
|
|
252
264
|
"types": "./ui/toggle-button/index.d.ts",
|
|
253
265
|
"esm2022": "./esm2022/ui/toggle-button/aril-ui-toggle-button.mjs",
|
|
254
266
|
"esm": "./esm2022/ui/toggle-button/aril-ui-toggle-button.mjs",
|
|
255
267
|
"default": "./fesm2022/aril-ui-toggle-button.mjs"
|
|
256
268
|
},
|
|
257
|
-
"./ui/
|
|
258
|
-
"types": "./ui/
|
|
259
|
-
"esm2022": "./esm2022/ui/
|
|
260
|
-
"esm": "./esm2022/ui/
|
|
261
|
-
"default": "./fesm2022/aril-ui-
|
|
269
|
+
"./ui/value": {
|
|
270
|
+
"types": "./ui/value/index.d.ts",
|
|
271
|
+
"esm2022": "./esm2022/ui/value/aril-ui-value.mjs",
|
|
272
|
+
"esm": "./esm2022/ui/value/aril-ui-value.mjs",
|
|
273
|
+
"default": "./fesm2022/aril-ui-value.mjs"
|
|
262
274
|
},
|
|
263
275
|
"./ui/treeSelect": {
|
|
264
276
|
"types": "./ui/treeSelect/index.d.ts",
|
|
@@ -272,41 +284,41 @@
|
|
|
272
284
|
"esm": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
273
285
|
"default": "./fesm2022/aril-ui-treeTable.mjs"
|
|
274
286
|
},
|
|
275
|
-
"./util/block": {
|
|
276
|
-
"types": "./util/block/index.d.ts",
|
|
277
|
-
"esm2022": "./esm2022/util/block/aril-util-block.mjs",
|
|
278
|
-
"esm": "./esm2022/util/block/aril-util-block.mjs",
|
|
279
|
-
"default": "./fesm2022/aril-util-block.mjs"
|
|
280
|
-
},
|
|
281
|
-
"./ui/value": {
|
|
282
|
-
"types": "./ui/value/index.d.ts",
|
|
283
|
-
"esm2022": "./esm2022/ui/value/aril-ui-value.mjs",
|
|
284
|
-
"esm": "./esm2022/ui/value/aril-ui-value.mjs",
|
|
285
|
-
"default": "./fesm2022/aril-ui-value.mjs"
|
|
286
|
-
},
|
|
287
287
|
"./util/custom_pages": {
|
|
288
288
|
"types": "./util/custom_pages/index.d.ts",
|
|
289
289
|
"esm2022": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
290
290
|
"esm": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
291
291
|
"default": "./fesm2022/aril-util-custom_pages.mjs"
|
|
292
292
|
},
|
|
293
|
+
"./util/block": {
|
|
294
|
+
"types": "./util/block/index.d.ts",
|
|
295
|
+
"esm2022": "./esm2022/util/block/aril-util-block.mjs",
|
|
296
|
+
"esm": "./esm2022/util/block/aril-util-block.mjs",
|
|
297
|
+
"default": "./fesm2022/aril-util-block.mjs"
|
|
298
|
+
},
|
|
293
299
|
"./util/init-event": {
|
|
294
300
|
"types": "./util/init-event/index.d.ts",
|
|
295
301
|
"esm2022": "./esm2022/util/init-event/aril-util-init-event.mjs",
|
|
296
302
|
"esm": "./esm2022/util/init-event/aril-util-init-event.mjs",
|
|
297
303
|
"default": "./fesm2022/aril-util-init-event.mjs"
|
|
298
304
|
},
|
|
305
|
+
"./util/loaders": {
|
|
306
|
+
"types": "./util/loaders/index.d.ts",
|
|
307
|
+
"esm2022": "./esm2022/util/loaders/aril-util-loaders.mjs",
|
|
308
|
+
"esm": "./esm2022/util/loaders/aril-util-loaders.mjs",
|
|
309
|
+
"default": "./fesm2022/aril-util-loaders.mjs"
|
|
310
|
+
},
|
|
299
311
|
"./util/lib": {
|
|
300
312
|
"types": "./util/lib/index.d.ts",
|
|
301
313
|
"esm2022": "./esm2022/util/lib/aril-util-lib.mjs",
|
|
302
314
|
"esm": "./esm2022/util/lib/aril-util-lib.mjs",
|
|
303
315
|
"default": "./fesm2022/aril-util-lib.mjs"
|
|
304
316
|
},
|
|
305
|
-
"./util/
|
|
306
|
-
"types": "./util/
|
|
307
|
-
"esm2022": "./esm2022/util/
|
|
308
|
-
"esm": "./esm2022/util/
|
|
309
|
-
"default": "./fesm2022/aril-util-
|
|
317
|
+
"./util/unwrap": {
|
|
318
|
+
"types": "./util/unwrap/index.d.ts",
|
|
319
|
+
"esm2022": "./esm2022/util/unwrap/aril-util-unwrap.mjs",
|
|
320
|
+
"esm": "./esm2022/util/unwrap/aril-util-unwrap.mjs",
|
|
321
|
+
"default": "./fesm2022/aril-util-unwrap.mjs"
|
|
310
322
|
},
|
|
311
323
|
"./util/primitive-extensions": {
|
|
312
324
|
"types": "./util/primitive-extensions/index.d.ts",
|
|
@@ -314,11 +326,11 @@
|
|
|
314
326
|
"esm": "./esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs",
|
|
315
327
|
"default": "./fesm2022/aril-util-primitive-extensions.mjs"
|
|
316
328
|
},
|
|
317
|
-
"./
|
|
318
|
-
"types": "./
|
|
319
|
-
"esm2022": "./esm2022/
|
|
320
|
-
"esm": "./esm2022/
|
|
321
|
-
"default": "./fesm2022/aril-
|
|
329
|
+
"./util/pub-sub": {
|
|
330
|
+
"types": "./util/pub-sub/index.d.ts",
|
|
331
|
+
"esm2022": "./esm2022/util/pub-sub/aril-util-pub-sub.mjs",
|
|
332
|
+
"esm": "./esm2022/util/pub-sub/aril-util-pub-sub.mjs",
|
|
333
|
+
"default": "./fesm2022/aril-util-pub-sub.mjs"
|
|
322
334
|
},
|
|
323
335
|
"./boot/config/apps": {
|
|
324
336
|
"types": "./boot/config/apps/index.d.ts",
|
|
@@ -326,11 +338,11 @@
|
|
|
326
338
|
"esm": "./esm2022/boot/config/apps/aril-boot-config-apps.mjs",
|
|
327
339
|
"default": "./fesm2022/aril-boot-config-apps.mjs"
|
|
328
340
|
},
|
|
329
|
-
"./
|
|
330
|
-
"types": "./
|
|
331
|
-
"esm2022": "./esm2022/
|
|
332
|
-
"esm": "./esm2022/
|
|
333
|
-
"default": "./fesm2022/aril-
|
|
341
|
+
"./boot/config/api": {
|
|
342
|
+
"types": "./boot/config/api/index.d.ts",
|
|
343
|
+
"esm2022": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
344
|
+
"esm": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
345
|
+
"default": "./fesm2022/aril-boot-config-api.mjs"
|
|
334
346
|
},
|
|
335
347
|
"./boot/config/plugins": {
|
|
336
348
|
"types": "./boot/config/plugins/index.d.ts",
|
|
@@ -338,12 +350,6 @@
|
|
|
338
350
|
"esm": "./esm2022/boot/config/plugins/aril-boot-config-plugins.mjs",
|
|
339
351
|
"default": "./fesm2022/aril-boot-config-plugins.mjs"
|
|
340
352
|
},
|
|
341
|
-
"./util/pub-sub": {
|
|
342
|
-
"types": "./util/pub-sub/index.d.ts",
|
|
343
|
-
"esm2022": "./esm2022/util/pub-sub/aril-util-pub-sub.mjs",
|
|
344
|
-
"esm": "./esm2022/util/pub-sub/aril-util-pub-sub.mjs",
|
|
345
|
-
"default": "./fesm2022/aril-util-pub-sub.mjs"
|
|
346
|
-
},
|
|
347
353
|
"./ui/business-components/assetPicker": {
|
|
348
354
|
"types": "./ui/business-components/assetPicker/index.d.ts",
|
|
349
355
|
"esm2022": "./esm2022/ui/business-components/assetPicker/aril-ui-business-components-assetPicker.mjs",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/operation-types-dialog.component';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
2
|
+
import { TableComponent } from 'aril/ui/table';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare enum OperationType {
|
|
5
|
+
ApplyOnlySelected = "APPLY_ONLY_SELECTED",
|
|
6
|
+
ApplyExceptSelected = "APPLY_EXCEPT_SELECTED",
|
|
7
|
+
ApplyAll = "APPLY_ALL"
|
|
8
|
+
}
|
|
9
|
+
export declare class OperationTypesComponent {
|
|
10
|
+
private ref;
|
|
11
|
+
private dialogConfig;
|
|
12
|
+
selectedOption: OperationType;
|
|
13
|
+
options: {
|
|
14
|
+
key: OperationType;
|
|
15
|
+
label: string;
|
|
16
|
+
}[];
|
|
17
|
+
constructor(ref: DynamicDialogRef, dialogConfig: DynamicDialogConfig);
|
|
18
|
+
get tableRef(): TableComponent;
|
|
19
|
+
get totalRecords(): number;
|
|
20
|
+
get selectedRowsLength(): number;
|
|
21
|
+
submit(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OperationTypesComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OperationTypesComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
24
|
+
}
|