@indice/ng-components 0.3.2-beta.8 → 0.3.2-beta.80
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/_styles.scss +105 -96
- package/esm2022/lib/controls/content-tile/content-tile.component.mjs +34 -6
- package/esm2022/lib/controls/date-picker/date-picker.component.mjs +3 -3
- package/esm2022/lib/controls/drop-down-menu/drop-down-menu.component.mjs +3 -3
- package/esm2022/lib/controls/nav-links-list/nav-links-list.component.mjs +3 -3
- package/esm2022/lib/controls/notifications-indicator/notifications-indicator.component.mjs +3 -3
- package/esm2022/lib/controls/side-pane/side-pane.component.mjs +48 -29
- package/esm2022/lib/controls/skeleton-loader/skeleton-loader.component.mjs +3 -3
- package/esm2022/lib/controls/user-profile-menu/user-profile-menu.component.mjs +3 -3
- package/esm2022/lib/helpers/base-list.component.mjs +10 -5
- package/esm2022/lib/layouts/shell/shell-header/shell-header.component.mjs +6 -3
- package/esm2022/lib/layouts/shell/shell-layout/shell-layout.component.mjs +8 -6
- package/esm2022/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.mjs +6 -3
- package/esm2022/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.mjs +8 -4
- package/esm2022/lib/layouts/views/form-layout/form-layout.component.mjs +1 -1
- package/esm2022/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +6 -4
- package/esm2022/lib/layouts/views/view-layout/view-layout.component.mjs +3 -3
- package/esm2022/lib/ng-components.module.mjs +2 -4
- package/esm2022/lib/pages/http-status/error/error.component.mjs +3 -3
- package/esm2022/lib/pages/http-status/page-not-found/page-not-found.component.mjs +3 -3
- package/esm2022/lib/pages/http-status/unauthorized/unauthorized.component.mjs +3 -3
- package/esm2022/lib/types.mjs +10 -1
- package/esm2022/public-api.mjs +1 -3
- package/fesm2022/indice-ng-components.mjs +117 -72
- package/fesm2022/indice-ng-components.mjs.map +1 -1
- package/lib/controls/content-tile/content-tile.component.d.ts +13 -2
- package/lib/controls/side-pane/side-pane.component.d.ts +9 -3
- package/lib/helpers/base-list.component.d.ts +2 -1
- package/lib/layouts/shell/shell-header/shell-header.component.d.ts +2 -1
- package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +3 -2
- package/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.d.ts +3 -2
- package/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.d.ts +2 -1
- package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +2 -0
- package/lib/ng-components.module.d.ts +7 -9
- package/lib/types.d.ts +8 -1
- package/package.json +1 -1
- package/public-api.d.ts +0 -2
- package/esm2022/lib/controls/content-tile/content-tile-header/content-tile-header.component.mjs +0 -17
- package/esm2022/lib/controls/content-tile/content-tile-item/content-tile-item.component.mjs +0 -19
- package/lib/controls/content-tile/content-tile-header/content-tile-header.component.d.ts +0 -7
- package/lib/controls/content-tile/content-tile-item/content-tile-item.component.d.ts +0 -8
|
@@ -1,8 +1,19 @@
|
|
|
1
1
|
import { EventEmitter, OnInit, QueryList } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
|
-
import { ContentTileHeaderComponent } from './content-tile-header/content-tile-header.component';
|
|
4
|
-
import { ContentTileItemComponent } from './content-tile-item/content-tile-item.component';
|
|
5
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ContentTileHeaderComponent {
|
|
5
|
+
template: any | undefined;
|
|
6
|
+
constructor();
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContentTileHeaderComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileHeaderComponent, "lib-content-tile-header", never, {}, {}, ["template"], ["*"], false, never>;
|
|
9
|
+
}
|
|
10
|
+
export declare class ContentTileItemComponent {
|
|
11
|
+
title: string | undefined;
|
|
12
|
+
template: any | undefined;
|
|
13
|
+
constructor();
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContentTileItemComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileItemComponent, "lib-content-tile-item", never, { "title": { "alias": "title"; "required": false; }; }, {}, ["template"], ["*"], false, never>;
|
|
16
|
+
}
|
|
6
17
|
export declare class ContentTileComponent implements OnInit {
|
|
7
18
|
private router;
|
|
8
19
|
title: string | undefined;
|
|
@@ -1,22 +1,28 @@
|
|
|
1
|
+
import { SidePaneSize } from './../../types';
|
|
1
2
|
import { Router } from '@angular/router';
|
|
2
|
-
import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
|
|
3
|
+
import { OnInit, OnDestroy, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SidePaneComponent implements OnInit, OnDestroy {
|
|
5
|
+
export declare class SidePaneComponent implements OnInit, OnDestroy, OnChanges {
|
|
5
6
|
private router;
|
|
6
7
|
private document;
|
|
7
8
|
protected showPane: boolean;
|
|
8
9
|
sizeContainerStyle: string;
|
|
9
10
|
overlayStyle: string;
|
|
11
|
+
size: SidePaneSize | undefined;
|
|
10
12
|
onComplete: EventEmitter<boolean>;
|
|
11
13
|
onOpen: EventEmitter<any>;
|
|
12
14
|
onClose: EventEmitter<any>;
|
|
13
15
|
constructor(router: Router, document: any);
|
|
16
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
14
17
|
ngOnDestroy(): void;
|
|
15
18
|
ngOnInit(): void;
|
|
16
19
|
onSidePaneActivated(component: any): void;
|
|
20
|
+
private initPane;
|
|
21
|
+
private overlayToClass;
|
|
22
|
+
private sizeToClass;
|
|
17
23
|
onSidePaneDeactivated($event: any): void;
|
|
18
24
|
show(): void;
|
|
19
25
|
hide(): void;
|
|
20
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidePaneComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": { "alias": "visible"; "required": false; }; }, { "onComplete": "onComplete"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, ["*"], false, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": { "alias": "visible"; "required": false; }; "size": { "alias": "pane-size"; "required": false; }; }, { "onComplete": "onComplete"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, ["*"], false, never>;
|
|
22
28
|
}
|
|
@@ -25,6 +25,7 @@ export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy
|
|
|
25
25
|
abstract newItemLink: string | null;
|
|
26
26
|
private routeSub$;
|
|
27
27
|
private loadSub$;
|
|
28
|
+
autoLoad: boolean;
|
|
28
29
|
constructor(route$: ActivatedRoute, router$: Router);
|
|
29
30
|
ngOnDestroy(): void;
|
|
30
31
|
getViewActions(): Observable<ViewAction[]>;
|
|
@@ -50,5 +51,5 @@ export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy
|
|
|
50
51
|
advancedSearchChanged(filters: FilterClause[]): void;
|
|
51
52
|
searchChanged(searchText: string | null): void;
|
|
52
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseListComponent<any>, never>;
|
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, {}, {}, never, never, false, never>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, { "autoLoad": { "alias": "auto-load"; "required": false; }; }, {}, never, never, false, never>;
|
|
54
55
|
}
|
|
@@ -18,6 +18,7 @@ export declare class ShellHeaderComponent implements OnInit, OnDestroy {
|
|
|
18
18
|
showAlerts: boolean | undefined;
|
|
19
19
|
showLangs: boolean | undefined;
|
|
20
20
|
border: boolean;
|
|
21
|
+
busy: boolean;
|
|
21
22
|
sectionLinks: Observable<NavLink[]>;
|
|
22
23
|
mobileMenuExpanded: boolean;
|
|
23
24
|
userMenuExpanded: boolean;
|
|
@@ -35,5 +36,5 @@ export declare class ShellHeaderComponent implements OnInit, OnDestroy {
|
|
|
35
36
|
signin(event: any | null | undefined): void;
|
|
36
37
|
private setCurrentUser;
|
|
37
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellHeaderComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": { "alias": "section-links"; "required": false; }; "profileMenuVisible": { "alias": "profile-menu"; "required": false; }; "showUserNameOnHeader": { "alias": "show-userName"; "required": false; }; "showAlerts": { "alias": "show-alerts"; "required": false; }; "showLangs": { "alias": "show-langs"; "required": false; }; "border": { "alias": "border"; "required": false; }; }, {}, never, never, false, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": { "alias": "section-links"; "required": false; }; "profileMenuVisible": { "alias": "profile-menu"; "required": false; }; "showUserNameOnHeader": { "alias": "show-userName"; "required": false; }; "showAlerts": { "alias": "show-alerts"; "required": false; }; "showLangs": { "alias": "show-langs"; "required": false; }; "border": { "alias": "border"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; }, {}, never, never, false, never>;
|
|
39
40
|
}
|
|
@@ -8,9 +8,10 @@ export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterVie
|
|
|
8
8
|
private _componentLoaderFactory;
|
|
9
9
|
private _config;
|
|
10
10
|
private _dynamicComponentHosts;
|
|
11
|
+
busy: boolean;
|
|
12
|
+
sidebarFooterTemplate?: TemplateRef<any>;
|
|
11
13
|
private _routerSub$;
|
|
12
14
|
constructor(_router: Router, _componentLoaderFactory: ComponentLoaderFactory, _config: IShellConfig | undefined);
|
|
13
|
-
sidebarFooterTemplate?: TemplateRef<any>;
|
|
14
15
|
showRightPaneSM: boolean;
|
|
15
16
|
activeConfig: IShellConfig;
|
|
16
17
|
loaded: boolean;
|
|
@@ -22,5 +23,5 @@ export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterVie
|
|
|
22
23
|
ngOnDestroy(): void;
|
|
23
24
|
private loadCustomComponent;
|
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellLayoutComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, { "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, { "busy": { "alias": "busy"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
27
|
}
|
|
@@ -4,12 +4,13 @@ import { UserSettingsService } from '../../../services/user-settings.service';
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ShellSidebarLayoutComponent implements OnInit {
|
|
6
6
|
private _userSettings;
|
|
7
|
-
constructor(_userSettings: UserSettingsService);
|
|
8
7
|
config: IShellConfig | undefined;
|
|
9
8
|
sidebarFooterTemplate?: TemplateRef<any>;
|
|
9
|
+
busy: boolean;
|
|
10
|
+
constructor(_userSettings: UserSettingsService);
|
|
10
11
|
showMobileSidebar: boolean;
|
|
11
12
|
ngOnInit(): void;
|
|
12
13
|
toggleMobileSidebar(): void;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarLayoutComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarLayoutComponent, "lib-shell-sidebar-layout", never, { "config": { "alias": "config"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarLayoutComponent, "lib-shell-sidebar-layout", never, { "config": { "alias": "config"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
16
|
}
|
|
@@ -4,7 +4,8 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class ShellStackedLayoutComponent implements OnInit {
|
|
5
5
|
constructor();
|
|
6
6
|
config: IShellConfig | undefined;
|
|
7
|
+
busy: boolean;
|
|
7
8
|
ngOnInit(): void;
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellStackedLayoutComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShellStackedLayoutComponent, "lib-shell-stacked-layout", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellStackedLayoutComponent, "lib-shell-stacked-layout", never, { "config": { "alias": "config"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
11
|
}
|
|
@@ -10,12 +10,14 @@ export declare class ModelViewLayoutComponent implements OnInit, OnDestroy {
|
|
|
10
10
|
showRightPaneSM: boolean;
|
|
11
11
|
title: string;
|
|
12
12
|
primary: {
|
|
13
|
+
type?: string;
|
|
13
14
|
text: string;
|
|
14
15
|
link: string;
|
|
15
16
|
icon?: string;
|
|
16
17
|
exact?: boolean;
|
|
17
18
|
}[] | null;
|
|
18
19
|
secondary: {
|
|
20
|
+
type?: string;
|
|
19
21
|
text: string;
|
|
20
22
|
link: string;
|
|
21
23
|
icon?: string;
|
|
@@ -55,17 +55,15 @@ import * as i52 from "./layouts/views/view-layout/view-layout.component";
|
|
|
55
55
|
import * as i53 from "./controls/toggle-button/toggle-button.component";
|
|
56
56
|
import * as i54 from "./controls/toggle-buttons-list/toggle-buttons-list.component";
|
|
57
57
|
import * as i55 from "./controls/content-tile/content-tile.component";
|
|
58
|
-
import * as i56 from "./controls/
|
|
59
|
-
import * as i57 from "./controls/
|
|
60
|
-
import * as i58 from "
|
|
61
|
-
import * as i59 from "
|
|
62
|
-
import * as i60 from "@
|
|
63
|
-
import * as i61 from "@angular/
|
|
64
|
-
import * as i62 from "@indice/ng-auth";
|
|
65
|
-
import * as i63 from "@angular/forms";
|
|
58
|
+
import * as i56 from "./controls/stats-grid/stats-grid.component";
|
|
59
|
+
import * as i57 from "./controls/progress-bar/progress-bar.component";
|
|
60
|
+
import * as i58 from "@angular/common";
|
|
61
|
+
import * as i59 from "@angular/router";
|
|
62
|
+
import * as i60 from "@indice/ng-auth";
|
|
63
|
+
import * as i61 from "@angular/forms";
|
|
66
64
|
export declare class IndiceComponentsModule {
|
|
67
65
|
static forRoot(): ModuleWithProviders<IndiceComponentsModule>;
|
|
68
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<IndiceComponentsModule, never>;
|
|
69
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IndiceComponentsModule, [typeof i1.AddressPipe, typeof i2.AdvancedSearchComponent, typeof i3.AuthCallbackComponent, typeof i4.AuthRenewComponent, typeof i5.AvatarInitialsComponent, typeof i6.BreadcrumbComponent, typeof i7.ClickOutsideDirective, typeof i8.CollapsiblePanelComponent, typeof i9.ComboboxComponent, typeof i10.DatepickerComponent, typeof i11.DropDownMenuComponent, typeof i12.DurationFormatPipe, typeof i13.ShortNumberPipe, typeof i14.DynamicComponentHostDirective, typeof i15.ErrorComponent, typeof i16.FormLayoutComponent, typeof i17.KpiTileComponent, typeof i18.LanguageSelectionComponent, typeof i19.LibStepComponent, typeof i20.LibStepInfoDirective, typeof i21.LibStepLabelDirective, typeof i22.LibStepperComponent, typeof i23.LibTabComponent, typeof i24.LibTabGroupComponent, typeof i25.LibTabLabelDirective, typeof i26.ListColumnComponent, typeof i27.ListDetailsSectionComponent, typeof i28.ListTileComponent, typeof i29.ListViewComponent, typeof i30.ListViewEmptyStateComponent, typeof i31.LoggedOutComponent, typeof i32.ModelViewLayoutComponent, typeof i33.NavLinksListComponent, typeof i34.NotificationsIndicatorComponent, typeof i35.PageNotFoundComponent, typeof i36.PagerComponent, typeof i37.ShellFooterComponent, typeof i38.ShellHeaderComponent, typeof i39.ShellLayoutComponent, typeof i40.ShellSidebarComponent, typeof i41.ShellSidebarHeaderComponent, typeof i42.ShellSidebarLayoutComponent, typeof i43.ShellStackedLayoutComponent, typeof i44.SidePaneComponent, typeof i45.SideViewLayoutComponent, typeof i46.SkeletonLoaderComponent, typeof i47.ToasterComponent, typeof i48.ToasterContainerComponent, typeof i49.ToggleComponent, typeof i50.UnauthorizedComponent, typeof i51.UserProfileMenuComponent, typeof i52.ViewLayoutComponent, typeof i53.ToggleButtonComponent, typeof i54.ToggleButtonsListComponent, typeof i55.ContentTileComponent, typeof
|
|
67
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IndiceComponentsModule, [typeof i1.AddressPipe, typeof i2.AdvancedSearchComponent, typeof i3.AuthCallbackComponent, typeof i4.AuthRenewComponent, typeof i5.AvatarInitialsComponent, typeof i6.BreadcrumbComponent, typeof i7.ClickOutsideDirective, typeof i8.CollapsiblePanelComponent, typeof i9.ComboboxComponent, typeof i10.DatepickerComponent, typeof i11.DropDownMenuComponent, typeof i12.DurationFormatPipe, typeof i13.ShortNumberPipe, typeof i14.DynamicComponentHostDirective, typeof i15.ErrorComponent, typeof i16.FormLayoutComponent, typeof i17.KpiTileComponent, typeof i18.LanguageSelectionComponent, typeof i19.LibStepComponent, typeof i20.LibStepInfoDirective, typeof i21.LibStepLabelDirective, typeof i22.LibStepperComponent, typeof i23.LibTabComponent, typeof i24.LibTabGroupComponent, typeof i25.LibTabLabelDirective, typeof i26.ListColumnComponent, typeof i27.ListDetailsSectionComponent, typeof i28.ListTileComponent, typeof i29.ListViewComponent, typeof i30.ListViewEmptyStateComponent, typeof i31.LoggedOutComponent, typeof i32.ModelViewLayoutComponent, typeof i33.NavLinksListComponent, typeof i34.NotificationsIndicatorComponent, typeof i35.PageNotFoundComponent, typeof i36.PagerComponent, typeof i37.ShellFooterComponent, typeof i38.ShellHeaderComponent, typeof i39.ShellLayoutComponent, typeof i40.ShellSidebarComponent, typeof i41.ShellSidebarHeaderComponent, typeof i42.ShellSidebarLayoutComponent, typeof i43.ShellStackedLayoutComponent, typeof i44.SidePaneComponent, typeof i45.SideViewLayoutComponent, typeof i46.SkeletonLoaderComponent, typeof i47.ToasterComponent, typeof i48.ToasterContainerComponent, typeof i49.ToggleComponent, typeof i50.UnauthorizedComponent, typeof i51.UserProfileMenuComponent, typeof i52.ViewLayoutComponent, typeof i53.ToggleButtonComponent, typeof i54.ToggleButtonsListComponent, typeof i55.ContentTileComponent, typeof i55.ContentTileItemComponent, typeof i55.ContentTileHeaderComponent, typeof i56.StatsGridComponent, typeof i57.ProgressBarComponent], [typeof i58.CommonModule, typeof i59.RouterModule, typeof i60.IndiceAuthModule, typeof i61.FormsModule], [typeof i1.AddressPipe, typeof i2.AdvancedSearchComponent, typeof i3.AuthCallbackComponent, typeof i4.AuthRenewComponent, typeof i5.AvatarInitialsComponent, typeof i6.BreadcrumbComponent, typeof i7.ClickOutsideDirective, typeof i8.CollapsiblePanelComponent, typeof i9.ComboboxComponent, typeof i10.DatepickerComponent, typeof i11.DropDownMenuComponent, typeof i12.DurationFormatPipe, typeof i13.ShortNumberPipe, typeof i15.ErrorComponent, typeof i16.FormLayoutComponent, typeof i17.KpiTileComponent, typeof i19.LibStepComponent, typeof i20.LibStepInfoDirective, typeof i21.LibStepLabelDirective, typeof i22.LibStepperComponent, typeof i23.LibTabComponent, typeof i24.LibTabGroupComponent, typeof i25.LibTabLabelDirective, typeof i26.ListColumnComponent, typeof i27.ListDetailsSectionComponent, typeof i28.ListTileComponent, typeof i29.ListViewComponent, typeof i30.ListViewEmptyStateComponent, typeof i31.LoggedOutComponent, typeof i32.ModelViewLayoutComponent, typeof i35.PageNotFoundComponent, typeof i36.PagerComponent, typeof i37.ShellFooterComponent, typeof i38.ShellHeaderComponent, typeof i39.ShellLayoutComponent, typeof i44.SidePaneComponent, typeof i45.SideViewLayoutComponent, typeof i46.SkeletonLoaderComponent, typeof i47.ToasterComponent, typeof i48.ToasterContainerComponent, typeof i49.ToggleComponent, typeof i50.UnauthorizedComponent, typeof i52.ViewLayoutComponent, typeof i53.ToggleButtonComponent, typeof i54.ToggleButtonsListComponent, typeof i55.ContentTileComponent, typeof i55.ContentTileItemComponent, typeof i55.ContentTileHeaderComponent, typeof i56.StatsGridComponent, typeof i57.ProgressBarComponent]>;
|
|
70
68
|
static ɵinj: i0.ɵɵInjectorDeclaration<IndiceComponentsModule>;
|
|
71
69
|
}
|
package/lib/types.d.ts
CHANGED
|
@@ -46,6 +46,12 @@ export declare class NotificationNavLink extends NavLink {
|
|
|
46
46
|
creationDate?: Date | undefined;
|
|
47
47
|
constructor(text: string, path: string, isRead: boolean, creationDate?: Date | undefined);
|
|
48
48
|
}
|
|
49
|
+
export declare class NavLinkSeparator extends NavLink {
|
|
50
|
+
isRead: boolean;
|
|
51
|
+
creationDate?: Date | undefined;
|
|
52
|
+
constructor(text: string, path: string, isRead: boolean, creationDate?: Date | undefined);
|
|
53
|
+
type: string;
|
|
54
|
+
}
|
|
49
55
|
export declare class ViewAction {
|
|
50
56
|
type: string;
|
|
51
57
|
key: string | null;
|
|
@@ -158,7 +164,8 @@ export declare enum SidePaneSize {
|
|
|
158
164
|
Default = "",
|
|
159
165
|
Small25 = "25%",
|
|
160
166
|
Medium50 = "50%",
|
|
161
|
-
Large75 = "75%"
|
|
167
|
+
Large75 = "75%",
|
|
168
|
+
Fullscreen = "100%"
|
|
162
169
|
}
|
|
163
170
|
export declare enum SidePaneOverlayType {
|
|
164
171
|
Default = "",
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -29,8 +29,6 @@ export * from './lib/controls/stepper/lib-step-info.directive';
|
|
|
29
29
|
export * from './lib/controls/stepper/types/stepper-type';
|
|
30
30
|
export * from './lib/controls/toggle-button/toggle-button.component';
|
|
31
31
|
export * from './lib/controls/toggle-buttons-list/toggle-buttons-list.component';
|
|
32
|
-
export * from './lib/controls/content-tile/content-tile-header/content-tile-header.component';
|
|
33
|
-
export * from './lib/controls/content-tile/content-tile-item/content-tile-item.component';
|
|
34
32
|
export * from './lib/controls/content-tile/content-tile.component';
|
|
35
33
|
export * from './lib/controls/stats-grid/stats-grid.component';
|
|
36
34
|
export * from './lib/controls/progress-bar/progress-bar.component';
|
package/esm2022/lib/controls/content-tile/content-tile-header/content-tile-header.component.mjs
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Component, ContentChild, TemplateRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class ContentTileHeaderComponent {
|
|
4
|
-
constructor() {
|
|
5
|
-
this.template = undefined;
|
|
6
|
-
}
|
|
7
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.6", type: ContentTileHeaderComponent, selector: "lib-content-tile-header", queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
|
|
9
|
-
}
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileHeaderComponent, decorators: [{
|
|
11
|
-
type: Component,
|
|
12
|
-
args: [{ selector: 'lib-content-tile-header', template: '<ng-content></ng-content>' }]
|
|
13
|
-
}], ctorParameters: () => [], propDecorators: { template: [{
|
|
14
|
-
type: ContentChild,
|
|
15
|
-
args: [TemplateRef]
|
|
16
|
-
}] } });
|
|
17
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGVudC10aWxlLWhlYWRlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZy1jb21wb25lbnRzL3NyYy9saWIvY29udHJvbHMvY29udGVudC10aWxlL2NvbnRlbnQtdGlsZS1oZWFkZXIvY29udGVudC10aWxlLWhlYWRlci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUdyRSxNQUFNLE9BQU8sMEJBQTBCO0lBRXJDO1FBRDJCLGFBQVEsR0FBb0IsU0FBUyxDQUFDO0lBQ2pELENBQUM7OEdBRk4sMEJBQTBCO2tHQUExQiwwQkFBMEIscUdBQ3ZCLFdBQVcsZ0RBRmdDLDJCQUEyQjs7MkZBQ3pFLDBCQUEwQjtrQkFEdEMsU0FBUzttQkFBQyxFQUFDLFFBQVEsRUFBRSx5QkFBeUIsRUFBRSxRQUFRLEVBQUUsMkJBQTJCLEVBQUM7d0RBRTFELFFBQVE7c0JBQWxDLFlBQVk7dUJBQUMsV0FBVyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgQ29udGVudENoaWxkLCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtzZWxlY3RvcjogJ2xpYi1jb250ZW50LXRpbGUtaGVhZGVyJywgdGVtcGxhdGU6ICc8bmctY29udGVudD48L25nLWNvbnRlbnQ+J30pXG5leHBvcnQgY2xhc3MgQ29udGVudFRpbGVIZWFkZXJDb21wb25lbnQge1xuICBAQ29udGVudENoaWxkKFRlbXBsYXRlUmVmKSB0ZW1wbGF0ZTogYW55IHwgdW5kZWZpbmVkID0gdW5kZWZpbmVkO1xuICBjb25zdHJ1Y3RvcigpIHsgfVxufVxuIl19
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { Component, ContentChild, Input, TemplateRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class ContentTileItemComponent {
|
|
4
|
-
constructor() {
|
|
5
|
-
this.template = undefined;
|
|
6
|
-
}
|
|
7
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.6", type: ContentTileItemComponent, selector: "lib-content-tile-item", inputs: { title: "title" }, queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
|
|
9
|
-
}
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileItemComponent, decorators: [{
|
|
11
|
-
type: Component,
|
|
12
|
-
args: [{ selector: 'lib-content-tile-item', template: '<ng-content></ng-content>' }]
|
|
13
|
-
}], ctorParameters: () => [], propDecorators: { title: [{
|
|
14
|
-
type: Input
|
|
15
|
-
}], template: [{
|
|
16
|
-
type: ContentChild,
|
|
17
|
-
args: [TemplateRef]
|
|
18
|
-
}] } });
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGVudC10aWxlLWl0ZW0uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmctY29tcG9uZW50cy9zcmMvbGliL2NvbnRyb2xzL2NvbnRlbnQtdGlsZS9jb250ZW50LXRpbGUtaXRlbS9jb250ZW50LXRpbGUtaXRlbS5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFJcEYsTUFBTSxPQUFPLHdCQUF3QjtJQUduQztRQUQyQixhQUFRLEdBQW9CLFNBQVMsQ0FBQztJQUNqRCxDQUFDOzhHQUhOLHdCQUF3QjtrR0FBeEIsd0JBQXdCLCtIQUVyQixXQUFXLGdEQUgrQiwyQkFBMkI7OzJGQUN4RSx3QkFBd0I7a0JBRHBDLFNBQVM7bUJBQUMsRUFBQyxRQUFRLEVBQUUsdUJBQXVCLEVBQUcsUUFBUSxFQUFFLDJCQUEyQixFQUFDO3dEQUUzRSxLQUFLO3NCQUFiLEtBQUs7Z0JBQ3FCLFFBQVE7c0JBQWxDLFlBQVk7dUJBQUMsV0FBVyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgQ29udGVudENoaWxkLCBJbnB1dCwgT25Jbml0LCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29udGVudFRpbGVIZWFkZXJDb21wb25lbnQgfSBmcm9tICcuLi9jb250ZW50LXRpbGUtaGVhZGVyL2NvbnRlbnQtdGlsZS1oZWFkZXIuY29tcG9uZW50JztcblxuQENvbXBvbmVudCh7c2VsZWN0b3I6ICdsaWItY29udGVudC10aWxlLWl0ZW0nLCAgdGVtcGxhdGU6ICc8bmctY29udGVudD48L25nLWNvbnRlbnQ+J30pXG5leHBvcnQgY2xhc3MgQ29udGVudFRpbGVJdGVtQ29tcG9uZW50IHtcbiAgQElucHV0KCkgdGl0bGU6IHN0cmluZyB8IHVuZGVmaW5lZDtcbiAgQENvbnRlbnRDaGlsZChUZW1wbGF0ZVJlZikgdGVtcGxhdGU6IGFueSB8IHVuZGVmaW5lZCA9IHVuZGVmaW5lZDtcbiAgY29uc3RydWN0b3IoKSB7IH1cbn1cbiJdfQ==
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class ContentTileHeaderComponent {
|
|
3
|
-
template: any | undefined;
|
|
4
|
-
constructor();
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ContentTileHeaderComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileHeaderComponent, "lib-content-tile-header", never, {}, {}, ["template"], ["*"], false, never>;
|
|
7
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class ContentTileItemComponent {
|
|
3
|
-
title: string | undefined;
|
|
4
|
-
template: any | undefined;
|
|
5
|
-
constructor();
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ContentTileItemComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileItemComponent, "lib-content-tile-item", never, { "title": { "alias": "title"; "required": false; }; }, {}, ["template"], ["*"], false, never>;
|
|
8
|
-
}
|