@provoly/dashboard 1.3.7 → 1.3.9
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/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.d.ts +5 -2
- package/admin/components/admin-fields/admin-fields-form/admin-fields-form.component.d.ts +47 -18
- package/admin/components/admin-fields/admin-fields-select/admin-fields-select.component.d.ts +6 -2
- package/admin/components/admin-fields/admin-fields.component.d.ts +4 -1
- package/admin/components/admin-fields/store/admin-fields.model.d.ts +1 -1
- package/admin/components/admin-fields/store/fields.actions.d.ts +19 -12
- package/admin/components/admin-fields/store/fields.effects.d.ts +16 -3
- package/admin/i18n/en.translations.d.ts +33 -14
- package/admin/i18n/fr.translations.d.ts +33 -14
- package/components/checkbox/checkbox.component.d.ts +4 -2
- package/components/data-format/data-format.pipe.d.ts +11 -1
- package/components/paginator/index.d.ts +5 -0
- package/components/paginator/paginator.component.d.ts +19 -0
- package/components/paginator/paginator.module.d.ts +10 -0
- package/components/paginator/public-api.d.ts +3 -0
- package/components/paginator/style/_o-pry-paginator.scss +11 -0
- package/components/paginator/style/css.component.d.ts +5 -0
- package/dataset/components/dataset-detail/dataset-detail.component.d.ts +5 -8
- package/dataset/dataset.module.d.ts +1 -1
- package/dataset/i18n/en.translations.d.ts +0 -12
- package/dataset/i18n/fr.translations.d.ts +0 -12
- package/esm2022/admin/components/admin-abac-rules/components/attribute-condition/attribute-condition.component.mjs +4 -6
- package/esm2022/admin/components/admin-classes/admin-classes-customize/symbol/admin-classes-customize-symbol.component.mjs +1 -1
- package/esm2022/admin/components/admin-classes/admin-classes-customize/tooltip/admin-classes-customize-tooltip.component.mjs +1 -1
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.mjs +10 -12
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-classes-view.component.mjs +6 -5
- package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +2 -2
- package/esm2022/admin/components/admin-fields/admin-fields-form/admin-fields-form.component.mjs +142 -63
- package/esm2022/admin/components/admin-fields/admin-fields-select/admin-fields-select.component.mjs +7 -8
- package/esm2022/admin/components/admin-fields/admin-fields.component.mjs +15 -11
- package/esm2022/admin/components/admin-fields/store/admin-fields.model.mjs +1 -1
- package/esm2022/admin/components/admin-fields/store/fields.actions.mjs +6 -5
- package/esm2022/admin/components/admin-fields/store/fields.effects.mjs +12 -6
- package/esm2022/admin/i18n/en.translations.mjs +34 -15
- package/esm2022/admin/i18n/fr.translations.mjs +34 -15
- package/esm2022/components/checkbox/checkbox.component.mjs +15 -7
- package/esm2022/components/data-format/data-format.pipe.mjs +88 -7
- package/esm2022/components/paginator/paginator.component.mjs +51 -0
- package/esm2022/components/paginator/paginator.module.mjs +20 -0
- package/esm2022/components/paginator/provoly-dashboard-components-paginator.mjs +5 -0
- package/esm2022/components/paginator/public-api.mjs +4 -0
- package/esm2022/components/paginator/style/css.component.mjs +11 -0
- package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +16 -26
- package/esm2022/dataset/dataset.module.mjs +2 -5
- package/esm2022/dataset/i18n/en.translations.mjs +1 -13
- package/esm2022/dataset/i18n/fr.translations.mjs +2 -14
- package/esm2022/import/components/form/import-form.component.mjs +174 -0
- package/esm2022/import/components/list/import-list.component.mjs +73 -0
- package/esm2022/import/components/version-modal/version-modal.component.mjs +26 -0
- package/esm2022/import/i18n/en.translations.mjs +16 -2
- package/esm2022/import/i18n/fr.translations.mjs +16 -2
- package/esm2022/import/import-routing.module.mjs +3 -3
- package/esm2022/import/import.module.mjs +25 -10
- package/esm2022/import/public-api.mjs +4 -2
- package/esm2022/import/style/css.component.mjs +2 -2
- package/esm2022/lib/core/components/select/select.component.mjs +3 -3
- package/esm2022/lib/core/components/share/legacy-share/share.component.mjs +8 -8
- package/esm2022/lib/core/components/status-modal/status-modal.component.mjs +48 -0
- package/esm2022/lib/core/components/{modal-status/modal-status.module.mjs → status-modal/status-modal.module.mjs} +9 -9
- package/esm2022/lib/core/core.module.mjs +5 -5
- package/esm2022/lib/core/i18n/en.translations.mjs +39 -6
- package/esm2022/lib/core/i18n/fr.translations.mjs +41 -6
- package/esm2022/lib/core/model/admin-api.model.mjs +5 -69
- package/esm2022/lib/core/model/widget-analytic-manifest.interface.mjs +1 -1
- package/esm2022/lib/core/model/widget-table-manifest.interface.mjs +1 -1
- package/esm2022/lib/core/public-api.mjs +3 -3
- package/esm2022/lib/core/store/class/class.interface.mjs +1 -1
- package/esm2022/lib/core/store/class/class.selectors.mjs +2 -2
- package/esm2022/lib/core/store/data-source/data-source.actions.mjs +3 -3
- package/esm2022/lib/core/store/data-source/data-source.effects.mjs +7 -4
- package/esm2022/lib/core/store/data-source/data-source.model.mjs +1 -1
- package/esm2022/lib/core/store/data-source/data-source.reducer.mjs +5 -3
- package/esm2022/lib/core/store/data-source/data-source.selectors.mjs +3 -11
- package/esm2022/lib/core/store/data-source/data-source.service.mjs +23 -5
- package/esm2022/lib/core/store/field/field.interface.mjs +1 -3
- package/esm2022/lib/core/store/field/field.service.mjs +7 -2
- package/esm2022/lib/dashboard/components/context-menu/object-edition/object-edition.component.mjs +3 -3
- package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-card/datasource-card.component.mjs +3 -11
- package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-list/datasource-list.component.mjs +2 -2
- package/esm2022/lib/dashboard/item-utils.mjs +5 -5
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -4
- package/esm2022/lib/dashboard/store/dashboard.effects.mjs +1 -19
- package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +1 -26
- package/esm2022/lib/dashboard/tooltip/components/default/default.tooltip.component.mjs +3 -3
- package/esm2022/lib/dashboard/tooltip/tooltip-factory.service.mjs +3 -2
- package/esm2022/search/search-mono-class/components/search-condition/search-condition.component.mjs +4 -4
- package/esm2022/search/search-mono-class/components/search-order/search-order.component.mjs +3 -3
- package/esm2022/search/search-mono-class/components/search-select-attribute/search-select-attribute.component.mjs +4 -5
- package/esm2022/search/search-mono-class/store/search-mono-class.effects.mjs +2 -2
- package/esm2022/search/search-mono-class/store/search-mono-class.service.mjs +5 -6
- package/esm2022/search/search-multi-class/store/search-multi-class.service.mjs +4 -4
- package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +3 -3
- package/esm2022/toolbox/components/save-view/save-view.component.mjs +3 -3
- package/esm2022/tooltips/attribute/attribute-tooltip.component.mjs +17 -19
- package/esm2022/tooltips/attribute/attribute-tooltip.module.mjs +5 -4
- package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +54 -37
- package/esm2022/widgets/widget-analytic/component/widget-analytic.component.mjs +4 -16
- package/esm2022/widgets/widget-chart/component/widget-chart.component.mjs +9 -9
- package/esm2022/widgets/widget-detail/component/widget-detail.component.mjs +5 -5
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +30 -32
- package/esm2022/widgets/widget-map/pipe/widget-map-geometry-fields-for.pipe.mjs +2 -5
- package/esm2022/widgets/widget-map/utils/cql-utils.class.mjs +2 -2
- package/esm2022/widgets/widget-map/utils/widget-map.utils.mjs +6 -10
- package/esm2022/widgets/widget-table/component/widget-table.component.mjs +18 -14
- package/esm2022/widgets/widget-table/expand-value/expand-value.component.mjs +9 -5
- package/esm2022/widgets/widget-table/get-value/get-value.pipe.mjs +2 -2
- package/esm2022/widgets/widget-table/public-api.mjs +1 -2
- package/esm2022/widgets/widget-table/widget-table.module.mjs +12 -7
- package/esm2022/widgets/widget-tile/component/widget-tile.component.mjs +10 -15
- package/esm2022/widgets/widget-tile/widget-tile.module.mjs +8 -4
- package/esm2022/widgets/widget-vega/component/widget-vega.component.mjs +2 -2
- package/fesm2022/provoly-dashboard-admin.mjs +249 -126
- package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-components-checkbox.mjs +14 -6
- package/fesm2022/provoly-dashboard-components-checkbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-components-data-format.mjs +88 -7
- package/fesm2022/provoly-dashboard-components-data-format.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-components-paginator.mjs +82 -0
- package/fesm2022/provoly-dashboard-components-paginator.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-dataset.mjs +21 -58
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-import.mjs +249 -116
- package/fesm2022/provoly-dashboard-import.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-search.mjs +15 -16
- package/fesm2022/provoly-dashboard-search.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +4 -4
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-tooltips-attribute.mjs +20 -21
- package/fesm2022/provoly-dashboard-tooltips-attribute.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +53 -36
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-analytic.mjs +3 -15
- package/fesm2022/provoly-dashboard-widgets-widget-analytic.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +9 -9
- package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-detail.mjs +4 -4
- package/fesm2022/provoly-dashboard-widgets-widget-detail.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +36 -45
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs +32 -38
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs +16 -17
- package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +286 -338
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/import/components/{import.component.d.ts → form/import-form.component.d.ts} +8 -4
- package/import/components/list/import-list.component.d.ts +34 -0
- package/import/components/version-modal/version-modal.component.d.ts +13 -0
- package/import/i18n/en.translations.d.ts +14 -0
- package/import/i18n/fr.translations.d.ts +14 -0
- package/import/import.module.d.ts +13 -10
- package/import/public-api.d.ts +3 -1
- package/import/style/_o-import.scss +50 -6
- package/lib/core/components/share/legacy-share/share.component.d.ts +1 -1
- package/lib/core/components/{modal-status/modal-status.component.d.ts → status-modal/status-modal.component.d.ts} +10 -6
- package/lib/core/components/{modal-status/modal-status.module.d.ts → status-modal/status-modal.module.d.ts} +5 -5
- package/lib/core/core.module.d.ts +2 -2
- package/lib/core/i18n/en.translations.d.ts +33 -0
- package/lib/core/i18n/fr.translations.d.ts +35 -0
- package/lib/core/model/admin-api.model.d.ts +6 -8
- package/lib/core/model/widget-analytic-manifest.interface.d.ts +0 -3
- package/lib/core/model/widget-table-manifest.interface.d.ts +2 -0
- package/lib/core/public-api.d.ts +2 -2
- package/lib/core/store/class/class.interface.d.ts +2 -1
- package/lib/core/store/class/class.selectors.d.ts +10 -10
- package/lib/core/store/data-source/data-source.actions.d.ts +21 -1
- package/lib/core/store/data-source/data-source.effects.d.ts +11 -1
- package/lib/core/store/data-source/data-source.model.d.ts +3 -2
- package/lib/core/store/data-source/data-source.reducer.d.ts +1 -0
- package/lib/core/store/data-source/data-source.selectors.d.ts +3 -3
- package/lib/core/store/data-source/data-source.service.d.ts +11 -2
- package/lib/core/store/field/field.interface.d.ts +8 -4
- package/lib/core/store/field/field.service.d.ts +1 -0
- package/lib/dashboard/components/context-menu/object-edition/object-edition.component.d.ts +1 -1
- package/lib/dashboard/components/widgets/datasource-selector/datasource-card/datasource-card.component.d.ts +3 -7
- package/lib/dashboard/item-utils.d.ts +1 -1
- package/lib/dashboard/store/dashboard.actions.d.ts +0 -11
- package/lib/dashboard/store/dashboard.effects.d.ts +0 -3
- package/lib/dashboard/tooltip/tooltip-factory.service.d.ts +2 -1
- package/package.json +18 -12
- package/styles/base/_utils.scss +9 -1
- package/styles/components/_a-btn.scss +7 -0
- package/styles/components/_a-table.scss +2 -16
- package/styles/layout/_o-workspace.scss +1 -0
- package/tooltips/attribute/attribute-tooltip.component.d.ts +6 -6
- package/tooltips/attribute/attribute-tooltip.module.d.ts +2 -1
- package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +16 -3
- package/widgets/widget-analytic/component/widget-analytic.component.d.ts +2 -3
- package/widgets/widget-detail/component/widget-detail.component.d.ts +1 -4
- package/widgets/widget-table/component/widget-table.component.d.ts +1 -0
- package/widgets/widget-table/expand-value/expand-value.component.d.ts +4 -2
- package/widgets/widget-table/public-api.d.ts +0 -1
- package/widgets/widget-table/widget-table.module.d.ts +9 -8
- package/widgets/widget-tile/component/widget-tile.component.d.ts +1 -0
- package/widgets/widget-tile/widget-tile.module.d.ts +2 -1
- package/esm2022/import/components/import.component.mjs +0 -167
- package/esm2022/lib/core/components/modal-status/modal-status.component.mjs +0 -45
- package/esm2022/widgets/widget-table/expand-value/format-number.pipe.mjs +0 -24
- package/widgets/widget-table/expand-value/format-number.pipe.d.ts +0 -10
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ElementRef, OnDestroy } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
2
|
import { Store } from '@ngrx/store';
|
|
3
3
|
import { Dataset, DataSourceService, PryDatasetType, PryI18nService, PrySnackbarService, SubscriptionnerDirective } from '@provoly/dashboard';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
@@ -14,7 +14,7 @@ interface ImportForm {
|
|
|
14
14
|
producer: FormControl<string>;
|
|
15
15
|
additionalInformation: FormControl<string | null>;
|
|
16
16
|
}
|
|
17
|
-
export declare class
|
|
17
|
+
export declare class PryImportFormComponent extends SubscriptionnerDirective implements OnDestroy {
|
|
18
18
|
private store;
|
|
19
19
|
private dsService;
|
|
20
20
|
private snackbar;
|
|
@@ -32,6 +32,9 @@ export declare class PryImportComponent extends SubscriptionnerDirective impleme
|
|
|
32
32
|
extension: string;
|
|
33
33
|
};
|
|
34
34
|
};
|
|
35
|
+
multipleImports: boolean;
|
|
36
|
+
multipleImportsValue: EventEmitter<boolean>;
|
|
37
|
+
formSubmitted: EventEmitter<void>;
|
|
35
38
|
constructor(store: Store, dsService: DataSourceService, snackbar: PrySnackbarService, i18nService: PryI18nService);
|
|
36
39
|
ngOnDestroy(): void;
|
|
37
40
|
get fileType(): AbstractControl<FileExtension>;
|
|
@@ -45,9 +48,10 @@ export declare class PryImportComponent extends SubscriptionnerDirective impleme
|
|
|
45
48
|
getFileSize(size: number): string;
|
|
46
49
|
getLastActiveVersion(dataset: Dataset): void;
|
|
47
50
|
clearMessage(): void;
|
|
51
|
+
multipleImportChange(): void;
|
|
48
52
|
protected readonly Object: ObjectConstructor;
|
|
49
53
|
protected readonly PryDatasetType: typeof PryDatasetType;
|
|
50
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PryImportFormComponent, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PryImportFormComponent, "pry-import-form", never, {}, { "multipleImportsValue": "multipleImportsValue"; "formSubmitted": "formSubmitted"; }, never, never, false, never>;
|
|
52
56
|
}
|
|
53
57
|
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Action, Store } from '@ngrx/store';
|
|
3
|
+
import { Dataset, DatasetVersion, PryDialogService, PrySortChange, SubscriptionnerDirective } from '@provoly/dashboard';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PryImportListComponent extends SubscriptionnerDirective implements OnInit {
|
|
7
|
+
private store;
|
|
8
|
+
private dialog;
|
|
9
|
+
loadDataAction: import("@angular/core").InputSignal<Action>;
|
|
10
|
+
refreshClick: import("@angular/core").InputSignal<Observable<void> | undefined>;
|
|
11
|
+
datasets$: Observable<Dataset[]>;
|
|
12
|
+
possibleStatus: string[];
|
|
13
|
+
datasetVersions$: Observable<DatasetVersion[]>;
|
|
14
|
+
totalVersionCount$: Observable<number>;
|
|
15
|
+
filters: {
|
|
16
|
+
dataset?: string;
|
|
17
|
+
status?: string;
|
|
18
|
+
dateMin?: string;
|
|
19
|
+
dateMax?: string;
|
|
20
|
+
};
|
|
21
|
+
sort: {
|
|
22
|
+
orderBy?: 'DATASET_NAME' | 'DATE';
|
|
23
|
+
sortBy?: 'asc' | 'desc';
|
|
24
|
+
};
|
|
25
|
+
constructor(store: Store, dialog: PryDialogService);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
clearFilters(): void;
|
|
28
|
+
loadData(): void;
|
|
29
|
+
openInfoModal(version: DatasetVersion): void;
|
|
30
|
+
openErrorModal(version: DatasetVersion): void;
|
|
31
|
+
sortChange($event: PrySortChange): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PryImportListComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PryImportListComponent, "pry-import-list", never, { "loadDataAction": { "alias": "loadDataAction"; "required": false; "isSignal": true; }; "refreshClick": { "alias": "refreshClick"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DatasetVersion, PryDialogRef } from '@provoly/dashboard';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PryVersionModalComponent {
|
|
4
|
+
private dialogRef;
|
|
5
|
+
private data;
|
|
6
|
+
version: DatasetVersion;
|
|
7
|
+
constructor(dialogRef: PryDialogRef<PryVersionModalComponent>, data: {
|
|
8
|
+
version: DatasetVersion;
|
|
9
|
+
});
|
|
10
|
+
close(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PryVersionModalComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PryVersionModalComponent, "pry-version-modal", never, {}, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
export declare const enTranslations: {
|
|
2
2
|
'@pry': {
|
|
3
|
+
importList: {
|
|
4
|
+
title: string;
|
|
5
|
+
filter: {
|
|
6
|
+
dsName: string;
|
|
7
|
+
status: string;
|
|
8
|
+
date: string;
|
|
9
|
+
};
|
|
10
|
+
dsName: string;
|
|
11
|
+
date: string;
|
|
12
|
+
number: string;
|
|
13
|
+
status: string;
|
|
14
|
+
actions: string;
|
|
15
|
+
};
|
|
3
16
|
import: {
|
|
4
17
|
title: string;
|
|
5
18
|
datasetImport: string;
|
|
@@ -31,6 +44,7 @@ export declare const enTranslations: {
|
|
|
31
44
|
STORAGE: string;
|
|
32
45
|
};
|
|
33
46
|
normalize: string;
|
|
47
|
+
multiple: string;
|
|
34
48
|
};
|
|
35
49
|
};
|
|
36
50
|
};
|
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
export declare const frTranslations: {
|
|
2
2
|
'@pry': {
|
|
3
|
+
importList: {
|
|
4
|
+
title: string;
|
|
5
|
+
filter: {
|
|
6
|
+
dsName: string;
|
|
7
|
+
status: string;
|
|
8
|
+
date: string;
|
|
9
|
+
};
|
|
10
|
+
dsName: string;
|
|
11
|
+
date: string;
|
|
12
|
+
number: string;
|
|
13
|
+
status: string;
|
|
14
|
+
actions: string;
|
|
15
|
+
};
|
|
3
16
|
import: {
|
|
4
17
|
title: string;
|
|
5
18
|
datasetImport: string;
|
|
@@ -32,6 +45,7 @@ export declare const frTranslations: {
|
|
|
32
45
|
STORAGE: string;
|
|
33
46
|
};
|
|
34
47
|
normalize: string;
|
|
48
|
+
multiple: string;
|
|
35
49
|
};
|
|
36
50
|
};
|
|
37
51
|
};
|
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
import { PryI18nService } from '@provoly/dashboard';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "./components/import.component";
|
|
3
|
+
import * as i1 from "./components/form/import-form.component";
|
|
4
4
|
import * as i2 from "./style/css.component";
|
|
5
|
-
import * as i3 from "
|
|
6
|
-
import * as i4 from "
|
|
7
|
-
import * as i5 from "@
|
|
8
|
-
import * as i6 from "
|
|
9
|
-
import * as i7 from "@
|
|
10
|
-
import * as i8 from "
|
|
11
|
-
import * as i9 from "@
|
|
12
|
-
import * as i10 from "@
|
|
5
|
+
import * as i3 from "./components/list/import-list.component";
|
|
6
|
+
import * as i4 from "./components/version-modal/version-modal.component";
|
|
7
|
+
import * as i5 from "@provoly/dashboard";
|
|
8
|
+
import * as i6 from "@angular/common";
|
|
9
|
+
import * as i7 from "@angular/forms";
|
|
10
|
+
import * as i8 from "./import-routing.module";
|
|
11
|
+
import * as i9 from "@ngrx/store";
|
|
12
|
+
import * as i10 from "@ngrx/effects";
|
|
13
|
+
import * as i11 from "@provoly/dashboard/components/checkbox";
|
|
14
|
+
import * as i12 from "@provoly/dashboard/components/text-editor";
|
|
15
|
+
import * as i13 from "@provoly/dashboard/components/paginator";
|
|
13
16
|
export declare class PryImportModule {
|
|
14
17
|
private pryTranslateService;
|
|
15
18
|
constructor(pryTranslateService: PryI18nService);
|
|
16
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<PryImportModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PryImportModule, [typeof i1.
|
|
20
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PryImportModule, [typeof i1.PryImportFormComponent, typeof i2.PryImportCssComponent, typeof i3.PryImportListComponent, typeof i4.PryVersionModalComponent], [typeof i5.PryCoreModule, typeof i5.PrySelectModule, typeof i5.PryI18nModule, typeof i6.CommonModule, typeof i5.PryIconModule, typeof i7.FormsModule, typeof i8.PryImportRoutingModule, typeof i9.StoreFeatureModule, typeof i10.EffectsFeatureModule, typeof i11.PryCheckboxModule, typeof i7.ReactiveFormsModule, typeof i12.PryTextEditorModule, typeof i5.PryDatePickerModule, typeof i5.PrySinceDateModule, typeof i13.PryPaginatorModule, typeof i5.PrySortModule], [typeof i1.PryImportFormComponent, typeof i3.PryImportListComponent, typeof i4.PryVersionModalComponent]>;
|
|
18
21
|
static ɵinj: i0.ɵɵInjectorDeclaration<PryImportModule>;
|
|
19
22
|
}
|
package/import/public-api.d.ts
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
@use '../../styles/abstracts' as *;
|
|
2
|
+
@use '../../styles-theme/abstracts-theme/variables.theme' as *;
|
|
2
3
|
|
|
3
4
|
/* Organism - import */
|
|
4
5
|
.o-import {
|
|
5
|
-
display: flex;
|
|
6
|
-
flex-direction: column;
|
|
7
6
|
overflow: scroll;
|
|
8
7
|
height: 100%;
|
|
9
8
|
padding: toRem(15) toRem(25);
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
&__header, &__form-container {
|
|
11
|
+
width: 50%;
|
|
13
12
|
}
|
|
14
13
|
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
.u-display-flex {
|
|
15
|
+
gap: toRem(75);
|
|
17
16
|
}
|
|
18
17
|
|
|
19
18
|
.o-file-input {
|
|
@@ -40,3 +39,48 @@
|
|
|
40
39
|
flex: 1;
|
|
41
40
|
}
|
|
42
41
|
}
|
|
42
|
+
|
|
43
|
+
.o-import-list {
|
|
44
|
+
height: 100%;
|
|
45
|
+
|
|
46
|
+
.a-h1 {
|
|
47
|
+
padding: 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.warning {
|
|
51
|
+
color: themed($theme-map, 'color', 'status', 'error');
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.m-filter__input-wrapper {
|
|
55
|
+
height: toRem(40);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.m-filter__date-input-separator {
|
|
59
|
+
line-height: 0;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.a-table {
|
|
63
|
+
tbody td.-cell-with-icon {
|
|
64
|
+
margin: 0;
|
|
65
|
+
padding: toRem(20);
|
|
66
|
+
height: 100%;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
&__content {
|
|
71
|
+
overflow: auto;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.m-version-modal {
|
|
76
|
+
background-color: white;
|
|
77
|
+
max-width: toRem(380);
|
|
78
|
+
max-height: toRem(600);
|
|
79
|
+
padding: 0 toRem(20) toRem(20) toRem(10) ;
|
|
80
|
+
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
81
|
+
|
|
82
|
+
&__list {
|
|
83
|
+
@extend %list-unstyled;
|
|
84
|
+
overflow: auto;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
@@ -7,7 +7,7 @@ export declare class PryShareComponent implements ControlValueAccessor {
|
|
|
7
7
|
private _onTouched;
|
|
8
8
|
_disabled: boolean;
|
|
9
9
|
value: string[];
|
|
10
|
-
stringValue: '
|
|
10
|
+
stringValue: 'PRIVATE' | 'PUBLIC';
|
|
11
11
|
labelProperty: string;
|
|
12
12
|
valueProperty: string;
|
|
13
13
|
visibilityTypes: {
|
|
@@ -2,9 +2,12 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { Store } from '@ngrx/store';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { DatasetVersion } from '../../store/data-source/data-source.model';
|
|
5
|
+
import { PryDialogRef } from '../overlay/dialog-ref';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class
|
|
7
|
+
export declare class PryStatusModalComponent {
|
|
7
8
|
private store;
|
|
9
|
+
private dialogRef;
|
|
10
|
+
private data;
|
|
8
11
|
gotoConsult: EventEmitter<DatasetVersion>;
|
|
9
12
|
datasetPreviews$?: Observable<{
|
|
10
13
|
datasetVersionId: string;
|
|
@@ -16,9 +19,10 @@ export declare class PryModalStatusComponent {
|
|
|
16
19
|
}[]>;
|
|
17
20
|
messageCount$?: Observable<number>;
|
|
18
21
|
_version?: DatasetVersion;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
static
|
|
22
|
+
constructor(store: Store, dialogRef: PryDialogRef<PryStatusModalComponent>, data: {
|
|
23
|
+
version: DatasetVersion;
|
|
24
|
+
});
|
|
25
|
+
close(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PryStatusModalComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PryStatusModalComponent, "pry-status-modal", never, {}, { "gotoConsult": "gotoConsult"; }, never, never, false, never>;
|
|
24
28
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { PryI18nService } from '../../i18n/i18n.service';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "./modal
|
|
3
|
+
import * as i1 from "./status-modal.component";
|
|
4
4
|
import * as i2 from "@angular/common";
|
|
5
5
|
import * as i3 from "../icon/icon.module";
|
|
6
6
|
import * as i4 from "../../i18n/i18n.module";
|
|
7
|
-
export declare class
|
|
7
|
+
export declare class PryStatusModalModule {
|
|
8
8
|
private pryTranslateService;
|
|
9
9
|
constructor(pryTranslateService: PryI18nService);
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PryStatusModalModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PryStatusModalModule, [typeof i1.PryStatusModalComponent], [typeof i2.CommonModule, typeof i3.PryIconModule, typeof i4.PryI18nModule], [typeof i1.PryStatusModalComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PryStatusModalModule>;
|
|
13
13
|
}
|
|
@@ -26,7 +26,7 @@ import * as i22 from "./components/icon/icon.module";
|
|
|
26
26
|
import * as i23 from "@angular/cdk/overlay";
|
|
27
27
|
import * as i24 from "./components/overlay/overlay.module";
|
|
28
28
|
import * as i25 from "./i18n/i18n.module";
|
|
29
|
-
import * as i26 from "./components/modal-
|
|
29
|
+
import * as i26 from "./components/status-modal/status-modal.module";
|
|
30
30
|
import * as i27 from "@angular/cdk/accordion";
|
|
31
31
|
import * as i28 from "@angular/forms";
|
|
32
32
|
export declare class PryCoreModule {
|
|
@@ -38,6 +38,6 @@ export declare class PryCoreModule {
|
|
|
38
38
|
geoAuthProvider?: Provider;
|
|
39
39
|
}): ModuleWithProviders<PryCoreModule>;
|
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<PryCoreModule, never>;
|
|
41
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PryCoreModule, [typeof i1.TranslateIdPipe, typeof i2.TranslateItemToSymbolPipe, typeof i3.GetSecuredImagePipe, typeof i4.BaseLayoutComponent, typeof i5.BaseMenuComponent, typeof i6.BaseToolboxComponent, typeof i7.PryNqColorSelectorComponent, typeof i8.PryAccessDirective, typeof i9.PryUploadComponent, typeof i10.PrySelectImageComponent, typeof i11.AccordionComponent, typeof i12.AccordionItemComponent, typeof i13.TabGroupComponent, typeof i14.TabComponent, typeof i15.EllipsisDirective, typeof i16.BaseToolboxActionComponent], [typeof i17.CommonModule, typeof i18.RouterModule, typeof i19.HttpClientModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i22.PryIconModule, typeof i23.OverlayModule, typeof i24.PryOverlayModule, typeof i25.PryI18nModule, typeof i26.
|
|
41
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PryCoreModule, [typeof i1.TranslateIdPipe, typeof i2.TranslateItemToSymbolPipe, typeof i3.GetSecuredImagePipe, typeof i4.BaseLayoutComponent, typeof i5.BaseMenuComponent, typeof i6.BaseToolboxComponent, typeof i7.PryNqColorSelectorComponent, typeof i8.PryAccessDirective, typeof i9.PryUploadComponent, typeof i10.PrySelectImageComponent, typeof i11.AccordionComponent, typeof i12.AccordionItemComponent, typeof i13.TabGroupComponent, typeof i14.TabComponent, typeof i15.EllipsisDirective, typeof i16.BaseToolboxActionComponent], [typeof i17.CommonModule, typeof i18.RouterModule, typeof i19.HttpClientModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i22.PryIconModule, typeof i23.OverlayModule, typeof i24.PryOverlayModule, typeof i25.PryI18nModule, typeof i26.PryStatusModalModule, typeof i27.CdkAccordionModule, typeof i28.FormsModule], [typeof i1.TranslateIdPipe, typeof i2.TranslateItemToSymbolPipe, typeof i3.GetSecuredImagePipe, typeof i4.BaseLayoutComponent, typeof i5.BaseMenuComponent, typeof i6.BaseToolboxComponent, typeof i7.PryNqColorSelectorComponent, typeof i8.PryAccessDirective, typeof i9.PryUploadComponent, typeof i10.PrySelectImageComponent, typeof i11.AccordionComponent, typeof i12.AccordionItemComponent, typeof i13.TabGroupComponent, typeof i14.TabComponent, typeof i15.EllipsisDirective]>;
|
|
42
42
|
static ɵinj: i0.ɵɵInjectorDeclaration<PryCoreModule>;
|
|
43
43
|
}
|
|
@@ -249,6 +249,8 @@ export declare const enTranslations: {
|
|
|
249
249
|
filterByType: string;
|
|
250
250
|
editMetadata: string;
|
|
251
251
|
addMetadata: string;
|
|
252
|
+
yes: string;
|
|
253
|
+
no: string;
|
|
252
254
|
};
|
|
253
255
|
snack: {
|
|
254
256
|
default: string;
|
|
@@ -418,4 +420,35 @@ export declare const enTranslations: {
|
|
|
418
420
|
a11y: {
|
|
419
421
|
modalStatusTableDescr: string;
|
|
420
422
|
};
|
|
423
|
+
dataset: {
|
|
424
|
+
version: {
|
|
425
|
+
title: string;
|
|
426
|
+
name: string;
|
|
427
|
+
productionDate: string;
|
|
428
|
+
importDate: string;
|
|
429
|
+
number: string;
|
|
430
|
+
producer: string;
|
|
431
|
+
additionalInformation: string;
|
|
432
|
+
fileName: string;
|
|
433
|
+
notProvided: string;
|
|
434
|
+
state: {
|
|
435
|
+
INDEXING: string;
|
|
436
|
+
LOADING: string;
|
|
437
|
+
INACTIVE: string;
|
|
438
|
+
ERROR: string;
|
|
439
|
+
ACTIVE: string;
|
|
440
|
+
DELETING: string;
|
|
441
|
+
currentlyActive: string;
|
|
442
|
+
};
|
|
443
|
+
stateFilter: {
|
|
444
|
+
INDEXING: string;
|
|
445
|
+
LOADING: string;
|
|
446
|
+
INACTIVE: string;
|
|
447
|
+
ERROR: string;
|
|
448
|
+
ACTIVE: string;
|
|
449
|
+
DELETING: string;
|
|
450
|
+
DELETE_ERROR: string;
|
|
451
|
+
};
|
|
452
|
+
};
|
|
453
|
+
};
|
|
421
454
|
};
|
|
@@ -251,6 +251,8 @@ export declare const frTranslations: {
|
|
|
251
251
|
filterByType: string;
|
|
252
252
|
editMetadata: string;
|
|
253
253
|
addMetadata: string;
|
|
254
|
+
yes: string;
|
|
255
|
+
no: string;
|
|
254
256
|
};
|
|
255
257
|
snack: {
|
|
256
258
|
default: string;
|
|
@@ -419,5 +421,38 @@ export declare const frTranslations: {
|
|
|
419
421
|
a11y: {
|
|
420
422
|
modalStatusTableDescr: string;
|
|
421
423
|
};
|
|
424
|
+
dataset: {
|
|
425
|
+
version: {
|
|
426
|
+
title: string;
|
|
427
|
+
name: string;
|
|
428
|
+
productionDate: string;
|
|
429
|
+
importDate: string;
|
|
430
|
+
number: string;
|
|
431
|
+
producer: string;
|
|
432
|
+
additionalInformation: string;
|
|
433
|
+
fileName: string;
|
|
434
|
+
notProvided: string;
|
|
435
|
+
stateTitle: string;
|
|
436
|
+
state: {
|
|
437
|
+
INDEXING: string;
|
|
438
|
+
LOADING: string;
|
|
439
|
+
INACTIVE: string;
|
|
440
|
+
ERROR: string;
|
|
441
|
+
ACTIVE: string;
|
|
442
|
+
DELETING: string;
|
|
443
|
+
DELETE_ERROR: string;
|
|
444
|
+
currentlyActive: string;
|
|
445
|
+
};
|
|
446
|
+
stateFilter: {
|
|
447
|
+
INDEXING: string;
|
|
448
|
+
LOADING: string;
|
|
449
|
+
INACTIVE: string;
|
|
450
|
+
ERROR: string;
|
|
451
|
+
ACTIVE: string;
|
|
452
|
+
DELETING: string;
|
|
453
|
+
DELETE_ERROR: string;
|
|
454
|
+
};
|
|
455
|
+
};
|
|
456
|
+
};
|
|
422
457
|
};
|
|
423
458
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Attribute } from '../store/class/class.interface';
|
|
2
|
-
import {
|
|
2
|
+
import { Field } from '../store/field/field.interface';
|
|
3
3
|
export interface Predicate {
|
|
4
4
|
id: string;
|
|
5
5
|
name: string;
|
|
@@ -50,18 +50,16 @@ export interface AttributeExtended {
|
|
|
50
50
|
id: string;
|
|
51
51
|
name: string;
|
|
52
52
|
technicalName: string;
|
|
53
|
-
field:
|
|
53
|
+
field: Field;
|
|
54
54
|
fieldName: string;
|
|
55
55
|
category?: string;
|
|
56
56
|
categoryName?: string;
|
|
57
57
|
multiValued: boolean;
|
|
58
58
|
}
|
|
59
|
-
export
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
64
|
-
export declare const FIELD_OPTIONS: FieldOption[];
|
|
59
|
+
export declare const FIELD_I18N: {
|
|
60
|
+
label: string;
|
|
61
|
+
information: string;
|
|
62
|
+
};
|
|
65
63
|
export interface MetadataUser {
|
|
66
64
|
userProfile: IMetadata;
|
|
67
65
|
value: string;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Field } from '../store/field/field.interface';
|
|
1
2
|
export interface TableWidgetOptions {
|
|
2
3
|
columns?: ColumnDefinition[];
|
|
3
4
|
style?: TableWidgetStyle | any;
|
|
@@ -7,6 +8,7 @@ export interface ColumnDefinition {
|
|
|
7
8
|
type?: string;
|
|
8
9
|
property: string;
|
|
9
10
|
attributeId?: string;
|
|
11
|
+
field?: Field;
|
|
10
12
|
}
|
|
11
13
|
export interface TableWidgetStyle {
|
|
12
14
|
headerTextAlign?: string;
|
package/lib/core/public-api.d.ts
CHANGED
|
@@ -79,8 +79,8 @@ export * from './components/hidden-when-overlay/hidden-when-overlay.directive';
|
|
|
79
79
|
export * from './components/hidden-when-overlay/hidden-when-overlay.module';
|
|
80
80
|
export * from './components/modal/modal.component';
|
|
81
81
|
export * from './components/modal/pry-modal.module';
|
|
82
|
-
export * from './components/modal-
|
|
83
|
-
export * from './components/modal-
|
|
82
|
+
export * from './components/status-modal/status-modal.component';
|
|
83
|
+
export * from './components/status-modal/status-modal.module';
|
|
84
84
|
export * from './components/toggle/toggle.component';
|
|
85
85
|
export * from './components/toggle/toggle.module';
|
|
86
86
|
export * from './components/sort/sort-data.pipe';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Field } from '../field/field.interface';
|
|
1
2
|
export interface Class {
|
|
2
3
|
id: string;
|
|
3
4
|
name: string;
|
|
@@ -9,7 +10,7 @@ export interface Attribute {
|
|
|
9
10
|
id: string;
|
|
10
11
|
name: string;
|
|
11
12
|
technicalName: string;
|
|
12
|
-
field:
|
|
13
|
+
field: Field;
|
|
13
14
|
category?: string;
|
|
14
15
|
multiValued: boolean;
|
|
15
16
|
}
|
|
@@ -8,7 +8,7 @@ export declare const ClassSelectors: {
|
|
|
8
8
|
technicalName: string;
|
|
9
9
|
id: string;
|
|
10
10
|
name: string;
|
|
11
|
-
field:
|
|
11
|
+
field: import("@provoly/dashboard").Field;
|
|
12
12
|
category?: string | undefined;
|
|
13
13
|
multiValued: boolean;
|
|
14
14
|
}[];
|
|
@@ -21,7 +21,7 @@ export declare const ClassSelectors: {
|
|
|
21
21
|
technicalName: string;
|
|
22
22
|
id: string;
|
|
23
23
|
name: string;
|
|
24
|
-
field:
|
|
24
|
+
field: import("@provoly/dashboard").Field;
|
|
25
25
|
category?: string | undefined;
|
|
26
26
|
multiValued: boolean;
|
|
27
27
|
}[];
|
|
@@ -36,7 +36,7 @@ export declare const ClassSelectors: {
|
|
|
36
36
|
technicalName: string;
|
|
37
37
|
id: string;
|
|
38
38
|
name: string;
|
|
39
|
-
field:
|
|
39
|
+
field: import("@provoly/dashboard").Field;
|
|
40
40
|
category?: string | undefined;
|
|
41
41
|
multiValued: boolean;
|
|
42
42
|
}[];
|
|
@@ -50,7 +50,7 @@ export declare const ClassSelectors: {
|
|
|
50
50
|
technicalName: string;
|
|
51
51
|
id: string;
|
|
52
52
|
name: string;
|
|
53
|
-
field:
|
|
53
|
+
field: import("@provoly/dashboard").Field;
|
|
54
54
|
category?: string | undefined;
|
|
55
55
|
multiValued: boolean;
|
|
56
56
|
}[];
|
|
@@ -63,7 +63,7 @@ export declare const ClassSelectors: {
|
|
|
63
63
|
technicalName: string;
|
|
64
64
|
id: string;
|
|
65
65
|
name: string;
|
|
66
|
-
field:
|
|
66
|
+
field: import("@provoly/dashboard").Field;
|
|
67
67
|
category?: string | undefined;
|
|
68
68
|
multiValued: boolean;
|
|
69
69
|
}[], (s1: {
|
|
@@ -71,7 +71,7 @@ export declare const ClassSelectors: {
|
|
|
71
71
|
technicalName: string;
|
|
72
72
|
id: string;
|
|
73
73
|
name: string;
|
|
74
|
-
field:
|
|
74
|
+
field: import("@provoly/dashboard").Field;
|
|
75
75
|
category?: string | undefined;
|
|
76
76
|
multiValued: boolean;
|
|
77
77
|
}[];
|
|
@@ -83,7 +83,7 @@ export declare const ClassSelectors: {
|
|
|
83
83
|
technicalName: string;
|
|
84
84
|
id: string;
|
|
85
85
|
name: string;
|
|
86
|
-
field:
|
|
86
|
+
field: import("@provoly/dashboard").Field;
|
|
87
87
|
category?: string | undefined;
|
|
88
88
|
multiValued: boolean;
|
|
89
89
|
}[]>;
|
|
@@ -92,21 +92,21 @@ export declare const ClassSelectors: {
|
|
|
92
92
|
technicalName: string;
|
|
93
93
|
id: string;
|
|
94
94
|
name: string;
|
|
95
|
-
field:
|
|
95
|
+
field: import("@provoly/dashboard").Field;
|
|
96
96
|
category?: string | undefined;
|
|
97
97
|
multiValued: boolean;
|
|
98
98
|
}[], (s1: {
|
|
99
99
|
technicalName: string;
|
|
100
100
|
id: string;
|
|
101
101
|
name: string;
|
|
102
|
-
field:
|
|
102
|
+
field: import("@provoly/dashboard").Field;
|
|
103
103
|
category?: string | undefined;
|
|
104
104
|
multiValued: boolean;
|
|
105
105
|
}[]) => {
|
|
106
106
|
technicalName: string;
|
|
107
107
|
id: string;
|
|
108
108
|
name: string;
|
|
109
|
-
field:
|
|
109
|
+
field: import("@provoly/dashboard").Field;
|
|
110
110
|
category?: string | undefined;
|
|
111
111
|
multiValued: boolean;
|
|
112
112
|
}[]>;
|
|
@@ -92,11 +92,31 @@ export declare const DataSourceActions: {
|
|
|
92
92
|
}) => {
|
|
93
93
|
error: any;
|
|
94
94
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] failure effect Dataset">>;
|
|
95
|
-
listVersions: import("@ngrx/store").ActionCreator<"[Dataset] Get Dataset versions", (
|
|
95
|
+
listVersions: import("@ngrx/store").ActionCreator<"[Dataset] Get Dataset versions", (props: {
|
|
96
|
+
limit?: number | undefined;
|
|
97
|
+
offset?: number | undefined;
|
|
98
|
+
dataset?: string | undefined;
|
|
99
|
+
sortBy?: string | undefined;
|
|
100
|
+
orderBy?: "ASC" | "DESC" | undefined;
|
|
101
|
+
dateMin?: string | undefined;
|
|
102
|
+
dateMax?: string | undefined;
|
|
103
|
+
status?: string | undefined;
|
|
104
|
+
}) => {
|
|
105
|
+
limit?: number | undefined;
|
|
106
|
+
offset?: number | undefined;
|
|
107
|
+
dataset?: string | undefined;
|
|
108
|
+
sortBy?: string | undefined;
|
|
109
|
+
orderBy?: "ASC" | "DESC" | undefined;
|
|
110
|
+
dateMin?: string | undefined;
|
|
111
|
+
dateMax?: string | undefined;
|
|
112
|
+
status?: string | undefined;
|
|
113
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Get Dataset versions">>;
|
|
96
114
|
listVersionsSuccess: import("@ngrx/store").ActionCreator<"[Dataset] Get Dataset versions Success", (props: {
|
|
97
115
|
versions: DatasetVersion[];
|
|
116
|
+
totalVersionCount: number;
|
|
98
117
|
}) => {
|
|
99
118
|
versions: DatasetVersion[];
|
|
119
|
+
totalVersionCount: number;
|
|
100
120
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Get Dataset versions Success">>;
|
|
101
121
|
listVersionsFailure: import("@ngrx/store").ActionCreator<"[Dataset] Get Dataset versions Failure", () => import("@ngrx/store/src/models").TypedAction<"[Dataset] Get Dataset versions Failure">>;
|
|
102
122
|
listVersionsByDatasetId: import("@ngrx/store").ActionCreator<"[Dataset] Get Dataset Versions by Dataset Id", (props: {
|