@falcon-ng/tailwind 0.0.12 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/base-form-component.mjs +2 -2
- package/esm2022/lib/component/auto-complete/auto-complete.component.mjs +5 -5
- package/esm2022/lib/component/bottom-sheet/bottom-sheet.component.mjs +4 -6
- package/esm2022/lib/component/button/button.component.mjs +4 -4
- package/esm2022/lib/component/button-toggle/button-toggle.component.mjs +4 -4
- package/esm2022/lib/component/checkbox/checkbox.component.mjs +4 -4
- package/esm2022/lib/component/chips/chip.component.mjs +4 -4
- package/esm2022/lib/component/date-picker/date-picker.component.mjs +5 -5
- package/esm2022/lib/component/dialog/dialog.component.mjs +4 -4
- package/esm2022/lib/component/pagination/pagination.component.mjs +3 -3
- package/esm2022/lib/component/progress-bar/progress-bar.component.mjs +3 -3
- package/esm2022/lib/component/progress-spinner/progress-spinner.component.mjs +3 -3
- package/esm2022/lib/component/radio/radio.component.mjs +4 -4
- package/esm2022/lib/component/rich-text-editor/rich-text-editor.component.mjs +5 -5
- package/esm2022/lib/component/select/select.component.mjs +4 -4
- package/esm2022/lib/component/slide-toggle/slide-toggle.component.mjs +4 -4
- package/esm2022/lib/component/slider/slider.component.mjs +4 -4
- package/esm2022/lib/component/snack-bar/snack-bar.component.mjs +3 -3
- package/esm2022/lib/component/table/table.component.mjs +4 -4
- package/esm2022/lib/component/textarea/textarea.component.mjs +5 -5
- package/esm2022/lib/component/textbox/textbox.component.mjs +5 -5
- package/esm2022/lib/control-builder/control-builder.component.mjs +4 -4
- package/esm2022/lib/falcon-tailwind.module.mjs +230 -0
- package/esm2022/lib/model/constant.mjs +17 -17
- package/esm2022/lib/model/layout.mjs +2 -0
- package/esm2022/lib/reactive-field.directive.mjs +4 -4
- package/esm2022/lib/service/appsetting.service.mjs +3 -3
- package/esm2022/lib/service/http/generic-http-client.mjs +4 -4
- package/esm2022/lib/service/http/igeneric-http-client.mjs +4 -4
- package/esm2022/lib/service/logger.service.mjs +4 -4
- package/esm2022/lib/service/open-id/TokenHelperService.mjs +3 -3
- package/esm2022/lib/service/open-id/auth-guard.service.mjs +3 -3
- package/esm2022/lib/service/open-id/auth.service.mjs +3 -3
- package/esm2022/public-api.mjs +3 -23
- package/fesm2022/falcon-ng-tailwind.mjs +150 -486
- package/fesm2022/falcon-ng-tailwind.mjs.map +1 -1
- package/lib/base-form-component.d.ts +1 -1
- package/lib/component/auto-complete/auto-complete.component.d.ts +1 -2
- package/lib/component/bottom-sheet/bottom-sheet.component.d.ts +0 -1
- package/lib/component/button/button.component.d.ts +1 -1
- package/lib/component/button-toggle/button-toggle.component.d.ts +1 -1
- package/lib/component/checkbox/checkbox.component.d.ts +1 -1
- package/lib/component/chips/chip.component.d.ts +2 -2
- package/lib/component/date-picker/date-picker.component.d.ts +1 -1
- package/lib/component/dialog/dialog.component.d.ts +1 -1
- package/lib/component/radio/radio.component.d.ts +3 -3
- package/lib/component/rich-text-editor/rich-text-editor.component.d.ts +1 -1
- package/lib/component/select/select.component.d.ts +1 -1
- package/lib/component/slide-toggle/slide-toggle.component.d.ts +1 -1
- package/lib/component/slider/slider.component.d.ts +1 -1
- package/lib/component/table/table.component.d.ts +2 -2
- package/lib/component/textarea/textarea.component.d.ts +1 -1
- package/lib/component/textbox/textbox.component.d.ts +1 -1
- package/lib/control-builder/control-builder.component.d.ts +1 -1
- package/lib/{falcon-core.module.d.ts → falcon-tailwind.module.d.ts} +6 -6
- package/lib/model/constant.d.ts +27 -1
- package/lib/model/layout.d.ts +23 -0
- package/lib/reactive-field.directive.d.ts +1 -1
- package/lib/service/http/generic-http-client.d.ts +1 -1
- package/lib/service/http/igeneric-http-client.d.ts +1 -1
- package/lib/service/logger.service.d.ts +1 -1
- package/package.json +3 -3
- package/public-api.d.ts +2 -19
- package/README.md +0 -71
- package/esm2022/lib/base-control.mjs +0 -50
- package/esm2022/lib/control-type/AutoComplete.mjs +0 -8
- package/esm2022/lib/control-type/Button.mjs +0 -8
- package/esm2022/lib/control-type/ButtonToggle.mjs +0 -8
- package/esm2022/lib/control-type/CheckBox.mjs +0 -8
- package/esm2022/lib/control-type/Chip.mjs +0 -8
- package/esm2022/lib/control-type/DatePicker.mjs +0 -8
- package/esm2022/lib/control-type/Divider.mjs +0 -8
- package/esm2022/lib/control-type/Editor.mjs +0 -8
- package/esm2022/lib/control-type/Radio.mjs +0 -8
- package/esm2022/lib/control-type/RichTextEditor.mjs +0 -8
- package/esm2022/lib/control-type/SlideToggle.mjs +0 -8
- package/esm2022/lib/control-type/Slider.mjs +0 -8
- package/esm2022/lib/control-type/Textarea.mjs +0 -8
- package/esm2022/lib/control-type/Textbox.mjs +0 -8
- package/esm2022/lib/control-type/select.mjs +0 -8
- package/esm2022/lib/falcon-core.module.mjs +0 -230
- package/esm2022/lib/model/enum.mjs +0 -2
- package/esm2022/lib/model/interface.mjs +0 -2
- package/esm2022/lib/model/ivalidator.mjs +0 -2
- package/esm2022/lib/module/angularmaterial.module.mjs +0 -189
- package/lib/base-control.d.ts +0 -105
- package/lib/control-type/AutoComplete.d.ts +0 -5
- package/lib/control-type/Button.d.ts +0 -5
- package/lib/control-type/ButtonToggle.d.ts +0 -5
- package/lib/control-type/CheckBox.d.ts +0 -5
- package/lib/control-type/Chip.d.ts +0 -5
- package/lib/control-type/DatePicker.d.ts +0 -5
- package/lib/control-type/Divider.d.ts +0 -5
- package/lib/control-type/Editor.d.ts +0 -5
- package/lib/control-type/Radio.d.ts +0 -5
- package/lib/control-type/RichTextEditor.d.ts +0 -5
- package/lib/control-type/SlideToggle.d.ts +0 -5
- package/lib/control-type/Slider.d.ts +0 -5
- package/lib/control-type/Textarea.d.ts +0 -5
- package/lib/control-type/Textbox.d.ts +0 -5
- package/lib/control-type/select.d.ts +0 -5
- package/lib/model/enum.d.ts +0 -144
- package/lib/model/interface.d.ts +0 -299
- package/lib/model/ivalidator.d.ts +0 -18
- package/lib/module/angularmaterial.module.d.ts +0 -49
package/lib/model/enum.d.ts
DELETED
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @description
|
|
3
|
-
* Enum use for setting the form control Types.
|
|
4
|
-
* @usageNotes
|
|
5
|
-
* ```ts
|
|
6
|
-
* export class Textbox extends BaseControl<string>{
|
|
7
|
-
* override controlType = ControlType.Select;
|
|
8
|
-
* }
|
|
9
|
-
* ```
|
|
10
|
-
*/
|
|
11
|
-
export declare const enum ControlType {
|
|
12
|
-
TextBox = 0,
|
|
13
|
-
TextArea = 1,
|
|
14
|
-
Select = 2,
|
|
15
|
-
DatePicker = 3,
|
|
16
|
-
Radio = 4,
|
|
17
|
-
Checkbox = 5,
|
|
18
|
-
Button = 6,
|
|
19
|
-
SlideToggle = 7,
|
|
20
|
-
Slider = 8,
|
|
21
|
-
ButtonToggle = 9,
|
|
22
|
-
AutoComplete = 10,
|
|
23
|
-
Chip = 11,
|
|
24
|
-
Editor = 12,
|
|
25
|
-
Divider = 13
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* @description
|
|
29
|
-
* Enum use for Appearance of the control.
|
|
30
|
-
* @usageNotes
|
|
31
|
-
* Before and After property should be only use for Checkbox and Radio button
|
|
32
|
-
* ```ts
|
|
33
|
-
* if (componentType == ComponentType.Radio && componentType == ComponentType.Checkbox) THEN
|
|
34
|
-
* only use Appearance Before and After
|
|
35
|
-
* ```
|
|
36
|
-
*/
|
|
37
|
-
export declare const enum Appearance {
|
|
38
|
-
/**
|
|
39
|
-
* @usageNotes Should be only use for input, textbox, and select
|
|
40
|
-
*/
|
|
41
|
-
Plain = "plain",
|
|
42
|
-
Legacy = "legacy",
|
|
43
|
-
Standard = "standard",
|
|
44
|
-
Fill = "fill",
|
|
45
|
-
Outline = "outline",
|
|
46
|
-
/**
|
|
47
|
-
* @usageNotes Should be only use for label position
|
|
48
|
-
*/
|
|
49
|
-
Before = "before",
|
|
50
|
-
After = "after",
|
|
51
|
-
/**
|
|
52
|
-
* @usageNotes Should be only use for select
|
|
53
|
-
*/
|
|
54
|
-
Multiple = "true",
|
|
55
|
-
/**
|
|
56
|
-
* @usageNotes Should be only use for Buttom
|
|
57
|
-
*/
|
|
58
|
-
Basic = 0,
|
|
59
|
-
Raised = 1,
|
|
60
|
-
Stroked = 2,
|
|
61
|
-
Flat = 3,
|
|
62
|
-
Icon = 4,
|
|
63
|
-
FAB = 5,
|
|
64
|
-
MiniFAB = 6,
|
|
65
|
-
routeLink = 7,
|
|
66
|
-
routeHref = 8
|
|
67
|
-
}
|
|
68
|
-
/**
|
|
69
|
-
* @description
|
|
70
|
-
* Enum use for setting the attribute Types.
|
|
71
|
-
* @usageNotes
|
|
72
|
-
* ```ts
|
|
73
|
-
* componentProperty: {
|
|
74
|
-
* attrType: InputTypes.Text
|
|
75
|
-
* }
|
|
76
|
-
* ```
|
|
77
|
-
*/
|
|
78
|
-
export declare const enum InputTypes {
|
|
79
|
-
Color = "color",
|
|
80
|
-
Date = "date",
|
|
81
|
-
DatetimeLocal = "datetime-local",
|
|
82
|
-
Email = "email",
|
|
83
|
-
Month = "month",
|
|
84
|
-
Number = "number",
|
|
85
|
-
Password = "password",
|
|
86
|
-
Search = "search",
|
|
87
|
-
Tel = "tel",
|
|
88
|
-
Text = "text",
|
|
89
|
-
Time = "time",
|
|
90
|
-
Url = "url",
|
|
91
|
-
Week = "week",
|
|
92
|
-
/**
|
|
93
|
-
* @usageNotes Should be only use for Buttom
|
|
94
|
-
*/
|
|
95
|
-
Button = "button",
|
|
96
|
-
Submit = "submit",
|
|
97
|
-
DragDrop = "dragDrop"
|
|
98
|
-
}
|
|
99
|
-
/**
|
|
100
|
-
* @description
|
|
101
|
-
* Enum use for setting HTTP method.
|
|
102
|
-
* @usageNotes
|
|
103
|
-
* ```ts
|
|
104
|
-
* this.genericHttpClientService.Delete(this.deleteUserUrl).subscribe(item => {}, error => {});
|
|
105
|
-
* ```
|
|
106
|
-
*/
|
|
107
|
-
export declare const enum HttpMethod {
|
|
108
|
-
Get = "GET",
|
|
109
|
-
Post = "POST",
|
|
110
|
-
Put = "PUT",
|
|
111
|
-
Patch = "PATCH",
|
|
112
|
-
Delete = "DELETE"
|
|
113
|
-
}
|
|
114
|
-
/**
|
|
115
|
-
* @description
|
|
116
|
-
* Enum use for Table actions
|
|
117
|
-
*/
|
|
118
|
-
export declare const enum TableAction {
|
|
119
|
-
View = 0,
|
|
120
|
-
Edit = 1,
|
|
121
|
-
Delete = 2,
|
|
122
|
-
RightArrow = 3
|
|
123
|
-
}
|
|
124
|
-
/**
|
|
125
|
-
* @description
|
|
126
|
-
* Enum use for setting the Floating label.
|
|
127
|
-
* @usageNotes
|
|
128
|
-
* ```ts
|
|
129
|
-
* componentProperty: {
|
|
130
|
-
* floatLabel: Floatinglabel.Always
|
|
131
|
-
* }
|
|
132
|
-
* ```
|
|
133
|
-
*/
|
|
134
|
-
export declare const enum Floatinglabel {
|
|
135
|
-
Auto = "auto",
|
|
136
|
-
Always = "always"
|
|
137
|
-
}
|
|
138
|
-
export declare const enum LoggingLevel {
|
|
139
|
-
None = "None",
|
|
140
|
-
Verbose = "Verbose",
|
|
141
|
-
Info = "Info",
|
|
142
|
-
Warnings = "Warnings",
|
|
143
|
-
Errors = "Errors"
|
|
144
|
-
}
|
package/lib/model/interface.d.ts
DELETED
|
@@ -1,299 +0,0 @@
|
|
|
1
|
-
import { HttpHeaders, HttpParams } from '@angular/common/http';
|
|
2
|
-
import { LoggingLevel } from './enum';
|
|
3
|
-
import { EventEmitter } from '@angular/core';
|
|
4
|
-
/**
|
|
5
|
-
* @description
|
|
6
|
-
* Interface use for IRequestOptions.
|
|
7
|
-
* @usageNotes
|
|
8
|
-
* ```ts
|
|
9
|
-
* {
|
|
10
|
-
* headers : "application/json",
|
|
11
|
-
* observe : "body",
|
|
12
|
-
* params : {},
|
|
13
|
-
* reportProgress : true,
|
|
14
|
-
* responseType : "application/json",
|
|
15
|
-
* withCredentials : true,
|
|
16
|
-
* body : {"username" : "test@test.com", "password": "xxxxxx"},
|
|
17
|
-
* }
|
|
18
|
-
* ```
|
|
19
|
-
*/
|
|
20
|
-
export declare interface IRequestOptions {
|
|
21
|
-
headers?: HttpHeaders | {
|
|
22
|
-
[header: string]: string | string[];
|
|
23
|
-
};
|
|
24
|
-
observe?: 'body' | 'events' | 'response';
|
|
25
|
-
params?: HttpParams | {
|
|
26
|
-
[param: string]: string | string[];
|
|
27
|
-
};
|
|
28
|
-
reportProgress?: boolean;
|
|
29
|
-
responseType?: 'arraybuffer' | 'blob' | 'json' | 'text';
|
|
30
|
-
withCredentials?: boolean;
|
|
31
|
-
body?: any;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* @description
|
|
35
|
-
* Interface use for mat table header and column.
|
|
36
|
-
* @usageNotes
|
|
37
|
-
* ```ts
|
|
38
|
-
* columns: MatTable[] = [
|
|
39
|
-
* {
|
|
40
|
-
* columnDef: 'position',
|
|
41
|
-
* header: 'No.',
|
|
42
|
-
* cell: (element: any) => `${element.position}`
|
|
43
|
-
* }
|
|
44
|
-
* ]
|
|
45
|
-
* ```
|
|
46
|
-
*/
|
|
47
|
-
export declare interface MatTable {
|
|
48
|
-
columnDef?: string;
|
|
49
|
-
header?: string;
|
|
50
|
-
cell?: any;
|
|
51
|
-
link?: IRouteLink;
|
|
52
|
-
}
|
|
53
|
-
/**
|
|
54
|
-
* @description
|
|
55
|
-
* Interface use for mat table configuration.
|
|
56
|
-
* @usageNotes
|
|
57
|
-
* ```ts
|
|
58
|
-
* {
|
|
59
|
-
* columns : MatTable[] = [{
|
|
60
|
-
* columnDef: 'position',
|
|
61
|
-
* header: 'No.',
|
|
62
|
-
* cell: (element: any) => `${element.position}`
|
|
63
|
-
* }, filter : true,
|
|
64
|
-
* pagination : true
|
|
65
|
-
* ]}
|
|
66
|
-
* ```
|
|
67
|
-
*/
|
|
68
|
-
export declare interface MatTableConfig {
|
|
69
|
-
columns?: MatTable[];
|
|
70
|
-
dataSource?: any;
|
|
71
|
-
filter?: boolean;
|
|
72
|
-
paginationConfig?: MatTablePaginationConfig;
|
|
73
|
-
progressBar?: boolean;
|
|
74
|
-
action?: ITableAction;
|
|
75
|
-
property?: IMatTableStyle;
|
|
76
|
-
}
|
|
77
|
-
/**
|
|
78
|
-
* @description
|
|
79
|
-
* Interface use for mat table style
|
|
80
|
-
*/
|
|
81
|
-
export declare interface IMatTableStyle {
|
|
82
|
-
css?: string;
|
|
83
|
-
style?: string;
|
|
84
|
-
}
|
|
85
|
-
/**
|
|
86
|
-
* @description
|
|
87
|
-
* Interface use for mat table pagination configuration.
|
|
88
|
-
*/
|
|
89
|
-
export declare interface MatTablePaginationConfig {
|
|
90
|
-
pagination?: boolean;
|
|
91
|
-
pageSizeOptions?: number[];
|
|
92
|
-
}
|
|
93
|
-
/**
|
|
94
|
-
* @description
|
|
95
|
-
* Interface use for mat table action button configuration.
|
|
96
|
-
* view - action for view only
|
|
97
|
-
* edit - action for edit the row
|
|
98
|
-
* delete - action for delete the row
|
|
99
|
-
* menu - context menu for more action
|
|
100
|
-
*/
|
|
101
|
-
export declare interface ITableAction {
|
|
102
|
-
view?: boolean;
|
|
103
|
-
edit?: boolean;
|
|
104
|
-
delete?: boolean;
|
|
105
|
-
arrowRight?: boolean;
|
|
106
|
-
isMenu: boolean;
|
|
107
|
-
menu?: IMatHint[];
|
|
108
|
-
}
|
|
109
|
-
/**
|
|
110
|
-
* @description
|
|
111
|
-
* Interface use for material hint component.
|
|
112
|
-
*/
|
|
113
|
-
export declare interface IMatHint {
|
|
114
|
-
isIcon: boolean;
|
|
115
|
-
icon?: IIcon;
|
|
116
|
-
text?: string;
|
|
117
|
-
link?: IRouteLink;
|
|
118
|
-
disabled?: boolean;
|
|
119
|
-
show?: boolean;
|
|
120
|
-
}
|
|
121
|
-
/**
|
|
122
|
-
* @description
|
|
123
|
-
* Interface for icons
|
|
124
|
-
*/
|
|
125
|
-
export declare interface IIcon {
|
|
126
|
-
iconText?: string;
|
|
127
|
-
iconColor?: string;
|
|
128
|
-
}
|
|
129
|
-
/**
|
|
130
|
-
* @description
|
|
131
|
-
* Interface for routerLink
|
|
132
|
-
*/
|
|
133
|
-
export declare interface IRouteLink {
|
|
134
|
-
routerLink: string | any;
|
|
135
|
-
queryParams?: string;
|
|
136
|
-
isLink?: boolean;
|
|
137
|
-
}
|
|
138
|
-
/**
|
|
139
|
-
* @description
|
|
140
|
-
* Interface for Dialog Data
|
|
141
|
-
*/
|
|
142
|
-
export declare interface IDialogData {
|
|
143
|
-
title: string;
|
|
144
|
-
cancelBtnText: string;
|
|
145
|
-
mainbtnText?: string;
|
|
146
|
-
bodyMessage?: string;
|
|
147
|
-
}
|
|
148
|
-
/**
|
|
149
|
-
* @description
|
|
150
|
-
* Interface use for setting the suffix and prefix.
|
|
151
|
-
* @usageNotes
|
|
152
|
-
* ```ts
|
|
153
|
-
* new Textbox({
|
|
154
|
-
* label: "Prefix & Suffix icon",
|
|
155
|
-
* appearance: Appearance.Outline,
|
|
156
|
-
* placeHolder: "Prefix & Suffix icon",
|
|
157
|
-
* attrType: InputTypes.Text,
|
|
158
|
-
* prefix : {
|
|
159
|
-
* isIcon : true,
|
|
160
|
-
* text : "euro"
|
|
161
|
-
* },
|
|
162
|
-
* suffix : {
|
|
163
|
-
* isIcon: true,
|
|
164
|
-
* text : "done"
|
|
165
|
-
* }
|
|
166
|
-
* });
|
|
167
|
-
* ```
|
|
168
|
-
*/
|
|
169
|
-
export declare interface ISuffixPrefixConfig {
|
|
170
|
-
isIcon?: boolean;
|
|
171
|
-
text?: string;
|
|
172
|
-
toolTipText?: string;
|
|
173
|
-
}
|
|
174
|
-
/**
|
|
175
|
-
* @description
|
|
176
|
-
* Interface use for an app setting configuration.
|
|
177
|
-
*/
|
|
178
|
-
export declare interface IAppSettingViewModel {
|
|
179
|
-
baseUrl?: string;
|
|
180
|
-
loggingLevel?: LoggingLevel;
|
|
181
|
-
}
|
|
182
|
-
/**
|
|
183
|
-
* View model for snack bar Message and Action Text
|
|
184
|
-
*/
|
|
185
|
-
export interface SnackbarModel {
|
|
186
|
-
messageText: string;
|
|
187
|
-
actionText: string;
|
|
188
|
-
}
|
|
189
|
-
/**
|
|
190
|
-
* @description
|
|
191
|
-
* Interface use for setting the TextArea Property.
|
|
192
|
-
* @usageNotes
|
|
193
|
-
* ```ts
|
|
194
|
-
* componentProperty: {
|
|
195
|
-
* textAreaProperty : {
|
|
196
|
-
* cdkTextareaAutosize : true,
|
|
197
|
-
* cdkAutosizeMinRows : 1,
|
|
198
|
-
* cdkAutosizeMaxRows : 2,
|
|
199
|
-
* rows : 2,
|
|
200
|
-
* cols : 2
|
|
201
|
-
* }
|
|
202
|
-
* }
|
|
203
|
-
* ```
|
|
204
|
-
*/
|
|
205
|
-
export declare interface ITextAreaProperty {
|
|
206
|
-
cdkTextareaAutosize?: boolean;
|
|
207
|
-
cdkAutosizeMinRows?: number;
|
|
208
|
-
cdkAutosizeMaxRows?: number;
|
|
209
|
-
rows?: number;
|
|
210
|
-
cols?: number;
|
|
211
|
-
}
|
|
212
|
-
/**
|
|
213
|
-
* @description
|
|
214
|
-
* Interface use for setting the options meta for select control.
|
|
215
|
-
* @usageNotes
|
|
216
|
-
* ```ts
|
|
217
|
-
* componentProperty: {
|
|
218
|
-
* selectProperty: {multiple : true};
|
|
219
|
-
* }
|
|
220
|
-
* ```
|
|
221
|
-
*/
|
|
222
|
-
export declare interface ISelectOptions {
|
|
223
|
-
single?: boolean;
|
|
224
|
-
multiple?: boolean;
|
|
225
|
-
}
|
|
226
|
-
/**
|
|
227
|
-
* @description
|
|
228
|
-
* Interface use for setting the options meta.
|
|
229
|
-
* Disable is used for select option values
|
|
230
|
-
* @usageNotes
|
|
231
|
-
* ```ts
|
|
232
|
-
* componentProperty: {
|
|
233
|
-
* options: [{key : 'key-1', value : 'value-1', icon: 'material_icon', disabled: true}];
|
|
234
|
-
* }
|
|
235
|
-
* ```
|
|
236
|
-
*/
|
|
237
|
-
export declare interface IOptions {
|
|
238
|
-
key?: any;
|
|
239
|
-
value?: any;
|
|
240
|
-
icon?: string;
|
|
241
|
-
class?: string;
|
|
242
|
-
disabled?: boolean;
|
|
243
|
-
}
|
|
244
|
-
/**
|
|
245
|
-
* @description
|
|
246
|
-
* @param change change event for the control
|
|
247
|
-
* @param click click event for the control
|
|
248
|
-
* Events for controls
|
|
249
|
-
*/
|
|
250
|
-
export declare interface IComponentEvent<T> {
|
|
251
|
-
change?: EventEmitter<T>;
|
|
252
|
-
click?: EventEmitter<T>;
|
|
253
|
-
keyboardEnter?: EventEmitter<T>;
|
|
254
|
-
}
|
|
255
|
-
/**
|
|
256
|
-
* @description
|
|
257
|
-
* Interface use for setting the Mat Slider Property.
|
|
258
|
-
* @usageNotes
|
|
259
|
-
* ```ts
|
|
260
|
-
* componentProperty: {
|
|
261
|
-
* sliderProperty : {
|
|
262
|
-
* invert : true,
|
|
263
|
-
* step : 1,
|
|
264
|
-
* thumbLabel : false,
|
|
265
|
-
* vertical : true,
|
|
266
|
-
* horizontal : false
|
|
267
|
-
* }
|
|
268
|
-
* }
|
|
269
|
-
* ```
|
|
270
|
-
*/
|
|
271
|
-
export declare interface ISliderProperty {
|
|
272
|
-
invert?: boolean;
|
|
273
|
-
thumbLabel?: boolean;
|
|
274
|
-
vertical?: boolean;
|
|
275
|
-
min?: number;
|
|
276
|
-
max?: number;
|
|
277
|
-
step?: number;
|
|
278
|
-
tickInterval?: string | number;
|
|
279
|
-
}
|
|
280
|
-
/**
|
|
281
|
-
* @description
|
|
282
|
-
* Interface use for mat table header and column.
|
|
283
|
-
* @usageNotes
|
|
284
|
-
* ```ts
|
|
285
|
-
* columns: MatTable[] = [
|
|
286
|
-
* {
|
|
287
|
-
* columnDef: 'position',
|
|
288
|
-
* header: 'No.',
|
|
289
|
-
* cell: (element: any) => `${element.position}`
|
|
290
|
-
* }
|
|
291
|
-
* ]
|
|
292
|
-
* ```
|
|
293
|
-
*/
|
|
294
|
-
export declare interface MatTable {
|
|
295
|
-
columnDef?: string;
|
|
296
|
-
header?: string;
|
|
297
|
-
cell?: any;
|
|
298
|
-
link?: IRouteLink;
|
|
299
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @description
|
|
3
|
-
* Interface use for validation config.
|
|
4
|
-
* @usageNotes
|
|
5
|
-
* ```ts
|
|
6
|
-
* validations: [
|
|
7
|
-
* {
|
|
8
|
-
* name: "required",
|
|
9
|
-
* validator: Validators.required,
|
|
10
|
-
* message: "Required Field"
|
|
11
|
-
* }]
|
|
12
|
-
* ```
|
|
13
|
-
*/
|
|
14
|
-
export declare interface IValidator {
|
|
15
|
-
name: string;
|
|
16
|
-
validator: any;
|
|
17
|
-
message: string;
|
|
18
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/cdk/a11y";
|
|
3
|
-
import * as i2 from "@angular/cdk/clipboard";
|
|
4
|
-
import * as i3 from "@angular/cdk/stepper";
|
|
5
|
-
import * as i4 from "@angular/cdk/table";
|
|
6
|
-
import * as i5 from "@angular/cdk/tree";
|
|
7
|
-
import * as i6 from "@angular/cdk/drag-drop";
|
|
8
|
-
import * as i7 from "@angular/material/autocomplete";
|
|
9
|
-
import * as i8 from "@angular/material/badge";
|
|
10
|
-
import * as i9 from "@angular/material/bottom-sheet";
|
|
11
|
-
import * as i10 from "@angular/material/button";
|
|
12
|
-
import * as i11 from "@angular/material/button-toggle";
|
|
13
|
-
import * as i12 from "@angular/material/card";
|
|
14
|
-
import * as i13 from "@angular/material/checkbox";
|
|
15
|
-
import * as i14 from "@angular/material/chips";
|
|
16
|
-
import * as i15 from "@angular/material/stepper";
|
|
17
|
-
import * as i16 from "@angular/material/datepicker";
|
|
18
|
-
import * as i17 from "@angular/material/dialog";
|
|
19
|
-
import * as i18 from "@angular/material/divider";
|
|
20
|
-
import * as i19 from "@angular/material/expansion";
|
|
21
|
-
import * as i20 from "@angular/material/grid-list";
|
|
22
|
-
import * as i21 from "@angular/material/icon";
|
|
23
|
-
import * as i22 from "@angular/material/input";
|
|
24
|
-
import * as i23 from "@angular/material/list";
|
|
25
|
-
import * as i24 from "@angular/material/menu";
|
|
26
|
-
import * as i25 from "@angular/material/core";
|
|
27
|
-
import * as i26 from "@angular/material/paginator";
|
|
28
|
-
import * as i27 from "@angular/material/progress-bar";
|
|
29
|
-
import * as i28 from "@angular/material/progress-spinner";
|
|
30
|
-
import * as i29 from "@angular/material/radio";
|
|
31
|
-
import * as i30 from "@angular/material/select";
|
|
32
|
-
import * as i31 from "@angular/material/sidenav";
|
|
33
|
-
import * as i32 from "@angular/material/slider";
|
|
34
|
-
import * as i33 from "@angular/material/slide-toggle";
|
|
35
|
-
import * as i34 from "@angular/material/snack-bar";
|
|
36
|
-
import * as i35 from "@angular/material/sort";
|
|
37
|
-
import * as i36 from "@angular/material/table";
|
|
38
|
-
import * as i37 from "@angular/material/tabs";
|
|
39
|
-
import * as i38 from "@angular/material/toolbar";
|
|
40
|
-
import * as i39 from "@angular/material/tooltip";
|
|
41
|
-
import * as i40 from "@angular/material/tree";
|
|
42
|
-
import * as i41 from "@angular/cdk/overlay";
|
|
43
|
-
import * as i42 from "@angular/cdk/portal";
|
|
44
|
-
import * as i43 from "@angular/cdk/scrolling";
|
|
45
|
-
export declare class AngularmaterialModule {
|
|
46
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AngularmaterialModule, never>;
|
|
47
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AngularmaterialModule, never, never, [typeof i1.A11yModule, typeof i2.ClipboardModule, typeof i3.CdkStepperModule, typeof i4.CdkTableModule, typeof i5.CdkTreeModule, typeof i6.DragDropModule, typeof i7.MatAutocompleteModule, typeof i8.MatBadgeModule, typeof i9.MatBottomSheetModule, typeof i10.MatButtonModule, typeof i11.MatButtonToggleModule, typeof i12.MatCardModule, typeof i13.MatCheckboxModule, typeof i14.MatChipsModule, typeof i15.MatStepperModule, typeof i16.MatDatepickerModule, typeof i17.MatDialogModule, typeof i18.MatDividerModule, typeof i19.MatExpansionModule, typeof i20.MatGridListModule, typeof i21.MatIconModule, typeof i22.MatInputModule, typeof i23.MatListModule, typeof i24.MatMenuModule, typeof i25.MatNativeDateModule, typeof i26.MatPaginatorModule, typeof i27.MatProgressBarModule, typeof i28.MatProgressSpinnerModule, typeof i29.MatRadioModule, typeof i25.MatRippleModule, typeof i30.MatSelectModule, typeof i31.MatSidenavModule, typeof i32.MatSliderModule, typeof i33.MatSlideToggleModule, typeof i34.MatSnackBarModule, typeof i35.MatSortModule, typeof i36.MatTableModule, typeof i37.MatTabsModule, typeof i38.MatToolbarModule, typeof i39.MatTooltipModule, typeof i40.MatTreeModule, typeof i41.OverlayModule, typeof i42.PortalModule, typeof i43.ScrollingModule]>;
|
|
48
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AngularmaterialModule>;
|
|
49
|
-
}
|