cmat 0.0.84 → 0.0.85
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/cmat-components-custom-formly.mjs +1 -2
- package/fesm2022/cmat-components-custom-formly.mjs.map +1 -1
- package/fesm2022/cmat-components-upload.mjs +23 -10
- package/fesm2022/cmat-components-upload.mjs.map +1 -1
- package/fesm2022/cmat.mjs +24 -12
- package/fesm2022/cmat.mjs.map +1 -1
- package/package.json +16 -16
- package/types/cmat-components-upload.d.ts +49 -51
- package/types/cmat.d.ts +36 -38
package/package.json
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cmat",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.85",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Yu Tao",
|
|
6
6
|
"email": "916426364@qq.com"
|
|
7
7
|
},
|
|
8
8
|
"license": "UNLICENSED",
|
|
9
9
|
"peerDependencies": {
|
|
10
|
-
"@angular/
|
|
11
|
-
"@angular/
|
|
12
|
-
"@angular/
|
|
13
|
-
"@angular/compiler": "^21.2.
|
|
14
|
-
"@angular/core": "^21.2.
|
|
15
|
-
"@angular/forms": "^21.2.
|
|
16
|
-
"@angular/material": "^21.2.
|
|
17
|
-
"@angular/platform-browser": "^21.2.
|
|
18
|
-
"@angular/platform-browser-dynamic": "^21.2.
|
|
19
|
-
"@angular/router": "^21.2.
|
|
10
|
+
"@angular/animations": "^21.2.9",
|
|
11
|
+
"@angular/cdk": "^21.2.7",
|
|
12
|
+
"@angular/common": "^21.2.9",
|
|
13
|
+
"@angular/compiler": "^21.2.9",
|
|
14
|
+
"@angular/core": "^21.2.9",
|
|
15
|
+
"@angular/forms": "^21.2.9",
|
|
16
|
+
"@angular/material": "^21.2.7",
|
|
17
|
+
"@angular/platform-browser": "^21.2.9",
|
|
18
|
+
"@angular/platform-browser-dynamic": "^21.2.9",
|
|
19
|
+
"@angular/router": "^21.2.9",
|
|
20
20
|
"@ngx-formly/core": "^7.1.0",
|
|
21
21
|
"@ngx-formly/material": "^7.1.0",
|
|
22
22
|
"@ngx-translate/core": "^17.0.0",
|
|
23
23
|
"@ngx-translate/http-loader": "^17.0.0",
|
|
24
|
-
"@tailwindcss/postcss": "^4.2.
|
|
24
|
+
"@tailwindcss/postcss": "^4.2.4",
|
|
25
25
|
"animate.css": "^4.1.1",
|
|
26
26
|
"crypto-js": "^4.2.0",
|
|
27
27
|
"dayjs": "^1.11.20",
|
|
28
28
|
"docx": "^9.6.1",
|
|
29
29
|
"highlight.js": "^11.11.1",
|
|
30
|
-
"ngx-quill": "^30.
|
|
30
|
+
"ngx-quill": "^30.1.2",
|
|
31
31
|
"qrcode": "^1.5.4",
|
|
32
32
|
"quill": "^2.0.3",
|
|
33
|
-
"@enzedonline/quill-blot-formatter2": "^3.1.
|
|
33
|
+
"@enzedonline/quill-blot-formatter2": "^3.1.1",
|
|
34
34
|
"quill-image-drop-and-paste": "^2.0.1",
|
|
35
35
|
"rxjs": "~7.8.2",
|
|
36
|
-
"vanilla-jsoneditor": "^3.
|
|
36
|
+
"vanilla-jsoneditor": "^3.12.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"tailwindcss": "^4.2.
|
|
39
|
+
"tailwindcss": "^4.2.4",
|
|
40
40
|
"tslib": "^2.3.0"
|
|
41
41
|
},
|
|
42
42
|
"sideEffects": false,
|
|
@@ -1,11 +1,33 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import { OnInit, EventEmitter, AfterViewInit, QueryList } from '@angular/core';
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { OnInit, EventEmitter, AfterViewInit, OnChanges, QueryList, SimpleChanges } from '@angular/core';
|
|
3
3
|
import { HttpResponse, HttpEvent } from '@angular/common/http';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
interface FileModel {
|
|
7
|
+
[propName: string]: unknown;
|
|
7
8
|
id?: string | null;
|
|
8
|
-
|
|
9
|
+
fileName: string;
|
|
10
|
+
filePath: string;
|
|
11
|
+
fileStatus?: 'Uploaded' | 'Processed';
|
|
12
|
+
length: number;
|
|
13
|
+
isPublic: boolean;
|
|
14
|
+
uploadUserId?: string;
|
|
15
|
+
uploadUserName?: string;
|
|
16
|
+
uploadDate: Date;
|
|
17
|
+
fileType: 'csv' | 'gif' | 'word' | 'excel' | 'jpg' | 'outlook' | 'pdf' | 'png' | 'ppt' | 'file' | 'text' | 'video' | 'zip';
|
|
18
|
+
fileCategory: string;
|
|
19
|
+
data?: Blob | File | FileModel;
|
|
20
|
+
}
|
|
21
|
+
interface FileCategoryModel {
|
|
22
|
+
name: string;
|
|
23
|
+
value: number;
|
|
24
|
+
}
|
|
25
|
+
interface FileListModel {
|
|
26
|
+
data: FileModel[];
|
|
27
|
+
dataCount: number;
|
|
28
|
+
category: FileCategoryModel[];
|
|
29
|
+
}
|
|
30
|
+
|
|
9
31
|
declare class CmatUploadComponent implements OnInit {
|
|
10
32
|
fileAlias: string;
|
|
11
33
|
filePath: string;
|
|
@@ -15,29 +37,27 @@ declare class CmatUploadComponent implements OnInit {
|
|
|
15
37
|
autoUpload: boolean;
|
|
16
38
|
id: string | null;
|
|
17
39
|
removeEvent: EventEmitter<CmatUploadComponent>;
|
|
18
|
-
uploadEvent: EventEmitter<
|
|
19
|
-
readonly progressPercentage:
|
|
20
|
-
readonly loaded:
|
|
21
|
-
readonly total:
|
|
22
|
-
readonly isUploading:
|
|
40
|
+
uploadEvent: EventEmitter<FileModel>;
|
|
41
|
+
readonly progressPercentage: _angular_core.WritableSignal<number>;
|
|
42
|
+
readonly loaded: _angular_core.WritableSignal<number>;
|
|
43
|
+
readonly total: _angular_core.WritableSignal<number>;
|
|
44
|
+
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
23
45
|
private _fileService;
|
|
24
46
|
private readonly _destroyRef;
|
|
25
47
|
private _file;
|
|
26
|
-
get file():
|
|
27
|
-
set file(file:
|
|
48
|
+
get file(): FileModel;
|
|
49
|
+
set file(file: FileModel);
|
|
28
50
|
get fileType(): 'csv' | 'gif' | 'word' | 'excel' | 'jpg' | 'outlook' | 'pdf' | 'png' | 'ppt' | 'file' | 'text' | 'video' | 'zip';
|
|
51
|
+
get fileSize(): number;
|
|
29
52
|
ngOnInit(): void;
|
|
30
53
|
upload(): void;
|
|
31
54
|
download(): void;
|
|
32
55
|
remove(): void;
|
|
33
|
-
static ɵfac:
|
|
34
|
-
static ɵcmp:
|
|
56
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CmatUploadComponent, never>;
|
|
57
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CmatUploadComponent, "cmat-upload", ["cmatUpload"], { "fileAlias": { "alias": "fileAlias"; "required": false; }; "filePath": { "alias": "filePath"; "required": false; }; "fileCategory": { "alias": "fileCategory"; "required": false; }; "isPublic": { "alias": "isPublic"; "required": false; }; "editMode": { "alias": "editMode"; "required": false; }; "autoUpload": { "alias": "autoUpload"; "required": false; }; "id": { "alias": "id"; "required": false; }; "file": { "alias": "file"; "required": false; }; }, { "removeEvent": "removeEvent"; "uploadEvent": "uploadEvent"; }, never, never, true, never>;
|
|
35
58
|
}
|
|
36
59
|
|
|
37
|
-
|
|
38
|
-
id?: string | null;
|
|
39
|
-
};
|
|
40
|
-
declare class CmatUploadQueueComponent implements AfterViewInit {
|
|
60
|
+
declare class CmatUploadQueueComponent implements AfterViewInit, OnChanges {
|
|
41
61
|
fileUploads: QueryList<CmatUploadComponent>;
|
|
42
62
|
fileAlias: string;
|
|
43
63
|
filePath: string;
|
|
@@ -49,52 +69,30 @@ declare class CmatUploadQueueComponent implements AfterViewInit {
|
|
|
49
69
|
accept: string;
|
|
50
70
|
title: string;
|
|
51
71
|
editMode: boolean;
|
|
52
|
-
filesData:
|
|
72
|
+
filesData: FileModel[];
|
|
53
73
|
outputRemoveIdEvent: EventEmitter<string>;
|
|
54
74
|
outputUploadIdEvent: EventEmitter<string>;
|
|
55
|
-
outputFilesDataEvent: EventEmitter<
|
|
75
|
+
outputFilesDataEvent: EventEmitter<FileModel[]>;
|
|
56
76
|
id: string;
|
|
57
|
-
readonly isHandSet:
|
|
77
|
+
readonly isHandSet: _angular_core.WritableSignal<boolean>;
|
|
78
|
+
readonly fileDataSource: _angular_core.WritableSignal<FileModel[]>;
|
|
58
79
|
private _cmatMediaWatcherService;
|
|
59
80
|
private _elementRef;
|
|
60
81
|
private readonly _destroyRef;
|
|
61
82
|
constructor();
|
|
62
83
|
onDrop(event: DragEvent): void;
|
|
63
84
|
onDropOver(event: DragEvent): void;
|
|
85
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
64
86
|
ngAfterViewInit(): void;
|
|
65
|
-
add(file:
|
|
66
|
-
upload(event:
|
|
87
|
+
add(file: File): void;
|
|
88
|
+
upload(event: FileModel): void;
|
|
67
89
|
remove(event: CmatUploadComponent): void;
|
|
68
90
|
uploadAll(): void;
|
|
69
91
|
removeAll(): void;
|
|
70
92
|
choose(): void;
|
|
71
93
|
private isFileTypeAccepted;
|
|
72
|
-
static ɵfac:
|
|
73
|
-
static ɵcmp:
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
interface FileModel {
|
|
77
|
-
id?: string | null;
|
|
78
|
-
fileName: string;
|
|
79
|
-
filePath: string;
|
|
80
|
-
fileStatus?: 'Uploaded' | 'Processed';
|
|
81
|
-
length: number;
|
|
82
|
-
isPublic: boolean;
|
|
83
|
-
uploadUserId?: string;
|
|
84
|
-
uploadUserName?: string;
|
|
85
|
-
uploadDate: Date;
|
|
86
|
-
fileType: 'csv' | 'gif' | 'word' | 'excel' | 'jpg' | 'outlook' | 'pdf' | 'png' | 'ppt' | 'file' | 'text' | 'video' | 'zip';
|
|
87
|
-
fileCategory: string;
|
|
88
|
-
data?: unknown;
|
|
89
|
-
}
|
|
90
|
-
interface FileCategoryModel {
|
|
91
|
-
name: string;
|
|
92
|
-
value: number;
|
|
93
|
-
}
|
|
94
|
-
interface FileListModel {
|
|
95
|
-
data: FileModel[];
|
|
96
|
-
dataCount: number;
|
|
97
|
-
category: FileCategoryModel[];
|
|
94
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CmatUploadQueueComponent, never>;
|
|
95
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CmatUploadQueueComponent, "cmat-upload-queue", ["cmatUploadQueue"], { "fileAlias": { "alias": "fileAlias"; "required": false; }; "filePath": { "alias": "filePath"; "required": false; }; "fileCategory": { "alias": "fileCategory"; "required": false; }; "isPublic": { "alias": "isPublic"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autoUpload": { "alias": "autoUpload"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "title": { "alias": "title"; "required": false; }; "editMode": { "alias": "editMode"; "required": false; }; "filesData": { "alias": "filesData"; "required": false; }; }, { "outputRemoveIdEvent": "outputRemoveIdEvent"; "outputUploadIdEvent": "outputUploadIdEvent"; "outputFilesDataEvent": "outputFilesDataEvent"; }, never, never, true, never>;
|
|
98
96
|
}
|
|
99
97
|
|
|
100
98
|
declare class CmatFilesUtilService {
|
|
@@ -110,9 +108,9 @@ declare class CmatFilesUtilService {
|
|
|
110
108
|
switchPublic(fileId: string, isPublic: boolean): Observable<Record<string, unknown>>;
|
|
111
109
|
deleteFile(fileId: string): Observable<Record<string, unknown>>;
|
|
112
110
|
getFileList(queryData: object, pageIndex?: number, pageSize?: number): Observable<FileListModel>;
|
|
113
|
-
static ɵfac:
|
|
114
|
-
static ɵprov:
|
|
111
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CmatFilesUtilService, never>;
|
|
112
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<CmatFilesUtilService>;
|
|
115
113
|
}
|
|
116
114
|
|
|
117
115
|
export { CmatFilesUtilService, CmatUploadComponent, CmatUploadQueueComponent };
|
|
118
|
-
export type { FileCategoryModel, FileListModel, FileModel
|
|
116
|
+
export type { FileCategoryModel, FileListModel, FileModel };
|
package/types/cmat.d.ts
CHANGED
|
@@ -3883,9 +3883,31 @@ declare class CmatTreeTableComponent implements OnChanges {
|
|
|
3883
3883
|
static ɵcmp: i0.ɵɵComponentDeclaration<CmatTreeTableComponent, "cmat-treetable", ["cmatTreeTable"], { "data": { "alias": "data"; "required": false; }; "verticalSeparator": { "alias": "verticalSeparator"; "required": false; }; "initExpand": { "alias": "initExpand"; "required": false; }; "tableClass": { "alias": "tableClass"; "required": false; }; "showControlColumn": { "alias": "showControlColumn"; "required": false; }; }, { "nodeClicked": "nodeClicked"; }, ["customColumnTpl"], never, true, never>;
|
|
3884
3884
|
}
|
|
3885
3885
|
|
|
3886
|
-
|
|
3886
|
+
interface FileModel {
|
|
3887
|
+
[propName: string]: unknown;
|
|
3887
3888
|
id?: string | null;
|
|
3888
|
-
|
|
3889
|
+
fileName: string;
|
|
3890
|
+
filePath: string;
|
|
3891
|
+
fileStatus?: 'Uploaded' | 'Processed';
|
|
3892
|
+
length: number;
|
|
3893
|
+
isPublic: boolean;
|
|
3894
|
+
uploadUserId?: string;
|
|
3895
|
+
uploadUserName?: string;
|
|
3896
|
+
uploadDate: Date;
|
|
3897
|
+
fileType: 'csv' | 'gif' | 'word' | 'excel' | 'jpg' | 'outlook' | 'pdf' | 'png' | 'ppt' | 'file' | 'text' | 'video' | 'zip';
|
|
3898
|
+
fileCategory: string;
|
|
3899
|
+
data?: Blob | File | FileModel;
|
|
3900
|
+
}
|
|
3901
|
+
interface FileCategoryModel {
|
|
3902
|
+
name: string;
|
|
3903
|
+
value: number;
|
|
3904
|
+
}
|
|
3905
|
+
interface FileListModel {
|
|
3906
|
+
data: FileModel[];
|
|
3907
|
+
dataCount: number;
|
|
3908
|
+
category: FileCategoryModel[];
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3889
3911
|
declare class CmatUploadComponent implements OnInit {
|
|
3890
3912
|
fileAlias: string;
|
|
3891
3913
|
filePath: string;
|
|
@@ -3895,7 +3917,7 @@ declare class CmatUploadComponent implements OnInit {
|
|
|
3895
3917
|
autoUpload: boolean;
|
|
3896
3918
|
id: string | null;
|
|
3897
3919
|
removeEvent: EventEmitter<CmatUploadComponent>;
|
|
3898
|
-
uploadEvent: EventEmitter<
|
|
3920
|
+
uploadEvent: EventEmitter<FileModel>;
|
|
3899
3921
|
readonly progressPercentage: i0.WritableSignal<number>;
|
|
3900
3922
|
readonly loaded: i0.WritableSignal<number>;
|
|
3901
3923
|
readonly total: i0.WritableSignal<number>;
|
|
@@ -3903,9 +3925,10 @@ declare class CmatUploadComponent implements OnInit {
|
|
|
3903
3925
|
private _fileService;
|
|
3904
3926
|
private readonly _destroyRef;
|
|
3905
3927
|
private _file;
|
|
3906
|
-
get file():
|
|
3907
|
-
set file(file:
|
|
3928
|
+
get file(): FileModel;
|
|
3929
|
+
set file(file: FileModel);
|
|
3908
3930
|
get fileType(): 'csv' | 'gif' | 'word' | 'excel' | 'jpg' | 'outlook' | 'pdf' | 'png' | 'ppt' | 'file' | 'text' | 'video' | 'zip';
|
|
3931
|
+
get fileSize(): number;
|
|
3909
3932
|
ngOnInit(): void;
|
|
3910
3933
|
upload(): void;
|
|
3911
3934
|
download(): void;
|
|
@@ -3914,10 +3937,7 @@ declare class CmatUploadComponent implements OnInit {
|
|
|
3914
3937
|
static ɵcmp: i0.ɵɵComponentDeclaration<CmatUploadComponent, "cmat-upload", ["cmatUpload"], { "fileAlias": { "alias": "fileAlias"; "required": false; }; "filePath": { "alias": "filePath"; "required": false; }; "fileCategory": { "alias": "fileCategory"; "required": false; }; "isPublic": { "alias": "isPublic"; "required": false; }; "editMode": { "alias": "editMode"; "required": false; }; "autoUpload": { "alias": "autoUpload"; "required": false; }; "id": { "alias": "id"; "required": false; }; "file": { "alias": "file"; "required": false; }; }, { "removeEvent": "removeEvent"; "uploadEvent": "uploadEvent"; }, never, never, true, never>;
|
|
3915
3938
|
}
|
|
3916
3939
|
|
|
3917
|
-
|
|
3918
|
-
id?: string | null;
|
|
3919
|
-
};
|
|
3920
|
-
declare class CmatUploadQueueComponent implements AfterViewInit {
|
|
3940
|
+
declare class CmatUploadQueueComponent implements AfterViewInit, OnChanges {
|
|
3921
3941
|
fileUploads: QueryList<CmatUploadComponent>;
|
|
3922
3942
|
fileAlias: string;
|
|
3923
3943
|
filePath: string;
|
|
@@ -3929,21 +3949,23 @@ declare class CmatUploadQueueComponent implements AfterViewInit {
|
|
|
3929
3949
|
accept: string;
|
|
3930
3950
|
title: string;
|
|
3931
3951
|
editMode: boolean;
|
|
3932
|
-
filesData:
|
|
3952
|
+
filesData: FileModel[];
|
|
3933
3953
|
outputRemoveIdEvent: EventEmitter<string>;
|
|
3934
3954
|
outputUploadIdEvent: EventEmitter<string>;
|
|
3935
|
-
outputFilesDataEvent: EventEmitter<
|
|
3955
|
+
outputFilesDataEvent: EventEmitter<FileModel[]>;
|
|
3936
3956
|
id: string;
|
|
3937
3957
|
readonly isHandSet: i0.WritableSignal<boolean>;
|
|
3958
|
+
readonly fileDataSource: i0.WritableSignal<FileModel[]>;
|
|
3938
3959
|
private _cmatMediaWatcherService;
|
|
3939
3960
|
private _elementRef;
|
|
3940
3961
|
private readonly _destroyRef;
|
|
3941
3962
|
constructor();
|
|
3942
3963
|
onDrop(event: DragEvent): void;
|
|
3943
3964
|
onDropOver(event: DragEvent): void;
|
|
3965
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
3944
3966
|
ngAfterViewInit(): void;
|
|
3945
|
-
add(file:
|
|
3946
|
-
upload(event:
|
|
3967
|
+
add(file: File): void;
|
|
3968
|
+
upload(event: FileModel): void;
|
|
3947
3969
|
remove(event: CmatUploadComponent): void;
|
|
3948
3970
|
uploadAll(): void;
|
|
3949
3971
|
removeAll(): void;
|
|
@@ -3953,30 +3975,6 @@ declare class CmatUploadQueueComponent implements AfterViewInit {
|
|
|
3953
3975
|
static ɵcmp: i0.ɵɵComponentDeclaration<CmatUploadQueueComponent, "cmat-upload-queue", ["cmatUploadQueue"], { "fileAlias": { "alias": "fileAlias"; "required": false; }; "filePath": { "alias": "filePath"; "required": false; }; "fileCategory": { "alias": "fileCategory"; "required": false; }; "isPublic": { "alias": "isPublic"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autoUpload": { "alias": "autoUpload"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "title": { "alias": "title"; "required": false; }; "editMode": { "alias": "editMode"; "required": false; }; "filesData": { "alias": "filesData"; "required": false; }; }, { "outputRemoveIdEvent": "outputRemoveIdEvent"; "outputUploadIdEvent": "outputUploadIdEvent"; "outputFilesDataEvent": "outputFilesDataEvent"; }, never, never, true, never>;
|
|
3954
3976
|
}
|
|
3955
3977
|
|
|
3956
|
-
interface FileModel {
|
|
3957
|
-
id?: string | null;
|
|
3958
|
-
fileName: string;
|
|
3959
|
-
filePath: string;
|
|
3960
|
-
fileStatus?: 'Uploaded' | 'Processed';
|
|
3961
|
-
length: number;
|
|
3962
|
-
isPublic: boolean;
|
|
3963
|
-
uploadUserId?: string;
|
|
3964
|
-
uploadUserName?: string;
|
|
3965
|
-
uploadDate: Date;
|
|
3966
|
-
fileType: 'csv' | 'gif' | 'word' | 'excel' | 'jpg' | 'outlook' | 'pdf' | 'png' | 'ppt' | 'file' | 'text' | 'video' | 'zip';
|
|
3967
|
-
fileCategory: string;
|
|
3968
|
-
data?: unknown;
|
|
3969
|
-
}
|
|
3970
|
-
interface FileCategoryModel {
|
|
3971
|
-
name: string;
|
|
3972
|
-
value: number;
|
|
3973
|
-
}
|
|
3974
|
-
interface FileListModel {
|
|
3975
|
-
data: FileModel[];
|
|
3976
|
-
dataCount: number;
|
|
3977
|
-
category: FileCategoryModel[];
|
|
3978
|
-
}
|
|
3979
|
-
|
|
3980
3978
|
declare class CmatFilesUtilService {
|
|
3981
3979
|
private _http;
|
|
3982
3980
|
private _urlStateConfigService;
|
|
@@ -4695,4 +4693,4 @@ declare class CmatUtilsService {
|
|
|
4695
4693
|
}
|
|
4696
4694
|
|
|
4697
4695
|
export { AngularShape, AngularShapeView, CLOCK_INNER_RADIUS, CLOCK_OUTER_RADIUS, CLOCK_RADIUS, CLOCK_TICK_RADIUS, CMAT_APP_CONFIG, CMAT_CRYPTO_CONFIG, CMAT_DATETIMEPICKER_SCROLL_STRATEGY, CMAT_DATETIMEPICKER_SCROLL_STRATEGY_FACTORY, CMAT_DATETIMEPICKER_SCROLL_STRATEGY_FACTORY_PROVIDER, CMAT_DATETIMEPICKER_VALIDATORS, CMAT_DATETIMEPICKER_VALUE_ACCESSOR, CMAT_DATETIME_FORMATS, CMAT_DAYJS_DATETIME_FORMATS, CMAT_DAYJS_DATE_ADAPTER_OPTIONS, CMAT_DAYJS_DATE_ADAPTER_OPTIONS_FACTORY, CMAT_DAYJS_DATE_FORMATS, CMAT_MATERIAL_COLOR_PICKER_VALUE_ACCESSOR, CMAT_NATIVE_DATETIME_FORMATS, CNativeDatetimeAdapter, ChartNode, CmatAddonsWrapperComponent, CmatAlertDialog, CmatAlertMessage, CmatAlertService, CmatAnimationOnScrollDirective, CmatArrowCursorDirective, CmatAutofocusDirective, CmatBreadcrumbComponent, CmatBreadcrumbItemDirective, CmatBreadcrumbService, CmatButtonTypeComponent, CmatBytesPipe, CmatCardComponent, CmatCardWrapperComponent, CmatCarouselComponent, CmatCarouselFooterComponent, CmatCarouselHeaderComponent, CmatCarouselTemplateDirective, CmatCascadeBottomSheetComponent, CmatCascadeListComponent, CmatCascadeTypeComponent, CmatCheckListTypeComponent, CmatChipInputComponent, CmatChipsInputTypeComponent, CmatCodeEditorComponent, CmatColorPickerTypeComponent, CmatConfigService, CmatConfirmationService, CmatDataExporterDirective, CmatDataService, CmatDateFormatPipe, CmatDateRangeComponent, CmatDateRangeTypeComponent, CmatDateTimeDisplayComponent, CmatDatepickerTypeComponent, CmatDatetimepickerCalendarBodyComponent, CmatDatetimepickerCalendarCellComponent, CmatDatetimepickerCalendarComponent, CmatDatetimepickerClockComponent, CmatDatetimepickerComponent, CmatDatetimepickerContentComponent, CmatDatetimepickerFilterType, CmatDatetimepickerInputDirective, CmatDatetimepickerInputEvent, CmatDatetimepickerMonthViewComponent, CmatDatetimepickerToggleComponent, CmatDatetimepickerToggleIconDirective, CmatDatetimepickerYearViewComponent, CmatDebounceClickDirective, CmatDebounceKeyupDirective, CmatDialogType, CmatDigitOnlyDirective, CmatDrawerComponent, CmatDrawerService, CmatEmptyStateComponent, CmatEqualValidatorDirective, CmatExpansionWrapperComponent, CmatExportAsService, CmatFilePreviewComponent, CmatFilesUtilService, CmatFilterToolbarComponent, CmatFindByKeyPipe, CmatFormActionsComponent, CmatFormFieldWrapperComponent, CmatFullscreenComponent, CmatGroupByPipe, CmatHighlightComponent, CmatHighlightService, CmatHorizontalNavigationComponent, CmatImageComponent, CmatInlineLoadingComponent, CmatJsonEditorComponent, CmatKeysPipe, CmatKnobInputComponent, CmatKnobTypeComponent, CmatLoadingInterceptor, CmatLoadingService, CmatLocalStorageService, CmatMaskDirective, CmatMasonryComponent, CmatMaterialColorPickerComponent, CmatMediaWatcherService, CmatMessageSeverity, CmatMultiCheckboxTypeComponent, CmatNavigationItem, CmatNavigationService, CmatNumberTypeComponent, CmatOrgChartComponent, CmatOtpInputComponent, CmatPageHeaderComponent, CmatPaginatePipe, CmatPaginationComponent, CmatPaginationDirective, CmatPaginationService, CmatPanelWrapperComponent, CmatPassToggleVisibilityComponent, CmatPasswordStrengthComponent, CmatPasswordStrengthInfoComponent, CmatPlatformService, CmatPopoverComponent, CmatPopoverTargetDirective, CmatPopoverTriggerDirective, CmatProgressBarComponent, CmatQRCodeComponent, CmatQuillTypeComponent, CmatRadioTypeComponent, CmatRatingComponent, CmatRatingTypeComponent, CmatRepeatTypeComponent, CmatRichTextEditorComponent, CmatSeamlessAutoScrollDirective, CmatSecurePipe, CmatSelectSearchComponent, CmatSelectTableComponent, CmatSelectTableTypeComponent, CmatSelectTreeComponent, CmatSelectTreeFlatNode, CmatSelectTreeNode, CmatSelectTreeTypeComponent, CmatSelectTypeComponent, CmatSelectedColor, CmatSliderTypeComponent, CmatSpeedDialActionsComponent, CmatSpeedDialComponent, CmatSpeedDialTriggerComponent, CmatSplashScreenService, CmatStatusTagComponent, CmatStepperHorizontalTypeComponent, CmatStepperVerticalTypeComponent, CmatTabTypeComponent, CmatTableToolbarComponent, CmatTableTypeComponent, CmatTagsTypeComponent, CmatTextareaTypeComponent, CmatTimelineComponent, CmatTimelineItemComponent, CmatTimelineItemIconDirective, CmatTimelineItemLabelDirective, CmatTitleService, CmatToastComponent, CmatToastModalComponent, CmatToastService, CmatTransferFilterCondition, CmatTransferItemFlatNode, CmatTransferItemNode, CmatTransferPickerComponent, CmatTransferPickerFilterComponent, CmatTransferPickerSearchComponent, CmatTransferPickerService, CmatTransferPickerSourceComponent, CmatTransferPickerTargetComponent, CmatTranslationService, CmatTreeTableColumnDirective, CmatTreeTableComponent, CmatTreeTableNode, CmatUploadComponent, CmatUploadQueueComponent, CmatUploadTypeComponent, CmatUppercasePipe, CmatUrlStateConfigService, CmatUtilsService, CmatVerticalNavigationComponent, DatetimeAdapter, DayjsDateAdapter, DayjsDatetimeAdapter, ExportType, MAT_SELECTSEARCH_DEFAULT_OPTIONS, addonsExtension, configurableDefaultOptions, initializeCmatUtilsConfig, register, registerInfo };
|
|
4698
|
-
export type { AngularShapeConfig, AnimationMode, ApiResult, CMAT_TIMELINE_ORIENTATION, CMAT_TIMELINE_POSITION, CmatAMPM, CmatAppConfig, CmatAppConfigBase, CmatBreadcrumb, CmatBreadcrumbDefinition, CmatBreadcrumbFunction, CmatBreadcrumbObject, CmatCalendarView, CmatCardFace, CmatCarouselPageEvent, CmatCarouselResponsiveOptions, CmatCarouselTemplates, CmatCascadeOptionsInterface, CmatClockView, CmatConfirmationConfig, CmatCryptoConfig, CmatDatetimeFormats, CmatDatetimepickerMode, CmatDatetimepickerType, CmatDrawerMode, CmatDrawerPosition, CmatNavigationComponent, CmatPaginatePipeArgs, CmatPaginationInstance, CmatPipeState, CmatPopoverPosition, CmatPopoverPositionEnd, CmatPopoverPositionStart, CmatPopoverScrollStrategy, CmatPopoverTriggerEvent, CmatScheme, CmatScreens, CmatSelectTableColumn, CmatSelectTableDataSource, CmatSelectTableFilter, CmatSelectTableRow, CmatSourceOptions, CmatTheme, CmatThemeOption, CmatToastModel, CmatTransferFilterData, CmatTransferFilterItem, CmatVerticalNavigationAppearance, CmatVerticalNavigationMode, CmatVerticalNavigationPosition, Collection, ConfigurableDefaultOptions, Content, CustomFormFieldProps, DataExporterItem, DateRangeDisplayValue, DateRangeInputValue, DateRangeOutputValue, DatetimepickerDropdownPositionX, DatetimepickerDropdownPositionY, DayJsDateAdapterOptions, Direction, ExcelOptions, ExportAsConfig, ExporterListInfo, FileCategoryModel, FileListModel, FileModel, FormlyMultiCheckboxFieldConfig, FormlyRadioFieldConfig, FormlySliderFieldConfig, GlobalConfigModel, GlobalPosition, GlobalTheme, GlobalType, GroupByItem, GroupByResult, INode, IUrlStateConfig, MatSelectSearchOptions, Options, Page, Position, PositionX, PositionY, StorageEntry, StorageOptions, SupportedExtensions, Theme, ToastAPrefix, TxtOptions, Type
|
|
4696
|
+
export type { AngularShapeConfig, AnimationMode, ApiResult, CMAT_TIMELINE_ORIENTATION, CMAT_TIMELINE_POSITION, CmatAMPM, CmatAppConfig, CmatAppConfigBase, CmatBreadcrumb, CmatBreadcrumbDefinition, CmatBreadcrumbFunction, CmatBreadcrumbObject, CmatCalendarView, CmatCardFace, CmatCarouselPageEvent, CmatCarouselResponsiveOptions, CmatCarouselTemplates, CmatCascadeOptionsInterface, CmatClockView, CmatConfirmationConfig, CmatCryptoConfig, CmatDatetimeFormats, CmatDatetimepickerMode, CmatDatetimepickerType, CmatDrawerMode, CmatDrawerPosition, CmatNavigationComponent, CmatPaginatePipeArgs, CmatPaginationInstance, CmatPipeState, CmatPopoverPosition, CmatPopoverPositionEnd, CmatPopoverPositionStart, CmatPopoverScrollStrategy, CmatPopoverTriggerEvent, CmatScheme, CmatScreens, CmatSelectTableColumn, CmatSelectTableDataSource, CmatSelectTableFilter, CmatSelectTableRow, CmatSourceOptions, CmatTheme, CmatThemeOption, CmatToastModel, CmatTransferFilterData, CmatTransferFilterItem, CmatVerticalNavigationAppearance, CmatVerticalNavigationMode, CmatVerticalNavigationPosition, Collection, ConfigurableDefaultOptions, Content, CustomFormFieldProps, DataExporterItem, DateRangeDisplayValue, DateRangeInputValue, DateRangeOutputValue, DatetimepickerDropdownPositionX, DatetimepickerDropdownPositionY, DayJsDateAdapterOptions, Direction, ExcelOptions, ExportAsConfig, ExporterListInfo, FileCategoryModel, FileListModel, FileModel, FormlyMultiCheckboxFieldConfig, FormlyRadioFieldConfig, FormlySliderFieldConfig, GlobalConfigModel, GlobalPosition, GlobalTheme, GlobalType, GroupByItem, GroupByResult, INode, IUrlStateConfig, MatSelectSearchOptions, Options, Page, Position, PositionX, PositionY, StorageEntry, StorageOptions, SupportedExtensions, Theme, ToastAPrefix, TxtOptions, Type };
|