@onecx/angular-accelerator 6.0.0-rc.2 → 6.0.0-rc.20
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/assets/i18n/de.json +3 -3
- package/assets/i18n/en.json +3 -3
- package/assets/i18n/primeng/de.json +4 -1
- package/assets/i18n/primeng/en.json +4 -1
- package/assets/styles.scss +0 -4
- package/fesm2022/onecx-angular-accelerator-testing.mjs +160 -33
- package/fesm2022/onecx-angular-accelerator-testing.mjs.map +1 -1
- package/fesm2022/onecx-angular-accelerator.mjs +1780 -989
- package/fesm2022/onecx-angular-accelerator.mjs.map +1 -1
- package/index.d.ts +20 -8
- package/lib/angular-accelerator-primeng.module.d.ts +6 -4
- package/lib/angular-accelerator.module.d.ts +33 -20
- package/lib/components/content/content.component.d.ts +13 -0
- package/lib/components/content-container/content-container.component.d.ts +19 -0
- package/lib/components/custom-group-column-selector/custom-group-column-selector.component.d.ts +0 -2
- package/lib/components/data-list-grid/data-list-grid.component.d.ts +8 -35
- package/lib/components/data-list-grid-sorting/data-list-grid-sorting.component.d.ts +2 -2
- package/lib/components/data-table/data-table.component.d.ts +16 -55
- package/lib/components/data-view/data-view.component.d.ts +9 -77
- package/lib/components/diagram/diagram.component.d.ts +0 -2
- package/lib/components/dialog/dialog-content/dialog-content.component.d.ts +29 -0
- package/lib/components/dialog/dialog-footer/dialog-footer.component.d.ts +39 -0
- package/lib/components/dialog/dialog-inline/dialog-inline.component.d.ts +11 -0
- package/lib/components/dialog/dialog-message-content/dialog-message-content.component.d.ts +8 -0
- package/lib/components/error-component/global-error.component.d.ts +12 -0
- package/lib/components/filter-view/filter-view.component.d.ts +3 -5
- package/lib/components/group-by-count-diagram/group-by-count-diagram.component.d.ts +1 -8
- package/lib/components/interactive-data-view/interactive-data-view.component.d.ts +33 -51
- package/lib/components/lifecycle/lifecycle.component.d.ts +12 -0
- package/lib/components/loading-indicator/loading-indicator.component.d.ts +5 -0
- package/lib/components/page-header/page-header.component.d.ts +2 -8
- package/lib/components/search-header/search-header.component.d.ts +4 -10
- package/lib/directives/advanced.directive.d.ts +5 -6
- package/lib/directives/basic.directive.d.ts +11 -0
- package/lib/directives/content-container.directive.d.ts +23 -0
- package/lib/directives/content.directive.d.ts +21 -0
- package/lib/directives/if-breakpoint.directive.d.ts +3 -4
- package/lib/directives/if-permission.directive.d.ts +7 -18
- package/lib/directives/loading-indicator.directive.d.ts +16 -0
- package/lib/directives/src.directive.d.ts +2 -3
- package/lib/directives/template.directive.d.ts +9 -0
- package/lib/directives/tooltipOnOverflow.directive.d.ts +2 -3
- package/lib/model/breadcrumb-menu-item.model.d.ts +0 -4
- package/lib/model/button-dialog.d.ts +47 -0
- package/lib/model/column-type.model.d.ts +1 -8
- package/lib/model/filter.model.d.ts +16 -4
- package/lib/pipes/dynamic.pipe.d.ts +2 -2
- package/lib/pipes/ocxtimeago.pipe.d.ts +3 -3
- package/lib/pipes/relative-date.pipe.d.ts +10 -0
- package/lib/services/breadcrumb.service.d.ts +2 -4
- package/lib/services/export-data.service.d.ts +18 -0
- package/lib/services/portal-dialog.service.d.ts +427 -0
- package/lib/utils/criteria.utils.d.ts +3 -3
- package/lib/utils/data-operation-strategy.d.ts +20 -0
- package/lib/utils/dateutils.d.ts +0 -5
- package/lib/utils/image-logo-url.utils.d.ts +3 -0
- package/migrations.json +34 -0
- package/package.json +23 -17
- package/testing/column-group-selection.harness.d.ts +2 -2
- package/testing/content-container.harness.d.ts +7 -0
- package/testing/content.harness.d.ts +10 -0
- package/testing/custom-group-column-selector.harness.d.ts +6 -6
- package/testing/data-layout-selection.harness.d.ts +7 -6
- package/testing/data-list-grid.harness.d.ts +3 -3
- package/testing/data-table.harness.d.ts +3 -3
- package/testing/data-view.harness.d.ts +2 -2
- package/testing/default-grid-item.harness.d.ts +1 -1
- package/testing/default-list-item.harness.d.ts +4 -4
- package/testing/diagram.harness.d.ts +1 -1
- package/testing/dialog-content.harness.d.ts +6 -0
- package/testing/dialog-footer.harness.d.ts +14 -0
- package/testing/dialog-inline.harness.d.ts +8 -0
- package/testing/dialog-message-content.harness.d.ts +8 -0
- package/testing/filter-view.harness.d.ts +6 -6
- package/testing/group-by-count-diagram.harness.d.ts +1 -1
- package/testing/index.d.ts +7 -0
- package/testing/interactive-data-view.harness.d.ts +11 -9
- package/testing/lifecycle.harness.d.ts +6 -0
- package/testing/page-header.harness.d.ts +6 -6
- package/testing/search-header.harness.d.ts +5 -5
- package/esm2022/index.mjs +0 -61
- package/esm2022/lib/angular-accelerator-primeng.module.mjs +0 -146
- package/esm2022/lib/angular-accelerator.module.mjs +0 -194
- package/esm2022/lib/components/column-group-selection/column-group-selection.component.mjs +0 -90
- package/esm2022/lib/components/custom-group-column-selector/custom-group-column-selector.component.mjs +0 -184
- package/esm2022/lib/components/data-layout-selection/data-layout-selection.component.mjs +0 -73
- package/esm2022/lib/components/data-list-grid/data-list-grid.component.mjs +0 -615
- package/esm2022/lib/components/data-list-grid-sorting/data-list-grid-sorting.component.mjs +0 -107
- package/esm2022/lib/components/data-loading-error/data-loading-error.component.mjs +0 -28
- package/esm2022/lib/components/data-sort-base/data-sort-base.mjs +0 -134
- package/esm2022/lib/components/data-table/data-table.component.mjs +0 -828
- package/esm2022/lib/components/data-view/data-view.component.mjs +0 -672
- package/esm2022/lib/components/diagram/diagram.component.mjs +0 -183
- package/esm2022/lib/components/filter-view/filter-view.component.mjs +0 -263
- package/esm2022/lib/components/group-by-count-diagram/group-by-count-diagram.component.mjs +0 -133
- package/esm2022/lib/components/interactive-data-view/interactive-data-view.component.mjs +0 -724
- package/esm2022/lib/components/page-header/page-header.component.mjs +0 -238
- package/esm2022/lib/components/search-header/search-header.component.mjs +0 -199
- package/esm2022/lib/directives/advanced.directive.mjs +0 -36
- package/esm2022/lib/directives/if-breakpoint.directive.mjs +0 -47
- package/esm2022/lib/directives/if-permission.directive.mjs +0 -103
- package/esm2022/lib/directives/src.directive.mjs +0 -65
- package/esm2022/lib/directives/tooltipOnOverflow.directive.mjs +0 -48
- package/esm2022/lib/functions/at-least-one-field-filled-validator.mjs +0 -7
- package/esm2022/lib/functions/flatten-object.mjs +0 -20
- package/esm2022/lib/model/breadcrumb-menu-item.model.mjs +0 -2
- package/esm2022/lib/model/column-type.model.mjs +0 -16
- package/esm2022/lib/model/data-action.mjs +0 -2
- package/esm2022/lib/model/data-column-name-id.model.mjs +0 -2
- package/esm2022/lib/model/data-sort-direction.mjs +0 -2
- package/esm2022/lib/model/data-table-column.model.mjs +0 -2
- package/esm2022/lib/model/diagram-column.mjs +0 -2
- package/esm2022/lib/model/diagram-data.mjs +0 -2
- package/esm2022/lib/model/diagram-type.mjs +0 -2
- package/esm2022/lib/model/filter.model.mjs +0 -6
- package/esm2022/lib/pipes/dynamic.pipe.mjs +0 -58
- package/esm2022/lib/pipes/ocxtimeago.pipe.mjs +0 -107
- package/esm2022/lib/services/breadcrumb.service.mjs +0 -128
- package/esm2022/lib/services/translation-cache.service.mjs +0 -41
- package/esm2022/lib/utils/async-translate-loader.utils.mjs +0 -12
- package/esm2022/lib/utils/caching-translate-loader.utils.mjs +0 -15
- package/esm2022/lib/utils/colorutils.mjs +0 -19
- package/esm2022/lib/utils/create-remote-component-and-mfe-translate-loader.utils.mjs +0 -12
- package/esm2022/lib/utils/create-remote-component-translate-loader.utils.mjs +0 -25
- package/esm2022/lib/utils/create-translate-loader.utils.mjs +0 -27
- package/esm2022/lib/utils/criteria.utils.mjs +0 -28
- package/esm2022/lib/utils/dateutils.mjs +0 -38
- package/esm2022/lib/utils/dynamic-locale-id.mjs +0 -21
- package/esm2022/lib/utils/enum-to-dropdown-options.utils.mjs +0 -8
- package/esm2022/lib/utils/filter.utils.mjs +0 -6
- package/esm2022/lib/utils/objectutils.mjs +0 -30
- package/esm2022/lib/utils/primeicon.utils.mjs +0 -2
- package/esm2022/lib/utils/rxjs-utils.mjs +0 -13
- package/esm2022/lib/utils/string-and-array-helper-functions.utils.mjs +0 -22
- package/esm2022/lib/utils/template.utils.mjs +0 -11
- package/esm2022/lib/utils/translate.combined.loader.mjs +0 -39
- package/esm2022/onecx-angular-accelerator.mjs +0 -5
- package/esm2022/testing/column-group-selection.harness.mjs +0 -10
- package/esm2022/testing/custom-group-column-selector.harness.mjs +0 -31
- package/esm2022/testing/data-layout-selection.harness.mjs +0 -32
- package/esm2022/testing/data-list-grid.harness.mjs +0 -51
- package/esm2022/testing/data-table.harness.mjs +0 -69
- package/esm2022/testing/data-view.harness.mjs +0 -12
- package/esm2022/testing/default-grid-item.harness.mjs +0 -24
- package/esm2022/testing/default-list-item.harness.mjs +0 -26
- package/esm2022/testing/diagram.harness.mjs +0 -22
- package/esm2022/testing/filter-view.harness.mjs +0 -18
- package/esm2022/testing/group-by-count-diagram.harness.mjs +0 -10
- package/esm2022/testing/index.mjs +0 -23
- package/esm2022/testing/interactive-data-view.harness.mjs +0 -21
- package/esm2022/testing/more-actions-menu-button.harness.mjs +0 -35
- package/esm2022/testing/onecx-angular-accelerator-testing.mjs +0 -5
- package/esm2022/testing/page-header.harness.mjs +0 -81
- package/esm2022/testing/search-header.harness.mjs +0 -36
- package/esm2022/testing/slot.harness.mjs +0 -5
- package/lib/components/data-loading-error/data-loading-error.component.d.ts +0 -8
- package/lib/services/translation-cache.service.d.ts +0 -16
- package/lib/utils/async-translate-loader.utils.d.ts +0 -9
- package/lib/utils/caching-translate-loader.utils.d.ts +0 -13
- package/lib/utils/create-remote-component-and-mfe-translate-loader.utils.d.ts +0 -6
- package/lib/utils/create-remote-component-translate-loader.utils.d.ts +0 -5
- package/lib/utils/create-translate-loader.utils.d.ts +0 -5
- package/lib/utils/translate.combined.loader.d.ts +0 -9
|
@@ -4,9 +4,9 @@ import { DefaultGridItemHarness } from './default-grid-item.harness';
|
|
|
4
4
|
import { DefaultListItemHarness } from './default-list-item.harness';
|
|
5
5
|
export declare class DataListGridHarness extends ContentContainerComponentHarness {
|
|
6
6
|
static hostSelector: string;
|
|
7
|
-
getDefaultGridItems:
|
|
8
|
-
getPaginator:
|
|
9
|
-
getMenuButton:
|
|
7
|
+
getDefaultGridItems: () => Promise<DefaultGridItemHarness[]>;
|
|
8
|
+
getPaginator: () => Promise<PPaginatorHarness>;
|
|
9
|
+
getMenuButton: () => Promise<TestElement>;
|
|
10
10
|
getDefaultListItems(): Promise<DefaultListItemHarness[]>;
|
|
11
11
|
getActionButtons(actionButtonType: 'list' | 'grid' | 'grid-hidden'): Promise<TestElement[]>;
|
|
12
12
|
actionButtonIsDisabled(actionButton: TestElement, viewType: 'list' | 'grid'): Promise<boolean>;
|
|
@@ -6,9 +6,9 @@ export interface DataTableHarnessFilters extends BaseHarnessFilters {
|
|
|
6
6
|
export declare class DataTableHarness extends ContentContainerComponentHarness {
|
|
7
7
|
static hostSelector: string;
|
|
8
8
|
static with(options: DataTableHarnessFilters): HarnessPredicate<DataTableHarness>;
|
|
9
|
-
getHeaderColumns:
|
|
10
|
-
getRows:
|
|
11
|
-
getPaginator:
|
|
9
|
+
getHeaderColumns: () => Promise<TableHeaderColumnHarness[]>;
|
|
10
|
+
getRows: () => Promise<TableRowHarness[]>;
|
|
11
|
+
getPaginator: () => Promise<PPaginatorHarness>;
|
|
12
12
|
getId(): Promise<string | null>;
|
|
13
13
|
rowSelectionIsEnabled(): Promise<boolean>;
|
|
14
14
|
getHarnessesForCheckboxes(type: 'all' | 'checked' | 'unchecked'): Promise<PTableCheckboxHarness[]>;
|
|
@@ -3,6 +3,6 @@ import { DataListGridHarness } from './data-list-grid.harness';
|
|
|
3
3
|
import { DataTableHarness } from './data-table.harness';
|
|
4
4
|
export declare class DataViewHarness extends ContentContainerComponentHarness {
|
|
5
5
|
static hostSelector: string;
|
|
6
|
-
getDataTable:
|
|
7
|
-
getDataListGrid:
|
|
6
|
+
getDataTable: () => Promise<DataTableHarness | null>;
|
|
7
|
+
getDataListGrid: () => Promise<DataListGridHarness | null>;
|
|
8
8
|
}
|
|
@@ -3,7 +3,7 @@ import { DivHarness } from '@onecx/angular-testing';
|
|
|
3
3
|
import { MoreActionsMenuButtonHarness } from './more-actions-menu-button.harness';
|
|
4
4
|
export declare class DefaultGridItemHarness extends ComponentHarness {
|
|
5
5
|
static hostSelector: string;
|
|
6
|
-
getMoreActionsButton:
|
|
6
|
+
getMoreActionsButton: () => Promise<MoreActionsMenuButtonHarness>;
|
|
7
7
|
private getAllDivs;
|
|
8
8
|
private getGridImg;
|
|
9
9
|
getData(): Promise<(string | null)[]>;
|
|
@@ -2,10 +2,10 @@ import { ComponentHarness } from '@angular/cdk/testing';
|
|
|
2
2
|
import { ButtonHarness, DivHarness } from '@onecx/angular-testing';
|
|
3
3
|
export declare class DefaultListItemHarness extends ComponentHarness {
|
|
4
4
|
static hostSelector: string;
|
|
5
|
-
getAllActionButtons:
|
|
6
|
-
getViewButton:
|
|
7
|
-
getEditButton:
|
|
8
|
-
getDeleteButton:
|
|
5
|
+
getAllActionButtons: () => Promise<import("@onecx/angular-testing").TestElement[]>;
|
|
6
|
+
getViewButton: () => Promise<ButtonHarness | null>;
|
|
7
|
+
getEditButton: () => Promise<ButtonHarness | null>;
|
|
8
|
+
getDeleteButton: () => Promise<ButtonHarness | null>;
|
|
9
9
|
private getAllDivs;
|
|
10
10
|
getData(): Promise<string[]>;
|
|
11
11
|
checkDivsHasClasses(value: DivHarness): Promise<boolean>;
|
|
@@ -2,7 +2,7 @@ import { ComponentHarness } from '@angular/cdk/testing';
|
|
|
2
2
|
import { PChartHarness } from '@onecx/angular-testing';
|
|
3
3
|
export declare class DiagramHarness extends ComponentHarness {
|
|
4
4
|
static hostSelector: string;
|
|
5
|
-
getChart:
|
|
5
|
+
getChart: () => Promise<PChartHarness>;
|
|
6
6
|
getTotalNumberOfResults(): Promise<number | undefined>;
|
|
7
7
|
getSumLabel(): Promise<string | undefined>;
|
|
8
8
|
getDiagramTypeSelectButton(): Promise<import("@onecx/angular-testing").TestElement | null>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ContentContainerComponentHarness } from '@onecx/angular-testing';
|
|
2
|
+
import { DialogMessageContentHarness } from './dialog-message-content.harness';
|
|
3
|
+
export declare class DialogContentHarness extends ContentContainerComponentHarness {
|
|
4
|
+
static hostSelector: string;
|
|
5
|
+
getDialogMessageContent: () => Promise<DialogMessageContentHarness | null>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ContentContainerComponentHarness, PButtonDirectiveHarness } from '@onecx/angular-testing';
|
|
2
|
+
export declare class DialogFooterHarness extends ContentContainerComponentHarness {
|
|
3
|
+
static hostSelector: string;
|
|
4
|
+
getPrimaryButton: () => Promise<PButtonDirectiveHarness>;
|
|
5
|
+
getSecondaryButton: () => Promise<PButtonDirectiveHarness | null>;
|
|
6
|
+
clickPrimaryButton(): Promise<void>;
|
|
7
|
+
clickSecondaryButton(): Promise<void>;
|
|
8
|
+
getPrimaryButtonLabel(): Promise<string | null>;
|
|
9
|
+
getPrimaryButtonIcon(): Promise<string | null>;
|
|
10
|
+
getSecondaryButtonLabel(): Promise<string | null | undefined>;
|
|
11
|
+
getSecondaryButtonIcon(): Promise<string | null | undefined>;
|
|
12
|
+
getPrimaryButtonDisabled(): Promise<boolean>;
|
|
13
|
+
getSecondaryButtonDisabled(): Promise<boolean | undefined>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ContentContainerComponentHarness } from '@onecx/angular-testing';
|
|
2
|
+
import { DialogContentHarness } from './dialog-content.harness';
|
|
3
|
+
import { DialogFooterHarness } from './dialog-footer.harness';
|
|
4
|
+
export declare class DialogInlineHarness extends ContentContainerComponentHarness {
|
|
5
|
+
static hostSelector: string;
|
|
6
|
+
getDialogContent: () => Promise<DialogContentHarness>;
|
|
7
|
+
getDialogFooter: () => Promise<DialogFooterHarness>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ComponentHarness } from '@angular/cdk/testing';
|
|
2
|
+
export declare class DialogMessageContentHarness extends ComponentHarness {
|
|
3
|
+
static hostSelector: string;
|
|
4
|
+
private getMessageSpan;
|
|
5
|
+
private getIcon;
|
|
6
|
+
getMessageContent(): Promise<string>;
|
|
7
|
+
getIconValue(): Promise<string | null | undefined>;
|
|
8
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ContentContainerComponentHarness } from '@angular/cdk/testing';
|
|
2
2
|
import { DataTableHarness } from './data-table.harness';
|
|
3
|
-
import { PButtonHarness, PChipHarness, SpanHarness } from '
|
|
3
|
+
import { PButtonHarness, PChipHarness, SpanHarness } from '@onecx/angular-testing';
|
|
4
4
|
export declare class FilterViewHarness extends ContentContainerComponentHarness {
|
|
5
5
|
static hostSelector: string;
|
|
6
|
-
getOverlayResetFiltersButton:
|
|
7
|
-
getFiltersButton:
|
|
8
|
-
getChipsResetFiltersButton:
|
|
9
|
-
getChips:
|
|
10
|
-
getNoFiltersMessage:
|
|
6
|
+
getOverlayResetFiltersButton: () => Promise<PButtonHarness | null>;
|
|
7
|
+
getFiltersButton: () => Promise<PButtonHarness | null>;
|
|
8
|
+
getChipsResetFiltersButton: () => Promise<PButtonHarness | null>;
|
|
9
|
+
getChips: () => Promise<PChipHarness[]>;
|
|
10
|
+
getNoFiltersMessage: () => Promise<SpanHarness | null>;
|
|
11
11
|
getDataTable(): Promise<DataTableHarness | null>;
|
|
12
12
|
}
|
|
@@ -2,5 +2,5 @@ import { ComponentHarness } from '@angular/cdk/testing';
|
|
|
2
2
|
import { DiagramHarness } from './diagram.harness';
|
|
3
3
|
export declare class GroupByCountDiagramHarness extends ComponentHarness {
|
|
4
4
|
static hostSelector: string;
|
|
5
|
-
getDiagram:
|
|
5
|
+
getDiagram: () => Promise<DiagramHarness>;
|
|
6
6
|
}
|
package/testing/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from './column-group-selection.harness';
|
|
2
|
+
export * from './content-container.harness';
|
|
3
|
+
export * from './content.harness';
|
|
2
4
|
export * from './custom-group-column-selector.harness';
|
|
3
5
|
export * from './data-layout-selection.harness';
|
|
4
6
|
export * from './data-list-grid.harness';
|
|
@@ -10,10 +12,15 @@ export * from './diagram.harness';
|
|
|
10
12
|
export * from './filter-view.harness';
|
|
11
13
|
export * from './group-by-count-diagram.harness';
|
|
12
14
|
export * from './interactive-data-view.harness';
|
|
15
|
+
export * from './lifecycle.harness';
|
|
13
16
|
export * from './more-actions-menu-button.harness';
|
|
14
17
|
export * from './page-header.harness';
|
|
15
18
|
export * from './slot.harness';
|
|
16
19
|
export * from './search-header.harness';
|
|
20
|
+
export * from '../testing/dialog-content.harness';
|
|
21
|
+
export * from '../testing/dialog-footer.harness';
|
|
22
|
+
export * from '../testing/dialog-inline.harness';
|
|
23
|
+
export * from '../testing/dialog-message-content.harness';
|
|
17
24
|
export * from '@angular/cdk/testing';
|
|
18
25
|
export * from '@angular/cdk/testing/testbed';
|
|
19
26
|
export * from '@onecx/angular-testing';
|
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
import { ContentContainerComponentHarness } from '@angular/cdk/testing';
|
|
2
2
|
import { PButtonHarness } from '@onecx/angular-testing';
|
|
3
|
-
import {
|
|
4
|
-
import { CustomGroupColumnSelectorHarness } from '.';
|
|
3
|
+
import { PSelectHarness } from '@onecx/angular-testing';
|
|
5
4
|
import { DataLayoutSelectionHarness } from './data-layout-selection.harness';
|
|
6
5
|
import { DataViewHarness } from './data-view.harness';
|
|
7
6
|
import { SlotHarness } from './slot.harness';
|
|
7
|
+
import { CustomGroupColumnSelectorHarness } from './custom-group-column-selector.harness';
|
|
8
8
|
export declare class InteractiveDataViewHarness extends ContentContainerComponentHarness {
|
|
9
9
|
static hostSelector: string;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
getHeaderStyleClasses(): Promise<string[]>;
|
|
11
|
+
getContentStyleClasses(): Promise<string[]>;
|
|
12
|
+
getDataLayoutSelection: () => Promise<DataLayoutSelectionHarness>;
|
|
13
|
+
getColumnGroupSelectionSelect: () => Promise<PSelectHarness | null>;
|
|
14
|
+
getCustomGroupColumnSelector: () => Promise<CustomGroupColumnSelectorHarness | null>;
|
|
15
|
+
getCustomGroupColumnSelectorSlot: () => Promise<SlotHarness | null>;
|
|
16
|
+
getDataListGridSortingSelect: () => Promise<PSelectHarness | null>;
|
|
17
|
+
getDataListGridSortingButton: () => Promise<PButtonHarness | null>;
|
|
18
|
+
getDataView: () => Promise<DataViewHarness>;
|
|
17
19
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ContentContainerComponentHarness } from "@angular/cdk/testing";
|
|
2
|
+
export declare class LifecycleHarness extends ContentContainerComponentHarness {
|
|
3
|
+
static hostSelector: string;
|
|
4
|
+
getSteps: () => Promise<import("@angular/cdk/harness-environment.d-BbFzIFDE").T[]>;
|
|
5
|
+
getHighlightedSteps: () => Promise<import("@angular/cdk/harness-environment.d-BbFzIFDE").T[]>;
|
|
6
|
+
}
|
|
@@ -2,9 +2,9 @@ import { BaseHarnessFilters, ComponentHarness, HarnessPredicate } from '@angular
|
|
|
2
2
|
import { ListItemHarness, MenuItemHarness, PBreadcrumbHarness, PButtonHarness, PMenuHarness } from '@onecx/angular-testing';
|
|
3
3
|
export declare class PageHeaderHarness extends ComponentHarness {
|
|
4
4
|
static hostSelector: string;
|
|
5
|
-
getPageHeaderWrapperHarness:
|
|
6
|
-
getBreadcrumb:
|
|
7
|
-
getMenu:
|
|
5
|
+
getPageHeaderWrapperHarness: () => Promise<import("@onecx/angular-testing").TestElement[]>;
|
|
6
|
+
getBreadcrumb: () => Promise<PBreadcrumbHarness | null>;
|
|
7
|
+
getMenu: () => Promise<PMenuHarness | null>;
|
|
8
8
|
getElementByTitle(title: string): Promise<import("@onecx/angular-testing").TestElement | null>;
|
|
9
9
|
getElementByAriaLabel(ariaLabel: string): Promise<import("@onecx/angular-testing").TestElement | null>;
|
|
10
10
|
getObjectInfos(): Promise<ObjectDetailItemHarness[]>;
|
|
@@ -24,9 +24,9 @@ interface ObjectDetailItemHarnessFilters extends BaseHarnessFilters {
|
|
|
24
24
|
}
|
|
25
25
|
declare class ObjectDetailItemHarness extends ComponentHarness {
|
|
26
26
|
static hostSelector: string;
|
|
27
|
-
getLabelElement:
|
|
28
|
-
getValueElement:
|
|
29
|
-
getIconElement:
|
|
27
|
+
getLabelElement: () => Promise<import("@onecx/angular-testing").TestElement>;
|
|
28
|
+
getValueElement: () => Promise<import("@onecx/angular-testing").TestElement | null>;
|
|
29
|
+
getIconElement: () => Promise<import("@onecx/angular-testing").TestElement | null>;
|
|
30
30
|
static with(options: ObjectDetailItemHarnessFilters): HarnessPredicate<ObjectDetailItemHarness>;
|
|
31
31
|
getLabel(): Promise<string>;
|
|
32
32
|
getValue(): Promise<string | undefined>;
|
|
@@ -4,11 +4,11 @@ import { PageHeaderHarness } from './page-header.harness';
|
|
|
4
4
|
import { MoreActionsMenuButtonHarness } from './more-actions-menu-button.harness';
|
|
5
5
|
export declare class SearchHeaderHarness extends ComponentHarness {
|
|
6
6
|
static hostSelector: string;
|
|
7
|
-
getPageHeader:
|
|
8
|
-
getSearchButton:
|
|
9
|
-
getResetButton:
|
|
10
|
-
getSimpleAdvancedButton:
|
|
11
|
-
getMoreActionsMenuButton:
|
|
7
|
+
getPageHeader: () => Promise<PageHeaderHarness>;
|
|
8
|
+
getSearchButton: () => Promise<PButtonHarness>;
|
|
9
|
+
getResetButton: () => Promise<PButtonHarness>;
|
|
10
|
+
getSimpleAdvancedButton: () => Promise<PButtonHarness | null>;
|
|
11
|
+
getMoreActionsMenuButton: () => Promise<MoreActionsMenuButtonHarness | null>;
|
|
12
12
|
clickResetButton(): Promise<void>;
|
|
13
13
|
clickSearchButton(): Promise<void>;
|
|
14
14
|
toggleSimpleAdvanced(): Promise<void>;
|
package/esm2022/index.mjs
DELETED
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
// directives
|
|
2
|
-
export * from './lib/directives/if-permission.directive';
|
|
3
|
-
export * from './lib/directives/if-breakpoint.directive';
|
|
4
|
-
export * from './lib/directives/src.directive';
|
|
5
|
-
export * from './lib/directives/advanced.directive';
|
|
6
|
-
export * from './lib/directives/tooltipOnOverflow.directive';
|
|
7
|
-
// components
|
|
8
|
-
export * from './lib/components/column-group-selection/column-group-selection.component';
|
|
9
|
-
export * from './lib/components/custom-group-column-selector/custom-group-column-selector.component';
|
|
10
|
-
export * from './lib/components/data-layout-selection/data-layout-selection.component';
|
|
11
|
-
export * from './lib/components/data-list-grid/data-list-grid.component';
|
|
12
|
-
export * from './lib/components/data-list-grid-sorting/data-list-grid-sorting.component';
|
|
13
|
-
export * from './lib/components/data-table/data-table.component';
|
|
14
|
-
export * from './lib/components/data-view/data-view.component';
|
|
15
|
-
export * from './lib/components/diagram/diagram.component';
|
|
16
|
-
export * from './lib/components/filter-view/filter-view.component';
|
|
17
|
-
export * from './lib/components/group-by-count-diagram/group-by-count-diagram.component';
|
|
18
|
-
export * from './lib/components/interactive-data-view/interactive-data-view.component';
|
|
19
|
-
export * from './lib/components/page-header/page-header.component';
|
|
20
|
-
export * from './lib/components/search-header/search-header.component';
|
|
21
|
-
export * from './lib/components/data-loading-error/data-loading-error.component';
|
|
22
|
-
// services
|
|
23
|
-
export * from './lib/services/breadcrumb.service';
|
|
24
|
-
export * from './lib/services/translation-cache.service';
|
|
25
|
-
// pipes
|
|
26
|
-
export * from './lib/pipes/dynamic.pipe';
|
|
27
|
-
export * from './lib/pipes/ocxtimeago.pipe';
|
|
28
|
-
// models
|
|
29
|
-
export * from './lib/model/breadcrumb-menu-item.model';
|
|
30
|
-
export * from './lib/model/column-type.model';
|
|
31
|
-
export * from './lib/model/data-action';
|
|
32
|
-
// export * from './lib/model/data-column-name-id.model'
|
|
33
|
-
export * from './lib/model/data-sort-direction';
|
|
34
|
-
export * from './lib/model/data-table-column.model';
|
|
35
|
-
export * from './lib/model/diagram-column';
|
|
36
|
-
// export * from './lib/model/diagram-data'
|
|
37
|
-
export * from './lib/model/diagram-type';
|
|
38
|
-
export * from './lib/model/filter.model';
|
|
39
|
-
// core
|
|
40
|
-
export * from './lib/angular-accelerator.module';
|
|
41
|
-
export * from './lib/angular-accelerator-primeng.module';
|
|
42
|
-
// functions
|
|
43
|
-
export * from './lib/functions/flatten-object';
|
|
44
|
-
export * from './lib/functions/at-least-one-field-filled-validator';
|
|
45
|
-
// utils
|
|
46
|
-
export * from './lib/utils/async-translate-loader.utils';
|
|
47
|
-
export * from './lib/utils/caching-translate-loader.utils';
|
|
48
|
-
export * from './lib/utils/colorutils';
|
|
49
|
-
export * from './lib/utils/create-translate-loader.utils';
|
|
50
|
-
export * from './lib/utils/dateutils';
|
|
51
|
-
export * from './lib/utils/objectutils';
|
|
52
|
-
export * from './lib/utils/primeicon.utils';
|
|
53
|
-
export * from './lib/utils/translate.combined.loader';
|
|
54
|
-
export * from './lib/utils/create-remote-component-and-mfe-translate-loader.utils';
|
|
55
|
-
export * from './lib/utils/create-remote-component-translate-loader.utils';
|
|
56
|
-
export * from './lib/utils/enum-to-dropdown-options.utils';
|
|
57
|
-
export * from './lib/utils/criteria.utils';
|
|
58
|
-
export * from './lib/utils/string-and-array-helper-functions.utils';
|
|
59
|
-
export * from './lib/utils/template.utils';
|
|
60
|
-
export * from './lib/utils/filter.utils';
|
|
61
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXItYWNjZWxlcmF0b3Ivc3JjL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGFBQWE7QUFDYixjQUFjLDBDQUEwQyxDQUFBO0FBQ3hELGNBQWMsMENBQTBDLENBQUE7QUFDeEQsY0FBYyxnQ0FBZ0MsQ0FBQTtBQUM5QyxjQUFjLHFDQUFxQyxDQUFBO0FBQ25ELGNBQWMsOENBQThDLENBQUE7QUFFNUQsYUFBYTtBQUNiLGNBQWMsMEVBQTBFLENBQUE7QUFDeEYsY0FBYyxzRkFBc0YsQ0FBQTtBQUNwRyxjQUFjLHdFQUF3RSxDQUFBO0FBQ3RGLGNBQWMsMERBQTBELENBQUE7QUFDeEUsY0FBYywwRUFBMEUsQ0FBQTtBQUN4RixjQUFjLGtEQUFrRCxDQUFBO0FBQ2hFLGNBQWMsZ0RBQWdELENBQUE7QUFDOUQsY0FBYyw0Q0FBNEMsQ0FBQTtBQUMxRCxjQUFjLG9EQUFvRCxDQUFBO0FBQ2xFLGNBQWMsMEVBQTBFLENBQUE7QUFDeEYsY0FBYyx3RUFBd0UsQ0FBQTtBQUN0RixjQUFjLG9EQUFvRCxDQUFBO0FBQ2xFLGNBQWMsd0RBQXdELENBQUE7QUFDdEUsY0FBYyxrRUFBa0UsQ0FBQTtBQUVoRixXQUFXO0FBQ1gsY0FBYyxtQ0FBbUMsQ0FBQTtBQUNqRCxjQUFjLDBDQUEwQyxDQUFBO0FBRXhELFFBQVE7QUFDUixjQUFjLDBCQUEwQixDQUFBO0FBQ3hDLGNBQWMsNkJBQTZCLENBQUE7QUFFM0MsU0FBUztBQUNULGNBQWMsd0NBQXdDLENBQUE7QUFDdEQsY0FBYywrQkFBK0IsQ0FBQTtBQUM3QyxjQUFjLHlCQUF5QixDQUFBO0FBQ3ZDLHdEQUF3RDtBQUN4RCxjQUFjLGlDQUFpQyxDQUFBO0FBQy9DLGNBQWMscUNBQXFDLENBQUE7QUFDbkQsY0FBYyw0QkFBNEIsQ0FBQTtBQUMxQywyQ0FBMkM7QUFDM0MsY0FBYywwQkFBMEIsQ0FBQTtBQUN4QyxjQUFjLDBCQUEwQixDQUFBO0FBRXhDLE9BQU87QUFDUCxjQUFjLGtDQUFrQyxDQUFBO0FBQ2hELGNBQWMsMENBQTBDLENBQUE7QUFFeEQsWUFBWTtBQUNaLGNBQWMsZ0NBQWdDLENBQUE7QUFDOUMsY0FBYyxxREFBcUQsQ0FBQTtBQUVuRSxRQUFRO0FBQ1IsY0FBYywwQ0FBMEMsQ0FBQTtBQUN4RCxjQUFjLDRDQUE0QyxDQUFBO0FBQzFELGNBQWMsd0JBQXdCLENBQUE7QUFDdEMsY0FBYywyQ0FBMkMsQ0FBQTtBQUN6RCxjQUFjLHVCQUF1QixDQUFBO0FBQ3JDLGNBQWMseUJBQXlCLENBQUE7QUFDdkMsY0FBYyw2QkFBNkIsQ0FBQTtBQUMzQyxjQUFjLHVDQUF1QyxDQUFBO0FBQ3JELGNBQWMsb0VBQW9FLENBQUE7QUFDbEYsY0FBYyw0REFBNEQsQ0FBQTtBQUMxRSxjQUFjLDRDQUE0QyxDQUFBO0FBQzFELGNBQWMsNEJBQTRCLENBQUE7QUFDMUMsY0FBYyxxREFBcUQsQ0FBQTtBQUNuRSxjQUFjLDRCQUE0QixDQUFBO0FBQzFDLGNBQWMsMEJBQTBCLENBQUEiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBkaXJlY3RpdmVzXG5leHBvcnQgKiBmcm9tICcuL2xpYi9kaXJlY3RpdmVzL2lmLXBlcm1pc3Npb24uZGlyZWN0aXZlJ1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlcy9pZi1icmVha3BvaW50LmRpcmVjdGl2ZSdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpcmVjdGl2ZXMvc3JjLmRpcmVjdGl2ZSdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpcmVjdGl2ZXMvYWR2YW5jZWQuZGlyZWN0aXZlJ1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlcy90b29sdGlwT25PdmVyZmxvdy5kaXJlY3RpdmUnXG5cbi8vIGNvbXBvbmVudHNcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY29sdW1uLWdyb3VwLXNlbGVjdGlvbi9jb2x1bW4tZ3JvdXAtc2VsZWN0aW9uLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY3VzdG9tLWdyb3VwLWNvbHVtbi1zZWxlY3Rvci9jdXN0b20tZ3JvdXAtY29sdW1uLXNlbGVjdG9yLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZGF0YS1sYXlvdXQtc2VsZWN0aW9uL2RhdGEtbGF5b3V0LXNlbGVjdGlvbi5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2RhdGEtbGlzdC1ncmlkL2RhdGEtbGlzdC1ncmlkLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZGF0YS1saXN0LWdyaWQtc29ydGluZy9kYXRhLWxpc3QtZ3JpZC1zb3J0aW5nLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZGF0YS10YWJsZS9kYXRhLXRhYmxlLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZGF0YS12aWV3L2RhdGEtdmlldy5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2RpYWdyYW0vZGlhZ3JhbS5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2ZpbHRlci12aWV3L2ZpbHRlci12aWV3LmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZ3JvdXAtYnktY291bnQtZGlhZ3JhbS9ncm91cC1ieS1jb3VudC1kaWFncmFtLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvaW50ZXJhY3RpdmUtZGF0YS12aWV3L2ludGVyYWN0aXZlLWRhdGEtdmlldy5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3BhZ2UtaGVhZGVyL3BhZ2UtaGVhZGVyLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvc2VhcmNoLWhlYWRlci9zZWFyY2gtaGVhZGVyLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZGF0YS1sb2FkaW5nLWVycm9yL2RhdGEtbG9hZGluZy1lcnJvci5jb21wb25lbnQnXG5cbi8vIHNlcnZpY2VzXG5leHBvcnQgKiBmcm9tICcuL2xpYi9zZXJ2aWNlcy9icmVhZGNydW1iLnNlcnZpY2UnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9zZXJ2aWNlcy90cmFuc2xhdGlvbi1jYWNoZS5zZXJ2aWNlJ1xuXG4vLyBwaXBlc1xuZXhwb3J0ICogZnJvbSAnLi9saWIvcGlwZXMvZHluYW1pYy5waXBlJ1xuZXhwb3J0ICogZnJvbSAnLi9saWIvcGlwZXMvb2N4dGltZWFnby5waXBlJ1xuXG4vLyBtb2RlbHNcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVsL2JyZWFkY3J1bWItbWVudS1pdGVtLm1vZGVsJ1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWwvY29sdW1uLXR5cGUubW9kZWwnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbC9kYXRhLWFjdGlvbidcbi8vIGV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVsL2RhdGEtY29sdW1uLW5hbWUtaWQubW9kZWwnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbC9kYXRhLXNvcnQtZGlyZWN0aW9uJ1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWwvZGF0YS10YWJsZS1jb2x1bW4ubW9kZWwnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbC9kaWFncmFtLWNvbHVtbidcbi8vIGV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVsL2RpYWdyYW0tZGF0YSdcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVsL2RpYWdyYW0tdHlwZSdcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVsL2ZpbHRlci5tb2RlbCdcblxuLy8gY29yZVxuZXhwb3J0ICogZnJvbSAnLi9saWIvYW5ndWxhci1hY2NlbGVyYXRvci5tb2R1bGUnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9hbmd1bGFyLWFjY2VsZXJhdG9yLXByaW1lbmcubW9kdWxlJ1xuXG4vLyBmdW5jdGlvbnNcbmV4cG9ydCAqIGZyb20gJy4vbGliL2Z1bmN0aW9ucy9mbGF0dGVuLW9iamVjdCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2Z1bmN0aW9ucy9hdC1sZWFzdC1vbmUtZmllbGQtZmlsbGVkLXZhbGlkYXRvcidcblxuLy8gdXRpbHNcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWxzL2FzeW5jLXRyYW5zbGF0ZS1sb2FkZXIudXRpbHMnXG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9jYWNoaW5nLXRyYW5zbGF0ZS1sb2FkZXIudXRpbHMnXG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9jb2xvcnV0aWxzJ1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXRpbHMvY3JlYXRlLXRyYW5zbGF0ZS1sb2FkZXIudXRpbHMnXG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9kYXRldXRpbHMnXG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9vYmplY3R1dGlscydcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWxzL3ByaW1laWNvbi51dGlscydcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWxzL3RyYW5zbGF0ZS5jb21iaW5lZC5sb2FkZXInXG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9jcmVhdGUtcmVtb3RlLWNvbXBvbmVudC1hbmQtbWZlLXRyYW5zbGF0ZS1sb2FkZXIudXRpbHMnXG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9jcmVhdGUtcmVtb3RlLWNvbXBvbmVudC10cmFuc2xhdGUtbG9hZGVyLnV0aWxzJ1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXRpbHMvZW51bS10by1kcm9wZG93bi1vcHRpb25zLnV0aWxzJ1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXRpbHMvY3JpdGVyaWEudXRpbHMnXG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9zdHJpbmctYW5kLWFycmF5LWhlbHBlci1mdW5jdGlvbnMudXRpbHMnXG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy90ZW1wbGF0ZS51dGlscydcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWxzL2ZpbHRlci51dGlscydcbiJdfQ==
|
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { DropdownModule } from 'primeng/dropdown';
|
|
3
|
-
import { ButtonModule } from 'primeng/button';
|
|
4
|
-
import { DialogModule } from 'primeng/dialog';
|
|
5
|
-
import { PickListModule } from 'primeng/picklist';
|
|
6
|
-
import { SelectButtonModule } from 'primeng/selectbutton';
|
|
7
|
-
import { DataViewModule } from 'primeng/dataview';
|
|
8
|
-
import { TableModule } from 'primeng/table';
|
|
9
|
-
import { MenuModule } from 'primeng/menu';
|
|
10
|
-
import { ChartModule } from 'primeng/chart';
|
|
11
|
-
import { MultiSelectModule } from 'primeng/multiselect';
|
|
12
|
-
import { BreadcrumbModule } from 'primeng/breadcrumb';
|
|
13
|
-
import { SkeletonModule } from 'primeng/skeleton';
|
|
14
|
-
import { MessageModule } from 'primeng/message';
|
|
15
|
-
import { SharedModule } from 'primeng/api';
|
|
16
|
-
import { CheckboxModule } from 'primeng/checkbox';
|
|
17
|
-
import { FloatLabelModule } from 'primeng/floatlabel';
|
|
18
|
-
import { ChipModule } from 'primeng/chip';
|
|
19
|
-
import { OverlayPanelModule } from 'primeng/overlaypanel';
|
|
20
|
-
import { FocusTrapModule } from 'primeng/focustrap';
|
|
21
|
-
import * as i0 from "@angular/core";
|
|
22
|
-
export class AngularAcceleratorPrimeNgModule {
|
|
23
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: AngularAcceleratorPrimeNgModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
24
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.12", ngImport: i0, type: AngularAcceleratorPrimeNgModule, imports: [BreadcrumbModule,
|
|
25
|
-
ChipModule,
|
|
26
|
-
CheckboxModule,
|
|
27
|
-
DropdownModule,
|
|
28
|
-
ButtonModule,
|
|
29
|
-
DialogModule,
|
|
30
|
-
PickListModule,
|
|
31
|
-
SelectButtonModule,
|
|
32
|
-
DataViewModule,
|
|
33
|
-
TableModule,
|
|
34
|
-
MenuModule,
|
|
35
|
-
ChartModule,
|
|
36
|
-
MultiSelectModule,
|
|
37
|
-
SkeletonModule,
|
|
38
|
-
MessageModule,
|
|
39
|
-
FloatLabelModule,
|
|
40
|
-
OverlayPanelModule,
|
|
41
|
-
FocusTrapModule,
|
|
42
|
-
SharedModule], exports: [BreadcrumbModule,
|
|
43
|
-
ChipModule,
|
|
44
|
-
CheckboxModule,
|
|
45
|
-
DropdownModule,
|
|
46
|
-
ButtonModule,
|
|
47
|
-
DialogModule,
|
|
48
|
-
PickListModule,
|
|
49
|
-
SelectButtonModule,
|
|
50
|
-
DataViewModule,
|
|
51
|
-
TableModule,
|
|
52
|
-
MenuModule,
|
|
53
|
-
ChartModule,
|
|
54
|
-
MultiSelectModule,
|
|
55
|
-
SkeletonModule,
|
|
56
|
-
MessageModule,
|
|
57
|
-
FloatLabelModule,
|
|
58
|
-
OverlayPanelModule,
|
|
59
|
-
FocusTrapModule,
|
|
60
|
-
SharedModule] }); }
|
|
61
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: AngularAcceleratorPrimeNgModule, imports: [BreadcrumbModule,
|
|
62
|
-
ChipModule,
|
|
63
|
-
CheckboxModule,
|
|
64
|
-
DropdownModule,
|
|
65
|
-
ButtonModule,
|
|
66
|
-
DialogModule,
|
|
67
|
-
PickListModule,
|
|
68
|
-
SelectButtonModule,
|
|
69
|
-
DataViewModule,
|
|
70
|
-
TableModule,
|
|
71
|
-
MenuModule,
|
|
72
|
-
ChartModule,
|
|
73
|
-
MultiSelectModule,
|
|
74
|
-
SkeletonModule,
|
|
75
|
-
MessageModule,
|
|
76
|
-
FloatLabelModule,
|
|
77
|
-
OverlayPanelModule,
|
|
78
|
-
FocusTrapModule,
|
|
79
|
-
SharedModule, BreadcrumbModule,
|
|
80
|
-
ChipModule,
|
|
81
|
-
CheckboxModule,
|
|
82
|
-
DropdownModule,
|
|
83
|
-
ButtonModule,
|
|
84
|
-
DialogModule,
|
|
85
|
-
PickListModule,
|
|
86
|
-
SelectButtonModule,
|
|
87
|
-
DataViewModule,
|
|
88
|
-
TableModule,
|
|
89
|
-
MenuModule,
|
|
90
|
-
ChartModule,
|
|
91
|
-
MultiSelectModule,
|
|
92
|
-
SkeletonModule,
|
|
93
|
-
MessageModule,
|
|
94
|
-
FloatLabelModule,
|
|
95
|
-
OverlayPanelModule,
|
|
96
|
-
FocusTrapModule,
|
|
97
|
-
SharedModule] }); }
|
|
98
|
-
}
|
|
99
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: AngularAcceleratorPrimeNgModule, decorators: [{
|
|
100
|
-
type: NgModule,
|
|
101
|
-
args: [{
|
|
102
|
-
imports: [
|
|
103
|
-
BreadcrumbModule,
|
|
104
|
-
ChipModule,
|
|
105
|
-
CheckboxModule,
|
|
106
|
-
DropdownModule,
|
|
107
|
-
ButtonModule,
|
|
108
|
-
DialogModule,
|
|
109
|
-
PickListModule,
|
|
110
|
-
SelectButtonModule,
|
|
111
|
-
DataViewModule,
|
|
112
|
-
TableModule,
|
|
113
|
-
MenuModule,
|
|
114
|
-
ChartModule,
|
|
115
|
-
MultiSelectModule,
|
|
116
|
-
SkeletonModule,
|
|
117
|
-
MessageModule,
|
|
118
|
-
FloatLabelModule,
|
|
119
|
-
OverlayPanelModule,
|
|
120
|
-
FocusTrapModule,
|
|
121
|
-
SharedModule,
|
|
122
|
-
],
|
|
123
|
-
exports: [
|
|
124
|
-
BreadcrumbModule,
|
|
125
|
-
ChipModule,
|
|
126
|
-
CheckboxModule,
|
|
127
|
-
DropdownModule,
|
|
128
|
-
ButtonModule,
|
|
129
|
-
DialogModule,
|
|
130
|
-
PickListModule,
|
|
131
|
-
SelectButtonModule,
|
|
132
|
-
DataViewModule,
|
|
133
|
-
TableModule,
|
|
134
|
-
MenuModule,
|
|
135
|
-
ChartModule,
|
|
136
|
-
MultiSelectModule,
|
|
137
|
-
SkeletonModule,
|
|
138
|
-
MessageModule,
|
|
139
|
-
FloatLabelModule,
|
|
140
|
-
OverlayPanelModule,
|
|
141
|
-
FocusTrapModule,
|
|
142
|
-
SharedModule,
|
|
143
|
-
],
|
|
144
|
-
}]
|
|
145
|
-
}] });
|
|
146
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5ndWxhci1hY2NlbGVyYXRvci1wcmltZW5nLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvYW5ndWxhci1hY2NlbGVyYXRvci9zcmMvbGliL2FuZ3VsYXItYWNjZWxlcmF0b3ItcHJpbWVuZy5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQTtBQUN4QyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sa0JBQWtCLENBQUE7QUFDakQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGdCQUFnQixDQUFBO0FBQzdDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQTtBQUM3QyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sa0JBQWtCLENBQUE7QUFDakQsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sc0JBQXNCLENBQUE7QUFDekQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGtCQUFrQixDQUFBO0FBQ2pELE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUE7QUFDM0MsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGNBQWMsQ0FBQTtBQUN6QyxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFBO0FBQzNDLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHFCQUFxQixDQUFBO0FBQ3ZELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLG9CQUFvQixDQUFBO0FBQ3JELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQTtBQUNqRCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0saUJBQWlCLENBQUE7QUFDL0MsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGFBQWEsQ0FBQTtBQUMxQyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sa0JBQWtCLENBQUE7QUFDakQsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sb0JBQW9CLENBQUE7QUFDckQsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGNBQWMsQ0FBQTtBQUN6QyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQTtBQUN6RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sbUJBQW1CLENBQUE7O0FBOENuRCxNQUFNLE9BQU8sK0JBQStCOytHQUEvQiwrQkFBK0I7Z0hBQS9CLCtCQUErQixZQTFDeEMsZ0JBQWdCO1lBQ2hCLFVBQVU7WUFDVixjQUFjO1lBQ2QsY0FBYztZQUNkLFlBQVk7WUFDWixZQUFZO1lBQ1osY0FBYztZQUNkLGtCQUFrQjtZQUNsQixjQUFjO1lBQ2QsV0FBVztZQUNYLFVBQVU7WUFDVixXQUFXO1lBQ1gsaUJBQWlCO1lBQ2pCLGNBQWM7WUFDZCxhQUFhO1lBQ2IsZ0JBQWdCO1lBQ2hCLGtCQUFrQjtZQUNsQixlQUFlO1lBQ2YsWUFBWSxhQUdaLGdCQUFnQjtZQUNoQixVQUFVO1lBQ1YsY0FBYztZQUNkLGNBQWM7WUFDZCxZQUFZO1lBQ1osWUFBWTtZQUNaLGNBQWM7WUFDZCxrQkFBa0I7WUFDbEIsY0FBYztZQUNkLFdBQVc7WUFDWCxVQUFVO1lBQ1YsV0FBVztZQUNYLGlCQUFpQjtZQUNqQixjQUFjO1lBQ2QsYUFBYTtZQUNiLGdCQUFnQjtZQUNoQixrQkFBa0I7WUFDbEIsZUFBZTtZQUNmLFlBQVk7Z0hBR0gsK0JBQStCLFlBMUN4QyxnQkFBZ0I7WUFDaEIsVUFBVTtZQUNWLGNBQWM7WUFDZCxjQUFjO1lBQ2QsWUFBWTtZQUNaLFlBQVk7WUFDWixjQUFjO1lBQ2Qsa0JBQWtCO1lBQ2xCLGNBQWM7WUFDZCxXQUFXO1lBQ1gsVUFBVTtZQUNWLFdBQVc7WUFDWCxpQkFBaUI7WUFDakIsY0FBYztZQUNkLGFBQWE7WUFDYixnQkFBZ0I7WUFDaEIsa0JBQWtCO1lBQ2xCLGVBQWU7WUFDZixZQUFZLEVBR1osZ0JBQWdCO1lBQ2hCLFVBQVU7WUFDVixjQUFjO1lBQ2QsY0FBYztZQUNkLFlBQVk7WUFDWixZQUFZO1lBQ1osY0FBYztZQUNkLGtCQUFrQjtZQUNsQixjQUFjO1lBQ2QsV0FBVztZQUNYLFVBQVU7WUFDVixXQUFXO1lBQ1gsaUJBQWlCO1lBQ2pCLGNBQWM7WUFDZCxhQUFhO1lBQ2IsZ0JBQWdCO1lBQ2hCLGtCQUFrQjtZQUNsQixlQUFlO1lBQ2YsWUFBWTs7NEZBR0gsK0JBQStCO2tCQTVDM0MsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUU7d0JBQ1AsZ0JBQWdCO3dCQUNoQixVQUFVO3dCQUNWLGNBQWM7d0JBQ2QsY0FBYzt3QkFDZCxZQUFZO3dCQUNaLFlBQVk7d0JBQ1osY0FBYzt3QkFDZCxrQkFBa0I7d0JBQ2xCLGNBQWM7d0JBQ2QsV0FBVzt3QkFDWCxVQUFVO3dCQUNWLFdBQVc7d0JBQ1gsaUJBQWlCO3dCQUNqQixjQUFjO3dCQUNkLGFBQWE7d0JBQ2IsZ0JBQWdCO3dCQUNoQixrQkFBa0I7d0JBQ2xCLGVBQWU7d0JBQ2YsWUFBWTtxQkFDYjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsZ0JBQWdCO3dCQUNoQixVQUFVO3dCQUNWLGNBQWM7d0JBQ2QsY0FBYzt3QkFDZCxZQUFZO3dCQUNaLFlBQVk7d0JBQ1osY0FBYzt3QkFDZCxrQkFBa0I7d0JBQ2xCLGNBQWM7d0JBQ2QsV0FBVzt3QkFDWCxVQUFVO3dCQUNWLFdBQVc7d0JBQ1gsaUJBQWlCO3dCQUNqQixjQUFjO3dCQUNkLGFBQWE7d0JBQ2IsZ0JBQWdCO3dCQUNoQixrQkFBa0I7d0JBQ2xCLGVBQWU7d0JBQ2YsWUFBWTtxQkFDYjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IERyb3Bkb3duTW9kdWxlIH0gZnJvbSAncHJpbWVuZy9kcm9wZG93bidcbmltcG9ydCB7IEJ1dHRvbk1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvYnV0dG9uJ1xuaW1wb3J0IHsgRGlhbG9nTW9kdWxlIH0gZnJvbSAncHJpbWVuZy9kaWFsb2cnXG5pbXBvcnQgeyBQaWNrTGlzdE1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvcGlja2xpc3QnXG5pbXBvcnQgeyBTZWxlY3RCdXR0b25Nb2R1bGUgfSBmcm9tICdwcmltZW5nL3NlbGVjdGJ1dHRvbidcbmltcG9ydCB7IERhdGFWaWV3TW9kdWxlIH0gZnJvbSAncHJpbWVuZy9kYXRhdmlldydcbmltcG9ydCB7IFRhYmxlTW9kdWxlIH0gZnJvbSAncHJpbWVuZy90YWJsZSdcbmltcG9ydCB7IE1lbnVNb2R1bGUgfSBmcm9tICdwcmltZW5nL21lbnUnXG5pbXBvcnQgeyBDaGFydE1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvY2hhcnQnXG5pbXBvcnQgeyBNdWx0aVNlbGVjdE1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvbXVsdGlzZWxlY3QnXG5pbXBvcnQgeyBCcmVhZGNydW1iTW9kdWxlIH0gZnJvbSAncHJpbWVuZy9icmVhZGNydW1iJ1xuaW1wb3J0IHsgU2tlbGV0b25Nb2R1bGUgfSBmcm9tICdwcmltZW5nL3NrZWxldG9uJ1xuaW1wb3J0IHsgTWVzc2FnZU1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvbWVzc2FnZSdcbmltcG9ydCB7IFNoYXJlZE1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvYXBpJ1xuaW1wb3J0IHsgQ2hlY2tib3hNb2R1bGUgfSBmcm9tICdwcmltZW5nL2NoZWNrYm94J1xuaW1wb3J0IHsgRmxvYXRMYWJlbE1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvZmxvYXRsYWJlbCdcbmltcG9ydCB7IENoaXBNb2R1bGUgfSBmcm9tICdwcmltZW5nL2NoaXAnXG5pbXBvcnQgeyBPdmVybGF5UGFuZWxNb2R1bGUgfSBmcm9tICdwcmltZW5nL292ZXJsYXlwYW5lbCdcbmltcG9ydCB7IEZvY3VzVHJhcE1vZHVsZSB9IGZyb20gJ3ByaW1lbmcvZm9jdXN0cmFwJ1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgQnJlYWRjcnVtYk1vZHVsZSxcbiAgICBDaGlwTW9kdWxlLFxuICAgIENoZWNrYm94TW9kdWxlLFxuICAgIERyb3Bkb3duTW9kdWxlLFxuICAgIEJ1dHRvbk1vZHVsZSxcbiAgICBEaWFsb2dNb2R1bGUsXG4gICAgUGlja0xpc3RNb2R1bGUsXG4gICAgU2VsZWN0QnV0dG9uTW9kdWxlLFxuICAgIERhdGFWaWV3TW9kdWxlLFxuICAgIFRhYmxlTW9kdWxlLFxuICAgIE1lbnVNb2R1bGUsXG4gICAgQ2hhcnRNb2R1bGUsXG4gICAgTXVsdGlTZWxlY3RNb2R1bGUsXG4gICAgU2tlbGV0b25Nb2R1bGUsXG4gICAgTWVzc2FnZU1vZHVsZSxcbiAgICBGbG9hdExhYmVsTW9kdWxlLFxuICAgIE92ZXJsYXlQYW5lbE1vZHVsZSxcbiAgICBGb2N1c1RyYXBNb2R1bGUsXG4gICAgU2hhcmVkTW9kdWxlLFxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgQnJlYWRjcnVtYk1vZHVsZSxcbiAgICBDaGlwTW9kdWxlLFxuICAgIENoZWNrYm94TW9kdWxlLFxuICAgIERyb3Bkb3duTW9kdWxlLFxuICAgIEJ1dHRvbk1vZHVsZSxcbiAgICBEaWFsb2dNb2R1bGUsXG4gICAgUGlja0xpc3RNb2R1bGUsXG4gICAgU2VsZWN0QnV0dG9uTW9kdWxlLFxuICAgIERhdGFWaWV3TW9kdWxlLFxuICAgIFRhYmxlTW9kdWxlLFxuICAgIE1lbnVNb2R1bGUsXG4gICAgQ2hhcnRNb2R1bGUsXG4gICAgTXVsdGlTZWxlY3RNb2R1bGUsXG4gICAgU2tlbGV0b25Nb2R1bGUsXG4gICAgTWVzc2FnZU1vZHVsZSxcbiAgICBGbG9hdExhYmVsTW9kdWxlLFxuICAgIE92ZXJsYXlQYW5lbE1vZHVsZSxcbiAgICBGb2N1c1RyYXBNb2R1bGUsXG4gICAgU2hhcmVkTW9kdWxlLFxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBBbmd1bGFyQWNjZWxlcmF0b3JQcmltZU5nTW9kdWxlIHt9XG4iXX0=
|