cat-qw-lib 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/fesm2022/cat-qw-lib.mjs +2033 -0
- package/fesm2022/cat-qw-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/admin/action-admin/action-admin.module.d.ts +9 -0
- package/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.d.ts +5 -0
- package/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.d.ts +12 -0
- package/lib/admin/action-admin/models/action.model.d.ts +9 -0
- package/lib/admin/action-admin/state/action.service.d.ts +13 -0
- package/lib/admin/action-admin/state/action.store.d.ts +8 -0
- package/lib/admin/api-admin/api-admin.module.d.ts +18 -0
- package/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.d.ts +30 -0
- package/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.d.ts +10 -0
- package/lib/admin/api-admin/components/api-credential-form/api-credential-form.component.d.ts +14 -0
- package/lib/admin/api-admin/models/api-admin.model.d.ts +15 -0
- package/lib/admin/api-admin/models/credentials.model.d.ts +4 -0
- package/lib/admin/api-admin/state/api-admin.service.d.ts +16 -0
- package/lib/admin/api-admin/state/api-admin.store.d.ts +8 -0
- package/lib/shared/_base/base-control/base-control.component.d.ts +22 -0
- package/lib/shared/_base/base-form/base-form.component.d.ts +27 -0
- package/lib/shared/_base/base-list/base-list.component.d.ts +16 -0
- package/lib/shared/components/form-container/form-container.component.d.ts +26 -0
- package/lib/shared/components/sidebar/sidebar.component.d.ts +13 -0
- package/lib/shared/constant/CSS.d.ts +11 -0
- package/lib/shared/constant/DATASOURCES.d.ts +10 -0
- package/lib/shared/constant/ERROR.d.ts +3 -0
- package/lib/shared/constant/HEADERS.d.ts +4 -0
- package/lib/shared/constant/LIST-CONFIG.d.ts +8 -0
- package/lib/shared/constant/LOOKUPS.d.ts +3 -0
- package/lib/shared/constant/ROUTES.d.ts +12 -0
- package/lib/shared/constant/SHARED.d.ts +565 -0
- package/lib/shared/constant/URLS.d.ts +3 -0
- package/lib/shared/controls/button/button.component.d.ts +6 -0
- package/lib/shared/controls/check-box/check-box.component.d.ts +6 -0
- package/lib/shared/controls/date/date.component.d.ts +12 -0
- package/lib/shared/controls/dropdown/dropdown.component.d.ts +19 -0
- package/lib/shared/controls/file-upload/file-upload.component.d.ts +7 -0
- package/lib/shared/controls/password/password.component.d.ts +9 -0
- package/lib/shared/controls/text-area/text-area.component.d.ts +8 -0
- package/lib/shared/controls/text-box/text-box.component.d.ts +7 -0
- package/lib/shared/controls/username/username.component.d.ts +6 -0
- package/{src/lib/shared/index.ts → lib/shared/index.d.ts} +30 -35
- package/lib/shared/models/attribute.model.d.ts +41 -0
- package/lib/shared/models/base.model.d.ts +3 -0
- package/lib/shared/models/list.model.d.ts +11 -0
- package/lib/shared/pipe/capitalize-words.pipe.d.ts +7 -0
- package/lib/shared/services/app-config.service.d.ts +12 -0
- package/lib/shared/services/auth/auth.guard.d.ts +12 -0
- package/lib/shared/services/date-parser.service.d.ts +7 -0
- package/lib/shared/services/list.service.d.ts +13 -0
- package/lib/shared/services/session.service.d.ts +13 -0
- package/lib/shared/services/table.builder.d.ts +11 -0
- package/lib/shared/services/validator.service.d.ts +7 -0
- package/lib/shared/shared.module.d.ts +32 -0
- package/lib/shared/state/base.query.d.ts +19 -0
- package/lib/shared/state/base.service.d.ts +27 -0
- package/lib/shared/state/base.state.d.ts +4 -0
- package/lib/shared/state/base.store.d.ts +24 -0
- package/lib/shared/table-primary/components/table-primary.component.d.ts +26 -0
- package/lib/shared/table-primary/models/table-primary-header.model.d.ts +6 -0
- package/lib/shared/table-primary/models/table-primary.model.d.ts +5 -0
- package/package.json +25 -16
- package/{src/public-api.ts → public-api.d.ts} +6 -11
- package/ng-package.json +0 -10
- package/src/lib/admin/action-admin/action-admin.module.ts +0 -16
- package/src/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.html +0 -1
- package/src/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.scss +0 -0
- package/src/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.spec.ts +0 -23
- package/src/lib/admin/action-admin/components/admin-action-form/admin-action-form.component.ts +0 -11
- package/src/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.html +0 -5
- package/src/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.scss +0 -0
- package/src/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.spec.ts +0 -23
- package/src/lib/admin/action-admin/components/admin-action-list/admin-action-list.component.ts +0 -24
- package/src/lib/admin/action-admin/models/action.model.ts +0 -12
- package/src/lib/admin/action-admin/state/action.query.ts +0 -11
- package/src/lib/admin/action-admin/state/action.service.ts +0 -18
- package/src/lib/admin/action-admin/state/action.state.ts +0 -14
- package/src/lib/admin/action-admin/state/action.store.ts +0 -14
- package/src/lib/admin/admin.module.ts +0 -22
- package/src/lib/admin/api-admin/api-admin.module.ts +0 -39
- package/src/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.html +0 -96
- package/src/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.scss +0 -6
- package/src/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.spec.ts +0 -23
- package/src/lib/admin/api-admin/components/api-admin-form/api-admin-form.component.ts +0 -94
- package/src/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.html +0 -6
- package/src/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.scss +0 -0
- package/src/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.spec.ts +0 -23
- package/src/lib/admin/api-admin/components/api-admin-list/api-admin-list.component.ts +0 -17
- package/src/lib/admin/api-admin/components/api-credential-form/api-credential-form.component.html +0 -29
- package/src/lib/admin/api-admin/components/api-credential-form/api-credential-form.component.scss +0 -0
- package/src/lib/admin/api-admin/components/api-credential-form/api-credential-form.component.spec.ts +0 -21
- package/src/lib/admin/api-admin/components/api-credential-form/api-credential-form.component.ts +0 -25
- package/src/lib/admin/api-admin/models/api-admin.model.ts +0 -16
- package/src/lib/admin/api-admin/models/credentials.model.ts +0 -4
- package/src/lib/admin/api-admin/state/api-admin.query.ts +0 -14
- package/src/lib/admin/api-admin/state/api-admin.service.ts +0 -31
- package/src/lib/admin/api-admin/state/api-admin.state.ts +0 -14
- package/src/lib/admin/api-admin/state/api-admin.store.ts +0 -13
- package/src/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.css +0 -0
- package/src/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.html +0 -1
- package/src/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.spec.ts +0 -23
- package/src/lib/admin/dd-admin/components/dd-admin-form/dd-admin-form.component.ts +0 -11
- package/src/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.css +0 -0
- package/src/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.html +0 -1
- package/src/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.spec.ts +0 -23
- package/src/lib/admin/dd-admin/components/dd-admin-list/dd-admin-list.component.ts +0 -11
- package/src/lib/admin/dd-admin/dd-admin.module.ts +0 -12
- package/src/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.css +0 -0
- package/src/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.html +0 -1
- package/src/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.spec.ts +0 -23
- package/src/lib/admin/queue-admin/components/queue-admin-form/queue-admin-form.component.ts +0 -11
- package/src/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.css +0 -0
- package/src/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.html +0 -1
- package/src/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.spec.ts +0 -23
- package/src/lib/admin/queue-admin/components/queue-admin-list/queue-admin-list.component.ts +0 -11
- package/src/lib/admin/queue-admin/queue-admin.module.ts +0 -12
- package/src/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.css +0 -0
- package/src/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.html +0 -1
- package/src/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.spec.ts +0 -23
- package/src/lib/admin/widget-admin/components/widget-admin-form/widget-admin-form.component.ts +0 -11
- package/src/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.css +0 -0
- package/src/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.html +0 -1
- package/src/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.spec.ts +0 -23
- package/src/lib/admin/widget-admin/components/widget-admin-list/widget-admin-list.component.ts +0 -11
- package/src/lib/admin/widget-admin/widget-admin.module.ts +0 -12
- package/src/lib/shared/_base/base-control/base-control.component.html +0 -1
- package/src/lib/shared/_base/base-control/base-control.component.scss +0 -0
- package/src/lib/shared/_base/base-control/base-control.component.spec.ts +0 -21
- package/src/lib/shared/_base/base-control/base-control.component.ts +0 -55
- package/src/lib/shared/_base/base-form/base-form.component.html +0 -1
- package/src/lib/shared/_base/base-form/base-form.component.scss +0 -0
- package/src/lib/shared/_base/base-form/base-form.component.spec.ts +0 -21
- package/src/lib/shared/_base/base-form/base-form.component.ts +0 -81
- package/src/lib/shared/_base/base-list/base-list.component.html +0 -1
- package/src/lib/shared/_base/base-list/base-list.component.scss +0 -0
- package/src/lib/shared/_base/base-list/base-list.component.spec.ts +0 -21
- package/src/lib/shared/_base/base-list/base-list.component.ts +0 -31
- package/src/lib/shared/components/form-container/form-container.component.html +0 -55
- package/src/lib/shared/components/form-container/form-container.component.scss +0 -108
- package/src/lib/shared/components/form-container/form-container.component.spec.ts +0 -21
- package/src/lib/shared/components/form-container/form-container.component.ts +0 -55
- package/src/lib/shared/components/sidebar/sidebar.component.html +0 -13
- package/src/lib/shared/components/sidebar/sidebar.component.scss +0 -45
- package/src/lib/shared/components/sidebar/sidebar.component.spec.ts +0 -21
- package/src/lib/shared/components/sidebar/sidebar.component.ts +0 -26
- package/src/lib/shared/constant/CSS.ts +0 -9
- package/src/lib/shared/constant/DATASOURCES.ts +0 -10
- package/src/lib/shared/constant/ERROR.ts +0 -3
- package/src/lib/shared/constant/HEADERS.ts +0 -4
- package/src/lib/shared/constant/LIST-CONFIG.ts +0 -10
- package/src/lib/shared/constant/LOOKUPS.ts +0 -3
- package/src/lib/shared/constant/ROUTES.ts +0 -12
- package/src/lib/shared/constant/SHARED.ts +0 -603
- package/src/lib/shared/constant/URLS.ts +0 -3
- package/src/lib/shared/controls/button/button.component.html +0 -25
- package/src/lib/shared/controls/button/button.component.scss +0 -0
- package/src/lib/shared/controls/button/button.component.spec.ts +0 -21
- package/src/lib/shared/controls/button/button.component.ts +0 -15
- package/src/lib/shared/controls/check-box/check-box.component.html +0 -22
- package/src/lib/shared/controls/check-box/check-box.component.scss +0 -32
- package/src/lib/shared/controls/check-box/check-box.component.spec.ts +0 -26
- package/src/lib/shared/controls/check-box/check-box.component.ts +0 -16
- package/src/lib/shared/controls/date/date.component.html +0 -43
- package/src/lib/shared/controls/date/date.component.scss +0 -0
- package/src/lib/shared/controls/date/date.component.spec.ts +0 -21
- package/src/lib/shared/controls/date/date.component.ts +0 -42
- package/src/lib/shared/controls/dropdown/dropdown.component.html +0 -28
- package/src/lib/shared/controls/dropdown/dropdown.component.scss +0 -12
- package/src/lib/shared/controls/dropdown/dropdown.component.ts +0 -71
- package/src/lib/shared/controls/file-upload/file-upload.component.html +0 -18
- package/src/lib/shared/controls/file-upload/file-upload.component.scss +0 -0
- package/src/lib/shared/controls/file-upload/file-upload.component.spec.ts +0 -21
- package/src/lib/shared/controls/file-upload/file-upload.component.ts +0 -19
- package/src/lib/shared/controls/number-feild/number-feild.component.html +0 -39
- package/src/lib/shared/controls/number-feild/number-feild.component.scss +0 -13
- package/src/lib/shared/controls/number-feild/number-feild.component.spec.ts +0 -21
- package/src/lib/shared/controls/number-feild/number-feild.component.ts +0 -35
- package/src/lib/shared/controls/password/password.component.html +0 -22
- package/src/lib/shared/controls/password/password.component.scss +0 -0
- package/src/lib/shared/controls/password/password.component.spec.ts +0 -28
- package/src/lib/shared/controls/password/password.component.ts +0 -24
- package/src/lib/shared/controls/text-area/text-area.component.html +0 -36
- package/src/lib/shared/controls/text-area/text-area.component.scss +0 -22
- package/src/lib/shared/controls/text-area/text-area.component.spec.ts +0 -23
- package/src/lib/shared/controls/text-area/text-area.component.ts +0 -25
- package/src/lib/shared/controls/text-box/text-box.component.html +0 -44
- package/src/lib/shared/controls/text-box/text-box.component.scss +0 -25
- package/src/lib/shared/controls/text-box/text-box.component.spec.ts +0 -30
- package/src/lib/shared/controls/text-box/text-box.component.ts +0 -26
- package/src/lib/shared/controls/username/username.component.html +0 -16
- package/src/lib/shared/controls/username/username.component.scss +0 -0
- package/src/lib/shared/controls/username/username.component.spec.ts +0 -29
- package/src/lib/shared/controls/username/username.component.ts +0 -17
- package/src/lib/shared/models/attribute.model.ts +0 -42
- package/src/lib/shared/models/base.model.ts +0 -3
- package/src/lib/shared/models/list.model.ts +0 -27
- package/src/lib/shared/models/message.model.ts +0 -4
- package/src/lib/shared/pipe/capitalize-words.pipe.spec.ts +0 -8
- package/src/lib/shared/pipe/capitalize-words.pipe.ts +0 -17
- package/src/lib/shared/services/app-config.service.spec.ts +0 -16
- package/src/lib/shared/services/app-config.service.ts +0 -25
- package/src/lib/shared/services/auth/auth.guard.spec.ts +0 -17
- package/src/lib/shared/services/auth/auth.guard.ts +0 -25
- package/src/lib/shared/services/data-transformer.service.spec.ts +0 -16
- package/src/lib/shared/services/data-transformer.service.ts +0 -41
- package/src/lib/shared/services/date-parser.service.spec.ts +0 -16
- package/src/lib/shared/services/date-parser.service.ts +0 -54
- package/src/lib/shared/services/list.service.spec.ts +0 -16
- package/src/lib/shared/services/list.service.ts +0 -53
- package/src/lib/shared/services/session.service.spec.ts +0 -16
- package/src/lib/shared/services/session.service.ts +0 -37
- package/src/lib/shared/services/table.builder.ts +0 -38
- package/src/lib/shared/services/validator.service.spec.ts +0 -16
- package/src/lib/shared/services/validator.service.ts +0 -13
- package/src/lib/shared/shared.module.ts +0 -62
- package/src/lib/shared/state/base.query.ts +0 -48
- package/src/lib/shared/state/base.service.ts +0 -69
- package/src/lib/shared/state/base.state.ts +0 -6
- package/src/lib/shared/state/base.store.ts +0 -56
- package/src/lib/shared/table-primary/components/table-primary.component.html +0 -56
- package/src/lib/shared/table-primary/components/table-primary.component.scss +0 -187
- package/src/lib/shared/table-primary/components/table-primary.component.spec.ts +0 -21
- package/src/lib/shared/table-primary/components/table-primary.component.ts +0 -71
- package/src/lib/shared/table-primary/models/table-primary-header.model.ts +0 -7
- package/src/lib/shared/table-primary/models/table-primary.model.ts +0 -6
- package/src/lib/widget/components/widget-body/widget-body.component.html +0 -1
- package/src/lib/widget/components/widget-body/widget-body.component.scss +0 -0
- package/src/lib/widget/components/widget-body/widget-body.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-body/widget-body.component.ts +0 -11
- package/src/lib/widget/components/widget-container/widget-container.component.css +0 -0
- package/src/lib/widget/components/widget-container/widget-container.component.html +0 -1
- package/src/lib/widget/components/widget-container/widget-container.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-container/widget-container.component.ts +0 -11
- package/src/lib/widget/components/widget-footer/widget-footer.component.css +0 -0
- package/src/lib/widget/components/widget-footer/widget-footer.component.html +0 -1
- package/src/lib/widget/components/widget-footer/widget-footer.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-footer/widget-footer.component.ts +0 -11
- package/src/lib/widget/components/widget-header/widget-header.component.css +0 -0
- package/src/lib/widget/components/widget-header/widget-header.component.html +0 -1
- package/src/lib/widget/components/widget-header/widget-header.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-header/widget-header.component.ts +0 -11
- package/src/lib/widget/components/widget-item/widget-item.component.css +0 -0
- package/src/lib/widget/components/widget-item/widget-item.component.html +0 -1
- package/src/lib/widget/components/widget-item/widget-item.component.spec.ts +0 -23
- package/src/lib/widget/components/widget-item/widget-item.component.ts +0 -11
- package/src/lib/widget/widget.module.ts +0 -12
- package/tsconfig.lib.json +0 -15
- package/tsconfig.lib.prod.json +0 -11
- package/tsconfig.spec.json +0 -15
|
@@ -0,0 +1,565 @@
|
|
|
1
|
+
export declare class SHARED {
|
|
2
|
+
static EMPTY: string;
|
|
3
|
+
static REQUIRED_ERROR: string;
|
|
4
|
+
static EMPTYARRAY: never[];
|
|
5
|
+
static NULL: string;
|
|
6
|
+
static HIPHEN: string;
|
|
7
|
+
static SLASH: string;
|
|
8
|
+
static USERROLE: string;
|
|
9
|
+
static SESSIONKEY: string;
|
|
10
|
+
static SUCCESS: string;
|
|
11
|
+
static ERROR: string;
|
|
12
|
+
static ERROR_MESSAGE: string;
|
|
13
|
+
static SUCCESS_MESSAGE: string;
|
|
14
|
+
static DICTIONARY: string;
|
|
15
|
+
static TITLE: string;
|
|
16
|
+
static DICTIONARY_ITEM: string;
|
|
17
|
+
static DICTIONARY_ITEM_MAPPER: string;
|
|
18
|
+
static SIDEBAR_MASK: string;
|
|
19
|
+
static CUSTOMSIDEBAROVERLAY: string;
|
|
20
|
+
static ID: string;
|
|
21
|
+
static _ID: string;
|
|
22
|
+
static DATE_FORMAT: string;
|
|
23
|
+
static DATE_FORMAT_TYPE2: string;
|
|
24
|
+
static DATE_FORMAT_TYPE3: string;
|
|
25
|
+
static DATE_FORMAT_TYPE4: string;
|
|
26
|
+
static INVALIDDATE: string;
|
|
27
|
+
static __V: string;
|
|
28
|
+
static CREATEDAT: string;
|
|
29
|
+
static UPDATEDAT: string;
|
|
30
|
+
static CREDENTIALS: string;
|
|
31
|
+
static ZERO: number;
|
|
32
|
+
static TYPE_OBJECT: string;
|
|
33
|
+
static DICTIONARYITEMS: string;
|
|
34
|
+
static GET_DATA_MESSAGE: {
|
|
35
|
+
severity: string;
|
|
36
|
+
detail: string;
|
|
37
|
+
life: number;
|
|
38
|
+
}[];
|
|
39
|
+
static PRIMARY: string;
|
|
40
|
+
static mappingInfo: string;
|
|
41
|
+
static YES: string;
|
|
42
|
+
static NO: string;
|
|
43
|
+
static selectedQueue: string;
|
|
44
|
+
static DASH: string;
|
|
45
|
+
static selectedApplication: string;
|
|
46
|
+
static selectedApplicationNumber: string;
|
|
47
|
+
static GREEN: string;
|
|
48
|
+
static RED: string;
|
|
49
|
+
static FROM_EMAIL: string;
|
|
50
|
+
static to_EMAIL: string;
|
|
51
|
+
static EMAIL: string;
|
|
52
|
+
static token: string;
|
|
53
|
+
static null: string;
|
|
54
|
+
static undefined: string;
|
|
55
|
+
static rationale: string;
|
|
56
|
+
static accepted: string;
|
|
57
|
+
static application: string;
|
|
58
|
+
static INVALID_API_PATH: string;
|
|
59
|
+
static WIDTH_AUTO: string;
|
|
60
|
+
}
|
|
61
|
+
export declare const delimiters: string[];
|
|
62
|
+
export declare const dictionaryItemList: never[];
|
|
63
|
+
export declare const dictionaryItemMapperList: never[];
|
|
64
|
+
export declare const dictionaryApiFieldList: {
|
|
65
|
+
title: string;
|
|
66
|
+
data: {
|
|
67
|
+
name: string;
|
|
68
|
+
}[];
|
|
69
|
+
};
|
|
70
|
+
export declare const FolderPanel: {
|
|
71
|
+
_id: string;
|
|
72
|
+
fileCount: number;
|
|
73
|
+
text: string;
|
|
74
|
+
missingFiles: number;
|
|
75
|
+
pendingFiles: number;
|
|
76
|
+
}[];
|
|
77
|
+
export declare const DocumentList: {
|
|
78
|
+
id: number;
|
|
79
|
+
fileName: string;
|
|
80
|
+
status: string;
|
|
81
|
+
documentUrl: string;
|
|
82
|
+
}[];
|
|
83
|
+
export declare const widgetLinkList: {
|
|
84
|
+
name: string;
|
|
85
|
+
code: string;
|
|
86
|
+
}[];
|
|
87
|
+
export declare const dictionaryList: {
|
|
88
|
+
id: number;
|
|
89
|
+
Name: string;
|
|
90
|
+
API: string;
|
|
91
|
+
}[];
|
|
92
|
+
export declare const SEQUENTIAL_MESSAGE: string[];
|
|
93
|
+
export declare const apiHiddenHeaderList: string[];
|
|
94
|
+
export declare const dictionaryHiddenHeaderList: string[];
|
|
95
|
+
export declare const widgetHiddenHeaderList: string[];
|
|
96
|
+
export declare const hiddenHeaderList: string[];
|
|
97
|
+
export declare const expectedRoutes: string[];
|
|
98
|
+
export declare const mileList: {
|
|
99
|
+
name: string;
|
|
100
|
+
value: number;
|
|
101
|
+
}[];
|
|
102
|
+
export declare const messageType: {
|
|
103
|
+
name: string;
|
|
104
|
+
icon: string;
|
|
105
|
+
}[];
|
|
106
|
+
export declare const propertyDataList: ({
|
|
107
|
+
key: string;
|
|
108
|
+
label: string;
|
|
109
|
+
data: string;
|
|
110
|
+
icon: string;
|
|
111
|
+
children: {
|
|
112
|
+
key: string;
|
|
113
|
+
label: string;
|
|
114
|
+
icon: string;
|
|
115
|
+
data: string;
|
|
116
|
+
}[];
|
|
117
|
+
} | {
|
|
118
|
+
key: string;
|
|
119
|
+
label: string;
|
|
120
|
+
data: string;
|
|
121
|
+
icon: string;
|
|
122
|
+
children: {
|
|
123
|
+
key: string;
|
|
124
|
+
label: string;
|
|
125
|
+
icon: string;
|
|
126
|
+
data: string;
|
|
127
|
+
children: ({
|
|
128
|
+
key: string;
|
|
129
|
+
label: string;
|
|
130
|
+
icon: string;
|
|
131
|
+
data: string;
|
|
132
|
+
selectable?: undefined;
|
|
133
|
+
} | {
|
|
134
|
+
key: string;
|
|
135
|
+
label: string;
|
|
136
|
+
icon: string;
|
|
137
|
+
data: string;
|
|
138
|
+
selectable: boolean;
|
|
139
|
+
})[];
|
|
140
|
+
}[];
|
|
141
|
+
})[];
|
|
142
|
+
export declare const widgets: ({
|
|
143
|
+
outOfTheBoxName: string;
|
|
144
|
+
title: string;
|
|
145
|
+
subtitle: {
|
|
146
|
+
label: string;
|
|
147
|
+
value: string;
|
|
148
|
+
color: string;
|
|
149
|
+
};
|
|
150
|
+
percentage: string;
|
|
151
|
+
fields: ({
|
|
152
|
+
label: string;
|
|
153
|
+
value: string;
|
|
154
|
+
isPrimary?: undefined;
|
|
155
|
+
highlight?: undefined;
|
|
156
|
+
alert?: undefined;
|
|
157
|
+
link?: undefined;
|
|
158
|
+
icon?: undefined;
|
|
159
|
+
inLabel?: undefined;
|
|
160
|
+
rating?: undefined;
|
|
161
|
+
isRating?: undefined;
|
|
162
|
+
} | {
|
|
163
|
+
label: string;
|
|
164
|
+
value: string;
|
|
165
|
+
isPrimary: boolean;
|
|
166
|
+
highlight?: undefined;
|
|
167
|
+
alert?: undefined;
|
|
168
|
+
link?: undefined;
|
|
169
|
+
icon?: undefined;
|
|
170
|
+
inLabel?: undefined;
|
|
171
|
+
rating?: undefined;
|
|
172
|
+
isRating?: undefined;
|
|
173
|
+
} | {
|
|
174
|
+
label: string;
|
|
175
|
+
value: string;
|
|
176
|
+
highlight: boolean;
|
|
177
|
+
alert: boolean;
|
|
178
|
+
isPrimary?: undefined;
|
|
179
|
+
link?: undefined;
|
|
180
|
+
icon?: undefined;
|
|
181
|
+
inLabel?: undefined;
|
|
182
|
+
rating?: undefined;
|
|
183
|
+
isRating?: undefined;
|
|
184
|
+
} | {
|
|
185
|
+
label: string;
|
|
186
|
+
value: string;
|
|
187
|
+
link: boolean;
|
|
188
|
+
isPrimary?: undefined;
|
|
189
|
+
highlight?: undefined;
|
|
190
|
+
alert?: undefined;
|
|
191
|
+
icon?: undefined;
|
|
192
|
+
inLabel?: undefined;
|
|
193
|
+
rating?: undefined;
|
|
194
|
+
isRating?: undefined;
|
|
195
|
+
} | {
|
|
196
|
+
label: string;
|
|
197
|
+
value: string;
|
|
198
|
+
alert: boolean;
|
|
199
|
+
isPrimary?: undefined;
|
|
200
|
+
highlight?: undefined;
|
|
201
|
+
link?: undefined;
|
|
202
|
+
icon?: undefined;
|
|
203
|
+
inLabel?: undefined;
|
|
204
|
+
rating?: undefined;
|
|
205
|
+
isRating?: undefined;
|
|
206
|
+
} | {
|
|
207
|
+
label: string;
|
|
208
|
+
value: string;
|
|
209
|
+
alert: boolean;
|
|
210
|
+
icon: string;
|
|
211
|
+
inLabel: boolean;
|
|
212
|
+
isPrimary?: undefined;
|
|
213
|
+
highlight?: undefined;
|
|
214
|
+
link?: undefined;
|
|
215
|
+
rating?: undefined;
|
|
216
|
+
isRating?: undefined;
|
|
217
|
+
} | {
|
|
218
|
+
label: string;
|
|
219
|
+
value: string;
|
|
220
|
+
isPrimary: boolean;
|
|
221
|
+
rating: string;
|
|
222
|
+
icon: string;
|
|
223
|
+
isRating: boolean;
|
|
224
|
+
highlight?: undefined;
|
|
225
|
+
alert?: undefined;
|
|
226
|
+
link?: undefined;
|
|
227
|
+
inLabel?: undefined;
|
|
228
|
+
})[];
|
|
229
|
+
viewAll: string;
|
|
230
|
+
} | {
|
|
231
|
+
title: string;
|
|
232
|
+
subtitle: {
|
|
233
|
+
label: string;
|
|
234
|
+
value: string;
|
|
235
|
+
color: string;
|
|
236
|
+
};
|
|
237
|
+
percentage: string;
|
|
238
|
+
fields: ({
|
|
239
|
+
label: string;
|
|
240
|
+
value: string;
|
|
241
|
+
highlight?: undefined;
|
|
242
|
+
alert?: undefined;
|
|
243
|
+
} | {
|
|
244
|
+
label: string;
|
|
245
|
+
value: string;
|
|
246
|
+
highlight: boolean;
|
|
247
|
+
alert?: undefined;
|
|
248
|
+
} | {
|
|
249
|
+
label: string;
|
|
250
|
+
value: string;
|
|
251
|
+
alert: boolean;
|
|
252
|
+
highlight?: undefined;
|
|
253
|
+
})[];
|
|
254
|
+
viewAll: string;
|
|
255
|
+
outOfTheBoxName?: undefined;
|
|
256
|
+
})[];
|
|
257
|
+
export declare const applicationWidgetList: {
|
|
258
|
+
title: string;
|
|
259
|
+
subtitle: {
|
|
260
|
+
label: string;
|
|
261
|
+
value: string;
|
|
262
|
+
color: string;
|
|
263
|
+
};
|
|
264
|
+
percentage: string;
|
|
265
|
+
fields: ({
|
|
266
|
+
label: string;
|
|
267
|
+
value: string;
|
|
268
|
+
isPrimary?: undefined;
|
|
269
|
+
highlight?: undefined;
|
|
270
|
+
alert?: undefined;
|
|
271
|
+
link?: undefined;
|
|
272
|
+
icon?: undefined;
|
|
273
|
+
inLabel?: undefined;
|
|
274
|
+
rating?: undefined;
|
|
275
|
+
isRating?: undefined;
|
|
276
|
+
} | {
|
|
277
|
+
label: string;
|
|
278
|
+
value: string;
|
|
279
|
+
isPrimary: boolean;
|
|
280
|
+
highlight?: undefined;
|
|
281
|
+
alert?: undefined;
|
|
282
|
+
link?: undefined;
|
|
283
|
+
icon?: undefined;
|
|
284
|
+
inLabel?: undefined;
|
|
285
|
+
rating?: undefined;
|
|
286
|
+
isRating?: undefined;
|
|
287
|
+
} | {
|
|
288
|
+
label: string;
|
|
289
|
+
value: string;
|
|
290
|
+
highlight: boolean;
|
|
291
|
+
alert: boolean;
|
|
292
|
+
isPrimary?: undefined;
|
|
293
|
+
link?: undefined;
|
|
294
|
+
icon?: undefined;
|
|
295
|
+
inLabel?: undefined;
|
|
296
|
+
rating?: undefined;
|
|
297
|
+
isRating?: undefined;
|
|
298
|
+
} | {
|
|
299
|
+
label: string;
|
|
300
|
+
value: string;
|
|
301
|
+
link: boolean;
|
|
302
|
+
isPrimary?: undefined;
|
|
303
|
+
highlight?: undefined;
|
|
304
|
+
alert?: undefined;
|
|
305
|
+
icon?: undefined;
|
|
306
|
+
inLabel?: undefined;
|
|
307
|
+
rating?: undefined;
|
|
308
|
+
isRating?: undefined;
|
|
309
|
+
} | {
|
|
310
|
+
label: string;
|
|
311
|
+
value: string;
|
|
312
|
+
alert: boolean;
|
|
313
|
+
isPrimary?: undefined;
|
|
314
|
+
highlight?: undefined;
|
|
315
|
+
link?: undefined;
|
|
316
|
+
icon?: undefined;
|
|
317
|
+
inLabel?: undefined;
|
|
318
|
+
rating?: undefined;
|
|
319
|
+
isRating?: undefined;
|
|
320
|
+
} | {
|
|
321
|
+
label: string;
|
|
322
|
+
value: string;
|
|
323
|
+
alert: boolean;
|
|
324
|
+
icon: string;
|
|
325
|
+
inLabel: boolean;
|
|
326
|
+
isPrimary?: undefined;
|
|
327
|
+
highlight?: undefined;
|
|
328
|
+
link?: undefined;
|
|
329
|
+
rating?: undefined;
|
|
330
|
+
isRating?: undefined;
|
|
331
|
+
} | {
|
|
332
|
+
label: string;
|
|
333
|
+
value: string;
|
|
334
|
+
isPrimary: boolean;
|
|
335
|
+
rating: string;
|
|
336
|
+
icon: string;
|
|
337
|
+
isRating: boolean;
|
|
338
|
+
highlight?: undefined;
|
|
339
|
+
alert?: undefined;
|
|
340
|
+
link?: undefined;
|
|
341
|
+
inLabel?: undefined;
|
|
342
|
+
})[];
|
|
343
|
+
viewAll: string;
|
|
344
|
+
}[];
|
|
345
|
+
export declare const applicantWidgetList: ({
|
|
346
|
+
title: string;
|
|
347
|
+
badge: string;
|
|
348
|
+
badgeIcon: string;
|
|
349
|
+
percentage: string;
|
|
350
|
+
subtitle: {
|
|
351
|
+
label: string;
|
|
352
|
+
value: string;
|
|
353
|
+
color: string;
|
|
354
|
+
};
|
|
355
|
+
fields: ({
|
|
356
|
+
label: string;
|
|
357
|
+
value: string;
|
|
358
|
+
alert?: undefined;
|
|
359
|
+
isUnderline?: undefined;
|
|
360
|
+
icon?: undefined;
|
|
361
|
+
link?: undefined;
|
|
362
|
+
} | {
|
|
363
|
+
label: string;
|
|
364
|
+
value: string;
|
|
365
|
+
alert: boolean;
|
|
366
|
+
isUnderline: boolean;
|
|
367
|
+
icon?: undefined;
|
|
368
|
+
link?: undefined;
|
|
369
|
+
} | {
|
|
370
|
+
label: string;
|
|
371
|
+
value: string;
|
|
372
|
+
icon: string;
|
|
373
|
+
alert: boolean;
|
|
374
|
+
isUnderline: boolean;
|
|
375
|
+
link?: undefined;
|
|
376
|
+
} | {
|
|
377
|
+
label: string;
|
|
378
|
+
value: string;
|
|
379
|
+
link: boolean;
|
|
380
|
+
alert?: undefined;
|
|
381
|
+
isUnderline?: undefined;
|
|
382
|
+
icon?: undefined;
|
|
383
|
+
})[];
|
|
384
|
+
viewAll: string;
|
|
385
|
+
} | {
|
|
386
|
+
title: string;
|
|
387
|
+
badge: string;
|
|
388
|
+
badgeIcon: string;
|
|
389
|
+
percentage: string;
|
|
390
|
+
subtitle: {
|
|
391
|
+
label: string;
|
|
392
|
+
value: string;
|
|
393
|
+
color: string;
|
|
394
|
+
};
|
|
395
|
+
fields: ({
|
|
396
|
+
label: string;
|
|
397
|
+
value: string;
|
|
398
|
+
isUnderline?: undefined;
|
|
399
|
+
link?: undefined;
|
|
400
|
+
} | {
|
|
401
|
+
label: string;
|
|
402
|
+
value: string;
|
|
403
|
+
isUnderline: boolean;
|
|
404
|
+
link: boolean;
|
|
405
|
+
} | {
|
|
406
|
+
label: string;
|
|
407
|
+
value: string;
|
|
408
|
+
isUnderline: boolean;
|
|
409
|
+
link?: undefined;
|
|
410
|
+
} | {
|
|
411
|
+
label: string;
|
|
412
|
+
value: string;
|
|
413
|
+
link: boolean;
|
|
414
|
+
isUnderline?: undefined;
|
|
415
|
+
})[];
|
|
416
|
+
viewAll: string;
|
|
417
|
+
})[];
|
|
418
|
+
export declare const companyWidget: {
|
|
419
|
+
title: string;
|
|
420
|
+
badge: string;
|
|
421
|
+
badgeIcon: string;
|
|
422
|
+
percentage: string;
|
|
423
|
+
riskRating: string;
|
|
424
|
+
subtitle: {
|
|
425
|
+
label: string;
|
|
426
|
+
value: string;
|
|
427
|
+
color: string;
|
|
428
|
+
};
|
|
429
|
+
dataItems: ({
|
|
430
|
+
key: string;
|
|
431
|
+
value: string;
|
|
432
|
+
style: string;
|
|
433
|
+
alert?: undefined;
|
|
434
|
+
} | {
|
|
435
|
+
key: string;
|
|
436
|
+
value: string;
|
|
437
|
+
alert: boolean;
|
|
438
|
+
style: string;
|
|
439
|
+
})[];
|
|
440
|
+
viewAll: string;
|
|
441
|
+
}[];
|
|
442
|
+
export declare const propertyDetailsWidgetList: {
|
|
443
|
+
title: string;
|
|
444
|
+
badge: string;
|
|
445
|
+
badgeIcon: string;
|
|
446
|
+
percentage: string;
|
|
447
|
+
subtitle: {
|
|
448
|
+
label: string;
|
|
449
|
+
value: string;
|
|
450
|
+
color: string;
|
|
451
|
+
verified: boolean;
|
|
452
|
+
};
|
|
453
|
+
fields: ({
|
|
454
|
+
label: string;
|
|
455
|
+
value: string;
|
|
456
|
+
isLabelLink?: undefined;
|
|
457
|
+
icon?: undefined;
|
|
458
|
+
} | {
|
|
459
|
+
label: string;
|
|
460
|
+
value?: undefined;
|
|
461
|
+
isLabelLink?: undefined;
|
|
462
|
+
icon?: undefined;
|
|
463
|
+
} | {
|
|
464
|
+
label: string;
|
|
465
|
+
isLabelLink: boolean;
|
|
466
|
+
icon: string;
|
|
467
|
+
value?: undefined;
|
|
468
|
+
})[];
|
|
469
|
+
viewAll: string;
|
|
470
|
+
}[];
|
|
471
|
+
export declare const offerWidgetList: {
|
|
472
|
+
title: string;
|
|
473
|
+
badge: string;
|
|
474
|
+
badgeIcon: string;
|
|
475
|
+
statusList: ({
|
|
476
|
+
description: string;
|
|
477
|
+
status: string;
|
|
478
|
+
title?: undefined;
|
|
479
|
+
textColor?: undefined;
|
|
480
|
+
} | {
|
|
481
|
+
title: string;
|
|
482
|
+
description: string;
|
|
483
|
+
status: string;
|
|
484
|
+
textColor: string;
|
|
485
|
+
})[];
|
|
486
|
+
viewAll: string;
|
|
487
|
+
}[];
|
|
488
|
+
export declare const valuationWidgetList: {
|
|
489
|
+
title: string;
|
|
490
|
+
badge: string;
|
|
491
|
+
badgeIcon: string;
|
|
492
|
+
statusList: ({
|
|
493
|
+
description: string;
|
|
494
|
+
status: string;
|
|
495
|
+
title?: undefined;
|
|
496
|
+
textColor?: undefined;
|
|
497
|
+
} | {
|
|
498
|
+
title: string;
|
|
499
|
+
description: string;
|
|
500
|
+
status: string;
|
|
501
|
+
textColor: string;
|
|
502
|
+
})[];
|
|
503
|
+
}[];
|
|
504
|
+
export declare const stageTimelineList: {
|
|
505
|
+
title: string;
|
|
506
|
+
description: string;
|
|
507
|
+
footerText: string;
|
|
508
|
+
isLast: boolean;
|
|
509
|
+
}[];
|
|
510
|
+
export declare const saleHistoryTimelineList: {
|
|
511
|
+
floorArea: string;
|
|
512
|
+
propertyType: string;
|
|
513
|
+
}[];
|
|
514
|
+
export declare const navigationTimelineList: ({
|
|
515
|
+
title: string;
|
|
516
|
+
status: string;
|
|
517
|
+
textColor: string;
|
|
518
|
+
} | {
|
|
519
|
+
title: string;
|
|
520
|
+
status: string;
|
|
521
|
+
textColor?: undefined;
|
|
522
|
+
})[];
|
|
523
|
+
export declare const notesPanelList: {
|
|
524
|
+
title: string;
|
|
525
|
+
date: string;
|
|
526
|
+
description: string;
|
|
527
|
+
}[];
|
|
528
|
+
export declare const rationalItems: {
|
|
529
|
+
title: string;
|
|
530
|
+
isOpen: boolean;
|
|
531
|
+
status: string;
|
|
532
|
+
}[];
|
|
533
|
+
export declare const rationalListItems: {
|
|
534
|
+
title: string;
|
|
535
|
+
isOpen: boolean;
|
|
536
|
+
data: string;
|
|
537
|
+
status: string;
|
|
538
|
+
width: string;
|
|
539
|
+
}[];
|
|
540
|
+
export declare const alertList: string[];
|
|
541
|
+
export declare const applicantAlertList: string[];
|
|
542
|
+
export declare const applicationAlertList: string[];
|
|
543
|
+
export declare const I2RAlert: string[];
|
|
544
|
+
export declare const commitments: string[];
|
|
545
|
+
export declare const incomeDetailAlert: string[];
|
|
546
|
+
export declare const checkListStaticData: {
|
|
547
|
+
list: string;
|
|
548
|
+
type: string;
|
|
549
|
+
date: string;
|
|
550
|
+
status: string;
|
|
551
|
+
}[];
|
|
552
|
+
export declare const actionHiddenHeaderList: string[];
|
|
553
|
+
export declare const actionList: {
|
|
554
|
+
action: string;
|
|
555
|
+
prompt: string;
|
|
556
|
+
queueId: string;
|
|
557
|
+
apiEndPoint: string;
|
|
558
|
+
status: string;
|
|
559
|
+
}[];
|
|
560
|
+
export declare const actionTableColumnWidthList: {
|
|
561
|
+
action: string;
|
|
562
|
+
prompt: string;
|
|
563
|
+
queueId: string;
|
|
564
|
+
status: string;
|
|
565
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ButtonComponent extends BaseControlComponent {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "lib-button", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CheckBoxComponent extends BaseControlComponent {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckBoxComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckBoxComponent, "check-box", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnChanges } from '@angular/core';
|
|
2
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
3
|
+
import { DateParserService } from '../../services/date-parser.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DateComponent extends BaseControlComponent implements OnChanges {
|
|
6
|
+
dateService: DateParserService;
|
|
7
|
+
constructor(dateService: DateParserService);
|
|
8
|
+
ngOnChanges(): void;
|
|
9
|
+
getValue(): string;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateComponent, "date", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import { SelectItem } from 'primeng/api';
|
|
3
|
+
import { ListService } from '../../services/list.service';
|
|
4
|
+
import { List } from '../../models/list.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DropdownComponent extends BaseControlComponent {
|
|
7
|
+
listService: ListService;
|
|
8
|
+
options: SelectItem[] | undefined;
|
|
9
|
+
list: List | undefined;
|
|
10
|
+
childListRecords: any[];
|
|
11
|
+
isStaticDropdown: boolean;
|
|
12
|
+
constructor(listService: ListService);
|
|
13
|
+
ngOnChanges(): void;
|
|
14
|
+
handleGetAndSetList(): void;
|
|
15
|
+
private mapResponseToOptions;
|
|
16
|
+
handleModelChange(event: any, valid: boolean | null, val?: any): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "dropdown", never, { "isStaticDropdown": { "alias": "isStaticDropdown"; "required": false; }; }, {}, never, never, true, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FileUploadComponent extends BaseControlComponent {
|
|
4
|
+
handleSingleUpload(event: any): void;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "file-upload", never, {}, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PasswordComponent extends BaseControlComponent {
|
|
4
|
+
invalidPasswordErrorMsg: string | undefined;
|
|
5
|
+
constructor();
|
|
6
|
+
ngOninit(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PasswordComponent, "password", never, {}, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TextAreaComponent extends BaseControlComponent {
|
|
4
|
+
rowspan: number;
|
|
5
|
+
getValue(): any;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "text-area", never, { "rowspan": { "alias": "rowspan"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TextBoxComponent extends BaseControlComponent {
|
|
4
|
+
getValue(): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextBoxComponent, "text-box", never, {}, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BaseControlComponent } from '../../_base/base-control/base-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class UsernameComponent extends BaseControlComponent {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UsernameComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UsernameComponent, "username", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|