aril 0.0.2 → 0.0.3
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/README.md +20 -7
- package/esm2022/http/index.mjs +5 -1
- package/esm2022/http/lib/enums.mjs +1 -2
- package/esm2022/http/lib/interfaces.mjs +3 -1
- package/esm2022/http/src/httpClient.mjs +2 -1
- package/esm2022/http/src/serviceBase.mjs +10 -10
- package/esm2022/ui/badge/aril-ui-badge.mjs +5 -0
- package/esm2022/ui/badge/index.mjs +2 -0
- package/esm2022/ui/badge/src/badge.component.mjs +25 -0
- package/esm2022/ui/button/index.mjs +2 -1
- package/esm2022/ui/button/src/button.component.mjs +45 -7
- package/esm2022/ui/button/src/split-button.component.mjs +17 -0
- package/esm2022/ui/calendar/src/calendar.component.mjs +80 -8
- package/esm2022/ui/checkbox/index.mjs +2 -2
- package/esm2022/ui/checkbox/src/check-box.component.mjs +26 -0
- package/esm2022/ui/confirmPopup/aril-ui-confirmPopup.mjs +5 -0
- package/esm2022/ui/confirmPopup/index.mjs +2 -0
- package/esm2022/ui/confirmPopup/src/confirm-popup.component.mjs +40 -0
- package/esm2022/ui/dialog/aril-ui-dialog.mjs +5 -0
- package/esm2022/ui/dialog/index.mjs +2 -0
- package/esm2022/ui/dialog/src/dialog.component.mjs +56 -0
- package/esm2022/ui/dxField/aril-ui-dxField.mjs +5 -0
- package/esm2022/ui/dxField/index.mjs +2 -0
- package/esm2022/ui/dxField/src/dx-field.component.mjs +27 -0
- package/esm2022/ui/field/aril-ui-field.mjs +5 -0
- package/esm2022/ui/field/index.mjs +2 -0
- package/esm2022/ui/field/src/field.component.mjs +48 -0
- package/esm2022/ui/fileUpload/aril-ui-fileUpload.mjs +5 -0
- package/esm2022/ui/fileUpload/index.mjs +2 -0
- package/esm2022/ui/fileUpload/src/file-upload.component.mjs +85 -0
- package/esm2022/ui/form/aril-ui-form.mjs +5 -0
- package/esm2022/ui/form/index.mjs +3 -0
- package/esm2022/ui/form/src/form-submit-button.component.mjs +41 -0
- package/esm2022/ui/form/src/form.component.mjs +28 -0
- package/esm2022/ui/lib/index.mjs +13 -3
- package/esm2022/ui/lib/src/form/form-error-message.component.mjs +33 -0
- package/esm2022/ui/lib/src/form/form-error-message.directive.mjs +35 -0
- package/esm2022/ui/lib/src/grid/flex-grid.directive.mjs +21 -0
- package/esm2022/ui/lib/src/input/baseInput.mjs +24 -0
- package/esm2022/ui/lib/src/input/common-input-validators.service.mjs +3 -3
- package/esm2022/ui/lib/src/input/dx-input-error-message.pipe.mjs +22 -0
- package/esm2022/ui/lib/src/input/input-disabled.directive.mjs +3 -3
- package/esm2022/ui/lib/src/input/input-error-message.pipe.mjs +41 -0
- package/esm2022/ui/lib/src/input/input-transforms.mjs +8 -0
- package/esm2022/ui/lib/src/input/value-accessor.directive.mjs +32 -0
- package/esm2022/ui/mask/aril-ui-mask.mjs +5 -0
- package/esm2022/ui/mask/index.mjs +2 -0
- package/esm2022/ui/mask/src/mask.component.mjs +44 -0
- package/esm2022/ui/number/aril-ui-number.mjs +5 -0
- package/esm2022/ui/number/index.mjs +2 -0
- package/esm2022/ui/number/src/number.component.mjs +58 -0
- package/esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs +5 -0
- package/esm2022/ui/overlayPanel/index.mjs +2 -0
- package/esm2022/ui/overlayPanel/src/overlay-panel.component.mjs +37 -0
- package/esm2022/ui/panel/aril-ui-panel.mjs +5 -0
- package/esm2022/ui/panel/index.mjs +2 -0
- package/esm2022/ui/panel/src/panel.component.mjs +32 -0
- package/esm2022/ui/password/aril-ui-password.mjs +5 -0
- package/esm2022/ui/password/index.mjs +2 -0
- package/esm2022/ui/password/src/password.component.mjs +32 -0
- package/esm2022/ui/radioButton/aril-ui-radioButton.mjs +5 -0
- package/esm2022/ui/radioButton/index.mjs +2 -0
- package/esm2022/ui/radioButton/src/radio-button.component.mjs +35 -0
- package/esm2022/ui/selectBox/aril-ui-selectBox.mjs +5 -0
- package/esm2022/ui/selectBox/index.mjs +2 -0
- package/esm2022/ui/selectBox/src/select-box.component.mjs +41 -0
- package/esm2022/ui/switch/aril-ui-switch.mjs +5 -0
- package/esm2022/ui/switch/index.mjs +2 -0
- package/esm2022/ui/switch/src/switch.component.mjs +19 -0
- package/esm2022/ui/tagBox/aril-ui-tagBox.mjs +5 -0
- package/esm2022/ui/tagBox/index.mjs +2 -0
- package/esm2022/ui/tagBox/src/tag-box.component.mjs +58 -0
- package/esm2022/ui/text/aril-ui-text.mjs +5 -0
- package/esm2022/ui/text/index.mjs +2 -0
- package/esm2022/ui/text/src/text.component.mjs +37 -0
- package/esm2022/ui/textArea/aril-ui-textArea.mjs +5 -0
- package/esm2022/ui/textArea/index.mjs +2 -0
- package/esm2022/ui/textArea/src/text-area.component.mjs +27 -0
- package/esm2022/ui/tree/aril-ui-tree.mjs +5 -0
- package/esm2022/ui/tree/index.mjs +2 -0
- package/esm2022/ui/tree/src/tree.component.mjs +67 -0
- package/esm2022/ui/treeTable/aril-ui-treeTable.mjs +5 -0
- package/esm2022/ui/treeTable/index.mjs +2 -0
- package/esm2022/ui/treeTable/src/tree-table.component.mjs +52 -0
- package/esm2022/util/init-event/src/init-event.directive.mjs +8 -8
- package/esm2022/util/lib/src/interfaces.mjs +3 -1
- package/esm2022/util/lib/src/types.mjs +4 -1
- package/esm2022/util/pub-sub/src/pub-sub.service.mjs +5 -4
- package/fesm2022/aril-http.mjs +49 -45
- package/fesm2022/aril-http.mjs.map +1 -1
- package/fesm2022/aril-ui-badge.mjs +32 -0
- package/fesm2022/aril-ui-badge.mjs.map +1 -0
- package/fesm2022/aril-ui-button.mjs +59 -7
- package/fesm2022/aril-ui-button.mjs.map +1 -1
- package/fesm2022/aril-ui-calendar.mjs +78 -7
- package/fesm2022/aril-ui-calendar.mjs.map +1 -1
- package/fesm2022/aril-ui-checkbox.mjs +22 -7
- package/fesm2022/aril-ui-checkbox.mjs.map +1 -1
- package/fesm2022/aril-ui-confirmPopup.mjs +47 -0
- package/fesm2022/aril-ui-confirmPopup.mjs.map +1 -0
- package/fesm2022/aril-ui-dialog.mjs +63 -0
- package/fesm2022/aril-ui-dialog.mjs.map +1 -0
- package/fesm2022/aril-ui-dxField.mjs +34 -0
- package/fesm2022/aril-ui-dxField.mjs.map +1 -0
- package/fesm2022/aril-ui-field.mjs +55 -0
- package/fesm2022/aril-ui-field.mjs.map +1 -0
- package/fesm2022/aril-ui-fileUpload.mjs +92 -0
- package/fesm2022/aril-ui-fileUpload.mjs.map +1 -0
- package/fesm2022/aril-ui-form.mjs +74 -0
- package/fesm2022/aril-ui-form.mjs.map +1 -0
- package/fesm2022/aril-ui-lib.mjs +252 -51
- package/fesm2022/aril-ui-lib.mjs.map +1 -1
- package/fesm2022/aril-ui-mask.mjs +51 -0
- package/fesm2022/aril-ui-mask.mjs.map +1 -0
- package/fesm2022/aril-ui-number.mjs +65 -0
- package/fesm2022/aril-ui-number.mjs.map +1 -0
- package/fesm2022/aril-ui-overlayPanel.mjs +44 -0
- package/fesm2022/aril-ui-overlayPanel.mjs.map +1 -0
- package/fesm2022/aril-ui-panel.mjs +39 -0
- package/fesm2022/aril-ui-panel.mjs.map +1 -0
- package/fesm2022/aril-ui-password.mjs +39 -0
- package/fesm2022/aril-ui-password.mjs.map +1 -0
- package/fesm2022/aril-ui-radioButton.mjs +42 -0
- package/fesm2022/aril-ui-radioButton.mjs.map +1 -0
- package/fesm2022/aril-ui-selectBox.mjs +48 -0
- package/fesm2022/aril-ui-selectBox.mjs.map +1 -0
- package/fesm2022/aril-ui-switch.mjs +26 -0
- package/fesm2022/aril-ui-switch.mjs.map +1 -0
- package/fesm2022/aril-ui-tagBox.mjs +65 -0
- package/fesm2022/aril-ui-tagBox.mjs.map +1 -0
- package/fesm2022/aril-ui-text.mjs +44 -0
- package/fesm2022/aril-ui-text.mjs.map +1 -0
- package/fesm2022/aril-ui-textArea.mjs +34 -0
- package/fesm2022/aril-ui-textArea.mjs.map +1 -0
- package/fesm2022/aril-ui-tree.mjs +74 -0
- package/fesm2022/aril-ui-tree.mjs.map +1 -0
- package/fesm2022/aril-ui-treeTable.mjs +59 -0
- package/fesm2022/aril-ui-treeTable.mjs.map +1 -0
- package/fesm2022/aril-util-init-event.mjs +7 -7
- package/fesm2022/aril-util-init-event.mjs.map +1 -1
- package/fesm2022/aril-util-lib.mjs +7 -0
- package/fesm2022/aril-util-lib.mjs.map +1 -1
- package/fesm2022/aril-util-pub-sub.mjs +4 -3
- package/fesm2022/aril-util-pub-sub.mjs.map +1 -1
- package/http/index.d.ts +2 -0
- package/http/lib/enums.d.ts +2 -2
- package/package.json +138 -12
- package/styles/ui/ui.styles.css +8 -0
- package/ui/badge/index.d.ts +1 -0
- package/ui/badge/src/badge.component.d.ts +11 -0
- package/ui/button/index.d.ts +1 -0
- package/ui/button/src/button.component.d.ts +21 -2
- package/ui/button/src/split-button.component.d.ts +8 -0
- package/ui/calendar/src/calendar.component.d.ts +26 -2
- package/ui/checkbox/index.d.ts +1 -1
- package/ui/checkbox/src/check-box.component.d.ts +8 -0
- package/ui/confirmPopup/index.d.ts +1 -0
- package/ui/confirmPopup/src/confirm-popup.component.d.ts +15 -0
- package/ui/dialog/index.d.ts +1 -0
- package/ui/dialog/src/dialog.component.d.ts +20 -0
- package/ui/dxField/index.d.ts +1 -0
- package/ui/dxField/src/dx-field.component.d.ts +11 -0
- package/ui/field/index.d.ts +1 -0
- package/ui/field/src/field.component.d.ts +24 -0
- package/ui/fileUpload/index.d.ts +1 -0
- package/ui/fileUpload/src/file-upload.component.d.ts +44 -0
- package/ui/form/index.d.ts +2 -0
- package/ui/form/src/form-submit-button.component.d.ts +14 -0
- package/ui/form/src/form.component.d.ts +8 -0
- package/ui/lib/index.d.ts +9 -2
- package/ui/lib/src/form/form-error-message.component.d.ts +9 -0
- package/ui/lib/src/form/form-error-message.directive.d.ts +14 -0
- package/ui/lib/src/grid/flex-grid.directive.d.ts +6 -0
- package/ui/lib/src/input/baseInput.d.ts +7 -0
- package/ui/lib/src/input/dx-input-error-message.pipe.d.ts +11 -0
- package/ui/lib/src/input/input-error-message.pipe.d.ts +7 -0
- package/ui/lib/src/input/input-transforms.d.ts +5 -0
- package/ui/lib/src/input/value-accessor.directive.d.ts +9 -0
- package/ui/mask/index.d.ts +1 -0
- package/ui/mask/src/mask.component.d.ts +21 -0
- package/ui/number/index.d.ts +1 -0
- package/ui/number/src/number.component.d.ts +23 -0
- package/ui/overlayPanel/index.d.ts +1 -0
- package/ui/overlayPanel/src/overlay-panel.component.d.ts +15 -0
- package/ui/panel/index.d.ts +1 -0
- package/ui/panel/src/panel.component.d.ts +12 -0
- package/ui/password/index.d.ts +1 -0
- package/ui/password/src/password.component.d.ts +10 -0
- package/ui/radioButton/index.d.ts +1 -0
- package/ui/radioButton/src/radio-button.component.d.ts +17 -0
- package/ui/selectBox/index.d.ts +1 -0
- package/ui/selectBox/src/select-box.component.d.ts +18 -0
- package/ui/switch/index.d.ts +1 -0
- package/ui/switch/src/switch.component.d.ts +7 -0
- package/ui/tagBox/index.d.ts +1 -0
- package/ui/tagBox/src/tag-box.component.d.ts +14 -0
- package/ui/text/index.d.ts +1 -0
- package/ui/text/src/text.component.d.ts +15 -0
- package/ui/textArea/index.d.ts +1 -0
- package/ui/textArea/src/text-area.component.d.ts +11 -0
- package/ui/tree/index.d.ts +1 -0
- package/ui/tree/src/tree.component.d.ts +29 -0
- package/ui/treeTable/index.d.ts +1 -0
- package/ui/treeTable/src/tree-table.component.d.ts +23 -0
- package/util/init-event/src/init-event.directive.d.ts +4 -4
- package/esm2022/ui/checkbox/src/checkbox.component.mjs +0 -11
- package/ui/checkbox/src/checkbox.component.d.ts +0 -5
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Types } from 'aril/util/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export type LabelPositions = 'top' | 'left';
|
|
4
|
+
export interface ColumnSizeTypes {
|
|
5
|
+
xl?: Types.NumberRange<1, 13>;
|
|
6
|
+
lg?: Types.NumberRange<1, 13>;
|
|
7
|
+
md?: Types.NumberRange<1, 13>;
|
|
8
|
+
sm?: Types.NumberRange<1, 13>;
|
|
9
|
+
}
|
|
10
|
+
export declare class FieldComponent {
|
|
11
|
+
label: string;
|
|
12
|
+
labelPos: LabelPositions;
|
|
13
|
+
color: string;
|
|
14
|
+
labelWidth: number;
|
|
15
|
+
valueWidth: number;
|
|
16
|
+
markAsRequired: boolean;
|
|
17
|
+
set cols(value: ColumnSizeTypes);
|
|
18
|
+
hostClass: string;
|
|
19
|
+
padding: string;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldComponent, "aril-field", never, { "label": { "alias": "label"; "required": true; }; "labelPos": { "alias": "labelPos"; "required": false; }; "color": { "alias": "color"; "required": false; }; "labelWidth": { "alias": "labelWidth"; "required": false; }; "valueWidth": { "alias": "valueWidth"; "required": false; }; "markAsRequired": { "alias": "markAsRequired"; "required": false; }; "cols": { "alias": "cols"; "required": true; }; }, {}, never, ["*", "*"], true, never>;
|
|
22
|
+
static ngAcceptInputType_labelWidth: number;
|
|
23
|
+
static ngAcceptInputType_valueWidth: number;
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/file-upload.component';
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { HttpEvent } from '@angular/common/http';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { MessageService } from 'primeng/api';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
interface UploadEvent {
|
|
6
|
+
originalEvent: HttpEvent<any>;
|
|
7
|
+
files: File[];
|
|
8
|
+
}
|
|
9
|
+
interface UploadFile {
|
|
10
|
+
name: string;
|
|
11
|
+
size: number;
|
|
12
|
+
type: string;
|
|
13
|
+
objectURL?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare class FileUploadComponent {
|
|
16
|
+
private messageService;
|
|
17
|
+
constructor(messageService: MessageService);
|
|
18
|
+
name: string;
|
|
19
|
+
url: string;
|
|
20
|
+
multiple: boolean;
|
|
21
|
+
accept: string;
|
|
22
|
+
disabled: boolean;
|
|
23
|
+
auto: boolean;
|
|
24
|
+
maxFileSize: number;
|
|
25
|
+
showUploadButton: boolean;
|
|
26
|
+
showCancelButton: boolean;
|
|
27
|
+
cancelLabel: string;
|
|
28
|
+
chooseLabel: string;
|
|
29
|
+
uploadLabel: string;
|
|
30
|
+
invalidFileTypeMessageSummary: string;
|
|
31
|
+
invalidFileTypeMessageDetail: string;
|
|
32
|
+
invalidFileSizeMessageSummary: string;
|
|
33
|
+
invalidFileSizeMessageDetail: string;
|
|
34
|
+
beforeSend: EventEmitter<unknown>;
|
|
35
|
+
upload: EventEmitter<unknown>;
|
|
36
|
+
errors: EventEmitter<unknown>;
|
|
37
|
+
selects: EventEmitter<unknown>;
|
|
38
|
+
clear: EventEmitter<unknown>;
|
|
39
|
+
uploadedFiles: UploadFile[];
|
|
40
|
+
onUpload(event: UploadEvent): void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "aril-file-upload", never, { "name": { "alias": "name"; "required": false; }; "url": { "alias": "url"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "auto": { "alias": "auto"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "showUploadButton": { "alias": "showUploadButton"; "required": false; }; "showCancelButton": { "alias": "showCancelButton"; "required": false; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; }; "chooseLabel": { "alias": "chooseLabel"; "required": false; }; "uploadLabel": { "alias": "uploadLabel"; "required": false; }; "invalidFileTypeMessageSummary": { "alias": "invalidFileTypeMessageSummary"; "required": false; }; "invalidFileTypeMessageDetail": { "alias": "invalidFileTypeMessageDetail"; "required": false; }; "invalidFileSizeMessageSummary": { "alias": "invalidFileSizeMessageSummary"; "required": false; }; "invalidFileSizeMessageDetail": { "alias": "invalidFileSizeMessageDetail"; "required": false; }; }, { "beforeSend": "beforeSend"; "upload": "upload"; "errors": "errors"; "selects": "selects"; "clear": "clear"; }, never, ["*"], true, never>;
|
|
43
|
+
}
|
|
44
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ButtonComponent } from 'aril/ui/button';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FormSubmitButtonComponent extends ButtonComponent {
|
|
6
|
+
formGroup: FormGroup;
|
|
7
|
+
inValidEvent: EventEmitter<never>;
|
|
8
|
+
submit(): void;
|
|
9
|
+
markAsDirty(controls: {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
}): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormSubmitButtonComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormSubmitButtonComponent, "aril-form-submit-button", never, { "formGroup": { "alias": "formGroup"; "required": true; }; }, { "inValidEvent": "inValidEvent"; }, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FormGroup } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
export declare class FormComponent {
|
|
5
|
+
formGroup: FormGroup;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "aril-form", never, { "formGroup": { "alias": "formGroup"; "required": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.FlexGridDirective; inputs: {}; outputs: {}; }, { directive: typeof i1.FormErrorMessageDirective; inputs: { "formErrorMessage": "formGroup"; }; outputs: {}; }]>;
|
|
8
|
+
}
|
package/ui/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
export * from './src/
|
|
2
|
-
export * from './src/input/common-input-validators.service';
|
|
1
|
+
export * from './src/form/form-error-message.directive';
|
|
3
2
|
export * from './src/form/form-validation';
|
|
4
3
|
export * from './src/form/form-field-builder';
|
|
4
|
+
export * from './src/grid/flex-grid.directive';
|
|
5
|
+
export * from './src/input/baseInput';
|
|
6
|
+
export * from './src/input/common-input-validators.service';
|
|
7
|
+
export * from './src/input/dx-input-error-message.pipe';
|
|
8
|
+
export * from './src/input/input-disabled.directive';
|
|
9
|
+
export * from './src/input/input-error-message.pipe';
|
|
10
|
+
export * from './src/input/input-transforms';
|
|
11
|
+
export * from './src/input/value-accessor.directive';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ValidationErrors } from '@angular/forms';
|
|
2
|
+
import { Message } from 'primeng/api';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FormErrorMessagesComponent {
|
|
5
|
+
_pMessages: Message[];
|
|
6
|
+
set messages(messages: ValidationErrors | null);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormErrorMessagesComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormErrorMessagesComponent, "ng-component", never, { "messages": { "alias": "messages"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ComponentRef, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { FormErrorMessagesComponent } from './form-error-message.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FormErrorMessageDirective implements OnInit {
|
|
6
|
+
private viewContainerRef;
|
|
7
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
8
|
+
formErrorMessage: FormGroup;
|
|
9
|
+
errorKeys: string[];
|
|
10
|
+
componentRef: ComponentRef<FormErrorMessagesComponent>;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormErrorMessageDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FormErrorMessageDirective, "[formErrorMessage]", never, { "formErrorMessage": { "alias": "formErrorMessage"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FlexGridDirective {
|
|
3
|
+
hostClass: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlexGridDirective, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FlexGridDirective, "[flexGrid]", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FormControlDirective, FormControlName, NgModel } from "@angular/forms";
|
|
2
|
+
import { TooltipOptions } from "primeng/api";
|
|
3
|
+
export declare abstract class BaseInputComponent {
|
|
4
|
+
ngControl: NgModel | FormControlName | FormControlDirective;
|
|
5
|
+
tooltipOptions: TooltipOptions;
|
|
6
|
+
}
|
|
7
|
+
export declare function injectNgControl(): NgModel | FormControlName | FormControlDirective;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import { InputErrorMessagePipe } from "./input-error-message.pipe";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DXInputErrorMessagePipe implements PipeTransform {
|
|
5
|
+
errorMsgPipe: InputErrorMessagePipe;
|
|
6
|
+
transform(value: any, ...args: any[]): {
|
|
7
|
+
message: string;
|
|
8
|
+
};
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DXInputErrorMessagePipe, never>;
|
|
10
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<DXInputErrorMessagePipe, "dxInputErrorMessage", true>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class InputErrorMessagePipe implements PipeTransform {
|
|
4
|
+
transform(value: any, ...args: any[]): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputErrorMessagePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<InputErrorMessagePipe, "inputErrorMessage", true>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { PrimeIcons } from 'primeng/api';
|
|
2
|
+
export type PrimeIcon = Exclude<keyof typeof PrimeIcons, "prototype">;
|
|
3
|
+
export declare function iconTransform(icon: PrimeIcon): string;
|
|
4
|
+
export type IconPosTypes = 'right' | 'left';
|
|
5
|
+
export declare function iconPosTransform(pos: IconPosTypes): string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ValueAccessorDirective implements ControlValueAccessor {
|
|
4
|
+
writeValue(obj: any): void;
|
|
5
|
+
registerOnChange(fn: any): void;
|
|
6
|
+
registerOnTouched(fn: any): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValueAccessorDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ValueAccessorDirective, never, never, {}, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/mask.component';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
/**
|
|
5
|
+
* a - alphabetic characters
|
|
6
|
+
* 9 - numeric characters
|
|
7
|
+
* * - alphanumeric characters
|
|
8
|
+
* ? - optional characters
|
|
9
|
+
* formatting characters -> (), -
|
|
10
|
+
*/
|
|
11
|
+
export declare class InputMaskComponent extends BaseInputComponent {
|
|
12
|
+
mask: string;
|
|
13
|
+
slotChar: string;
|
|
14
|
+
style?: object;
|
|
15
|
+
placeholder?: string;
|
|
16
|
+
maxlength: number;
|
|
17
|
+
usageInGrid: boolean;
|
|
18
|
+
showTooltip: boolean;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputMaskComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputMaskComponent, "aril-mask[ngModel], aril-mask[formControl], aril-mask[formControlName]", never, { "mask": { "alias": "mask"; "required": true; }; "slotChar": { "alias": "slotChar"; "required": false; }; "style": { "alias": "style"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "usageInGrid": { "alias": "usageInGrid"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/number.component';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
export type ButtonLayouts = "stacked" | "vertical";
|
|
5
|
+
export declare class InputNumberComponent extends BaseInputComponent {
|
|
6
|
+
min?: number;
|
|
7
|
+
max?: number;
|
|
8
|
+
style?: object;
|
|
9
|
+
showButtons: boolean;
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
customClass?: string;
|
|
12
|
+
prefix?: string;
|
|
13
|
+
suffix?: string;
|
|
14
|
+
maxlength: number;
|
|
15
|
+
showClear: boolean;
|
|
16
|
+
useGrouping: boolean;
|
|
17
|
+
maxDigits?: number;
|
|
18
|
+
minDigits?: number;
|
|
19
|
+
set buttonLayout(value: ButtonLayouts);
|
|
20
|
+
_buttonLayout: ButtonLayouts;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputNumberComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent, "aril-number[ngModel], aril-number[formControl], aril-number[formControlName]", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "style": { "alias": "style"; "required": false; }; "showButtons": { "alias": "showButtons"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "useGrouping": { "alias": "useGrouping"; "required": false; }; "maxDigits": { "alias": "maxDigits"; "required": false; }; "minDigits": { "alias": "minDigits"; "required": false; }; "buttonLayout": { "alias": "buttonLayout"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
23
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/overlay-panel.component';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { OverlayPanel } from "primeng/overlaypanel";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class OverlayPanelComponent {
|
|
5
|
+
showTransitionOptions: string;
|
|
6
|
+
hideTransitionOptions: string;
|
|
7
|
+
dismissable: boolean;
|
|
8
|
+
styleClass: string;
|
|
9
|
+
label: string;
|
|
10
|
+
overlayPanel: OverlayPanel;
|
|
11
|
+
toggleButton: ElementRef;
|
|
12
|
+
togglePanel(event: MouseEvent): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayPanelComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverlayPanelComponent, "aril-overlay-panel", never, { "showTransitionOptions": { "alias": "showTransitionOptions"; "required": false; }; "hideTransitionOptions": { "alias": "hideTransitionOptions"; "required": false; }; "dismissable": { "alias": "dismissable"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/panel.component';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PanelComponent {
|
|
4
|
+
panelRef: ElementRef;
|
|
5
|
+
header: string;
|
|
6
|
+
toggleable: boolean;
|
|
7
|
+
canFullScreen: boolean;
|
|
8
|
+
isFullScreen: boolean;
|
|
9
|
+
toggleFullScreen(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PanelComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "aril-panel", never, { "header": { "alias": "header"; "required": false; }; "toggleable": { "alias": "toggleable"; "required": false; }; "canFullScreen": { "alias": "canFullScreen"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/password.component';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
export declare class InputPasswordComponent extends BaseInputComponent {
|
|
5
|
+
feedback: boolean;
|
|
6
|
+
passwordCriterias?: Array<string>;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputPasswordComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputPasswordComponent, "aril-password[ngModel], aril-password[formControl], aril-password[formControlName]", never, { "feedback": { "alias": "feedback"; "required": false; }; "passwordCriterias": { "alias": "passwordCriterias"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/radio-button.component';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
type Aligns = 'horizontal' | 'vertical';
|
|
5
|
+
interface RadioButtonOption {
|
|
6
|
+
key: any;
|
|
7
|
+
label: string;
|
|
8
|
+
}
|
|
9
|
+
export declare class RadioButtonComponent extends BaseInputComponent {
|
|
10
|
+
options: RadioButtonOption[];
|
|
11
|
+
set align(value: Aligns);
|
|
12
|
+
_pAlign: string;
|
|
13
|
+
_cAlign: string;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "aril-radio-button[ngModel], aril-radio-button[formControl], aril-radio-button[formControlName]", never, { "options": { "alias": "options"; "required": true; }; "align": { "alias": "align"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/select-box.component';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
|
+
import { Interfaces } from "aril/util/lib";
|
|
3
|
+
import { BaseInputComponent } from "aril/ui/lib";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "aril/ui/lib";
|
|
6
|
+
export type SelectBoxItem = Interfaces.MapStringString | Interfaces.MapStringNumber | Interfaces.MapNumberString | Interfaces.MapNumberNumber;
|
|
7
|
+
export declare class SelectBoxComponent extends BaseInputComponent {
|
|
8
|
+
itemKey: string;
|
|
9
|
+
itemText: string;
|
|
10
|
+
items: Array<SelectBoxItem>;
|
|
11
|
+
/** * @description when grouped = true, option item structure { key:string, items:[] } */
|
|
12
|
+
grouped: boolean;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
searchExpr: Array<string>;
|
|
15
|
+
formCtrl: FormControl;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectBoxComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectBoxComponent, "aril-select-box[formControl], aril-select-box[formControlName]", never, { "itemKey": { "alias": "itemKey"; "required": false; }; "itemText": { "alias": "itemText"; "required": false; }; "items": { "alias": "items"; "required": true; }; "grouped": { "alias": "grouped"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "searchExpr": { "alias": "searchExpr"; "required": false; }; "formCtrl": { "alias": "formCtrl"; "required": true; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/switch.component';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
export declare class InputSwitchComponent extends BaseInputComponent {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSwitchComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputSwitchComponent, "aril-switch[ngModel], aril-switch[formControl], aril-switch[formControlName]", never, {}, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/tag-box.component';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "aril/ui/lib";
|
|
5
|
+
export declare class TagBoxComponent extends BaseInputComponent {
|
|
6
|
+
placeholder: string;
|
|
7
|
+
maxDisplayedTags: number;
|
|
8
|
+
acceptCustomValue: boolean;
|
|
9
|
+
items: Array<string | number>;
|
|
10
|
+
formCtrl: FormControl;
|
|
11
|
+
onCustomItemCreating(e: any): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagBoxComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagBoxComponent, "aril-tag-box", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "maxDisplayedTags": { "alias": "maxDisplayedTags"; "required": false; }; "acceptCustomValue": { "alias": "acceptCustomValue"; "required": false; }; "items": { "alias": "items"; "required": true; }; "formCtrl": { "alias": "formCtrl"; "required": true; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/text.component';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { BaseInputComponent, IconPosTypes, PrimeIcon } from 'aril/ui/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
export declare class TextComponent extends BaseInputComponent {
|
|
5
|
+
style?: object;
|
|
6
|
+
styleClass?: string;
|
|
7
|
+
customClass?: string;
|
|
8
|
+
placeholder?: string | undefined;
|
|
9
|
+
icon?: PrimeIcon;
|
|
10
|
+
iconPosClass?: IconPosTypes;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextComponent, "aril-text[ngModel], aril-text[formControl], aril-text[formControlName]", never, { "style": { "alias": "style"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosClass": { "alias": "iconPos"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
13
|
+
static ngAcceptInputType_icon: i1.PrimeIcon;
|
|
14
|
+
static ngAcceptInputType_iconPosClass: i1.IconPosTypes;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/text-area.component';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "aril/ui/lib";
|
|
4
|
+
export declare class TextAreaComponent extends BaseInputComponent {
|
|
5
|
+
rows?: number;
|
|
6
|
+
cols?: number;
|
|
7
|
+
style?: object;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "aril-text-area[ngModel], aril-text-area[formControl], aril-text-area[formControlName]", never, { "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "style": { "alias": "style"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/tree.component';
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { TreeNode } from 'primeng/api';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export type SelectionModes = "multiple" | "checkbox" | "single";
|
|
5
|
+
export declare class TreeComponent {
|
|
6
|
+
value: TreeNode[];
|
|
7
|
+
selectionMode: SelectionModes;
|
|
8
|
+
selection: TreeNode | TreeNode[];
|
|
9
|
+
style: object;
|
|
10
|
+
styleClass: string;
|
|
11
|
+
contextMenuSelection: TreeNode;
|
|
12
|
+
contextMenu: any;
|
|
13
|
+
metaKeySelection: boolean;
|
|
14
|
+
propagateSelectionUp: boolean;
|
|
15
|
+
propagateSelectionDown: boolean;
|
|
16
|
+
loading: boolean;
|
|
17
|
+
loadingIcon: string;
|
|
18
|
+
filter: boolean;
|
|
19
|
+
filterMode: string;
|
|
20
|
+
filterBy: string;
|
|
21
|
+
filterPlaceholder: string;
|
|
22
|
+
filterLocale: string;
|
|
23
|
+
nodeSelect: EventEmitter<unknown>;
|
|
24
|
+
nodeUnselect: EventEmitter<unknown>;
|
|
25
|
+
nodeExpand: EventEmitter<unknown>;
|
|
26
|
+
nodeCollapse: EventEmitter<unknown>;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeComponent, "aril-tree", never, { "value": { "alias": "value"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "style": { "alias": "style"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "contextMenuSelection": { "alias": "contextMenuSelection"; "required": false; }; "contextMenu": { "alias": "contextMenu"; "required": false; }; "metaKeySelection": { "alias": "metaKeySelection"; "required": false; }; "propagateSelectionUp": { "alias": "propagateSelectionUp"; "required": false; }; "propagateSelectionDown": { "alias": "propagateSelectionDown"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingIcon": { "alias": "loadingIcon"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterMode": { "alias": "filterMode"; "required": false; }; "filterBy": { "alias": "filterBy"; "required": false; }; "filterPlaceholder": { "alias": "filterPlaceholder"; "required": false; }; "filterLocale": { "alias": "filterLocale"; "required": false; }; }, { "nodeSelect": "nodeSelect"; "nodeUnselect": "nodeUnselect"; "nodeExpand": "nodeExpand"; "nodeCollapse": "nodeCollapse"; }, never, never, true, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/tree-table.component';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { TreeNode, TreeTableNode } from 'primeng/api';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export type SortMode = 'single' | 'multiple';
|
|
5
|
+
export type FilterMode = 'lenient' | 'strict';
|
|
6
|
+
export declare class TreeTableComponent {
|
|
7
|
+
value: TreeNode[];
|
|
8
|
+
columns: Array<object>;
|
|
9
|
+
rows: number;
|
|
10
|
+
paginator: boolean;
|
|
11
|
+
rowsPerPageOptions: number[];
|
|
12
|
+
scrollable: boolean;
|
|
13
|
+
scrollHeight: string;
|
|
14
|
+
sortMode: SortMode;
|
|
15
|
+
filterMode: FilterMode;
|
|
16
|
+
loading: boolean;
|
|
17
|
+
exportEvent: EventEmitter<any>;
|
|
18
|
+
selectedNodes: TreeTableNode<any> | TreeTableNode<any>[] | null;
|
|
19
|
+
getFilterTargetValue(event: Event): string;
|
|
20
|
+
exportSelectedRows(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeTableComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeTableComponent, "aril-tree-table", never, { "value": { "alias": "value"; "required": true; }; "columns": { "alias": "columns"; "required": true; }; "rows": { "alias": "rows"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "sortMode": { "alias": "sortMode"; "required": false; }; "filterMode": { "alias": "filterMode"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "exportEvent": "exportEvent"; }, never, [".export-btn"], true, never>;
|
|
23
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class InitEventDirective {
|
|
4
|
-
|
|
3
|
+
export declare class InitEventDirective implements OnInit {
|
|
4
|
+
arilInit: EventEmitter<never>;
|
|
5
5
|
ngOnInit(): void;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<InitEventDirective, never>;
|
|
7
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<InitEventDirective, "[
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<InitEventDirective, "[arilInit]", never, {}, { "arilInit": "arilInit"; }, never, never, true, never>;
|
|
8
8
|
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class CheckboxComponent {
|
|
4
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.1", ngImport: i0, type: CheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.1", type: CheckboxComponent, isStandalone: true, selector: "aril-ui-checkbox", ngImport: i0, template: "<p>checkbox works!</p>\r\n", changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6
|
-
}
|
|
7
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.1", ngImport: i0, type: CheckboxComponent, decorators: [{
|
|
8
|
-
type: Component,
|
|
9
|
-
args: [{ standalone: true, selector: 'aril-ui-checkbox', changeDetection: ChangeDetectionStrategy.OnPush, template: "<p>checkbox works!</p>\r\n" }]
|
|
10
|
-
}] });
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3guY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYXJpbC91aS9jaGVja2JveC9zcmMvY2hlY2tib3guY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYXJpbC91aS9jaGVja2JveC9zcmMvY2hlY2tib3guY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFRbkUsTUFBTSxPQUFPLGlCQUFpQjs4R0FBakIsaUJBQWlCO2tHQUFqQixpQkFBaUIsNEVDUjlCLDRCQUNBOzsyRkRPYSxpQkFBaUI7a0JBTjdCLFNBQVM7aUNBQ0ksSUFBSSxZQUNOLGtCQUFrQixtQkFFWCx1QkFBdUIsQ0FBQyxNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBzZWxlY3RvcjogJ2FyaWwtdWktY2hlY2tib3gnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9jaGVja2JveC5jb21wb25lbnQuaHRtbCcsXHJcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2hcclxufSlcclxuZXhwb3J0IGNsYXNzIENoZWNrYm94Q29tcG9uZW50IHtcclxuXHJcbn1cclxuIiwiPHA+Y2hlY2tib3ggd29ya3MhPC9wPlxyXG4iXX0=
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CheckboxComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "aril-ui-checkbox", never, {}, {}, never, never, true, never>;
|
|
5
|
-
}
|