aril 0.0.4 → 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 +1 -7
- package/theme/styles/theme/dark/_variables.scss +31 -31
- package/theme/styles/theme/dark/blue/theme.scss +6 -6
- package/theme/styles/theme/dark/indigo/theme.scss +8 -8
- package/theme/styles/theme/light/blue/theme.scss +1 -0
- 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
|
@@ -26,12 +26,12 @@ export class TreeTableComponent {
|
|
|
26
26
|
this.selectedNodes = null;
|
|
27
27
|
}
|
|
28
28
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: TreeTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
29
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: TreeTableComponent, isStandalone: true, selector: "aril-tree-table", inputs: {
|
|
29
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: TreeTableComponent, isStandalone: true, selector: "aril-tree-table", inputs: { items: "items", columns: "columns", rows: "rows", rowsPerPageOptions: "rowsPerPageOptions", scrollable: "scrollable", scrollHeight: "scrollHeight", loading: "loading", sortMode: "sortMode", filterMode: "filterMode", selectionMode: "selectionMode" }, outputs: { selectEvent: "selectEvent" }, ngImport: i0, template: "@if (items && columns) {\r\n\t<p-treeTable\r\n\t\t#ref\r\n\t\t[value]=\"items\"\r\n\t\t[columns]=\"columns\"\r\n\t\t[rows]=\"rows\"\r\n\t\t[paginator]=\"true\"\r\n\t\t[rowsPerPageOptions]=\"rowsPerPageOptions\"\r\n\t\t[scrollable]=\"scrollable\"\r\n\t\t[scrollHeight]=\"scrollHeight\"\r\n\t\t[sortMode]=\"sortMode\"\r\n\t\t[filterMode]=\"filterMode\"\r\n\t\t[loading]=\"loading\"\r\n\t\t[selectionMode]=\"selectionMode\"\r\n\t\t[(selection)]=\"selectedNodes\"\r\n\t\tstyleClass=\"p-treetable-sm\">\r\n\t\t<ng-template pTemplate=\"caption\">\r\n\t\t\t<div class=\"flex justify-content-between align-items-center\">\r\n\t\t\t\t<div class=\"flex\">\r\n\t\t\t\t\t<p-treeTableHeaderCheckbox></p-treeTableHeaderCheckbox>\r\n\t\t\t\t\t<span class=\"ml-2\">T\u00FCm\u00FCn\u00FC se\u00E7</span>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"p-input-icon-left\">\r\n\t\t\t\t\t<i class=\"pi pi-search\"></i>\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"text\"\r\n\t\t\t\t\t\tpInputText\r\n\t\t\t\t\t\tplaceholder=\"Arama\"\r\n\t\t\t\t\t\t(input)=\"\r\n\t\t\t\t\t\t\tref.filterGlobal(getFilterTargetValue($event), 'contains')\r\n\t\t\t\t\t\t\" />\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</ng-template>\r\n\t\t<ng-template pTemplate=\"header\" let-columns>\r\n\t\t\t<tr>\r\n\t\t\t\t@for (col of columns; track col) {\r\n\t\t\t\t\t<th [ttSortableColumn]=\"col.field\">\r\n\t\t\t\t\t\t<span>{{ col.header }}</span>\r\n\t\t\t\t\t\t<p-treeTableSortIcon [field]=\"col.field\"></p-treeTableSortIcon>\r\n\t\t\t\t\t</th>\r\n\t\t\t\t}\r\n\t\t\t</tr>\r\n\t\t</ng-template>\r\n\t\t<ng-template\r\n\t\t\tpTemplate=\"body\"\r\n\t\t\tlet-rowNode\r\n\t\t\tlet-rowData=\"rowData\"\r\n\t\t\tlet-columns=\"columns\">\r\n\t\t\t<tr [ttRow]=\"rowNode\">\r\n\t\t\t\t@for (col of columns; track col; let first = $first) {\r\n\t\t\t\t\t<td>\r\n\t\t\t\t\t\t@if (first) {\r\n\t\t\t\t\t\t\t<p-treeTableToggler [rowNode]=\"rowNode\"></p-treeTableToggler>\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\t@if (first) {\r\n\t\t\t\t\t\t\t<p-treeTableCheckbox [value]=\"rowNode\"></p-treeTableCheckbox>\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\t{{ rowData[col.field] }}\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\t\t\t</tr>\r\n\t\t</ng-template>\r\n\t\t<ng-template pTemplate=\"summary\">\r\n\t\t\t<div class=\"flex justify-content-end\">\r\n\t\t\t\t<div [attr.role]=\"'none'\" (click)=\"emitSelectedRows()\">\r\n\t\t\t\t\t<ng-content select=\"[exportBtn]\"></ng-content>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</ng-template>\r\n\t\t<ng-template pTemplate=\"emptymessage\">\r\n\t\t\t<tr>\r\n\t\t\t\t<td [attr.colspan]=\"columns.length\">Veri bulunamad\u0131..</td>\r\n\t\t\t</tr>\r\n\t\t</ng-template>\r\n\t</p-treeTable>\r\n}\r\n", styles: [":host ::ng-deep .p-icon-wrapper{display:inline-block!important}\n"], dependencies: [{ kind: "ngmodule", type: TreeTableModule }, { kind: "component", type: i1.TreeTable, selector: "p-treeTable", inputs: ["columns", "style", "styleClass", "tableStyle", "tableStyleClass", "autoLayout", "lazy", "lazyLoadOnInit", "paginator", "rows", "first", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorStyleClass", "paginatorDropdownAppendTo", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "customSort", "selectionMode", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "compareSelectionBy", "rowHover", "loading", "loadingIcon", "showLoader", "scrollable", "scrollHeight", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "virtualScrollDelay", "frozenWidth", "frozenColumns", "resizableColumns", "columnResizeMode", "reorderableColumns", "contextMenu", "rowTrackBy", "filters", "globalFilterFields", "filterDelay", "filterMode", "filterLocale", "paginatorLocale", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "value", "virtualRowHeight"], outputs: ["selectionChange", "contextMenuSelectionChange", "onFilter", "onNodeExpand", "onNodeCollapse", "onPage", "onSort", "onLazyLoad", "sortFunction", "onColResize", "onColReorder", "onNodeSelect", "onNodeUnselect", "onContextMenuSelect", "onHeaderCheckboxToggle", "onEditInit", "onEditComplete", "onEditCancel"] }, { kind: "directive", type: i2.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i1.TreeTableToggler, selector: "p-treeTableToggler", inputs: ["rowNode"] }, { kind: "directive", type: i1.TTSortableColumn, selector: "[ttSortableColumn]", inputs: ["ttSortableColumn", "ttSortableColumnDisabled"] }, { kind: "component", type: i1.TTSortIcon, selector: "p-treeTableSortIcon", inputs: ["field", "ariaLabelDesc", "ariaLabelAsc"] }, { kind: "directive", type: i1.TTRow, selector: "[ttRow]", inputs: ["ttRow"] }, { kind: "component", type: i1.TTCheckbox, selector: "p-treeTableCheckbox", inputs: ["disabled", "value"] }, { kind: "component", type: i1.TTHeaderCheckbox, selector: "p-treeTableHeaderCheckbox" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
30
30
|
}
|
|
31
31
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: TreeTableComponent, decorators: [{
|
|
32
32
|
type: Component,
|
|
33
|
-
args: [{ standalone: true, selector: 'aril-tree-table', imports: [TreeTableModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (
|
|
34
|
-
}], propDecorators: {
|
|
33
|
+
args: [{ standalone: true, selector: 'aril-tree-table', imports: [TreeTableModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (items && columns) {\r\n\t<p-treeTable\r\n\t\t#ref\r\n\t\t[value]=\"items\"\r\n\t\t[columns]=\"columns\"\r\n\t\t[rows]=\"rows\"\r\n\t\t[paginator]=\"true\"\r\n\t\t[rowsPerPageOptions]=\"rowsPerPageOptions\"\r\n\t\t[scrollable]=\"scrollable\"\r\n\t\t[scrollHeight]=\"scrollHeight\"\r\n\t\t[sortMode]=\"sortMode\"\r\n\t\t[filterMode]=\"filterMode\"\r\n\t\t[loading]=\"loading\"\r\n\t\t[selectionMode]=\"selectionMode\"\r\n\t\t[(selection)]=\"selectedNodes\"\r\n\t\tstyleClass=\"p-treetable-sm\">\r\n\t\t<ng-template pTemplate=\"caption\">\r\n\t\t\t<div class=\"flex justify-content-between align-items-center\">\r\n\t\t\t\t<div class=\"flex\">\r\n\t\t\t\t\t<p-treeTableHeaderCheckbox></p-treeTableHeaderCheckbox>\r\n\t\t\t\t\t<span class=\"ml-2\">T\u00FCm\u00FCn\u00FC se\u00E7</span>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"p-input-icon-left\">\r\n\t\t\t\t\t<i class=\"pi pi-search\"></i>\r\n\t\t\t\t\t<input\r\n\t\t\t\t\t\ttype=\"text\"\r\n\t\t\t\t\t\tpInputText\r\n\t\t\t\t\t\tplaceholder=\"Arama\"\r\n\t\t\t\t\t\t(input)=\"\r\n\t\t\t\t\t\t\tref.filterGlobal(getFilterTargetValue($event), 'contains')\r\n\t\t\t\t\t\t\" />\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</ng-template>\r\n\t\t<ng-template pTemplate=\"header\" let-columns>\r\n\t\t\t<tr>\r\n\t\t\t\t@for (col of columns; track col) {\r\n\t\t\t\t\t<th [ttSortableColumn]=\"col.field\">\r\n\t\t\t\t\t\t<span>{{ col.header }}</span>\r\n\t\t\t\t\t\t<p-treeTableSortIcon [field]=\"col.field\"></p-treeTableSortIcon>\r\n\t\t\t\t\t</th>\r\n\t\t\t\t}\r\n\t\t\t</tr>\r\n\t\t</ng-template>\r\n\t\t<ng-template\r\n\t\t\tpTemplate=\"body\"\r\n\t\t\tlet-rowNode\r\n\t\t\tlet-rowData=\"rowData\"\r\n\t\t\tlet-columns=\"columns\">\r\n\t\t\t<tr [ttRow]=\"rowNode\">\r\n\t\t\t\t@for (col of columns; track col; let first = $first) {\r\n\t\t\t\t\t<td>\r\n\t\t\t\t\t\t@if (first) {\r\n\t\t\t\t\t\t\t<p-treeTableToggler [rowNode]=\"rowNode\"></p-treeTableToggler>\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\t@if (first) {\r\n\t\t\t\t\t\t\t<p-treeTableCheckbox [value]=\"rowNode\"></p-treeTableCheckbox>\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\t{{ rowData[col.field] }}\r\n\t\t\t\t\t</td>\r\n\t\t\t\t}\r\n\t\t\t</tr>\r\n\t\t</ng-template>\r\n\t\t<ng-template pTemplate=\"summary\">\r\n\t\t\t<div class=\"flex justify-content-end\">\r\n\t\t\t\t<div [attr.role]=\"'none'\" (click)=\"emitSelectedRows()\">\r\n\t\t\t\t\t<ng-content select=\"[exportBtn]\"></ng-content>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</ng-template>\r\n\t\t<ng-template pTemplate=\"emptymessage\">\r\n\t\t\t<tr>\r\n\t\t\t\t<td [attr.colspan]=\"columns.length\">Veri bulunamad\u0131..</td>\r\n\t\t\t</tr>\r\n\t\t</ng-template>\r\n\t</p-treeTable>\r\n}\r\n", styles: [":host ::ng-deep .p-icon-wrapper{display:inline-block!important}\n"] }]
|
|
34
|
+
}], propDecorators: { items: [{
|
|
35
35
|
type: Input,
|
|
36
36
|
args: [{ required: true }]
|
|
37
37
|
}], columns: [{
|
|
@@ -56,4 +56,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
56
56
|
}], selectEvent: [{
|
|
57
57
|
type: Output
|
|
58
58
|
}] } });
|
|
59
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
59
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJlZS10YWJsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hcmlsL3VpL3RyZWVUYWJsZS9zcmMvdHJlZS10YWJsZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hcmlsL3VpL3RyZWVUYWJsZS9zcmMvdHJlZS10YWJsZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSx1REFBdUQ7QUFFdkQsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUVoRyxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sbUJBQW1CLENBQUM7Ozs7QUF3QnBELE1BQU0sT0FBTyxrQkFBa0I7SUFaL0I7UUFlVyxTQUFJLEdBQUcsRUFBRSxDQUFDO1FBQ1YsdUJBQWtCLEdBQUcsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLEVBQUUsRUFBRSxHQUFHLENBQUMsQ0FBQztRQUN2QyxlQUFVLEdBQUcsS0FBSyxDQUFDO1FBRW5CLFlBQU8sR0FBRyxLQUFLLENBQUM7UUFDaEIsYUFBUSxHQUFhLFFBQVEsQ0FBQztRQUM5QixlQUFVLEdBQWUsU0FBUyxDQUFDO1FBQ25DLGtCQUFhLEdBQW1CLFFBQVEsQ0FBQztRQUV4QyxnQkFBVyxHQUFzQixJQUFJLFlBQVksRUFBRSxDQUFDO0tBZS9EO0lBWEMsb0JBQW9CLENBQUMsS0FBWTtRQUMvQixNQUFNLFlBQVksR0FBRyxLQUFLLENBQUMsTUFBMEIsQ0FBQztRQUN0RCxPQUFPLFlBQVksQ0FBQyxLQUFLLENBQUM7SUFDNUIsQ0FBQztJQUVELGdCQUFnQjtRQUNkLElBQUksQ0FBQyxJQUFJLENBQUMsYUFBYTtZQUFFLE9BQU87UUFFaEMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFDO1FBQzFDLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDO0lBQzVCLENBQUM7OEdBMUJVLGtCQUFrQjtrR0FBbEIsa0JBQWtCLHdYQzVCL0IsMGxGQTZFQSwwSERwRFksZUFBZTs7MkZBR2Qsa0JBQWtCO2tCQVo5QixTQUFTO2lDQUNJLElBQUksWUFDTixpQkFBaUIsV0FPbEIsQ0FBQyxlQUFlLENBQUMsbUJBQ1QsdUJBQXVCLENBQUMsTUFBTTs4QkFHcEIsS0FBSztzQkFBL0IsS0FBSzt1QkFBQyxFQUFFLFFBQVEsRUFBRSxJQUFJLEVBQUU7Z0JBQ0UsT0FBTztzQkFBakMsS0FBSzt1QkFBQyxFQUFFLFFBQVEsRUFBRSxJQUFJLEVBQUU7Z0JBQ2hCLElBQUk7c0JBQVosS0FBSztnQkFDRyxrQkFBa0I7c0JBQTFCLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFDRyxZQUFZO3NCQUFwQixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBQ0csYUFBYTtzQkFBckIsS0FBSztnQkFFSSxXQUFXO3NCQUFwQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiLyogZXNsaW50LWRpc2FibGUgQHR5cGVzY3JpcHQtZXNsaW50L25vLWV4cGxpY2l0LWFueSAqL1xyXG5cclxuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFRyZWVOb2RlLCBUcmVlVGFibGVOb2RlIH0gZnJvbSAncHJpbWVuZy9hcGknO1xyXG5pbXBvcnQgeyBUcmVlVGFibGVNb2R1bGUgfSBmcm9tICdwcmltZW5nL3RyZWV0YWJsZSc7XHJcblxyXG4vKiBUT0RPIDogXHJcbiAgICAxLiBJbnB1dFNpZ25hbFxyXG4gICAgMi4gQ29udGVudFByb2plY3Rpb25cclxuICAgIDMuIENvbnRleHRNZW51ID9cclxuKi9cclxuXHJcbnR5cGUgU29ydE1vZGUgPSAnc2luZ2xlJyB8ICdtdWx0aXBsZSc7XHJcbnR5cGUgRmlsdGVyTW9kZSA9ICdsZW5pZW50JyB8ICdzdHJpY3QnO1xyXG50eXBlIFNlbGVjdGlvbk1vZGVzID0gJ3NpbmdsZScgfCAnbXVsdGlwbGUnIHwgJ2NoZWNrYm94JztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgc2VsZWN0b3I6ICdhcmlsLXRyZWUtdGFibGUnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi90cmVlLXRhYmxlLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZXM6IFtgXHJcbiAgICA6aG9zdCA6Om5nLWRlZXAgLnAtaWNvbi13cmFwcGVyIHtcclxuICAgICAgICBkaXNwbGF5OiBpbmxpbmUtYmxvY2sgIWltcG9ydGFudDtcclxuICAgIH1gXHJcbiAgXSxcclxuICBpbXBvcnRzOiBbVHJlZVRhYmxlTW9kdWxlXSxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaFxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJlZVRhYmxlQ29tcG9uZW50IHtcclxuICBASW5wdXQoeyByZXF1aXJlZDogdHJ1ZSB9KSBpdGVtcyE6IFRyZWVOb2RlW107XHJcbiAgQElucHV0KHsgcmVxdWlyZWQ6IHRydWUgfSkgY29sdW1ucyE6IEFycmF5PG9iamVjdD47XHJcbiAgQElucHV0KCkgcm93cyA9IDEwO1xyXG4gIEBJbnB1dCgpIHJvd3NQZXJQYWdlT3B0aW9ucyA9IFsxMCwgMjAsIDUwLCAxMDBdO1xyXG4gIEBJbnB1dCgpIHNjcm9sbGFibGUgPSBmYWxzZTtcclxuICBASW5wdXQoKSBzY3JvbGxIZWlnaHQhOiBzdHJpbmc7XHJcbiAgQElucHV0KCkgbG9hZGluZyA9IGZhbHNlO1xyXG4gIEBJbnB1dCgpIHNvcnRNb2RlOiBTb3J0TW9kZSA9IFwic2luZ2xlXCI7XHJcbiAgQElucHV0KCkgZmlsdGVyTW9kZTogRmlsdGVyTW9kZSA9IFwibGVuaWVudFwiO1xyXG4gIEBJbnB1dCgpIHNlbGVjdGlvbk1vZGU6IFNlbGVjdGlvbk1vZGVzID0gXCJzaW5nbGVcIjtcclxuXHJcbiAgQE91dHB1dCgpIHNlbGVjdEV2ZW50OiBFdmVudEVtaXR0ZXI8YW55PiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcclxuXHJcbiAgc2VsZWN0ZWROb2RlcyE6IFRyZWVUYWJsZU5vZGU8YW55PiB8IFRyZWVUYWJsZU5vZGU8YW55PltdIHwgbnVsbDtcclxuXHJcbiAgZ2V0RmlsdGVyVGFyZ2V0VmFsdWUoZXZlbnQ6IEV2ZW50KSB7XHJcbiAgICBjb25zdCBpbnB1dEVsZW1lbnQgPSBldmVudC50YXJnZXQgYXMgSFRNTElucHV0RWxlbWVudDtcclxuICAgIHJldHVybiBpbnB1dEVsZW1lbnQudmFsdWU7XHJcbiAgfVxyXG5cclxuICBlbWl0U2VsZWN0ZWRSb3dzKCkge1xyXG4gICAgaWYgKCF0aGlzLnNlbGVjdGVkTm9kZXMpIHJldHVybjtcclxuXHJcbiAgICB0aGlzLnNlbGVjdEV2ZW50LmVtaXQodGhpcy5zZWxlY3RlZE5vZGVzKTtcclxuICAgIHRoaXMuc2VsZWN0ZWROb2RlcyA9IG51bGw7XHJcbiAgfVxyXG59XHJcbiIsIkBpZiAoaXRlbXMgJiYgY29sdW1ucykge1xyXG5cdDxwLXRyZWVUYWJsZVxyXG5cdFx0I3JlZlxyXG5cdFx0W3ZhbHVlXT1cIml0ZW1zXCJcclxuXHRcdFtjb2x1bW5zXT1cImNvbHVtbnNcIlxyXG5cdFx0W3Jvd3NdPVwicm93c1wiXHJcblx0XHRbcGFnaW5hdG9yXT1cInRydWVcIlxyXG5cdFx0W3Jvd3NQZXJQYWdlT3B0aW9uc109XCJyb3dzUGVyUGFnZU9wdGlvbnNcIlxyXG5cdFx0W3Njcm9sbGFibGVdPVwic2Nyb2xsYWJsZVwiXHJcblx0XHRbc2Nyb2xsSGVpZ2h0XT1cInNjcm9sbEhlaWdodFwiXHJcblx0XHRbc29ydE1vZGVdPVwic29ydE1vZGVcIlxyXG5cdFx0W2ZpbHRlck1vZGVdPVwiZmlsdGVyTW9kZVwiXHJcblx0XHRbbG9hZGluZ109XCJsb2FkaW5nXCJcclxuXHRcdFtzZWxlY3Rpb25Nb2RlXT1cInNlbGVjdGlvbk1vZGVcIlxyXG5cdFx0WyhzZWxlY3Rpb24pXT1cInNlbGVjdGVkTm9kZXNcIlxyXG5cdFx0c3R5bGVDbGFzcz1cInAtdHJlZXRhYmxlLXNtXCI+XHJcblx0XHQ8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiY2FwdGlvblwiPlxyXG5cdFx0XHQ8ZGl2IGNsYXNzPVwiZmxleCBqdXN0aWZ5LWNvbnRlbnQtYmV0d2VlbiBhbGlnbi1pdGVtcy1jZW50ZXJcIj5cclxuXHRcdFx0XHQ8ZGl2IGNsYXNzPVwiZmxleFwiPlxyXG5cdFx0XHRcdFx0PHAtdHJlZVRhYmxlSGVhZGVyQ2hlY2tib3g+PC9wLXRyZWVUYWJsZUhlYWRlckNoZWNrYm94PlxyXG5cdFx0XHRcdFx0PHNwYW4gY2xhc3M9XCJtbC0yXCI+VMO8bcO8bsO8IHNlw6c8L3NwYW4+XHJcblx0XHRcdFx0PC9kaXY+XHJcblx0XHRcdFx0PGRpdiBjbGFzcz1cInAtaW5wdXQtaWNvbi1sZWZ0XCI+XHJcblx0XHRcdFx0XHQ8aSBjbGFzcz1cInBpIHBpLXNlYXJjaFwiPjwvaT5cclxuXHRcdFx0XHRcdDxpbnB1dFxyXG5cdFx0XHRcdFx0XHR0eXBlPVwidGV4dFwiXHJcblx0XHRcdFx0XHRcdHBJbnB1dFRleHRcclxuXHRcdFx0XHRcdFx0cGxhY2Vob2xkZXI9XCJBcmFtYVwiXHJcblx0XHRcdFx0XHRcdChpbnB1dCk9XCJcclxuXHRcdFx0XHRcdFx0XHRyZWYuZmlsdGVyR2xvYmFsKGdldEZpbHRlclRhcmdldFZhbHVlKCRldmVudCksICdjb250YWlucycpXHJcblx0XHRcdFx0XHRcdFwiIC8+XHJcblx0XHRcdFx0PC9kaXY+XHJcblx0XHRcdDwvZGl2PlxyXG5cdFx0PC9uZy10ZW1wbGF0ZT5cclxuXHRcdDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJoZWFkZXJcIiBsZXQtY29sdW1ucz5cclxuXHRcdFx0PHRyPlxyXG5cdFx0XHRcdEBmb3IgKGNvbCBvZiBjb2x1bW5zOyB0cmFjayBjb2wpIHtcclxuXHRcdFx0XHRcdDx0aCBbdHRTb3J0YWJsZUNvbHVtbl09XCJjb2wuZmllbGRcIj5cclxuXHRcdFx0XHRcdFx0PHNwYW4+e3sgY29sLmhlYWRlciB9fTwvc3Bhbj5cclxuXHRcdFx0XHRcdFx0PHAtdHJlZVRhYmxlU29ydEljb24gW2ZpZWxkXT1cImNvbC5maWVsZFwiPjwvcC10cmVlVGFibGVTb3J0SWNvbj5cclxuXHRcdFx0XHRcdDwvdGg+XHJcblx0XHRcdFx0fVxyXG5cdFx0XHQ8L3RyPlxyXG5cdFx0PC9uZy10ZW1wbGF0ZT5cclxuXHRcdDxuZy10ZW1wbGF0ZVxyXG5cdFx0XHRwVGVtcGxhdGU9XCJib2R5XCJcclxuXHRcdFx0bGV0LXJvd05vZGVcclxuXHRcdFx0bGV0LXJvd0RhdGE9XCJyb3dEYXRhXCJcclxuXHRcdFx0bGV0LWNvbHVtbnM9XCJjb2x1bW5zXCI+XHJcblx0XHRcdDx0ciBbdHRSb3ddPVwicm93Tm9kZVwiPlxyXG5cdFx0XHRcdEBmb3IgKGNvbCBvZiBjb2x1bW5zOyB0cmFjayBjb2w7IGxldCBmaXJzdCA9ICRmaXJzdCkge1xyXG5cdFx0XHRcdFx0PHRkPlxyXG5cdFx0XHRcdFx0XHRAaWYgKGZpcnN0KSB7XHJcblx0XHRcdFx0XHRcdFx0PHAtdHJlZVRhYmxlVG9nZ2xlciBbcm93Tm9kZV09XCJyb3dOb2RlXCI+PC9wLXRyZWVUYWJsZVRvZ2dsZXI+XHJcblx0XHRcdFx0XHRcdH1cclxuXHRcdFx0XHRcdFx0QGlmIChmaXJzdCkge1xyXG5cdFx0XHRcdFx0XHRcdDxwLXRyZWVUYWJsZUNoZWNrYm94IFt2YWx1ZV09XCJyb3dOb2RlXCI+PC9wLXRyZWVUYWJsZUNoZWNrYm94PlxyXG5cdFx0XHRcdFx0XHR9XHJcblx0XHRcdFx0XHRcdHt7IHJvd0RhdGFbY29sLmZpZWxkXSB9fVxyXG5cdFx0XHRcdFx0PC90ZD5cclxuXHRcdFx0XHR9XHJcblx0XHRcdDwvdHI+XHJcblx0XHQ8L25nLXRlbXBsYXRlPlxyXG5cdFx0PG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cInN1bW1hcnlcIj5cclxuXHRcdFx0PGRpdiBjbGFzcz1cImZsZXgganVzdGlmeS1jb250ZW50LWVuZFwiPlxyXG5cdFx0XHRcdDxkaXYgW2F0dHIucm9sZV09XCInbm9uZSdcIiAoY2xpY2spPVwiZW1pdFNlbGVjdGVkUm93cygpXCI+XHJcblx0XHRcdFx0XHQ8bmctY29udGVudCBzZWxlY3Q9XCJbZXhwb3J0QnRuXVwiPjwvbmctY29udGVudD5cclxuXHRcdFx0XHQ8L2Rpdj5cclxuXHRcdFx0PC9kaXY+XHJcblx0XHQ8L25nLXRlbXBsYXRlPlxyXG5cdFx0PG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImVtcHR5bWVzc2FnZVwiPlxyXG5cdFx0XHQ8dHI+XHJcblx0XHRcdFx0PHRkIFthdHRyLmNvbHNwYW5dPVwiY29sdW1ucy5sZW5ndGhcIj5WZXJpIGJ1bHVuYW1hZMSxLi48L3RkPlxyXG5cdFx0XHQ8L3RyPlxyXG5cdFx0PC9uZy10ZW1wbGF0ZT5cclxuXHQ8L3AtdHJlZVRhYmxlPlxyXG59XHJcbiJdfQ==
|
|
@@ -48,4 +48,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
48
48
|
}], color: [{
|
|
49
49
|
type: Input
|
|
50
50
|
}] } });
|
|
51
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
51
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYXJpbC91aS92YWx1ZS9zcmMvdmFsdWUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYXJpbC91aS92YWx1ZS9zcmMvdmFsdWUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQWEsTUFBTSxlQUFlLENBQUM7QUFDckYsT0FBTyxnQ0FBZ0MsQ0FBQzs7QUFpQnhDLE1BQU0sT0FBTyxjQUFjO0lBTjNCO1FBU1csU0FBSSxHQUFlLE1BQU0sQ0FBQztRQUUxQixVQUFLLEdBQVcsTUFBTSxDQUFDO1FBRWhDLFlBQU8sR0FBRyxFQUFFLENBQUM7S0EyQmQ7SUF6QkMsV0FBVyxDQUFDLE9BQVk7UUFDdEIsUUFBUSxJQUFJLENBQUMsSUFBSSxFQUFFLENBQUM7WUFDbEIsS0FBSyxNQUFNO2dCQUNULElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLEtBQWUsQ0FBQztnQkFDcEMsTUFBTTtZQUNSLEtBQUssUUFBUTtnQkFDWCxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxNQUFNLElBQUksT0FBTyxDQUFDO2dCQUNyQyxJQUFJLENBQUMsT0FBTyxHQUFHLE1BQU0sQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztnQkFDL0MsTUFBTTtZQUNSLEtBQUssU0FBUztnQkFDWixJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxNQUFNLElBQUksV0FBVyxDQUFDO2dCQUN6QyxJQUFJLENBQUMsT0FBTyxHQUFHLE1BQU0sQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztnQkFDL0MsTUFBTTtZQUNSLEtBQUssTUFBTTtnQkFDVCxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxNQUFNLElBQUksTUFBTSxDQUFDO2dCQUNwQyxJQUFJLENBQUMsT0FBTyxHQUFZLElBQUksQ0FBQyxLQUFNLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQVcsQ0FBQztnQkFDeEUsTUFBTTtZQUNSLEtBQUssVUFBVTtnQkFDYixJQUFJLENBQUMsT0FBTyxHQUFZLElBQUksQ0FBQyxLQUFNLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRSxHQUFHLENBQUMsQ0FBQztnQkFDdkQsTUFBTTtZQUNSO2dCQUNFLE9BQU8sQ0FBQyxLQUFLLENBQUMsaUJBQWlCLEdBQUcsSUFBSSxDQUFDLElBQUksR0FBRyxHQUFHLENBQUMsQ0FBQztnQkFDbkQsTUFBTTtRQUNWLENBQUM7SUFDSCxDQUFDOzhHQWpDVSxjQUFjO2tHQUFkLGNBQWMsdUtDbEIzQiwyeUJBK0JBOzsyRkRiYSxjQUFjO2tCQU4xQixTQUFTO2lDQUNJLElBQUksWUFDTixZQUFZLG1CQUVMLHVCQUF1QixDQUFDLE1BQU07OEJBSXBCLEtBQUs7c0JBQS9CLEtBQUs7dUJBQUMsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFO2dCQUNoQixJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csTUFBTTtzQkFBZCxLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0LCBPbkNoYW5nZXMgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IFwiYXJpbC91dGlsL3ByaW1pdGl2ZS1leHRlbnNpb25zXCI7XHJcblxyXG4vKiBUT0RPIDogXHJcbiAgICAxLiBJbnB1dFNpZ25hbFxyXG4qL1xyXG5cclxuLyogbnVtYmVyLWZvcm1hdC5qcyAqL1xyXG5kZWNsYXJlIGNvbnN0IGZvcm1hdDogRnVuY3Rpb247XHJcblxyXG50eXBlIFZhbHVlVHlwZXMgPSAndGV4dCcgfCAnbnVtYmVyJyB8ICdib29sJyB8ICdkZWNpbWFsJyB8ICdkYXRlJyB8ICdwYXNzd29yZCc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gIHNlbGVjdG9yOiAnYXJpbC12YWx1ZScsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3ZhbHVlLmNvbXBvbmVudC5odG1sJyxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaFxyXG59KVxyXG5leHBvcnQgY2xhc3MgVmFsdWVDb21wb25lbnQgaW1wbGVtZW50cyBPbkNoYW5nZXMge1xyXG5cclxuICBASW5wdXQoeyByZXF1aXJlZDogdHJ1ZSB9KSBtb2RlbCE6IHN0cmluZyB8IG51bWJlciB8IGJvb2xlYW47XHJcbiAgQElucHV0KCkgdHlwZTogVmFsdWVUeXBlcyA9IFwidGV4dFwiO1xyXG4gIEBJbnB1dCgpIGZvcm1hdCE6IHN0cmluZztcclxuICBASW5wdXQoKSBjb2xvcjogc3RyaW5nID0gXCIjMzMzXCI7XHJcblxyXG4gIGRpc3BsYXkgPSBcIlwiO1xyXG5cclxuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBhbnkpIHtcclxuICAgIHN3aXRjaCAodGhpcy50eXBlKSB7XHJcbiAgICAgIGNhc2UgXCJ0ZXh0XCI6XHJcbiAgICAgICAgdGhpcy5kaXNwbGF5ID0gdGhpcy5tb2RlbCBhcyBzdHJpbmc7XHJcbiAgICAgICAgYnJlYWs7XHJcbiAgICAgIGNhc2UgXCJudW1iZXJcIjpcclxuICAgICAgICB0aGlzLmZvcm1hdCA9IHRoaXMuZm9ybWF0IHx8ICcwLiMjIyc7XHJcbiAgICAgICAgdGhpcy5kaXNwbGF5ID0gZm9ybWF0KHRoaXMuZm9ybWF0LCB0aGlzLm1vZGVsKTtcclxuICAgICAgICBicmVhaztcclxuICAgICAgY2FzZSBcImRlY2ltYWxcIjpcclxuICAgICAgICB0aGlzLmZvcm1hdCA9IHRoaXMuZm9ybWF0IHx8ICcjLiMjMCwjIyMnO1xyXG4gICAgICAgIHRoaXMuZGlzcGxheSA9IGZvcm1hdCh0aGlzLmZvcm1hdCwgdGhpcy5tb2RlbCk7XHJcbiAgICAgICAgYnJlYWs7XHJcbiAgICAgIGNhc2UgXCJkYXRlXCI6XHJcbiAgICAgICAgdGhpcy5mb3JtYXQgPSB0aGlzLmZvcm1hdCB8fCAndGltZSc7XHJcbiAgICAgICAgdGhpcy5kaXNwbGF5ID0gKDxudW1iZXI+dGhpcy5tb2RlbCkubG9uZ1RvU3RyaW5nKHRoaXMuZm9ybWF0KSBhcyBzdHJpbmc7XHJcbiAgICAgICAgYnJlYWs7XHJcbiAgICAgIGNhc2UgXCJwYXNzd29yZFwiOlxyXG4gICAgICAgIHRoaXMuZGlzcGxheSA9ICg8c3RyaW5nPnRoaXMubW9kZWwpLnJlcGxhY2UoLy4vZywgXCIqXCIpO1xyXG4gICAgICAgIGJyZWFrO1xyXG4gICAgICBkZWZhdWx0OlxyXG4gICAgICAgIGNvbnNvbGUuZXJyb3IoXCJJbnZhbGlkIHR5cGU6ICdcIiArIHRoaXMudHlwZSArIFwiJ1wiKTtcclxuICAgICAgICBicmVhaztcclxuICAgIH1cclxuICB9XHJcbn1cclxuIiwiQGlmIChtb2RlbCA9PSB1bmRlZmluZWQgfHwgbW9kZWwgPT0gbnVsbCkge1xuXHQ8c3Bhbj5cblx0XHQ8aSBjbGFzcz1cInBpIHBpLW1pbnVzXCIgc3R5bGU9XCJjb2xvcjogcmVkXCIgcFRvb2x0aXA9XCJObyBpdGVtIHRvIHNob3dcIj48L2k+XG5cdDwvc3Bhbj5cbn0gQGVsc2Uge1xuXHQ8ZGl2IHN0eWxlPVwiZGlzcGxheTogaW5saW5lLWJsb2NrXCI+XG5cdFx0QGlmICh0eXBlID09ICdib29sJykge1xuXHRcdFx0PHNwYW4+XG5cdFx0XHRcdEBpZiAoISFtb2RlbCkge1xuXHRcdFx0XHRcdDxpIGNsYXNzPVwicGkgcGktY2hlY2tcIiBzdHlsZT1cImNvbG9yOiBncmVlblwiPjwvaT5cblx0XHRcdFx0fSBAZWxzZSB7XG5cdFx0XHRcdFx0PGkgY2xhc3M9XCJwaSBwaS10aW1lc1wiIHN0eWxlPVwiY29sb3I6IGNyaW1zb25cIj48L2k+XG5cdFx0XHRcdH1cblx0XHRcdDwvc3Bhbj5cblx0XHR9IEBlbHNlIHtcblx0XHRcdEBpZiAoZGlzcGxheSA9PSB1bmRlZmluZWQpIHtcblx0XHRcdFx0PHNwYW4+XG5cdFx0XHRcdFx0PGlcblx0XHRcdFx0XHRcdGNsYXNzPVwicGkgcGktZXhjbGFtYXRpb24tY2lyY2xlXCJcblx0XHRcdFx0XHRcdHN0eWxlPVwiY29sb3I6IHJlZFwiXG5cdFx0XHRcdFx0XHRwVG9vbHRpcD1cIkludmFsaWQgRGF0YVwiPlxuXHRcdFx0XHRcdDwvaT5cblx0XHRcdFx0PC9zcGFuPlxuXHRcdFx0fSBAZWxzZSB7XG5cdFx0XHRcdDxzcGFuIFtzdHlsZS5jb2xvcl09XCJjb2xvclwiPlxuXHRcdFx0XHRcdHt7IGRpc3BsYXkgfX1cblx0XHRcdFx0PC9zcGFuPlxuXHRcdFx0fVxuXHRcdH1cblx0PC9kaXY+XG59XG4iXX0=
|
|
@@ -12,11 +12,11 @@ class DxFieldComponent {
|
|
|
12
12
|
this.valueWidth = 70;
|
|
13
13
|
}
|
|
14
14
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DxFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
15
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "17.1.2", type: DxFieldComponent, isStandalone: true, selector: "aril-dx-field", inputs: { label: "label", color: "color", labelWidth: ["labelWidth", "labelWidth", (value) => value + "%"], valueWidth: ["valueWidth", "valueWidth", (value) => value + "%"] }, ngImport: i0, template: "<div class=\"dx-field\">\r\n\t<div\r\n\t\tclass=\"dx-field-label font-bold\"\r\n\t\t[ngStyle]=\"{ color: color, width: labelWidth }\">\r\n\t\t{{ label }}\r\n\t</div>\r\n\t<div class=\"dx-field-value\" [ngStyle]=\"{ width: valueWidth }\">\r\n\t\t<ng-content></ng-content>\r\n\t</div>\r\n</div
|
|
15
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "17.1.2", type: DxFieldComponent, isStandalone: true, selector: "aril-dx-field", inputs: { label: "label", color: "color", labelWidth: ["labelWidth", "labelWidth", (value) => value + "%"], valueWidth: ["valueWidth", "valueWidth", (value) => value + "%"] }, ngImport: i0, template: "<div class=\"dx-field\">\r\n\t<div\r\n\t\tclass=\"dx-field-label font-bold\"\r\n\t\t[ngStyle]=\"{ color: color, width: labelWidth }\">\r\n\t\t{{ label }}\r\n\t</div>\r\n\t<div class=\"dx-field-value\" [ngStyle]=\"{ width: valueWidth }\">\r\n\t\t<ng-content></ng-content>\r\n\t</div>\r\n</div>", dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
16
16
|
}
|
|
17
17
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DxFieldComponent, decorators: [{
|
|
18
18
|
type: Component,
|
|
19
|
-
args: [{ standalone: true, selector: 'aril-dx-field', imports: [NgStyle], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"dx-field\">\r\n\t<div\r\n\t\tclass=\"dx-field-label font-bold\"\r\n\t\t[ngStyle]=\"{ color: color, width: labelWidth }\">\r\n\t\t{{ label }}\r\n\t</div>\r\n\t<div class=\"dx-field-value\" [ngStyle]=\"{ width: valueWidth }\">\r\n\t\t<ng-content></ng-content>\r\n\t</div>\r\n</div
|
|
19
|
+
args: [{ standalone: true, selector: 'aril-dx-field', imports: [NgStyle], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"dx-field\">\r\n\t<div\r\n\t\tclass=\"dx-field-label font-bold\"\r\n\t\t[ngStyle]=\"{ color: color, width: labelWidth }\">\r\n\t\t{{ label }}\r\n\t</div>\r\n\t<div class=\"dx-field-value\" [ngStyle]=\"{ width: valueWidth }\">\r\n\t\t<ng-content></ng-content>\r\n\t</div>\r\n</div>" }]
|
|
20
20
|
}], propDecorators: { label: [{
|
|
21
21
|
type: Input
|
|
22
22
|
}], color: [{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aril-ui-dxField.mjs","sources":["../../projects/aril/ui/dxField/src/dx-field.component.ts","../../projects/aril/ui/dxField/src/dx-field.component.html","../../projects/aril/ui/dxField/aril-ui-dxField.ts"],"sourcesContent":["import { NgStyle } from '@angular/common';\r\nimport { ChangeDetectionStrategy, Component, Input } from '@angular/core';\r\n\r\n/* TODO : \r\n 1. InputSignal\r\n*/\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-dx-field',\r\n templateUrl: './dx-field.component.html',\r\n imports: [NgStyle],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class DxFieldComponent {\r\n @Input() label!: string;\r\n @Input() color = '#333';\r\n @Input({ transform: (value: number) => value + \"%\" }) labelWidth = 30;\r\n @Input({ transform: (value: number) => value + \"%\" }) valueWidth = 70;\r\n}\r\n","<div class=\"dx-field\">\r\n\t<div\r\n\t\tclass=\"dx-field-label font-bold\"\r\n\t\t[ngStyle]=\"{ color: color, width: labelWidth }\">\r\n\t\t{{ label }}\r\n\t</div>\r\n\t<div class=\"dx-field-value\" [ngStyle]=\"{ width: valueWidth }\">\r\n\t\t<ng-content></ng-content>\r\n\t</div>\r\n</div
|
|
1
|
+
{"version":3,"file":"aril-ui-dxField.mjs","sources":["../../projects/aril/ui/dxField/src/dx-field.component.ts","../../projects/aril/ui/dxField/src/dx-field.component.html","../../projects/aril/ui/dxField/aril-ui-dxField.ts"],"sourcesContent":["import { NgStyle } from '@angular/common';\r\nimport { ChangeDetectionStrategy, Component, Input } from '@angular/core';\r\n\r\n/* TODO : \r\n 1. InputSignal\r\n*/\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-dx-field',\r\n templateUrl: './dx-field.component.html',\r\n imports: [NgStyle],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class DxFieldComponent {\r\n @Input() label!: string;\r\n @Input() color = '#333';\r\n @Input({ transform: (value: number) => value + \"%\" }) labelWidth = 30;\r\n @Input({ transform: (value: number) => value + \"%\" }) valueWidth = 70;\r\n}\r\n","<div class=\"dx-field\">\r\n\t<div\r\n\t\tclass=\"dx-field-label font-bold\"\r\n\t\t[ngStyle]=\"{ color: color, width: labelWidth }\">\r\n\t\t{{ label }}\r\n\t</div>\r\n\t<div class=\"dx-field-value\" [ngStyle]=\"{ width: valueWidth }\">\r\n\t\t<ng-content></ng-content>\r\n\t</div>\r\n</div>","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;AAGA;;AAEE;MASW,gBAAgB,CAAA;AAP7B,IAAA,WAAA,GAAA;QASW,IAAK,CAAA,KAAA,GAAG,MAAM,CAAC;QAC8B,IAAU,CAAA,UAAA,GAAG,EAAE,CAAC;QAChB,IAAU,CAAA,UAAA,GAAG,EAAE,CAAC;AACvE,KAAA;8GALY,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;kGAAhB,gBAAgB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,eAAA,EAAA,MAAA,EAAA,EAAA,KAAA,EAAA,OAAA,EAAA,KAAA,EAAA,OAAA,EAAA,UAAA,EAAA,CAAA,YAAA,EAAA,YAAA,EAGP,CAAC,KAAa,KAAK,KAAK,GAAG,GAAG,CAAA,EAAA,UAAA,EAAA,CAAA,YAAA,EAAA,YAAA,EAC9B,CAAC,KAAa,KAAK,KAAK,GAAG,GAAG,CAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EClBpD,sSASM,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EDEM,OAAO,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,SAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA,EAAA;;2FAGN,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAP5B,SAAS;iCACI,IAAI,EAAA,QAAA,EACN,eAAe,EAEhB,OAAA,EAAA,CAAC,OAAO,CAAC,EAAA,eAAA,EACD,uBAAuB,CAAC,MAAM,EAAA,QAAA,EAAA,sSAAA,EAAA,CAAA;8BAGtC,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACgD,UAAU,EAAA,CAAA;sBAA/D,KAAK;uBAAC,EAAE,SAAS,EAAE,CAAC,KAAa,KAAK,KAAK,GAAG,GAAG,EAAE,CAAA;gBACE,UAAU,EAAA,CAAA;sBAA/D,KAAK;uBAAC,EAAE,SAAS,EAAE,CAAC,KAAa,KAAK,KAAK,GAAG,GAAG,EAAE,CAAA;;;AElBtD;;AAEG;;;;"}
|
|
@@ -3,6 +3,7 @@ import { EventEmitter, Component, ChangeDetectionStrategy, Input, Output } from
|
|
|
3
3
|
import * as i2 from 'primeng/fileupload';
|
|
4
4
|
import { FileUploadModule } from 'primeng/fileupload';
|
|
5
5
|
import * as i1 from 'primeng/api';
|
|
6
|
+
import { MessageService } from 'primeng/api';
|
|
6
7
|
|
|
7
8
|
class FileUploadComponent {
|
|
8
9
|
constructor(messageService) {
|
|
@@ -34,15 +35,16 @@ class FileUploadComponent {
|
|
|
34
35
|
this.messageService.add({ severity: 'success', summary: 'Dosya başarıyla yüklendi..', detail: '' });
|
|
35
36
|
}
|
|
36
37
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: FileUploadComponent, deps: [{ token: i1.MessageService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
37
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: FileUploadComponent, isStandalone: true, selector: "aril-file-upload", inputs: { name: "name", url: "url", multiple: "multiple", accept: "accept", disabled: "disabled", auto: "auto", maxFileSize: "maxFileSize", tabindex: "tabindex", withCredentials: "withCredentials", showUploadButton: "showUploadButton", showCancelButton: "showCancelButton", cancelLabel: "cancelLabel", chooseLabel: "chooseLabel", uploadLabel: "uploadLabel", invalidFileTypeMessageSummary: "invalidFileTypeMessageSummary", invalidFileTypeMessageDetail: "invalidFileTypeMessageDetail", invalidFileSizeMessageSummary: "invalidFileSizeMessageSummary", invalidFileSizeMessageDetail: "invalidFileSizeMessageDetail" }, outputs: { beforeSend: "beforeSend", upload: "upload", errors: "errors", selects: "selects", clear: "clear" }, ngImport: i0, template: "<p-fileUpload\r\n\t[name]=\"name\"\r\n\t[url]=\"url\"\r\n\tmethod=\"post\"\r\n\t[multiple]=\"multiple\"\r\n\t[accept]=\"accept\"\r\n\t[disabled]=\"disabled\"\r\n\t[auto]=\"auto\"\r\n\t[maxFileSize]=\"maxFileSize\"\r\n\t[tabindex]=\"tabindex\"\r\n\t[withCredentials]=\"withCredentials\"\r\n\t[showUploadButton]=\"showUploadButton\"\r\n\t[showCancelButton]=\"showCancelButton\"\r\n\t[chooseLabel]=\"chooseLabel\"\r\n\t[cancelLabel]=\"cancelLabel\"\r\n\t[uploadLabel]=\"uploadLabel\"\r\n\t[invalidFileTypeMessageSummary]=\"invalidFileTypeMessageSummary\"\r\n\t[invalidFileTypeMessageDetail]=\"invalidFileTypeMessageDetail\"\r\n\t[invalidFileSizeMessageSummary]=\"invalidFileSizeMessageSummary\"\r\n\t[invalidFileSizeMessageDetail]=\"invalidFileSizeMessageDetail\"\r\n\t(onBeforeSend)=\"beforeSend.emit($event)\"\r\n\t(onUpload)=\"onUpload($event)\"\r\n\t(onError)=\"errors.emit($event)\"\r\n\t(onSelect)=\"selects.emit($event)\"\r\n\t(onClear)=\"clear.emit($event)\">\r\n\t<ng-template pTemplate=\"content\">\r\n\t\t@if (uploadedFiles.length) {\r\n\t\t\t<div class=\"flex flex-column\">\r\n\t\t\t\t@for (file of uploadedFiles; track file) {\r\n\t\t\t\t\t<div class=\"mt-2\">\r\n\t\t\t\t\t\t<i\r\n\t\t\t\t\t\t\tclass=\"pi pi-file-excel\"\r\n\t\t\t\t\t\t\tstyle=\"color: slateblue; font-size: 1.4rem\"></i>\r\n\t\t\t\t\t\t{{ file.name }} - {{ file.size }} bytes\r\n\t\t\t\t\t</div>\r\n\t\t\t\t}\r\n\t\t\t</div>\r\n\t\t}\r\n\t</ng-template>\r\n\t<ng-content></ng-content>\r\n</p-fileUpload>\r\n", dependencies: [{ kind: "ngmodule", type: FileUploadModule }, { kind: "component", type: i2.FileUpload, selector: "p-fileUpload", inputs: ["name", "url", "method", "multiple", "accept", "disabled", "auto", "withCredentials", "maxFileSize", "invalidFileSizeMessageSummary", "invalidFileSizeMessageDetail", "invalidFileTypeMessageSummary", "invalidFileTypeMessageDetail", "invalidFileLimitMessageDetail", "invalidFileLimitMessageSummary", "style", "styleClass", "previewWidth", "chooseLabel", "uploadLabel", "cancelLabel", "chooseIcon", "uploadIcon", "cancelIcon", "showUploadButton", "showCancelButton", "mode", "headers", "customUpload", "fileLimit", "uploadStyleClass", "cancelStyleClass", "removeStyleClass", "chooseStyleClass", "files"], outputs: ["onBeforeUpload", "onSend", "onUpload", "onError", "onClear", "onRemove", "onSelect", "onProgress", "uploadHandler", "onImageError"] }, { kind: "directive", type: i1.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
38
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: FileUploadComponent, isStandalone: true, selector: "aril-file-upload", inputs: { name: "name", url: "url", multiple: "multiple", accept: "accept", disabled: "disabled", auto: "auto", maxFileSize: "maxFileSize", tabindex: "tabindex", withCredentials: "withCredentials", showUploadButton: "showUploadButton", showCancelButton: "showCancelButton", cancelLabel: "cancelLabel", chooseLabel: "chooseLabel", uploadLabel: "uploadLabel", invalidFileTypeMessageSummary: "invalidFileTypeMessageSummary", invalidFileTypeMessageDetail: "invalidFileTypeMessageDetail", invalidFileSizeMessageSummary: "invalidFileSizeMessageSummary", invalidFileSizeMessageDetail: "invalidFileSizeMessageDetail" }, outputs: { beforeSend: "beforeSend", upload: "upload", errors: "errors", selects: "selects", clear: "clear" }, providers: [MessageService], ngImport: i0, template: "<p-fileUpload\r\n\t[name]=\"name\"\r\n\t[url]=\"url\"\r\n\tmethod=\"post\"\r\n\t[multiple]=\"multiple\"\r\n\t[accept]=\"accept\"\r\n\t[disabled]=\"disabled\"\r\n\t[auto]=\"auto\"\r\n\t[maxFileSize]=\"maxFileSize\"\r\n\t[tabindex]=\"tabindex\"\r\n\t[withCredentials]=\"withCredentials\"\r\n\t[showUploadButton]=\"showUploadButton\"\r\n\t[showCancelButton]=\"showCancelButton\"\r\n\t[chooseLabel]=\"chooseLabel\"\r\n\t[cancelLabel]=\"cancelLabel\"\r\n\t[uploadLabel]=\"uploadLabel\"\r\n\t[invalidFileTypeMessageSummary]=\"invalidFileTypeMessageSummary\"\r\n\t[invalidFileTypeMessageDetail]=\"invalidFileTypeMessageDetail\"\r\n\t[invalidFileSizeMessageSummary]=\"invalidFileSizeMessageSummary\"\r\n\t[invalidFileSizeMessageDetail]=\"invalidFileSizeMessageDetail\"\r\n\t(onBeforeSend)=\"beforeSend.emit($event)\"\r\n\t(onUpload)=\"onUpload($event)\"\r\n\t(onError)=\"errors.emit($event)\"\r\n\t(onSelect)=\"selects.emit($event)\"\r\n\t(onClear)=\"clear.emit($event)\">\r\n\t<ng-template pTemplate=\"content\">\r\n\t\t@if (uploadedFiles.length) {\r\n\t\t\t<div class=\"flex flex-column\">\r\n\t\t\t\t@for (file of uploadedFiles; track file) {\r\n\t\t\t\t\t<div class=\"mt-2\">\r\n\t\t\t\t\t\t<i\r\n\t\t\t\t\t\t\tclass=\"pi pi-file-excel\"\r\n\t\t\t\t\t\t\tstyle=\"color: slateblue; font-size: 1.4rem\"></i>\r\n\t\t\t\t\t\t{{ file.name }} - {{ file.size }} bytes\r\n\t\t\t\t\t</div>\r\n\t\t\t\t}\r\n\t\t\t</div>\r\n\t\t}\r\n\t</ng-template>\r\n\t<ng-content></ng-content>\r\n</p-fileUpload>\r\n", dependencies: [{ kind: "ngmodule", type: FileUploadModule }, { kind: "component", type: i2.FileUpload, selector: "p-fileUpload", inputs: ["name", "url", "method", "multiple", "accept", "disabled", "auto", "withCredentials", "maxFileSize", "invalidFileSizeMessageSummary", "invalidFileSizeMessageDetail", "invalidFileTypeMessageSummary", "invalidFileTypeMessageDetail", "invalidFileLimitMessageDetail", "invalidFileLimitMessageSummary", "style", "styleClass", "previewWidth", "chooseLabel", "uploadLabel", "cancelLabel", "chooseIcon", "uploadIcon", "cancelIcon", "showUploadButton", "showCancelButton", "mode", "headers", "customUpload", "fileLimit", "uploadStyleClass", "cancelStyleClass", "removeStyleClass", "chooseStyleClass", "files"], outputs: ["onBeforeUpload", "onSend", "onUpload", "onError", "onClear", "onRemove", "onSelect", "onProgress", "uploadHandler", "onImageError"] }, { kind: "directive", type: i1.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
38
39
|
}
|
|
39
40
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: FileUploadComponent, decorators: [{
|
|
40
41
|
type: Component,
|
|
41
|
-
args: [{ standalone: true, selector: 'aril-file-upload', imports: [FileUploadModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<p-fileUpload\r\n\t[name]=\"name\"\r\n\t[url]=\"url\"\r\n\tmethod=\"post\"\r\n\t[multiple]=\"multiple\"\r\n\t[accept]=\"accept\"\r\n\t[disabled]=\"disabled\"\r\n\t[auto]=\"auto\"\r\n\t[maxFileSize]=\"maxFileSize\"\r\n\t[tabindex]=\"tabindex\"\r\n\t[withCredentials]=\"withCredentials\"\r\n\t[showUploadButton]=\"showUploadButton\"\r\n\t[showCancelButton]=\"showCancelButton\"\r\n\t[chooseLabel]=\"chooseLabel\"\r\n\t[cancelLabel]=\"cancelLabel\"\r\n\t[uploadLabel]=\"uploadLabel\"\r\n\t[invalidFileTypeMessageSummary]=\"invalidFileTypeMessageSummary\"\r\n\t[invalidFileTypeMessageDetail]=\"invalidFileTypeMessageDetail\"\r\n\t[invalidFileSizeMessageSummary]=\"invalidFileSizeMessageSummary\"\r\n\t[invalidFileSizeMessageDetail]=\"invalidFileSizeMessageDetail\"\r\n\t(onBeforeSend)=\"beforeSend.emit($event)\"\r\n\t(onUpload)=\"onUpload($event)\"\r\n\t(onError)=\"errors.emit($event)\"\r\n\t(onSelect)=\"selects.emit($event)\"\r\n\t(onClear)=\"clear.emit($event)\">\r\n\t<ng-template pTemplate=\"content\">\r\n\t\t@if (uploadedFiles.length) {\r\n\t\t\t<div class=\"flex flex-column\">\r\n\t\t\t\t@for (file of uploadedFiles; track file) {\r\n\t\t\t\t\t<div class=\"mt-2\">\r\n\t\t\t\t\t\t<i\r\n\t\t\t\t\t\t\tclass=\"pi pi-file-excel\"\r\n\t\t\t\t\t\t\tstyle=\"color: slateblue; font-size: 1.4rem\"></i>\r\n\t\t\t\t\t\t{{ file.name }} - {{ file.size }} bytes\r\n\t\t\t\t\t</div>\r\n\t\t\t\t}\r\n\t\t\t</div>\r\n\t\t}\r\n\t</ng-template>\r\n\t<ng-content></ng-content>\r\n</p-fileUpload>\r\n" }]
|
|
42
|
+
args: [{ standalone: true, selector: 'aril-file-upload', imports: [FileUploadModule], providers: [MessageService], changeDetection: ChangeDetectionStrategy.OnPush, template: "<p-fileUpload\r\n\t[name]=\"name\"\r\n\t[url]=\"url\"\r\n\tmethod=\"post\"\r\n\t[multiple]=\"multiple\"\r\n\t[accept]=\"accept\"\r\n\t[disabled]=\"disabled\"\r\n\t[auto]=\"auto\"\r\n\t[maxFileSize]=\"maxFileSize\"\r\n\t[tabindex]=\"tabindex\"\r\n\t[withCredentials]=\"withCredentials\"\r\n\t[showUploadButton]=\"showUploadButton\"\r\n\t[showCancelButton]=\"showCancelButton\"\r\n\t[chooseLabel]=\"chooseLabel\"\r\n\t[cancelLabel]=\"cancelLabel\"\r\n\t[uploadLabel]=\"uploadLabel\"\r\n\t[invalidFileTypeMessageSummary]=\"invalidFileTypeMessageSummary\"\r\n\t[invalidFileTypeMessageDetail]=\"invalidFileTypeMessageDetail\"\r\n\t[invalidFileSizeMessageSummary]=\"invalidFileSizeMessageSummary\"\r\n\t[invalidFileSizeMessageDetail]=\"invalidFileSizeMessageDetail\"\r\n\t(onBeforeSend)=\"beforeSend.emit($event)\"\r\n\t(onUpload)=\"onUpload($event)\"\r\n\t(onError)=\"errors.emit($event)\"\r\n\t(onSelect)=\"selects.emit($event)\"\r\n\t(onClear)=\"clear.emit($event)\">\r\n\t<ng-template pTemplate=\"content\">\r\n\t\t@if (uploadedFiles.length) {\r\n\t\t\t<div class=\"flex flex-column\">\r\n\t\t\t\t@for (file of uploadedFiles; track file) {\r\n\t\t\t\t\t<div class=\"mt-2\">\r\n\t\t\t\t\t\t<i\r\n\t\t\t\t\t\t\tclass=\"pi pi-file-excel\"\r\n\t\t\t\t\t\t\tstyle=\"color: slateblue; font-size: 1.4rem\"></i>\r\n\t\t\t\t\t\t{{ file.name }} - {{ file.size }} bytes\r\n\t\t\t\t\t</div>\r\n\t\t\t\t}\r\n\t\t\t</div>\r\n\t\t}\r\n\t</ng-template>\r\n\t<ng-content></ng-content>\r\n</p-fileUpload>\r\n" }]
|
|
42
43
|
}], ctorParameters: () => [{ type: i1.MessageService }], propDecorators: { name: [{
|
|
43
44
|
type: Input
|
|
44
45
|
}], url: [{
|
|
45
|
-
type: Input
|
|
46
|
+
type: Input,
|
|
47
|
+
args: [{ required: true }]
|
|
46
48
|
}], multiple: [{
|
|
47
49
|
type: Input
|
|
48
50
|
}], accept: [{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aril-ui-fileUpload.mjs","sources":["../../projects/aril/ui/fileUpload/src/file-upload.component.ts","../../projects/aril/ui/fileUpload/src/file-upload.component.html","../../projects/aril/ui/fileUpload/aril-ui-fileUpload.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-explicit-any */\r\n\r\nimport { HttpEvent } from '@angular/common/http';\r\nimport { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';\r\nimport { FileUploadModule } from 'primeng/fileupload';\r\nimport { MessageService } from 'primeng/api';\r\n\r\n/* TODO : \r\n 1. InputSignal\r\n*/\r\n\r\ninterface UploadEvent {\r\n originalEvent: HttpEvent<any>;\r\n files: File[];\r\n}\r\n\r\ninterface UploadFile {\r\n name: string;\r\n size: number;\r\n type: string;\r\n objectURL?: string;\r\n}\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-file-upload',\r\n templateUrl: './file-upload.component.html',\r\n imports: [FileUploadModule],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class FileUploadComponent {\r\n constructor(private messageService: MessageService) { }\r\n\r\n @Input() name!: string;\r\n @Input() url!: string;\r\n @Input() multiple = false;\r\n @Input() accept = \".xlsx\";\r\n @Input() disabled = false;\r\n @Input() auto = false;\r\n @Input() maxFileSize!: number;\r\n @Input() tabindex!: number;\r\n @Input() withCredentials = false;\r\n @Input() showUploadButton = true;\r\n @Input() showCancelButton = true;\r\n @Input() cancelLabel = \"Temizle\";\r\n @Input() chooseLabel = \"Dosyayi Seç\";\r\n @Input() uploadLabel = \"Dosyayi Yükle\";\r\n @Input() invalidFileTypeMessageSummary = \"Geçersiz dosya türü\";\r\n @Input() invalidFileTypeMessageDetail = \"Seçilen dosya türü desteklenmiyor.\";\r\n @Input() invalidFileSizeMessageSummary = \"Dosya boyutu çok büyük\";\r\n @Input() invalidFileSizeMessageDetail = \"Dosya boyutu izin verilen maksimum boyuttan daha büyük.\";\r\n\r\n @Output() beforeSend: EventEmitter<unknown> = new EventEmitter();\r\n @Output() upload: EventEmitter<unknown> = new EventEmitter();\r\n @Output() errors: EventEmitter<unknown> = new EventEmitter();\r\n @Output() selects: EventEmitter<unknown> = new EventEmitter();\r\n @Output() clear: EventEmitter<unknown> = new EventEmitter();\r\n\r\n uploadedFiles: UploadFile[] = [];\r\n\r\n onUpload(event: UploadEvent) {\r\n this.upload.emit(event);\r\n this.uploadedFiles = event.files;\r\n this.messageService.add({ severity: 'success', summary: 'Dosya başarıyla yüklendi..', detail: '' });\r\n }\r\n}\r\n","<p-fileUpload\r\n\t[name]=\"name\"\r\n\t[url]=\"url\"\r\n\tmethod=\"post\"\r\n\t[multiple]=\"multiple\"\r\n\t[accept]=\"accept\"\r\n\t[disabled]=\"disabled\"\r\n\t[auto]=\"auto\"\r\n\t[maxFileSize]=\"maxFileSize\"\r\n\t[tabindex]=\"tabindex\"\r\n\t[withCredentials]=\"withCredentials\"\r\n\t[showUploadButton]=\"showUploadButton\"\r\n\t[showCancelButton]=\"showCancelButton\"\r\n\t[chooseLabel]=\"chooseLabel\"\r\n\t[cancelLabel]=\"cancelLabel\"\r\n\t[uploadLabel]=\"uploadLabel\"\r\n\t[invalidFileTypeMessageSummary]=\"invalidFileTypeMessageSummary\"\r\n\t[invalidFileTypeMessageDetail]=\"invalidFileTypeMessageDetail\"\r\n\t[invalidFileSizeMessageSummary]=\"invalidFileSizeMessageSummary\"\r\n\t[invalidFileSizeMessageDetail]=\"invalidFileSizeMessageDetail\"\r\n\t(onBeforeSend)=\"beforeSend.emit($event)\"\r\n\t(onUpload)=\"onUpload($event)\"\r\n\t(onError)=\"errors.emit($event)\"\r\n\t(onSelect)=\"selects.emit($event)\"\r\n\t(onClear)=\"clear.emit($event)\">\r\n\t<ng-template pTemplate=\"content\">\r\n\t\t@if (uploadedFiles.length) {\r\n\t\t\t<div class=\"flex flex-column\">\r\n\t\t\t\t@for (file of uploadedFiles; track file) {\r\n\t\t\t\t\t<div class=\"mt-2\">\r\n\t\t\t\t\t\t<i\r\n\t\t\t\t\t\t\tclass=\"pi pi-file-excel\"\r\n\t\t\t\t\t\t\tstyle=\"color: slateblue; font-size: 1.4rem\"></i>\r\n\t\t\t\t\t\t{{ file.name }} - {{ file.size }} bytes\r\n\t\t\t\t\t</div>\r\n\t\t\t\t}\r\n\t\t\t</div>\r\n\t\t}\r\n\t</ng-template>\r\n\t<ng-content></ng-content>\r\n</p-fileUpload>\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aril-ui-fileUpload.mjs","sources":["../../projects/aril/ui/fileUpload/src/file-upload.component.ts","../../projects/aril/ui/fileUpload/src/file-upload.component.html","../../projects/aril/ui/fileUpload/aril-ui-fileUpload.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-explicit-any */\r\n\r\nimport { HttpEvent } from '@angular/common/http';\r\nimport { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';\r\nimport { FileUploadModule } from 'primeng/fileupload';\r\nimport { MessageService } from 'primeng/api';\r\n\r\n/* TODO : \r\n 1. InputSignal\r\n*/\r\n\r\ninterface UploadEvent {\r\n originalEvent: HttpEvent<any>;\r\n files: File[];\r\n}\r\n\r\ninterface UploadFile {\r\n name: string;\r\n size: number;\r\n type: string;\r\n objectURL?: string;\r\n}\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-file-upload',\r\n templateUrl: './file-upload.component.html',\r\n imports: [FileUploadModule],\r\n providers: [MessageService],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class FileUploadComponent {\r\n constructor(private messageService: MessageService) { }\r\n\r\n @Input() name!: string;\r\n @Input({ required: true }) url!: string;\r\n @Input() multiple = false;\r\n @Input() accept = \".xlsx\";\r\n @Input() disabled = false;\r\n @Input() auto = false;\r\n @Input() maxFileSize!: number;\r\n @Input() tabindex!: number;\r\n @Input() withCredentials = false;\r\n @Input() showUploadButton = true;\r\n @Input() showCancelButton = true;\r\n @Input() cancelLabel = \"Temizle\";\r\n @Input() chooseLabel = \"Dosyayi Seç\";\r\n @Input() uploadLabel = \"Dosyayi Yükle\";\r\n @Input() invalidFileTypeMessageSummary = \"Geçersiz dosya türü\";\r\n @Input() invalidFileTypeMessageDetail = \"Seçilen dosya türü desteklenmiyor.\";\r\n @Input() invalidFileSizeMessageSummary = \"Dosya boyutu çok büyük\";\r\n @Input() invalidFileSizeMessageDetail = \"Dosya boyutu izin verilen maksimum boyuttan daha büyük.\";\r\n\r\n @Output() beforeSend: EventEmitter<unknown> = new EventEmitter();\r\n @Output() upload: EventEmitter<unknown> = new EventEmitter();\r\n @Output() errors: EventEmitter<unknown> = new EventEmitter();\r\n @Output() selects: EventEmitter<unknown> = new EventEmitter();\r\n @Output() clear: EventEmitter<unknown> = new EventEmitter();\r\n\r\n uploadedFiles: UploadFile[] = [];\r\n\r\n onUpload(event: UploadEvent) {\r\n this.upload.emit(event);\r\n this.uploadedFiles = event.files;\r\n this.messageService.add({ severity: 'success', summary: 'Dosya başarıyla yüklendi..', detail: '' });\r\n }\r\n}\r\n","<p-fileUpload\r\n\t[name]=\"name\"\r\n\t[url]=\"url\"\r\n\tmethod=\"post\"\r\n\t[multiple]=\"multiple\"\r\n\t[accept]=\"accept\"\r\n\t[disabled]=\"disabled\"\r\n\t[auto]=\"auto\"\r\n\t[maxFileSize]=\"maxFileSize\"\r\n\t[tabindex]=\"tabindex\"\r\n\t[withCredentials]=\"withCredentials\"\r\n\t[showUploadButton]=\"showUploadButton\"\r\n\t[showCancelButton]=\"showCancelButton\"\r\n\t[chooseLabel]=\"chooseLabel\"\r\n\t[cancelLabel]=\"cancelLabel\"\r\n\t[uploadLabel]=\"uploadLabel\"\r\n\t[invalidFileTypeMessageSummary]=\"invalidFileTypeMessageSummary\"\r\n\t[invalidFileTypeMessageDetail]=\"invalidFileTypeMessageDetail\"\r\n\t[invalidFileSizeMessageSummary]=\"invalidFileSizeMessageSummary\"\r\n\t[invalidFileSizeMessageDetail]=\"invalidFileSizeMessageDetail\"\r\n\t(onBeforeSend)=\"beforeSend.emit($event)\"\r\n\t(onUpload)=\"onUpload($event)\"\r\n\t(onError)=\"errors.emit($event)\"\r\n\t(onSelect)=\"selects.emit($event)\"\r\n\t(onClear)=\"clear.emit($event)\">\r\n\t<ng-template pTemplate=\"content\">\r\n\t\t@if (uploadedFiles.length) {\r\n\t\t\t<div class=\"flex flex-column\">\r\n\t\t\t\t@for (file of uploadedFiles; track file) {\r\n\t\t\t\t\t<div class=\"mt-2\">\r\n\t\t\t\t\t\t<i\r\n\t\t\t\t\t\t\tclass=\"pi pi-file-excel\"\r\n\t\t\t\t\t\t\tstyle=\"color: slateblue; font-size: 1.4rem\"></i>\r\n\t\t\t\t\t\t{{ file.name }} - {{ file.size }} bytes\r\n\t\t\t\t\t</div>\r\n\t\t\t\t}\r\n\t\t\t</div>\r\n\t\t}\r\n\t</ng-template>\r\n\t<ng-content></ng-content>\r\n</p-fileUpload>\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
@@ -73,6 +73,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
73
73
|
}] } });
|
|
74
74
|
|
|
75
75
|
// it can be use ngModule
|
|
76
|
+
// import { NgModule } from '@angular/core';
|
|
77
|
+
// import { ButtonComponent } from '../button';
|
|
78
|
+
// import { FormComponent } from './src/form.component';
|
|
79
|
+
// import { FormSubmitButtonComponent } from './src/form-submit-button.component';
|
|
80
|
+
// const components = [FormComponent, FormSubmitButtonComponent];
|
|
81
|
+
// @NgModule({
|
|
82
|
+
// imports: [ButtonComponent],
|
|
83
|
+
// exports: [components],
|
|
84
|
+
// declarations: [components]
|
|
85
|
+
// })
|
|
86
|
+
// export class FormModule { }
|
|
76
87
|
|
|
77
88
|
/**
|
|
78
89
|
* Generated bundle index. Do not edit.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aril-ui-form.mjs","sources":["../../projects/aril/ui/form/src/form.component.ts","../../projects/aril/ui/form/src/form-submit-button.component.ts","../../projects/aril/ui/form/src/form-submit-button.component.html","../../projects/aril/ui/form/index.ts","../../projects/aril/ui/form/aril-ui-form.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, Input } from '@angular/core';\r\nimport { FormGroup } from '@angular/forms';\r\nimport { FlexGridDirective, FormErrorMessageDirective } from 'aril/ui/lib';\r\n\r\n/* TODO : \r\n 1. InputSignal\r\n*/\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-form',\r\n template: ` <ng-content></ng-content> `,\r\n hostDirectives: [\r\n FlexGridDirective,\r\n {\r\n directive: FormErrorMessageDirective,\r\n inputs: [\"formErrorMessage: formGroup\"]\r\n }\r\n ],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class FormComponent {\r\n @Input({ required: true }) formGroup!: FormGroup;\r\n}\r\n","/* eslint-disable @typescript-eslint/no-unused-vars */\r\n/* eslint-disable @typescript-eslint/no-explicit-any */\r\n\r\nimport { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';\r\nimport { FormGroup, isFormArray, isFormControl, isFormGroup } from '@angular/forms';\r\nimport { ButtonComponent } from 'aril/ui/button';\r\n\r\n/* TODO : \r\n 1. InputSignal\r\n*/\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-form-submit',\r\n templateUrl: './form-submit-button.component.html',\r\n imports: [ButtonComponent],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class FormSubmitButtonComponent extends ButtonComponent {\r\n @Input({ required: true }) formGroup!: FormGroup;\r\n @Output() inValidEvent: EventEmitter<never> = new EventEmitter<never>();\r\n\r\n submit() {\r\n this.markAsDirty(this.formGroup.controls);\r\n if (this.formGroup.valid) this.clickEvent.emit();\r\n else this.inValidEvent.emit();\r\n }\r\n\r\n markAsDirty(controls: { [key: string]: any }) {\r\n Object.entries(controls).forEach(([key, ctrl]) => {\r\n if (isFormControl(ctrl)) {\r\n ctrl.markAsDirty();\r\n } else if (isFormGroup(ctrl) || isFormArray(ctrl)) {\r\n this.markAsDirty(ctrl.controls);\r\n }\r\n });\r\n }\r\n}","<aril-button\r\n\t[label]=\"label\"\r\n\t[loading]=\"formGroup.pending\"\r\n\t[disabled]=\"disabled\"\r\n\t[raised]=\"raised\"\r\n\t[outlined]=\"outlined\"\r\n\t[badge]=\"badge\"\r\n\t[size]=\"size\"\r\n\t[icon]=\"icon\"\r\n\t[color]=\"color\"\r\n\t(clickEvent)=\"submit()\">\r\n</aril-button>\r\n","export * from './src/form.component';\r\nexport * from './src/form-submit-button.component';\r\n\r\n// it can be use ngModule","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"aril-ui-form.mjs","sources":["../../projects/aril/ui/form/src/form.component.ts","../../projects/aril/ui/form/src/form-submit-button.component.ts","../../projects/aril/ui/form/src/form-submit-button.component.html","../../projects/aril/ui/form/index.ts","../../projects/aril/ui/form/aril-ui-form.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, Input } from '@angular/core';\r\nimport { FormGroup } from '@angular/forms';\r\nimport { FlexGridDirective, FormErrorMessageDirective } from 'aril/ui/lib';\r\n\r\n/* TODO : \r\n 1. InputSignal\r\n*/\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-form',\r\n template: ` <ng-content></ng-content> `,\r\n hostDirectives: [\r\n FlexGridDirective,\r\n {\r\n directive: FormErrorMessageDirective,\r\n inputs: [\"formErrorMessage: formGroup\"]\r\n }\r\n ],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class FormComponent {\r\n @Input({ required: true }) formGroup!: FormGroup;\r\n}\r\n","/* eslint-disable @typescript-eslint/no-unused-vars */\r\n/* eslint-disable @typescript-eslint/no-explicit-any */\r\n\r\nimport { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';\r\nimport { FormGroup, isFormArray, isFormControl, isFormGroup } from '@angular/forms';\r\nimport { ButtonComponent } from 'aril/ui/button';\r\n\r\n/* TODO : \r\n 1. InputSignal\r\n*/\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-form-submit',\r\n templateUrl: './form-submit-button.component.html',\r\n imports: [ButtonComponent],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class FormSubmitButtonComponent extends ButtonComponent {\r\n @Input({ required: true }) formGroup!: FormGroup;\r\n @Output() inValidEvent: EventEmitter<never> = new EventEmitter<never>();\r\n\r\n submit() {\r\n this.markAsDirty(this.formGroup.controls);\r\n if (this.formGroup.valid) this.clickEvent.emit();\r\n else this.inValidEvent.emit();\r\n }\r\n\r\n markAsDirty(controls: { [key: string]: any }) {\r\n Object.entries(controls).forEach(([key, ctrl]) => {\r\n if (isFormControl(ctrl)) {\r\n ctrl.markAsDirty();\r\n } else if (isFormGroup(ctrl) || isFormArray(ctrl)) {\r\n this.markAsDirty(ctrl.controls);\r\n }\r\n });\r\n }\r\n}","<aril-button\r\n\t[label]=\"label\"\r\n\t[loading]=\"formGroup.pending\"\r\n\t[disabled]=\"disabled\"\r\n\t[raised]=\"raised\"\r\n\t[outlined]=\"outlined\"\r\n\t[badge]=\"badge\"\r\n\t[size]=\"size\"\r\n\t[icon]=\"icon\"\r\n\t[color]=\"color\"\r\n\t(clickEvent)=\"submit()\">\r\n</aril-button>\r\n","export * from './src/form.component';\r\nexport * from './src/form-submit-button.component';\r\n\r\n// it can be use ngModule\r\n\r\n// import { NgModule } from '@angular/core';\r\n// import { ButtonComponent } from '../button';\r\n// import { FormComponent } from './src/form.component';\r\n// import { FormSubmitButtonComponent } from './src/form-submit-button.component';\r\n\r\n// const components = [FormComponent, FormSubmitButtonComponent];\r\n\r\n// @NgModule({\r\n// imports: [ButtonComponent],\r\n// exports: [components],\r\n// declarations: [components]\r\n// })\r\n// export class FormModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
@@ -7,7 +7,6 @@ import * as i2 from 'primeng/api';
|
|
|
7
7
|
|
|
8
8
|
class PanelComponent {
|
|
9
9
|
constructor() {
|
|
10
|
-
// header = input<string>();
|
|
11
10
|
this.toggleable = input(true);
|
|
12
11
|
this.canFullScreen = input(true);
|
|
13
12
|
this.isFullScreen = false;
|
|
@@ -16,11 +15,11 @@ class PanelComponent {
|
|
|
16
15
|
this.isFullScreen = !this.isFullScreen;
|
|
17
16
|
}
|
|
18
17
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: PanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
19
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: PanelComponent, isStandalone: true, selector: "aril-panel", inputs: { toggleable: { classPropertyName: "toggleable", publicName: "toggleable", isSignal: true, isRequired: false, transformFunction: null }, canFullScreen: { classPropertyName: "canFullScreen", publicName: "canFullScreen", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "panelRef", first: true, predicate: ["panel"], descendants: true }], ngImport: i0, template: "<div [ngClass]=\"{ 'full-screen': isFullScreen && canFullScreen }\">\r\n\t<p-panel [toggleable]=\"toggleable()\">\r\n\t\t<!-- header -->\r\n\t\t<ng-template pTemplate=\"header\">\r\n\t\t\t<div class=\"panel-header\">\r\n\t\t\t\t
|
|
18
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: PanelComponent, isStandalone: true, selector: "aril-panel", inputs: { toggleable: { classPropertyName: "toggleable", publicName: "toggleable", isSignal: true, isRequired: false, transformFunction: null }, canFullScreen: { classPropertyName: "canFullScreen", publicName: "canFullScreen", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "panelRef", first: true, predicate: ["panel"], descendants: true }], ngImport: i0, template: "<div [ngClass]=\"{ 'full-screen': isFullScreen && canFullScreen }\">\r\n\t<p-panel [toggleable]=\"toggleable()\">\r\n\t\t<!-- header -->\r\n\t\t<ng-template pTemplate=\"header\">\r\n\t\t\t<div class=\"panel-header\">\r\n\t\t\t\t<ng-content select=\"[header]\"></ng-content>\r\n\t\t\t</div>\r\n\t\t</ng-template>\r\n\r\n\t\t<!-- header-tools -->\r\n\t\t<ng-template pTemplate=\"icons\">\r\n\t\t\t<ng-content select=\"[tools]\"></ng-content>\r\n\r\n\t\t\t@if (canFullScreen()) {\r\n\t\t\t\t<div class=\"panel-icons\">\r\n\t\t\t\t\t<i\r\n\t\t\t\t\t\t[attr.role]=\"'none'\"\r\n\t\t\t\t\t\tclass=\"pi mr-1 header-icon\"\r\n\t\t\t\t\t\t[ngClass]=\"{\r\n\t\t\t\t\t\t\t'pi-window-maximize': !isFullScreen,\r\n\t\t\t\t\t\t\t'pi-window-minimize': isFullScreen\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t\t(click)=\"toggleFullScreen()\"></i>\r\n\t\t\t\t</div>\r\n\t\t\t}\r\n\t\t</ng-template>\r\n\r\n\t\t<!-- body -->\r\n\t\t<ng-content select=\"[body]\"></ng-content>\r\n\r\n\t\t<!-- footer -->\r\n\t\t<ng-template pTemplate=\"footer\">\r\n\t\t\t<ng-content select=\"[footer]\"></ng-content>\r\n\t\t</ng-template>\r\n\t</p-panel>\r\n</div>\r\n", styles: [".full-screen{position:fixed;inset:0;z-index:99999999;overflow-y:auto;box-sizing:border-box;width:100%;height:100vh;background:#fff}.panel-header{width:100%;display:flex;justify-content:space-between;align-items:center}.header-icon{cursor:pointer;width:1.5rem}\n"], dependencies: [{ kind: "ngmodule", type: PanelModule }, { kind: "component", type: i1.Panel, selector: "p-panel", inputs: ["toggleable", "header", "collapsed", "style", "styleClass", "iconPos", "expandIcon", "collapseIcon", "showHeader", "toggler", "transitionOptions"], outputs: ["collapsedChange", "onBeforeToggle", "onAfterToggle"] }, { kind: "directive", type: i2.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
20
19
|
}
|
|
21
20
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: PanelComponent, decorators: [{
|
|
22
21
|
type: Component,
|
|
23
|
-
args: [{ standalone: true, selector: 'aril-panel', imports: [PanelModule, NgClass], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div [ngClass]=\"{ 'full-screen': isFullScreen && canFullScreen }\">\r\n\t<p-panel [toggleable]=\"toggleable()\">\r\n\t\t<!-- header -->\r\n\t\t<ng-template pTemplate=\"header\">\r\n\t\t\t<div class=\"panel-header\">\r\n\t\t\t\t
|
|
22
|
+
args: [{ standalone: true, selector: 'aril-panel', imports: [PanelModule, NgClass], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div [ngClass]=\"{ 'full-screen': isFullScreen && canFullScreen }\">\r\n\t<p-panel [toggleable]=\"toggleable()\">\r\n\t\t<!-- header -->\r\n\t\t<ng-template pTemplate=\"header\">\r\n\t\t\t<div class=\"panel-header\">\r\n\t\t\t\t<ng-content select=\"[header]\"></ng-content>\r\n\t\t\t</div>\r\n\t\t</ng-template>\r\n\r\n\t\t<!-- header-tools -->\r\n\t\t<ng-template pTemplate=\"icons\">\r\n\t\t\t<ng-content select=\"[tools]\"></ng-content>\r\n\r\n\t\t\t@if (canFullScreen()) {\r\n\t\t\t\t<div class=\"panel-icons\">\r\n\t\t\t\t\t<i\r\n\t\t\t\t\t\t[attr.role]=\"'none'\"\r\n\t\t\t\t\t\tclass=\"pi mr-1 header-icon\"\r\n\t\t\t\t\t\t[ngClass]=\"{\r\n\t\t\t\t\t\t\t'pi-window-maximize': !isFullScreen,\r\n\t\t\t\t\t\t\t'pi-window-minimize': isFullScreen\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t\t(click)=\"toggleFullScreen()\"></i>\r\n\t\t\t\t</div>\r\n\t\t\t}\r\n\t\t</ng-template>\r\n\r\n\t\t<!-- body -->\r\n\t\t<ng-content select=\"[body]\"></ng-content>\r\n\r\n\t\t<!-- footer -->\r\n\t\t<ng-template pTemplate=\"footer\">\r\n\t\t\t<ng-content select=\"[footer]\"></ng-content>\r\n\t\t</ng-template>\r\n\t</p-panel>\r\n</div>\r\n", styles: [".full-screen{position:fixed;inset:0;z-index:99999999;overflow-y:auto;box-sizing:border-box;width:100%;height:100vh;background:#fff}.panel-header{width:100%;display:flex;justify-content:space-between;align-items:center}.header-icon{cursor:pointer;width:1.5rem}\n"] }]
|
|
24
23
|
}], propDecorators: { panelRef: [{
|
|
25
24
|
type: ViewChild,
|
|
26
25
|
args: ['panel']
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aril-ui-panel.mjs","sources":["../../projects/aril/ui/panel/src/panel.component.ts","../../projects/aril/ui/panel/src/panel.component.html","../../projects/aril/ui/panel/aril-ui-panel.ts"],"sourcesContent":["import { NgClass } from '@angular/common';\r\nimport { ChangeDetectionStrategy, Component, ElementRef, Input, ViewChild, input } from '@angular/core';\r\nimport { PanelModule } from 'primeng/panel';\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-panel',\r\n templateUrl: './panel.component.html',\r\n styleUrl: './panel.component.css',\r\n imports: [PanelModule, NgClass],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class PanelComponent { \r\n
|
|
1
|
+
{"version":3,"file":"aril-ui-panel.mjs","sources":["../../projects/aril/ui/panel/src/panel.component.ts","../../projects/aril/ui/panel/src/panel.component.html","../../projects/aril/ui/panel/aril-ui-panel.ts"],"sourcesContent":["import { NgClass } from '@angular/common';\r\nimport { ChangeDetectionStrategy, Component, ElementRef, Input, ViewChild, input } from '@angular/core';\r\nimport { PanelModule } from 'primeng/panel';\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-panel',\r\n templateUrl: './panel.component.html',\r\n styleUrl: './panel.component.css',\r\n imports: [PanelModule, NgClass],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class PanelComponent { \r\n toggleable = input<boolean>(true);\r\n canFullScreen = input<boolean>(true);\r\n\r\n @ViewChild('panel') panelRef!: ElementRef;\r\n\r\n isFullScreen = false;\r\n\r\n toggleFullScreen() {\r\n this.isFullScreen = !this.isFullScreen;\r\n }\r\n}\r\n","<div [ngClass]=\"{ 'full-screen': isFullScreen && canFullScreen }\">\r\n\t<p-panel [toggleable]=\"toggleable()\">\r\n\t\t<!-- header -->\r\n\t\t<ng-template pTemplate=\"header\">\r\n\t\t\t<div class=\"panel-header\">\r\n\t\t\t\t<ng-content select=\"[header]\"></ng-content>\r\n\t\t\t</div>\r\n\t\t</ng-template>\r\n\r\n\t\t<!-- header-tools -->\r\n\t\t<ng-template pTemplate=\"icons\">\r\n\t\t\t<ng-content select=\"[tools]\"></ng-content>\r\n\r\n\t\t\t@if (canFullScreen()) {\r\n\t\t\t\t<div class=\"panel-icons\">\r\n\t\t\t\t\t<i\r\n\t\t\t\t\t\t[attr.role]=\"'none'\"\r\n\t\t\t\t\t\tclass=\"pi mr-1 header-icon\"\r\n\t\t\t\t\t\t[ngClass]=\"{\r\n\t\t\t\t\t\t\t'pi-window-maximize': !isFullScreen,\r\n\t\t\t\t\t\t\t'pi-window-minimize': isFullScreen\r\n\t\t\t\t\t\t}\"\r\n\t\t\t\t\t\t(click)=\"toggleFullScreen()\"></i>\r\n\t\t\t\t</div>\r\n\t\t\t}\r\n\t\t</ng-template>\r\n\r\n\t\t<!-- body -->\r\n\t\t<ng-content select=\"[body]\"></ng-content>\r\n\r\n\t\t<!-- footer -->\r\n\t\t<ng-template pTemplate=\"footer\">\r\n\t\t\t<ng-content select=\"[footer]\"></ng-content>\r\n\t\t</ng-template>\r\n\t</p-panel>\r\n</div>\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;MAYa,cAAc,CAAA;AAR3B,IAAA,WAAA,GAAA;AASE,QAAA,IAAA,CAAA,UAAU,GAAG,KAAK,CAAU,IAAI,CAAC,CAAC;AAClC,QAAA,IAAA,CAAA,aAAa,GAAG,KAAK,CAAU,IAAI,CAAC,CAAC;QAIrC,IAAY,CAAA,YAAA,GAAG,KAAK,CAAC;AAKtB,KAAA;IAHC,gBAAgB,GAAA;AACd,QAAA,IAAI,CAAC,YAAY,GAAG,CAAC,IAAI,CAAC,YAAY,CAAC;KACxC;8GAVU,cAAc,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAd,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,cAAc,ECZ3B,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,EAAA,UAAA,EAAA,EAAA,iBAAA,EAAA,YAAA,EAAA,UAAA,EAAA,YAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,aAAA,EAAA,EAAA,iBAAA,EAAA,eAAA,EAAA,UAAA,EAAA,eAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,WAAA,EAAA,CAAA,EAAA,YAAA,EAAA,UAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,CAAA,OAAA,CAAA,EAAA,WAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,omCAoCA,ED3BY,MAAA,EAAA,CAAA,uQAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,WAAW,gaAAE,OAAO,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA,EAAA;;2FAGnB,cAAc,EAAA,UAAA,EAAA,CAAA;kBAR1B,SAAS;iCACI,IAAI,EAAA,QAAA,EACN,YAAY,EAAA,OAAA,EAGb,CAAC,WAAW,EAAE,OAAO,CAAC,EAAA,eAAA,EACd,uBAAuB,CAAC,MAAM,EAAA,QAAA,EAAA,omCAAA,EAAA,MAAA,EAAA,CAAA,uQAAA,CAAA,EAAA,CAAA;8BAM3B,QAAQ,EAAA,CAAA;sBAA3B,SAAS;uBAAC,OAAO,CAAA;;;AEhBpB;;AAEG;;;;"}
|
|
@@ -5,7 +5,7 @@ import { ReactiveFormsModule } from '@angular/forms';
|
|
|
5
5
|
import * as i3 from 'devextreme-angular/ui/select-box';
|
|
6
6
|
import { DxSelectBoxModule } from 'devextreme-angular/ui/select-box';
|
|
7
7
|
import * as i1 from 'aril/ui/lib';
|
|
8
|
-
import { BaseInputComponent, DXInputErrorMessagePipe, ValueAccessorDirective } from 'aril/ui/lib';
|
|
8
|
+
import { BaseInputComponent, InputErrorMessagePipe, DXInputErrorMessagePipe, ValueAccessorDirective } from 'aril/ui/lib';
|
|
9
9
|
|
|
10
10
|
class SelectBoxComponent extends BaseInputComponent {
|
|
11
11
|
constructor() {
|
|
@@ -17,11 +17,11 @@ class SelectBoxComponent extends BaseInputComponent {
|
|
|
17
17
|
this.grouped = false;
|
|
18
18
|
}
|
|
19
19
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SelectBoxComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
20
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: SelectBoxComponent, isStandalone: true, selector: "aril-select-box[formControl], aril-select-box[formControlName]", inputs: { itemKey: "itemKey", itemText: "itemText", tabindex: "tabindex", items: "items", grouped: "grouped", placeholder: "placeholder", searchExpr: "searchExpr",
|
|
20
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: SelectBoxComponent, isStandalone: true, selector: "aril-select-box[formControl], aril-select-box[formControlName]", inputs: { itemKey: "itemKey", itemText: "itemText", tabindex: "tabindex", items: "items", grouped: "grouped", placeholder: "placeholder", searchExpr: "searchExpr" }, providers: [InputErrorMessagePipe], usesInheritance: true, hostDirectives: [{ directive: i1.ValueAccessorDirective }], ngImport: i0, template: "<dx-select-box\r\n\t[items]=\"items\"\r\n\t[valueExpr]=\"itemKey\"\r\n\t[displayExpr]=\"itemText\"\r\n\t[searchEnabled]=\"true\"\r\n\t[searchExpr]=\"searchExpr\"\r\n\t[tabIndex]=\"tabindex\"\r\n\t[grouped]=\"grouped\"\r\n\t[placeholder]=\"placeholder\"\r\n\t[showClearButton]=\"true\"\r\n\t[isValid]=\"ngControl?.control?.valid || ngControl?.control?.pristine || false\"\r\n\t[validationError]=\"\r\n\t\tngControl?.control?.errors | dxInputErrorMessage: ngControl?.control\r\n\t\"\r\n\tvalidationMessagePosition=\"top\"\r\n\t[formControl]=\"ngControl.control\"\r\n\t(ngModelChange)=\"ngControl.viewToModelUpdate($event)\">\r\n</dx-select-box>\r\n", dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: DxSelectBoxModule }, { kind: "component", type: i3.DxSelectBoxComponent, selector: "dx-select-box", inputs: ["acceptCustomValue", "accessKey", "activeStateEnabled", "buttons", "customItemCreateEvent", "dataSource", "deferRendering", "disabled", "displayExpr", "displayValue", "dropDownButtonTemplate", "dropDownOptions", "elementAttr", "fieldTemplate", "focusStateEnabled", "grouped", "groupTemplate", "height", "hint", "hoverStateEnabled", "inputAttr", "isDirty", "isValid", "items", "itemTemplate", "label", "labelMode", "maxLength", "minSearchLength", "name", "noDataText", "opened", "openOnFieldClick", "placeholder", "readOnly", "rtlEnabled", "searchEnabled", "searchExpr", "searchMode", "searchTimeout", "selectedItem", "showClearButton", "showDataBeforeSearch", "showDropDownButton", "showSelectionControls", "spellcheck", "stylingMode", "tabIndex", "text", "useItemTextAsTitle", "validationError", "validationErrors", "validationMessageMode", "validationMessagePosition", "validationStatus", "value", "valueChangeEvent", "valueExpr", "visible", "width", "wrapItemText"], outputs: ["onChange", "onClosed", "onContentReady", "onCopy", "onCustomItemCreating", "onCut", "onDisposing", "onEnterKey", "onFocusIn", "onFocusOut", "onInitialized", "onInput", "onItemClick", "onKeyDown", "onKeyUp", "onOpened", "onOptionChanged", "onPaste", "onSelectionChanged", "onValueChanged", "acceptCustomValueChange", "accessKeyChange", "activeStateEnabledChange", "buttonsChange", "customItemCreateEventChange", "dataSourceChange", "deferRenderingChange", "disabledChange", "displayExprChange", "displayValueChange", "dropDownButtonTemplateChange", "dropDownOptionsChange", "elementAttrChange", "fieldTemplateChange", "focusStateEnabledChange", "groupedChange", "groupTemplateChange", "heightChange", "hintChange", "hoverStateEnabledChange", "inputAttrChange", "isDirtyChange", "isValidChange", "itemsChange", "itemTemplateChange", "labelChange", "labelModeChange", "maxLengthChange", "minSearchLengthChange", "nameChange", "noDataTextChange", "openedChange", "openOnFieldClickChange", "placeholderChange", "readOnlyChange", "rtlEnabledChange", "searchEnabledChange", "searchExprChange", "searchModeChange", "searchTimeoutChange", "selectedItemChange", "showClearButtonChange", "showDataBeforeSearchChange", "showDropDownButtonChange", "showSelectionControlsChange", "spellcheckChange", "stylingModeChange", "tabIndexChange", "textChange", "useItemTextAsTitleChange", "validationErrorChange", "validationErrorsChange", "validationMessageModeChange", "validationMessagePositionChange", "validationStatusChange", "valueChange", "valueChangeEventChange", "valueExprChange", "visibleChange", "widthChange", "wrapItemTextChange", "onBlur"] }, { kind: "pipe", type: DXInputErrorMessagePipe, name: "dxInputErrorMessage" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
21
21
|
}
|
|
22
22
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SelectBoxComponent, decorators: [{
|
|
23
23
|
type: Component,
|
|
24
|
-
args: [{ standalone: true, selector: 'aril-select-box[formControl], aril-select-box[formControlName]', imports: [ReactiveFormsModule, DxSelectBoxModule, DXInputErrorMessagePipe], hostDirectives: [ValueAccessorDirective], changeDetection: ChangeDetectionStrategy.OnPush, template: "<dx-select-box\r\n\t[items]=\"items\"\r\n\t[valueExpr]=\"itemKey\"\r\n\t[displayExpr]=\"itemText\"\r\n\t[searchEnabled]=\"true\"\r\n\t[searchExpr]=\"searchExpr\"\r\n\t[tabIndex]=\"tabindex\"\r\n\t[grouped]=\"grouped\"\r\n\t[placeholder]=\"placeholder\"\r\n\t[showClearButton]=\"true\"\r\n\t[isValid]=\"
|
|
24
|
+
args: [{ standalone: true, selector: 'aril-select-box[formControl], aril-select-box[formControlName]', imports: [ReactiveFormsModule, DxSelectBoxModule, DXInputErrorMessagePipe], providers: [InputErrorMessagePipe], hostDirectives: [ValueAccessorDirective], changeDetection: ChangeDetectionStrategy.OnPush, template: "<dx-select-box\r\n\t[items]=\"items\"\r\n\t[valueExpr]=\"itemKey\"\r\n\t[displayExpr]=\"itemText\"\r\n\t[searchEnabled]=\"true\"\r\n\t[searchExpr]=\"searchExpr\"\r\n\t[tabIndex]=\"tabindex\"\r\n\t[grouped]=\"grouped\"\r\n\t[placeholder]=\"placeholder\"\r\n\t[showClearButton]=\"true\"\r\n\t[isValid]=\"ngControl?.control?.valid || ngControl?.control?.pristine || false\"\r\n\t[validationError]=\"\r\n\t\tngControl?.control?.errors | dxInputErrorMessage: ngControl?.control\r\n\t\"\r\n\tvalidationMessagePosition=\"top\"\r\n\t[formControl]=\"ngControl.control\"\r\n\t(ngModelChange)=\"ngControl.viewToModelUpdate($event)\">\r\n</dx-select-box>\r\n" }]
|
|
25
25
|
}], propDecorators: { itemKey: [{
|
|
26
26
|
type: Input
|
|
27
27
|
}], itemText: [{
|
|
@@ -37,9 +37,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
37
37
|
type: Input
|
|
38
38
|
}], searchExpr: [{
|
|
39
39
|
type: Input
|
|
40
|
-
}], formCtrl: [{
|
|
41
|
-
type: Input,
|
|
42
|
-
args: [{ required: true }]
|
|
43
40
|
}] } });
|
|
44
41
|
|
|
45
42
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aril-ui-selectBox.mjs","sources":["../../projects/aril/ui/selectBox/src/select-box.component.ts","../../projects/aril/ui/selectBox/src/select-box.component.html","../../projects/aril/ui/selectBox/aril-ui-selectBox.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, Input } from '@angular/core';\r\nimport {
|
|
1
|
+
{"version":3,"file":"aril-ui-selectBox.mjs","sources":["../../projects/aril/ui/selectBox/src/select-box.component.ts","../../projects/aril/ui/selectBox/src/select-box.component.html","../../projects/aril/ui/selectBox/aril-ui-selectBox.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, Input } from '@angular/core';\r\nimport { ReactiveFormsModule } from '@angular/forms';\r\nimport { DxSelectBoxModule } from \"devextreme-angular/ui/select-box\";\r\nimport { Interfaces } from \"aril/util/lib\";\r\nimport { BaseInputComponent, ValueAccessorDirective, DXInputErrorMessagePipe, InputErrorMessagePipe } from \"aril/ui/lib\";\r\n\r\n/* TODO : \r\n 1. InputSignal\r\n*/\r\n\r\ntype SelectBoxItem = Interfaces.MapStringString | Interfaces.MapStringNumber | Interfaces.MapNumberString | Interfaces.MapNumberNumber;\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-select-box[formControl], aril-select-box[formControlName]',\r\n templateUrl: './select-box.component.html',\r\n imports: [ReactiveFormsModule, DxSelectBoxModule, DXInputErrorMessagePipe],\r\n providers: [InputErrorMessagePipe],\r\n hostDirectives: [ValueAccessorDirective],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class SelectBoxComponent extends BaseInputComponent {\r\n @Input() itemKey = \"key\";\r\n @Input() itemText = \"text\";\r\n @Input() tabindex!: number;\r\n @Input({ required: true }) items: Array<SelectBoxItem> = [];\r\n\r\n /** * @description when grouped = true, option item structure { key:string, items:[] } */\r\n @Input() grouped = false;\r\n @Input() placeholder!: string;\r\n @Input() searchExpr!: Array<string>;\r\n}\r\n","<dx-select-box\r\n\t[items]=\"items\"\r\n\t[valueExpr]=\"itemKey\"\r\n\t[displayExpr]=\"itemText\"\r\n\t[searchEnabled]=\"true\"\r\n\t[searchExpr]=\"searchExpr\"\r\n\t[tabIndex]=\"tabindex\"\r\n\t[grouped]=\"grouped\"\r\n\t[placeholder]=\"placeholder\"\r\n\t[showClearButton]=\"true\"\r\n\t[isValid]=\"ngControl?.control?.valid || ngControl?.control?.pristine || false\"\r\n\t[validationError]=\"\r\n\t\tngControl?.control?.errors | dxInputErrorMessage: ngControl?.control\r\n\t\"\r\n\tvalidationMessagePosition=\"top\"\r\n\t[formControl]=\"ngControl.control\"\r\n\t(ngModelChange)=\"ngControl.viewToModelUpdate($event)\">\r\n</dx-select-box>\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
@@ -202,6 +202,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
202
202
|
}] } });
|
|
203
203
|
|
|
204
204
|
// it can be use ngModule
|
|
205
|
+
// import { NgModule } from '@angular/core';
|
|
206
|
+
// import { FormsModule } from '@angular/forms';
|
|
207
|
+
// import { NgFor, NgForOf, NgTemplateOutlet } from '@angular/common';
|
|
208
|
+
// import { TableModule } from 'primeng/table';
|
|
209
|
+
// import { ButtonComponent } from "aril/ui/button";
|
|
210
|
+
// import { TextComponent } from "aril/ui/text";
|
|
211
|
+
// import { TableComponent } from './src/table.component';
|
|
212
|
+
// import { TableColumnComponent } from './src/table-column.component';
|
|
213
|
+
// const components = [TableComponent, TableColumnComponent];
|
|
214
|
+
// @NgModule({
|
|
215
|
+
// imports: [TableModule, ButtonComponent, TextComponent, FormsModule, NgFor, NgForOf, NgTemplateOutlet],
|
|
216
|
+
// exports: [components],
|
|
217
|
+
// declarations: [components]
|
|
218
|
+
// })
|
|
219
|
+
// export class ARiLTableModule { }
|
|
205
220
|
|
|
206
221
|
/**
|
|
207
222
|
* Generated bundle index. Do not edit.
|