aril 0.0.5 → 0.0.7

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.
Files changed (151) hide show
  1. package/aril-0.0.7.tgz +0 -0
  2. package/esm2022/http/lib/enums.mjs +2 -1
  3. package/esm2022/http/lib/interfaces.mjs +1 -1
  4. package/esm2022/http/src/httpClient.mjs +1 -1
  5. package/esm2022/http/src/serviceBase.mjs +5 -5
  6. package/esm2022/http/src/serviceStateMethods.mjs +5 -2
  7. package/esm2022/theme/layout/app/breadcrumb/app.breadcrumb.component.mjs +41 -0
  8. package/esm2022/theme/layout/app/config/app.config.component.mjs +134 -0
  9. package/esm2022/theme/layout/app/layout/app.layout.component.mjs +131 -0
  10. package/esm2022/theme/layout/app/menu/app.menu.component.mjs +399 -0
  11. package/esm2022/theme/layout/app/profileSidebar/app.profilesidebar.component.mjs +25 -0
  12. package/esm2022/theme/layout/app/sidebar/app.sidebar.component.mjs +41 -0
  13. package/esm2022/theme/layout/app/topbar/app.topbar.component.mjs +29 -0
  14. package/esm2022/theme/layout/aril-theme-layout.mjs +5 -0
  15. package/esm2022/theme/layout/index.mjs +2 -0
  16. package/esm2022/theme/layout/service/app.layout.service.mjs +132 -0
  17. package/esm2022/theme/layout/service/app.menu.service.mjs +27 -0
  18. package/esm2022/theme/layout/service/menuchangeevent.mjs +2 -0
  19. package/esm2022/ui/badge/src/badge.component.mjs +1 -1
  20. package/esm2022/ui/button/src/button.component.mjs +1 -1
  21. package/esm2022/ui/button/src/split-button.component.mjs +1 -1
  22. package/esm2022/ui/calendar/src/calendar.component.mjs +1 -1
  23. package/esm2022/ui/checkbox/src/check-box.component.mjs +3 -3
  24. package/esm2022/ui/checkbox/src/tri-state-checkbox.component.mjs +3 -3
  25. package/esm2022/ui/dxField/src/dx-field.component.mjs +3 -3
  26. package/esm2022/ui/field/src/field.component.mjs +1 -1
  27. package/esm2022/ui/fileUpload/src/file-upload.component.mjs +6 -4
  28. package/esm2022/ui/form/index.mjs +20 -2
  29. package/esm2022/ui/form/src/form-submit-button.component.mjs +4 -3
  30. package/esm2022/ui/form/src/form.component.mjs +3 -3
  31. package/esm2022/ui/lib/src/form/form-error-message.component.mjs +1 -1
  32. package/esm2022/ui/lib/src/form/form-error-message.directive.mjs +1 -1
  33. package/esm2022/ui/lib/src/input/baseInput.mjs +1 -1
  34. package/esm2022/ui/lib/src/input/common-input-validators.service.mjs +1 -1
  35. package/esm2022/ui/lib/src/input/dx-input-error-message.pipe.mjs +1 -1
  36. package/esm2022/ui/mask/src/mask.component.mjs +3 -3
  37. package/esm2022/ui/number/src/number.component.mjs +2 -2
  38. package/esm2022/ui/overlayPanel/src/overlay-panel.component.mjs +1 -1
  39. package/esm2022/ui/panel/src/panel.component.mjs +4 -5
  40. package/esm2022/ui/password/src/password.component.mjs +1 -1
  41. package/esm2022/ui/radioButton/src/radio-button.component.mjs +1 -1
  42. package/esm2022/ui/selectBox/src/select-box.component.mjs +4 -7
  43. package/esm2022/ui/switch/src/switch.component.mjs +1 -1
  44. package/esm2022/ui/table/index.mjs +26 -2
  45. package/esm2022/ui/table/src/table-column.component.mjs +6 -4
  46. package/esm2022/ui/table/src/table.component.mjs +24 -42
  47. package/esm2022/ui/tagBox/src/tag-box.component.mjs +4 -7
  48. package/esm2022/ui/text/src/text.component.mjs +1 -1
  49. package/esm2022/ui/textArea/src/text-area.component.mjs +5 -1
  50. package/esm2022/ui/tree/src/tree.component.mjs +29 -44
  51. package/esm2022/ui/treeTable/src/tree-table.component.mjs +39 -43
  52. package/esm2022/ui/value/src/value.component.mjs +3 -3
  53. package/fesm2022/aril-http.mjs +7 -4
  54. package/fesm2022/aril-http.mjs.map +1 -1
  55. package/fesm2022/aril-theme-layout.mjs +918 -0
  56. package/fesm2022/aril-theme-layout.mjs.map +1 -0
  57. package/fesm2022/aril-ui-badge.mjs.map +1 -1
  58. package/fesm2022/aril-ui-button.mjs.map +1 -1
  59. package/fesm2022/aril-ui-calendar.mjs.map +1 -1
  60. package/fesm2022/aril-ui-checkbox.mjs +4 -4
  61. package/fesm2022/aril-ui-checkbox.mjs.map +1 -1
  62. package/fesm2022/aril-ui-dxField.mjs +2 -2
  63. package/fesm2022/aril-ui-dxField.mjs.map +1 -1
  64. package/fesm2022/aril-ui-field.mjs.map +1 -1
  65. package/fesm2022/aril-ui-fileUpload.mjs +5 -3
  66. package/fesm2022/aril-ui-fileUpload.mjs.map +1 -1
  67. package/fesm2022/aril-ui-form.mjs +22 -8
  68. package/fesm2022/aril-ui-form.mjs.map +1 -1
  69. package/fesm2022/aril-ui-lib.mjs.map +1 -1
  70. package/fesm2022/aril-ui-mask.mjs +3 -3
  71. package/fesm2022/aril-ui-mask.mjs.map +1 -1
  72. package/fesm2022/aril-ui-number.mjs +2 -2
  73. package/fesm2022/aril-ui-number.mjs.map +1 -1
  74. package/fesm2022/aril-ui-overlayPanel.mjs.map +1 -1
  75. package/fesm2022/aril-ui-panel.mjs +2 -3
  76. package/fesm2022/aril-ui-panel.mjs.map +1 -1
  77. package/fesm2022/aril-ui-password.mjs.map +1 -1
  78. package/fesm2022/aril-ui-radioButton.mjs.map +1 -1
  79. package/fesm2022/aril-ui-selectBox.mjs +3 -6
  80. package/fesm2022/aril-ui-selectBox.mjs.map +1 -1
  81. package/fesm2022/aril-ui-switch.mjs.map +1 -1
  82. package/fesm2022/aril-ui-table.mjs +45 -42
  83. package/fesm2022/aril-ui-table.mjs.map +1 -1
  84. package/fesm2022/aril-ui-tagBox.mjs +3 -6
  85. package/fesm2022/aril-ui-tagBox.mjs.map +1 -1
  86. package/fesm2022/aril-ui-text.mjs.map +1 -1
  87. package/fesm2022/aril-ui-textArea.mjs +4 -0
  88. package/fesm2022/aril-ui-textArea.mjs.map +1 -1
  89. package/fesm2022/aril-ui-tree.mjs +28 -43
  90. package/fesm2022/aril-ui-tree.mjs.map +1 -1
  91. package/fesm2022/aril-ui-treeTable.mjs +38 -42
  92. package/fesm2022/aril-ui-treeTable.mjs.map +1 -1
  93. package/fesm2022/aril-ui-value.mjs +2 -2
  94. package/fesm2022/aril-ui-value.mjs.map +1 -1
  95. package/http/lib/enums.d.ts +1 -0
  96. package/http/lib/interfaces.d.ts +2 -0
  97. package/http/src/serviceStateMethods.d.ts +2 -1
  98. package/package.json +13 -13
  99. package/theme/layout/app/breadcrumb/app.breadcrumb.component.d.ts +16 -0
  100. package/theme/layout/app/breadcrumb/app.breadcrumb.component.html +10 -0
  101. package/theme/layout/app/breadcrumb/app.breadcrumb.component.ts +52 -0
  102. package/theme/layout/app/config/app.config.component.d.ts +36 -0
  103. package/theme/layout/app/config/app.config.component.html +191 -0
  104. package/theme/layout/app/config/app.config.component.ts +152 -0
  105. package/theme/layout/app/layout/app.layout.component.d.ts +51 -0
  106. package/theme/layout/app/layout/app.layout.component.html +13 -0
  107. package/theme/layout/app/layout/app.layout.component.ts +183 -0
  108. package/theme/layout/app/menu/app.menu.component.d.ts +44 -0
  109. package/theme/layout/app/menu/app.menu.component.html +9 -0
  110. package/theme/layout/app/menu/app.menu.component.ts +317 -0
  111. package/theme/layout/app/profileSidebar/app.profilesidebar.component.d.ts +10 -0
  112. package/theme/layout/app/profileSidebar/app.profilesidebar.component.html +165 -0
  113. package/theme/layout/app/profileSidebar/app.profilesidebar.component.ts +25 -0
  114. package/theme/layout/app/sidebar/app.sidebar.component.d.ts +15 -0
  115. package/theme/layout/app/sidebar/app.sidebar.component.html +67 -0
  116. package/theme/layout/app/sidebar/app.sidebar.component.ts +40 -0
  117. package/theme/layout/app/topbar/app.topbar.component.d.ts +13 -0
  118. package/theme/layout/app/topbar/app.topbar.component.html +41 -0
  119. package/theme/layout/app/topbar/app.topbar.component.ts +29 -0
  120. package/theme/layout/index.d.ts +1 -0
  121. package/theme/layout/index.ts +1 -0
  122. package/theme/layout/ng-package.json +6 -0
  123. package/theme/layout/service/app.layout.service.d.ts +51 -0
  124. package/theme/layout/service/app.layout.service.ts +197 -0
  125. package/theme/layout/service/app.menu.service.d.ts +14 -0
  126. package/theme/layout/service/app.menu.service.ts +28 -0
  127. package/theme/layout/service/menuchangeevent.d.ts +4 -0
  128. package/theme/layout/service/menuchangeevent.ts +4 -0
  129. package/ui/calendar/src/calendar.component.d.ts +1 -1
  130. package/ui/fileUpload/src/file-upload.component.d.ts +1 -1
  131. package/ui/form/index.d.ts +9 -0
  132. package/ui/form/src/form-submit-button.component.d.ts +1 -1
  133. package/ui/form/src/form.component.d.ts +1 -1
  134. package/ui/panel/src/panel.component.d.ts +1 -1
  135. package/ui/selectBox/src/select-box.component.d.ts +1 -3
  136. package/ui/table/index.d.ts +14 -0
  137. package/ui/table/src/table-column.component.d.ts +5 -4
  138. package/ui/table/src/table.component.d.ts +7 -15
  139. package/ui/tagBox/src/tag-box.component.d.ts +1 -3
  140. package/ui/text/src/text.component.d.ts +1 -1
  141. package/ui/textArea/src/text-area.component.d.ts +1 -1
  142. package/ui/tree/src/tree.component.d.ts +13 -18
  143. package/ui/treeTable/src/tree-table.component.d.ts +14 -18
  144. package/ui/value/src/value.component.d.ts +2 -2
  145. package/esm2022/ui/confirmPopup/aril-ui-confirmPopup.mjs +0 -5
  146. package/esm2022/ui/confirmPopup/index.mjs +0 -2
  147. package/esm2022/ui/confirmPopup/src/confirm-popup.component.mjs +0 -28
  148. package/fesm2022/aril-ui-confirmPopup.mjs +0 -35
  149. package/fesm2022/aril-ui-confirmPopup.mjs.map +0 -1
  150. package/ui/confirmPopup/index.d.ts +0 -1
  151. package/ui/confirmPopup/src/confirm-popup.component.d.ts +0 -9
@@ -1,25 +1,21 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { TreeNode, TreeTableNode } from 'primeng/api';
3
+ import { TableColumns } from 'aril/ui/table';
3
4
  import * as i0 from "@angular/core";
4
- type SortMode = 'single' | 'multiple';
5
- type FilterMode = 'lenient' | 'strict';
6
- type SelectionModes = 'single' | 'multiple' | 'checkbox';
7
5
  export declare class TreeTableComponent {
8
- data: TreeNode[];
9
- columns: Array<object>;
10
- rows: number;
11
- rowsPerPageOptions: number[];
12
- scrollable: boolean;
13
- scrollHeight: string;
14
- loading: boolean;
15
- sortMode: SortMode;
16
- filterMode: FilterMode;
17
- selectionMode: SelectionModes;
18
- selectEvent: EventEmitter<any>;
6
+ data: import("@angular/core").InputSignal<TreeNode<any>[], TreeNode<any>[]>;
7
+ checkboxSelection: import("@angular/core").InputSignal<boolean | undefined, boolean | undefined>;
8
+ pageSize: import("@angular/core").InputSignal<number, number>;
9
+ scrollable: import("@angular/core").InputSignal<boolean, boolean>;
10
+ scrollHeight: import("@angular/core").InputSignal<string | undefined, string | undefined>;
11
+ expandEvent: EventEmitter<unknown>;
12
+ selectionEvent: EventEmitter<any>;
13
+ columns: TableColumns;
14
+ filterText: string;
15
+ pageOptions: number[];
19
16
  selectedNodes: TreeTableNode<any> | TreeTableNode<any>[] | null;
20
- getFilterTargetValue(event: Event): string;
21
- emitSelectedRows(): void;
17
+ excelExport(): void;
18
+ saveAsExcelFile(buffer: any, fileName: string): void;
22
19
  static ɵfac: i0.ɵɵFactoryDeclaration<TreeTableComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<TreeTableComponent, "aril-tree-table", never, { "data": { "alias": "data"; "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, [".export-btn"], true, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<TreeTableComponent, "aril-tree-table", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "checkboxSelection": { "alias": "checkboxSelection"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "scrollable": { "alias": "scrollable"; "required": false; "isSignal": true; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; "isSignal": true; }; }, { "expandEvent": "expandEvent"; "selectionEvent": "selectionEvent"; }, ["columns"], ["[footer]"], true, never>;
24
21
  }
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' | 'bool' | 'number' | 'decimal' | 'date' | 'password';
4
+ type ValueTypes = 'text' | 'number' | 'bool' | 'decimal' | 'date' | 'password';
5
5
  export declare class ValueComponent implements OnChanges {
6
- model: any;
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
- }