aril 0.0.5 → 0.0.6
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/dxField/src/dx-field.component.mjs +3 -3
- package/esm2022/ui/fileUpload/src/file-upload.component.mjs +6 -4
- package/esm2022/ui/form/index.mjs +12 -1
- package/esm2022/ui/panel/src/panel.component.mjs +3 -4
- package/esm2022/ui/selectBox/src/select-box.component.mjs +4 -7
- package/esm2022/ui/table/index.mjs +16 -1
- package/esm2022/ui/tagBox/src/tag-box.component.mjs +4 -7
- package/esm2022/ui/text/src/text.component.mjs +1 -1
- package/esm2022/ui/textArea/src/text-area.component.mjs +5 -1
- package/esm2022/ui/tree/src/tree.component.mjs +6 -5
- package/esm2022/ui/treeTable/src/tree-table.component.mjs +4 -4
- package/esm2022/ui/value/src/value.component.mjs +1 -1
- package/fesm2022/aril-ui-dxField.mjs +2 -2
- package/fesm2022/aril-ui-dxField.mjs.map +1 -1
- package/fesm2022/aril-ui-fileUpload.mjs +5 -3
- package/fesm2022/aril-ui-fileUpload.mjs.map +1 -1
- package/fesm2022/aril-ui-form.mjs +11 -0
- package/fesm2022/aril-ui-form.mjs.map +1 -1
- package/fesm2022/aril-ui-panel.mjs +2 -3
- package/fesm2022/aril-ui-panel.mjs.map +1 -1
- package/fesm2022/aril-ui-selectBox.mjs +3 -6
- package/fesm2022/aril-ui-selectBox.mjs.map +1 -1
- package/fesm2022/aril-ui-table.mjs +15 -0
- package/fesm2022/aril-ui-table.mjs.map +1 -1
- package/fesm2022/aril-ui-tagBox.mjs +3 -6
- package/fesm2022/aril-ui-tagBox.mjs.map +1 -1
- package/fesm2022/aril-ui-text.mjs.map +1 -1
- package/fesm2022/aril-ui-textArea.mjs +4 -0
- package/fesm2022/aril-ui-textArea.mjs.map +1 -1
- package/fesm2022/aril-ui-tree.mjs +5 -4
- package/fesm2022/aril-ui-tree.mjs.map +1 -1
- package/fesm2022/aril-ui-treeTable.mjs +3 -3
- package/fesm2022/aril-ui-treeTable.mjs.map +1 -1
- package/fesm2022/aril-ui-value.mjs.map +1 -1
- package/package.json +7 -13
- package/ui/fileUpload/src/file-upload.component.d.ts +1 -1
- package/ui/panel/src/panel.component.d.ts +1 -1
- package/ui/selectBox/src/select-box.component.d.ts +1 -3
- package/ui/tagBox/src/tag-box.component.d.ts +1 -3
- package/ui/text/src/text.component.d.ts +1 -1
- package/ui/textArea/src/text-area.component.d.ts +1 -1
- package/ui/tree/src/tree.component.d.ts +2 -2
- package/ui/treeTable/src/tree-table.component.d.ts +2 -2
- package/ui/value/src/value.component.d.ts +2 -2
- package/esm2022/ui/confirmPopup/aril-ui-confirmPopup.mjs +0 -5
- package/esm2022/ui/confirmPopup/index.mjs +0 -2
- package/esm2022/ui/confirmPopup/src/confirm-popup.component.mjs +0 -28
- package/fesm2022/aril-ui-confirmPopup.mjs +0 -35
- package/fesm2022/aril-ui-confirmPopup.mjs.map +0 -1
- package/ui/confirmPopup/index.d.ts +0 -1
- package/ui/confirmPopup/src/confirm-popup.component.d.ts +0 -9
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { FormControl } from '@angular/forms';
|
|
2
1
|
import { BaseInputComponent } from 'aril/ui/lib';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
import * as i1 from "aril/ui/lib";
|
|
@@ -8,8 +7,7 @@ export declare class TagBoxComponent extends BaseInputComponent {
|
|
|
8
7
|
tabindex: number;
|
|
9
8
|
acceptCustomValue: boolean;
|
|
10
9
|
items: Array<string | number>;
|
|
11
|
-
formCtrl: FormControl;
|
|
12
10
|
onCustomItemCreating(e: any): void;
|
|
13
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<TagBoxComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TagBoxComponent, "aril-tag-box", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "maxDisplayedTags": { "alias": "maxDisplayedTags"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "acceptCustomValue": { "alias": "acceptCustomValue"; "required": false; }; "items": { "alias": "items"; "required": true; };
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagBoxComponent, "aril-tag-box", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "maxDisplayedTags": { "alias": "maxDisplayedTags"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "acceptCustomValue": { "alias": "acceptCustomValue"; "required": false; }; "items": { "alias": "items"; "required": true; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
15
13
|
}
|
|
@@ -3,7 +3,7 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
import * as i1 from "aril/ui/lib";
|
|
4
4
|
type Size = 'sm' | 'md' | 'lg';
|
|
5
5
|
export declare class TextComponent extends BaseInputComponent {
|
|
6
|
-
placeholder
|
|
6
|
+
placeholder: string;
|
|
7
7
|
tabindex: number;
|
|
8
8
|
icon?: PrimeIcon;
|
|
9
9
|
iconPosClass?: IconPosTypes;
|
|
@@ -5,7 +5,7 @@ export declare class TextAreaComponent extends BaseInputComponent {
|
|
|
5
5
|
rows?: number;
|
|
6
6
|
cols?: number;
|
|
7
7
|
tabindex: number;
|
|
8
|
-
placeholder
|
|
8
|
+
placeholder: string;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
|
|
10
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "aril-text-area[ngModel], aril-text-area[formControl], aril-text-area[formControlName]", never, { "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
11
11
|
}
|
|
@@ -3,7 +3,7 @@ import { TreeNode } from 'primeng/api';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
type SelectionModes = "multiple" | "checkbox" | "single";
|
|
5
5
|
export declare class TreeComponent {
|
|
6
|
-
|
|
6
|
+
items: TreeNode[];
|
|
7
7
|
selectionMode: SelectionModes;
|
|
8
8
|
contextMenu: any;
|
|
9
9
|
metaKeySelection: boolean;
|
|
@@ -20,6 +20,6 @@ export declare class TreeComponent {
|
|
|
20
20
|
nodeExpand: EventEmitter<unknown>;
|
|
21
21
|
nodeCollapse: EventEmitter<unknown>;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<TreeComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TreeComponent, "aril-tree", never, { "
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeComponent, "aril-tree", never, { "items": { "alias": "items"; "required": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "contextMenu": { "alias": "contextMenu"; "required": false; }; "metaKeySelection": { "alias": "metaKeySelection"; "required": false; }; "propagateSelectionUp": { "alias": "propagateSelectionUp"; "required": false; }; "propagateSelectionDown": { "alias": "propagateSelectionDown"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingIcon": { "alias": "loadingIcon"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterMode": { "alias": "filterMode"; "required": false; }; "filterBy": { "alias": "filterBy"; "required": false; }; "filterPlaceholder": { "alias": "filterPlaceholder"; "required": false; }; }, { "nodeSelect": "nodeSelect"; "nodeUnselect": "nodeUnselect"; "nodeExpand": "nodeExpand"; "nodeCollapse": "nodeCollapse"; }, never, never, true, never>;
|
|
24
24
|
}
|
|
25
25
|
export {};
|
|
@@ -5,7 +5,7 @@ type SortMode = 'single' | 'multiple';
|
|
|
5
5
|
type FilterMode = 'lenient' | 'strict';
|
|
6
6
|
type SelectionModes = 'single' | 'multiple' | 'checkbox';
|
|
7
7
|
export declare class TreeTableComponent {
|
|
8
|
-
|
|
8
|
+
items: TreeNode[];
|
|
9
9
|
columns: Array<object>;
|
|
10
10
|
rows: number;
|
|
11
11
|
rowsPerPageOptions: number[];
|
|
@@ -20,6 +20,6 @@ export declare class TreeTableComponent {
|
|
|
20
20
|
getFilterTargetValue(event: Event): string;
|
|
21
21
|
emitSelectedRows(): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<TreeTableComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TreeTableComponent, "aril-tree-table", never, { "
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeTableComponent, "aril-tree-table", never, { "items": { "alias": "items"; "required": true; }; "columns": { "alias": "columns"; "required": true; }; "rows": { "alias": "rows"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "sortMode": { "alias": "sortMode"; "required": false; }; "filterMode": { "alias": "filterMode"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; }, { "selectEvent": "selectEvent"; }, never, ["[exportBtn]"], true, never>;
|
|
24
24
|
}
|
|
25
25
|
export {};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { OnChanges } from '@angular/core';
|
|
2
2
|
import "aril/util/primitive-extensions";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
type ValueTypes = 'text' | '
|
|
4
|
+
type ValueTypes = 'text' | 'number' | 'bool' | 'decimal' | 'date' | 'password';
|
|
5
5
|
export declare class ValueComponent implements OnChanges {
|
|
6
|
-
model:
|
|
6
|
+
model: string | number | boolean;
|
|
7
7
|
type: ValueTypes;
|
|
8
8
|
format: string;
|
|
9
9
|
color: string;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './index';
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXJpbC11aS1jb25maXJtUG9wdXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9hcmlsL3VpL2NvbmZpcm1Qb3B1cC9hcmlsLXVpLWNvbmZpcm1Qb3B1cC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './src/confirm-popup.component';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9hcmlsL3VpL2NvbmZpcm1Qb3B1cC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLCtCQUErQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9zcmMvY29uZmlybS1wb3B1cC5jb21wb25lbnQnOyJdfQ==
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
-
import { ConfirmPopupModule } from 'primeng/confirmpopup';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "primeng/confirmpopup";
|
|
5
|
-
/* TODO :
|
|
6
|
-
1. InputSignal
|
|
7
|
-
2. Content Template
|
|
8
|
-
3. Headless
|
|
9
|
-
*/
|
|
10
|
-
export class ConfirmPopupComponent {
|
|
11
|
-
constructor() {
|
|
12
|
-
this.showEvent = new EventEmitter();
|
|
13
|
-
this.hideEvent = new EventEmitter();
|
|
14
|
-
}
|
|
15
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ConfirmPopupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
16
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: ConfirmPopupComponent, isStandalone: true, selector: "aril-confirm-popup", inputs: { key: "key" }, outputs: { showEvent: "showEvent", hideEvent: "hideEvent" }, ngImport: i0, template: "<p-confirmPopup\r\n\t[key]=\"key\"\r\n\t(onShow)=\"showEvent.emit()\"\r\n\t(onHide)=\"hideEvent.emit()\">\r\n</p-confirmPopup>\r\n", dependencies: [{ kind: "ngmodule", type: ConfirmPopupModule }, { kind: "component", type: i1.ConfirmPopup, selector: "p-confirmPopup", inputs: ["key", "defaultFocus", "showTransitionOptions", "hideTransitionOptions", "autoZIndex", "baseZIndex", "style", "styleClass", "visible"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
17
|
-
}
|
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ConfirmPopupComponent, decorators: [{
|
|
19
|
-
type: Component,
|
|
20
|
-
args: [{ standalone: true, selector: 'aril-confirm-popup', imports: [ConfirmPopupModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<p-confirmPopup\r\n\t[key]=\"key\"\r\n\t(onShow)=\"showEvent.emit()\"\r\n\t(onHide)=\"hideEvent.emit()\">\r\n</p-confirmPopup>\r\n" }]
|
|
21
|
-
}], propDecorators: { key: [{
|
|
22
|
-
type: Input
|
|
23
|
-
}], showEvent: [{
|
|
24
|
-
type: Output
|
|
25
|
-
}], hideEvent: [{
|
|
26
|
-
type: Output
|
|
27
|
-
}] } });
|
|
28
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uZmlybS1wb3B1cC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hcmlsL3VpL2NvbmZpcm1Qb3B1cC9zcmMvY29uZmlybS1wb3B1cC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hcmlsL3VpL2NvbmZpcm1Qb3B1cC9zcmMvY29uZmlybS1wb3B1cC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2hHLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHNCQUFzQixDQUFDOzs7QUFFMUQ7Ozs7RUFJRTtBQVNGLE1BQU0sT0FBTyxxQkFBcUI7SUFQbEM7UUFVWSxjQUFTLEdBQXVCLElBQUksWUFBWSxFQUFFLENBQUM7UUFDbkQsY0FBUyxHQUF1QixJQUFJLFlBQVksRUFBRSxDQUFDO0tBQzlEOzhHQUxZLHFCQUFxQjtrR0FBckIscUJBQXFCLG1LQ2hCbEMsb0lBS0EsMkNEUVksa0JBQWtCOzsyRkFHakIscUJBQXFCO2tCQVBqQyxTQUFTO2lDQUNJLElBQUksWUFDTixvQkFBb0IsV0FFckIsQ0FBQyxrQkFBa0IsQ0FBQyxtQkFDWix1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxHQUFHO3NCQUFYLEtBQUs7Z0JBRUksU0FBUztzQkFBbEIsTUFBTTtnQkFDRyxTQUFTO3NCQUFsQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IENvbmZpcm1Qb3B1cE1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvY29uZmlybXBvcHVwJztcclxuXHJcbi8qIFRPRE8gOiBcclxuICAgIDEuIElucHV0U2lnbmFsXHJcbiAgICAyLiBDb250ZW50IFRlbXBsYXRlXHJcbiAgICAzLiBIZWFkbGVzc1xyXG4qL1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBzZWxlY3RvcjogJ2FyaWwtY29uZmlybS1wb3B1cCcsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2NvbmZpcm0tcG9wdXAuY29tcG9uZW50Lmh0bWwnLFxyXG4gIGltcG9ydHM6IFtDb25maXJtUG9wdXBNb2R1bGVdLFxyXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBDb25maXJtUG9wdXBDb21wb25lbnQge1xyXG4gIEBJbnB1dCgpIGtleT86IHN0cmluZztcclxuXHJcbiAgQE91dHB1dCgpIHNob3dFdmVudDogRXZlbnRFbWl0dGVyPHZvaWQ+ID0gbmV3IEV2ZW50RW1pdHRlcigpO1xyXG4gIEBPdXRwdXQoKSBoaWRlRXZlbnQ6IEV2ZW50RW1pdHRlcjx2b2lkPiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcclxufVxyXG4iLCI8cC1jb25maXJtUG9wdXBcclxuXHRba2V5XT1cImtleVwiXHJcblx0KG9uU2hvdyk9XCJzaG93RXZlbnQuZW1pdCgpXCJcclxuXHQob25IaWRlKT1cImhpZGVFdmVudC5lbWl0KClcIj5cclxuPC9wLWNvbmZpcm1Qb3B1cD5cclxuIl19
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, Component, ChangeDetectionStrategy, Input, Output } from '@angular/core';
|
|
3
|
-
import * as i1 from 'primeng/confirmpopup';
|
|
4
|
-
import { ConfirmPopupModule } from 'primeng/confirmpopup';
|
|
5
|
-
|
|
6
|
-
/* TODO :
|
|
7
|
-
1. InputSignal
|
|
8
|
-
2. Content Template
|
|
9
|
-
3. Headless
|
|
10
|
-
*/
|
|
11
|
-
class ConfirmPopupComponent {
|
|
12
|
-
constructor() {
|
|
13
|
-
this.showEvent = new EventEmitter();
|
|
14
|
-
this.hideEvent = new EventEmitter();
|
|
15
|
-
}
|
|
16
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ConfirmPopupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
17
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: ConfirmPopupComponent, isStandalone: true, selector: "aril-confirm-popup", inputs: { key: "key" }, outputs: { showEvent: "showEvent", hideEvent: "hideEvent" }, ngImport: i0, template: "<p-confirmPopup\r\n\t[key]=\"key\"\r\n\t(onShow)=\"showEvent.emit()\"\r\n\t(onHide)=\"hideEvent.emit()\">\r\n</p-confirmPopup>\r\n", dependencies: [{ kind: "ngmodule", type: ConfirmPopupModule }, { kind: "component", type: i1.ConfirmPopup, selector: "p-confirmPopup", inputs: ["key", "defaultFocus", "showTransitionOptions", "hideTransitionOptions", "autoZIndex", "baseZIndex", "style", "styleClass", "visible"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
18
|
-
}
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ConfirmPopupComponent, decorators: [{
|
|
20
|
-
type: Component,
|
|
21
|
-
args: [{ standalone: true, selector: 'aril-confirm-popup', imports: [ConfirmPopupModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<p-confirmPopup\r\n\t[key]=\"key\"\r\n\t(onShow)=\"showEvent.emit()\"\r\n\t(onHide)=\"hideEvent.emit()\">\r\n</p-confirmPopup>\r\n" }]
|
|
22
|
-
}], propDecorators: { key: [{
|
|
23
|
-
type: Input
|
|
24
|
-
}], showEvent: [{
|
|
25
|
-
type: Output
|
|
26
|
-
}], hideEvent: [{
|
|
27
|
-
type: Output
|
|
28
|
-
}] } });
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* Generated bundle index. Do not edit.
|
|
32
|
-
*/
|
|
33
|
-
|
|
34
|
-
export { ConfirmPopupComponent };
|
|
35
|
-
//# sourceMappingURL=aril-ui-confirmPopup.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"aril-ui-confirmPopup.mjs","sources":["../../projects/aril/ui/confirmPopup/src/confirm-popup.component.ts","../../projects/aril/ui/confirmPopup/src/confirm-popup.component.html","../../projects/aril/ui/confirmPopup/aril-ui-confirmPopup.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';\r\nimport { ConfirmPopupModule } from 'primeng/confirmpopup';\r\n\r\n/* TODO : \r\n 1. InputSignal\r\n 2. Content Template\r\n 3. Headless\r\n*/\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-confirm-popup',\r\n templateUrl: './confirm-popup.component.html',\r\n imports: [ConfirmPopupModule],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class ConfirmPopupComponent {\r\n @Input() key?: string;\r\n\r\n @Output() showEvent: EventEmitter<void> = new EventEmitter();\r\n @Output() hideEvent: EventEmitter<void> = new EventEmitter();\r\n}\r\n","<p-confirmPopup\r\n\t[key]=\"key\"\r\n\t(onShow)=\"showEvent.emit()\"\r\n\t(onHide)=\"hideEvent.emit()\">\r\n</p-confirmPopup>\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;AAGA;;;;AAIE;MASW,qBAAqB,CAAA;AAPlC,IAAA,WAAA,GAAA;AAUY,QAAA,IAAA,CAAA,SAAS,GAAuB,IAAI,YAAY,EAAE,CAAC;AACnD,QAAA,IAAA,CAAA,SAAS,GAAuB,IAAI,YAAY,EAAE,CAAC;AAC9D,KAAA;8GALY,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;kGAArB,qBAAqB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,MAAA,EAAA,EAAA,GAAA,EAAA,KAAA,EAAA,EAAA,OAAA,EAAA,EAAA,SAAA,EAAA,WAAA,EAAA,SAAA,EAAA,WAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EChBlC,oIAKA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDQY,kBAAkB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,KAAA,EAAA,cAAA,EAAA,uBAAA,EAAA,uBAAA,EAAA,YAAA,EAAA,YAAA,EAAA,OAAA,EAAA,YAAA,EAAA,SAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA,EAAA;;2FAGjB,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBAPjC,SAAS;iCACI,IAAI,EAAA,QAAA,EACN,oBAAoB,EAErB,OAAA,EAAA,CAAC,kBAAkB,CAAC,EAAA,eAAA,EACZ,uBAAuB,CAAC,MAAM,EAAA,QAAA,EAAA,oIAAA,EAAA,CAAA;8BAGtC,GAAG,EAAA,CAAA;sBAAX,KAAK;gBAEI,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBACG,SAAS,EAAA,CAAA;sBAAlB,MAAM;;;AEpBT;;AAEG;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './src/confirm-popup.component';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ConfirmPopupComponent {
|
|
4
|
-
key?: string;
|
|
5
|
-
showEvent: EventEmitter<void>;
|
|
6
|
-
hideEvent: EventEmitter<void>;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmPopupComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmPopupComponent, "aril-confirm-popup", never, { "key": { "alias": "key"; "required": false; }; }, { "showEvent": "showEvent"; "hideEvent": "hideEvent"; }, never, never, true, never>;
|
|
9
|
-
}
|