@rlucan/ui 19.0.6 → 20.0.2
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/fesm2022/rlucan-ui.mjs +113 -113
- package/fesm2022/rlucan-ui.mjs.map +1 -1
- package/index.d.ts +905 -5
- package/package.json +10 -9
- package/ui.scss +17 -17
- package/lib/action-button/action-button.component.d.ts +0 -28
- package/lib/action-icon/action-icon.component.d.ts +0 -15
- package/lib/auto-complete/auto-complete.component.d.ts +0 -67
- package/lib/autocomplete/autocomplete.component.d.ts +0 -57
- package/lib/avatar/avatar.component.d.ts +0 -14
- package/lib/button/button.component.d.ts +0 -18
- package/lib/checkbox/checkbox.component.d.ts +0 -15
- package/lib/checkbox-group/checkbox-group.component.d.ts +0 -18
- package/lib/currency/currency.component.d.ts +0 -31
- package/lib/date/date.component.d.ts +0 -24
- package/lib/dialog/dialog.component.d.ts +0 -13
- package/lib/directives/force-visibility/force-visibility.directive.d.ts +0 -22
- package/lib/editor/editor.component.d.ts +0 -24
- package/lib/elements/burger/burger.component.d.ts +0 -9
- package/lib/elements/expander/expander.component.d.ts +0 -10
- package/lib/elements/validation-message/validation-message.component.d.ts +0 -12
- package/lib/file/file.component.d.ts +0 -36
- package/lib/file-uploader/ui-file-uploader.component.d.ts +0 -107
- package/lib/input/input.component.d.ts +0 -42
- package/lib/input-autocomplete/input-autocomplete.component.d.ts +0 -44
- package/lib/layouts/base/ui-base-layout.component.d.ts +0 -8
- package/lib/layouts/base/ui-base.component.d.ts +0 -23
- package/lib/layouts/simple/ui-simple-layout.component.d.ts +0 -8
- package/lib/layouts/simple/ui-simple.component.d.ts +0 -40
- package/lib/radio/radio.component.d.ts +0 -8
- package/lib/radio-group/radio-group.component.d.ts +0 -19
- package/lib/select/select.component.d.ts +0 -37
- package/lib/services/message-box.service.d.ts +0 -58
- package/lib/services/toast.service.d.ts +0 -13
- package/lib/services/ui-file.service.d.ts +0 -37
- package/lib/services/ui-translate.service.d.ts +0 -11
- package/lib/submit-button/submit-button.component.d.ts +0 -21
- package/lib/table/table.component.d.ts +0 -39
- package/lib/text-area/text-area.component.d.ts +0 -18
- package/lib/ui.model.d.ts +0 -2
- package/lib/ui.module.d.ts +0 -60
- package/public-api.d.ts +0 -30
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { ControlContainer } from '@angular/forms';
|
|
3
|
-
import { UploaderOptions, UploadFile, UploadInput, UploadOutput } from 'ngx-uploader';
|
|
4
|
-
import { IUiFileService, IUiFileServiceMessages, UiFileService, IUiFileSize } from '../services/ui-file.service';
|
|
5
|
-
import { Dimensions, ImageCroppedEvent, ImageTransform } from 'ngx-image-cropper';
|
|
6
|
-
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
7
|
-
import { IUiTranslateService } from '../services/ui-translate.service';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export interface UploadOutputEx extends UploadOutput {
|
|
10
|
-
file: UploadFileEx;
|
|
11
|
-
}
|
|
12
|
-
export interface UploadFileEx extends UploadFile {
|
|
13
|
-
imagePreview?: any;
|
|
14
|
-
base64?: any;
|
|
15
|
-
}
|
|
16
|
-
export interface IUiUploaderUserMessage {
|
|
17
|
-
message: IUiFileServiceMessages;
|
|
18
|
-
data: any;
|
|
19
|
-
}
|
|
20
|
-
export declare class UiFileUploaderComponent extends UiSimpleComponent implements OnInit, OnDestroy {
|
|
21
|
-
private fileServiceConfig;
|
|
22
|
-
translateService: IUiTranslateService;
|
|
23
|
-
protected controlContainer: ControlContainer;
|
|
24
|
-
private fileService;
|
|
25
|
-
private uiFileSize;
|
|
26
|
-
_fileSize: string | IUiFileSize;
|
|
27
|
-
set fileSize(fs: string | IUiFileSize);
|
|
28
|
-
maxFiles: number;
|
|
29
|
-
multiple: boolean;
|
|
30
|
-
crop: boolean;
|
|
31
|
-
cropRounded: boolean;
|
|
32
|
-
cropMaxWidth: any;
|
|
33
|
-
customFileMenu: boolean;
|
|
34
|
-
addHint: any;
|
|
35
|
-
newFilePosition: 'first' | 'last';
|
|
36
|
-
templates: {
|
|
37
|
-
menuTemplate?: any;
|
|
38
|
-
addFileTemplate?: any;
|
|
39
|
-
fileTemplate?: any;
|
|
40
|
-
customContentTemplate?: any;
|
|
41
|
-
};
|
|
42
|
-
get menuTemplate(): any;
|
|
43
|
-
get addFileTemplate(): any;
|
|
44
|
-
get customContentTemplate(): any;
|
|
45
|
-
get fileTemplate(): any;
|
|
46
|
-
previewPosition: 'left' | 'bottom' | 'above';
|
|
47
|
-
imageCropped: EventEmitter<any>;
|
|
48
|
-
fileEvent: EventEmitter<IUiUploaderUserMessage>;
|
|
49
|
-
uploadOptions: UploaderOptions;
|
|
50
|
-
uploading: boolean;
|
|
51
|
-
changeFileIndex: any;
|
|
52
|
-
showCropper: boolean;
|
|
53
|
-
menuVisible: any;
|
|
54
|
-
showCropPreview: {};
|
|
55
|
-
cropPreviewTimeouts: {};
|
|
56
|
-
cropSourceImages: {};
|
|
57
|
-
cropperImageLoaded: {};
|
|
58
|
-
imagesDone: {};
|
|
59
|
-
transform: ImageTransform;
|
|
60
|
-
canvasRotation: {};
|
|
61
|
-
files: {
|
|
62
|
-
custom?: any;
|
|
63
|
-
$newFile?: UploadFile;
|
|
64
|
-
}[];
|
|
65
|
-
responseFiles: any;
|
|
66
|
-
refreshAddInput: boolean;
|
|
67
|
-
fileMenuOpened: any;
|
|
68
|
-
patchingValues: boolean;
|
|
69
|
-
inputArray: boolean;
|
|
70
|
-
dragging: boolean;
|
|
71
|
-
uploaderId: number;
|
|
72
|
-
constructor(fileServiceConfig: IUiFileService, translateService: IUiTranslateService, controlContainer: ControlContainer, fileService: UiFileService);
|
|
73
|
-
get uploadInput(): EventEmitter<UploadInput>;
|
|
74
|
-
croppedImages: {};
|
|
75
|
-
get editable(): boolean;
|
|
76
|
-
get ngAddStyle(): {
|
|
77
|
-
width: string;
|
|
78
|
-
height: string;
|
|
79
|
-
};
|
|
80
|
-
get aspectRatio(): number;
|
|
81
|
-
get addFileImgSrc(): (size: IUiFileSize) => string;
|
|
82
|
-
cropDone(f: any): any;
|
|
83
|
-
ngOnDestroy(): void;
|
|
84
|
-
remove(f: any): void;
|
|
85
|
-
patchValues(): void;
|
|
86
|
-
get hasFilesToUpload(): boolean;
|
|
87
|
-
canImagePreview(type: string): boolean;
|
|
88
|
-
onUploadOutput($event: UploadOutput, skipCustomValidation?: boolean): void;
|
|
89
|
-
prepareResponse(doemit?: boolean): void;
|
|
90
|
-
beforeSave(): Promise<unknown>;
|
|
91
|
-
fileChangeEvent(event: any, f: any): void;
|
|
92
|
-
startCropPreview(id: any): void;
|
|
93
|
-
stopCropPreview(id: any): void;
|
|
94
|
-
zoomCroppedImage(dir: any, id: any): void;
|
|
95
|
-
rotateCroppedImage(dir: any, id: any): void;
|
|
96
|
-
onImageCropped(event: ImageCroppedEvent, id: any): void;
|
|
97
|
-
imageLoaded(id: any): void;
|
|
98
|
-
cropperReady(sourceImageDimensions: Dimensions, id: any): void;
|
|
99
|
-
loadImageFailed(): void;
|
|
100
|
-
toggleMenuVisibility(f: any): void;
|
|
101
|
-
menuClick(): void;
|
|
102
|
-
writeValue(obj: any): void;
|
|
103
|
-
cropperDone(id: any): void;
|
|
104
|
-
uploadImgSrc(): string;
|
|
105
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UiFileUploaderComponent, [{ optional: true; }, null, { optional: true; host: true; skipSelf: true; }, null]>;
|
|
106
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UiFileUploaderComponent, "ui-file-uploader", never, { "fileSize": { "alias": "fileSize"; "required": false; }; "maxFiles": { "alias": "maxFiles"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "crop": { "alias": "crop"; "required": false; }; "cropRounded": { "alias": "cropRounded"; "required": false; }; "cropMaxWidth": { "alias": "cropMaxWidth"; "required": false; }; "customFileMenu": { "alias": "customFileMenu"; "required": false; }; "addHint": { "alias": "addHint"; "required": false; }; "newFilePosition": { "alias": "newFilePosition"; "required": false; }; "templates": { "alias": "templates"; "required": false; }; "previewPosition": { "alias": "previewPosition"; "required": false; }; }, { "imageCropped": "imageCropped"; "fileEvent": "fileEvent"; }, never, never, false, never>;
|
|
107
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { AbstractControl, ControlContainer, ValidationErrors } from '@angular/forms';
|
|
3
|
-
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
type PrefixSuffix = {
|
|
6
|
-
icon: string;
|
|
7
|
-
tooltip?: string;
|
|
8
|
-
};
|
|
9
|
-
export declare class InputComponent extends UiSimpleComponent implements OnInit {
|
|
10
|
-
protected controlContainer: ControlContainer;
|
|
11
|
-
prefixIcon: PrefixSuffix;
|
|
12
|
-
suffixIcon: PrefixSuffix;
|
|
13
|
-
type: 'text' | 'number' | 'password';
|
|
14
|
-
clearButton: boolean;
|
|
15
|
-
activeIcons: boolean;
|
|
16
|
-
forceHasPrefix: boolean;
|
|
17
|
-
forceHasSuffix: boolean;
|
|
18
|
-
get textAlignClass(): string;
|
|
19
|
-
textAlign: 'left' | 'center' | 'right';
|
|
20
|
-
input: ElementRef | undefined;
|
|
21
|
-
prefix: ElementRef | undefined;
|
|
22
|
-
suffix: ElementRef | undefined;
|
|
23
|
-
focusChanged: EventEmitter<boolean>;
|
|
24
|
-
keyPressed: EventEmitter<KeyboardEvent>;
|
|
25
|
-
get hasPrefix(): boolean;
|
|
26
|
-
get hasSuffix(): boolean;
|
|
27
|
-
required: boolean;
|
|
28
|
-
hasFocus: boolean;
|
|
29
|
-
value: string;
|
|
30
|
-
get maxLenRequired(): boolean;
|
|
31
|
-
constructor(controlContainer: ControlContainer);
|
|
32
|
-
get showClearButton(): boolean;
|
|
33
|
-
ngOnInit(): void;
|
|
34
|
-
clearValue(): void;
|
|
35
|
-
focus(): void;
|
|
36
|
-
onFocus(focus: boolean): void;
|
|
37
|
-
onKeypressed($event: any): void;
|
|
38
|
-
validate(control: AbstractControl): ValidationErrors | null;
|
|
39
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, [{ optional: true; host: true; skipSelf: true; }]>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "ui-input", never, { "prefixIcon": { "alias": "prefixIcon"; "required": false; }; "suffixIcon": { "alias": "suffixIcon"; "required": false; }; "type": { "alias": "type"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "activeIcons": { "alias": "activeIcons"; "required": false; }; "forceHasPrefix": { "alias": "forceHasPrefix"; "required": false; }; "forceHasSuffix": { "alias": "forceHasSuffix"; "required": false; }; "textAlign": { "alias": "textAlign"; "required": false; }; }, { "focusChanged": "focusChanged"; "keyPressed": "keyPressed"; }, never, ["[slot=prefix]", "[slot=suffix]"], false, never>;
|
|
41
|
-
}
|
|
42
|
-
export {};
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { AbstractControl, ControlContainer, ValidationErrors } from '@angular/forms';
|
|
3
|
-
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
type PrefixSuffix = {
|
|
6
|
-
icon: string;
|
|
7
|
-
tooltip?: string;
|
|
8
|
-
};
|
|
9
|
-
export declare class InputAutocompleteComponent extends UiSimpleComponent implements OnInit {
|
|
10
|
-
protected controlContainer: ControlContainer;
|
|
11
|
-
prefixIcon: PrefixSuffix;
|
|
12
|
-
suffixIcon: PrefixSuffix;
|
|
13
|
-
type: 'text' | 'number' | 'password';
|
|
14
|
-
clearButton: boolean;
|
|
15
|
-
activeIcons: boolean;
|
|
16
|
-
forceHasPrefix: boolean;
|
|
17
|
-
forceHasSuffix: boolean;
|
|
18
|
-
options: any[];
|
|
19
|
-
get textAlignClass(): string;
|
|
20
|
-
textAlign: 'left' | 'center' | 'right';
|
|
21
|
-
input: ElementRef | undefined;
|
|
22
|
-
prefix: ElementRef | undefined;
|
|
23
|
-
suffix: ElementRef | undefined;
|
|
24
|
-
focusChanged: EventEmitter<boolean>;
|
|
25
|
-
keyPressed: EventEmitter<KeyboardEvent>;
|
|
26
|
-
get hasPrefix(): boolean;
|
|
27
|
-
get hasSuffix(): boolean;
|
|
28
|
-
filteredOptions: any[];
|
|
29
|
-
required: boolean;
|
|
30
|
-
hasFocus: boolean;
|
|
31
|
-
value: string;
|
|
32
|
-
get maxLenRequired(): boolean;
|
|
33
|
-
constructor(controlContainer: ControlContainer);
|
|
34
|
-
get showClearButton(): boolean;
|
|
35
|
-
ngOnInit(): void;
|
|
36
|
-
clearValue(): void;
|
|
37
|
-
focus(): void;
|
|
38
|
-
onFocus(focus: boolean): void;
|
|
39
|
-
onKeypressed($event: any): void;
|
|
40
|
-
validate(control: AbstractControl): ValidationErrors | null;
|
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputAutocompleteComponent, [{ optional: true; host: true; skipSelf: true; }]>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputAutocompleteComponent, "ui-input-autocomplete", never, { "prefixIcon": { "alias": "prefixIcon"; "required": false; }; "suffixIcon": { "alias": "suffixIcon"; "required": false; }; "type": { "alias": "type"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "activeIcons": { "alias": "activeIcons"; "required": false; }; "forceHasPrefix": { "alias": "forceHasPrefix"; "required": false; }; "forceHasSuffix": { "alias": "forceHasSuffix"; "required": false; }; "options": { "alias": "options"; "required": false; }; "textAlign": { "alias": "textAlign"; "required": false; }; }, { "focusChanged": "focusChanged"; "keyPressed": "keyPressed"; }, never, ["[slot=prefix]", "[slot=suffix]"], false, never>;
|
|
43
|
-
}
|
|
44
|
-
export {};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { UiBaseComponent } from './ui-base.component';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class UiBaseLayoutComponent {
|
|
4
|
-
ctx: UiBaseComponent;
|
|
5
|
-
get class(): string;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UiBaseLayoutComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UiBaseLayoutComponent, "ui-base-layout", never, { "ctx": { "alias": "ctx"; "required": false; }; }, {}, never, [".counter-top", "*", ".counter-bottom"], false, never>;
|
|
8
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ValidationErrors } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export interface UiValidators {
|
|
5
|
-
required?: boolean;
|
|
6
|
-
maxLength?: number;
|
|
7
|
-
}
|
|
8
|
-
export declare abstract class UiBaseComponent implements OnInit {
|
|
9
|
-
placeholder: string;
|
|
10
|
-
label: string | undefined;
|
|
11
|
-
useInputMessages: 'never' | 'always' | 'ondemand';
|
|
12
|
-
inputMessagesPosition: 'absolute' | 'relative';
|
|
13
|
-
hint?: string;
|
|
14
|
-
size: 'small' | 'smaller' | 'normal' | 'larger' | 'large';
|
|
15
|
-
required: boolean;
|
|
16
|
-
constructor();
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
get validationErrors(): ValidationErrors;
|
|
19
|
-
get validationMessage(): string;
|
|
20
|
-
get isInvalid(): boolean;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UiBaseComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UiBaseComponent, "ui-abstract-base-component", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "useInputMessages": { "alias": "useInputMessages"; "required": false; }; "inputMessagesPosition": { "alias": "inputMessagesPosition"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { UiSimpleComponent } from './ui-simple.component';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class UiSimpleLayoutComponent {
|
|
4
|
-
ctx: UiSimpleComponent;
|
|
5
|
-
length(): any;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UiSimpleLayoutComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UiSimpleLayoutComponent, "ui-simple-layout", never, { "ctx": { "alias": "ctx"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
8
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { AbstractControl, ControlValueAccessor, UntypedFormControl, NgControl, ValidationErrors, Validator, FormControl, ControlContainer } from '@angular/forms';
|
|
3
|
-
import { UiBaseComponent, UiValidators } from '../base/ui-base.component';
|
|
4
|
-
import { Subscription } from 'rxjs';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare abstract class UiSimpleComponent extends UiBaseComponent implements OnInit, OnChanges, OnDestroy, ControlValueAccessor, Validator {
|
|
7
|
-
ngControl: NgControl;
|
|
8
|
-
protected controlContainer: ControlContainer;
|
|
9
|
-
validators: UiValidators | undefined;
|
|
10
|
-
formControl: any;
|
|
11
|
-
formControlName: any;
|
|
12
|
-
componentFormControl: UntypedFormControl;
|
|
13
|
-
parentFormControl: UntypedFormControl & {
|
|
14
|
-
_componentFormControl: FormControl;
|
|
15
|
-
_markAsTouched: Function;
|
|
16
|
-
_setErrors: Function;
|
|
17
|
-
};
|
|
18
|
-
sub: Subscription;
|
|
19
|
-
constructor(ngControl: NgControl, // <-- obsolete
|
|
20
|
-
controlContainer?: ControlContainer);
|
|
21
|
-
get maxLenRequired(): boolean;
|
|
22
|
-
get isInvalid(): boolean;
|
|
23
|
-
get validationErrors(): ValidationErrors;
|
|
24
|
-
onChange: (val: any) => void;
|
|
25
|
-
onTouched: () => void;
|
|
26
|
-
onValidatorChange: () => void;
|
|
27
|
-
ngOnDestroy(): void;
|
|
28
|
-
ngOnInit(): void;
|
|
29
|
-
applyTemplateValidators(): void;
|
|
30
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
31
|
-
registerOnChange(fn: any): void;
|
|
32
|
-
registerOnTouched(fn: any): void;
|
|
33
|
-
setDisabledState(isDisabled: boolean): void;
|
|
34
|
-
writeValue(obj: any): void;
|
|
35
|
-
registerOnValidatorChange(fn: () => void): void;
|
|
36
|
-
validate(control: AbstractControl): ValidationErrors | null;
|
|
37
|
-
inputLength(): any;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UiSimpleComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UiSimpleComponent, "ui-abstract-simple-component", never, { "validators": { "alias": "validators"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; }, {}, never, never, false, never>;
|
|
40
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class RadioComponent {
|
|
3
|
-
value: any;
|
|
4
|
-
label: any;
|
|
5
|
-
color: 'primary' | 'accent' | 'warn';
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RadioComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "ui-radio", never, { "value": { "alias": "value"; "required": false; }; "label": { "alias": "label"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
3
|
-
import { NgControl } from '@angular/forms';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class RadioGroupComponent extends UiSimpleComponent implements /*OnInit, */ OnChanges {
|
|
6
|
-
control: NgControl;
|
|
7
|
-
cbxs: any;
|
|
8
|
-
id: number;
|
|
9
|
-
options: any[];
|
|
10
|
-
displayAttribute: string;
|
|
11
|
-
hintAttribute: string;
|
|
12
|
-
valueAttribute: any;
|
|
13
|
-
groupName: string;
|
|
14
|
-
optionEnabled: (option: any) => boolean;
|
|
15
|
-
constructor(control: NgControl);
|
|
16
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupComponent, [{ optional: true; self: true; }]>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioGroupComponent, "ui-radio-group", never, { "options": { "alias": "options"; "required": false; }; "displayAttribute": { "alias": "displayAttribute"; "required": false; }; "hintAttribute": { "alias": "hintAttribute"; "required": false; }; "valueAttribute": { "alias": "valueAttribute"; "required": false; }; "groupName": { "alias": "groupName"; "required": false; }; "optionEnabled": { "alias": "optionEnabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
19
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
|
-
import { NgControl } from '@angular/forms';
|
|
3
|
-
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
4
|
-
import { MatSelect } from '@angular/material/select';
|
|
5
|
-
import { IUiTranslateService } from '../services/ui-translate.service';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class SelectComponent extends UiSimpleComponent implements OnInit, OnChanges {
|
|
8
|
-
ngControl: NgControl;
|
|
9
|
-
translateService: IUiTranslateService;
|
|
10
|
-
multiple: boolean;
|
|
11
|
-
triggerFormatter: any;
|
|
12
|
-
valueAttribute: string | undefined;
|
|
13
|
-
resetText: string | undefined;
|
|
14
|
-
displayAttribute: string | undefined;
|
|
15
|
-
options: any[];
|
|
16
|
-
optionFormatter: ((arg: any) => string | undefined) | undefined;
|
|
17
|
-
optionTemplateRef?: TemplateRef<any>;
|
|
18
|
-
triggerTemplateRef?: TemplateRef<any>;
|
|
19
|
-
panelClass: string;
|
|
20
|
-
allowEmptySelection: boolean;
|
|
21
|
-
trackBy: any;
|
|
22
|
-
select?: MatSelect;
|
|
23
|
-
lastCount: number;
|
|
24
|
-
overoption: any;
|
|
25
|
-
constructor(ngControl: NgControl, translateService: IUiTranslateService);
|
|
26
|
-
ngOnInit(): void;
|
|
27
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
28
|
-
mapValues(src: any): any;
|
|
29
|
-
optionToValue: (o: any) => any;
|
|
30
|
-
selectOption(o: any, select: MatSelect): void;
|
|
31
|
-
selectAll(): void;
|
|
32
|
-
clearAll(): void;
|
|
33
|
-
setDisabledState(): void;
|
|
34
|
-
writeValue(obj: any): void;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, [{ optional: true; self: true; }, null]>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "ui-select", never, { "multiple": { "alias": "multiple"; "required": false; }; "triggerFormatter": { "alias": "triggerFormatter"; "required": false; }; "valueAttribute": { "alias": "valueAttribute"; "required": false; }; "resetText": { "alias": "resetText"; "required": false; }; "displayAttribute": { "alias": "displayAttribute"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionFormatter": { "alias": "optionFormatter"; "required": false; }; "optionTemplateRef": { "alias": "optionTemplateRef"; "required": false; }; "triggerTemplateRef": { "alias": "triggerTemplateRef"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "allowEmptySelection": { "alias": "allowEmptySelection"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; }, {}, never, never, false, never>;
|
|
37
|
-
}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { TemplateRef } from '@angular/core';
|
|
2
|
-
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
-
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { IUiTranslateService } from './ui-translate.service';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export interface MessageBoxButton {
|
|
8
|
-
id: string;
|
|
9
|
-
text: string;
|
|
10
|
-
kind?: 'basic' | 'flat' | 'stroked';
|
|
11
|
-
color?: 'primary' | 'accent' | 'warn';
|
|
12
|
-
process?: () => Promise<any>;
|
|
13
|
-
disabled?: () => boolean;
|
|
14
|
-
}
|
|
15
|
-
export declare class MessageBoxModalComponent {
|
|
16
|
-
dialogRef: MatDialogRef<MessageBoxModalComponent>;
|
|
17
|
-
sanitizer: DomSanitizer;
|
|
18
|
-
private data;
|
|
19
|
-
message: any;
|
|
20
|
-
errorMessage: any;
|
|
21
|
-
errorDetail: any;
|
|
22
|
-
buttons: MessageBoxButton[];
|
|
23
|
-
title: string;
|
|
24
|
-
template: any;
|
|
25
|
-
hideCloseButton: boolean;
|
|
26
|
-
processing: MessageBoxButton;
|
|
27
|
-
constructor(dialogRef: MatDialogRef<MessageBoxModalComponent>, sanitizer: DomSanitizer, data: any);
|
|
28
|
-
close(result: any): void;
|
|
29
|
-
buttonClick(b: MessageBoxButton): void;
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MessageBoxModalComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MessageBoxModalComponent, "ui-message-box-modal", never, {}, {}, never, never, false, never>;
|
|
32
|
-
}
|
|
33
|
-
export declare class MessageBoxService {
|
|
34
|
-
private dialog;
|
|
35
|
-
translateService: IUiTranslateService;
|
|
36
|
-
constructor(dialog: MatDialog, translateService: IUiTranslateService);
|
|
37
|
-
confirm(message: string, options?: {
|
|
38
|
-
buttons?: MessageBoxButton[];
|
|
39
|
-
title?: string;
|
|
40
|
-
errorMessage?: string;
|
|
41
|
-
errorDetail?: string;
|
|
42
|
-
hideCloseButton?: boolean;
|
|
43
|
-
maxWidth?: string;
|
|
44
|
-
}): Observable<any>;
|
|
45
|
-
open(options?: {
|
|
46
|
-
buttons?: MessageBoxButton[];
|
|
47
|
-
title?: string;
|
|
48
|
-
errorMessage?: string;
|
|
49
|
-
errorDetail?: string;
|
|
50
|
-
hideCloseButton?: boolean;
|
|
51
|
-
maxWidth?: string;
|
|
52
|
-
message?: string;
|
|
53
|
-
template?: TemplateRef<any>;
|
|
54
|
-
}): Observable<any>;
|
|
55
|
-
confirmDelete(title: string, message: string): Observable<any>;
|
|
56
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MessageBoxService, never>;
|
|
57
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MessageBoxService>;
|
|
58
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export type ToastType = 'info' | 'success' | 'warning' | 'fail';
|
|
4
|
-
export declare class ToastService {
|
|
5
|
-
private snackService;
|
|
6
|
-
constructor(snackService: MatSnackBar);
|
|
7
|
-
open(message: string, options?: {
|
|
8
|
-
duration?: number;
|
|
9
|
-
type?: ToastType;
|
|
10
|
-
}): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ToastService, never>;
|
|
12
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ToastService>;
|
|
13
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, InjectionToken } from '@angular/core';
|
|
2
|
-
import { UploadFile, UploadInput } from 'ngx-uploader';
|
|
3
|
-
import { Subject } from 'rxjs';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export interface IUiFileSize {
|
|
6
|
-
name: string;
|
|
7
|
-
width: number;
|
|
8
|
-
height: number;
|
|
9
|
-
limit?: 'fit' | 'maxWidth' | 'maxHeight';
|
|
10
|
-
}
|
|
11
|
-
export type IUiFileServiceMessages = 'cropInvalidFileType' | 'extensionNotAllowed' | 'fileAdded' | 'fileRemoved';
|
|
12
|
-
export interface IUiFileService {
|
|
13
|
-
getAuthHeader: () => {
|
|
14
|
-
[key: string]: string;
|
|
15
|
-
};
|
|
16
|
-
uploadUrl: (size?: IUiFileSize) => string;
|
|
17
|
-
getMediaSrc: (size: IUiFileSize, data: any, options: any) => string;
|
|
18
|
-
getPreviewUrl: (size: IUiFileSize, data: any) => string;
|
|
19
|
-
addFileImgSrc: (size: IUiFileSize) => string;
|
|
20
|
-
getMimeType: (data: any) => string;
|
|
21
|
-
imageSizes: IUiFileSize[];
|
|
22
|
-
concurrentUploads: number;
|
|
23
|
-
useRetinaSrc: boolean;
|
|
24
|
-
fileValidation?: (size: IUiFileSize, file: UploadFile) => Promise<boolean>;
|
|
25
|
-
}
|
|
26
|
-
export declare const UI_FILESERVICE: InjectionToken<IUiFileService>;
|
|
27
|
-
export declare class UiFileService {
|
|
28
|
-
fileServiceConfig: IUiFileService;
|
|
29
|
-
uploadInput: EventEmitter<UploadInput>;
|
|
30
|
-
uploadSubscription: Subject<unknown>;
|
|
31
|
-
filesToRemove: string[];
|
|
32
|
-
controls: Set<any>;
|
|
33
|
-
constructor(fileServiceConfig: IUiFileService);
|
|
34
|
-
upload(): Promise<'uploadSuccess' | 'uploadFailed'>;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UiFileService, [{ optional: true; }]>;
|
|
36
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<UiFileService>;
|
|
37
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export interface IUiTranslateService {
|
|
4
|
-
instant: (code: string, data?: any) => string;
|
|
5
|
-
}
|
|
6
|
-
export declare const UI_TRANSLATESERVICE: InjectionToken<IUiTranslateService>;
|
|
7
|
-
export declare class UiTranslateService implements IUiTranslateService {
|
|
8
|
-
instant(code: string, data: any): string;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UiTranslateService, never>;
|
|
10
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<UiTranslateService>;
|
|
11
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ControlContainer, UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SubmitButtonComponent implements OnInit {
|
|
6
|
-
dialogRef: MatDialogRef<any>;
|
|
7
|
-
protected controlContainer: ControlContainer;
|
|
8
|
-
busy: boolean;
|
|
9
|
-
disabled: boolean;
|
|
10
|
-
formGroups: UntypedFormGroup | UntypedFormGroup[];
|
|
11
|
-
label: string;
|
|
12
|
-
submit: (() => void) | undefined;
|
|
13
|
-
formInvalid: boolean | undefined;
|
|
14
|
-
prependCloseButton: boolean;
|
|
15
|
-
constructor(dialogRef: MatDialogRef<any>, controlContainer: ControlContainer);
|
|
16
|
-
ngOnInit(): void;
|
|
17
|
-
get formsValid(): boolean;
|
|
18
|
-
doSubmit(): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SubmitButtonComponent, [null, { optional: true; host: true; skipSelf: true; }]>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubmitButtonComponent, "ui-submit-button", never, { "busy": { "alias": "busy"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formGroups": { "alias": "formGroups"; "required": false; }; "label": { "alias": "label"; "required": false; }; "submit": { "alias": "submit"; "required": false; }; "formInvalid": { "alias": "formInvalid"; "required": false; }; "prependCloseButton": { "alias": "prependCloseButton"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import { MatSort, SortDirection } from '@angular/material/sort';
|
|
3
|
-
import { DomSanitizer } from '@angular/platform-browser';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export interface TableColumn {
|
|
6
|
-
name: string;
|
|
7
|
-
sortable?: boolean | ((row: any, direction?: SortDirection) => number | string);
|
|
8
|
-
sticky?: boolean;
|
|
9
|
-
label?: string;
|
|
10
|
-
colSpan?: (row: any) => number;
|
|
11
|
-
formatter?: (row: any) => string;
|
|
12
|
-
cellClass?: (row: any, c?: TableColumn) => string;
|
|
13
|
-
headerTemplate?: (c: TableColumn) => TemplateRef<any>;
|
|
14
|
-
cellTemplate?: (row: any, c: TableColumn) => TemplateRef<any>;
|
|
15
|
-
}
|
|
16
|
-
export interface TableOptions {
|
|
17
|
-
sticky?: boolean;
|
|
18
|
-
}
|
|
19
|
-
export declare class TableComponent implements OnInit, AfterViewInit {
|
|
20
|
-
private domSanitizer;
|
|
21
|
-
columns: TableColumn[];
|
|
22
|
-
dataSource: any;
|
|
23
|
-
options: TableOptions | undefined;
|
|
24
|
-
rowTemplates: any;
|
|
25
|
-
headerTemplates: any;
|
|
26
|
-
stateStoreKey: string;
|
|
27
|
-
rowAction: (row: any) => void;
|
|
28
|
-
matSortActive: any;
|
|
29
|
-
matSortDirection: any;
|
|
30
|
-
matSort: MatSort | undefined;
|
|
31
|
-
get columnList(): string[];
|
|
32
|
-
constructor(/*private persistService: PersistService, */ domSanitizer: DomSanitizer);
|
|
33
|
-
ngOnInit(): void;
|
|
34
|
-
ngAfterViewInit(): void;
|
|
35
|
-
display(row: any, col: TableColumn): any;
|
|
36
|
-
rowClicked(row: any): void;
|
|
37
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "ui-table", never, { "columns": { "alias": "columns"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "options": { "alias": "options"; "required": false; }; "rowTemplates": { "alias": "rowTemplates"; "required": false; }; "headerTemplates": { "alias": "headerTemplates"; "required": false; }; "stateStoreKey": { "alias": "stateStoreKey"; "required": false; }; "rowAction": { "alias": "rowAction"; "required": false; }; "matSortActive": { "alias": "matSortActive"; "required": false; }; "matSortDirection": { "alias": "matSortDirection"; "required": false; }; }, {}, never, never, false, never>;
|
|
39
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { NgControl } from '@angular/forms';
|
|
3
|
-
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TextAreaComponent extends UiSimpleComponent {
|
|
6
|
-
ngControl: NgControl;
|
|
7
|
-
rows: number;
|
|
8
|
-
autoResize: boolean;
|
|
9
|
-
lastClientHeight: number;
|
|
10
|
-
textarea: ElementRef;
|
|
11
|
-
focusChanged: EventEmitter<boolean>;
|
|
12
|
-
constructor(ngControl: NgControl);
|
|
13
|
-
focus(): void;
|
|
14
|
-
setDisabledState(isDisabled: boolean): void;
|
|
15
|
-
onFocus(focus: boolean): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, [{ optional: true; self: true; }]>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "ui-text-area", never, { "rows": { "alias": "rows"; "required": false; }; "autoResize": { "alias": "autoResize"; "required": false; }; }, { "focusChanged": "focusChanged"; }, never, never, false, never>;
|
|
18
|
-
}
|
package/lib/ui.model.d.ts
DELETED
package/lib/ui.module.d.ts
DELETED
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./button/button.component";
|
|
3
|
-
import * as i2 from "./input/input.component";
|
|
4
|
-
import * as i3 from "./input-autocomplete/input-autocomplete.component";
|
|
5
|
-
import * as i4 from "./select/select.component";
|
|
6
|
-
import * as i5 from "./file/file.component";
|
|
7
|
-
import * as i6 from "./file-uploader/ui-file-uploader.component";
|
|
8
|
-
import * as i7 from "./elements/expander/expander.component";
|
|
9
|
-
import * as i8 from "./directives/force-visibility/force-visibility.directive";
|
|
10
|
-
import * as i9 from "./services/message-box.service";
|
|
11
|
-
import * as i10 from "./dialog/dialog.component";
|
|
12
|
-
import * as i11 from "./currency/currency.component";
|
|
13
|
-
import * as i12 from "./checkbox/checkbox.component";
|
|
14
|
-
import * as i13 from "./avatar/avatar.component";
|
|
15
|
-
import * as i14 from "./submit-button/submit-button.component";
|
|
16
|
-
import * as i15 from "./text-area/text-area.component";
|
|
17
|
-
import * as i16 from "./date/date.component";
|
|
18
|
-
import * as i17 from "./table/table.component";
|
|
19
|
-
import * as i18 from "./elements/burger/burger.component";
|
|
20
|
-
import * as i19 from "./autocomplete/autocomplete.component";
|
|
21
|
-
import * as i20 from "./auto-complete/auto-complete.component";
|
|
22
|
-
import * as i21 from "./action-button/action-button.component";
|
|
23
|
-
import * as i22 from "./layouts/base/ui-base-layout.component";
|
|
24
|
-
import * as i23 from "./layouts/simple/ui-simple-layout.component";
|
|
25
|
-
import * as i24 from "./elements/validation-message/validation-message.component";
|
|
26
|
-
import * as i25 from "./radio/radio.component";
|
|
27
|
-
import * as i26 from "./checkbox-group/checkbox-group.component";
|
|
28
|
-
import * as i27 from "./radio-group/radio-group.component";
|
|
29
|
-
import * as i28 from "./action-icon/action-icon.component";
|
|
30
|
-
import * as i29 from "./editor/editor.component";
|
|
31
|
-
import * as i30 from "@angular/common";
|
|
32
|
-
import * as i31 from "@angular/material/button";
|
|
33
|
-
import * as i32 from "@angular/material/icon";
|
|
34
|
-
import * as i33 from "@angular/material/dialog";
|
|
35
|
-
import * as i34 from "@angular/material/checkbox";
|
|
36
|
-
import * as i35 from "@angular/material/datepicker";
|
|
37
|
-
import * as i36 from "@angular/material-moment-adapter";
|
|
38
|
-
import * as i37 from "@angular/cdk/drag-drop";
|
|
39
|
-
import * as i38 from "@angular/forms";
|
|
40
|
-
import * as i39 from "@angular/material/tooltip";
|
|
41
|
-
import * as i40 from "@angular/material/progress-bar";
|
|
42
|
-
import * as i41 from "@angular/material/table";
|
|
43
|
-
import * as i42 from "@angular/material/sort";
|
|
44
|
-
import * as i43 from "@angular/material/select";
|
|
45
|
-
import * as i44 from "ngx-uploader";
|
|
46
|
-
import * as i45 from "@angular/material/progress-spinner";
|
|
47
|
-
import * as i46 from "@angular/material/menu";
|
|
48
|
-
import * as i47 from "ngx-image-cropper";
|
|
49
|
-
import * as i48 from "@angular/router";
|
|
50
|
-
import * as i49 from "@angular/cdk/overlay";
|
|
51
|
-
import * as i50 from "@angular/material/core";
|
|
52
|
-
import * as i51 from "@angular/material/input";
|
|
53
|
-
import * as i52 from "@angular/material/radio";
|
|
54
|
-
import * as i53 from "@angular/material/snack-bar";
|
|
55
|
-
import * as i54 from "@angular/material/autocomplete";
|
|
56
|
-
export declare class UiModule {
|
|
57
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UiModule, never>;
|
|
58
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UiModule, [typeof i1.ButtonComponent, typeof i2.InputComponent, typeof i3.InputAutocompleteComponent, typeof i4.SelectComponent, typeof i5.FileComponent, typeof i6.UiFileUploaderComponent, typeof i7.ExpanderComponent, typeof i8.ForceVisibilityDirective, typeof i9.MessageBoxModalComponent, typeof i10.DialogComponent, typeof i11.CurrencyComponent, typeof i12.CheckboxComponent, typeof i13.AvatarComponent, typeof i14.SubmitButtonComponent, typeof i15.TextAreaComponent, typeof i16.DateComponent, typeof i17.TableComponent, typeof i18.BurgerComponent, typeof i19.AutocompleteComponent, typeof i20.AutoCompleteComponent, typeof i21.ActionButtonComponent, typeof i22.UiBaseLayoutComponent, typeof i23.UiSimpleLayoutComponent, typeof i24.ValidationMessageComponent, typeof i25.RadioComponent, typeof i26.CheckboxGroupComponent, typeof i27.RadioGroupComponent, typeof i28.ActionIconComponent, typeof i29.EditorComponent], [typeof i30.CommonModule, typeof i31.MatButtonModule, typeof i32.MatIconModule, typeof i33.MatDialogModule, typeof i34.MatCheckboxModule, typeof i35.MatDatepickerModule, typeof i36.MatMomentDateModule, typeof i37.DragDropModule, typeof i38.ReactiveFormsModule, typeof i38.FormsModule, typeof i39.MatTooltipModule, typeof i40.MatProgressBarModule, typeof i41.MatTableModule, typeof i42.MatSortModule, typeof i43.MatSelectModule, typeof i44.NgxUploaderModule, typeof i45.MatProgressSpinnerModule, typeof i46.MatMenuModule, typeof i47.ImageCropperModule, typeof i48.RouterModule, typeof i49.OverlayModule, typeof i50.MatRippleModule, typeof i51.MatInputModule, typeof i52.MatRadioModule, typeof i53.MatSnackBarModule, typeof i54.MatAutocompleteModule], [typeof i21.ActionButtonComponent, typeof i28.ActionIconComponent, typeof i19.AutocompleteComponent, typeof i20.AutoCompleteComponent, typeof i13.AvatarComponent, typeof i18.BurgerComponent, typeof i1.ButtonComponent, typeof i12.CheckboxComponent, typeof i26.CheckboxGroupComponent, typeof i11.CurrencyComponent, typeof i16.DateComponent, typeof i10.DialogComponent, typeof i7.ExpanderComponent, typeof i5.FileComponent, typeof i8.ForceVisibilityDirective, typeof i2.InputComponent, typeof i3.InputAutocompleteComponent, typeof i9.MessageBoxModalComponent, typeof i25.RadioComponent, typeof i27.RadioGroupComponent, typeof i4.SelectComponent, typeof i14.SubmitButtonComponent, typeof i17.TableComponent, typeof i15.TextAreaComponent, typeof i6.UiFileUploaderComponent, typeof i29.EditorComponent]>;
|
|
59
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<UiModule>;
|
|
60
|
-
}
|