@indice/ng-components 0.2.161 → 0.2.164
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/_styles.css +4270 -3643
- package/bundles/indice-ng-components.umd.js +5000 -0
- package/bundles/indice-ng-components.umd.js.map +1 -0
- package/{esm2020/indice-ng-components.mjs → esm2015/indice-ng-components.js} +0 -0
- package/esm2015/lib/controls/advanced-search/advanced-search.component.js +116 -0
- package/esm2015/lib/controls/advanced-search/models.js +91 -0
- package/{esm2020/lib/controls/avatar-initials/avatar-initials.component.mjs → esm2015/lib/controls/avatar-initials/avatar-initials.component.js} +8 -5
- package/esm2015/lib/controls/collapsible-panel/collapsible-panel.component.js +23 -0
- package/esm2015/lib/controls/combobox/combobox.component.js +100 -0
- package/esm2015/lib/controls/date-picker/date-picker.component.js +301 -0
- package/esm2015/lib/controls/drop-down-menu/drop-down-menu.component.js +72 -0
- package/esm2015/lib/controls/kpi-tile/kpi-tile.component.js +39 -0
- package/esm2015/lib/controls/language-selection/language-selection.component.js +35 -0
- package/{esm2020/lib/controls/list-view/list-column.component.mjs → esm2015/lib/controls/list-view/list-column.component.js} +4 -4
- package/{esm2020/lib/controls/list-view/list-details-section.component.mjs → esm2015/lib/controls/list-view/list-details-section.component.js} +4 -4
- package/{esm2020/lib/controls/list-view/list-tile.component.mjs → esm2015/lib/controls/list-view/list-tile.component.js} +4 -4
- package/esm2015/lib/controls/list-view/list-view-empty-state.component.js +32 -0
- package/esm2015/lib/controls/list-view/list-view.component.js +209 -0
- package/esm2015/lib/controls/nav-links-list/nav-links-list.component.js +51 -0
- package/esm2015/lib/controls/notifications-indicator/notifications-indicator.component.js +82 -0
- package/esm2015/lib/controls/pager/pager.component.js +133 -0
- package/esm2015/lib/controls/side-pane/side-pane.component.js +76 -0
- package/esm2015/lib/controls/skeleton-loader/skeleton-loader.component.js +29 -0
- package/{esm2020/lib/controls/stepper/lib-step-info.directive.mjs → esm2015/lib/controls/stepper/lib-step-info.directive.js} +4 -4
- package/{esm2020/lib/controls/stepper/lib-step-label.directive.mjs → esm2015/lib/controls/stepper/lib-step-label.directive.js} +4 -4
- package/esm2015/lib/controls/stepper/lib-step.component.js +82 -0
- package/esm2015/lib/controls/stepper/lib-stepper.component.js +115 -0
- package/esm2015/lib/controls/stepper/types/step-selected-event.js +4 -0
- package/{esm2020/lib/controls/stepper/types/stepper-type.mjs → esm2015/lib/controls/stepper/types/stepper-type.js} +1 -1
- package/esm2015/lib/controls/tabs/lib-tab-group.component.js +67 -0
- package/esm2015/lib/controls/tabs/lib-tab.component.js +58 -0
- package/esm2015/lib/controls/toaster/toaster-container.component.js +31 -0
- package/esm2015/lib/controls/toaster/toaster.component.js +34 -0
- package/esm2015/lib/controls/toggle/toggle.component.js +68 -0
- package/esm2015/lib/controls/user-profile-menu/user-profile-menu.component.js +75 -0
- package/{esm2020/lib/directives/click-outside.directive.mjs → esm2015/lib/directives/click-outside.directive.js} +4 -4
- package/{esm2020/lib/directives/dynamic-component-host.directive.mjs → esm2015/lib/directives/dynamic-component-host.directive.js} +4 -4
- package/esm2015/lib/helpers/base-list.component.js +227 -0
- package/{esm2020/lib/icons.mjs → esm2015/lib/icons.js} +1 -1
- package/esm2015/lib/layouts/shell/shell-footer/shell-footer.component.js +22 -0
- package/esm2015/lib/layouts/shell/shell-header/shell-header.component.js +135 -0
- package/esm2015/lib/layouts/shell/shell-layout/shell-layout.component.js +106 -0
- package/esm2015/lib/layouts/shell/shell-sidebar/shell-sidebar.component.js +50 -0
- package/esm2015/lib/layouts/shell/shell-sidebar-header/shell-sidebar-header.component.js +48 -0
- package/esm2015/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.js +28 -0
- package/esm2015/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.js +24 -0
- package/esm2015/lib/layouts/views/form-layout/form-layout.component.js +85 -0
- package/esm2015/lib/layouts/views/model-view-layout/model-view-layout.component.js +53 -0
- package/esm2015/lib/layouts/views/side-view-layout/side-view-layout.component.js +101 -0
- package/esm2015/lib/layouts/views/view-layout/view-layout.component.js +110 -0
- package/esm2015/lib/ng-components.module.js +285 -0
- package/esm2015/lib/pages/auth/auth-callback/auth-callback.component.js +34 -0
- package/{esm2020/lib/pages/auth/auth-renew/auth-renew.component.mjs → esm2015/lib/pages/auth/auth-renew/auth-renew.component.js} +4 -4
- package/esm2015/lib/pages/auth/logged-out/logged-out.component.js +32 -0
- package/esm2015/lib/pages/http-status/error/error.component.js +20 -0
- package/esm2015/lib/pages/http-status/page-not-found/page-not-found.component.js +18 -0
- package/esm2015/lib/pages/http-status/unauthorized/unauthorized.component.js +17 -0
- package/{esm2020/lib/pipes/address.pipe.mjs → esm2015/lib/pipes/address.pipe.js} +4 -4
- package/{esm2020/lib/pipes/duration-format.pipe.mjs → esm2015/lib/pipes/duration-format.pipe.js} +4 -4
- package/esm2015/lib/services/component-loader/component-loader-options.class.js +8 -0
- package/esm2015/lib/services/component-loader/component-loader.class.js +192 -0
- package/{esm2020/lib/services/component-loader/component-loader.factory.mjs → esm2015/lib/services/component-loader/component-loader.factory.js} +4 -4
- package/{esm2020/lib/services/component-loader/content-ref.class.mjs → esm2015/lib/services/component-loader/content-ref.class.js} +1 -1
- package/esm2015/lib/services/modal-service/modal-backdrop-component.js +44 -0
- package/esm2015/lib/services/modal-service/modal-container-component.js +128 -0
- package/esm2015/lib/services/modal-service/modal-options.class.js +35 -0
- package/esm2015/lib/services/modal-service/modal-service.js +220 -0
- package/{esm2020/lib/services/modal-service/modal-styles.class.mjs → esm2015/lib/services/modal-service/modal-styles.class.js} +1 -1
- package/esm2015/lib/services/modal-service/modal.class.js +27 -0
- package/{esm2020/lib/services/toaster.service.mjs → esm2015/lib/services/toaster.service.js} +4 -4
- package/{esm2020/lib/tokens.mjs → esm2015/lib/tokens.js} +1 -1
- package/{esm2020/lib/types.mjs → esm2015/lib/types.js} +1 -1
- package/esm2015/public-api.js +63 -0
- package/fesm2015/indice-ng-components.js +4352 -0
- package/fesm2015/indice-ng-components.js.map +1 -0
- package/{index.d.ts → indice-ng-components.d.ts} +0 -0
- package/lib/controls/advanced-search/advanced-search.component.d.ts +26 -0
- package/lib/controls/advanced-search/models.d.ts +83 -0
- package/lib/controls/avatar-initials/avatar-initials.component.d.ts +1 -1
- package/lib/controls/collapsible-panel/collapsible-panel.component.d.ts +1 -1
- package/lib/controls/combobox/combobox.component.d.ts +1 -1
- package/lib/controls/date-picker/date-picker.component.d.ts +1 -1
- package/lib/controls/drop-down-menu/drop-down-menu.component.d.ts +1 -1
- package/lib/controls/kpi-tile/kpi-tile.component.d.ts +1 -1
- package/lib/controls/language-selection/language-selection.component.d.ts +1 -1
- package/lib/controls/list-view/list-column.component.d.ts +1 -1
- package/lib/controls/list-view/list-details-section.component.d.ts +1 -1
- package/lib/controls/list-view/list-tile.component.d.ts +1 -1
- package/lib/controls/list-view/list-view-empty-state.component.d.ts +1 -1
- package/lib/controls/list-view/list-view.component.d.ts +6 -1
- package/lib/controls/nav-links-list/nav-links-list.component.d.ts +6 -3
- package/lib/controls/notifications-indicator/notifications-indicator.component.d.ts +4 -4
- package/lib/controls/pager/pager.component.d.ts +1 -1
- package/lib/controls/side-pane/side-pane.component.d.ts +1 -1
- package/lib/controls/skeleton-loader/skeleton-loader.component.d.ts +1 -1
- package/lib/controls/stepper/lib-step-info.directive.d.ts +1 -1
- package/lib/controls/stepper/lib-step-label.directive.d.ts +1 -1
- package/lib/controls/stepper/lib-step.component.d.ts +1 -1
- package/lib/controls/stepper/lib-stepper.component.d.ts +15 -4
- package/lib/controls/tabs/lib-tab-group.component.d.ts +1 -1
- package/lib/controls/tabs/lib-tab.component.d.ts +1 -1
- package/lib/controls/toaster/toaster-container.component.d.ts +1 -1
- package/lib/controls/toaster/toaster.component.d.ts +1 -1
- package/lib/controls/toggle/toggle.component.d.ts +1 -1
- package/lib/controls/user-profile-menu/user-profile-menu.component.d.ts +1 -1
- package/lib/directives/click-outside.directive.d.ts +1 -1
- package/lib/directives/dynamic-component-host.directive.d.ts +1 -1
- package/lib/helpers/base-list.component.d.ts +12 -1
- package/lib/layouts/shell/shell-footer/shell-footer.component.d.ts +1 -1
- package/lib/layouts/shell/shell-header/shell-header.component.d.ts +2 -3
- package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +1 -1
- package/lib/layouts/shell/shell-sidebar/shell-sidebar.component.d.ts +1 -1
- package/lib/layouts/shell/shell-sidebar-header/shell-sidebar-header.component.d.ts +14 -0
- package/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.d.ts +12 -0
- package/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.d.ts +10 -0
- package/lib/layouts/views/form-layout/form-layout.component.d.ts +1 -1
- package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +1 -1
- package/lib/layouts/views/side-view-layout/side-view-layout.component.d.ts +1 -1
- package/lib/layouts/views/view-layout/view-layout.component.d.ts +1 -1
- package/lib/ng-components.module.d.ts +9 -4
- package/lib/pages/auth/auth-callback/auth-callback.component.d.ts +1 -1
- package/lib/pages/auth/auth-renew/auth-renew.component.d.ts +1 -1
- package/lib/pages/auth/logged-out/logged-out.component.d.ts +1 -1
- package/lib/pages/http-status/error/error.component.d.ts +1 -1
- package/lib/pages/http-status/page-not-found/page-not-found.component.d.ts +1 -1
- package/lib/pages/http-status/unauthorized/unauthorized.component.d.ts +1 -1
- package/lib/pipes/address.pipe.d.ts +1 -1
- package/lib/pipes/duration-format.pipe.d.ts +1 -1
- package/lib/services/modal-service/modal-backdrop-component.d.ts +1 -1
- package/lib/services/modal-service/modal-container-component.d.ts +1 -1
- package/modal.css +157 -157
- package/package.json +9 -22
- package/public-api.d.ts +2 -0
- package/esm2020/lib/controls/collapsible-panel/collapsible-panel.component.mjs +0 -20
- package/esm2020/lib/controls/combobox/combobox.component.mjs +0 -96
- package/esm2020/lib/controls/date-picker/date-picker.component.mjs +0 -292
- package/esm2020/lib/controls/drop-down-menu/drop-down-menu.component.mjs +0 -68
- package/esm2020/lib/controls/kpi-tile/kpi-tile.component.mjs +0 -36
- package/esm2020/lib/controls/language-selection/language-selection.component.mjs +0 -31
- package/esm2020/lib/controls/list-view/list-view-empty-state.component.mjs +0 -29
- package/esm2020/lib/controls/list-view/list-view.component.mjs +0 -192
- package/esm2020/lib/controls/nav-links-list/nav-links-list.component.mjs +0 -42
- package/esm2020/lib/controls/notifications-indicator/notifications-indicator.component.mjs +0 -73
- package/esm2020/lib/controls/pager/pager.component.mjs +0 -130
- package/esm2020/lib/controls/side-pane/side-pane.component.mjs +0 -72
- package/esm2020/lib/controls/skeleton-loader/skeleton-loader.component.mjs +0 -25
- package/esm2020/lib/controls/stepper/lib-step.component.mjs +0 -81
- package/esm2020/lib/controls/stepper/lib-stepper.component.mjs +0 -85
- package/esm2020/lib/controls/stepper/types/step-selected-event.mjs +0 -4
- package/esm2020/lib/controls/tabs/lib-tab-group.component.mjs +0 -59
- package/esm2020/lib/controls/tabs/lib-tab.component.mjs +0 -57
- package/esm2020/lib/controls/toaster/toaster-container.component.mjs +0 -28
- package/esm2020/lib/controls/toaster/toaster.component.mjs +0 -31
- package/esm2020/lib/controls/toggle/toggle.component.mjs +0 -64
- package/esm2020/lib/controls/user-profile-menu/user-profile-menu.component.mjs +0 -71
- package/esm2020/lib/helpers/base-list.component.mjs +0 -182
- package/esm2020/lib/layouts/shell/shell-footer/shell-footer.component.mjs +0 -19
- package/esm2020/lib/layouts/shell/shell-header/shell-header.component.mjs +0 -131
- package/esm2020/lib/layouts/shell/shell-layout/shell-layout.component.mjs +0 -103
- package/esm2020/lib/layouts/shell/shell-sidebar/shell-sidebar.component.mjs +0 -47
- package/esm2020/lib/layouts/views/form-layout/form-layout.component.mjs +0 -80
- package/esm2020/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +0 -49
- package/esm2020/lib/layouts/views/side-view-layout/side-view-layout.component.mjs +0 -98
- package/esm2020/lib/layouts/views/view-layout/view-layout.component.mjs +0 -104
- package/esm2020/lib/ng-components.module.mjs +0 -267
- package/esm2020/lib/pages/auth/auth-callback/auth-callback.component.mjs +0 -31
- package/esm2020/lib/pages/auth/logged-out/logged-out.component.mjs +0 -28
- package/esm2020/lib/pages/http-status/error/error.component.mjs +0 -17
- package/esm2020/lib/pages/http-status/page-not-found/page-not-found.component.mjs +0 -15
- package/esm2020/lib/pages/http-status/unauthorized/unauthorized.component.mjs +0 -14
- package/esm2020/lib/services/component-loader/component-loader-options.class.mjs +0 -8
- package/esm2020/lib/services/component-loader/component-loader.class.mjs +0 -188
- package/esm2020/lib/services/modal-service/modal-backdrop-component.mjs +0 -44
- package/esm2020/lib/services/modal-service/modal-container-component.mjs +0 -126
- package/esm2020/lib/services/modal-service/modal-options.class.mjs +0 -35
- package/esm2020/lib/services/modal-service/modal-service.mjs +0 -219
- package/esm2020/lib/services/modal-service/modal.class.mjs +0 -27
- package/esm2020/public-api.mjs +0 -61
- package/fesm2015/indice-ng-components.mjs +0 -3899
- package/fesm2015/indice-ng-components.mjs.map +0 -1
- package/fesm2020/indice-ng-components.mjs +0 -3834
- package/fesm2020/indice-ng-components.mjs.map +0 -1
|
File without changes
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { MenuOption } from '../../types';
|
|
3
|
+
import { SearchOption, FilterClause } from './models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AdvancedSearchComponent implements OnInit {
|
|
6
|
+
advancedSearchChanged: EventEmitter<FilterClause[]>;
|
|
7
|
+
searchOptions: SearchOption[];
|
|
8
|
+
filters: FilterClause[];
|
|
9
|
+
menuOptions: MenuOption[];
|
|
10
|
+
selectedField?: SearchOption;
|
|
11
|
+
fieldValue?: string;
|
|
12
|
+
fieldValueDateFrom: any;
|
|
13
|
+
fieldValueDateTo: any;
|
|
14
|
+
menuOptionsDictionary: {
|
|
15
|
+
[key: string]: MenuOption[];
|
|
16
|
+
};
|
|
17
|
+
constructor();
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
selectedFieldChanged(field: string): void;
|
|
20
|
+
selectedFieldValueChanged(fieldValue: string): void;
|
|
21
|
+
search(): void;
|
|
22
|
+
removeFilter(index: number): void;
|
|
23
|
+
clear(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdvancedSearchComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdvancedSearchComponent, "lib-advanced-search", never, { "searchOptions": "search-options"; "filters": "filters"; }, { "advancedSearchChanged": "advancedSearchChanged"; }, never, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
export declare namespace Operators {
|
|
2
|
+
const EQUALS: {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
description: string;
|
|
6
|
+
};
|
|
7
|
+
const NOT_EQUALS: {
|
|
8
|
+
label: string;
|
|
9
|
+
value: string;
|
|
10
|
+
description: string;
|
|
11
|
+
};
|
|
12
|
+
const GREATER_THAN: {
|
|
13
|
+
label: string;
|
|
14
|
+
value: string;
|
|
15
|
+
description: string;
|
|
16
|
+
};
|
|
17
|
+
const LESS_THAN: {
|
|
18
|
+
label: string;
|
|
19
|
+
value: string;
|
|
20
|
+
description: string;
|
|
21
|
+
};
|
|
22
|
+
const GREATER_THAN_EQUAL: {
|
|
23
|
+
label: string;
|
|
24
|
+
value: string;
|
|
25
|
+
description: string;
|
|
26
|
+
};
|
|
27
|
+
const LESS_THAN_EQUAL: {
|
|
28
|
+
label: string;
|
|
29
|
+
value: string;
|
|
30
|
+
description: string;
|
|
31
|
+
};
|
|
32
|
+
const CONTAINS: {
|
|
33
|
+
label: string;
|
|
34
|
+
value: string;
|
|
35
|
+
description: string;
|
|
36
|
+
};
|
|
37
|
+
const IN: {
|
|
38
|
+
label: string;
|
|
39
|
+
value: string;
|
|
40
|
+
description: string;
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
export declare enum QueryParameters {
|
|
44
|
+
VIEW = "view",
|
|
45
|
+
PAGE_SIZE = "pagesize",
|
|
46
|
+
PAGE = "page",
|
|
47
|
+
SEARCH = "search",
|
|
48
|
+
SORT_FIELD = "sort",
|
|
49
|
+
SORT_DIRECTION = "dir",
|
|
50
|
+
FILTER = "filter",
|
|
51
|
+
FILTER_FROM = "from",
|
|
52
|
+
FILTER_TO = "to"
|
|
53
|
+
}
|
|
54
|
+
export interface SearchOption {
|
|
55
|
+
name: string;
|
|
56
|
+
field: string;
|
|
57
|
+
dataType: FilterClause.Dt;
|
|
58
|
+
array?: boolean;
|
|
59
|
+
multiTerm?: boolean;
|
|
60
|
+
options?: SelectInputOption[];
|
|
61
|
+
placeholder?: string;
|
|
62
|
+
}
|
|
63
|
+
export interface SelectInputOption {
|
|
64
|
+
value: any;
|
|
65
|
+
label: string;
|
|
66
|
+
description?: string;
|
|
67
|
+
}
|
|
68
|
+
export declare namespace FilterClause {
|
|
69
|
+
type Op = 'eq' | 'neq' | 'gt' | 'lt' | 'gte' | 'lte' | 'contains' | 'in';
|
|
70
|
+
type Dt = 'string' | 'integer' | 'number' | 'boolean' | 'datetime' | 'array' | 'daterange' | undefined;
|
|
71
|
+
}
|
|
72
|
+
export declare class FilterClause {
|
|
73
|
+
member: string;
|
|
74
|
+
value: any;
|
|
75
|
+
operator: FilterClause.Op;
|
|
76
|
+
dataType: FilterClause.Dt;
|
|
77
|
+
uiName: string | undefined;
|
|
78
|
+
uiOperator: string | undefined;
|
|
79
|
+
uiValue: string | undefined;
|
|
80
|
+
constructor(member: string, value: any, operator?: FilterClause.Op, dataType?: FilterClause.Dt, searchOptions?: SearchOption[]);
|
|
81
|
+
static parse(text: string): FilterClause | undefined;
|
|
82
|
+
toString(): string;
|
|
83
|
+
}
|
|
@@ -10,5 +10,5 @@ export declare class AvatarInitialsComponent implements OnInit {
|
|
|
10
10
|
ngOnInit(): void;
|
|
11
11
|
private createInititals;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarInitialsComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarInitialsComponent, "lib-avatar-initials", never, { "name": "name"; "large": "large"; }, {}, never, never
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarInitialsComponent, "lib-avatar-initials", never, { "name": "name"; "large": "large"; }, {}, never, never>;
|
|
14
14
|
}
|
|
@@ -6,5 +6,5 @@ export declare class CollapsiblePanelComponent implements OnInit {
|
|
|
6
6
|
constructor();
|
|
7
7
|
ngOnInit(): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<CollapsiblePanelComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CollapsiblePanelComponent, "lib-collapsible-panel", never, { "title": "title"; }, {}, never, ["*"]
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CollapsiblePanelComponent, "lib-collapsible-panel", never, { "title": "title"; }, {}, never, ["*"]>;
|
|
10
10
|
}
|
|
@@ -25,5 +25,5 @@ export declare class ComboboxComponent implements OnInit {
|
|
|
25
25
|
removeSelectedItem(item: any): void;
|
|
26
26
|
private emitSearchEvent;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComboboxComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ComboboxComponent, "lib-combobox", never, { "id": "id"; "items": "items"; "itemTemplate": "itemTemplate"; "selectedItemsFilter": "selectedItemsFilter"; "selectedItemTemplate": "selectedItemTemplate"; "busy": "busy"; "debounceMs": "debounceMs"; }, { "onSearch": "onSearch"; "onItemSelected": "onItemSelected"; }, never, never
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComboboxComponent, "lib-combobox", never, { "id": "id"; "items": "items"; "itemTemplate": "itemTemplate"; "selectedItemsFilter": "selectedItemsFilter"; "selectedItemTemplate": "selectedItemTemplate"; "busy": "busy"; "debounceMs": "debounceMs"; }, { "onSearch": "onSearch"; "onItemSelected": "onItemSelected"; }, never, never>;
|
|
29
29
|
}
|
|
@@ -49,5 +49,5 @@ export declare class DatepickerComponent implements OnInit, ControlValueAccessor
|
|
|
49
49
|
closeCalendar(): void;
|
|
50
50
|
outOfRangeDate(date: any): boolean;
|
|
51
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerComponent, never>;
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "lib-date-picker", never, { "readonly": "readonly"; "disabled": "disabled"; "inline": "inline"; "displayFormat": "display-format"; "placeholder": "placeholder"; "value": "value"; "minDate": "minDate"; "maxDate": "maxDate"; }, { "valueChange": "valueChange"; }, never, never
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "lib-date-picker", never, { "readonly": "readonly"; "disabled": "disabled"; "inline": "inline"; "displayFormat": "display-format"; "placeholder": "placeholder"; "value": "value"; "minDate": "minDate"; "maxDate": "maxDate"; }, { "valueChange": "valueChange"; }, never, never>;
|
|
53
53
|
}
|
|
@@ -21,5 +21,5 @@ export declare class DropDownMenuComponent implements OnInit, OnChanges {
|
|
|
21
21
|
onClickOutside($event: any): void;
|
|
22
22
|
selectOption(option: MenuOption): void;
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropDownMenuComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropDownMenuComponent, "lib-drop-down-menu", never, { "options": "options"; "selectedValue": "selected"; "multiple": "multiple"; "placeholder": "placeholder"; }, { "selectedChange": "selectedChange"; "selectedChanged": "selectedChanged"; }, never, never
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropDownMenuComponent, "lib-drop-down-menu", never, { "options": "options"; "selectedValue": "selected"; "multiple": "multiple"; "placeholder": "placeholder"; }, { "selectedChange": "selectedChange"; "selectedChanged": "selectedChanged"; }, never, never>;
|
|
25
25
|
}
|
|
@@ -9,5 +9,5 @@ export declare class KpiTileComponent implements OnInit {
|
|
|
9
9
|
ngOnInit(): void;
|
|
10
10
|
emitTileAction($event: any): boolean;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<KpiTileComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KpiTileComponent, "lib-kpi-tile", never, { "title": "title"; "busy": "busy"; "kpi": "kpi"; }, { "tileAction": "tile-action"; }, never, never
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KpiTileComponent, "lib-kpi-tile", never, { "title": "title"; "busy": "busy"; "kpi": "kpi"; }, { "tileAction": "tile-action"; }, never, never>;
|
|
13
13
|
}
|
|
@@ -10,5 +10,5 @@ export declare class LanguageSelectionComponent implements OnInit {
|
|
|
10
10
|
selectLang(option: MenuOption): void;
|
|
11
11
|
onClickOutside($event: any): void;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<LanguageSelectionComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LanguageSelectionComponent, "lib-language-selection", never, {}, {}, never, never
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LanguageSelectionComponent, "lib-language-selection", never, {}, {}, never, never>;
|
|
14
14
|
}
|
|
@@ -5,5 +5,5 @@ export declare class ListColumnComponent {
|
|
|
5
5
|
template: any | null;
|
|
6
6
|
constructor();
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListColumnComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListColumnComponent, "lib-list-column", never, { "title": "title"; "fullWidth": "full-width"; }, {}, ["template"], ["*"]
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListColumnComponent, "lib-list-column", never, { "title": "title"; "fullWidth": "full-width"; }, {}, ["template"], ["*"]>;
|
|
9
9
|
}
|
|
@@ -3,5 +3,5 @@ export declare class ListDetailsSectionComponent {
|
|
|
3
3
|
template: any | null;
|
|
4
4
|
constructor();
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListDetailsSectionComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListDetailsSectionComponent, "lib-list-details-section", never, {}, {}, ["template"], ["*"]
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListDetailsSectionComponent, "lib-list-details-section", never, {}, {}, ["template"], ["*"]>;
|
|
7
7
|
}
|
|
@@ -3,5 +3,5 @@ export declare class ListTileComponent {
|
|
|
3
3
|
template: any | null;
|
|
4
4
|
constructor();
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListTileComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListTileComponent, "lib-list-tile", never, {}, {}, ["template"], ["*"]
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListTileComponent, "lib-list-tile", never, {}, {}, ["template"], ["*"]>;
|
|
7
7
|
}
|
|
@@ -7,5 +7,5 @@ export declare class ListViewEmptyStateComponent implements OnInit {
|
|
|
7
7
|
constructor();
|
|
8
8
|
ngOnInit(): void;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListViewEmptyStateComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewEmptyStateComponent, "lib-list-view-empty-state", never, { "title": "title"; "subTitle": "sub-title"; "newItemLabel": "new-item-label"; }, {}, never, never
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewEmptyStateComponent, "lib-list-view-empty-state", never, { "title": "title"; "subTitle": "sub-title"; "newItemLabel": "new-item-label"; }, {}, never, never>;
|
|
11
11
|
}
|
|
@@ -3,8 +3,11 @@ import { MenuOption } from '../../types';
|
|
|
3
3
|
import { ListTileComponent } from './list-tile.component';
|
|
4
4
|
import { ListColumnComponent } from './list-column.component';
|
|
5
5
|
import { ListDetailsSectionComponent } from './list-details-section.component';
|
|
6
|
+
import { FilterClause, SearchOption } from '../advanced-search/models';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class ListViewComponent implements OnChanges {
|
|
9
|
+
searchOptions: SearchOption[];
|
|
10
|
+
filters: FilterClause[];
|
|
8
11
|
busy: boolean;
|
|
9
12
|
items: any[] | null | undefined;
|
|
10
13
|
count: number | null;
|
|
@@ -30,6 +33,7 @@ export declare class ListViewComponent implements OnChanges {
|
|
|
30
33
|
}>;
|
|
31
34
|
sortChanged: EventEmitter<string>;
|
|
32
35
|
sortdirChanged: EventEmitter<string>;
|
|
36
|
+
advancedSearchChanged: EventEmitter<FilterClause[]>;
|
|
33
37
|
private multipleFullWidth;
|
|
34
38
|
expandIcon: string;
|
|
35
39
|
collapseIcon: string;
|
|
@@ -49,8 +53,9 @@ export declare class ListViewComponent implements OnChanges {
|
|
|
49
53
|
emitPageSizeChanged($event: number): void;
|
|
50
54
|
emitSortChanged($event: string): void;
|
|
51
55
|
emitSortdirChanged($event: string): void;
|
|
56
|
+
emitAdvancedSearchChanged($event: FilterClause[]): void;
|
|
52
57
|
toggleDetails(item: any): void;
|
|
53
58
|
private setTilesDeckClass;
|
|
54
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListViewComponent, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewComponent, "lib-list-view", never, { "busy": "busy"; "items": "items"; "count": "count"; "page": "page"; "view": "view"; "sort": "sort"; "pageSize": "page-size"; "pageSizeOptions": "page-size-options"; "sortOptions": "sort-options"; "sortdir": "sort-dir"; "tilesCount": "tiles-count"; "showPager": "show-pager"; "pagerPosition": "pager-position"; "detailsSectionPropertyCount": "details-section-property-count"; }, { "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "detailsOpened": "detailsOpened"; "sortChanged": "sortChanged"; "sortdirChanged": "sortdirChanged"; }, ["tiles", "details", "cols"], ["*"]
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewComponent, "lib-list-view", never, { "searchOptions": "search-options"; "filters": "filters"; "busy": "busy"; "items": "items"; "count": "count"; "page": "page"; "view": "view"; "sort": "sort"; "pageSize": "page-size"; "pageSizeOptions": "page-size-options"; "sortOptions": "sort-options"; "sortdir": "sort-dir"; "tilesCount": "tiles-count"; "showPager": "show-pager"; "pagerPosition": "pager-position"; "detailsSectionPropertyCount": "details-section-property-count"; }, { "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "detailsOpened": "detailsOpened"; "sortChanged": "sortChanged"; "sortdirChanged": "sortdirChanged"; "advancedSearchChanged": "advancedSearchChanged"; }, ["tiles", "details", "cols"], ["*"]>;
|
|
56
61
|
}
|
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { OnInit } from '@angular/core';
|
|
2
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
3
3
|
import { NavLink } from '../../types';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class NavLinksListComponent implements OnInit {
|
|
5
|
+
export declare class NavLinksListComponent implements OnInit, OnDestroy {
|
|
6
6
|
links: Observable<NavLink[]> | undefined;
|
|
7
7
|
activeFragment: Observable<string> | undefined;
|
|
8
8
|
navLinkClass: string | string;
|
|
9
9
|
navLinkActiveClass: string | string[];
|
|
10
10
|
containerClass: string | string[] | undefined;
|
|
11
11
|
showIcons: boolean | undefined;
|
|
12
|
+
fragmentValue: string | undefined;
|
|
13
|
+
private fragmentSub$;
|
|
12
14
|
constructor();
|
|
15
|
+
ngOnDestroy(): void;
|
|
13
16
|
ngOnInit(): void;
|
|
14
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavLinksListComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavLinksListComponent, "lib-nav-links-list", never, { "links": "links"; "activeFragment": "active-fragment"; "navLinkClass": "link-class"; "navLinkActiveClass": "link-active-class"; "containerClass": "container-class"; "showIcons": "show-icons"; }, {}, never, never
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavLinksListComponent, "lib-nav-links-list", never, { "links": "links"; "activeFragment": "active-fragment"; "navLinkClass": "link-class"; "navLinkActiveClass": "link-active-class"; "containerClass": "container-class"; "showIcons": "show-icons"; }, {}, never, never>;
|
|
16
19
|
}
|
|
@@ -2,8 +2,8 @@ import { IAppNotifications, NavLink } from './../../types';
|
|
|
2
2
|
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class NotificationsIndicatorComponent implements OnInit, OnDestroy {
|
|
5
|
-
notifications
|
|
6
|
-
links
|
|
5
|
+
notifications?: IAppNotifications | undefined;
|
|
6
|
+
links?: any;
|
|
7
7
|
menuExpanded: boolean;
|
|
8
8
|
unreadCount: number;
|
|
9
9
|
items: any[];
|
|
@@ -11,12 +11,12 @@ export declare class NotificationsIndicatorComponent implements OnInit, OnDestro
|
|
|
11
11
|
private notificationsSub$;
|
|
12
12
|
private inboxAction;
|
|
13
13
|
newArrival: boolean;
|
|
14
|
-
constructor(notifications
|
|
14
|
+
constructor(notifications?: IAppNotifications | undefined, links?: any);
|
|
15
15
|
ngOnDestroy(): void;
|
|
16
16
|
ngOnInit(): void;
|
|
17
17
|
doInboxAction(): void;
|
|
18
18
|
removeItem(index: number): void;
|
|
19
19
|
onClickOutside($event: any): void;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsIndicatorComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsIndicatorComponent, "lib-notifications-indicator", never, {}, {}, never, never
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsIndicatorComponent, "lib-notifications-indicator", never, {}, {}, never, never>;
|
|
22
22
|
}
|
|
@@ -32,5 +32,5 @@ export declare class PagerComponent implements OnInit, OnChanges {
|
|
|
32
32
|
sortOptionChanged(sort: string): void;
|
|
33
33
|
toggleSortdir(): void;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<PagerComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PagerComponent, "lib-pager", never, { "busy": "busy"; "count": "count"; "page": "page"; "pageSize": "page-size"; "pageSizeOptions": "page-size-options"; "sortOptions": "sort-options"; "sort": "sort"; "sortdir": "sort-dir"; }, { "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "sortChanged": "sortChanged"; "sortdirChanged": "sortdirChanged"; }, never, never
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PagerComponent, "lib-pager", never, { "busy": "busy"; "count": "count"; "page": "page"; "pageSize": "page-size"; "pageSizeOptions": "page-size-options"; "sortOptions": "sort-options"; "sort": "sort"; "sortdir": "sort-dir"; }, { "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "sortChanged": "sortChanged"; "sortdirChanged": "sortdirChanged"; }, never, never>;
|
|
36
36
|
}
|
|
@@ -14,5 +14,5 @@ export declare class SidePaneComponent implements OnInit, OnDestroy {
|
|
|
14
14
|
onSidePaneActivated(component: any): void;
|
|
15
15
|
onSidePaneDeactivated($event: any): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidePaneComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": "visible"; }, { "onComplete": "onComplete"; }, never, ["*"]
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": "visible"; }, { "onComplete": "onComplete"; }, never, ["*"]>;
|
|
18
18
|
}
|
|
@@ -7,5 +7,5 @@ export declare class SkeletonLoaderComponent implements OnInit {
|
|
|
7
7
|
ngOnInit(): void;
|
|
8
8
|
counter(i: number): number[];
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonLoaderComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonLoaderComponent, "lib-skeleton-loader", never, { "count": "count"; "type": "type"; }, {}, never, never
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonLoaderComponent, "lib-skeleton-loader", never, { "count": "count"; "type": "type"; }, {}, never, never>;
|
|
11
11
|
}
|
|
@@ -4,5 +4,5 @@ export declare class LibStepInfoDirective {
|
|
|
4
4
|
template: TemplateRef<any>;
|
|
5
5
|
constructor(template: TemplateRef<any>);
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibStepInfoDirective, never>;
|
|
7
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LibStepInfoDirective, "[libStepInfo]", never, {}, {}, never
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LibStepInfoDirective, "[libStepInfo]", never, {}, {}, never>;
|
|
8
8
|
}
|
|
@@ -4,5 +4,5 @@ export declare class LibStepLabelDirective {
|
|
|
4
4
|
template: TemplateRef<any>;
|
|
5
5
|
constructor(template: TemplateRef<any>);
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibStepLabelDirective, never>;
|
|
7
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LibStepLabelDirective, "[libStepLabel]", never, {}, {}, never
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LibStepLabelDirective, "[libStepLabel]", never, {}, {}, never>;
|
|
8
8
|
}
|
|
@@ -30,5 +30,5 @@ export declare class LibStepComponent {
|
|
|
30
30
|
/** Shows the current state of the step. */
|
|
31
31
|
get state(): StepState;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibStepComponent, [{ optional: true; }]>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibStepComponent, "lib-step", never, { "class": "class"; "stepControl": "stepControl"; }, {}, ["stepLabel", "stepInfo"], ["*"]
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibStepComponent, "lib-step", never, { "class": "class"; "stepControl": "stepControl"; }, {}, ["stepLabel", "stepInfo"], ["*"]>;
|
|
34
34
|
}
|
|
@@ -1,15 +1,19 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, QueryList } from '@angular/core';
|
|
1
|
+
import { AfterViewChecked, ChangeDetectorRef, EventEmitter, OnInit, QueryList } from '@angular/core';
|
|
2
2
|
import { LibStepComponent, StepState } from './lib-step.component';
|
|
3
3
|
import { StepperType } from './types/stepper-type';
|
|
4
4
|
import { StepSelectedEvent } from './types/step-selected-event';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class LibStepperComponent implements OnInit {
|
|
6
|
+
export declare class LibStepperComponent implements OnInit, AfterViewChecked {
|
|
7
|
+
private _changeDetectorRef;
|
|
7
8
|
private _currentStepIndex;
|
|
8
|
-
|
|
9
|
+
private _isCompleted;
|
|
10
|
+
constructor(_changeDetectorRef: ChangeDetectorRef);
|
|
9
11
|
/** The inner steps of the wizard. */
|
|
10
12
|
steps: QueryList<LibStepComponent>;
|
|
11
13
|
/** Emmited when a step change occurs. */
|
|
12
14
|
readonly stepChanged: EventEmitter<StepSelectedEvent>;
|
|
15
|
+
/** Emmited when the stepper navigates away from the final step. Only emits once. */
|
|
16
|
+
readonly completed: EventEmitter<void>;
|
|
13
17
|
/** Indicates whether each step has to be validated before proceeding to the next. */
|
|
14
18
|
linear: boolean;
|
|
15
19
|
/** The type of the stepper. */
|
|
@@ -20,7 +24,14 @@ export declare class LibStepperComponent implements OnInit {
|
|
|
20
24
|
get currentStep(): LibStepComponent | undefined;
|
|
21
25
|
/** The index (starting from zero) of the current wizard step. */
|
|
22
26
|
get currentStepIndex(): number;
|
|
27
|
+
/** Indicates whether stepper can go a step back. */
|
|
28
|
+
get canGoBack(): boolean;
|
|
29
|
+
/** Indicates whether stepper can go a step forward. */
|
|
30
|
+
get canGoForward(): boolean;
|
|
31
|
+
/** Indicates whether */
|
|
32
|
+
get isCompleted(): boolean;
|
|
23
33
|
ngOnInit(): void;
|
|
34
|
+
ngAfterViewChecked(): void;
|
|
24
35
|
/** Proceeds to the next step, if any. */
|
|
25
36
|
goToNextStep(): void;
|
|
26
37
|
/** Proceeds to the previous step, if any. */
|
|
@@ -28,5 +39,5 @@ export declare class LibStepperComponent implements OnInit {
|
|
|
28
39
|
onSelectStep(selectedStep: LibStepComponent): void;
|
|
29
40
|
private updateCurrentStepIndex;
|
|
30
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibStepperComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibStepperComponent, "lib-stepper", never, { "linear": "linear"; "type": "type"; }, { "stepChanged": "stepChanged"; }, ["steps"], never
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibStepperComponent, "lib-stepper", never, { "linear": "linear"; "type": "type"; }, { "stepChanged": "stepChanged"; "completed": "completed"; }, ["steps"], never>;
|
|
32
43
|
}
|
|
@@ -17,5 +17,5 @@ export declare class LibTabGroupComponent implements OnInit, AfterContentInit, A
|
|
|
17
17
|
onTabChanged(selectedTab: LibTabComponent): void;
|
|
18
18
|
onTabSelectChanged(selectedTabIndex: number): void;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibTabGroupComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibTabGroupComponent, "lib-tab-group", never, {}, { "tabChanged": "tabChanged"; }, ["tabs"], never
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibTabGroupComponent, "lib-tab-group", never, {}, { "tabChanged": "tabChanged"; }, ["tabs"], never>;
|
|
21
21
|
}
|
|
@@ -18,5 +18,5 @@ export declare class LibTabComponent implements OnInit {
|
|
|
18
18
|
set isActive(isActive: boolean);
|
|
19
19
|
ngOnInit(): void;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibTabComponent, [{ optional: true; }]>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibTabComponent, "lib-tab", never, { "label": "label"; "id": "id"; }, {}, never, ["*"]
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibTabComponent, "lib-tab", never, { "label": "label"; "id": "id"; }, {}, never, ["*"]>;
|
|
22
22
|
}
|
|
@@ -9,5 +9,5 @@ export declare class ToasterContainerComponent implements OnInit {
|
|
|
9
9
|
ngOnInit(): void;
|
|
10
10
|
remove(index: number): void;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToasterContainerComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToasterContainerComponent, "lib-toaster-container", never, {}, {}, never, never
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToasterContainerComponent, "lib-toaster-container", never, {}, {}, never, never>;
|
|
13
13
|
}
|
|
@@ -11,5 +11,5 @@ export declare class ToasterComponent implements OnInit {
|
|
|
11
11
|
ngOnInit(): void;
|
|
12
12
|
closeToast(index: number): void;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToasterComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToasterComponent, "lib-toaster", never, { "toast": "toast"; "i": "i"; }, { "remove": "remove"; }, never, never
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToasterComponent, "lib-toaster", never, { "toast": "toast"; "i": "i"; }, { "remove": "remove"; }, never, never>;
|
|
15
15
|
}
|
|
@@ -15,5 +15,5 @@ export declare class ToggleComponent implements OnInit, ControlValueAccessor {
|
|
|
15
15
|
ngOnInit(): void;
|
|
16
16
|
changeValue(): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "lib-toggle", never, { "value": "value"; "disabled": "disabled"; }, { "valueChange": "valueChange"; }, never, never
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "lib-toggle", never, { "value": "value"; "disabled": "disabled"; }, { "valueChange": "valueChange"; }, never, never>;
|
|
19
19
|
}
|
|
@@ -20,5 +20,5 @@ export declare class UserProfileMenuComponent implements OnInit {
|
|
|
20
20
|
private setCurrentUser;
|
|
21
21
|
onClickOutside($event: any): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserProfileMenuComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UserProfileMenuComponent, "lib-user-profile-menu", never, { "showUserName": "show-user-name"; }, {}, never, never
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserProfileMenuComponent, "lib-user-profile-menu", never, { "showUserName": "show-user-name"; }, {}, never, never>;
|
|
24
24
|
}
|
|
@@ -36,5 +36,5 @@ export declare class ClickOutsideDirective implements OnInit, OnChanges, OnDestr
|
|
|
36
36
|
private _initWindowBlurListener;
|
|
37
37
|
private _removeWindowBlurListener;
|
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
|
|
39
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[clickOutside]", never, { "clickOutsideEnabled": "clickOutsideEnabled"; "attachOutsideOnClick": "attachOutsideOnClick"; "delayClickOutsideInit": "delayClickOutsideInit"; "emitOnBlur": "emitOnBlur"; "exclude": "exclude"; "excludeBeforeClick": "excludeBeforeClick"; "clickOutsideEvents": "clickOutsideEvents"; }, { "clickOutside": "clickOutside"; }, never
|
|
39
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[clickOutside]", never, { "clickOutsideEnabled": "clickOutsideEnabled"; "attachOutsideOnClick": "attachOutsideOnClick"; "delayClickOutsideInit": "delayClickOutsideInit"; "emitOnBlur": "emitOnBlur"; "exclude": "exclude"; "excludeBeforeClick": "excludeBeforeClick"; "clickOutsideEvents": "clickOutsideEvents"; }, { "clickOutside": "clickOutside"; }, never>;
|
|
40
40
|
}
|
|
@@ -5,5 +5,5 @@ export declare class DynamicComponentHostDirective {
|
|
|
5
5
|
hostName: string;
|
|
6
6
|
constructor(viewContainerRef: ViewContainerRef);
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentHostDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentHostDirective, "[appDynamicComponentHost]", never, { "hostName": "hostName"; }, {}, never
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentHostDirective, "[appDynamicComponentHost]", never, { "hostName": "hostName"; }, {}, never>;
|
|
9
9
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FilterClause, SearchOption } from './../controls/advanced-search/models';
|
|
1
2
|
import { Observable } from 'rxjs';
|
|
2
3
|
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
4
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
@@ -17,6 +18,8 @@ export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy
|
|
|
17
18
|
sort: string | null;
|
|
18
19
|
sortdir: string | null;
|
|
19
20
|
search: string | null;
|
|
21
|
+
filters: FilterClause[];
|
|
22
|
+
searchOptions: SearchOption[];
|
|
20
23
|
sortOptions: MenuOption[];
|
|
21
24
|
metaItems: HeaderMetaItem[];
|
|
22
25
|
abstract newItemLink: string | null;
|
|
@@ -25,7 +28,14 @@ export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy
|
|
|
25
28
|
ngOnDestroy(): void;
|
|
26
29
|
getViewActions(): Observable<ViewAction[]>;
|
|
27
30
|
ngOnInit(): void;
|
|
31
|
+
/**
|
|
32
|
+
* Get filters from a querystring
|
|
33
|
+
* @param queryParamMap
|
|
34
|
+
* @returns filters found from a paramMap
|
|
35
|
+
*/
|
|
36
|
+
private getFiltersFrom;
|
|
28
37
|
private setRouteParams;
|
|
38
|
+
private filterClausesToString;
|
|
29
39
|
actionHandler($event: ViewAction): void;
|
|
30
40
|
private load;
|
|
31
41
|
private updateHeaderMeta;
|
|
@@ -36,7 +46,8 @@ export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy
|
|
|
36
46
|
pageSizeChanged(pageSize: number): void;
|
|
37
47
|
sortChanged(sort: string): void;
|
|
38
48
|
sortdirChanged(sortdir: string): void;
|
|
49
|
+
advancedSearchChanged(filters: FilterClause[]): void;
|
|
39
50
|
searchChanged(searchText: string | null): void;
|
|
40
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseListComponent<any>, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, {}, {}, never, never
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, {}, {}, never, never>;
|
|
42
53
|
}
|
|
@@ -4,5 +4,5 @@ export declare class ShellFooterComponent {
|
|
|
4
4
|
links: IAppLinks;
|
|
5
5
|
constructor(links: IAppLinks);
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellFooterComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShellFooterComponent, "lib-shell-footer", never, {}, {}, never, never
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellFooterComponent, "lib-shell-footer", never, {}, {}, never, never>;
|
|
8
8
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ShellLayoutType } from './../../../types';
|
|
2
1
|
import { AuthService } from '@indice/ng-auth';
|
|
3
2
|
import { OnInit, OnDestroy } from '@angular/core';
|
|
4
3
|
import { User } from 'oidc-client';
|
|
@@ -17,7 +16,7 @@ export declare class ShellHeaderComponent implements OnInit, OnDestroy {
|
|
|
17
16
|
profileMenuVisible: boolean;
|
|
18
17
|
showUserNameOnHeader: boolean | undefined;
|
|
19
18
|
showAlerts: boolean | undefined;
|
|
20
|
-
|
|
19
|
+
showLangs: boolean | undefined;
|
|
21
20
|
border: boolean;
|
|
22
21
|
sectionLinks: Observable<NavLink[]>;
|
|
23
22
|
mobileMenuExpanded: boolean;
|
|
@@ -36,5 +35,5 @@ export declare class ShellHeaderComponent implements OnInit, OnDestroy {
|
|
|
36
35
|
signin(event: any | null | undefined): void;
|
|
37
36
|
private setCurrentUser;
|
|
38
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellHeaderComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": "section-links"; "profileMenuVisible": "profile-menu"; "showUserNameOnHeader": "show-userName"; "showAlerts": "show-alerts"; "
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": "section-links"; "profileMenuVisible": "profile-menu"; "showUserNameOnHeader": "show-userName"; "showAlerts": "show-alerts"; "showLangs": "show-langs"; "border": "border"; }, {}, never, never>;
|
|
40
39
|
}
|
|
@@ -25,5 +25,5 @@ export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterVie
|
|
|
25
25
|
ngOnDestroy(): void;
|
|
26
26
|
private loadCustomComponent;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellLayoutComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, {}, {}, never, never
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, {}, {}, never, never>;
|
|
29
29
|
}
|
|
@@ -14,5 +14,5 @@ export declare class ShellSidebarComponent implements OnInit {
|
|
|
14
14
|
constructor(router: Router, route: ActivatedRoute, links: any);
|
|
15
15
|
ngOnInit(): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarComponent, "lib-shell-sidebar", never, { "sectionLinksPath": "section-links"; "shellConfig": "config"; }, {}, never, never
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarComponent, "lib-shell-sidebar", never, { "sectionLinksPath": "section-links"; "shellConfig": "config"; }, {}, never, never>;
|
|
18
18
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AuthService } from '@indice/ng-auth';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { ShellHeaderComponent } from '../shell-header/shell-header.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ShellSidebarHeaderComponent extends ShellHeaderComponent {
|
|
6
|
+
protected authService: AuthService;
|
|
7
|
+
protected router: Router;
|
|
8
|
+
protected route: ActivatedRoute;
|
|
9
|
+
config: any;
|
|
10
|
+
links: any;
|
|
11
|
+
constructor(authService: AuthService, router: Router, route: ActivatedRoute, config: any, links: any);
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarHeaderComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarHeaderComponent, "lib-shell-sidebar-header", never, {}, {}, never, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { IShellConfig } from '../../../types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ShellSidebarLayoutComponent implements OnInit {
|
|
5
|
+
config: IShellConfig | undefined;
|
|
6
|
+
showMobileSidebar: boolean;
|
|
7
|
+
constructor();
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
toggleMobileSidebar(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarLayoutComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarLayoutComponent, "lib-shell-sidebar-layout", never, { "config": "config"; }, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { IShellConfig } from '../../../types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ShellStackedLayoutComponent implements OnInit {
|
|
5
|
+
config: IShellConfig | undefined;
|
|
6
|
+
constructor();
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShellStackedLayoutComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellStackedLayoutComponent, "lib-shell-stacked-layout", never, { "config": "config"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -20,5 +20,5 @@ export declare class FormLayoutComponent implements OnInit {
|
|
|
20
20
|
searchActionType(text: string): void;
|
|
21
21
|
routerLinkActionClick(action: RouterViewAction | any, relative?: boolean): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormLayoutComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormLayoutComponent, "lib-form-layout", never, { "title": "title"; "searchPlaceholder": "search-placeholder"; "actions": "actions"; "subTitle": "sub-title"; }, { "onAction": "onAction"; "onSearch": "onSearch"; "onComplete": "onComplete"; }, never, ["*"]
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormLayoutComponent, "lib-form-layout", never, { "title": "title"; "searchPlaceholder": "search-placeholder"; "actions": "actions"; "subTitle": "sub-title"; }, { "onAction": "onAction"; "onSearch": "onSearch"; "onComplete": "onComplete"; }, never, ["*"]>;
|
|
24
24
|
}
|
|
@@ -21,5 +21,5 @@ export declare class ModelViewLayoutComponent implements OnInit {
|
|
|
21
21
|
onSidePaneDeactivated($event: any): void;
|
|
22
22
|
closeSidePane(): void;
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelViewLayoutComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": "title"; "primary": "primary-links"; "secondary": "secondary-links"; "metaItems": "meta-items"; }, {}, never, ["*"]
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": "title"; "primary": "primary-links"; "secondary": "secondary-links"; "metaItems": "meta-items"; }, {}, never, ["*"]>;
|
|
25
25
|
}
|