@provoly/dashboard 1.2.8 → 1.2.10
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/admin.module.d.ts +14 -14
- package/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.d.ts +5 -16
- package/admin/components/admin-dataset/{shared/admin-form-dataset → admin-form-dataset}/admin-form-dataset.component.d.ts +8 -7
- package/admin/components/admin-dataset/store/admin-dataset.actions.d.ts +23 -18
- package/admin/components/admin-dataset/store/admin-dataset.effects.d.ts +9 -6
- package/admin/components/admin-dataset/store/admin-dataset.service.d.ts +2 -1
- package/admin/components/shared/add-category-modal/add-category-modal.component.d.ts +39 -0
- package/admin/i18n/en.translations.d.ts +23 -8
- package/admin/i18n/fr.translations.d.ts +23 -8
- package/dataset/components/dataset.component.d.ts +3 -7
- package/dataset/dataset.module.d.ts +7 -9
- package/dataset/i18n/en.translations.d.ts +8 -0
- package/dataset/i18n/fr.translations.d.ts +8 -0
- package/dataset/public-api.d.ts +0 -1
- package/dataset/style/_o-pry-dataset.scss +5 -42
- package/esm2022/admin/admin.module.mjs +7 -8
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.mjs +22 -53
- package/esm2022/admin/components/admin-dataset/admin-edit-dataset/admin-edit-dataset.component.mjs +1 -1
- package/esm2022/admin/components/admin-dataset/admin-form-dataset/admin-form-dataset.component.mjs +115 -0
- package/esm2022/admin/components/admin-dataset/admin-new-dataset/admin-new-dataset.component.mjs +1 -1
- package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +3 -3
- package/esm2022/admin/components/admin-dataset/store/admin-dataset.actions.mjs +11 -10
- package/esm2022/admin/components/admin-dataset/store/admin-dataset.effects.mjs +2 -1
- package/esm2022/admin/components/admin-dataset/store/admin-dataset.service.mjs +10 -4
- package/esm2022/admin/components/shared/add-category-modal/add-category-modal.component.mjs +73 -0
- package/esm2022/admin/i18n/en.translations.mjs +25 -10
- package/esm2022/admin/i18n/fr.translations.mjs +26 -11
- package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +4 -5
- package/esm2022/dataset/components/dataset.component.mjs +8 -23
- package/esm2022/dataset/dataset.module.mjs +12 -13
- package/esm2022/dataset/i18n/en.translations.mjs +9 -1
- package/esm2022/dataset/i18n/fr.translations.mjs +10 -2
- package/esm2022/dataset/public-api.mjs +1 -2
- package/esm2022/dataset/style/css.component.mjs +3 -3
- package/esm2022/lib/core/components/chips-selector/chips-selector.component.mjs +7 -27
- package/esm2022/lib/core/components/chips-selector/chips-selector.module.mjs +21 -0
- package/esm2022/lib/core/components/select-image/select-image.component.mjs +1 -1
- package/esm2022/lib/core/components/share/group-share/group-share.component.mjs +3 -3
- package/esm2022/lib/core/components/share/share.module.mjs +8 -12
- package/esm2022/lib/core/core.module.mjs +4 -8
- package/esm2022/lib/core/i18n/en.translations.mjs +8 -8
- package/esm2022/lib/core/i18n/fr.translations.mjs +9 -9
- package/esm2022/lib/core/pipes/get-secured-image/get-secured-image.pipe.mjs +21 -0
- package/esm2022/lib/core/pipes/since-date/since-date.module.mjs +18 -0
- package/esm2022/lib/core/pipes/since-date/since-date.pipe.mjs +55 -0
- package/esm2022/lib/core/pipes/translate-id/translate-id.pipe.mjs +108 -0
- package/esm2022/lib/core/pipes/translate-item-to-symbol/translate-item-to-symbol.pipe.mjs +23 -0
- package/esm2022/lib/core/public-api.mjs +7 -4
- package/esm2022/lib/core/store/data-source/data-source.actions.mjs +4 -2
- package/esm2022/lib/core/store/data-source/data-source.effects.mjs +4 -1
- package/esm2022/lib/core/store/data-source/data-source.model.mjs +1 -1
- package/esm2022/lib/core/store/data-source/data-source.reducer.mjs +6 -2
- package/esm2022/lib/core/store/data-source/data-source.selectors.mjs +4 -2
- package/esm2022/lib/core/store/data-source/data-source.service.mjs +6 -1
- package/esm2022/lib/core/store/data-source/datasource-utils.mjs +22 -1
- package/esm2022/lib/dashboard/components/widgets/data-widget.component.mjs +2 -2
- package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-card/datasource-card.component.mjs +60 -0
- package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-list/datasource-list.component.mjs +95 -0
- package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.mjs +53 -48
- package/esm2022/lib/dashboard/components/widgets/header/widget-header.component.mjs +6 -7
- package/esm2022/lib/dashboard/components/widgets/public-api.mjs +3 -1
- package/esm2022/lib/dashboard/dashboard.module.mjs +19 -7
- package/esm2022/lib/dashboard/tooltip/components/default/default.tooltip.component.mjs +2 -2
- package/esm2022/pipeline/components/pipeline-details/pipeline-details.component.mjs +2 -3
- package/esm2022/pipeline/components/pipeline-list/pipeline-list.component.mjs +2 -3
- package/esm2022/pipeline/pipeline.module.mjs +8 -9
- package/esm2022/presentation/components/presentation.component.mjs +2 -3
- package/esm2022/presentation/presentation.module.mjs +8 -9
- package/esm2022/restitution/components/restitution/restitution.component.mjs +4 -4
- package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +2 -3
- package/esm2022/restitution/restitution.module.mjs +2 -3
- package/esm2022/restitution/style/css.component.mjs +2 -2
- package/fesm2022/provoly-dashboard-admin.mjs +194 -109
- package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-dataset.mjs +51 -79
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-pipeline.mjs +17 -19
- package/fesm2022/provoly-dashboard-pipeline.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-presentation.mjs +8 -10
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-restitution.mjs +7 -9
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +3475 -3233
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/components/chips-selector/chips-selector.component.d.ts +1 -6
- package/lib/core/components/chips-selector/chips-selector.module.d.ts +11 -0
- package/lib/core/components/share/share.module.d.ts +3 -4
- package/lib/core/core.module.d.ts +26 -27
- package/lib/core/i18n/en.translations.d.ts +7 -7
- package/lib/core/i18n/fr.translations.d.ts +7 -7
- package/{components/sinceDate/sinceDate.module.d.ts → lib/core/pipes/since-date/since-date.module.d.ts} +3 -2
- package/{components/sinceDate/sinceDate.pipe.d.ts → lib/core/pipes/since-date/since-date.pipe.d.ts} +4 -4
- package/lib/core/{components → pipes}/translate-id/translate-id.pipe.d.ts +0 -2
- package/lib/core/public-api.d.ts +6 -3
- package/lib/core/store/data-source/data-source.actions.d.ts +7 -0
- package/lib/core/store/data-source/data-source.effects.d.ts +3 -0
- package/lib/core/store/data-source/data-source.model.d.ts +3 -0
- package/lib/core/store/data-source/data-source.reducer.d.ts +2 -0
- package/lib/core/store/data-source/data-source.selectors.d.ts +1 -0
- package/lib/core/store/data-source/data-source.service.d.ts +2 -0
- package/lib/core/store/data-source/datasource-utils.d.ts +4 -1
- package/lib/dashboard/components/widgets/datasource-selector/datasource-card/datasource-card.component.d.ts +24 -0
- package/lib/dashboard/components/widgets/datasource-selector/datasource-list/datasource-list.component.d.ts +35 -0
- package/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.d.ts +19 -11
- package/lib/dashboard/components/widgets/header/widget-header.component.d.ts +1 -1
- package/lib/dashboard/components/widgets/public-api.d.ts +2 -0
- package/lib/dashboard/dashboard.module.d.ts +18 -15
- package/package.json +13 -19
- package/pipeline/pipeline.module.d.ts +3 -4
- package/presentation/presentation.module.d.ts +7 -8
- package/restitution/components/restitution/restitution.component.d.ts +1 -1
- package/restitution/restitution.module.d.ts +1 -2
- package/restitution/style/_o-restitution.scss +4 -0
- package/styles/base/_typography.scss +4 -0
- package/styles/base/_utils.scss +27 -1
- package/styles/components/_a-btn.scss +4 -0
- package/styles/components/_a-chip.scss +45 -0
- package/styles/components/_o-datasource-selector.scss +192 -0
- package/styles/components/_o-modal.scss +0 -42
- package/styles/components/_o-widget.scss +1 -1
- package/styles/layout/_o-base-layout.scss +1 -7
- package/styles/main.scss +1 -0
- package/styles-theme/main-theme.scss +0 -3
- package/components/sinceDate/index.d.ts +0 -5
- package/components/sinceDate/public-api.d.ts +0 -2
- package/dataset/components/dataset-card/dataset-card.component.d.ts +0 -18
- package/dataset/style/_o-pry-dataset-card.scss +0 -85
- package/esm2022/admin/components/admin-dataset/shared/admin-form-dataset/admin-form-dataset.component.mjs +0 -99
- package/esm2022/components/sinceDate/provoly-dashboard-components-sinceDate.mjs +0 -5
- package/esm2022/components/sinceDate/public-api.mjs +0 -3
- package/esm2022/components/sinceDate/sinceDate.module.mjs +0 -16
- package/esm2022/components/sinceDate/sinceDate.pipe.mjs +0 -55
- package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +0 -41
- package/esm2022/lib/core/components/get-secured-image/get-secured-image.pipe.mjs +0 -21
- package/esm2022/lib/core/components/translate-id/translate-id.pipe.mjs +0 -114
- package/esm2022/lib/core/components/translate-item-to-symbol/translate-item-to-symbol.pipe.mjs +0 -23
- package/fesm2022/provoly-dashboard-components-sinceDate.mjs +0 -75
- package/fesm2022/provoly-dashboard-components-sinceDate.mjs.map +0 -1
- package/styles-theme/components-theme/_a-chip.theme.scss +0 -32
- package/styles-theme/components-theme/_o-pry-dataset-card.theme.scss +0 -26
- package/styles-theme/components-theme/_o-pry-dataset.theme.scss +0 -4
- /package/lib/core/{components → pipes}/get-secured-image/get-secured-image.pipe.d.ts +0 -0
- /package/lib/core/{components → pipes}/translate-item-to-symbol/translate-item-to-symbol.pipe.d.ts +0 -0
|
@@ -14,10 +14,6 @@ export declare class ChipsSelectorComponent extends SubscriptionnerDirective {
|
|
|
14
14
|
showSearchbar: boolean;
|
|
15
15
|
set items(items: any[]);
|
|
16
16
|
set usedItems(items: any[]);
|
|
17
|
-
cancel: EventEmitter<any>;
|
|
18
|
-
validated: EventEmitter<any>;
|
|
19
|
-
previousTab: EventEmitter<any>;
|
|
20
|
-
nextTab: EventEmitter<any>;
|
|
21
17
|
itemsChanged: EventEmitter<any[]>;
|
|
22
18
|
items$: BehaviorSubject<any[] | null>;
|
|
23
19
|
usedItems$: BehaviorSubject<any[]>;
|
|
@@ -28,12 +24,11 @@ export declare class ChipsSelectorComponent extends SubscriptionnerDirective {
|
|
|
28
24
|
};
|
|
29
25
|
constructor(cdr: ChangeDetectorRef, i18n: PryI18nService);
|
|
30
26
|
toggleItemSelection(item: any): void;
|
|
31
|
-
isGeo(item: any): boolean;
|
|
32
27
|
search($event: any): void;
|
|
33
28
|
getItemValue(item: any): any;
|
|
34
29
|
getItemLabel(item: any): any;
|
|
35
30
|
areItemsEqual(item1: any, item2: any): boolean;
|
|
36
31
|
isItemUsed(item: any, usedItems?: any[]): any;
|
|
37
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChipsSelectorComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChipsSelectorComponent, "pry-chips-selector", never, { "bindValue": { "alias": "bindValue"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "translationStringBase": { "alias": "translationStringBase"; "required": false; }; "itemTranslationStringBase": { "alias": "itemTranslationStringBase"; "required": false; }; "showActionButtons": { "alias": "showActionButtons"; "required": false; }; "showSearchbar": { "alias": "showSearchbar"; "required": false; }; "items": { "alias": "items"; "required": false; }; "usedItems": { "alias": "usedItems"; "required": false; }; }, { "
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChipsSelectorComponent, "pry-chips-selector", never, { "bindValue": { "alias": "bindValue"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "translationStringBase": { "alias": "translationStringBase"; "required": false; }; "itemTranslationStringBase": { "alias": "itemTranslationStringBase"; "required": false; }; "showActionButtons": { "alias": "showActionButtons"; "required": false; }; "showSearchbar": { "alias": "showSearchbar"; "required": false; }; "items": { "alias": "items"; "required": false; }; "usedItems": { "alias": "usedItems"; "required": false; }; }, { "itemsChanged": "itemsChanged"; }, never, never, false, never>;
|
|
39
34
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./chips-selector.component";
|
|
3
|
+
import * as i2 from "../icon/icon.module";
|
|
4
|
+
import * as i3 from "../../i18n/i18n.module";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
export declare class PryChipsSelectorModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PryChipsSelectorModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PryChipsSelectorModule, [typeof i1.ChipsSelectorComponent], [typeof i2.PryIconModule, typeof i3.PryI18nModule, typeof i4.AsyncPipe, typeof i5.FormsModule], [typeof i1.ChipsSelectorComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PryChipsSelectorModule>;
|
|
11
|
+
}
|
|
@@ -7,11 +7,10 @@ import * as i5 from "@angular/common";
|
|
|
7
7
|
import * as i6 from "@angular/forms";
|
|
8
8
|
import * as i7 from "../select/select.module";
|
|
9
9
|
import * as i8 from "../../i18n/i18n.module";
|
|
10
|
-
import * as i9 from "
|
|
11
|
-
import * as i10 from "
|
|
12
|
-
import * as i11 from "../icon/icon.module";
|
|
10
|
+
import * as i9 from "../icon/icon.module";
|
|
11
|
+
import * as i10 from "../chips-selector/chips-selector.module";
|
|
13
12
|
export declare class PryShareModule {
|
|
14
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<PryShareModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PryShareModule, [typeof i1.PryShareComponent, typeof i2.PryGroupShareComponent, typeof i3.PryAccessRightsShareComponent, typeof i4.PryAccessRightsShareModalComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.PrySelectModule, typeof i8.PryI18nModule, typeof i9.
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PryShareModule, [typeof i1.PryShareComponent, typeof i2.PryGroupShareComponent, typeof i3.PryAccessRightsShareComponent, typeof i4.PryAccessRightsShareModalComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.PrySelectModule, typeof i8.PryI18nModule, typeof i9.PryIconModule, typeof i10.PryChipsSelectorModule], [typeof i1.PryShareComponent, typeof i2.PryGroupShareComponent, typeof i3.PryAccessRightsShareComponent, typeof i4.PryAccessRightsShareModalComponent]>;
|
|
16
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<PryShareModule>;
|
|
17
16
|
}
|
|
@@ -1,35 +1,34 @@
|
|
|
1
1
|
import { ModuleWithProviders, Provider } from '@angular/core';
|
|
2
2
|
import { PryI18nService } from './i18n/i18n.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "./
|
|
5
|
-
import * as i2 from "./
|
|
6
|
-
import * as i3 from "./
|
|
4
|
+
import * as i1 from "./pipes/translate-id/translate-id.pipe";
|
|
5
|
+
import * as i2 from "./pipes/translate-item-to-symbol/translate-item-to-symbol.pipe";
|
|
6
|
+
import * as i3 from "./pipes/get-secured-image/get-secured-image.pipe";
|
|
7
7
|
import * as i4 from "./components/base-layout/base-layout.component";
|
|
8
8
|
import * as i5 from "./components/base-menu/base-menu.component";
|
|
9
9
|
import * as i6 from "./components/base-toolbox/base-toolbox.component";
|
|
10
|
-
import * as i7 from "./components/
|
|
11
|
-
import * as i8 from "./
|
|
12
|
-
import * as i9 from "./
|
|
13
|
-
import * as i10 from "./components/
|
|
14
|
-
import * as i11 from "./components/
|
|
15
|
-
import * as i12 from "./components/accordion/accordion.component";
|
|
16
|
-
import * as i13 from "./components/
|
|
17
|
-
import * as i14 from "./components/tabs/tab
|
|
18
|
-
import * as i15 from "./components/
|
|
19
|
-
import * as i16 from "./components/
|
|
20
|
-
import * as i17 from "
|
|
21
|
-
import * as i18 from "@angular/
|
|
22
|
-
import * as i19 from "@angular/
|
|
23
|
-
import * as i20 from "@
|
|
24
|
-
import * as i21 from "@ngrx/
|
|
25
|
-
import * as i22 from "
|
|
26
|
-
import * as i23 from "
|
|
27
|
-
import * as i24 from "
|
|
28
|
-
import * as i25 from "./
|
|
29
|
-
import * as i26 from "./
|
|
30
|
-
import * as i27 from "
|
|
31
|
-
import * as i28 from "@angular/
|
|
32
|
-
import * as i29 from "@angular/forms";
|
|
10
|
+
import * as i7 from "./components/nq-color-selector/nq-color-selector.component";
|
|
11
|
+
import * as i8 from "./access/access.directive";
|
|
12
|
+
import * as i9 from "./components/upload/upload.component";
|
|
13
|
+
import * as i10 from "./components/select-image/select-image.component";
|
|
14
|
+
import * as i11 from "./components/accordion/accordion.component";
|
|
15
|
+
import * as i12 from "./components/accordion/accordion-item/accordion-item.component";
|
|
16
|
+
import * as i13 from "./components/tabs/tab-group.component";
|
|
17
|
+
import * as i14 from "./components/tabs/tab.component";
|
|
18
|
+
import * as i15 from "./components/ellipsis.directive";
|
|
19
|
+
import * as i16 from "./components/base-toolbox-action/base-toolbox-action.component";
|
|
20
|
+
import * as i17 from "@angular/common";
|
|
21
|
+
import * as i18 from "@angular/router";
|
|
22
|
+
import * as i19 from "@angular/common/http";
|
|
23
|
+
import * as i20 from "@ngrx/store";
|
|
24
|
+
import * as i21 from "@ngrx/effects";
|
|
25
|
+
import * as i22 from "./components/icon/icon.module";
|
|
26
|
+
import * as i23 from "@angular/cdk/overlay";
|
|
27
|
+
import * as i24 from "./components/overlay/overlay.module";
|
|
28
|
+
import * as i25 from "./i18n/i18n.module";
|
|
29
|
+
import * as i26 from "./components/modal-status/modal-status.module";
|
|
30
|
+
import * as i27 from "@angular/cdk/accordion";
|
|
31
|
+
import * as i28 from "@angular/forms";
|
|
33
32
|
export declare class PryCoreModule {
|
|
34
33
|
private pryTranslateService;
|
|
35
34
|
constructor(pryTranslateService: PryI18nService);
|
|
@@ -39,6 +38,6 @@ export declare class PryCoreModule {
|
|
|
39
38
|
geoAuthProvider?: Provider;
|
|
40
39
|
}): ModuleWithProviders<PryCoreModule>;
|
|
41
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<PryCoreModule, never>;
|
|
42
|
-
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.
|
|
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.PryModalStatusModule, 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]>;
|
|
43
42
|
static ɵinj: i0.ɵɵInjectorDeclaration<PryCoreModule>;
|
|
44
43
|
}
|
|
@@ -334,13 +334,6 @@ export declare const enTranslations: {
|
|
|
334
334
|
components: {
|
|
335
335
|
searchData: string;
|
|
336
336
|
chipsSelector: {
|
|
337
|
-
datasource: {
|
|
338
|
-
select: string;
|
|
339
|
-
selection: string;
|
|
340
|
-
selectItem: string;
|
|
341
|
-
unselectItem: string;
|
|
342
|
-
noItemSelected: string;
|
|
343
|
-
};
|
|
344
337
|
share: {
|
|
345
338
|
select: string;
|
|
346
339
|
selection: string;
|
|
@@ -349,6 +342,13 @@ export declare const enTranslations: {
|
|
|
349
342
|
noItemSelected: string;
|
|
350
343
|
};
|
|
351
344
|
};
|
|
345
|
+
datasourceSelector: {
|
|
346
|
+
select: string;
|
|
347
|
+
selection: string;
|
|
348
|
+
selectItem: string;
|
|
349
|
+
unselectItem: string;
|
|
350
|
+
noItemSelected: string;
|
|
351
|
+
};
|
|
352
352
|
};
|
|
353
353
|
errors: {
|
|
354
354
|
default: string;
|
|
@@ -336,13 +336,6 @@ export declare const frTranslations: {
|
|
|
336
336
|
components: {
|
|
337
337
|
searchData: string;
|
|
338
338
|
chipsSelector: {
|
|
339
|
-
datasource: {
|
|
340
|
-
select: string;
|
|
341
|
-
selection: string;
|
|
342
|
-
selectItem: string;
|
|
343
|
-
unselectItem: string;
|
|
344
|
-
noItemSelected: string;
|
|
345
|
-
};
|
|
346
339
|
share: {
|
|
347
340
|
select: string;
|
|
348
341
|
selection: string;
|
|
@@ -351,6 +344,13 @@ export declare const frTranslations: {
|
|
|
351
344
|
noItemSelected: string;
|
|
352
345
|
};
|
|
353
346
|
};
|
|
347
|
+
datasourceSelector: {
|
|
348
|
+
select: string;
|
|
349
|
+
selection: string;
|
|
350
|
+
selectItem: string;
|
|
351
|
+
unselectItem: string;
|
|
352
|
+
noItemSelected: string;
|
|
353
|
+
};
|
|
354
354
|
};
|
|
355
355
|
errors: {
|
|
356
356
|
default: string;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./
|
|
2
|
+
import * as i1 from "./since-date.pipe";
|
|
3
|
+
import * as i2 from "../../i18n/i18n.module";
|
|
3
4
|
export declare class PrySinceDateModule {
|
|
4
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<PrySinceDateModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PrySinceDateModule, [typeof i1.
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PrySinceDateModule, [typeof i1.SinceDatePipe], [typeof i2.PryI18nModule], [typeof i1.SinceDatePipe]>;
|
|
6
7
|
static ɵinj: i0.ɵɵInjectorDeclaration<PrySinceDateModule>;
|
|
7
8
|
}
|
package/{components/sinceDate/sinceDate.pipe.d.ts → lib/core/pipes/since-date/since-date.pipe.d.ts}
RENAMED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { PryI18nService } from '
|
|
2
|
+
import { PryI18nService } from '../../i18n/i18n.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class SinceDatePipe implements PipeTransform {
|
|
5
5
|
private translateService;
|
|
6
6
|
private _now?;
|
|
7
7
|
constructor(translateService: PryI18nService);
|
|
8
8
|
transform(value: string, ...args: any[]): string;
|
|
9
9
|
getDayDiff(startDate: Date, endDate: Date): number;
|
|
10
10
|
useNow(date?: Date): this;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
12
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SinceDatePipe, never>;
|
|
12
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SinceDatePipe, "sinceDate", false>;
|
|
13
13
|
}
|
|
@@ -3,10 +3,8 @@ import { SafeUrl } from '@angular/platform-browser';
|
|
|
3
3
|
import { Store } from '@ngrx/store';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import { PryI18nService } from '../../i18n/i18n.service';
|
|
6
|
-
import { NamedQuery } from '../../store/data-source/data-source.model';
|
|
7
6
|
import { SymbolService } from '../../symbol/symbol.service';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare const UNKNOWN_DATASOURCE: (id: string) => NamedQuery;
|
|
10
8
|
export declare class TranslateIdPipe implements PipeTransform {
|
|
11
9
|
private store;
|
|
12
10
|
private translateService;
|
package/lib/core/public-api.d.ts
CHANGED
|
@@ -48,9 +48,11 @@ export * from './store/aggregation/base-aggregation.service';
|
|
|
48
48
|
export * from './store/aggregation/backend-aggregation.service';
|
|
49
49
|
export * from './store/aggregation/frontend-aggregation/frontend-aggregation.service';
|
|
50
50
|
export * from './components/nq-color-selector/nq-color-selector.component';
|
|
51
|
-
export * from './
|
|
52
|
-
export * from './
|
|
53
|
-
export * from './
|
|
51
|
+
export * from './pipes/translate-id/translate-id.pipe';
|
|
52
|
+
export * from './pipes/translate-item-to-symbol/translate-item-to-symbol.pipe';
|
|
53
|
+
export * from './pipes/get-secured-image/get-secured-image.pipe';
|
|
54
|
+
export * from './pipes/since-date/since-date.pipe';
|
|
55
|
+
export * from './pipes/since-date/since-date.module';
|
|
54
56
|
export * from './components/accordion/accordion.component';
|
|
55
57
|
export * from './components/accordion/accordion-item/accordion-item.component';
|
|
56
58
|
export * from './components/base-layout/base-layout.component';
|
|
@@ -126,3 +128,4 @@ export * from './components/about/pry-about.module';
|
|
|
126
128
|
export * from './components/about/about.component';
|
|
127
129
|
export * from './components/ellipsis.directive';
|
|
128
130
|
export * from './components/chips-selector/chips-selector.component';
|
|
131
|
+
export * from './components/chips-selector/chips-selector.module';
|
|
@@ -2,6 +2,7 @@ import { DatasetPreview } from '../../model/dataset.interface';
|
|
|
2
2
|
import { MonoClassSearchPayload } from '../../model/search-mono-class.model';
|
|
3
3
|
import { FullTextSearchPayload, MultiClassSearchPayload } from '../../model/search-multi-class.model';
|
|
4
4
|
import { Dataset, DatasetVersion, NamedQuery, PryVisibilityType } from './data-source.model';
|
|
5
|
+
import { Category } from '../category/category.interface';
|
|
5
6
|
export declare const DataSourceActions: {
|
|
6
7
|
load: import("@ngrx/store").ActionCreator<"[Datasource] load", () => import("@ngrx/store/src/models").TypedAction<"[Datasource] load">>;
|
|
7
8
|
namedQuery: {
|
|
@@ -191,5 +192,11 @@ export declare const DataSourceActions: {
|
|
|
191
192
|
}) => {
|
|
192
193
|
err: any;
|
|
193
194
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Delete datasetVersion failure">>;
|
|
195
|
+
getCategories: import("@ngrx/store").ActionCreator<"[Dataset] Get Categories", () => import("@ngrx/store/src/models").TypedAction<"[Dataset] Get Categories">>;
|
|
196
|
+
getCategoriesSuccess: import("@ngrx/store").ActionCreator<"[Dataset] Get Categories Success", (props: {
|
|
197
|
+
categories: Category[];
|
|
198
|
+
}) => {
|
|
199
|
+
categories: Category[];
|
|
200
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Get Categories Success">>;
|
|
194
201
|
};
|
|
195
202
|
};
|
|
@@ -85,6 +85,9 @@ export declare class DataSourceEffects {
|
|
|
85
85
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Get Dataset Versions by Dataset Id">) | ({
|
|
86
86
|
err: any;
|
|
87
87
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Delete datasetVersion failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
88
|
+
getCategories$: import("rxjs").Observable<{
|
|
89
|
+
categories: import("@provoly/dashboard").Category[];
|
|
90
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Get Categories Success">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
88
91
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataSourceEffects, never>;
|
|
89
92
|
static ɵprov: i0.ɵɵInjectableDeclaration<DataSourceEffects>;
|
|
90
93
|
}
|
|
@@ -2,6 +2,7 @@ import { MetadataValue } from '../../model/admin-api.model';
|
|
|
2
2
|
import { PryDatasetType } from '../../model/dataset.interface';
|
|
3
3
|
import { MonoClassSearchPayload } from '../../model/search-mono-class.model';
|
|
4
4
|
import { FullTextSearchPayload, MultiClassSearchPayload } from '../../model/search-multi-class.model';
|
|
5
|
+
import { Category } from '../category/category.interface';
|
|
5
6
|
export type DataSource = NamedQuery | Dataset;
|
|
6
7
|
export interface NamedQuery extends DescriptionQuery {
|
|
7
8
|
sourceType: 'namedQuery';
|
|
@@ -33,6 +34,8 @@ export interface Dataset extends DescriptionQuery {
|
|
|
33
34
|
type: PryDatasetType;
|
|
34
35
|
owner?: boolean;
|
|
35
36
|
groups?: string[];
|
|
37
|
+
slug: string;
|
|
38
|
+
categories?: Category[];
|
|
36
39
|
}
|
|
37
40
|
export interface DatasetVersion {
|
|
38
41
|
id: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DatasetPreview } from '../../model/dataset.interface';
|
|
2
2
|
import { Dataset, DatasetVersion, NamedQuery } from './data-source.model';
|
|
3
|
+
import { Category } from '../category/category.interface';
|
|
3
4
|
export declare const dataSourceFeatureKey = "@pry/datasources";
|
|
4
5
|
export interface DataSourceState {
|
|
5
6
|
isLoading: boolean;
|
|
@@ -15,6 +16,7 @@ export interface DataSourceState {
|
|
|
15
16
|
datasetVersions: DatasetVersion[];
|
|
16
17
|
selectedDatasetVersion: DatasetVersion | null;
|
|
17
18
|
previews: DatasetPreview[];
|
|
19
|
+
categories: Category[];
|
|
18
20
|
}
|
|
19
21
|
export declare const initialDataSourceState: DataSourceState;
|
|
20
22
|
export declare const dataSourceReducer: import("@ngrx/store").ActionReducer<DataSourceState, import("@ngrx/store").Action>;
|
|
@@ -25,4 +25,5 @@ export declare const DataSourceSelectors: {
|
|
|
25
25
|
datasetVersions: MemoizedSelector<object, DatasetVersion[], (s1: DataSourceState) => DatasetVersion[]>;
|
|
26
26
|
matchingDatasetVersions: (datasetId: string) => MemoizedSelector<any, DatasetVersion[], import("@ngrx/store").DefaultProjectorFn<DatasetVersion[]>>;
|
|
27
27
|
datasetPreviews: MemoizedSelector<object, import("@provoly/dashboard").DatasetPreview[], (s1: DataSourceState) => import("@provoly/dashboard").DatasetPreview[]>;
|
|
28
|
+
categories: MemoizedSelector<object, import("@provoly/dashboard").Category[], (s1: DataSourceState) => import("@provoly/dashboard").Category[]>;
|
|
28
29
|
};
|
|
@@ -6,6 +6,7 @@ import { DatasetPreview } from '../../model/dataset.interface';
|
|
|
6
6
|
import { ConfigState } from '../config/config.reducer';
|
|
7
7
|
import { Dataset, DatasetVersion, NamedQuery } from './data-source.model';
|
|
8
8
|
import { DataSourceState } from './data-source.reducer';
|
|
9
|
+
import { Category } from '../category/category.interface';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export interface ResponseRequest {
|
|
11
12
|
data: {
|
|
@@ -31,6 +32,7 @@ export declare class DataSourceService {
|
|
|
31
32
|
getLastActiveDatasetVersion(datasetId: string): Observable<DatasetVersion>;
|
|
32
33
|
updateDatasetVersionInfo(version: Partial<DatasetVersion>): Observable<DatasetVersion>;
|
|
33
34
|
deleteDatasetVersion(version: DatasetVersion): Observable<void>;
|
|
35
|
+
getCategories(): Observable<Category[]>;
|
|
34
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataSourceService, never>;
|
|
35
37
|
static ɵprov: i0.ɵɵInjectableDeclaration<DataSourceService>;
|
|
36
38
|
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { MonoClassSearchPayload } from '../../model/search-mono-class.model';
|
|
2
2
|
import { FullTextSearchPayload, MultiClassSearchPayload } from '../../model/search-multi-class.model';
|
|
3
3
|
import { NamedQueryTypes } from './named-query-types.model';
|
|
4
|
-
import { Dataset, NamedQuery } from './data-source.model';
|
|
4
|
+
import { Dataset, DataSource, NamedQuery } from './data-source.model';
|
|
5
|
+
export declare const UNKNOWN_DATASOURCE: (id: string) => NamedQuery;
|
|
5
6
|
export declare class DatasourceUtils {
|
|
6
7
|
static getTypeFromPayload(payload: MonoClassSearchPayload | MultiClassSearchPayload | FullTextSearchPayload | undefined): NamedQueryTypes | undefined;
|
|
7
8
|
static isGeo(ds: NamedQuery | Dataset): boolean;
|
|
9
|
+
static getAllDatasourcesWithUnknowns(allDatasources: DataSource[], widgetDatasources: string[] | string): DataSource[];
|
|
10
|
+
static getDatasourceArray(datasource?: string | string[]): string[];
|
|
8
11
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AfterContentInit, EventEmitter } from '@angular/core';
|
|
2
|
+
import { DataSource, DatasetVersion } from '../../../../../core/store/data-source/data-source.model';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { Store } from '@ngrx/store';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PryDatasourceCardComponent implements AfterContentInit {
|
|
7
|
+
private store;
|
|
8
|
+
datasource: DataSource;
|
|
9
|
+
showFooter: boolean;
|
|
10
|
+
isSelectable: boolean;
|
|
11
|
+
isSelected: boolean;
|
|
12
|
+
clicked: EventEmitter<{
|
|
13
|
+
datasource: DataSource;
|
|
14
|
+
isSelected: boolean;
|
|
15
|
+
}>;
|
|
16
|
+
datasetVersions$: Observable<DatasetVersion[]>;
|
|
17
|
+
activeVersion$: Observable<string | undefined>;
|
|
18
|
+
constructor(store: Store);
|
|
19
|
+
ngAfterContentInit(): void;
|
|
20
|
+
truncateDescription(description: string | undefined, maxLength: number): string;
|
|
21
|
+
onClick(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PryDatasourceCardComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PryDatasourceCardComponent, "pry-datasource-card", never, { "datasource": { "alias": "datasource"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "isSelectable": { "alias": "isSelectable"; "required": false; }; "isSelected": { "alias": "isSelected"; "required": false; }; }, { "clicked": "clicked"; }, never, never, false, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
2
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
3
|
+
import { Store } from '@ngrx/store';
|
|
4
|
+
import { Dataset, DataSource } from '../../../../../core/store/data-source/data-source.model';
|
|
5
|
+
import { Category } from '../../../../../core/store/category/category.interface';
|
|
6
|
+
import { SubscriptionnerDirective } from '../../../subscriptionner.directive';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class PryDatasourceListComponent extends SubscriptionnerDirective implements OnInit {
|
|
9
|
+
protected store: Store<any>;
|
|
10
|
+
datasources$: Observable<DataSource[]>;
|
|
11
|
+
datasets$: Observable<Dataset[]>;
|
|
12
|
+
search$: BehaviorSubject<string>;
|
|
13
|
+
categories$: Observable<Category[]>;
|
|
14
|
+
selectedCategories: never[];
|
|
15
|
+
selectedCategories$: BehaviorSubject<Category[]>;
|
|
16
|
+
filteredDatasources$: Observable<(DataSource & {
|
|
17
|
+
isSelected?: boolean;
|
|
18
|
+
})[]>;
|
|
19
|
+
selectedDatasources$: BehaviorSubject<string[]>;
|
|
20
|
+
_mode$: BehaviorSubject<string>;
|
|
21
|
+
set mode(mode: 'list' | 'selector');
|
|
22
|
+
set selectedDatasources(datasourceIds: string[]);
|
|
23
|
+
consultedDataset: EventEmitter<Dataset>;
|
|
24
|
+
datasourceSelected: EventEmitter<string[]>;
|
|
25
|
+
constructor(store: Store<any>);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
search(datasets: DataSource[], search: string, categories: Category[]): DataSource[];
|
|
28
|
+
doesDatasourceMatchCategoryFilter(datasource: DataSource, selectedCategories: Category[]): boolean;
|
|
29
|
+
onDatasourceClick({ isSelected, datasource }: {
|
|
30
|
+
isSelected: boolean;
|
|
31
|
+
datasource: DataSource;
|
|
32
|
+
}): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PryDatasourceListComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PryDatasourceListComponent, "pry-datasource-list", never, { "mode": { "alias": "mode"; "required": false; }; "selectedDatasources": { "alias": "selectedDatasources"; "required": false; }; }, { "consultedDataset": "consultedDataset"; "datasourceSelected": "datasourceSelected"; }, never, never, false, never>;
|
|
35
|
+
}
|
package/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.d.ts
CHANGED
|
@@ -1,20 +1,28 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { Store } from '@ngrx/store';
|
|
3
3
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
|
-
import {
|
|
5
|
-
import { ChipsSelectorComponent } from '../../../../core/components/chips-selector/chips-selector.component';
|
|
4
|
+
import { DataSource } from '../../../../core/store/data-source/data-source.model';
|
|
6
5
|
import { WidgetManifest } from '../../../../core/model/manifest.interface';
|
|
7
6
|
import { SubscriptionnerDirective } from '../../subscriptionner.directive';
|
|
8
|
-
import { PryI18nService } from '../../../../core/i18n/i18n.service';
|
|
9
7
|
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class DatasourceSelectorComponent extends
|
|
8
|
+
export declare class DatasourceSelectorComponent extends SubscriptionnerDirective {
|
|
11
9
|
private store;
|
|
12
|
-
|
|
13
|
-
usedDatasources$: Observable<NamedQuery[]>;
|
|
14
|
-
set usedItems(items: any[]);
|
|
15
|
-
set manifest(manifest: WidgetManifest | null);
|
|
10
|
+
datasources$: Observable<DataSource[]>;
|
|
16
11
|
manifest$: BehaviorSubject<WidgetManifest | null>;
|
|
17
|
-
|
|
12
|
+
selectedDatasources$: Observable<DataSource[]>;
|
|
13
|
+
selectedIds$: BehaviorSubject<string[]>;
|
|
14
|
+
showButtons: boolean;
|
|
15
|
+
showTitle: boolean;
|
|
16
|
+
set manifest(manifest: WidgetManifest | null);
|
|
17
|
+
previousTab: EventEmitter<any>;
|
|
18
|
+
nextTab: EventEmitter<any>;
|
|
19
|
+
cancel: EventEmitter<any>;
|
|
20
|
+
validated: EventEmitter<any>;
|
|
21
|
+
itemsChanged: EventEmitter<string[]>;
|
|
22
|
+
constructor(store: Store);
|
|
23
|
+
isGeo(item: DataSource): boolean;
|
|
24
|
+
toggleSelection(id: string): void;
|
|
25
|
+
updateDatasourceList(ids: string[]): void;
|
|
18
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatasourceSelectorComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DatasourceSelectorComponent, "pry-datasource-selector", never, { "
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatasourceSelectorComponent, "pry-datasource-selector", never, { "showButtons": { "alias": "showButtons"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "manifest": { "alias": "manifest"; "required": false; }; }, { "previousTab": "previousTab"; "nextTab": "nextTab"; "cancel": "cancel"; "validated": "validated"; "itemsChanged": "itemsChanged"; }, never, never, false, never>;
|
|
20
28
|
}
|
|
@@ -99,7 +99,7 @@ export declare class PryWidgetHeaderComponent extends SubscriptionnerDirective i
|
|
|
99
99
|
focusValidation(): void;
|
|
100
100
|
focusInputCatalog(): void;
|
|
101
101
|
disableValidation(): void;
|
|
102
|
-
datasourcesChanged($event:
|
|
102
|
+
datasourcesChanged($event: string[]): void;
|
|
103
103
|
isGeo(ds: NamedQuery | Dataset): boolean;
|
|
104
104
|
placesManifest(): void;
|
|
105
105
|
ngOnDestroy(): void;
|
|
@@ -2,6 +2,8 @@ export * from './base-widget.component';
|
|
|
2
2
|
export * from './data-widget.component';
|
|
3
3
|
export * from './header/widget-header.component';
|
|
4
4
|
export * from './datasource-selector/datasource-selector.component';
|
|
5
|
+
export * from './datasource-selector/datasource-card/datasource-card.component';
|
|
6
|
+
export * from './datasource-selector/datasource-list/datasource-list.component';
|
|
5
7
|
export * from './header/resultset-size.pipe';
|
|
6
8
|
export * from './widget-instanciator/widget-factory.service';
|
|
7
9
|
export * from './widget-instanciator/widget-instanciator.component';
|
|
@@ -24,20 +24,23 @@ import * as i16 from "./filter/base-filter.component";
|
|
|
24
24
|
import * as i17 from "./filter/components/filter-instanciator/filter-instanciator.component";
|
|
25
25
|
import * as i18 from "./filter/components/filter-group/filter-group.component";
|
|
26
26
|
import * as i19 from "./components/widgets/datasource-selector/datasource-selector.component";
|
|
27
|
-
import * as i20 from "./
|
|
28
|
-
import * as i21 from "
|
|
29
|
-
import * as i22 from "
|
|
30
|
-
import * as i23 from "
|
|
31
|
-
import * as i24 from "
|
|
32
|
-
import * as i25 from "
|
|
33
|
-
import * as i26 from "../core/
|
|
34
|
-
import * as i27 from "@
|
|
35
|
-
import * as i28 from "../core/
|
|
36
|
-
import * as i29 from "
|
|
37
|
-
import * as i30 from "
|
|
38
|
-
import * as i31 from "
|
|
39
|
-
import * as i32 from "
|
|
40
|
-
import * as i33 from "
|
|
27
|
+
import * as i20 from "./components/widgets/datasource-selector/datasource-card/datasource-card.component";
|
|
28
|
+
import * as i21 from "./components/widgets/datasource-selector/datasource-list/datasource-list.component";
|
|
29
|
+
import * as i22 from "./filter/style/css.component";
|
|
30
|
+
import * as i23 from "@angular/common";
|
|
31
|
+
import * as i24 from "@angular/forms";
|
|
32
|
+
import * as i25 from "../core/components/select/select.module";
|
|
33
|
+
import * as i26 from "../core/components/icon/icon.module";
|
|
34
|
+
import * as i27 from "@angular/cdk/overlay";
|
|
35
|
+
import * as i28 from "../core/core.module";
|
|
36
|
+
import * as i29 from "@provoly/dashboard/components/checkbox";
|
|
37
|
+
import * as i30 from "../core/components/toggle/toggle.module";
|
|
38
|
+
import * as i31 from "../core/components/overlay/overlay.module";
|
|
39
|
+
import * as i32 from "@ngrx/store";
|
|
40
|
+
import * as i33 from "@ngrx/effects";
|
|
41
|
+
import * as i34 from "../core/components/date-picker/date-picker.module";
|
|
42
|
+
import * as i35 from "../core/i18n/i18n.module";
|
|
43
|
+
import * as i36 from "../core/pipes/since-date/since-date.module";
|
|
41
44
|
export declare class PryDashboardModule {
|
|
42
45
|
static forRoot(widgetReference: {
|
|
43
46
|
[key: string]: WidgetDefinition;
|
|
@@ -54,6 +57,6 @@ export declare class PryDashboardModule {
|
|
|
54
57
|
}, additionalGridLayouts?: AutomaticGridLayoutDefinition[]): ModuleWithProviders<PryDashboardModule>;
|
|
55
58
|
constructor(store: Store);
|
|
56
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<PryDashboardModule, never>;
|
|
57
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PryDashboardModule, [typeof i1.DashboardComponent, typeof i2.WidgetInstanciatorComponent, typeof i3.WidgetPlaceholderComponent, typeof i4.SettingsComponent, typeof i5.ManifestsComponent, typeof i6.MetadataComponent, typeof i7.ContextMenuComponent, typeof i8.DataWidgetComponent, typeof i9.BaseWidgetComponent, typeof i10.PryWidgetHeaderComponent, typeof i11.PryObjectEditionComponent, typeof i12.VizualizeRawComponent, typeof i13.ResultSetSizePipe, typeof i14.DefaultTooltipComponent, typeof i15.BaseTooltipComponent, typeof i16.BaseFilterComponent, typeof i17.FilterInstanciatorComponent, typeof i18.FilterGroupComponent, typeof i19.DatasourceSelectorComponent, typeof i20.PryFilterGroupCssComponent], [typeof
|
|
60
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PryDashboardModule, [typeof i1.DashboardComponent, typeof i2.WidgetInstanciatorComponent, typeof i3.WidgetPlaceholderComponent, typeof i4.SettingsComponent, typeof i5.ManifestsComponent, typeof i6.MetadataComponent, typeof i7.ContextMenuComponent, typeof i8.DataWidgetComponent, typeof i9.BaseWidgetComponent, typeof i10.PryWidgetHeaderComponent, typeof i11.PryObjectEditionComponent, typeof i12.VizualizeRawComponent, typeof i13.ResultSetSizePipe, typeof i14.DefaultTooltipComponent, typeof i15.BaseTooltipComponent, typeof i16.BaseFilterComponent, typeof i17.FilterInstanciatorComponent, typeof i18.FilterGroupComponent, typeof i19.DatasourceSelectorComponent, typeof i20.PryDatasourceCardComponent, typeof i21.PryDatasourceListComponent, typeof i22.PryFilterGroupCssComponent], [typeof i23.CommonModule, typeof i24.FormsModule, typeof i25.PrySelectModule, typeof i26.PryIconModule, typeof i27.OverlayModule, typeof i28.PryCoreModule, typeof i29.PryCheckboxModule, typeof i30.PryToggleModule, typeof i31.PryOverlayModule, typeof i32.StoreFeatureModule, typeof i33.EffectsFeatureModule, typeof i34.PryDatePickerModule, typeof i35.PryI18nModule, typeof i36.PrySinceDateModule], [typeof i1.DashboardComponent, typeof i2.WidgetInstanciatorComponent, typeof i3.WidgetPlaceholderComponent, typeof i4.SettingsComponent, typeof i5.ManifestsComponent, typeof i6.MetadataComponent, typeof i7.ContextMenuComponent, typeof i8.DataWidgetComponent, typeof i9.BaseWidgetComponent, typeof i10.PryWidgetHeaderComponent, typeof i11.PryObjectEditionComponent, typeof i12.VizualizeRawComponent, typeof i13.ResultSetSizePipe, typeof i14.DefaultTooltipComponent, typeof i15.BaseTooltipComponent, typeof i16.BaseFilterComponent, typeof i17.FilterInstanciatorComponent, typeof i18.FilterGroupComponent, typeof i19.DatasourceSelectorComponent, typeof i20.PryDatasourceCardComponent, typeof i21.PryDatasourceListComponent]>;
|
|
58
61
|
static ɵinj: i0.ɵɵInjectorDeclaration<PryDashboardModule>;
|
|
59
62
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.10",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "16.x || 17.x",
|
|
@@ -84,18 +84,18 @@
|
|
|
84
84
|
"esm": "./esm2022/admin/provoly-dashboard-admin.mjs",
|
|
85
85
|
"default": "./fesm2022/provoly-dashboard-admin.mjs"
|
|
86
86
|
},
|
|
87
|
-
"./dataset": {
|
|
88
|
-
"types": "./dataset/index.d.ts",
|
|
89
|
-
"esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
90
|
-
"esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
91
|
-
"default": "./fesm2022/provoly-dashboard-dataset.mjs"
|
|
92
|
-
},
|
|
93
87
|
"./import": {
|
|
94
88
|
"types": "./import/index.d.ts",
|
|
95
89
|
"esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
96
90
|
"esm": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
97
91
|
"default": "./fesm2022/provoly-dashboard-import.mjs"
|
|
98
92
|
},
|
|
93
|
+
"./dataset": {
|
|
94
|
+
"types": "./dataset/index.d.ts",
|
|
95
|
+
"esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
96
|
+
"esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
97
|
+
"default": "./fesm2022/provoly-dashboard-dataset.mjs"
|
|
98
|
+
},
|
|
99
99
|
"./notification": {
|
|
100
100
|
"types": "./notification/index.d.ts",
|
|
101
101
|
"esm2022": "./esm2022/notification/provoly-dashboard-notification.mjs",
|
|
@@ -186,12 +186,6 @@
|
|
|
186
186
|
"esm": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
|
|
187
187
|
"default": "./fesm2022/provoly-dashboard-components-scheme-picker.mjs"
|
|
188
188
|
},
|
|
189
|
-
"./components/sinceDate": {
|
|
190
|
-
"types": "./components/sinceDate/index.d.ts",
|
|
191
|
-
"esm2022": "./esm2022/components/sinceDate/provoly-dashboard-components-sinceDate.mjs",
|
|
192
|
-
"esm": "./esm2022/components/sinceDate/provoly-dashboard-components-sinceDate.mjs",
|
|
193
|
-
"default": "./fesm2022/provoly-dashboard-components-sinceDate.mjs"
|
|
194
|
-
},
|
|
195
189
|
"./components/stepper": {
|
|
196
190
|
"types": "./components/stepper/index.d.ts",
|
|
197
191
|
"esm2022": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
|
|
@@ -234,18 +228,18 @@
|
|
|
234
228
|
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
235
229
|
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
236
230
|
},
|
|
237
|
-
"./pipeline-components/input-datasource": {
|
|
238
|
-
"types": "./pipeline-components/input-datasource/index.d.ts",
|
|
239
|
-
"esm2022": "./esm2022/pipeline-components/input-datasource/provoly-dashboard-pipeline-components-input-datasource.mjs",
|
|
240
|
-
"esm": "./esm2022/pipeline-components/input-datasource/provoly-dashboard-pipeline-components-input-datasource.mjs",
|
|
241
|
-
"default": "./fesm2022/provoly-dashboard-pipeline-components-input-datasource.mjs"
|
|
242
|
-
},
|
|
243
231
|
"./pipeline-components/filter": {
|
|
244
232
|
"types": "./pipeline-components/filter/index.d.ts",
|
|
245
233
|
"esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|
|
246
234
|
"esm": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|
|
247
235
|
"default": "./fesm2022/provoly-dashboard-pipeline-components-filter.mjs"
|
|
248
236
|
},
|
|
237
|
+
"./pipeline-components/input-datasource": {
|
|
238
|
+
"types": "./pipeline-components/input-datasource/index.d.ts",
|
|
239
|
+
"esm2022": "./esm2022/pipeline-components/input-datasource/provoly-dashboard-pipeline-components-input-datasource.mjs",
|
|
240
|
+
"esm": "./esm2022/pipeline-components/input-datasource/provoly-dashboard-pipeline-components-input-datasource.mjs",
|
|
241
|
+
"default": "./fesm2022/provoly-dashboard-pipeline-components-input-datasource.mjs"
|
|
242
|
+
},
|
|
249
243
|
"./pipeline-components/noop": {
|
|
250
244
|
"types": "./pipeline-components/noop/index.d.ts",
|
|
251
245
|
"esm2022": "./esm2022/pipeline-components/noop/provoly-dashboard-pipeline-components-noop.mjs",
|