@indice/ng-components 0.2.173-beta.8 → 0.2.173-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.
Files changed (42) hide show
  1. package/_styles.scss +71 -15
  2. package/esm2020/lib/controls/advanced-search/advanced-search.component.mjs +46 -8
  3. package/esm2020/lib/controls/advanced-search/models.mjs +22 -3
  4. package/esm2020/lib/controls/content-tile/content-tile-item/content-tile-item.component.mjs +6 -4
  5. package/esm2020/lib/controls/content-tile/content-tile.component.mjs +7 -6
  6. package/esm2020/lib/controls/date-picker/date-picker.component.mjs +12 -4
  7. package/esm2020/lib/controls/drop-down-menu/drop-down-menu.component.mjs +3 -3
  8. package/esm2020/lib/controls/list-view/list-view-empty-state.component.mjs +3 -3
  9. package/esm2020/lib/controls/list-view/list-view.component.mjs +7 -3
  10. package/esm2020/lib/controls/progress-bar/progress-bar.component.mjs +13 -3
  11. package/esm2020/lib/controls/side-pane/side-pane.component.mjs +20 -5
  12. package/esm2020/lib/controls/skeleton-loader/skeleton-loader.component.mjs +8 -4
  13. package/esm2020/lib/controls/stats-grid/stats-grid.component.mjs +3 -3
  14. package/esm2020/lib/controls/toggle-buttons-list/toggle-buttons-list.component.mjs +6 -3
  15. package/esm2020/lib/helpers/base-list.component.mjs +6 -2
  16. package/esm2020/lib/layouts/shell/shell-layout/shell-layout.component.mjs +2 -2
  17. package/esm2020/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.mjs +3 -3
  18. package/esm2020/lib/layouts/views/form-layout/form-layout.component.mjs +9 -3
  19. package/esm2020/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +3 -3
  20. package/esm2020/lib/layouts/views/side-view-layout/side-view-layout.component.mjs +13 -5
  21. package/esm2020/lib/ng-components.module.mjs +7 -3
  22. package/esm2020/public-api.mjs +4 -1
  23. package/fesm2015/indice-ng-components.mjs +215 -87
  24. package/fesm2015/indice-ng-components.mjs.map +1 -1
  25. package/fesm2020/indice-ng-components.mjs +209 -84
  26. package/fesm2020/indice-ng-components.mjs.map +1 -1
  27. package/lib/controls/advanced-search/advanced-search.component.d.ts +15 -1
  28. package/lib/controls/advanced-search/models.d.ts +8 -0
  29. package/lib/controls/content-tile/content-tile-item/content-tile-item.component.d.ts +2 -1
  30. package/lib/controls/content-tile/content-tile.component.d.ts +2 -2
  31. package/lib/controls/drop-down-menu/drop-down-menu.component.d.ts +1 -1
  32. package/lib/controls/list-view/list-view.component.d.ts +2 -1
  33. package/lib/controls/progress-bar/progress-bar.component.d.ts +4 -1
  34. package/lib/controls/side-pane/side-pane.component.d.ts +6 -2
  35. package/lib/controls/skeleton-loader/skeleton-loader.component.d.ts +2 -1
  36. package/lib/controls/toggle-buttons-list/toggle-buttons-list.component.d.ts +2 -1
  37. package/lib/helpers/base-list.component.d.ts +1 -0
  38. package/lib/layouts/views/form-layout/form-layout.component.d.ts +3 -1
  39. package/lib/layouts/views/side-view-layout/side-view-layout.component.d.ts +2 -1
  40. package/lib/ng-components.module.d.ts +1 -1
  41. package/package.json +2 -2
  42. package/public-api.d.ts +3 -0
@@ -5,8 +5,19 @@ import * as i0 from "@angular/core";
5
5
  export declare class AdvancedSearchComponent implements OnInit {
6
6
  advancedSearchChanged: EventEmitter<FilterClause[]>;
7
7
  searchOptions: SearchOption[];
8
+ operatorsDisabled: boolean;
8
9
  filters: FilterClause[];
9
10
  menuOptions: MenuOption[];
11
+ operatorMenuOptions: MenuOption[];
12
+ operatorOptions: import("./models").IDictionary<{
13
+ label: string;
14
+ value: string;
15
+ description?: string | undefined;
16
+ }[]>;
17
+ operators: {
18
+ [key: string]: MenuOption[];
19
+ };
20
+ selectedOperator?: string;
10
21
  selectedField?: SearchOption;
11
22
  fieldValue?: string;
12
23
  fieldValueDateFrom: any;
@@ -17,10 +28,13 @@ export declare class AdvancedSearchComponent implements OnInit {
17
28
  constructor();
18
29
  ngOnInit(): void;
19
30
  selectedFieldChanged(field: string): void;
31
+ selectedOperatorChanged(operator: any): void;
20
32
  selectedFieldValueChanged(fieldValue: string): void;
21
33
  search(): void;
22
34
  removeFilter(index: number): void;
35
+ isDateValueUnpicked(): boolean;
36
+ isFieldAndOperatorUnpicked(): boolean;
23
37
  clear(): void;
24
38
  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, false>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<AdvancedSearchComponent, "lib-advanced-search", never, { "searchOptions": "search-options"; "operatorsDisabled": "operators-disabled"; "filters": "filters"; }, { "advancedSearchChanged": "advancedSearchChanged"; }, never, never, false>;
26
40
  }
@@ -69,6 +69,14 @@ export declare namespace FilterClause {
69
69
  type Op = 'eq' | 'neq' | 'gt' | 'lt' | 'gte' | 'lte' | 'contains' | 'in';
70
70
  type Dt = 'string' | 'integer' | 'number' | 'boolean' | 'datetime' | 'array' | 'daterange' | undefined;
71
71
  }
72
+ export interface IDictionary<T> {
73
+ [key: string]: T;
74
+ }
75
+ export declare const OperatorOptions: IDictionary<{
76
+ label: string;
77
+ value: string;
78
+ description?: string;
79
+ }[]>;
72
80
  export declare class FilterClause {
73
81
  member: string;
74
82
  value: any;
@@ -1,7 +1,8 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class ContentTileItemComponent {
3
+ title: string | undefined;
3
4
  template: any | undefined;
4
5
  constructor();
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<ContentTileItemComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileItemComponent, "lib-content-tile-item", never, {}, {}, ["template"], ["*"], false>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileItemComponent, "lib-content-tile-item", never, { "title": "title"; }, {}, ["template"], ["*"], false>;
7
8
  }
@@ -7,7 +7,7 @@ export declare class ContentTileComponent implements OnInit {
7
7
  private router;
8
8
  title: string | undefined;
9
9
  busy: boolean;
10
- hideBtn: boolean | undefined;
10
+ showAction: boolean | undefined;
11
11
  showFooter: boolean | undefined;
12
12
  actionText: string;
13
13
  tileAction: EventEmitter<any>;
@@ -19,5 +19,5 @@ export declare class ContentTileComponent implements OnInit {
19
19
  ngOnInit(): void;
20
20
  emitTileAction($event: any): boolean;
21
21
  static ɵfac: i0.ɵɵFactoryDeclaration<ContentTileComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileComponent, "lib-content-tile", never, { "title": "title"; "busy": "busy"; "hideBtn": "hideBtn"; "showFooter": "show-footer"; "actionText": "action-text"; }, { "tileAction": "tile-action"; }, ["header", "items"], never, false>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileComponent, "lib-content-tile", never, { "title": "title"; "busy": "busy"; "showAction": "show-action"; "showFooter": "show-footer"; "actionText": "action-text"; }, { "tileAction": "tile-action"; }, ["header", "items"], never, false>;
23
23
  }
@@ -3,7 +3,7 @@ import { MenuOption } from '../../types';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class DropDownMenuComponent implements OnInit, OnChanges {
5
5
  options: MenuOption[] | undefined;
6
- selectedValue: any | null;
6
+ selectedValue: any | null | undefined;
7
7
  multiple: boolean;
8
8
  placeholder: string;
9
9
  showIcons: boolean;
@@ -17,6 +17,7 @@ export declare class ListViewComponent implements OnChanges {
17
17
  pageSize: number;
18
18
  pageSizeOptions: MenuOption[];
19
19
  sortOptions: MenuOption[];
20
+ operatorsDisabled: boolean;
20
21
  sortdir: string | null;
21
22
  tilesCount: number;
22
23
  showPager: boolean;
@@ -57,5 +58,5 @@ export declare class ListViewComponent implements OnChanges {
57
58
  toggleDetails(item: any): void;
58
59
  private setTilesDeckClass;
59
60
  static ɵfac: i0.ɵɵFactoryDeclaration<ListViewComponent, never>;
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"], ["[pager-near-content]", "*"], false>;
61
+ 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"; "operatorsDisabled": "operators-disabled"; "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"], ["[pager-near-content]", "*"], false>;
61
62
  }
@@ -2,12 +2,15 @@ import { OnChanges, SimpleChanges } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class ProgressBarComponent implements OnChanges {
4
4
  value: number;
5
+ valueText: string | undefined;
5
6
  total: number;
7
+ totalText: string | undefined;
6
8
  text: string | undefined;
9
+ busy: boolean;
7
10
  percentage: number;
8
11
  constructor();
9
12
  ngOnChanges(changes: SimpleChanges): void;
10
13
  private calcPercentage;
11
14
  static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "lib-progress-bar", never, { "value": "value"; "total": "total"; "text": "text"; }, {}, never, never, false>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "lib-progress-bar", never, { "value": "value"; "valueText": "value-text"; "total": "total"; "totalText": "total-text"; "text": "text"; "busy": "busy"; }, {}, never, never, false>;
13
16
  }
@@ -4,15 +4,19 @@ import * as i0 from "@angular/core";
4
4
  export declare class SidePaneComponent implements OnInit, OnDestroy {
5
5
  private router;
6
6
  private document;
7
- showPane: boolean;
7
+ protected showPane: boolean;
8
8
  sizeContainerStyle: string;
9
9
  overlayStyle: string;
10
10
  onComplete: EventEmitter<boolean>;
11
+ onOpen: EventEmitter<any>;
12
+ onClose: EventEmitter<any>;
11
13
  constructor(router: Router, document: any);
12
14
  ngOnDestroy(): void;
13
15
  ngOnInit(): void;
14
16
  onSidePaneActivated(component: any): void;
15
17
  onSidePaneDeactivated($event: any): void;
18
+ show(): void;
19
+ hide(): void;
16
20
  static ɵfac: i0.ɵɵFactoryDeclaration<SidePaneComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": "visible"; }, { "onComplete": "onComplete"; }, never, ["*"], false>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": "visible"; }, { "onComplete": "onComplete"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, ["*"], false>;
18
22
  }
@@ -3,9 +3,10 @@ import * as i0 from "@angular/core";
3
3
  export declare class SkeletonLoaderComponent implements OnInit {
4
4
  count: number;
5
5
  type: string;
6
+ deckClass: string;
6
7
  constructor();
7
8
  ngOnInit(): void;
8
9
  counter(i: number): number[];
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonLoaderComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonLoaderComponent, "lib-skeleton-loader", never, { "count": "count"; "type": "type"; }, {}, never, never, false>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonLoaderComponent, "lib-skeleton-loader", never, { "count": "count"; "type": "type"; "deckClass": "deck-class"; }, {}, never, never, false>;
11
12
  }
@@ -5,10 +5,11 @@ export declare class ToggleButtonsListComponent implements OnInit {
5
5
  icon: string | undefined;
6
6
  options: MenuOption[] | undefined;
7
7
  value: any | undefined;
8
+ compact: boolean;
8
9
  valueChange: EventEmitter<any>;
9
10
  constructor();
10
11
  ngOnInit(): void;
11
12
  selectOption(optionValue: any): void;
12
13
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonsListComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonsListComponent, "lib-toggle-buttons-list", never, { "icon": "icon"; "options": "options"; "value": "value"; }, { "valueChange": "valueChange"; }, never, never, false>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonsListComponent, "lib-toggle-buttons-list", never, { "icon": "icon"; "options": "options"; "value": "value"; "compact": "compact"; }, { "valueChange": "valueChange"; }, never, never, false>;
14
15
  }
@@ -24,6 +24,7 @@ export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy
24
24
  metaItems: HeaderMetaItem[];
25
25
  abstract newItemLink: string | null;
26
26
  private routeSub$;
27
+ private loadSub$;
27
28
  constructor(route$: ActivatedRoute, router$: Router);
28
29
  ngOnDestroy(): void;
29
30
  getViewActions(): Observable<ViewAction[]>;
@@ -6,6 +6,8 @@ export declare class FormLayoutComponent implements OnInit {
6
6
  private router$;
7
7
  private searchInput$?;
8
8
  title: string | null;
9
+ image: string | null;
10
+ icon: string | null;
9
11
  searchPlaceholder: string | null;
10
12
  actions: ViewAction[] | null;
11
13
  subTitle: string | null;
@@ -20,5 +22,5 @@ export declare class FormLayoutComponent implements OnInit {
20
22
  searchActionType(text: string): void;
21
23
  routerLinkActionClick(action: RouterViewAction | any, relative?: boolean): void;
22
24
  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, ["*"], false>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormLayoutComponent, "lib-form-layout", never, { "title": "title"; "image": "image"; "icon": "icon"; "searchPlaceholder": "search-placeholder"; "actions": "actions"; "subTitle": "sub-title"; }, { "onAction": "onAction"; "onSearch": "onSearch"; "onComplete": "onComplete"; }, never, ["*"], false>;
24
26
  }
@@ -15,6 +15,7 @@ export declare class SideViewLayoutComponent implements OnInit {
15
15
  cancelLabel: string;
16
16
  cancelShow: boolean;
17
17
  forceLocationBack: boolean;
18
+ redirectOnClose: boolean;
18
19
  cancel: EventEmitter<boolean>;
19
20
  ok: EventEmitter<boolean>;
20
21
  constructor(location: Location, router: Router);
@@ -24,5 +25,5 @@ export declare class SideViewLayoutComponent implements OnInit {
24
25
  emitCancel(): void;
25
26
  emitOK(): void;
26
27
  static ɵfac: i0.ɵɵFactoryDeclaration<SideViewLayoutComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<SideViewLayoutComponent, "lib-side-view-layout", never, { "title": "title"; "showActions": "showActions"; "disabled": "disabled"; "returnPath": "return-path"; "okLabel": "ok-label"; "okShow": "ok-show"; "closeOnOk": "ok-close-dialog"; "cancelLabel": "cancel-label"; "cancelShow": "cancel-show"; "forceLocationBack": "force-location-back"; }, { "cancel": "cancel"; "ok": "ok"; }, never, ["*"], false>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<SideViewLayoutComponent, "lib-side-view-layout", never, { "title": "title"; "showActions": "showActions"; "disabled": "disabled"; "returnPath": "return-path"; "okLabel": "ok-label"; "okShow": "ok-show"; "closeOnOk": "ok-close-dialog"; "cancelLabel": "cancel-label"; "cancelShow": "cancel-show"; "forceLocationBack": "force-location-back"; "redirectOnClose": "redirect-on-close"; }, { "cancel": "cancel"; "ok": "ok"; }, never, ["*"], false>;
28
29
  }
@@ -66,6 +66,6 @@ import * as i63 from "@angular/forms";
66
66
  export declare class IndiceComponentsModule {
67
67
  static forRoot(): ModuleWithProviders<IndiceComponentsModule>;
68
68
  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 i56.ContentTileItemComponent, typeof i57.ContentTileHeaderComponent, typeof i58.StatsGridComponent, typeof i59.ProgressBarComponent], [typeof i60.CommonModule, typeof i61.RouterModule, typeof i62.IndiceAuthModule, typeof i63.FormsModule], [typeof i1.AddressPipe, 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 i56.ContentTileItemComponent, typeof i57.ContentTileHeaderComponent, typeof i58.StatsGridComponent]>;
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 i56.ContentTileItemComponent, typeof i57.ContentTileHeaderComponent, typeof i58.StatsGridComponent, typeof i59.ProgressBarComponent], [typeof i60.CommonModule, typeof i61.RouterModule, typeof i62.IndiceAuthModule, typeof i63.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 i56.ContentTileItemComponent, typeof i57.ContentTileHeaderComponent, typeof i58.StatsGridComponent, typeof i59.ProgressBarComponent]>;
70
70
  static ɵinj: i0.ɵɵInjectorDeclaration<IndiceComponentsModule>;
71
71
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indice/ng-components",
3
- "version": "0.2.173-beta.8",
3
+ "version": "0.2.173-beta.80",
4
4
  "description": "Indice common components for Angular v12",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,7 +25,7 @@
25
25
  "@angular/core": ">=12.0.4",
26
26
  "@angular/router": ">=12.0.4",
27
27
  "@indice/ng-auth": "^0.2.6",
28
- "oidc-client": "^1.11.5",
28
+ "oidc-client-ts": "^3.0.1",
29
29
  "rxjs": "^6.6.7",
30
30
  "tailwindcss": ">=2.1.2",
31
31
  "uuid": "8.3.2"
package/public-api.d.ts CHANGED
@@ -33,6 +33,9 @@ export * from './lib/controls/content-tile/content-tile-header/content-tile-head
33
33
  export * from './lib/controls/content-tile/content-tile-item/content-tile-item.component';
34
34
  export * from './lib/controls/content-tile/content-tile.component';
35
35
  export * from './lib/controls/stats-grid/stats-grid.component';
36
+ export * from './lib/controls/progress-bar/progress-bar.component';
37
+ export * from './lib/controls/advanced-search/advanced-search.component';
38
+ export * from './lib/controls/advanced-search/models';
36
39
  export * from './lib/layouts/shell/shell-layout/shell-layout.component';
37
40
  export * from './lib/layouts/shell/shell-header/shell-header.component';
38
41
  export * from './lib/layouts/shell/shell-footer/shell-footer.component';