@provoly/dashboard 0.11.0
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/README.md +5 -0
- package/admin/admin-routing.module.d.ts +9 -0
- package/admin/admin.module.d.ts +87 -0
- package/admin/components/admin-abac-rules/admin-abac-rules-edit/admin-abac-rules-edit.component.d.ts +14 -0
- package/admin/components/admin-abac-rules/admin-abac-rules-form/admin-abac-rules-form.component.d.ts +29 -0
- package/admin/components/admin-abac-rules/admin-abac-rules-new/admin-abac-rules-new.component.d.ts +12 -0
- package/admin/components/admin-abac-rules/admin-abac-rules-view/admin-abac-rules-view.component.d.ts +13 -0
- package/admin/components/admin-abac-rules/admin-abac-rules.component.d.ts +18 -0
- package/admin/components/admin-abac-rules/components/attribute-condition/attribute-condition.component.d.ts +26 -0
- package/admin/components/admin-abac-rules/components/composed-condition/composed-condition.component.d.ts +29 -0
- package/admin/components/admin-abac-rules/components/metadata-condition/metadata-condition.component.d.ts +28 -0
- package/admin/components/admin-abac-rules/components/select-attribute/select-attribute.component.d.ts +17 -0
- package/admin/components/admin-abac-rules/components/select-metadata/select-metadata.component.d.ts +14 -0
- package/admin/components/admin-abac-rules/store/abac-rules.actions.d.ts +147 -0
- package/admin/components/admin-abac-rules/store/abac-rules.effects.d.ts +67 -0
- package/admin/components/admin-abac-rules/store/abac-rules.model.d.ts +44 -0
- package/admin/components/admin-abac-rules/store/abac-rules.reducer.d.ts +10 -0
- package/admin/components/admin-abac-rules/store/abac-rules.selectors.d.ts +14 -0
- package/admin/components/admin-abac-rules/store/abac-rules.service.d.ts +21 -0
- package/admin/components/admin-classes/admin-classes-customize/admin-classes-customize.component.d.ts +32 -0
- package/admin/components/admin-classes/admin-classes-customize/symbol/admin-classes-customize-symbol.component.d.ts +46 -0
- package/admin/components/admin-classes/admin-classes-customize/tooltip/admin-classes-customize-tooltip.component.d.ts +41 -0
- package/admin/components/admin-classes/admin-classes-edit/admin-classes-edit.component.d.ts +16 -0
- package/admin/components/admin-classes/admin-classes-form/admin-classes-form.component.d.ts +26 -0
- package/admin/components/admin-classes/admin-classes-new/admin-classes-new.component.d.ts +5 -0
- package/admin/components/admin-classes/admin-classes-select/admin-classes-select.component.d.ts +24 -0
- package/admin/components/admin-classes/admin-classes-view/admin-attributes-edit/admin-attributes-edit.component.d.ts +17 -0
- package/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.d.ts +43 -0
- package/admin/components/admin-classes/admin-classes-view/admin-attributes-new/admin-attributes-new.component.d.ts +17 -0
- package/admin/components/admin-classes/admin-classes-view/admin-attributes-select/admin-attributes-select.component.d.ts +27 -0
- package/admin/components/admin-classes/admin-classes-view/admin-classes-view.component.d.ts +44 -0
- package/admin/components/admin-classes/admin-classes.component.d.ts +25 -0
- package/admin/components/admin-classes/store/admin-class.actions.d.ts +143 -0
- package/admin/components/admin-classes/store/admin-class.effects.d.ts +81 -0
- package/admin/components/admin-classes/store/admin-class.reducer.d.ts +11 -0
- package/admin/components/admin-classes/store/admin-class.selectors.d.ts +12 -0
- package/admin/components/admin-dataset/admin-dataset.component.d.ts +32 -0
- package/admin/components/admin-dataset/admin-edit-dataset/admin-edit-dataset.component.d.ts +15 -0
- package/admin/components/admin-dataset/admin-new-dataset/admin-new-dataset.component.d.ts +5 -0
- package/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.d.ts +36 -0
- package/admin/components/admin-dataset/shared/admin-form-dataset/admin-form-dataset.component.d.ts +34 -0
- package/admin/components/admin-dataset/store/admin-dataset.actions.d.ts +59 -0
- package/admin/components/admin-dataset/store/admin-dataset.effects.d.ts +30 -0
- package/admin/components/admin-dataset/store/admin-dataset.reducer.d.ts +6 -0
- package/admin/components/admin-dataset/store/admin-dataset.selector.d.ts +5 -0
- package/admin/components/admin-environment/admin-environment-form/admin-environment-form.component.d.ts +35 -0
- package/admin/components/admin-environment/admin-environment-new/admin-environment-new.component.d.ts +5 -0
- package/admin/components/admin-environment/admin-environment-select/admin-environment-select.component.d.ts +24 -0
- package/admin/components/admin-environment/admin-environment-update/admin-environment-update.component.d.ts +15 -0
- package/admin/components/admin-environment/admin-environment.component.d.ts +20 -0
- package/admin/components/admin-environment/store/environment.actions.d.ts +82 -0
- package/admin/components/admin-environment/store/environment.effects.d.ts +44 -0
- package/admin/components/admin-environment/store/environment.reducer.d.ts +9 -0
- package/admin/components/admin-environment/store/environment.selectors.d.ts +8 -0
- package/admin/components/admin-fields/admin-fields-edit/admin-fields-edit.component.d.ts +15 -0
- package/admin/components/admin-fields/admin-fields-form/admin-fields-form.component.d.ts +30 -0
- package/admin/components/admin-fields/admin-fields-new/admin-fields-new.component.d.ts +5 -0
- package/admin/components/admin-fields/admin-fields-select/admin-fields-select.component.d.ts +28 -0
- package/admin/components/admin-fields/admin-fields.component.d.ts +19 -0
- package/admin/components/admin-fields/store/admin-fields.model.d.ts +4 -0
- package/admin/components/admin-fields/store/fields.actions.d.ts +47 -0
- package/admin/components/admin-fields/store/fields.effects.d.ts +36 -0
- package/admin/components/admin-fields/store/fields.reducer.d.ts +8 -0
- package/admin/components/admin-fields/store/fields.selectors.d.ts +7 -0
- package/admin/components/admin-layout/admin-layout.component.d.ts +24 -0
- package/admin/components/admin-links/admin-links-new/admin-links-new.component.d.ts +33 -0
- package/admin/components/admin-links/admin-links.component.d.ts +19 -0
- package/admin/components/admin-links/store/links.actions.d.ts +31 -0
- package/admin/components/admin-links/store/links.effects.d.ts +28 -0
- package/admin/components/admin-links/store/links.reducer.d.ts +8 -0
- package/admin/components/admin-links/store/links.selectors.d.ts +5 -0
- package/admin/components/admin-menu/admin-menu.component.d.ts +14 -0
- package/admin/components/admin-metadata/admin-edit-metadata/admin-edit-metadata.component.d.ts +16 -0
- package/admin/components/admin-metadata/admin-metadata.component.d.ts +24 -0
- package/admin/components/admin-metadata/admin-new-metadata/admin-new-metadata.component.d.ts +10 -0
- package/admin/components/admin-metadata/admin-select-metadata/admin-select-metadata.component.d.ts +23 -0
- package/admin/components/admin-metadata/shared/form-metadata/form-metadata.component.d.ts +36 -0
- package/admin/components/admin-metadata/shared/list-metadata/list-metadata.module.d.ts +11 -0
- package/admin/components/admin-metadata/shared/list-metadata/pry-list-metadata.component.d.ts +40 -0
- package/admin/components/admin-metadata/store/metadata.action.d.ts +56 -0
- package/admin/components/admin-metadata/store/metadata.effects.d.ts +36 -0
- package/admin/components/admin-metadata/store/metadata.reducer.d.ts +13 -0
- package/admin/components/admin-metadata/store/metadata.selector.d.ts +10 -0
- package/admin/components/admin-metadata-rules/admin-edit-metadata-rules/admin-edit-metadata-rules.component.d.ts +12 -0
- package/admin/components/admin-metadata-rules/admin-metadata-rules.component.d.ts +35 -0
- package/admin/components/admin-metadata-rules/admin-new-metadata-rules/admin-new-metadata-rules.component.d.ts +5 -0
- package/admin/components/admin-metadata-rules/admin-select-metadata-rules/admin-select-metadata-rules.component.d.ts +23 -0
- package/admin/components/admin-metadata-rules/shared/admin-form-metadata-rules/admin-form-metadata-rules.component.d.ts +41 -0
- package/admin/components/admin-metadata-rules/store/metadata-rules.actions.d.ts +49 -0
- package/admin/components/admin-metadata-rules/store/metadata-rules.effects.d.ts +39 -0
- package/admin/components/admin-metadata-rules/store/metadata-rules.reducer.d.ts +11 -0
- package/admin/components/admin-metadata-rules/store/metadata-rules.selectors.d.ts +7 -0
- package/admin/components/admin-metadata-user/admin-metadata-user.component.d.ts +25 -0
- package/admin/components/admin-metadata-user/admin-user-edit-metadata/admin-user-edit-metadata.component.d.ts +17 -0
- package/admin/components/admin-metadata-user/admin-user-new-metadata/admin-user-new-metadata.component.d.ts +10 -0
- package/admin/components/admin-metadata-user/admin-user-select-metadata/admin-user-select-metadata.component.d.ts +23 -0
- package/admin/components/admin-metadata-user/store/admin-metadata-user.action.d.ts +84 -0
- package/admin/components/admin-metadata-user/store/admin-metadata-user.effects.d.ts +48 -0
- package/admin/components/admin-metadata-user/store/admin-metadata-user.reducer.d.ts +11 -0
- package/admin/components/admin-metadata-user/store/admin-metadata-user.selector.d.ts +14 -0
- package/admin/components/admin-predicates/admin-predicates-form/admin-predicates-form.component.d.ts +34 -0
- package/admin/components/admin-predicates/admin-predicates-new/admin-predicates-new.component.d.ts +5 -0
- package/admin/components/admin-predicates/admin-predicates-select/admin-predicates-select.component.d.ts +22 -0
- package/admin/components/admin-predicates/admin-predicates-update/admin-predicates-update.component.d.ts +16 -0
- package/admin/components/admin-predicates/admin-predicates.component.d.ts +19 -0
- package/admin/components/admin-predicates/store/predicates.actions.d.ts +46 -0
- package/admin/components/admin-predicates/store/predicates.effects.d.ts +33 -0
- package/admin/components/admin-predicates/store/predicates.reducer.d.ts +9 -0
- package/admin/components/admin-predicates/store/predicates.selectors.d.ts +8 -0
- package/admin/components/admin-relation-types/admin-relation-types-modal/admin-relation-types-modal.component.d.ts +32 -0
- package/admin/components/admin-relation-types/admin-relation-types-select/admin-relation-types-select.component.d.ts +19 -0
- package/admin/components/admin-relation-types/admin-relation-types.component.d.ts +15 -0
- package/admin/components/admin-title/admin-title.component.d.ts +15 -0
- package/admin/components/admin-user/admin-user-select/admin-user-select.component.d.ts +35 -0
- package/admin/components/admin-user/admin-user.component.d.ts +18 -0
- package/admin/components/admin-user/store/admin-user.action.d.ts +76 -0
- package/admin/components/admin-user/store/admin-user.effects.d.ts +43 -0
- package/admin/components/admin-user/store/admin-user.reducer.d.ts +10 -0
- package/admin/components/admin-user/store/admin-user.selector.d.ts +8 -0
- package/admin/components/admin.component.d.ts +17 -0
- package/admin/i18n/en.translations.d.ts +327 -0
- package/admin/i18n/fr.translations.d.ts +328 -0
- package/admin/index.d.ts +5 -0
- package/admin/public-api.d.ts +1 -0
- package/admin/store/admin.actions.d.ts +41 -0
- package/admin/store/admin.effects.d.ts +34 -0
- package/admin/store/admin.reducer.d.ts +13 -0
- package/admin/store/admin.selectors.d.ts +13 -0
- package/admin/store/admin.service.d.ts +45 -0
- package/assets/backgrounds/chart.svg +684 -0
- package/assets/backgrounds/detail.svg +27 -0
- package/assets/backgrounds/graph.svg +1775 -0
- package/assets/backgrounds/iframe.svg +799 -0
- package/assets/backgrounds/img_processus.png +0 -0
- package/assets/backgrounds/map.svg +154 -0
- package/assets/backgrounds/placeholder.png +0 -0
- package/assets/backgrounds/table.svg +48 -0
- package/assets/backgrounds/template.svg +26 -0
- package/assets/backgrounds/tile.svg +26 -0
- package/assets/fonts/ubuntu-latin-bold.woff2 +0 -0
- package/assets/fonts/ubuntu-latin-medium.woff2 +0 -0
- package/assets/fonts/ubuntu-latin-regular.woff2 +0 -0
- package/assets/svgs/add.svg +4 -0
- package/assets/svgs/add_column.svg +5 -0
- package/assets/svgs/admin-fill.svg +5 -0
- package/assets/svgs/admin.svg +8 -0
- package/assets/svgs/ads_click.svg +5 -0
- package/assets/svgs/apps.svg +5 -0
- package/assets/svgs/area_chart.svg +19 -0
- package/assets/svgs/arrow_back.svg +4 -0
- package/assets/svgs/arrow_right.svg +6 -0
- package/assets/svgs/auto_graph.svg +12 -0
- package/assets/svgs/bar_chart.svg +18 -0
- package/assets/svgs/bubble-chart-line.svg +18 -0
- package/assets/svgs/bulles.svg +5 -0
- package/assets/svgs/chart.svg +5 -0
- package/assets/svgs/chat-settings.svg +5 -0
- package/assets/svgs/check.svg +4 -0
- package/assets/svgs/checkbox-circle.svg +6 -0
- package/assets/svgs/chevron_bottom.svg +6 -0
- package/assets/svgs/chevron_bottom_rounded.svg +5 -0
- package/assets/svgs/chevron_left.svg +6 -0
- package/assets/svgs/chevron_right.svg +6 -0
- package/assets/svgs/chevron_top.svg +3 -0
- package/assets/svgs/chevron_top_rounded.svg +5 -0
- package/assets/svgs/click.svg +4 -0
- package/assets/svgs/close.svg +5 -0
- package/assets/svgs/control.svg +5 -0
- package/assets/svgs/control_point.svg +5 -0
- package/assets/svgs/danger.svg +5 -0
- package/assets/svgs/data.svg +5 -0
- package/assets/svgs/data_usage.svg +5 -0
- package/assets/svgs/dataset.svg +0 -0
- package/assets/svgs/default-restitution.svg +6 -0
- package/assets/svgs/default.svg +28 -0
- package/assets/svgs/delete.svg +5 -0
- package/assets/svgs/detail.svg +5 -0
- package/assets/svgs/donut_large.svg +14 -0
- package/assets/svgs/download.svg +4 -0
- package/assets/svgs/drag_indicator.svg +5 -0
- package/assets/svgs/edit.svg +5 -0
- package/assets/svgs/edit_off.svg +5 -0
- package/assets/svgs/epingle.svg +6 -0
- package/assets/svgs/event-fill.svg +5 -0
- package/assets/svgs/event.svg +5 -0
- package/assets/svgs/exposure_neg_1.svg +4 -0
- package/assets/svgs/exposure_plus_1.svg +4 -0
- package/assets/svgs/eye-arrow-down.svg +14 -0
- package/assets/svgs/eye-arrow-up.svg +14 -0
- package/assets/svgs/eye.svg +5 -0
- package/assets/svgs/file_download.svg +5 -0
- package/assets/svgs/file_upload.svg +5 -0
- package/assets/svgs/fleche_bas.svg +4 -0
- package/assets/svgs/fleche_haut.svg +4 -0
- package/assets/svgs/frequentation.svg +4 -0
- package/assets/svgs/fullscreen.svg +4 -0
- package/assets/svgs/globe.svg +5 -0
- package/assets/svgs/graph.svg +20 -0
- package/assets/svgs/grid_1_2_horizontal.svg +4 -0
- package/assets/svgs/grid_1_2_vertical.svg +4 -0
- package/assets/svgs/grid_1_3_horizontal.svg +5 -0
- package/assets/svgs/grid_1_3_vertical.svg +5 -0
- package/assets/svgs/grid_1_4.svg +6 -0
- package/assets/svgs/grid_2_gauche_1_droite.svg +5 -0
- package/assets/svgs/grid_composition_libre.svg +7 -0
- package/assets/svgs/grid_full.svg +3 -0
- package/assets/svgs/grid_view.svg +4 -0
- package/assets/svgs/heart-add-line.svg +5 -0
- package/assets/svgs/heart-fill.svg +5 -0
- package/assets/svgs/highlight_alt.svg +5 -0
- package/assets/svgs/history-line.svg +5 -0
- package/assets/svgs/home-fill.svg +5 -0
- package/assets/svgs/home-fill_old.svg +4 -0
- package/assets/svgs/home-line.svg +12 -0
- package/assets/svgs/home-line_old.svg +5 -0
- package/assets/svgs/home.svg +12 -0
- package/assets/svgs/iframe.svg +11 -0
- package/assets/svgs/image.svg +6 -0
- package/assets/svgs/info.svg +8 -0
- package/assets/svgs/information-point.svg +5 -0
- package/assets/svgs/lasso.svg +5 -0
- package/assets/svgs/launch.svg +5 -0
- package/assets/svgs/legend.svg +4 -0
- package/assets/svgs/library_add.svg +5 -0
- package/assets/svgs/links_line.svg +5 -0
- package/assets/svgs/map.svg +8 -0
- package/assets/svgs/marqueur.svg +5 -0
- package/assets/svgs/mode_clic.svg +5 -0
- package/assets/svgs/more_horiz.svg +5 -0
- package/assets/svgs/more_vertical.svg +5 -0
- package/assets/svgs/move.svg +5 -0
- package/assets/svgs/noise_aware.svg +12 -0
- package/assets/svgs/north_east.svg +6 -0
- package/assets/svgs/north_west.svg +6 -0
- package/assets/svgs/notification-4-line.svg +5 -0
- package/assets/svgs/notification.svg +5 -0
- package/assets/svgs/notifications.svg +5 -0
- package/assets/svgs/picture-in-picture.svg +7 -0
- package/assets/svgs/place.svg +5 -0
- package/assets/svgs/post_add.svg +8 -0
- package/assets/svgs/presentation-fill.svg +4 -0
- package/assets/svgs/presentation.svg +5 -0
- package/assets/svgs/private.svg +10 -0
- package/assets/svgs/pry_recherche.svg +81 -0
- package/assets/svgs/pry_recherche_pas_de_resultat.svg +81 -0
- package/assets/svgs/public.svg +16 -0
- package/assets/svgs/published_with_changes.svg +5 -0
- package/assets/svgs/question-line.svg +5 -0
- package/assets/svgs/radar_chart.svg +11 -0
- package/assets/svgs/rectangle.svg +5 -0
- package/assets/svgs/remove.svg +4 -0
- package/assets/svgs/renamed.svg +6 -0
- package/assets/svgs/reset.svg +4 -0
- package/assets/svgs/resize.svg +4 -0
- package/assets/svgs/restitution-fill.svg +11 -0
- package/assets/svgs/restitution.svg +15 -0
- package/assets/svgs/restricted.svg +18 -0
- package/assets/svgs/rotate-lock-line.svg +5 -0
- package/assets/svgs/save-fill.svg +4 -0
- package/assets/svgs/save-line.svg +5 -0
- package/assets/svgs/screenshot-fill.svg +5 -0
- package/assets/svgs/search-criteria.svg +5 -0
- package/assets/svgs/search-fill.svg +5 -0
- package/assets/svgs/search-line.svg +5 -0
- package/assets/svgs/search.svg +4 -0
- package/assets/svgs/settings_applications.svg +12 -0
- package/assets/svgs/share.svg +5 -0
- package/assets/svgs/share_location.svg +20 -0
- package/assets/svgs/shield-lock.svg +7 -0
- package/assets/svgs/show_chart.svg +12 -0
- package/assets/svgs/south_east.svg +6 -0
- package/assets/svgs/south_west.svg +6 -0
- package/assets/svgs/stack-fill.svg +5 -0
- package/assets/svgs/stack-line.svg +5 -0
- package/assets/svgs/stop.svg +5 -0
- package/assets/svgs/supervision.svg +13 -0
- package/assets/svgs/svg.svg +5 -0
- package/assets/svgs/synchro.svg +5 -0
- package/assets/svgs/table.svg +5 -0
- package/assets/svgs/table_chart.svg +18 -0
- package/assets/svgs/tags.svg +11 -0
- package/assets/svgs/tile.svg +12 -0
- package/assets/svgs/toc.svg +20 -0
- package/assets/svgs/transformation-fill.svg +21 -0
- package/assets/svgs/transformation.svg +20 -0
- package/assets/svgs/tune.svg +5 -0
- package/assets/svgs/unpublished.svg +5 -0
- package/assets/svgs/upload.svg +4 -0
- package/assets/svgs/user.svg +5 -0
- package/assets/svgs/warning-triangle.svg +5 -0
- package/assets/svgs/warning.svg +5 -0
- package/assets/svgs/zoom.svg +6 -0
- package/components/card/card.component.d.ts +69 -0
- package/components/card/card.module.d.ts +10 -0
- package/components/card/index.d.ts +5 -0
- package/components/card/public-api.d.ts +2 -0
- package/components/checkbox/checkbox.component.d.ts +20 -0
- package/components/checkbox/checkbox.module.d.ts +9 -0
- package/components/checkbox/index.d.ts +5 -0
- package/components/checkbox/public-api.d.ts +2 -0
- package/components/expand-panel/expand-panel.component.d.ts +14 -0
- package/components/expand-panel/expand-panel.module.d.ts +7 -0
- package/components/expand-panel/index.d.ts +5 -0
- package/components/expand-panel/public-api.d.ts +2 -0
- package/components/filter/filter.module.d.ts +7 -0
- package/components/filter/filter.pipe.d.ts +7 -0
- package/components/filter/index.d.ts +5 -0
- package/components/filter/public-api.d.ts +2 -0
- package/components/sinceDate/index.d.ts +5 -0
- package/components/sinceDate/public-api.d.ts +2 -0
- package/components/sinceDate/sinceDate.module.d.ts +7 -0
- package/components/sinceDate/sinceDate.pipe.d.ts +11 -0
- package/components/stepper/index.d.ts +5 -0
- package/components/stepper/public-api.d.ts +4 -0
- package/components/stepper/step/step.component.d.ts +15 -0
- package/components/stepper/step-title.directive.d.ts +8 -0
- package/components/stepper/stepper.component.d.ts +28 -0
- package/components/stepper/stepper.module.d.ts +10 -0
- package/dataset/components/dataset-card/dataset-card.component.d.ts +10 -0
- package/dataset/components/dataset-detail/dataset-detail.component.d.ts +29 -0
- package/dataset/components/dataset.component.d.ts +17 -0
- package/dataset/dataset.module.d.ts +17 -0
- package/dataset/i18n/en.translations.d.ts +33 -0
- package/dataset/i18n/fr.translations.d.ts +38 -0
- package/dataset/index.d.ts +5 -0
- package/dataset/public-api.d.ts +5 -0
- package/dataset/style/_o-pry-dataset-card.scss +29 -0
- package/dataset/style/_o-pry-dataset-detail.scss +55 -0
- package/dataset/style/_o-pry-dataset.scss +31 -0
- package/dataset/style/css.component.d.ts +5 -0
- package/esm2022/admin/admin-routing.module.mjs +567 -0
- package/esm2022/admin/admin.module.mjs +366 -0
- package/esm2022/admin/components/admin-abac-rules/admin-abac-rules-edit/admin-abac-rules-edit.component.mjs +50 -0
- package/esm2022/admin/components/admin-abac-rules/admin-abac-rules-form/admin-abac-rules-form.component.mjs +57 -0
- package/esm2022/admin/components/admin-abac-rules/admin-abac-rules-new/admin-abac-rules-new.component.mjs +34 -0
- package/esm2022/admin/components/admin-abac-rules/admin-abac-rules-view/admin-abac-rules-view.component.mjs +54 -0
- package/esm2022/admin/components/admin-abac-rules/admin-abac-rules.component.mjs +47 -0
- package/esm2022/admin/components/admin-abac-rules/components/attribute-condition/attribute-condition.component.mjs +81 -0
- package/esm2022/admin/components/admin-abac-rules/components/composed-condition/composed-condition.component.mjs +66 -0
- package/esm2022/admin/components/admin-abac-rules/components/metadata-condition/metadata-condition.component.mjs +69 -0
- package/esm2022/admin/components/admin-abac-rules/components/select-attribute/select-attribute.component.mjs +29 -0
- package/esm2022/admin/components/admin-abac-rules/components/select-metadata/select-metadata.component.mjs +24 -0
- package/esm2022/admin/components/admin-abac-rules/store/abac-rules.actions.mjs +28 -0
- package/esm2022/admin/components/admin-abac-rules/store/abac-rules.effects.mjs +78 -0
- package/esm2022/admin/components/admin-abac-rules/store/abac-rules.model.mjs +20 -0
- package/esm2022/admin/components/admin-abac-rules/store/abac-rules.reducer.mjs +110 -0
- package/esm2022/admin/components/admin-abac-rules/store/abac-rules.selectors.mjs +29 -0
- package/esm2022/admin/components/admin-abac-rules/store/abac-rules.service.mjs +161 -0
- package/esm2022/admin/components/admin-classes/admin-classes-customize/admin-classes-customize.component.mjs +92 -0
- package/esm2022/admin/components/admin-classes/admin-classes-customize/symbol/admin-classes-customize-symbol.component.mjs +146 -0
- package/esm2022/admin/components/admin-classes/admin-classes-customize/tooltip/admin-classes-customize-tooltip.component.mjs +127 -0
- package/esm2022/admin/components/admin-classes/admin-classes-edit/admin-classes-edit.component.mjs +26 -0
- package/esm2022/admin/components/admin-classes/admin-classes-form/admin-classes-form.component.mjs +91 -0
- package/esm2022/admin/components/admin-classes/admin-classes-new/admin-classes-new.component.mjs +13 -0
- package/esm2022/admin/components/admin-classes/admin-classes-select/admin-classes-select.component.mjs +107 -0
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-edit/admin-attributes-edit.component.mjs +30 -0
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.mjs +151 -0
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-new/admin-attributes-new.component.mjs +30 -0
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-select/admin-attributes-select.component.mjs +81 -0
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-classes-view.component.mjs +183 -0
- package/esm2022/admin/components/admin-classes/admin-classes.component.mjs +70 -0
- package/esm2022/admin/components/admin-classes/store/admin-class.actions.mjs +32 -0
- package/esm2022/admin/components/admin-classes/store/admin-class.effects.mjs +139 -0
- package/esm2022/admin/components/admin-classes/store/admin-class.reducer.mjs +43 -0
- package/esm2022/admin/components/admin-classes/store/admin-class.selectors.mjs +23 -0
- package/esm2022/admin/components/admin-dataset/admin-dataset.component.mjs +79 -0
- package/esm2022/admin/components/admin-dataset/admin-edit-dataset/admin-edit-dataset.component.mjs +26 -0
- package/esm2022/admin/components/admin-dataset/admin-new-dataset/admin-new-dataset.component.mjs +13 -0
- package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +155 -0
- package/esm2022/admin/components/admin-dataset/shared/admin-form-dataset/admin-form-dataset.component.mjs +98 -0
- package/esm2022/admin/components/admin-dataset/store/admin-dataset.actions.mjs +14 -0
- package/esm2022/admin/components/admin-dataset/store/admin-dataset.effects.mjs +34 -0
- package/esm2022/admin/components/admin-dataset/store/admin-dataset.reducer.mjs +11 -0
- package/esm2022/admin/components/admin-dataset/store/admin-dataset.selector.mjs +9 -0
- package/esm2022/admin/components/admin-environment/admin-environment-form/admin-environment-form.component.mjs +125 -0
- package/esm2022/admin/components/admin-environment/admin-environment-new/admin-environment-new.component.mjs +13 -0
- package/esm2022/admin/components/admin-environment/admin-environment-select/admin-environment-select.component.mjs +94 -0
- package/esm2022/admin/components/admin-environment/admin-environment-update/admin-environment-update.component.mjs +26 -0
- package/esm2022/admin/components/admin-environment/admin-environment.component.mjs +51 -0
- package/esm2022/admin/components/admin-environment/store/environment.actions.mjs +19 -0
- package/esm2022/admin/components/admin-environment/store/environment.effects.mjs +47 -0
- package/esm2022/admin/components/admin-environment/store/environment.reducer.mjs +39 -0
- package/esm2022/admin/components/admin-environment/store/environment.selectors.mjs +15 -0
- package/esm2022/admin/components/admin-fields/admin-fields-edit/admin-fields-edit.component.mjs +25 -0
- package/esm2022/admin/components/admin-fields/admin-fields-form/admin-fields-form.component.mjs +85 -0
- package/esm2022/admin/components/admin-fields/admin-fields-new/admin-fields-new.component.mjs +13 -0
- package/esm2022/admin/components/admin-fields/admin-fields-select/admin-fields-select.component.mjs +96 -0
- package/esm2022/admin/components/admin-fields/admin-fields.component.mjs +52 -0
- package/esm2022/admin/components/admin-fields/store/admin-fields.model.mjs +2 -0
- package/esm2022/admin/components/admin-fields/store/fields.actions.mjs +14 -0
- package/esm2022/admin/components/admin-fields/store/fields.effects.mjs +54 -0
- package/esm2022/admin/components/admin-fields/store/fields.reducer.mjs +14 -0
- package/esm2022/admin/components/admin-fields/store/fields.selectors.mjs +13 -0
- package/esm2022/admin/components/admin-layout/admin-layout.component.mjs +81 -0
- package/esm2022/admin/components/admin-links/admin-links-new/admin-links-new.component.mjs +92 -0
- package/esm2022/admin/components/admin-links/admin-links.component.mjs +60 -0
- package/esm2022/admin/components/admin-links/store/links.actions.mjs +10 -0
- package/esm2022/admin/components/admin-links/store/links.effects.mjs +27 -0
- package/esm2022/admin/components/admin-links/store/links.reducer.mjs +19 -0
- package/esm2022/admin/components/admin-links/store/links.selectors.mjs +9 -0
- package/esm2022/admin/components/admin-menu/admin-menu.component.mjs +38 -0
- package/esm2022/admin/components/admin-metadata/admin-edit-metadata/admin-edit-metadata.component.mjs +32 -0
- package/esm2022/admin/components/admin-metadata/admin-metadata.component.mjs +65 -0
- package/esm2022/admin/components/admin-metadata/admin-new-metadata/admin-new-metadata.component.mjs +21 -0
- package/esm2022/admin/components/admin-metadata/admin-select-metadata/admin-select-metadata.component.mjs +77 -0
- package/esm2022/admin/components/admin-metadata/shared/form-metadata/form-metadata.component.mjs +130 -0
- package/esm2022/admin/components/admin-metadata/shared/list-metadata/list-metadata.module.mjs +21 -0
- package/esm2022/admin/components/admin-metadata/shared/list-metadata/pry-list-metadata.component.mjs +90 -0
- package/esm2022/admin/components/admin-metadata/store/metadata.action.mjs +19 -0
- package/esm2022/admin/components/admin-metadata/store/metadata.effects.mjs +33 -0
- package/esm2022/admin/components/admin-metadata/store/metadata.reducer.mjs +35 -0
- package/esm2022/admin/components/admin-metadata/store/metadata.selector.mjs +17 -0
- package/esm2022/admin/components/admin-metadata-rules/admin-edit-metadata-rules/admin-edit-metadata-rules.component.mjs +22 -0
- package/esm2022/admin/components/admin-metadata-rules/admin-metadata-rules.component.mjs +86 -0
- package/esm2022/admin/components/admin-metadata-rules/admin-new-metadata-rules/admin-new-metadata-rules.component.mjs +13 -0
- package/esm2022/admin/components/admin-metadata-rules/admin-select-metadata-rules/admin-select-metadata-rules.component.mjs +86 -0
- package/esm2022/admin/components/admin-metadata-rules/shared/admin-form-metadata-rules/admin-form-metadata-rules.component.mjs +133 -0
- package/esm2022/admin/components/admin-metadata-rules/store/metadata-rules.actions.mjs +23 -0
- package/esm2022/admin/components/admin-metadata-rules/store/metadata-rules.effects.mjs +51 -0
- package/esm2022/admin/components/admin-metadata-rules/store/metadata-rules.reducer.mjs +28 -0
- package/esm2022/admin/components/admin-metadata-rules/store/metadata-rules.selectors.mjs +13 -0
- package/esm2022/admin/components/admin-metadata-user/admin-metadata-user.component.mjs +65 -0
- package/esm2022/admin/components/admin-metadata-user/admin-user-edit-metadata/admin-user-edit-metadata.component.mjs +33 -0
- package/esm2022/admin/components/admin-metadata-user/admin-user-new-metadata/admin-user-new-metadata.component.mjs +21 -0
- package/esm2022/admin/components/admin-metadata-user/admin-user-select-metadata/admin-user-select-metadata.component.mjs +77 -0
- package/esm2022/admin/components/admin-metadata-user/store/admin-metadata-user.action.mjs +23 -0
- package/esm2022/admin/components/admin-metadata-user/store/admin-metadata-user.effects.mjs +38 -0
- package/esm2022/admin/components/admin-metadata-user/store/admin-metadata-user.reducer.mjs +45 -0
- package/esm2022/admin/components/admin-metadata-user/store/admin-metadata-user.selector.mjs +17 -0
- package/esm2022/admin/components/admin-predicates/admin-predicates-form/admin-predicates-form.component.mjs +102 -0
- package/esm2022/admin/components/admin-predicates/admin-predicates-new/admin-predicates-new.component.mjs +13 -0
- package/esm2022/admin/components/admin-predicates/admin-predicates-select/admin-predicates-select.component.mjs +69 -0
- package/esm2022/admin/components/admin-predicates/admin-predicates-update/admin-predicates-update.component.mjs +27 -0
- package/esm2022/admin/components/admin-predicates/admin-predicates.component.mjs +46 -0
- package/esm2022/admin/components/admin-predicates/store/predicates.actions.mjs +13 -0
- package/esm2022/admin/components/admin-predicates/store/predicates.effects.mjs +28 -0
- package/esm2022/admin/components/admin-predicates/store/predicates.reducer.mjs +40 -0
- package/esm2022/admin/components/admin-predicates/store/predicates.selectors.mjs +15 -0
- package/esm2022/admin/components/admin-relation-types/admin-relation-types-modal/admin-relation-types-modal.component.mjs +101 -0
- package/esm2022/admin/components/admin-relation-types/admin-relation-types-select/admin-relation-types-select.component.mjs +63 -0
- package/esm2022/admin/components/admin-relation-types/admin-relation-types.component.mjs +42 -0
- package/esm2022/admin/components/admin-title/admin-title.component.mjs +29 -0
- package/esm2022/admin/components/admin-user/admin-user-select/admin-user-select.component.mjs +116 -0
- package/esm2022/admin/components/admin-user/admin-user.component.mjs +34 -0
- package/esm2022/admin/components/admin-user/store/admin-user.action.mjs +21 -0
- package/esm2022/admin/components/admin-user/store/admin-user.effects.mjs +38 -0
- package/esm2022/admin/components/admin-user/store/admin-user.reducer.mjs +27 -0
- package/esm2022/admin/components/admin-user/store/admin-user.selector.mjs +15 -0
- package/esm2022/admin/components/admin.component.mjs +29 -0
- package/esm2022/admin/i18n/en.translations.mjs +328 -0
- package/esm2022/admin/i18n/fr.translations.mjs +329 -0
- package/esm2022/admin/provoly-dashboard-admin.mjs +5 -0
- package/esm2022/admin/public-api.mjs +2 -0
- package/esm2022/admin/store/admin.actions.mjs +12 -0
- package/esm2022/admin/store/admin.effects.mjs +66 -0
- package/esm2022/admin/store/admin.reducer.mjs +52 -0
- package/esm2022/admin/store/admin.selectors.mjs +32 -0
- package/esm2022/admin/store/admin.service.mjs +181 -0
- package/esm2022/components/card/card.component.mjs +270 -0
- package/esm2022/components/card/card.module.mjs +38 -0
- package/esm2022/components/card/provoly-dashboard-components-card.mjs +5 -0
- package/esm2022/components/card/public-api.mjs +3 -0
- package/esm2022/components/checkbox/checkbox.component.mjs +58 -0
- package/esm2022/components/checkbox/checkbox.module.mjs +20 -0
- package/esm2022/components/checkbox/provoly-dashboard-components-checkbox.mjs +5 -0
- package/esm2022/components/checkbox/public-api.mjs +3 -0
- package/esm2022/components/expand-panel/expand-panel.component.mjs +65 -0
- package/esm2022/components/expand-panel/expand-panel.module.mjs +19 -0
- package/esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs +5 -0
- package/esm2022/components/expand-panel/public-api.mjs +3 -0
- package/esm2022/components/filter/filter.module.mjs +16 -0
- package/esm2022/components/filter/filter.pipe.mjs +16 -0
- package/esm2022/components/filter/provoly-dashboard-components-filter.mjs +5 -0
- package/esm2022/components/filter/public-api.mjs +3 -0
- package/esm2022/components/sinceDate/provoly-dashboard-components-sinceDate.mjs +5 -0
- package/esm2022/components/sinceDate/public-api.mjs +3 -0
- package/esm2022/components/sinceDate/sinceDate.module.mjs +16 -0
- package/esm2022/components/sinceDate/sinceDate.pipe.mjs +40 -0
- package/esm2022/components/stepper/provoly-dashboard-components-stepper.mjs +5 -0
- package/esm2022/components/stepper/public-api.mjs +5 -0
- package/esm2022/components/stepper/step/step.component.mjs +36 -0
- package/esm2022/components/stepper/step-title.directive.mjs +14 -0
- package/esm2022/components/stepper/stepper.component.mjs +109 -0
- package/esm2022/components/stepper/stepper.module.mjs +20 -0
- package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +24 -0
- package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +86 -0
- package/esm2022/dataset/components/dataset.component.mjs +35 -0
- package/esm2022/dataset/dataset.module.mjs +59 -0
- package/esm2022/dataset/i18n/en.translations.mjs +34 -0
- package/esm2022/dataset/i18n/fr.translations.mjs +39 -0
- package/esm2022/dataset/provoly-dashboard-dataset.mjs +5 -0
- package/esm2022/dataset/public-api.mjs +6 -0
- package/esm2022/dataset/style/css.component.mjs +11 -0
- package/esm2022/filters/date/date-filter.component.mjs +50 -0
- package/esm2022/filters/date/date-filter.module.mjs +25 -0
- package/esm2022/filters/date/provoly-dashboard-filters-date.mjs +5 -0
- package/esm2022/filters/date/public-api.mjs +4 -0
- package/esm2022/filters/date/style/css.component.mjs +11 -0
- package/esm2022/filters/list/list-filter.component.mjs +31 -0
- package/esm2022/filters/list/list-filter.module.mjs +24 -0
- package/esm2022/filters/list/provoly-dashboard-filters-list.mjs +5 -0
- package/esm2022/filters/list/public-api.mjs +4 -0
- package/esm2022/filters/list/style/css.component.mjs +11 -0
- package/esm2022/filters/number/number-filter.component.mjs +26 -0
- package/esm2022/filters/number/number-filter.module.mjs +24 -0
- package/esm2022/filters/number/provoly-dashboard-filters-number.mjs +5 -0
- package/esm2022/filters/number/public-api.mjs +3 -0
- package/esm2022/filters/text/provoly-dashboard-filters-text.mjs +5 -0
- package/esm2022/filters/text/public-api.mjs +3 -0
- package/esm2022/filters/text/text-filter.component.mjs +29 -0
- package/esm2022/filters/text/text-filter.module.mjs +24 -0
- package/esm2022/import/components/import.component.mjs +72 -0
- package/esm2022/import/i18n/en.translations.mjs +28 -0
- package/esm2022/import/i18n/fr.translations.mjs +28 -0
- package/esm2022/import/import-routing.module.mjs +32 -0
- package/esm2022/import/import.module.mjs +61 -0
- package/esm2022/import/provoly-dashboard-import.mjs +5 -0
- package/esm2022/import/public-api.mjs +3 -0
- package/esm2022/import/store/import.actions.mjs +7 -0
- package/esm2022/import/store/import.effects.mjs +32 -0
- package/esm2022/import/store/import.reducer.mjs +23 -0
- package/esm2022/import/store/import.selectors.mjs +10 -0
- package/esm2022/import/store/import.service.mjs +29 -0
- package/esm2022/import/style/css.component.mjs +11 -0
- package/esm2022/lib/core/access/access.directive.mjs +45 -0
- package/esm2022/lib/core/access/access.guard.mjs +21 -0
- package/esm2022/lib/core/access/access.model.mjs +2 -0
- package/esm2022/lib/core/access/access.service.mjs +20 -0
- package/esm2022/lib/core/access/access.utils.mjs +83 -0
- package/esm2022/lib/core/components/base-layout/base-layout.component.mjs +44 -0
- package/esm2022/lib/core/components/base-menu/base-menu.component.mjs +29 -0
- package/esm2022/lib/core/components/base-toolbox/base-toolbox-action.interface.mjs +2 -0
- package/esm2022/lib/core/components/base-toolbox/base-toolbox.component.mjs +23 -0
- package/esm2022/lib/core/components/base-toolbox-action/base-toolbox-action.component.mjs +64 -0
- package/esm2022/lib/core/components/date-picker/date-picker.component.mjs +206 -0
- package/esm2022/lib/core/components/date-picker/date-picker.module.mjs +36 -0
- package/esm2022/lib/core/components/date-picker/date-range-highlight.pipe.mjs +42 -0
- package/esm2022/lib/core/components/date-picker/time-picker/loop-scroll-column/loop-scroll-column.component.mjs +92 -0
- package/esm2022/lib/core/components/date-picker/time-picker/time-picker.component.mjs +81 -0
- package/esm2022/lib/core/components/edit-input/edit-input.component.mjs +60 -0
- package/esm2022/lib/core/components/edit-input/edit-input.module.mjs +22 -0
- package/esm2022/lib/core/components/get-secured-image/get-secured-image.pipe.mjs +25 -0
- package/esm2022/lib/core/components/hidden-when-overlay/hidden-when-overlay.directive.mjs +30 -0
- package/esm2022/lib/core/components/hidden-when-overlay/hidden-when-overlay.module.mjs +20 -0
- package/esm2022/lib/core/components/icon/icon.component.mjs +92 -0
- package/esm2022/lib/core/components/icon/icon.module.mjs +19 -0
- package/esm2022/lib/core/components/modal/modal.component.mjs +34 -0
- package/esm2022/lib/core/components/modal/pry-modal.module.mjs +22 -0
- package/esm2022/lib/core/components/modalStatus/modalStatus.component.mjs +35 -0
- package/esm2022/lib/core/components/modalStatus/modalStatus.module.mjs +28 -0
- package/esm2022/lib/core/components/nq-color-selector/nq-color-selector.component.mjs +77 -0
- package/esm2022/lib/core/components/overlay/dialog-confirm.component.mjs +57 -0
- package/esm2022/lib/core/components/overlay/dialog-ref.mjs +15 -0
- package/esm2022/lib/core/components/overlay/dialog.service.mjs +71 -0
- package/esm2022/lib/core/components/overlay/overlay.constantes.mjs +9 -0
- package/esm2022/lib/core/components/overlay/overlay.directive.mjs +125 -0
- package/esm2022/lib/core/components/overlay/overlay.module.mjs +23 -0
- package/esm2022/lib/core/components/overlay/tooltip.directive.mjs +121 -0
- package/esm2022/lib/core/components/range/range.component.mjs +106 -0
- package/esm2022/lib/core/components/range/range.module.mjs +19 -0
- package/esm2022/lib/core/components/select/select.component.mjs +118 -0
- package/esm2022/lib/core/components/select/select.module.mjs +22 -0
- package/esm2022/lib/core/components/select-image/select-image.component.mjs +84 -0
- package/esm2022/lib/core/components/share/share.component.mjs +83 -0
- package/esm2022/lib/core/components/share/share.model.mjs +7 -0
- package/esm2022/lib/core/components/share/share.module.mjs +21 -0
- package/esm2022/lib/core/components/snackbar/snack.interface.mjs +2 -0
- package/esm2022/lib/core/components/snackbar/snackbar/snackbar.component.mjs +65 -0
- package/esm2022/lib/core/components/snackbar/snackbar.module.mjs +19 -0
- package/esm2022/lib/core/components/snackbar/snackbar.service.mjs +63 -0
- package/esm2022/lib/core/components/sort/sort-data.pipe.mjs +54 -0
- package/esm2022/lib/core/components/sort/sort-header/sort-header.component.mjs +52 -0
- package/esm2022/lib/core/components/sort/sort-header.directive.mjs +13 -0
- package/esm2022/lib/core/components/sort/sort-table.directive.mjs +64 -0
- package/esm2022/lib/core/components/sort/sort.model.mjs +2 -0
- package/esm2022/lib/core/components/sort/sort.module.mjs +23 -0
- package/esm2022/lib/core/components/title-presentation/title-presentation.component.mjs +26 -0
- package/esm2022/lib/core/components/toggle/toggle.component.mjs +100 -0
- package/esm2022/lib/core/components/toggle/toggle.module.mjs +21 -0
- package/esm2022/lib/core/components/translate-id/translate-id.pipe.mjs +115 -0
- package/esm2022/lib/core/components/translate-item-to-symbol/translate-item-to-symbol.pipe.mjs +27 -0
- package/esm2022/lib/core/components/upload/upload.component.mjs +88 -0
- package/esm2022/lib/core/core.module.mjs +179 -0
- package/esm2022/lib/core/errors/http-error-interceptor.service.mjs +44 -0
- package/esm2022/lib/core/i18n/deep-merge.function.mjs +21 -0
- package/esm2022/lib/core/i18n/en.translations.mjs +323 -0
- package/esm2022/lib/core/i18n/fr.translations.mjs +323 -0
- package/esm2022/lib/core/i18n/i18n.module.mjs +16 -0
- package/esm2022/lib/core/i18n/i18n.pipe.mjs +42 -0
- package/esm2022/lib/core/i18n/i18n.service.mjs +88 -0
- package/esm2022/lib/core/model/admin-api.model.mjs +45 -0
- package/esm2022/lib/core/model/dataset.interface.mjs +13 -0
- package/esm2022/lib/core/model/filter.interface.mjs +2 -0
- package/esm2022/lib/core/model/item.interface.mjs +2 -0
- package/esm2022/lib/core/model/manifest.interface.mjs +11 -0
- package/esm2022/lib/core/model/mimetype-resultset.constant.mjs +2 -0
- package/esm2022/lib/core/model/notification-interface.mjs +2 -0
- package/esm2022/lib/core/model/public-api.mjs +25 -0
- package/esm2022/lib/core/model/relation.interface.mjs +2 -0
- package/esm2022/lib/core/model/result-order.interface.mjs +2 -0
- package/esm2022/lib/core/model/result-set.interface.mjs +2 -0
- package/esm2022/lib/core/model/search-mono-class.model.mjs +17 -0
- package/esm2022/lib/core/model/search-multi-class.model.mjs +2 -0
- package/esm2022/lib/core/model/tooltip-of-class.interface.mjs +2 -0
- package/esm2022/lib/core/model/widget-aggregated-chart-manifest.interface.mjs +26 -0
- package/esm2022/lib/core/model/widget-chart-manifest.interface.mjs +63 -0
- package/esm2022/lib/core/model/widget-detail-manifest.interface.mjs +2 -0
- package/esm2022/lib/core/model/widget-graph-manifest.interface.mjs +2 -0
- package/esm2022/lib/core/model/widget-iframe-manifest.interface.mjs +2 -0
- package/esm2022/lib/core/model/widget-image-manifest.interface.mjs +2 -0
- package/esm2022/lib/core/model/widget-map-manifest.interface.mjs +19 -0
- package/esm2022/lib/core/model/widget-table-manifest.interface.mjs +2 -0
- package/esm2022/lib/core/model/widget-template-manifest.interface.mjs +2 -0
- package/esm2022/lib/core/model/widget-tile-manifest.interface.mjs +2 -0
- package/esm2022/lib/core/model/widget.interface.mjs +2 -0
- package/esm2022/lib/core/public-api.mjs +113 -0
- package/esm2022/lib/core/store/category/category.actions.mjs +7 -0
- package/esm2022/lib/core/store/category/category.effects.mjs +20 -0
- package/esm2022/lib/core/store/category/category.interface.mjs +2 -0
- package/esm2022/lib/core/store/category/category.reducer.mjs +19 -0
- package/esm2022/lib/core/store/category/category.selectors.mjs +11 -0
- package/esm2022/lib/core/store/category/category.service.mjs +26 -0
- package/esm2022/lib/core/store/class/class.actions.mjs +13 -0
- package/esm2022/lib/core/store/class/class.effects.mjs +26 -0
- package/esm2022/lib/core/store/class/class.interface.mjs +2 -0
- package/esm2022/lib/core/store/class/class.reducer.mjs +42 -0
- package/esm2022/lib/core/store/class/class.selectors.mjs +31 -0
- package/esm2022/lib/core/store/class/class.service.mjs +42 -0
- package/esm2022/lib/core/store/config/config.actions.mjs +31 -0
- package/esm2022/lib/core/store/config/config.effects.mjs +100 -0
- package/esm2022/lib/core/store/config/config.reducer.mjs +122 -0
- package/esm2022/lib/core/store/config/config.selectors.mjs +82 -0
- package/esm2022/lib/core/store/config/config.service.mjs +106 -0
- package/esm2022/lib/core/store/config/config.widget.constants.mjs +55 -0
- package/esm2022/lib/core/store/config/icon-definitions.interface.mjs +19 -0
- package/esm2022/lib/core/store/config/open-map-tiles.service.mjs +37 -0
- package/esm2022/lib/core/store/context-menu/context-menu.actions.mjs +6 -0
- package/esm2022/lib/core/store/context-menu/context-menu.effects.mjs +14 -0
- package/esm2022/lib/core/store/context-menu/context-menu.reducer.mjs +29 -0
- package/esm2022/lib/core/store/context-menu/context-menu.selectors.mjs +19 -0
- package/esm2022/lib/core/store/data-source/data-source.actions.mjs +53 -0
- package/esm2022/lib/core/store/data-source/data-source.effects.mjs +151 -0
- package/esm2022/lib/core/store/data-source/data-source.model.mjs +2 -0
- package/esm2022/lib/core/store/data-source/data-source.reducer.mjs +87 -0
- package/esm2022/lib/core/store/data-source/data-source.selectors.mjs +66 -0
- package/esm2022/lib/core/store/data-source/data-source.service.mjs +123 -0
- package/esm2022/lib/core/store/data-source/named-query-types.model.mjs +7 -0
- package/esm2022/lib/core/store/data-source/named-query-utils.mjs +13 -0
- package/esm2022/lib/core/store/field/field.actions.mjs +7 -0
- package/esm2022/lib/core/store/field/field.effects.mjs +20 -0
- package/esm2022/lib/core/store/field/field.interface.mjs +18 -0
- package/esm2022/lib/core/store/field/field.reducer.mjs +19 -0
- package/esm2022/lib/core/store/field/field.selectors.mjs +19 -0
- package/esm2022/lib/core/store/field/field.service.mjs +36 -0
- package/esm2022/lib/core/store/image/image.actions.mjs +10 -0
- package/esm2022/lib/core/store/image/image.effects.mjs +21 -0
- package/esm2022/lib/core/store/image/image.reducer.mjs +23 -0
- package/esm2022/lib/core/store/image/image.selectors.mjs +19 -0
- package/esm2022/lib/core/store/image/image.service.mjs +72 -0
- package/esm2022/lib/core/store/item/item.actions.mjs +7 -0
- package/esm2022/lib/core/store/item/item.effects.mjs +44 -0
- package/esm2022/lib/core/store/item/item.service.mjs +50 -0
- package/esm2022/lib/core/store/raw/raw.service.mjs +50 -0
- package/esm2022/lib/core/store/relation-types/relation-types.actions.mjs +22 -0
- package/esm2022/lib/core/store/relation-types/relation-types.effects.mjs +48 -0
- package/esm2022/lib/core/store/relation-types/relation-types.interface.mjs +2 -0
- package/esm2022/lib/core/store/relation-types/relation-types.reducer.mjs +33 -0
- package/esm2022/lib/core/store/relation-types/relation-types.selectors.mjs +18 -0
- package/esm2022/lib/core/store/relation-types/relation-types.service.mjs +46 -0
- package/esm2022/lib/core/store/search/lat-lon-to-geographic-field-transformation.function.mjs +35 -0
- package/esm2022/lib/core/store/search/search.actions.mjs +9 -0
- package/esm2022/lib/core/store/search/search.constants.mjs +3 -0
- package/esm2022/lib/core/store/search/search.effects.mjs +36 -0
- package/esm2022/lib/core/store/search/search.reducer.mjs +25 -0
- package/esm2022/lib/core/store/search/search.selectors.mjs +9 -0
- package/esm2022/lib/core/store/search/search.service.mjs +96 -0
- package/esm2022/lib/core/symbol/symbol.service.mjs +182 -0
- package/esm2022/lib/core/toolbox/toolbox-manifest.service.mjs +335 -0
- package/esm2022/lib/core/toolbox/toolbox-menu.service.mjs +167 -0
- package/esm2022/lib/core/ws/websocket.service.mjs +92 -0
- package/esm2022/lib/dashboard/action-bus/bus-action.interface.mjs +2 -0
- package/esm2022/lib/dashboard/action-bus/effect/action-bus.effects.mjs +23 -0
- package/esm2022/lib/dashboard/action-bus/service/bus.service.mjs +86 -0
- package/esm2022/lib/dashboard/action-bus/service/control-message.interface.mjs +2 -0
- package/esm2022/lib/dashboard/base-widget.module.mjs +16 -0
- package/esm2022/lib/dashboard/components/context-menu/context-menu.component.mjs +131 -0
- package/esm2022/lib/dashboard/components/context-menu/object-edition/object-edition.component.mjs +267 -0
- package/esm2022/lib/dashboard/components/dashboard.component.mjs +558 -0
- package/esm2022/lib/dashboard/components/manifests/manifests.component.mjs +60 -0
- package/esm2022/lib/dashboard/components/metadata/metadata.component.mjs +33 -0
- package/esm2022/lib/dashboard/components/solve-collisions.function.mjs +88 -0
- package/esm2022/lib/dashboard/components/subscriptionner.directive.mjs +17 -0
- package/esm2022/lib/dashboard/components/vizualize-raw/vizualize-raw.component.mjs +45 -0
- package/esm2022/lib/dashboard/components/widgets/base-widget.component.mjs +62 -0
- package/esm2022/lib/dashboard/components/widgets/data-widget.component.mjs +59 -0
- package/esm2022/lib/dashboard/components/widgets/header/resultset-size.pipe.mjs +45 -0
- package/esm2022/lib/dashboard/components/widgets/header/widget-header.component.mjs +474 -0
- package/esm2022/lib/dashboard/components/widgets/public-api.mjs +10 -0
- package/esm2022/lib/dashboard/components/widgets/settings/settings.component.mjs +97 -0
- package/esm2022/lib/dashboard/components/widgets/widget-filler/widget-filler.component.mjs +20 -0
- package/esm2022/lib/dashboard/components/widgets/widget-instanciator/widget-factory.service.mjs +60 -0
- package/esm2022/lib/dashboard/components/widgets/widget-instanciator/widget-instanciator.component.mjs +90 -0
- package/esm2022/lib/dashboard/components/widgets/widget-instanciator/widgets-definition.model.mjs +2 -0
- package/esm2022/lib/dashboard/components/widgets/widget-placeholder/widget-placeholder.component.mjs +17 -0
- package/esm2022/lib/dashboard/components/widgets/widget-placement/widget-placement.utils.mjs +183 -0
- package/esm2022/lib/dashboard/dashboard.module.mjs +172 -0
- package/esm2022/lib/dashboard/date-utils.mjs +7 -0
- package/esm2022/lib/dashboard/filter/base-filter.component.mjs +32 -0
- package/esm2022/lib/dashboard/filter/base-filter.module.mjs +15 -0
- package/esm2022/lib/dashboard/filter/components/filter-instanciator/filter-instanciator.component.mjs +42 -0
- package/esm2022/lib/dashboard/filter/filter-factory.service.mjs +67 -0
- package/esm2022/lib/dashboard/filter/filter-loader.function.mjs +21 -0
- package/esm2022/lib/dashboard/filter/public-api.mjs +6 -0
- package/esm2022/lib/dashboard/guard/default-view.guard.mjs +41 -0
- package/esm2022/lib/dashboard/item-utils.mjs +167 -0
- package/esm2022/lib/dashboard/public-api.mjs +31 -0
- package/esm2022/lib/dashboard/resultset-utils.mjs +30 -0
- package/esm2022/lib/dashboard/store/dashboard-init.service.mjs +37 -0
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +76 -0
- package/esm2022/lib/dashboard/store/dashboard.contants.mjs +5 -0
- package/esm2022/lib/dashboard/store/dashboard.effects.mjs +333 -0
- package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +590 -0
- package/esm2022/lib/dashboard/store/dashboard.selectors.mjs +118 -0
- package/esm2022/lib/dashboard/store/geocoding.service.mjs +44 -0
- package/esm2022/lib/dashboard/store/manifest.service.mjs +95 -0
- package/esm2022/lib/dashboard/store/refresh.service.mjs +37 -0
- package/esm2022/lib/dashboard/store/title.service.mjs +39 -0
- package/esm2022/lib/dashboard/tooltip/base-tooltip.component.mjs +20 -0
- package/esm2022/lib/dashboard/tooltip/base-tooltip.module.mjs +16 -0
- package/esm2022/lib/dashboard/tooltip/components/default/default.tooltip.component.mjs +15 -0
- package/esm2022/lib/dashboard/tooltip/public-api.mjs +6 -0
- package/esm2022/lib/dashboard/tooltip/tooltip-factory.service.mjs +77 -0
- package/esm2022/lib/dashboard/tooltip/tooltip-loader.function.mjs +22 -0
- package/esm2022/lib/dashboard/widget-loader.function.mjs +22 -0
- package/esm2022/notification/components/notification/content/notification-content.component.mjs +62 -0
- package/esm2022/notification/components/notification/notification.component.mjs +59 -0
- package/esm2022/notification/i18n/en.translations.mjs +23 -0
- package/esm2022/notification/i18n/fr.translations.mjs +23 -0
- package/esm2022/notification/notification.module.mjs +53 -0
- package/esm2022/notification/provoly-dashboard-notification.mjs +5 -0
- package/esm2022/notification/public-api.mjs +9 -0
- package/esm2022/notification/store/notification.actions.mjs +9 -0
- package/esm2022/notification/store/notification.effects.mjs +37 -0
- package/esm2022/notification/store/notification.reducer.mjs +20 -0
- package/esm2022/notification/store/notification.selectors.mjs +9 -0
- package/esm2022/notification/store/notification.service.mjs +31 -0
- package/esm2022/notification/style/css.component.mjs +11 -0
- package/esm2022/pipeline/components/pipeline-details/pipeline-details.component.mjs +103 -0
- package/esm2022/pipeline/components/pipeline-editor/graph-serializer.utils.mjs +101 -0
- package/esm2022/pipeline/components/pipeline-editor/pipeline-editor.component.mjs +305 -0
- package/esm2022/pipeline/components/pipeline-editor/pipeline.interface.mjs +7 -0
- package/esm2022/pipeline/components/pipeline-list/pipeline-list.component.mjs +174 -0
- package/esm2022/pipeline/components/pipeline-properties-panel.component.mjs +22 -0
- package/esm2022/pipeline/factory/pipeline-component-factory.service.mjs +58 -0
- package/esm2022/pipeline/i18n/en.translations.mjs +74 -0
- package/esm2022/pipeline/i18n/fr.translations.mjs +74 -0
- package/esm2022/pipeline/node-class/base-node.class.mjs +44 -0
- package/esm2022/pipeline/pipeline.module.mjs +83 -0
- package/esm2022/pipeline/provoly-dashboard-pipeline.mjs +5 -0
- package/esm2022/pipeline/public-api.mjs +17 -0
- package/esm2022/pipeline/store/pipeline.actions.mjs +15 -0
- package/esm2022/pipeline/store/pipeline.effects.mjs +71 -0
- package/esm2022/pipeline/store/pipeline.reducer.mjs +41 -0
- package/esm2022/pipeline/store/pipeline.selectors.mjs +18 -0
- package/esm2022/pipeline/store/pipeline.service.mjs +51 -0
- package/esm2022/pipeline/style/css.component.mjs +11 -0
- package/esm2022/pipeline-components/filter/component/filter.component.mjs +62 -0
- package/esm2022/pipeline-components/filter/filter.module.mjs +52 -0
- package/esm2022/pipeline-components/filter/i18n/en.translations.mjs +16 -0
- package/esm2022/pipeline-components/filter/i18n/fr.translations.mjs +16 -0
- package/esm2022/pipeline-components/filter/node-class/filter-node.class.mjs +10 -0
- package/esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs +5 -0
- package/esm2022/pipeline-components/filter/public-api.mjs +4 -0
- package/esm2022/pipeline-components/input-datasource/component/input-datasource.component.mjs +28 -0
- package/esm2022/pipeline-components/input-datasource/i18n/en.translations.mjs +8 -0
- package/esm2022/pipeline-components/input-datasource/i18n/fr.translations.mjs +8 -0
- package/esm2022/pipeline-components/input-datasource/input-datasource.module.mjs +59 -0
- package/esm2022/pipeline-components/input-datasource/node-class/input-datasourse-node.class.mjs +16 -0
- package/esm2022/pipeline-components/input-datasource/provoly-dashboard-pipeline-components-input-datasource.mjs +5 -0
- package/esm2022/pipeline-components/input-datasource/public-api.mjs +4 -0
- package/esm2022/pipeline-components/noop/component/noop.component.mjs +18 -0
- package/esm2022/pipeline-components/noop/node-class/noop-node.class.mjs +10 -0
- package/esm2022/pipeline-components/noop/noop.module.mjs +46 -0
- package/esm2022/pipeline-components/noop/provoly-dashboard-pipeline-components-noop.mjs +5 -0
- package/esm2022/pipeline-components/noop/public-api.mjs +4 -0
- package/esm2022/pipeline-components/output-dataset/component/output-dataset.component.mjs +30 -0
- package/esm2022/pipeline-components/output-dataset/i18n/en.translations.mjs +8 -0
- package/esm2022/pipeline-components/output-dataset/i18n/fr.translations.mjs +8 -0
- package/esm2022/pipeline-components/output-dataset/node-class/output-dataset-node.class.mjs +17 -0
- package/esm2022/pipeline-components/output-dataset/output-dataset.module.mjs +60 -0
- package/esm2022/pipeline-components/output-dataset/provoly-dashboard-pipeline-components-output-dataset.mjs +5 -0
- package/esm2022/pipeline-components/output-dataset/public-api.mjs +4 -0
- package/esm2022/pipeline-components/subgraph/component/empty.component.mjs +18 -0
- package/esm2022/pipeline-components/subgraph/node-class/sub-graph-input.class.mjs +15 -0
- package/esm2022/pipeline-components/subgraph/node-class/sub-graph-node.class.mjs +96 -0
- package/esm2022/pipeline-components/subgraph/node-class/sub-graph-output.class.mjs +15 -0
- package/esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs +5 -0
- package/esm2022/pipeline-components/subgraph/public-api.mjs +6 -0
- package/esm2022/pipeline-components/subgraph/subgraph.module.mjs +50 -0
- package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +119 -0
- package/esm2022/presentation/components/presentation.component.mjs +231 -0
- package/esm2022/presentation/i18n/en.translations.mjs +40 -0
- package/esm2022/presentation/i18n/fr.translations.mjs +41 -0
- package/esm2022/presentation/presentation.module.mjs +72 -0
- package/esm2022/presentation/provoly-dashboard-presentation.mjs +5 -0
- package/esm2022/presentation/public-api.mjs +5 -0
- package/esm2022/presentation/style/css.component.mjs +11 -0
- package/esm2022/provoly-dashboard.mjs +5 -0
- package/esm2022/public-api.mjs +6 -0
- package/esm2022/restitution/components/restitution/restitution.component.mjs +216 -0
- package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +114 -0
- package/esm2022/restitution/components/restitution-list/restitution-list.component.mjs +68 -0
- package/esm2022/restitution/i18n/en.translations.mjs +44 -0
- package/esm2022/restitution/i18n/fr.translations.mjs +44 -0
- package/esm2022/restitution/model/restitution.model.mjs +2 -0
- package/esm2022/restitution/provoly-dashboard-restitution.mjs +5 -0
- package/esm2022/restitution/public-api.mjs +5 -0
- package/esm2022/restitution/restitution.module.mjs +86 -0
- package/esm2022/restitution/style/css.component.mjs +11 -0
- package/esm2022/search/components/choose-widget/choose-widget.component.mjs +67 -0
- package/esm2022/search/components/edit-named-query/edit-named-query.component.mjs +101 -0
- package/esm2022/search/components/edit-named-query-modal/edit-named-query-modal.component.mjs +55 -0
- package/esm2022/search/components/save-query/save-query.component.mjs +106 -0
- package/esm2022/search/components/save-query-button/save-query-button.component.mjs +76 -0
- package/esm2022/search/i18n/en.translations.mjs +132 -0
- package/esm2022/search/i18n/fr.translations.mjs +132 -0
- package/esm2022/search/provoly-dashboard-search.mjs +5 -0
- package/esm2022/search/public-api.mjs +13 -0
- package/esm2022/search/search-fulltext/search-fulltext/search-fulltext.component.mjs +207 -0
- package/esm2022/search/search-fulltext/store/search-fulltext.actions.mjs +6 -0
- package/esm2022/search/search-fulltext/store/search-fulltext.effects.mjs +38 -0
- package/esm2022/search/search-fulltext/store/search-fulltext.service.mjs +22 -0
- package/esm2022/search/search-home/search-home.component.mjs +199 -0
- package/esm2022/search/search-mono-class/components/search-composed/search-composed.component.mjs +78 -0
- package/esm2022/search/search-mono-class/components/search-condition/search-condition.component.mjs +139 -0
- package/esm2022/search/search-mono-class/components/search-mono-class/search-mono-class.component.mjs +34 -0
- package/esm2022/search/search-mono-class/components/search-order/search-order.component.mjs +69 -0
- package/esm2022/search/search-mono-class/components/search-select-attribute/search-select-attribute.component.mjs +37 -0
- package/esm2022/search/search-mono-class/store/search-mono-class.actions.mjs +26 -0
- package/esm2022/search/search-mono-class/store/search-mono-class.effects.mjs +112 -0
- package/esm2022/search/search-mono-class/store/search-mono-class.reducer.mjs +139 -0
- package/esm2022/search/search-mono-class/store/search-mono-class.selectors.mjs +38 -0
- package/esm2022/search/search-mono-class/store/search-mono-class.service.mjs +161 -0
- package/esm2022/search/search-multi-class/components/multi-class-condition/multi-class-condition.component.mjs +150 -0
- package/esm2022/search/search-multi-class/components/multi-class-field-selection/multi-class-field-selection.component.mjs +62 -0
- package/esm2022/search/search-multi-class/components/search-multi-class/search-multi-class.component.mjs +37 -0
- package/esm2022/search/search-multi-class/store/search-multi-class.actions.mjs +16 -0
- package/esm2022/search/search-multi-class/store/search-multi-class.effects.mjs +66 -0
- package/esm2022/search/search-multi-class/store/search-multi-class.reducer.mjs +59 -0
- package/esm2022/search/search-multi-class/store/search-multi-class.selectors.mjs +32 -0
- package/esm2022/search/search-multi-class/store/search-multi-class.service.mjs +125 -0
- package/esm2022/search/search-tools/search-tools.component.mjs +151 -0
- package/esm2022/search/search.module.mjs +156 -0
- package/esm2022/search/style/css.component.mjs +11 -0
- package/esm2022/supervision/components/supervision-business-data/supervision-business-data.component.mjs +34 -0
- package/esm2022/supervision/components/supervision-flow/supervision-flow.component.mjs +33 -0
- package/esm2022/supervision/components/supervision-infrastructures/supervision-infrastructures.component.mjs +51 -0
- package/esm2022/supervision/components/supervision-integration-errors/supervision-integration-errors-select/supervision-integration-errors-select.component.mjs +27 -0
- package/esm2022/supervision/components/supervision-integration-errors/supervision-integration-errors.component.mjs +100 -0
- package/esm2022/supervision/components/supervision-layout/supervision-layout.component.mjs +47 -0
- package/esm2022/supervision/components/supervision-menu/supervision-menu.component.mjs +32 -0
- package/esm2022/supervision/components/supervision-title/supervision-title.component.mjs +24 -0
- package/esm2022/supervision/components/supervision.component.mjs +19 -0
- package/esm2022/supervision/i18n/en.translations.mjs +58 -0
- package/esm2022/supervision/i18n/fr.translations.mjs +58 -0
- package/esm2022/supervision/provoly-dashboard-supervision.mjs +5 -0
- package/esm2022/supervision/public-api.mjs +2 -0
- package/esm2022/supervision/store/supervision-api.model.mjs +2 -0
- package/esm2022/supervision/store/supervision.actions.mjs +33 -0
- package/esm2022/supervision/store/supervision.effects.mjs +60 -0
- package/esm2022/supervision/store/supervision.reducer.mjs +115 -0
- package/esm2022/supervision/store/supervision.selectors.mjs +35 -0
- package/esm2022/supervision/store/supervision.service.mjs +54 -0
- package/esm2022/supervision/supervision-routing.module.mjs +96 -0
- package/esm2022/supervision/supervision.module.mjs +96 -0
- package/esm2022/toolbox/components/clear-view/clear-view.component.mjs +24 -0
- package/esm2022/toolbox/components/drag-widgets/drag-widgets.component.mjs +43 -0
- package/esm2022/toolbox/components/edit-mode-toggle/edit-mode-toggle.component.mjs +27 -0
- package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +235 -0
- package/esm2022/toolbox/components/launch-tab/launch-tab.component.mjs +24 -0
- package/esm2022/toolbox/components/named-query/named-query.component.mjs +35 -0
- package/esm2022/toolbox/components/save-view/save-view.component.mjs +207 -0
- package/esm2022/toolbox/components/select-grid-layout/select-grid-layout.component.mjs +109 -0
- package/esm2022/toolbox/components/toolbox.component.mjs +32 -0
- package/esm2022/toolbox/provoly-dashboard-toolbox.mjs +5 -0
- package/esm2022/toolbox/public-api.mjs +12 -0
- package/esm2022/toolbox/style/css.component.mjs +11 -0
- package/esm2022/toolbox/toolbox.module.mjs +107 -0
- package/esm2022/tooltips/attribute/attribute-tooltip.component.mjs +33 -0
- package/esm2022/tooltips/attribute/attribute-tooltip.module.mjs +24 -0
- package/esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs +5 -0
- package/esm2022/tooltips/attribute/public-api.mjs +3 -0
- package/esm2022/tooltips/cluster/cluster-tooltip.component.mjs +12 -0
- package/esm2022/tooltips/cluster/cluster-tooltip.module.mjs +24 -0
- package/esm2022/tooltips/cluster/provoly-dashboard-tooltips-cluster.mjs +5 -0
- package/esm2022/tooltips/cluster/public-api.mjs +3 -0
- package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +633 -0
- package/esm2022/widgets/widget-aggregated-chart/i18n/en.translations.mjs +104 -0
- package/esm2022/widgets/widget-aggregated-chart/i18n/fr.translations.mjs +104 -0
- package/esm2022/widgets/widget-aggregated-chart/provoly-dashboard-widgets-widget-aggregated-chart.mjs +5 -0
- package/esm2022/widgets/widget-aggregated-chart/public-api.mjs +6 -0
- package/esm2022/widgets/widget-aggregated-chart/service/backend-aggregation.service.mjs +103 -0
- package/esm2022/widgets/widget-aggregated-chart/service/base-aggregation.service.mjs +16 -0
- package/esm2022/widgets/widget-aggregated-chart/service/frontend-aggregation.service.mjs +206 -0
- package/esm2022/widgets/widget-aggregated-chart/style/css.component.mjs +11 -0
- package/esm2022/widgets/widget-aggregated-chart/widget-aggregated-chart.module.mjs +72 -0
- package/esm2022/widgets/widget-chart/component/vega-error.handler.mjs +36 -0
- package/esm2022/widgets/widget-chart/component/vega-spec.constant.mjs +248 -0
- package/esm2022/widgets/widget-chart/component/widget-chart.component.mjs +652 -0
- package/esm2022/widgets/widget-chart/i18n/en.translations.mjs +114 -0
- package/esm2022/widgets/widget-chart/i18n/fr.translations.mjs +114 -0
- package/esm2022/widgets/widget-chart/provoly-dashboard-widgets-widget-chart.mjs +5 -0
- package/esm2022/widgets/widget-chart/public-api.mjs +3 -0
- package/esm2022/widgets/widget-chart/style/css.component.mjs +11 -0
- package/esm2022/widgets/widget-chart/widget-chart.module.mjs +70 -0
- package/esm2022/widgets/widget-detail/component/widget-detail.component.mjs +131 -0
- package/esm2022/widgets/widget-detail/i18n/en.translations.mjs +14 -0
- package/esm2022/widgets/widget-detail/i18n/fr.translations.mjs +14 -0
- package/esm2022/widgets/widget-detail/provoly-dashboard-widgets-widget-detail.mjs +5 -0
- package/esm2022/widgets/widget-detail/public-api.mjs +3 -0
- package/esm2022/widgets/widget-detail/style/css.component.mjs +11 -0
- package/esm2022/widgets/widget-detail/widget-detail.module.mjs +64 -0
- package/esm2022/widgets/widget-graph/component/widget-graph.component.mjs +448 -0
- package/esm2022/widgets/widget-graph/i18n/en.translations.mjs +15 -0
- package/esm2022/widgets/widget-graph/i18n/fr.translations.mjs +15 -0
- package/esm2022/widgets/widget-graph/layout/node.interface.mjs +2 -0
- package/esm2022/widgets/widget-graph/layout/simple.function.mjs +99 -0
- package/esm2022/widgets/widget-graph/provoly-dashboard-widgets-widget-graph.mjs +5 -0
- package/esm2022/widgets/widget-graph/public-api.mjs +4 -0
- package/esm2022/widgets/widget-graph/style/css.component.mjs +11 -0
- package/esm2022/widgets/widget-graph/widget-graph.module.mjs +73 -0
- package/esm2022/widgets/widget-iframe/component/widget-iframe.component.mjs +53 -0
- package/esm2022/widgets/widget-iframe/i18n/en.translations.mjs +11 -0
- package/esm2022/widgets/widget-iframe/i18n/fr.translations.mjs +11 -0
- package/esm2022/widgets/widget-iframe/messaging/iframe-message-type.interface.mjs +2 -0
- package/esm2022/widgets/widget-iframe/messaging/iframe-messaging.service.mjs +30 -0
- package/esm2022/widgets/widget-iframe/provoly-dashboard-widgets-widget-iframe.mjs +5 -0
- package/esm2022/widgets/widget-iframe/public-api.mjs +5 -0
- package/esm2022/widgets/widget-iframe/style/css.component.mjs +11 -0
- package/esm2022/widgets/widget-iframe/widget-iframe.module.mjs +66 -0
- package/esm2022/widgets/widget-image/component/widget-image.component.mjs +33 -0
- package/esm2022/widgets/widget-image/provoly-dashboard-widgets-widget-image.mjs +5 -0
- package/esm2022/widgets/widget-image/public-api.mjs +3 -0
- package/esm2022/widgets/widget-image/style/css.component.mjs +11 -0
- package/esm2022/widgets/widget-image/widget-image.module.mjs +24 -0
- package/esm2022/widgets/widget-map/component/widget-map-layer.service.mjs +317 -0
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +822 -0
- package/esm2022/widgets/widget-map/i18n/en.translations.mjs +81 -0
- package/esm2022/widgets/widget-map/i18n/fr.translations.mjs +81 -0
- package/esm2022/widgets/widget-map/interaction/selection-interaction.class.mjs +170 -0
- package/esm2022/widgets/widget-map/pipe/widget-map-geometry-fields-for.pipe.mjs +52 -0
- package/esm2022/widgets/widget-map/pipe/widget-map-legend-url.pipe.mjs +22 -0
- package/esm2022/widgets/widget-map/provoly-dashboard-widgets-widget-map.mjs +5 -0
- package/esm2022/widgets/widget-map/public-api.mjs +7 -0
- package/esm2022/widgets/widget-map/reader/kmz-zip-reader.class.mjs +57 -0
- package/esm2022/widgets/widget-map/reader/map-formats-reader.class.mjs +37 -0
- package/esm2022/widgets/widget-map/reader/random-color-style.function.mjs +32 -0
- package/esm2022/widgets/widget-map/reader/read-as-text.class.mjs +30 -0
- package/esm2022/widgets/widget-map/reader/shp-zip-reader.class.mjs +35 -0
- package/esm2022/widgets/widget-map/search-bar/search-bar.control.mjs +66 -0
- package/esm2022/widgets/widget-map/style/css.component.mjs +11 -0
- package/esm2022/widgets/widget-map/utils/widget-map.utils.mjs +229 -0
- package/esm2022/widgets/widget-map/widget-map.module.mjs +72 -0
- package/esm2022/widgets/widget-table/component/widget-table.component.mjs +187 -0
- package/esm2022/widgets/widget-table/expand-value/detach-row.directive.mjs +30 -0
- package/esm2022/widgets/widget-table/expand-value/expand-value.component.mjs +32 -0
- package/esm2022/widgets/widget-table/expand-value/format-number.pipe.mjs +29 -0
- package/esm2022/widgets/widget-table/get-value/get-value.pipe.mjs +43 -0
- package/esm2022/widgets/widget-table/i18n/en.translations.mjs +15 -0
- package/esm2022/widgets/widget-table/i18n/fr.translations.mjs +15 -0
- package/esm2022/widgets/widget-table/provoly-dashboard-widgets-widget-table.mjs +5 -0
- package/esm2022/widgets/widget-table/public-api.mjs +6 -0
- package/esm2022/widgets/widget-table/resizable/resizable.component.mjs +21 -0
- package/esm2022/widgets/widget-table/resizable/resizable.directive.mjs +34 -0
- package/esm2022/widgets/widget-table/style/css.component.mjs +11 -0
- package/esm2022/widgets/widget-table/widget-table.module.mjs +86 -0
- package/esm2022/widgets/widget-template/component/widget-template.component.mjs +86 -0
- package/esm2022/widgets/widget-template/provoly-dashboard-widgets-widget-template.mjs +5 -0
- package/esm2022/widgets/widget-template/public-api.mjs +3 -0
- package/esm2022/widgets/widget-template/style/css.component.mjs +11 -0
- package/esm2022/widgets/widget-template/widget-template.module.mjs +52 -0
- package/esm2022/widgets/widget-tile/component/widget-tile.component.mjs +114 -0
- package/esm2022/widgets/widget-tile/i18n/en.translations.mjs +13 -0
- package/esm2022/widgets/widget-tile/i18n/fr.translations.mjs +13 -0
- package/esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs +5 -0
- package/esm2022/widgets/widget-tile/public-api.mjs +3 -0
- package/esm2022/widgets/widget-tile/style/css.component.mjs +11 -0
- package/esm2022/widgets/widget-tile/widget-tile.module.mjs +72 -0
- package/fesm2022/provoly-dashboard-admin.mjs +6992 -0
- package/fesm2022/provoly-dashboard-admin.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-components-card.mjs +312 -0
- package/fesm2022/provoly-dashboard-components-card.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-components-checkbox.mjs +81 -0
- package/fesm2022/provoly-dashboard-components-checkbox.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-components-expand-panel.mjs +88 -0
- package/fesm2022/provoly-dashboard-components-expand-panel.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-components-filter.mjs +36 -0
- package/fesm2022/provoly-dashboard-components-filter.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-components-sinceDate.mjs +60 -0
- package/fesm2022/provoly-dashboard-components-sinceDate.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-components-stepper.mjs +175 -0
- package/fesm2022/provoly-dashboard-components-stepper.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-dataset.mjs +268 -0
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-filters-date.mjs +85 -0
- package/fesm2022/provoly-dashboard-filters-date.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-filters-list.mjs +65 -0
- package/fesm2022/provoly-dashboard-filters-list.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-filters-number.mjs +53 -0
- package/fesm2022/provoly-dashboard-filters-number.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-filters-text.mjs +56 -0
- package/fesm2022/provoly-dashboard-filters-text.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-import.mjs +302 -0
- package/fesm2022/provoly-dashboard-import.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-notification.mjs +303 -0
- package/fesm2022/provoly-dashboard-notification.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-pipeline-components-filter.mjs +154 -0
- package/fesm2022/provoly-dashboard-pipeline-components-filter.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-pipeline-components-input-datasource.mjs +116 -0
- package/fesm2022/provoly-dashboard-pipeline-components-input-datasource.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-pipeline-components-noop.mjs +76 -0
- package/fesm2022/provoly-dashboard-pipeline-components-noop.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-pipeline-components-output-dataset.mjs +120 -0
- package/fesm2022/provoly-dashboard-pipeline-components-output-dataset.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-pipeline-components-subgraph.mjs +188 -0
- package/fesm2022/provoly-dashboard-pipeline-components-subgraph.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-pipeline.mjs +1183 -0
- package/fesm2022/provoly-dashboard-pipeline.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-presentation.mjs +498 -0
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-restitution.mjs +557 -0
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-search.mjs +2590 -0
- package/fesm2022/provoly-dashboard-search.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-supervision.mjs +866 -0
- package/fesm2022/provoly-dashboard-supervision.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-toolbox.mjs +774 -0
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-tooltips-attribute.mjs +60 -0
- package/fesm2022/provoly-dashboard-tooltips-attribute.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-tooltips-cluster.mjs +39 -0
- package/fesm2022/provoly-dashboard-tooltips-cluster.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +1228 -0
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +1238 -0
- package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-widgets-widget-detail.mjs +230 -0
- package/fesm2022/provoly-dashboard-widgets-widget-detail.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-widgets-widget-graph.mjs +656 -0
- package/fesm2022/provoly-dashboard-widgets-widget-graph.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-widgets-widget-iframe.mjs +173 -0
- package/fesm2022/provoly-dashboard-widgets-widget-iframe.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-widgets-widget-image.mjs +67 -0
- package/fesm2022/provoly-dashboard-widgets-widget-image.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +2055 -0
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs +464 -0
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-widgets-widget-template.mjs +148 -0
- package/fesm2022/provoly-dashboard-widgets-widget-template.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs +219 -0
- package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs.map +1 -0
- package/fesm2022/provoly-dashboard.mjs +10650 -0
- package/fesm2022/provoly-dashboard.mjs.map +1 -0
- package/filters/date/date-filter.component.d.ts +17 -0
- package/filters/date/date-filter.module.d.ts +15 -0
- package/filters/date/index.d.ts +5 -0
- package/filters/date/public-api.d.ts +3 -0
- package/filters/date/style/_m-date.scss +6 -0
- package/filters/date/style/css.component.d.ts +5 -0
- package/filters/list/index.d.ts +5 -0
- package/filters/list/list-filter.component.d.ts +12 -0
- package/filters/list/list-filter.module.d.ts +14 -0
- package/filters/list/public-api.d.ts +3 -0
- package/filters/list/style/_m-list.scss +7 -0
- package/filters/list/style/css.component.d.ts +5 -0
- package/filters/number/index.d.ts +5 -0
- package/filters/number/number-filter.component.d.ts +11 -0
- package/filters/number/number-filter.module.d.ts +14 -0
- package/filters/number/public-api.d.ts +2 -0
- package/filters/text/index.d.ts +5 -0
- package/filters/text/public-api.d.ts +2 -0
- package/filters/text/text-filter.component.d.ts +12 -0
- package/filters/text/text-filter.module.d.ts +14 -0
- package/import/components/import.component.d.ts +29 -0
- package/import/i18n/en.translations.d.ts +27 -0
- package/import/i18n/fr.translations.d.ts +27 -0
- package/import/import-routing.module.d.ts +7 -0
- package/import/import.module.d.ts +17 -0
- package/import/index.d.ts +5 -0
- package/import/public-api.d.ts +2 -0
- package/import/store/import.actions.d.ts +33 -0
- package/import/store/import.effects.d.ts +18 -0
- package/import/store/import.reducer.d.ts +11 -0
- package/import/store/import.selectors.d.ts +9 -0
- package/import/store/import.service.d.ts +12 -0
- package/import/style/_o-import.scss +51 -0
- package/import/style/css.component.d.ts +5 -0
- package/index.d.ts +5 -0
- package/lib/core/access/access.directive.d.ts +16 -0
- package/lib/core/access/access.guard.d.ts +13 -0
- package/lib/core/access/access.model.d.ts +24 -0
- package/lib/core/access/access.service.d.ts +13 -0
- package/lib/core/access/access.utils.d.ts +6 -0
- package/lib/core/components/base-layout/base-layout.component.d.ts +20 -0
- package/lib/core/components/base-menu/base-menu.component.d.ts +27 -0
- package/lib/core/components/base-toolbox/base-toolbox-action.interface.d.ts +12 -0
- package/lib/core/components/base-toolbox/base-toolbox.component.d.ts +10 -0
- package/lib/core/components/base-toolbox-action/base-toolbox-action.component.d.ts +23 -0
- package/lib/core/components/date-picker/date-picker.component.d.ts +47 -0
- package/lib/core/components/date-picker/date-picker.module.d.ts +14 -0
- package/lib/core/components/date-picker/date-range-highlight.pipe.d.ts +8 -0
- package/lib/core/components/date-picker/time-picker/loop-scroll-column/loop-scroll-column.component.d.ts +26 -0
- package/lib/core/components/date-picker/time-picker/time-picker.component.d.ts +28 -0
- package/lib/core/components/edit-input/edit-input.component.d.ts +21 -0
- package/lib/core/components/edit-input/edit-input.module.d.ts +11 -0
- package/lib/core/components/get-secured-image/get-secured-image.pipe.d.ts +16 -0
- package/lib/core/components/hidden-when-overlay/hidden-when-overlay.directive.d.ts +12 -0
- package/lib/core/components/hidden-when-overlay/hidden-when-overlay.module.d.ts +9 -0
- package/lib/core/components/icon/icon.component.d.ts +32 -0
- package/lib/core/components/icon/icon.module.d.ts +8 -0
- package/lib/core/components/modal/modal.component.d.ts +11 -0
- package/lib/core/components/modal/pry-modal.module.d.ts +11 -0
- package/lib/core/components/modalStatus/modalStatus.component.d.ts +17 -0
- package/lib/core/components/modalStatus/modalStatus.module.d.ts +13 -0
- package/lib/core/components/nq-color-selector/nq-color-selector.component.d.ts +23 -0
- package/lib/core/components/overlay/dialog-confirm.component.d.ts +29 -0
- package/lib/core/components/overlay/dialog-ref.d.ts +9 -0
- package/lib/core/components/overlay/dialog.service.d.ts +27 -0
- package/lib/core/components/overlay/overlay.constantes.d.ts +4 -0
- package/lib/core/components/overlay/overlay.directive.d.ts +27 -0
- package/lib/core/components/overlay/overlay.module.d.ts +13 -0
- package/lib/core/components/overlay/tooltip.directive.d.ts +28 -0
- package/lib/core/components/range/range.component.d.ts +35 -0
- package/lib/core/components/range/range.module.d.ts +9 -0
- package/lib/core/components/select/select.component.d.ts +42 -0
- package/lib/core/components/select/select.module.d.ts +12 -0
- package/lib/core/components/select-image/select-image.component.d.ts +28 -0
- package/lib/core/components/share/share.component.d.ts +31 -0
- package/lib/core/components/share/share.model.d.ts +9 -0
- package/lib/core/components/share/share.module.d.ts +11 -0
- package/lib/core/components/snackbar/snack.interface.d.ts +6 -0
- package/lib/core/components/snackbar/snackbar/snackbar.component.d.ts +25 -0
- package/lib/core/components/snackbar/snackbar.module.d.ts +9 -0
- package/lib/core/components/snackbar/snackbar.service.d.ts +22 -0
- package/lib/core/components/sort/sort-data.pipe.d.ts +10 -0
- package/lib/core/components/sort/sort-header/sort-header.component.d.ts +16 -0
- package/lib/core/components/sort/sort-header.directive.d.ts +5 -0
- package/lib/core/components/sort/sort-table.directive.d.ts +17 -0
- package/lib/core/components/sort/sort.model.d.ts +4 -0
- package/lib/core/components/sort/sort.module.d.ts +12 -0
- package/lib/core/components/title-presentation/title-presentation.component.d.ts +12 -0
- package/lib/core/components/toggle/toggle.component.d.ts +31 -0
- package/lib/core/components/toggle/toggle.module.d.ts +10 -0
- package/lib/core/components/translate-id/translate-id.pipe.d.ts +20 -0
- package/lib/core/components/translate-item-to-symbol/translate-item-to-symbol.pipe.d.ts +18 -0
- package/lib/core/components/upload/upload.component.d.ts +19 -0
- package/lib/core/core.module.d.ts +36 -0
- package/lib/core/errors/http-error-interceptor.service.d.ts +16 -0
- package/lib/core/i18n/deep-merge.function.d.ts +1 -0
- package/lib/core/i18n/en.translations.d.ts +322 -0
- package/lib/core/i18n/fr.translations.d.ts +322 -0
- package/lib/core/i18n/i18n.module.d.ts +7 -0
- package/lib/core/i18n/i18n.pipe.d.ts +16 -0
- package/lib/core/i18n/i18n.service.d.ts +35 -0
- package/lib/core/model/admin-api.model.d.ts +111 -0
- package/lib/core/model/dataset.interface.d.ts +29 -0
- package/lib/core/model/filter.interface.d.ts +20 -0
- package/lib/core/model/item.interface.d.ts +38 -0
- package/lib/core/model/manifest.interface.d.ts +84 -0
- package/lib/core/model/mimetype-resultset.constant.d.ts +1 -0
- package/lib/core/model/notification-interface.d.ts +13 -0
- package/lib/core/model/public-api.d.ts +24 -0
- package/lib/core/model/relation.interface.d.ts +5 -0
- package/lib/core/model/result-order.interface.d.ts +5 -0
- package/lib/core/model/result-set.interface.d.ts +19 -0
- package/lib/core/model/search-mono-class.model.d.ts +49 -0
- package/lib/core/model/search-multi-class.model.d.ts +38 -0
- package/lib/core/model/tooltip-of-class.interface.d.ts +4 -0
- package/lib/core/model/widget-aggregated-chart-manifest.interface.d.ts +60 -0
- package/lib/core/model/widget-chart-manifest.interface.d.ts +150 -0
- package/lib/core/model/widget-detail-manifest.interface.d.ts +4 -0
- package/lib/core/model/widget-graph-manifest.interface.d.ts +14 -0
- package/lib/core/model/widget-iframe-manifest.interface.d.ts +3 -0
- package/lib/core/model/widget-image-manifest.interface.d.ts +4 -0
- package/lib/core/model/widget-map-manifest.interface.d.ts +97 -0
- package/lib/core/model/widget-table-manifest.interface.d.ts +9 -0
- package/lib/core/model/widget-template-manifest.interface.d.ts +5 -0
- package/lib/core/model/widget-tile-manifest.interface.d.ts +10 -0
- package/lib/core/model/widget.interface.d.ts +13 -0
- package/lib/core/public-api.d.ts +113 -0
- package/lib/core/store/category/category.actions.d.ts +14 -0
- package/lib/core/store/category/category.effects.d.ts +15 -0
- package/lib/core/store/category/category.interface.d.ts +4 -0
- package/lib/core/store/category/category.reducer.d.ts +11 -0
- package/lib/core/store/category/category.selectors.d.ts +6 -0
- package/lib/core/store/category/category.service.d.ts +13 -0
- package/lib/core/store/class/class.actions.d.ts +37 -0
- package/lib/core/store/class/class.effects.d.ts +25 -0
- package/lib/core/store/class/class.interface.d.ts +19 -0
- package/lib/core/store/class/class.reducer.d.ts +15 -0
- package/lib/core/store/class/class.selectors.d.ts +14 -0
- package/lib/core/store/class/class.service.d.ts +22 -0
- package/lib/core/store/config/config.actions.d.ts +185 -0
- package/lib/core/store/config/config.effects.d.ts +51 -0
- package/lib/core/store/config/config.reducer.d.ts +37 -0
- package/lib/core/store/config/config.selectors.d.ts +52 -0
- package/lib/core/store/config/config.service.d.ts +51 -0
- package/lib/core/store/config/config.widget.constants.d.ts +12 -0
- package/lib/core/store/config/icon-definitions.interface.d.ts +34 -0
- package/lib/core/store/config/open-map-tiles.service.d.ts +17 -0
- package/lib/core/store/context-menu/context-menu.actions.d.ts +18 -0
- package/lib/core/store/context-menu/context-menu.effects.d.ts +8 -0
- package/lib/core/store/context-menu/context-menu.reducer.d.ts +12 -0
- package/lib/core/store/context-menu/context-menu.selectors.d.ts +16 -0
- package/lib/core/store/data-source/data-source.actions.d.ts +238 -0
- package/lib/core/store/data-source/data-source.effects.d.ts +106 -0
- package/lib/core/store/data-source/data-source.model.d.ts +32 -0
- package/lib/core/store/data-source/data-source.reducer.d.ts +21 -0
- package/lib/core/store/data-source/data-source.selectors.d.ts +31 -0
- package/lib/core/store/data-source/data-source.service.d.ts +40 -0
- package/lib/core/store/data-source/named-query-types.model.d.ts +5 -0
- package/lib/core/store/data-source/named-query-utils.d.ts +6 -0
- package/lib/core/store/field/field.actions.d.ts +14 -0
- package/lib/core/store/field/field.effects.d.ts +15 -0
- package/lib/core/store/field/field.interface.d.ts +21 -0
- package/lib/core/store/field/field.reducer.d.ts +11 -0
- package/lib/core/store/field/field.selectors.d.ts +7 -0
- package/lib/core/store/field/field.service.d.ts +15 -0
- package/lib/core/store/image/image.actions.d.ts +32 -0
- package/lib/core/store/image/image.effects.d.ts +20 -0
- package/lib/core/store/image/image.reducer.d.ts +9 -0
- package/lib/core/store/image/image.selectors.d.ts +7 -0
- package/lib/core/store/image/image.service.d.ts +29 -0
- package/lib/core/store/item/item.actions.d.ts +18 -0
- package/lib/core/store/item/item.effects.d.ts +27 -0
- package/lib/core/store/item/item.service.d.ts +28 -0
- package/lib/core/store/raw/raw.service.d.ts +18 -0
- package/lib/core/store/relation-types/relation-types.actions.d.ts +65 -0
- package/lib/core/store/relation-types/relation-types.effects.d.ts +31 -0
- package/lib/core/store/relation-types/relation-types.interface.d.ts +8 -0
- package/lib/core/store/relation-types/relation-types.reducer.d.ts +11 -0
- package/lib/core/store/relation-types/relation-types.selectors.d.ts +8 -0
- package/lib/core/store/relation-types/relation-types.service.d.ts +17 -0
- package/lib/core/store/search/lat-lon-to-geographic-field-transformation.function.d.ts +2 -0
- package/lib/core/store/search/search.actions.d.ts +33 -0
- package/lib/core/store/search/search.constants.d.ts +2 -0
- package/lib/core/store/search/search.effects.d.ts +33 -0
- package/lib/core/store/search/search.reducer.d.ts +10 -0
- package/lib/core/store/search/search.selectors.d.ts +5 -0
- package/lib/core/store/search/search.service.d.ts +50 -0
- package/lib/core/symbol/symbol.service.d.ts +27 -0
- package/lib/core/toolbox/toolbox-manifest.service.d.ts +21 -0
- package/lib/core/toolbox/toolbox-menu.service.d.ts +45 -0
- package/lib/core/ws/websocket.service.d.ts +26 -0
- package/lib/dashboard/action-bus/bus-action.interface.d.ts +4 -0
- package/lib/dashboard/action-bus/effect/action-bus.effects.d.ts +13 -0
- package/lib/dashboard/action-bus/service/bus.service.d.ts +22 -0
- package/lib/dashboard/action-bus/service/control-message.interface.d.ts +6 -0
- package/lib/dashboard/base-widget.module.d.ts +9 -0
- package/lib/dashboard/components/context-menu/context-menu.component.d.ts +59 -0
- package/lib/dashboard/components/context-menu/object-edition/object-edition.component.d.ts +78 -0
- package/lib/dashboard/components/dashboard.component.d.ts +99 -0
- package/lib/dashboard/components/manifests/manifests.component.d.ts +20 -0
- package/lib/dashboard/components/metadata/metadata.component.d.ts +16 -0
- package/lib/dashboard/components/solve-collisions.function.d.ts +15 -0
- package/lib/dashboard/components/subscriptionner.directive.d.ts +9 -0
- package/lib/dashboard/components/vizualize-raw/vizualize-raw.component.d.ts +26 -0
- package/lib/dashboard/components/widgets/base-widget.component.d.ts +36 -0
- package/lib/dashboard/components/widgets/data-widget.component.d.ts +20 -0
- package/lib/dashboard/components/widgets/header/resultset-size.pipe.d.ts +18 -0
- package/lib/dashboard/components/widgets/header/widget-header.component.d.ts +115 -0
- package/lib/dashboard/components/widgets/public-api.d.ts +9 -0
- package/lib/dashboard/components/widgets/settings/settings.component.d.ts +35 -0
- package/lib/dashboard/components/widgets/widget-filler/widget-filler.component.d.ts +10 -0
- package/lib/dashboard/components/widgets/widget-instanciator/widget-factory.service.d.ts +24 -0
- package/lib/dashboard/components/widgets/widget-instanciator/widget-instanciator.component.d.ts +34 -0
- package/lib/dashboard/components/widgets/widget-instanciator/widgets-definition.model.d.ts +11 -0
- package/lib/dashboard/components/widgets/widget-placeholder/widget-placeholder.component.d.ts +9 -0
- package/lib/dashboard/components/widgets/widget-placement/widget-placement.utils.d.ts +39 -0
- package/lib/dashboard/dashboard.module.d.ts +59 -0
- package/lib/dashboard/date-utils.d.ts +3 -0
- package/lib/dashboard/filter/base-filter.component.d.ts +13 -0
- package/lib/dashboard/filter/base-filter.module.d.ts +9 -0
- package/lib/dashboard/filter/components/filter-instanciator/filter-instanciator.component.d.ts +20 -0
- package/lib/dashboard/filter/filter-factory.service.d.ts +40 -0
- package/lib/dashboard/filter/filter-loader.function.d.ts +3 -0
- package/lib/dashboard/filter/public-api.d.ts +5 -0
- package/lib/dashboard/guard/default-view.guard.d.ts +14 -0
- package/lib/dashboard/item-utils.d.ts +35 -0
- package/lib/dashboard/public-api.d.ts +30 -0
- package/lib/dashboard/resultset-utils.d.ts +4 -0
- package/lib/dashboard/store/dashboard-init.service.d.ts +20 -0
- package/lib/dashboard/store/dashboard.actions.d.ts +455 -0
- package/lib/dashboard/store/dashboard.contants.d.ts +4 -0
- package/lib/dashboard/store/dashboard.effects.d.ts +226 -0
- package/lib/dashboard/store/dashboard.reducers.d.ts +48 -0
- package/lib/dashboard/store/dashboard.selectors.d.ts +374 -0
- package/lib/dashboard/store/geocoding.service.d.ts +56 -0
- package/lib/dashboard/store/manifest.service.d.ts +26 -0
- package/lib/dashboard/store/refresh.service.d.ts +12 -0
- package/lib/dashboard/store/title.service.d.ts +17 -0
- package/lib/dashboard/tooltip/base-tooltip.component.d.ts +15 -0
- package/lib/dashboard/tooltip/base-tooltip.module.d.ts +9 -0
- package/lib/dashboard/tooltip/components/default/default.tooltip.component.d.ts +6 -0
- package/lib/dashboard/tooltip/public-api.d.ts +5 -0
- package/lib/dashboard/tooltip/tooltip-factory.service.d.ts +42 -0
- package/lib/dashboard/tooltip/tooltip-loader.function.d.ts +3 -0
- package/lib/dashboard/widget-loader.function.d.ts +3 -0
- package/notification/components/notification/content/notification-content.component.d.ts +25 -0
- package/notification/components/notification/notification.component.d.ts +20 -0
- package/notification/i18n/en.translations.d.ts +22 -0
- package/notification/i18n/fr.translations.d.ts +22 -0
- package/notification/index.d.ts +5 -0
- package/notification/notification.module.d.ts +17 -0
- package/notification/public-api.d.ts +9 -0
- package/notification/store/notification.actions.d.ts +20 -0
- package/notification/store/notification.effects.d.ts +18 -0
- package/notification/store/notification.reducer.d.ts +6 -0
- package/notification/store/notification.selectors.d.ts +5 -0
- package/notification/store/notification.service.d.ts +12 -0
- package/notification/style/_m-notifications.scss +127 -0
- package/notification/style/css.component.d.ts +5 -0
- package/package.json +266 -0
- package/pipeline/components/pipeline-details/pipeline-details.component.d.ts +27 -0
- package/pipeline/components/pipeline-editor/graph-serializer.utils.d.ts +8 -0
- package/pipeline/components/pipeline-editor/pipeline-editor.component.d.ts +73 -0
- package/pipeline/components/pipeline-editor/pipeline.interface.d.ts +52 -0
- package/pipeline/components/pipeline-list/pipeline-list.component.d.ts +46 -0
- package/pipeline/components/pipeline-properties-panel.component.d.ts +11 -0
- package/pipeline/factory/pipeline-component-factory.service.d.ts +29 -0
- package/pipeline/i18n/en.translations.d.ts +73 -0
- package/pipeline/i18n/fr.translations.d.ts +73 -0
- package/pipeline/index.d.ts +5 -0
- package/pipeline/node-class/base-node.class.d.ts +13 -0
- package/pipeline/pipeline.module.d.ts +20 -0
- package/pipeline/public-api.d.ts +16 -0
- package/pipeline/store/pipeline.actions.d.ts +81 -0
- package/pipeline/store/pipeline.effects.d.ts +30 -0
- package/pipeline/store/pipeline.reducer.d.ts +13 -0
- package/pipeline/store/pipeline.selectors.d.ts +8 -0
- package/pipeline/store/pipeline.service.d.ts +19 -0
- package/pipeline/style/_o-pipeline.scss +274 -0
- package/pipeline/style/css.component.d.ts +5 -0
- package/pipeline-components/filter/component/filter.component.d.ts +16 -0
- package/pipeline-components/filter/filter.module.d.ts +15 -0
- package/pipeline-components/filter/i18n/en.translations.d.ts +15 -0
- package/pipeline-components/filter/i18n/fr.translations.d.ts +15 -0
- package/pipeline-components/filter/index.d.ts +5 -0
- package/pipeline-components/filter/node-class/filter-node.class.d.ts +4 -0
- package/pipeline-components/filter/public-api.d.ts +3 -0
- package/pipeline-components/input-datasource/component/input-datasource.component.d.ts +13 -0
- package/pipeline-components/input-datasource/i18n/en.translations.d.ts +10 -0
- package/pipeline-components/input-datasource/i18n/fr.translations.d.ts +10 -0
- package/pipeline-components/input-datasource/index.d.ts +5 -0
- package/pipeline-components/input-datasource/input-datasource.module.d.ts +17 -0
- package/pipeline-components/input-datasource/node-class/input-datasourse-node.class.d.ts +5 -0
- package/pipeline-components/input-datasource/public-api.d.ts +3 -0
- package/pipeline-components/noop/component/noop.component.d.ts +7 -0
- package/pipeline-components/noop/index.d.ts +5 -0
- package/pipeline-components/noop/node-class/noop-node.class.d.ts +4 -0
- package/pipeline-components/noop/noop.module.d.ts +13 -0
- package/pipeline-components/noop/public-api.d.ts +3 -0
- package/pipeline-components/output-dataset/component/output-dataset.component.d.ts +13 -0
- package/pipeline-components/output-dataset/i18n/en.translations.d.ts +9 -0
- package/pipeline-components/output-dataset/i18n/fr.translations.d.ts +9 -0
- package/pipeline-components/output-dataset/index.d.ts +5 -0
- package/pipeline-components/output-dataset/node-class/output-dataset-node.class.d.ts +5 -0
- package/pipeline-components/output-dataset/output-dataset.module.d.ts +17 -0
- package/pipeline-components/output-dataset/public-api.d.ts +3 -0
- package/pipeline-components/subgraph/component/empty.component.d.ts +7 -0
- package/pipeline-components/subgraph/index.d.ts +5 -0
- package/pipeline-components/subgraph/node-class/sub-graph-input.class.d.ts +4 -0
- package/pipeline-components/subgraph/node-class/sub-graph-node.class.d.ts +17 -0
- package/pipeline-components/subgraph/node-class/sub-graph-output.class.d.ts +4 -0
- package/pipeline-components/subgraph/public-api.d.ts +5 -0
- package/pipeline-components/subgraph/subgraph.module.d.ts +13 -0
- package/presentation/components/add-edit-presentation/add-edit-presentation.component.d.ts +28 -0
- package/presentation/components/presentation.component.d.ts +55 -0
- package/presentation/i18n/en.translations.d.ts +39 -0
- package/presentation/i18n/fr.translations.d.ts +40 -0
- package/presentation/index.d.ts +5 -0
- package/presentation/presentation.module.d.ts +18 -0
- package/presentation/public-api.d.ts +4 -0
- package/presentation/style/_o-pry-new-presentation.scss +78 -0
- package/presentation/style/_o-pry-presentation.scss +93 -0
- package/presentation/style/css.component.d.ts +5 -0
- package/public-api.d.ts +2 -0
- package/restitution/components/restitution/restitution.component.d.ts +54 -0
- package/restitution/components/restitution-catalog/restitution-catalog.component.d.ts +40 -0
- package/restitution/components/restitution-list/restitution-list.component.d.ts +33 -0
- package/restitution/i18n/en.translations.d.ts +43 -0
- package/restitution/i18n/fr.translations.d.ts +43 -0
- package/restitution/index.d.ts +5 -0
- package/restitution/model/restitution.model.d.ts +8 -0
- package/restitution/public-api.d.ts +4 -0
- package/restitution/restitution.module.d.ts +21 -0
- package/restitution/style/_o-restitution-list.scss +161 -0
- package/restitution/style/_o-restitution.scss +32 -0
- package/restitution/style/css.component.d.ts +5 -0
- package/search/components/choose-widget/choose-widget.component.d.ts +34 -0
- package/search/components/edit-named-query/edit-named-query.component.d.ts +37 -0
- package/search/components/edit-named-query-modal/edit-named-query-modal.component.d.ts +17 -0
- package/search/components/save-query/save-query.component.d.ts +36 -0
- package/search/components/save-query-button/save-query-button.component.d.ts +23 -0
- package/search/i18n/en.translations.d.ts +131 -0
- package/search/i18n/fr.translations.d.ts +131 -0
- package/search/index.d.ts +5 -0
- package/search/public-api.d.ts +12 -0
- package/search/search-fulltext/search-fulltext/search-fulltext.component.d.ts +56 -0
- package/search/search-fulltext/store/search-fulltext.actions.d.ts +21 -0
- package/search/search-fulltext/store/search-fulltext.effects.d.ts +25 -0
- package/search/search-fulltext/store/search-fulltext.service.d.ts +7 -0
- package/search/search-home/search-home.component.d.ts +76 -0
- package/search/search-mono-class/components/search-composed/search-composed.component.d.ts +27 -0
- package/search/search-mono-class/components/search-condition/search-condition.component.d.ts +42 -0
- package/search/search-mono-class/components/search-mono-class/search-mono-class.component.d.ts +15 -0
- package/search/search-mono-class/components/search-order/search-order.component.d.ts +25 -0
- package/search/search-mono-class/components/search-select-attribute/search-select-attribute.component.d.ts +16 -0
- package/search/search-mono-class/store/search-mono-class.actions.d.ts +119 -0
- package/search/search-mono-class/store/search-mono-class.effects.d.ts +64 -0
- package/search/search-mono-class/store/search-mono-class.reducer.d.ts +10 -0
- package/search/search-mono-class/store/search-mono-class.selectors.d.ts +13 -0
- package/search/search-mono-class/store/search-mono-class.service.d.ts +20 -0
- package/search/search-multi-class/components/multi-class-condition/multi-class-condition.component.d.ts +39 -0
- package/search/search-multi-class/components/multi-class-field-selection/multi-class-field-selection.component.d.ts +24 -0
- package/search/search-multi-class/components/search-multi-class/search-multi-class.component.d.ts +15 -0
- package/search/search-multi-class/store/search-multi-class.actions.d.ts +65 -0
- package/search/search-multi-class/store/search-multi-class.effects.d.ts +39 -0
- package/search/search-multi-class/store/search-multi-class.reducer.d.ts +8 -0
- package/search/search-multi-class/store/search-multi-class.selectors.d.ts +9 -0
- package/search/search-multi-class/store/search-multi-class.service.d.ts +15 -0
- package/search/search-tools/search-tools.component.d.ts +52 -0
- package/search/search.module.d.ts +37 -0
- package/search/style/_m-choose-widget.scss +108 -0
- package/search/style/_m-pry-search-select-attribute.scss +28 -0
- package/search/style/_o-edit-named-query-modal.scss +9 -0
- package/search/style/_o-edit-named-query.scss +29 -0
- package/search/style/_o-multi-class-condition.scss +65 -0
- package/search/style/_o-multi-class-field-selection.scss +64 -0
- package/search/style/_o-pry-search-composed.scss +89 -0
- package/search/style/_o-pry-search-condition.scss +54 -0
- package/search/style/_o-pry-search-home.scss +91 -0
- package/search/style/_o-pry-search-order.scss +14 -0
- package/search/style/_o-pry-search-tools.scss +150 -0
- package/search/style/_o-search-fulltext.scss +154 -0
- package/search/style/_o-search-mono-class.scss +45 -0
- package/search/style/_o-search-multi-class.scss +34 -0
- package/search/style/css.component.d.ts +5 -0
- package/styles/abstracts/_abstracts-overlays.scss +13 -0
- package/styles/abstracts/_abstracts-utils.scss +82 -0
- package/styles/abstracts/_functions.scss +229 -0
- package/styles/abstracts/_index.scss +5 -0
- package/styles/abstracts/_mixins.scss +309 -0
- package/styles/abstracts/_variables.scss +3 -0
- package/styles/base/_custom-scrollbar.scss +9 -0
- package/styles/base/_html-body.scss +5 -0
- package/styles/base/_index.scss +6 -0
- package/styles/base/_normalize.scss +351 -0
- package/styles/base/_reboot.scss +376 -0
- package/styles/base/_typography.scss +25 -0
- package/styles/base/_utils.scss +67 -0
- package/styles/components/_a-badge.scss +8 -0
- package/styles/components/_a-btn.scss +207 -0
- package/styles/components/_a-checkbox.scss +80 -0
- package/styles/components/_a-checkmark.scss +1 -0
- package/styles/components/_a-expandable-value.scss +51 -0
- package/styles/components/_a-form-field.scss +96 -0
- package/styles/components/_a-icon.scss +16 -0
- package/styles/components/_a-label.scss +16 -0
- package/styles/components/_a-link.scss +17 -0
- package/styles/components/_a-loader.scss +30 -0
- package/styles/components/_a-pastille.scss +14 -0
- package/styles/components/_a-pry-select-image.scss +16 -0
- package/styles/components/_a-pry-select.scss +19 -0
- package/styles/components/_a-range-slider.scss +105 -0
- package/styles/components/_a-table.scss +128 -0
- package/styles/components/_a-toggle.scss +150 -0
- package/styles/components/_m-actions-list.scss +25 -0
- package/styles/components/_m-btn-group.scss +58 -0
- package/styles/components/_m-btn-sorttable.scss +75 -0
- package/styles/components/_m-color-selector.scss +58 -0
- package/styles/components/_m-context-menu.scss +52 -0
- package/styles/components/_m-filter.scss +7 -0
- package/styles/components/_m-form-label-field.scss +55 -0
- package/styles/components/_m-form-radio-group.scss +47 -0
- package/styles/components/_m-image-selector.scss +11 -0
- package/styles/components/_m-metadata-tag.scss +55 -0
- package/styles/components/_m-minus-plus.scss +81 -0
- package/styles/components/_m-nav-links.scss +34 -0
- package/styles/components/_m-pry-overlay.scss +56 -0
- package/styles/components/_m-snackbar.scss +52 -0
- package/styles/components/_m-time-picker.scss +55 -0
- package/styles/components/_m-toolbox.scss +21 -0
- package/styles/components/_m-tooltip.scss +91 -0
- package/styles/components/_o-accordion.scss +24 -0
- package/styles/components/_o-card.scss +131 -0
- package/styles/components/_o-cards-list.scss +11 -0
- package/styles/components/_o-dashboard.scss +169 -0
- package/styles/components/_o-datasources.scss +83 -0
- package/styles/components/_o-date-picker.scss +141 -0
- package/styles/components/_o-draggable-menu.scss +54 -0
- package/styles/components/_o-form.scss +29 -0
- package/styles/components/_o-modal.scss +94 -0
- package/styles/components/_o-named-query.scss +43 -0
- package/styles/components/_o-object-panel.scss +109 -0
- package/styles/components/_o-panel.scss +37 -0
- package/styles/components/_o-properties.scss +42 -0
- package/styles/components/_o-pry-admin-classes-customize.scss +130 -0
- package/styles/components/_o-pry-card-menu.scss +105 -0
- package/styles/components/_o-pry-card.scss +97 -0
- package/styles/components/_o-pry-composed-condition.scss +84 -0
- package/styles/components/_o-pry-edit.scss +9 -0
- package/styles/components/_o-pry-expand-panel.scss +36 -0
- package/styles/components/_o-pry-stepper.scss +103 -0
- package/styles/components/_o-search-mono-class.scss +45 -0
- package/styles/components/_o-search-multi-class.scss +34 -0
- package/styles/components/_o-settings.scss +123 -0
- package/styles/components/_o-tabs.scss +108 -0
- package/styles/components/_o-widget.scss +208 -0
- package/styles/components/_overlay.scss +82 -0
- package/styles/layout/_o-base-layout.scss +113 -0
- package/styles/layout/_o-main-layout.scss +38 -0
- package/styles/layout/_o-manifest-layout.scss +89 -0
- package/styles/layout/_o-workspace.scss +61 -0
- package/styles/layout/grid/_grid.scss +141 -0
- package/styles/layout/grid/_visibility.scss +71 -0
- package/styles/layout/grid/mixins/_grid-mixins.scss +368 -0
- package/styles/layout/grid/mixins/_visibility-mixins.scss +115 -0
- package/styles/layout/grid/variables/_grid-variables.scss +41 -0
- package/styles/libs/_reset-lib-ol.scss +35 -0
- package/styles/main.scss +78 -0
- package/styles-theme/abstracts-theme/_abstracts-cards.theme.scss +22 -0
- package/styles-theme/abstracts-theme/_abstracts-overlays.theme.scss +10 -0
- package/styles-theme/abstracts-theme/_index.scss +3 -0
- package/styles-theme/abstracts-theme/_variables.theme.scss +5 -0
- package/styles-theme/abstracts-theme/variables/_index.scss +4 -0
- package/styles-theme/abstracts-theme/variables/_variables-colors.scss +113 -0
- package/styles-theme/abstracts-theme/variables/_variables-decoration.scss +49 -0
- package/styles-theme/abstracts-theme/variables/_variables-fonts.scss +40 -0
- package/styles-theme/abstracts-theme/variables/_variables-typo.scss +138 -0
- package/styles-theme/base-theme/_custom-scrollbar.theme.scss +8 -0
- package/styles-theme/base-theme/_fonts.theme.scss +37 -0
- package/styles-theme/base-theme/_html-body.theme.scss +6 -0
- package/styles-theme/base-theme/_index.scss +4 -0
- package/styles-theme/base-theme/_typography.theme.scss +27 -0
- package/styles-theme/components-theme/_a-badge.theme.scss +21 -0
- package/styles-theme/components-theme/_a-btn.theme.scss +214 -0
- package/styles-theme/components-theme/_a-checkbox.theme.scss +68 -0
- package/styles-theme/components-theme/_a-checkmark.theme.scss +4 -0
- package/styles-theme/components-theme/_a-expandable-value.theme.scss +23 -0
- package/styles-theme/components-theme/_a-form-field.theme.scss +63 -0
- package/styles-theme/components-theme/_a-icon.theme.scss +17 -0
- package/styles-theme/components-theme/_a-label.theme.scss +16 -0
- package/styles-theme/components-theme/_a-link.theme.scss +12 -0
- package/styles-theme/components-theme/_a-pastille.theme.scss +14 -0
- package/styles-theme/components-theme/_a-pry-select.theme.scss +117 -0
- package/styles-theme/components-theme/_a-range-slider.theme.scss +54 -0
- package/styles-theme/components-theme/_a-table.theme.scss +49 -0
- package/styles-theme/components-theme/_a-toggle.theme.scss +62 -0
- package/styles-theme/components-theme/_m-btn-sorttable.theme.scss +45 -0
- package/styles-theme/components-theme/_m-choose-widget.theme.scss +4 -0
- package/styles-theme/components-theme/_m-context-menu.theme.scss +46 -0
- package/styles-theme/components-theme/_m-metadata-tag.theme.scss +17 -0
- package/styles-theme/components-theme/_m-minus-plus.theme.scss +51 -0
- package/styles-theme/components-theme/_m-nav-links.theme.scss +4 -0
- package/styles-theme/components-theme/_m-notifications.theme.scss +90 -0
- package/styles-theme/components-theme/_m-pry-search-select-attribute.theme.scss +15 -0
- package/styles-theme/components-theme/_m-snackbar.theme.scss +42 -0
- package/styles-theme/components-theme/_m-time-picker.theme.scss +36 -0
- package/styles-theme/components-theme/_m-toolbox.theme.scss +15 -0
- package/styles-theme/components-theme/_m-tooltip.theme.scss +66 -0
- package/styles-theme/components-theme/_o-card.theme.scss +45 -0
- package/styles-theme/components-theme/_o-catalog.theme.scss +74 -0
- package/styles-theme/components-theme/_o-datasources.theme.scss +38 -0
- package/styles-theme/components-theme/_o-date-picker.theme.scss +37 -0
- package/styles-theme/components-theme/_o-draggable-menu.theme.scss +26 -0
- package/styles-theme/components-theme/_o-modal.theme.scss +28 -0
- package/styles-theme/components-theme/_o-multi-class-condition.theme.scss +22 -0
- package/styles-theme/components-theme/_o-multi-class-field-selection.theme.scss +43 -0
- package/styles-theme/components-theme/_o-named-query.theme.scss +19 -0
- package/styles-theme/components-theme/_o-object-panel.theme.scss +11 -0
- package/styles-theme/components-theme/_o-panel.theme.scss +18 -0
- package/styles-theme/components-theme/_o-pipeline.theme.scss +88 -0
- package/styles-theme/components-theme/_o-pry-admin-classes-customize.theme.scss +14 -0
- package/styles-theme/components-theme/_o-pry-card-menu.theme.scss +55 -0
- package/styles-theme/components-theme/_o-pry-card.theme.scss +44 -0
- package/styles-theme/components-theme/_o-pry-composed-condition.theme.scss +60 -0
- package/styles-theme/components-theme/_o-pry-dataset-card.theme.scss +18 -0
- package/styles-theme/components-theme/_o-pry-dataset.theme.scss +12 -0
- package/styles-theme/components-theme/_o-pry-expand-panel.theme.scss +12 -0
- package/styles-theme/components-theme/_o-pry-new-presentation.theme.scss +20 -0
- package/styles-theme/components-theme/_o-pry-presentation.theme.scss +39 -0
- package/styles-theme/components-theme/_o-pry-search-composed.theme.scss +44 -0
- package/styles-theme/components-theme/_o-pry-search-condition.theme.scss +10 -0
- package/styles-theme/components-theme/_o-pry-search-home.theme.scss +25 -0
- package/styles-theme/components-theme/_o-pry-search-tools.theme.scss +54 -0
- package/styles-theme/components-theme/_o-pry-stepper.theme.scss +35 -0
- package/styles-theme/components-theme/_o-restitution-list.theme.scss +27 -0
- package/styles-theme/components-theme/_o-restitution.theme.scss +7 -0
- package/styles-theme/components-theme/_o-search-fulltext.theme.scss +83 -0
- package/styles-theme/components-theme/_o-search-multi-class.theme.scss +28 -0
- package/styles-theme/components-theme/_o-select-grid-layout.theme.scss +33 -0
- package/styles-theme/components-theme/_o-settings.theme.scss +64 -0
- package/styles-theme/components-theme/_o-tabs.theme.scss +37 -0
- package/styles-theme/components-theme/_o-widget-detail.theme.scss +21 -0
- package/styles-theme/components-theme/_o-widget-graph.theme.scss +32 -0
- package/styles-theme/components-theme/_o-widget-iframe.theme.scss +30 -0
- package/styles-theme/components-theme/_o-widget-map.theme.scss +5 -0
- package/styles-theme/components-theme/_o-widget-table.theme.scss +18 -0
- package/styles-theme/components-theme/_o-widget-tile.theme.scss +21 -0
- package/styles-theme/components-theme/_o-widget.theme.scss +70 -0
- package/styles-theme/components-theme/_overlay.theme.scss +44 -0
- package/styles-theme/layout-theme/_o-base-layout.theme.scss +24 -0
- package/styles-theme/layout-theme/_o-manifest-layout.theme.scss +33 -0
- package/styles-theme/layout-theme/_o-workspace.theme.scss +18 -0
- package/styles-theme/libs-theme/_reset-lib-ol.theme.scss +38 -0
- package/styles-theme/main-theme.scss +83 -0
- package/supervision/components/supervision-business-data/supervision-business-data.component.d.ts +14 -0
- package/supervision/components/supervision-flow/supervision-flow.component.d.ts +14 -0
- package/supervision/components/supervision-infrastructures/supervision-infrastructures.component.d.ts +18 -0
- package/supervision/components/supervision-integration-errors/supervision-integration-errors-select/supervision-integration-errors-select.component.d.ts +14 -0
- package/supervision/components/supervision-integration-errors/supervision-integration-errors.component.d.ts +29 -0
- package/supervision/components/supervision-layout/supervision-layout.component.d.ts +21 -0
- package/supervision/components/supervision-menu/supervision-menu.component.d.ts +13 -0
- package/supervision/components/supervision-title/supervision-title.component.d.ts +11 -0
- package/supervision/components/supervision.component.d.ts +9 -0
- package/supervision/i18n/en.translations.d.ts +57 -0
- package/supervision/i18n/fr.translations.d.ts +57 -0
- package/supervision/index.d.ts +5 -0
- package/supervision/public-api.d.ts +1 -0
- package/supervision/store/supervision-api.model.d.ts +36 -0
- package/supervision/store/supervision.actions.d.ts +121 -0
- package/supervision/store/supervision.effects.d.ts +51 -0
- package/supervision/store/supervision.reducer.d.ts +22 -0
- package/supervision/store/supervision.selectors.d.ts +18 -0
- package/supervision/store/supervision.service.d.ts +19 -0
- package/supervision/supervision-routing.module.d.ts +7 -0
- package/supervision/supervision.module.d.ts +25 -0
- package/toolbox/components/clear-view/clear-view.component.d.ts +10 -0
- package/toolbox/components/drag-widgets/drag-widgets.component.d.ts +19 -0
- package/toolbox/components/edit-mode-toggle/edit-mode-toggle.component.d.ts +12 -0
- package/toolbox/components/filter-settings/filter-settings.component.d.ts +80 -0
- package/toolbox/components/launch-tab/launch-tab.component.d.ts +10 -0
- package/toolbox/components/named-query/named-query.component.d.ts +15 -0
- package/toolbox/components/save-view/save-view.component.d.ts +53 -0
- package/toolbox/components/select-grid-layout/select-grid-layout.component.d.ts +35 -0
- package/toolbox/components/toolbox.component.d.ts +11 -0
- package/toolbox/index.d.ts +5 -0
- package/toolbox/public-api.d.ts +11 -0
- package/toolbox/style/_o-filter-settings.scss +96 -0
- package/toolbox/style/_o-select-grid-layout.scss +43 -0
- package/toolbox/style/css.component.d.ts +5 -0
- package/toolbox/toolbox.module.d.ts +23 -0
- package/tooltips/attribute/attribute-tooltip.component.d.ts +10 -0
- package/tooltips/attribute/attribute-tooltip.module.d.ts +14 -0
- package/tooltips/attribute/index.d.ts +5 -0
- package/tooltips/attribute/public-api.d.ts +2 -0
- package/tooltips/cluster/cluster-tooltip.component.d.ts +6 -0
- package/tooltips/cluster/cluster-tooltip.module.d.ts +13 -0
- package/tooltips/cluster/index.d.ts +5 -0
- package/tooltips/cluster/public-api.d.ts +2 -0
- package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +101 -0
- package/widgets/widget-aggregated-chart/i18n/en.translations.d.ts +103 -0
- package/widgets/widget-aggregated-chart/i18n/fr.translations.d.ts +103 -0
- package/widgets/widget-aggregated-chart/index.d.ts +5 -0
- package/widgets/widget-aggregated-chart/public-api.d.ts +5 -0
- package/widgets/widget-aggregated-chart/service/backend-aggregation.service.d.ts +21 -0
- package/widgets/widget-aggregated-chart/service/base-aggregation.service.d.ts +21 -0
- package/widgets/widget-aggregated-chart/service/frontend-aggregation.service.d.ts +32 -0
- package/widgets/widget-aggregated-chart/style/_o-widget-chart.scss +43 -0
- package/widgets/widget-aggregated-chart/style/css.component.d.ts +5 -0
- package/widgets/widget-aggregated-chart/widget-aggregated-chart.module.d.ts +18 -0
- package/widgets/widget-chart/component/vega-error.handler.d.ts +6 -0
- package/widgets/widget-chart/component/vega-spec.constant.d.ts +98 -0
- package/widgets/widget-chart/component/widget-chart.component.d.ts +151 -0
- package/widgets/widget-chart/i18n/en.translations.d.ts +113 -0
- package/widgets/widget-chart/i18n/fr.translations.d.ts +113 -0
- package/widgets/widget-chart/index.d.ts +5 -0
- package/widgets/widget-chart/public-api.d.ts +2 -0
- package/widgets/widget-chart/style/_o-widget-chart.scss +43 -0
- package/widgets/widget-chart/style/css.component.d.ts +5 -0
- package/widgets/widget-chart/widget-chart.module.d.ts +18 -0
- package/widgets/widget-detail/component/widget-detail.component.d.ts +45 -0
- package/widgets/widget-detail/i18n/en.translations.d.ts +13 -0
- package/widgets/widget-detail/i18n/fr.translations.d.ts +13 -0
- package/widgets/widget-detail/index.d.ts +5 -0
- package/widgets/widget-detail/public-api.d.ts +2 -0
- package/widgets/widget-detail/style/_o-widget-detail.scss +60 -0
- package/widgets/widget-detail/style/css.component.d.ts +5 -0
- package/widgets/widget-detail/widget-detail.module.d.ts +18 -0
- package/widgets/widget-graph/component/widget-graph.component.d.ts +101 -0
- package/widgets/widget-graph/i18n/en.translations.d.ts +14 -0
- package/widgets/widget-graph/i18n/fr.translations.d.ts +14 -0
- package/widgets/widget-graph/index.d.ts +5 -0
- package/widgets/widget-graph/layout/node.interface.d.ts +12 -0
- package/widgets/widget-graph/layout/simple.function.d.ts +9 -0
- package/widgets/widget-graph/public-api.d.ts +3 -0
- package/widgets/widget-graph/style/_o-widget-graph.scss +4 -0
- package/widgets/widget-graph/style/css.component.d.ts +5 -0
- package/widgets/widget-graph/widget-graph.module.d.ts +18 -0
- package/widgets/widget-iframe/component/widget-iframe.component.d.ts +20 -0
- package/widgets/widget-iframe/i18n/en.translations.d.ts +10 -0
- package/widgets/widget-iframe/i18n/fr.translations.d.ts +10 -0
- package/widgets/widget-iframe/index.d.ts +5 -0
- package/widgets/widget-iframe/messaging/iframe-message-type.interface.d.ts +8 -0
- package/widgets/widget-iframe/messaging/iframe-messaging.service.d.ts +10 -0
- package/widgets/widget-iframe/public-api.d.ts +4 -0
- package/widgets/widget-iframe/style/_o-widget-iframe.scss +19 -0
- package/widgets/widget-iframe/style/css.component.d.ts +5 -0
- package/widgets/widget-iframe/widget-iframe.module.d.ts +18 -0
- package/widgets/widget-image/component/widget-image.component.d.ts +13 -0
- package/widgets/widget-image/index.d.ts +5 -0
- package/widgets/widget-image/public-api.d.ts +2 -0
- package/widgets/widget-image/style/_o-widget-image.scss +7 -0
- package/widgets/widget-image/style/css.component.d.ts +5 -0
- package/widgets/widget-image/widget-image.module.d.ts +14 -0
- package/widgets/widget-map/component/widget-map-layer.service.d.ts +98 -0
- package/widgets/widget-map/component/widget-map.component.d.ts +136 -0
- package/widgets/widget-map/i18n/en.translations.d.ts +80 -0
- package/widgets/widget-map/i18n/fr.translations.d.ts +80 -0
- package/widgets/widget-map/index.d.ts +5 -0
- package/widgets/widget-map/interaction/selection-interaction.class.d.ts +25 -0
- package/widgets/widget-map/pipe/widget-map-geometry-fields-for.pipe.d.ts +14 -0
- package/widgets/widget-map/pipe/widget-map-legend-url.pipe.d.ts +8 -0
- package/widgets/widget-map/public-api.d.ts +6 -0
- package/widgets/widget-map/reader/kmz-zip-reader.class.d.ts +12 -0
- package/widgets/widget-map/reader/map-formats-reader.class.d.ts +15 -0
- package/widgets/widget-map/reader/random-color-style.function.d.ts +6 -0
- package/widgets/widget-map/reader/read-as-text.class.d.ts +10 -0
- package/widgets/widget-map/reader/shp-zip-reader.class.d.ts +10 -0
- package/widgets/widget-map/search-bar/search-bar.control.d.ts +27 -0
- package/widgets/widget-map/style/_o-layer-legend.scss +42 -0
- package/widgets/widget-map/style/_o-widget-map.scss +69 -0
- package/widgets/widget-map/style/css.component.d.ts +5 -0
- package/widgets/widget-map/utils/widget-map.utils.d.ts +29 -0
- package/widgets/widget-map/widget-map.module.d.ts +20 -0
- package/widgets/widget-table/component/widget-table.component.d.ts +41 -0
- package/widgets/widget-table/expand-value/detach-row.directive.d.ts +12 -0
- package/widgets/widget-table/expand-value/expand-value.component.d.ts +10 -0
- package/widgets/widget-table/expand-value/format-number.pipe.d.ts +12 -0
- package/widgets/widget-table/get-value/get-value.pipe.d.ts +11 -0
- package/widgets/widget-table/i18n/en.translations.d.ts +14 -0
- package/widgets/widget-table/i18n/fr.translations.d.ts +14 -0
- package/widgets/widget-table/index.d.ts +5 -0
- package/widgets/widget-table/public-api.d.ts +5 -0
- package/widgets/widget-table/resizable/resizable.component.d.ts +7 -0
- package/widgets/widget-table/resizable/resizable.directive.d.ts +10 -0
- package/widgets/widget-table/style/_o-widget-table.scss +64 -0
- package/widgets/widget-table/style/css.component.d.ts +5 -0
- package/widgets/widget-table/widget-table.module.d.ts +24 -0
- package/widgets/widget-template/component/widget-template.component.d.ts +21 -0
- package/widgets/widget-template/index.d.ts +5 -0
- package/widgets/widget-template/public-api.d.ts +2 -0
- package/widgets/widget-template/style/_o-widget-template.scss +8 -0
- package/widgets/widget-template/style/css.component.d.ts +5 -0
- package/widgets/widget-template/widget-template.module.d.ts +16 -0
- package/widgets/widget-tile/component/widget-tile.component.d.ts +47 -0
- package/widgets/widget-tile/i18n/en.translations.d.ts +12 -0
- package/widgets/widget-tile/i18n/fr.translations.d.ts +12 -0
- package/widgets/widget-tile/index.d.ts +5 -0
- package/widgets/widget-tile/public-api.d.ts +2 -0
- package/widgets/widget-tile/style/_o-widget-tile.scss +83 -0
- package/widgets/widget-tile/style/css.component.d.ts +5 -0
- package/widgets/widget-tile/widget-tile.module.d.ts +20 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Component, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class PrySearchCssComponent {
|
|
4
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: PrySearchCssComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: PrySearchCssComponent, selector: "pry-search-css", ngImport: i0, template: '', isInline: true, styles: ["pry-choose-widget{display:flex;max-width:21.875rem;height:2.25rem}.m-choose-widget{display:flex;flex-direction:column;align-items:center;justify-content:flex-start}.m-choose-widget__input{position:relative;display:flex;flex:1;overflow:hidden;width:100%;height:100%;border-radius:0 .25rem .25rem 0;border-left-width:1px;border-left-style:solid;cursor:pointer}.m-choose-widget__input input{height:2.25rem;border:none;outline:none;width:100%;padding-left:.75rem;border-radius:0 .25rem .25rem 0}.m-choose-widget__input__inline{display:contents;flex-grow:0;overflow:hidden;width:inherit;min-width:25rem;border-radius:0}.m-choose-widget__input__inline input{width:360px;border-radius:0}.m-choose-widget__widget_overlay{width:inherit;height:inherit}.m-choose-widget__widget_overlay__content{position:relative;bottom:.125rem;display:flex;justify-content:flex-start;flex-wrap:wrap;gap:.25rem;width:16.4375rem;padding:.5rem;border-radius:.3125rem}.m-choose-widget__widget_overlay__content__item{display:flex;flex-direction:column;align-items:center;justify-content:flex-end;overflow:hidden;width:3.625rem;height:3.625rem;border-radius:.3125rem;cursor:pointer}.m-choose-widget__widget_overlay__content__item:hover{border-width:.0625rem;border-style:solid}.m-choose-widget__widget_overlay__content__item__label{overflow:hidden;width:3.1875rem;margin:0 .125rem;font-size:.6875rem;text-align:center;text-overflow:ellipsis;white-space:nowrap}.m-choose-widget__widget_overlay__content__item__selected{border-width:.0625rem;border-style:solid}.m-choose-widget__buttons-widget img{margin-right:.1875rem;filter:invert(100%)}\n", ".o-edit-named-query-wrapper{height:100%}.o-edit-named-query{display:flex;justify-content:space-between;flex-direction:column;overflow:hidden;height:100%}.o-edit-named-query__content{overflow:auto}.o-edit-named-query__buttons{display:flex;gap:1.25rem}.o-edit-named-query__buttons pry-choose-widget,.o-edit-named-query__buttons .m-choose-widget{height:auto}\n", ".o-search-fulltext{display:flex;align-items:center;justify-content:flex-start;gap:10px;width:inherit}.o-search-fulltext--vertical{flex-direction:column;width:100%}.o-search-fulltext--vertical>.o-search-fulltext__container{width:100%}.o-search-fulltext__container{display:flex;height:2.25rem}.o-search-fulltext__classes{display:flex;align-items:center;overflow:hidden;min-width:3.75rem;height:100%;padding:0;border:none;border-radius:.25rem 0 0 .25rem;cursor:pointer}.o-search-fulltext__classes--inline{width:14.125rem;padding:0;margin:0}.o-search-fulltext__classes--inline .o-search-fulltext__classes__content{flex-direction:row}.o-search-fulltext__classes--inline .o-search-fulltext__classes__content__label{line-height:1}.o-search-fulltext__classes--inline .o-search-fulltext__classes__arrow{width:36px;border-left-width:1px;border-left-style:solid}.o-search-fulltext__classes__content{flex:1;display:flex;align-items:center;gap:.3125rem;padding:.53125rem .75rem}.o-search-fulltext__classes__arrow{display:flex;justify-content:center;align-items:center;width:1.875rem;height:100%}.o-search-fulltext__classes__arrow__icon{transition:transform .3s ease-in-out}.o-search-fulltext__classes__arrow__icon.is-open{transform:rotate(180deg)}.o-search-fulltext__input__clear{position:absolute;right:.625rem;top:.5rem}.o-search-fulltext__input__clear__wrapper{display:flex;align-items:center;justify-content:center;width:1.25rem;height:1.25rem;padding:.125rem;border-radius:50%}.o-search-fulltext__button{display:flex;width:100%;margin-right:0;margin-top:.3125rem}.o-search-fulltext__button__inline{display:flex;align-items:center;margin:0;padding:0 .375rem;width:inherit;min-width:inherit;height:2.25rem;border-radius:0 .25rem .25rem 0;border:0 solid transparent}.o-search-fulltext__classes-overlay{display:flex;flex-direction:column;overflow:auto;max-height:12.5rem;padding:.3125rem 0}.o-search-fulltext__classes-overlay__inline{width:14.375rem;border-radius:.25rem}.o-search-fulltext__classes-overlay__item{display:flex;align-items:center;gap:.5rem;width:93%;height:2rem;margin:0 auto .1875rem;padding:.5rem;border-radius:.3125rem;cursor:pointer}.o-search-fulltext__classes-overlay__item:first-child{font-weight:700;white-space:nowrap}.o-search-fulltext__classes-overlay__item__label{text-transform:capitalize}\n", ".o-pry-search-composed-wrapper{max-width:max-content;margin-bottom:.875rem;border-radius:.3125rem}.o-pry-search-composed{display:flex;max-width:84%;min-width:94%;padding:.625rem}.o-pry-search-composed__condition{display:flex;align-items:center;max-width:-moz-fit-content;max-width:fit-content}.o-pry-search-composed__condition:first-of-type{margin-top:0;margin-bottom:0;background:transparent}.o-pry-search-composed__condition__type{position:relative;display:flex;align-items:center;justify-content:center;height:100%}.o-pry-search-composed__condition__type .a-toggle{gap:0;margin-top:3px}.o-pry-search-composed__condition__type.-vertical-bar:before{content:\"\";position:absolute;left:calc(50% - 1px);top:-3px;bottom:-3px;display:block;width:2px}.o-pry-search-composed__condition__content{display:flex;align-items:stretch;flex-direction:column;width:max-content;margin-left:1rem;border-radius:.25rem}.o-pry-search-composed__condition__content__footer{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;margin-bottom:.3125rem}.o-pry-search-composed__condition__content__footer .a-btn{margin-top:0}.o-pry-search-composed__condition__content__footer .a-btn:nth-of-type(2){margin-right:0}.o-pry-search-composed__condition__content__footer__remove.a-btn.-circle{width:1.5625rem;height:1.5625rem;padding:.1875rem}pry-search-select-attribute{width:9.75rem}\n", ".o-pry-search-order{display:flex;flex-direction:row;align-items:center;gap:.625rem;padding-bottom:1.25rem}.o-pry-search-order .a-pry-select{width:200px}\n", ".m-pry-search-select-attribute{margin:0;padding:0}.m-pry-search-select-attribute li{list-style:none}.m-pry-search-select-attribute__item:last-of-type{margin-bottom:.375rem}.m-pry-search-select-attribute__item:first-of-type{margin-top:.375rem}.m-pry-search-select-attribute__item .a-btn{overflow:hidden;max-width:-moz-fit-content;max-width:fit-content;height:auto;margin:1px .375rem;padding:.5rem;border-radius:.25rem;white-space:nowrap;text-overflow:ellipsis;cursor:pointer}\n", ".o-multi-class-condition{display:flex;gap:.625rem;justify-content:space-between;margin-top:.3125rem;padding-left:.25rem;border-left-width:.25rem;border-left-style:solid;border-radius:.3125rem;overflow:hidden}.o-multi-class-condition:hover .o-multi-class-condition__delete-content{opacity:1}.o-multi-class-condition__content{display:flex;flex-direction:column;flex:1;gap:.5rem;width:12.8125rem;padding:.5rem 0 .5rem .25rem}.o-multi-class-condition__content__action{display:flex;justify-content:center;align-items:center;gap:.3125rem;cursor:pointer}.o-multi-class-condition__content__action__button{flex:1;margin-right:0;padding-left:.4375rem;padding-right:.4375rem}.o-multi-class-condition__content .m-form-label-field{margin-bottom:.3125rem}.o-multi-class-condition__content .m-form-label-field .a-form-field+.a-form-field{margin-top:.625rem}.o-multi-class-condition__delete-content{display:flex;align-items:center;justify-content:center;width:24px;opacity:0}.o-multi-class-condition__delete-content .a-btn:disabled{pointer-events:auto;cursor:not-allowed}\n", ".o-search-mono-class{display:flex;flex-direction:column;gap:.3125rem;overflow:auto;height:100%;padding:.625rem}.o-search-mono-class__header{display:flex;flex-direction:column;width:100%;gap:.3125rem}.o-search-mono-class__header>.m-form-label-field{margin-bottom:0}.o-search-mono-class__header__selected{display:flex;align-items:center;gap:.5rem}.o-search-mono-class__content-wrapper{overflow-x:hidden;flex:1;width:100%}.o-search-mono-class__content{width:100%;height:100%;overflow:auto}.o-search-mono-class__content__title{margin:2rem 0 1.5625rem}\n", ".o-pry-search-condition-wrapper{display:flex;flex:1;flex-direction:column;gap:.5rem;width:100%;margin:0 .5rem 0rem 0}.o-pry-search-condition{display:flex;align-items:center;gap:.3125rem;width:100%}.o-pry-search-condition__fields{display:flex;align-items:center;gap:.25rem}.o-pry-search-condition__fields.has-date-picker{flex-wrap:wrap;width:min-content}.o-pry-search-condition__fields.has-date-picker .a-form-field{flex-grow:0}.o-pry-search-condition .a-form-field{width:7.8125rem;height:2.25rem}.o-pry-search-condition .a-form-field::placeholder{font-size:13px}.o-pry-search-condition .a-pry-select.operator{width:7.8125rem}.o-pry-search-condition__date-picker{width:15.875rem;margin-right:.0625rem;border-style:solid;border-radius:.25rem;font-size:.875rem}\n", ".o-pry-search-tools-wrapper{display:block;overflow:hidden;height:100%;width:100%;transition:all .3s ease-in-out}.o-pry-search-tools-wrapper.is-close{width:50px}.o-pry-search-tools-wrapper.is-close .o-pry-search-tools__content,.o-pry-search-tools-wrapper.is-close .o-pry-search-tools__footer{opacity:0}.o-pry-search-tools-wrapper.is-mono:not(.is-close){width:700px}.o-pry-search-tools{display:flex;flex-direction:column;overflow:hidden;width:100%;height:100%;transition:all .3s ease-in-out}.o-pry-search-tools.is-close{width:50px;border-right-width:1px;border-right-style:solid}.o-pry-search-tools.is-mono:not(.is-close){width:700px}.o-pry-search-tools__header{position:relative;display:flex;justify-content:space-between;align-items:center;height:4rem;padding:1.375rem .9375rem;border-bottom-width:.0625rem;border-bottom-style:solid}.o-pry-search-tools__header__title{display:flex;gap:1.25rem;align-items:center}.o-pry-search-tools__header__title .a-h2,.o-pry-search-tools__header__title .a-h3{padding-bottom:0}.o-pry-search-tools__header button#hide_search{position:absolute;right:.875rem;top:auto;left:auto}.o-pry-search-tools__header button#hide_search[aria-pressed=true]{transform:rotate(180deg)}.o-pry-search-tools__content{flex:1;display:flex;flex-direction:column;width:100%;overflow-x:hidden;overflow-y:auto;padding:1.25rem .5rem .5rem}.o-pry-search-tools__content__full{flex:1;width:100%;overflow-x:hidden;overflow-y:auto}.o-pry-search-tools__content__button-search{display:flex;justify-content:flex-start;gap:10px}.o-pry-search-tools__content__button-search pry-choose-widget{height:auto}.o-pry-search-tools__content #btn_reset{margin-right:.625rem;margin-bottom:1.875rem;padding:0 .5rem}.o-pry-search-tools__content #btn_reset:focus{outline:2px solid #35b99f}.o-pry-search-tools__content #btn_reset:focus:not(:focus-visible){outline:0}.o-pry-search-tools__content #btn_reset:focus-visible{outline:0;border-radius:.5rem;box-shadow:0 0 0 2px #fff,0 0 0 4px #35b99f}.o-pry-search-tools__content pry-share{padding:0 .625rem}.o-pry-search-tools__footer{display:flex;flex-direction:row;justify-content:space-between;align-items:center;width:100%;margin:1rem auto 0;padding:0 .9375rem;border-top-width:.0625rem;border-top-style:solid}.o-pry-search-tools__footer__close{opacity:0}.o-pry-search-tools__footer__params{cursor:pointer}.o-pry-search-tools__footer .save-query-button{display:flex;flex-direction:row;align-items:center;margin:0;padding-left:0}.o-pry-search-tools__footer .save-query-button:disabled{opacity:.5}.o-pry-search-tools__footer .save-query-button__text{padding-left:.25rem;font-size:.875rem}\n", ".o-edit-named-query-modal{top:2.1875rem;bottom:0;width:320px}\n", ".o-multi-class-field-selection__fields{margin:0;padding:0}.o-multi-class-field-selection__fields li{list-style:none}.o-multi-class-field-selection{display:flex;flex-direction:column;width:100%;max-width:34.375rem;min-width:21.875rem;max-height:56.25rem;height:100%;border-radius:.5rem;background-color:#fff;box-shadow:2px 3px 10px 2px #0003}.o-multi-class-field-selection__header{padding:1.5rem;border-radius:.5rem .5rem 0 0}.o-multi-class-field-selection__header__top{display:flex;justify-content:space-between}.o-multi-class-field-selection__header__search{display:flex;flex-direction:column}.o-multi-class-field-selection__legend{padding:.9375rem 1.5rem;font-style:italic}.o-multi-class-field-selection__fields{overflow:auto;margin:0 0 .5rem}.o-multi-class-field-selection__fields__select{padding:.5rem 1.5rem;cursor:pointer}.o-multi-class-field-selection__fields__select .a-btn{gap:6px;max-width:100%;font-weight:500;transition:none;height:4rem}.o-multi-class-field-selection__fields__select__inside{font-weight:300;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}\n", ".o-search-multi-class{position:relative;height:100%;padding:.625rem .3125rem}.o-search-multi-class__header{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:.5rem}.o-search-multi-class__header .a-h3{padding-bottom:0}.o-search-multi-class__add-condition{padding-top:.625rem}.o-search-multi-class__add-condition .a-btn{margin-bottom:.9375rem}.o-search-multi-class .a-btn.a-btn--icon-text{height:auto;padding:5px 2px}.o-search-multi-class .a-btn.a-btn--icon-text:focus{outline:2px solid #35b99f}.o-search-multi-class .a-btn.a-btn--icon-text:focus:not(:focus-visible){outline:0}.o-search-multi-class .a-btn.a-btn--icon-text:focus-visible{outline:0;border-radius:.375rem;box-shadow:0 0 0 2px #fff,0 0 0 4px #35b99f}\n", ".o-pry-search-home{display:flex;flex-direction:column;align-items:stretch;height:100%}.o-pry-search-home__named-query{flex:1;display:flex;flex-direction:column;overflow:auto}.o-pry-search-home__named-query__card{overflow:auto;max-height:100%}.o-pry-search-home__named-query__card__load{display:flex;justify-content:center;align-items:center;width:5.375rem;height:2.25rem;margin:0 0 0 .3125rem;border-radius:3.125rem;cursor:pointer}.o-pry-search-home__named-query__card__container-menu{z-index:1001;display:flex;flex-direction:column;margin:.125rem;padding:.375rem .9375rem;border-radius:.3125rem;box-shadow:2px 3px 10px 2px #0003}.o-pry-search-home__named-query__card__container-menu>*{padding:.3125rem;cursor:pointer}.o-pry-search-home__named-query__card__container-menu>*:hover{border-radius:.375rem}.o-pry-search-home__named-query #btn_view_more{align-self:flex-end;margin-top:.625rem}.o-pry-search-home__search{display:flex;flex-direction:column;align-items:stretch;gap:.25rem;margin:0 1.125rem;padding-top:1.25rem}.o-pry-search-home__search .a-h3{margin-bottom:.3125rem;padding-bottom:0}.o-pry-search-home__search__or{margin:.3125rem auto;padding:0;text-align:center;font-size:1rem}.o-pry-search-home__search .o-search-fulltext__container{margin-bottom:.625rem}.o-pry-search-home__search .o-search-fulltext__container pry-choose-widget{flex-grow:1}.o-draggable-menu.-search-home{margin-left:14rem;margin-top:-1.6875rem}\n"], encapsulation: i0.ViewEncapsulation.None }); }
|
|
6
|
+
}
|
|
7
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: PrySearchCssComponent, decorators: [{
|
|
8
|
+
type: Component,
|
|
9
|
+
args: [{ selector: 'pry-search-css', template: '', encapsulation: ViewEncapsulation.None, styles: ["pry-choose-widget{display:flex;max-width:21.875rem;height:2.25rem}.m-choose-widget{display:flex;flex-direction:column;align-items:center;justify-content:flex-start}.m-choose-widget__input{position:relative;display:flex;flex:1;overflow:hidden;width:100%;height:100%;border-radius:0 .25rem .25rem 0;border-left-width:1px;border-left-style:solid;cursor:pointer}.m-choose-widget__input input{height:2.25rem;border:none;outline:none;width:100%;padding-left:.75rem;border-radius:0 .25rem .25rem 0}.m-choose-widget__input__inline{display:contents;flex-grow:0;overflow:hidden;width:inherit;min-width:25rem;border-radius:0}.m-choose-widget__input__inline input{width:360px;border-radius:0}.m-choose-widget__widget_overlay{width:inherit;height:inherit}.m-choose-widget__widget_overlay__content{position:relative;bottom:.125rem;display:flex;justify-content:flex-start;flex-wrap:wrap;gap:.25rem;width:16.4375rem;padding:.5rem;border-radius:.3125rem}.m-choose-widget__widget_overlay__content__item{display:flex;flex-direction:column;align-items:center;justify-content:flex-end;overflow:hidden;width:3.625rem;height:3.625rem;border-radius:.3125rem;cursor:pointer}.m-choose-widget__widget_overlay__content__item:hover{border-width:.0625rem;border-style:solid}.m-choose-widget__widget_overlay__content__item__label{overflow:hidden;width:3.1875rem;margin:0 .125rem;font-size:.6875rem;text-align:center;text-overflow:ellipsis;white-space:nowrap}.m-choose-widget__widget_overlay__content__item__selected{border-width:.0625rem;border-style:solid}.m-choose-widget__buttons-widget img{margin-right:.1875rem;filter:invert(100%)}\n", ".o-edit-named-query-wrapper{height:100%}.o-edit-named-query{display:flex;justify-content:space-between;flex-direction:column;overflow:hidden;height:100%}.o-edit-named-query__content{overflow:auto}.o-edit-named-query__buttons{display:flex;gap:1.25rem}.o-edit-named-query__buttons pry-choose-widget,.o-edit-named-query__buttons .m-choose-widget{height:auto}\n", ".o-search-fulltext{display:flex;align-items:center;justify-content:flex-start;gap:10px;width:inherit}.o-search-fulltext--vertical{flex-direction:column;width:100%}.o-search-fulltext--vertical>.o-search-fulltext__container{width:100%}.o-search-fulltext__container{display:flex;height:2.25rem}.o-search-fulltext__classes{display:flex;align-items:center;overflow:hidden;min-width:3.75rem;height:100%;padding:0;border:none;border-radius:.25rem 0 0 .25rem;cursor:pointer}.o-search-fulltext__classes--inline{width:14.125rem;padding:0;margin:0}.o-search-fulltext__classes--inline .o-search-fulltext__classes__content{flex-direction:row}.o-search-fulltext__classes--inline .o-search-fulltext__classes__content__label{line-height:1}.o-search-fulltext__classes--inline .o-search-fulltext__classes__arrow{width:36px;border-left-width:1px;border-left-style:solid}.o-search-fulltext__classes__content{flex:1;display:flex;align-items:center;gap:.3125rem;padding:.53125rem .75rem}.o-search-fulltext__classes__arrow{display:flex;justify-content:center;align-items:center;width:1.875rem;height:100%}.o-search-fulltext__classes__arrow__icon{transition:transform .3s ease-in-out}.o-search-fulltext__classes__arrow__icon.is-open{transform:rotate(180deg)}.o-search-fulltext__input__clear{position:absolute;right:.625rem;top:.5rem}.o-search-fulltext__input__clear__wrapper{display:flex;align-items:center;justify-content:center;width:1.25rem;height:1.25rem;padding:.125rem;border-radius:50%}.o-search-fulltext__button{display:flex;width:100%;margin-right:0;margin-top:.3125rem}.o-search-fulltext__button__inline{display:flex;align-items:center;margin:0;padding:0 .375rem;width:inherit;min-width:inherit;height:2.25rem;border-radius:0 .25rem .25rem 0;border:0 solid transparent}.o-search-fulltext__classes-overlay{display:flex;flex-direction:column;overflow:auto;max-height:12.5rem;padding:.3125rem 0}.o-search-fulltext__classes-overlay__inline{width:14.375rem;border-radius:.25rem}.o-search-fulltext__classes-overlay__item{display:flex;align-items:center;gap:.5rem;width:93%;height:2rem;margin:0 auto .1875rem;padding:.5rem;border-radius:.3125rem;cursor:pointer}.o-search-fulltext__classes-overlay__item:first-child{font-weight:700;white-space:nowrap}.o-search-fulltext__classes-overlay__item__label{text-transform:capitalize}\n", ".o-pry-search-composed-wrapper{max-width:max-content;margin-bottom:.875rem;border-radius:.3125rem}.o-pry-search-composed{display:flex;max-width:84%;min-width:94%;padding:.625rem}.o-pry-search-composed__condition{display:flex;align-items:center;max-width:-moz-fit-content;max-width:fit-content}.o-pry-search-composed__condition:first-of-type{margin-top:0;margin-bottom:0;background:transparent}.o-pry-search-composed__condition__type{position:relative;display:flex;align-items:center;justify-content:center;height:100%}.o-pry-search-composed__condition__type .a-toggle{gap:0;margin-top:3px}.o-pry-search-composed__condition__type.-vertical-bar:before{content:\"\";position:absolute;left:calc(50% - 1px);top:-3px;bottom:-3px;display:block;width:2px}.o-pry-search-composed__condition__content{display:flex;align-items:stretch;flex-direction:column;width:max-content;margin-left:1rem;border-radius:.25rem}.o-pry-search-composed__condition__content__footer{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;margin-bottom:.3125rem}.o-pry-search-composed__condition__content__footer .a-btn{margin-top:0}.o-pry-search-composed__condition__content__footer .a-btn:nth-of-type(2){margin-right:0}.o-pry-search-composed__condition__content__footer__remove.a-btn.-circle{width:1.5625rem;height:1.5625rem;padding:.1875rem}pry-search-select-attribute{width:9.75rem}\n", ".o-pry-search-order{display:flex;flex-direction:row;align-items:center;gap:.625rem;padding-bottom:1.25rem}.o-pry-search-order .a-pry-select{width:200px}\n", ".m-pry-search-select-attribute{margin:0;padding:0}.m-pry-search-select-attribute li{list-style:none}.m-pry-search-select-attribute__item:last-of-type{margin-bottom:.375rem}.m-pry-search-select-attribute__item:first-of-type{margin-top:.375rem}.m-pry-search-select-attribute__item .a-btn{overflow:hidden;max-width:-moz-fit-content;max-width:fit-content;height:auto;margin:1px .375rem;padding:.5rem;border-radius:.25rem;white-space:nowrap;text-overflow:ellipsis;cursor:pointer}\n", ".o-multi-class-condition{display:flex;gap:.625rem;justify-content:space-between;margin-top:.3125rem;padding-left:.25rem;border-left-width:.25rem;border-left-style:solid;border-radius:.3125rem;overflow:hidden}.o-multi-class-condition:hover .o-multi-class-condition__delete-content{opacity:1}.o-multi-class-condition__content{display:flex;flex-direction:column;flex:1;gap:.5rem;width:12.8125rem;padding:.5rem 0 .5rem .25rem}.o-multi-class-condition__content__action{display:flex;justify-content:center;align-items:center;gap:.3125rem;cursor:pointer}.o-multi-class-condition__content__action__button{flex:1;margin-right:0;padding-left:.4375rem;padding-right:.4375rem}.o-multi-class-condition__content .m-form-label-field{margin-bottom:.3125rem}.o-multi-class-condition__content .m-form-label-field .a-form-field+.a-form-field{margin-top:.625rem}.o-multi-class-condition__delete-content{display:flex;align-items:center;justify-content:center;width:24px;opacity:0}.o-multi-class-condition__delete-content .a-btn:disabled{pointer-events:auto;cursor:not-allowed}\n", ".o-search-mono-class{display:flex;flex-direction:column;gap:.3125rem;overflow:auto;height:100%;padding:.625rem}.o-search-mono-class__header{display:flex;flex-direction:column;width:100%;gap:.3125rem}.o-search-mono-class__header>.m-form-label-field{margin-bottom:0}.o-search-mono-class__header__selected{display:flex;align-items:center;gap:.5rem}.o-search-mono-class__content-wrapper{overflow-x:hidden;flex:1;width:100%}.o-search-mono-class__content{width:100%;height:100%;overflow:auto}.o-search-mono-class__content__title{margin:2rem 0 1.5625rem}\n", ".o-pry-search-condition-wrapper{display:flex;flex:1;flex-direction:column;gap:.5rem;width:100%;margin:0 .5rem 0rem 0}.o-pry-search-condition{display:flex;align-items:center;gap:.3125rem;width:100%}.o-pry-search-condition__fields{display:flex;align-items:center;gap:.25rem}.o-pry-search-condition__fields.has-date-picker{flex-wrap:wrap;width:min-content}.o-pry-search-condition__fields.has-date-picker .a-form-field{flex-grow:0}.o-pry-search-condition .a-form-field{width:7.8125rem;height:2.25rem}.o-pry-search-condition .a-form-field::placeholder{font-size:13px}.o-pry-search-condition .a-pry-select.operator{width:7.8125rem}.o-pry-search-condition__date-picker{width:15.875rem;margin-right:.0625rem;border-style:solid;border-radius:.25rem;font-size:.875rem}\n", ".o-pry-search-tools-wrapper{display:block;overflow:hidden;height:100%;width:100%;transition:all .3s ease-in-out}.o-pry-search-tools-wrapper.is-close{width:50px}.o-pry-search-tools-wrapper.is-close .o-pry-search-tools__content,.o-pry-search-tools-wrapper.is-close .o-pry-search-tools__footer{opacity:0}.o-pry-search-tools-wrapper.is-mono:not(.is-close){width:700px}.o-pry-search-tools{display:flex;flex-direction:column;overflow:hidden;width:100%;height:100%;transition:all .3s ease-in-out}.o-pry-search-tools.is-close{width:50px;border-right-width:1px;border-right-style:solid}.o-pry-search-tools.is-mono:not(.is-close){width:700px}.o-pry-search-tools__header{position:relative;display:flex;justify-content:space-between;align-items:center;height:4rem;padding:1.375rem .9375rem;border-bottom-width:.0625rem;border-bottom-style:solid}.o-pry-search-tools__header__title{display:flex;gap:1.25rem;align-items:center}.o-pry-search-tools__header__title .a-h2,.o-pry-search-tools__header__title .a-h3{padding-bottom:0}.o-pry-search-tools__header button#hide_search{position:absolute;right:.875rem;top:auto;left:auto}.o-pry-search-tools__header button#hide_search[aria-pressed=true]{transform:rotate(180deg)}.o-pry-search-tools__content{flex:1;display:flex;flex-direction:column;width:100%;overflow-x:hidden;overflow-y:auto;padding:1.25rem .5rem .5rem}.o-pry-search-tools__content__full{flex:1;width:100%;overflow-x:hidden;overflow-y:auto}.o-pry-search-tools__content__button-search{display:flex;justify-content:flex-start;gap:10px}.o-pry-search-tools__content__button-search pry-choose-widget{height:auto}.o-pry-search-tools__content #btn_reset{margin-right:.625rem;margin-bottom:1.875rem;padding:0 .5rem}.o-pry-search-tools__content #btn_reset:focus{outline:2px solid #35b99f}.o-pry-search-tools__content #btn_reset:focus:not(:focus-visible){outline:0}.o-pry-search-tools__content #btn_reset:focus-visible{outline:0;border-radius:.5rem;box-shadow:0 0 0 2px #fff,0 0 0 4px #35b99f}.o-pry-search-tools__content pry-share{padding:0 .625rem}.o-pry-search-tools__footer{display:flex;flex-direction:row;justify-content:space-between;align-items:center;width:100%;margin:1rem auto 0;padding:0 .9375rem;border-top-width:.0625rem;border-top-style:solid}.o-pry-search-tools__footer__close{opacity:0}.o-pry-search-tools__footer__params{cursor:pointer}.o-pry-search-tools__footer .save-query-button{display:flex;flex-direction:row;align-items:center;margin:0;padding-left:0}.o-pry-search-tools__footer .save-query-button:disabled{opacity:.5}.o-pry-search-tools__footer .save-query-button__text{padding-left:.25rem;font-size:.875rem}\n", ".o-edit-named-query-modal{top:2.1875rem;bottom:0;width:320px}\n", ".o-multi-class-field-selection__fields{margin:0;padding:0}.o-multi-class-field-selection__fields li{list-style:none}.o-multi-class-field-selection{display:flex;flex-direction:column;width:100%;max-width:34.375rem;min-width:21.875rem;max-height:56.25rem;height:100%;border-radius:.5rem;background-color:#fff;box-shadow:2px 3px 10px 2px #0003}.o-multi-class-field-selection__header{padding:1.5rem;border-radius:.5rem .5rem 0 0}.o-multi-class-field-selection__header__top{display:flex;justify-content:space-between}.o-multi-class-field-selection__header__search{display:flex;flex-direction:column}.o-multi-class-field-selection__legend{padding:.9375rem 1.5rem;font-style:italic}.o-multi-class-field-selection__fields{overflow:auto;margin:0 0 .5rem}.o-multi-class-field-selection__fields__select{padding:.5rem 1.5rem;cursor:pointer}.o-multi-class-field-selection__fields__select .a-btn{gap:6px;max-width:100%;font-weight:500;transition:none;height:4rem}.o-multi-class-field-selection__fields__select__inside{font-weight:300;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}\n", ".o-search-multi-class{position:relative;height:100%;padding:.625rem .3125rem}.o-search-multi-class__header{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:.5rem}.o-search-multi-class__header .a-h3{padding-bottom:0}.o-search-multi-class__add-condition{padding-top:.625rem}.o-search-multi-class__add-condition .a-btn{margin-bottom:.9375rem}.o-search-multi-class .a-btn.a-btn--icon-text{height:auto;padding:5px 2px}.o-search-multi-class .a-btn.a-btn--icon-text:focus{outline:2px solid #35b99f}.o-search-multi-class .a-btn.a-btn--icon-text:focus:not(:focus-visible){outline:0}.o-search-multi-class .a-btn.a-btn--icon-text:focus-visible{outline:0;border-radius:.375rem;box-shadow:0 0 0 2px #fff,0 0 0 4px #35b99f}\n", ".o-pry-search-home{display:flex;flex-direction:column;align-items:stretch;height:100%}.o-pry-search-home__named-query{flex:1;display:flex;flex-direction:column;overflow:auto}.o-pry-search-home__named-query__card{overflow:auto;max-height:100%}.o-pry-search-home__named-query__card__load{display:flex;justify-content:center;align-items:center;width:5.375rem;height:2.25rem;margin:0 0 0 .3125rem;border-radius:3.125rem;cursor:pointer}.o-pry-search-home__named-query__card__container-menu{z-index:1001;display:flex;flex-direction:column;margin:.125rem;padding:.375rem .9375rem;border-radius:.3125rem;box-shadow:2px 3px 10px 2px #0003}.o-pry-search-home__named-query__card__container-menu>*{padding:.3125rem;cursor:pointer}.o-pry-search-home__named-query__card__container-menu>*:hover{border-radius:.375rem}.o-pry-search-home__named-query #btn_view_more{align-self:flex-end;margin-top:.625rem}.o-pry-search-home__search{display:flex;flex-direction:column;align-items:stretch;gap:.25rem;margin:0 1.125rem;padding-top:1.25rem}.o-pry-search-home__search .a-h3{margin-bottom:.3125rem;padding-bottom:0}.o-pry-search-home__search__or{margin:.3125rem auto;padding:0;text-align:center;font-size:1rem}.o-pry-search-home__search .o-search-fulltext__container{margin-bottom:.625rem}.o-pry-search-home__search .o-search-fulltext__container pry-choose-widget{flex-grow:1}.o-draggable-menu.-search-home{margin-left:14rem;margin-top:-1.6875rem}\n"] }]
|
|
10
|
+
}] });
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3NzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Byb3ZvbHkvZGFzaGJvYXJkL3NlYXJjaC9zdHlsZS9jc3MuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBdUI3RCxNQUFNLE9BQU8scUJBQXFCOzhHQUFyQixxQkFBcUI7a0dBQXJCLHFCQUFxQixzREFuQnRCLEVBQUU7OzJGQW1CRCxxQkFBcUI7a0JBckJqQyxTQUFTOytCQUNFLGdCQUFnQixZQUNoQixFQUFFLGlCQWlCRyxpQkFBaUIsQ0FBQyxJQUFJIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdwcnktc2VhcmNoLWNzcycsXG4gIHRlbXBsYXRlOiAnJyxcbiAgc3R5bGVVcmxzOiBbXG4gICAgJ19tLWNob29zZS13aWRnZXQuc2NzcycsXG4gICAgJ19vLWVkaXQtbmFtZWQtcXVlcnkuc2NzcycsXG4gICAgJ19vLXNlYXJjaC1mdWxsdGV4dC5zY3NzJyxcbiAgICAnX28tcHJ5LXNlYXJjaC1jb21wb3NlZC5zY3NzJyxcbiAgICAnX28tcHJ5LXNlYXJjaC1vcmRlci5zY3NzJyxcbiAgICAnX20tcHJ5LXNlYXJjaC1zZWxlY3QtYXR0cmlidXRlLnNjc3MnLFxuICAgICdfby1tdWx0aS1jbGFzcy1jb25kaXRpb24uc2NzcycsXG4gICAgJ19vLXNlYXJjaC1tb25vLWNsYXNzLnNjc3MnLFxuICAgICdfby1wcnktc2VhcmNoLWNvbmRpdGlvbi5zY3NzJyxcbiAgICAnX28tcHJ5LXNlYXJjaC10b29scy5zY3NzJyxcbiAgICAnX28tZWRpdC1uYW1lZC1xdWVyeS1tb2RhbC5zY3NzJyxcbiAgICAnX28tbXVsdGktY2xhc3MtZmllbGQtc2VsZWN0aW9uLnNjc3MnLFxuICAgICdfby1zZWFyY2gtbXVsdGktY2xhc3Muc2NzcycsXG4gICAgJ19vLXByeS1zZWFyY2gtaG9tZS5zY3NzJ1xuICBdLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lXG59KVxuZXhwb3J0IGNsYXNzIFByeVNlYXJjaENzc0NvbXBvbmVudCB7fVxuIl19
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { ClassActions, ClassSelectors } from '@provoly/dashboard';
|
|
3
|
+
import { SupervisionActions } from '../../store/supervision.actions';
|
|
4
|
+
import { SupervisionSelectors } from '../../store/supervision.selectors';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@ngrx/store";
|
|
7
|
+
import * as i2 from "@angular/common";
|
|
8
|
+
import * as i3 from "@provoly/dashboard";
|
|
9
|
+
export class SupervisionBusinessDataComponent {
|
|
10
|
+
constructor(store) {
|
|
11
|
+
this.store = store;
|
|
12
|
+
this.sortActive = 'name';
|
|
13
|
+
this.sortDirection = 'asc';
|
|
14
|
+
this.store.dispatch(ClassActions.loadBusinessData());
|
|
15
|
+
this.datas$ = this.store.select(ClassSelectors.classDatas);
|
|
16
|
+
this.loading$ = this.store.select(SupervisionSelectors.loading);
|
|
17
|
+
this.store.dispatch(SupervisionActions.mainActions({
|
|
18
|
+
actions: [
|
|
19
|
+
{
|
|
20
|
+
action: ClassActions.loadBusinessData(),
|
|
21
|
+
label: 'refresh',
|
|
22
|
+
icon: 'synchro'
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}));
|
|
26
|
+
}
|
|
27
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: SupervisionBusinessDataComponent, deps: [{ token: i1.Store }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
28
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: SupervisionBusinessDataComponent, selector: "pry-supervision-business-data", ngImport: i0, template: "<div class=\"o-base-container\">\n <h1 class=\"a-h1\">{{ '@pry.supervision.businessData.title' | i18n }}</h1>\n <table\n class=\"a-table\"\n prySortTable\n prySortActive=\"name\"\n prySortDirection=\"asc\"\n (prySortChange)=\"sortActive = $event.active; sortDirection = $event.direction\"\n >\n <caption>\n {{\n '@pry.supervision.businessData.title' | i18n\n }},\n {{\n '@pry.action.sortableColumnHeader' | i18n\n }}\n </caption>\n <thead>\n <tr>\n <th>\n <pry-icon iconSvg=\"detail\"></pry-icon>\n </th>\n <th prySortHeader=\"name\">{{ '@pry.supervision.businessData.name' | i18n }}</th>\n <th prySortHeader=\"count\">{{ '@pry.supervision.businessData.count' | i18n }}</th>\n <th prySortHeader=\"date\">{{ '@pry.supervision.businessData.date' | i18n }}</th>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let data of datas$ | async | prySortData: sortActive : sortDirection\">\n <td>\n <ng-container *ngIf=\"data.icon; else noImg\">\n <img [height]=\"25\" [width]=\"25\" [src]=\"data.icon | getSecuredImage | async\" [alt]=\"data.title\" />\n </ng-container>\n <ng-template #noImg>\n <img\n [height]=\"25\"\n [width]=\"25\"\n [src]=\"data.id | translateId: { type: 'class', output: 'icon' } | async\"\n [alt]=\"data.title\"\n />\n </ng-template>\n </td>\n <td>{{ data.name }}</td>\n <td>{{ data.count }}</td>\n <td>\n {{ !data.date ? '' : (data.date | date: ('@pry.format.datetime' | i18n)) }}\n </td>\n </tr>\n </tbody>\n </table>\n</div>\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.PryIconComponent, selector: "pry-icon", inputs: ["color", "iconSvg", "animation", "iconImage", "alt", "width", "height", "classes"] }, { kind: "component", type: i3.PrySortHeaderComponent, selector: "th[prySortHeader]", inputs: ["prySortHeader"], outputs: ["sortChange"] }, { kind: "directive", type: i3.PrySortHeaderDirective, selector: "[prySortHeader]" }, { kind: "directive", type: i3.PrySortTableDirective, selector: "[prySortTable]", inputs: ["prySortActive", "prySortDirection"], outputs: ["prySortChange"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i2.DatePipe, name: "date" }, { kind: "pipe", type: i3.TranslateIdPipe, name: "translateId" }, { kind: "pipe", type: i3.GetSecuredImagePipe, name: "getSecuredImage" }, { kind: "pipe", type: i3.PrySortDataPipe, name: "prySortData" }, { kind: "pipe", type: i3.I18nPipe, name: "i18n" }] }); }
|
|
29
|
+
}
|
|
30
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: SupervisionBusinessDataComponent, decorators: [{
|
|
31
|
+
type: Component,
|
|
32
|
+
args: [{ selector: 'pry-supervision-business-data', template: "<div class=\"o-base-container\">\n <h1 class=\"a-h1\">{{ '@pry.supervision.businessData.title' | i18n }}</h1>\n <table\n class=\"a-table\"\n prySortTable\n prySortActive=\"name\"\n prySortDirection=\"asc\"\n (prySortChange)=\"sortActive = $event.active; sortDirection = $event.direction\"\n >\n <caption>\n {{\n '@pry.supervision.businessData.title' | i18n\n }},\n {{\n '@pry.action.sortableColumnHeader' | i18n\n }}\n </caption>\n <thead>\n <tr>\n <th>\n <pry-icon iconSvg=\"detail\"></pry-icon>\n </th>\n <th prySortHeader=\"name\">{{ '@pry.supervision.businessData.name' | i18n }}</th>\n <th prySortHeader=\"count\">{{ '@pry.supervision.businessData.count' | i18n }}</th>\n <th prySortHeader=\"date\">{{ '@pry.supervision.businessData.date' | i18n }}</th>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let data of datas$ | async | prySortData: sortActive : sortDirection\">\n <td>\n <ng-container *ngIf=\"data.icon; else noImg\">\n <img [height]=\"25\" [width]=\"25\" [src]=\"data.icon | getSecuredImage | async\" [alt]=\"data.title\" />\n </ng-container>\n <ng-template #noImg>\n <img\n [height]=\"25\"\n [width]=\"25\"\n [src]=\"data.id | translateId: { type: 'class', output: 'icon' } | async\"\n [alt]=\"data.title\"\n />\n </ng-template>\n </td>\n <td>{{ data.name }}</td>\n <td>{{ data.count }}</td>\n <td>\n {{ !data.date ? '' : (data.date | date: ('@pry.format.datetime' | i18n)) }}\n </td>\n </tr>\n </tbody>\n </table>\n</div>\n" }]
|
|
33
|
+
}], ctorParameters: function () { return [{ type: i1.Store }]; } });
|
|
34
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3VwZXJ2aXNpb24tYnVzaW5lc3MtZGF0YS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcm92b2x5L2Rhc2hib2FyZC9zdXBlcnZpc2lvbi9jb21wb25lbnRzL3N1cGVydmlzaW9uLWJ1c2luZXNzLWRhdGEvc3VwZXJ2aXNpb24tYnVzaW5lc3MtZGF0YS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcm92b2x5L2Rhc2hib2FyZC9zdXBlcnZpc2lvbi9jb21wb25lbnRzL3N1cGVydmlzaW9uLWJ1c2luZXNzLWRhdGEvc3VwZXJ2aXNpb24tYnVzaW5lc3MtZGF0YS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRTFDLE9BQU8sRUFBZ0IsWUFBWSxFQUFFLGNBQWMsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBRWhGLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLG1DQUFtQyxDQUFDOzs7OztBQU16RSxNQUFNLE9BQU8sZ0NBQWdDO0lBTzNDLFlBQW9CLEtBQWlCO1FBQWpCLFVBQUssR0FBTCxLQUFLLENBQVk7UUFIckMsZUFBVSxHQUFJLE1BQU0sQ0FBQztRQUNyQixrQkFBYSxHQUFJLEtBQUssQ0FBQztRQUdyQixJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxZQUFZLENBQUMsZ0JBQWdCLEVBQUUsQ0FBQyxDQUFDO1FBQ3JELElBQUksQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsY0FBYyxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQzNELElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsb0JBQW9CLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDaEUsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQ2pCLGtCQUFrQixDQUFDLFdBQVcsQ0FBQztZQUM3QixPQUFPLEVBQUU7Z0JBQ1A7b0JBQ0UsTUFBTSxFQUFFLFlBQVksQ0FBQyxnQkFBZ0IsRUFBRTtvQkFDdkMsS0FBSyxFQUFFLFNBQVM7b0JBQ2hCLElBQUksRUFBRSxTQUFTO2lCQUNoQjthQUNGO1NBQ0YsQ0FBQyxDQUNILENBQUM7SUFDSixDQUFDOzhHQXRCVSxnQ0FBZ0M7a0dBQWhDLGdDQUFnQyxxRUNYN0Msb3REQW1EQTs7MkZEeENhLGdDQUFnQztrQkFKNUMsU0FBUzsrQkFDRSwrQkFBK0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFN0b3JlIH0gZnJvbSAnQG5ncngvc3RvcmUnO1xuaW1wb3J0IHsgQnVzaW5lc3NEYXRhLCBDbGFzc0FjdGlvbnMsIENsYXNzU2VsZWN0b3JzIH0gZnJvbSAnQHByb3ZvbHkvZGFzaGJvYXJkJztcbmltcG9ydCB7IE9ic2VydmFibGUgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IFN1cGVydmlzaW9uQWN0aW9ucyB9IGZyb20gJy4uLy4uL3N0b3JlL3N1cGVydmlzaW9uLmFjdGlvbnMnO1xuaW1wb3J0IHsgU3VwZXJ2aXNpb25TZWxlY3RvcnMgfSBmcm9tICcuLi8uLi9zdG9yZS9zdXBlcnZpc2lvbi5zZWxlY3RvcnMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdwcnktc3VwZXJ2aXNpb24tYnVzaW5lc3MtZGF0YScsXG4gIHRlbXBsYXRlVXJsOiAnLi9zdXBlcnZpc2lvbi1idXNpbmVzcy1kYXRhLmNvbXBvbmVudC5odG1sJ1xufSlcbmV4cG9ydCBjbGFzcyBTdXBlcnZpc2lvbkJ1c2luZXNzRGF0YUNvbXBvbmVudCB7XG4gIGRhdGFzJDogT2JzZXJ2YWJsZTxCdXNpbmVzc0RhdGFbXT47XG4gIGxvYWRpbmckOiBPYnNlcnZhYmxlPGJvb2xlYW4+O1xuXG4gIHNvcnRBY3RpdmU/ID0gJ25hbWUnO1xuICBzb3J0RGlyZWN0aW9uPyA9ICdhc2MnO1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgc3RvcmU6IFN0b3JlPGFueT4pIHtcbiAgICB0aGlzLnN0b3JlLmRpc3BhdGNoKENsYXNzQWN0aW9ucy5sb2FkQnVzaW5lc3NEYXRhKCkpO1xuICAgIHRoaXMuZGF0YXMkID0gdGhpcy5zdG9yZS5zZWxlY3QoQ2xhc3NTZWxlY3RvcnMuY2xhc3NEYXRhcyk7XG4gICAgdGhpcy5sb2FkaW5nJCA9IHRoaXMuc3RvcmUuc2VsZWN0KFN1cGVydmlzaW9uU2VsZWN0b3JzLmxvYWRpbmcpO1xuICAgIHRoaXMuc3RvcmUuZGlzcGF0Y2goXG4gICAgICBTdXBlcnZpc2lvbkFjdGlvbnMubWFpbkFjdGlvbnMoe1xuICAgICAgICBhY3Rpb25zOiBbXG4gICAgICAgICAge1xuICAgICAgICAgICAgYWN0aW9uOiBDbGFzc0FjdGlvbnMubG9hZEJ1c2luZXNzRGF0YSgpLFxuICAgICAgICAgICAgbGFiZWw6ICdyZWZyZXNoJyxcbiAgICAgICAgICAgIGljb246ICdzeW5jaHJvJ1xuICAgICAgICAgIH1cbiAgICAgICAgXVxuICAgICAgfSlcbiAgICApO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiby1iYXNlLWNvbnRhaW5lclwiPlxuICA8aDEgY2xhc3M9XCJhLWgxXCI+e3sgJ0Bwcnkuc3VwZXJ2aXNpb24uYnVzaW5lc3NEYXRhLnRpdGxlJyB8IGkxOG4gfX08L2gxPlxuICA8dGFibGVcbiAgICBjbGFzcz1cImEtdGFibGVcIlxuICAgIHByeVNvcnRUYWJsZVxuICAgIHByeVNvcnRBY3RpdmU9XCJuYW1lXCJcbiAgICBwcnlTb3J0RGlyZWN0aW9uPVwiYXNjXCJcbiAgICAocHJ5U29ydENoYW5nZSk9XCJzb3J0QWN0aXZlID0gJGV2ZW50LmFjdGl2ZTsgc29ydERpcmVjdGlvbiA9ICRldmVudC5kaXJlY3Rpb25cIlxuICA+XG4gICAgPGNhcHRpb24+XG4gICAgICB7e1xuICAgICAgICAnQHByeS5zdXBlcnZpc2lvbi5idXNpbmVzc0RhdGEudGl0bGUnIHwgaTE4blxuICAgICAgfX0sXG4gICAgICB7e1xuICAgICAgICAnQHByeS5hY3Rpb24uc29ydGFibGVDb2x1bW5IZWFkZXInIHwgaTE4blxuICAgICAgfX1cbiAgICA8L2NhcHRpb24+XG4gICAgPHRoZWFkPlxuICAgICAgPHRyPlxuICAgICAgICA8dGg+XG4gICAgICAgICAgPHByeS1pY29uIGljb25Tdmc9XCJkZXRhaWxcIj48L3ByeS1pY29uPlxuICAgICAgICA8L3RoPlxuICAgICAgICA8dGggcHJ5U29ydEhlYWRlcj1cIm5hbWVcIj57eyAnQHByeS5zdXBlcnZpc2lvbi5idXNpbmVzc0RhdGEubmFtZScgfCBpMThuIH19PC90aD5cbiAgICAgICAgPHRoIHByeVNvcnRIZWFkZXI9XCJjb3VudFwiPnt7ICdAcHJ5LnN1cGVydmlzaW9uLmJ1c2luZXNzRGF0YS5jb3VudCcgfCBpMThuIH19PC90aD5cbiAgICAgICAgPHRoIHByeVNvcnRIZWFkZXI9XCJkYXRlXCI+e3sgJ0Bwcnkuc3VwZXJ2aXNpb24uYnVzaW5lc3NEYXRhLmRhdGUnIHwgaTE4biB9fTwvdGg+XG4gICAgICA8L3RyPlxuICAgIDwvdGhlYWQ+XG4gICAgPHRib2R5PlxuICAgICAgPHRyICpuZ0Zvcj1cImxldCBkYXRhIG9mIGRhdGFzJCB8IGFzeW5jIHwgcHJ5U29ydERhdGE6IHNvcnRBY3RpdmUgOiBzb3J0RGlyZWN0aW9uXCI+XG4gICAgICAgIDx0ZD5cbiAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiZGF0YS5pY29uOyBlbHNlIG5vSW1nXCI+XG4gICAgICAgICAgICA8aW1nIFtoZWlnaHRdPVwiMjVcIiBbd2lkdGhdPVwiMjVcIiBbc3JjXT1cImRhdGEuaWNvbiB8IGdldFNlY3VyZWRJbWFnZSB8IGFzeW5jXCIgW2FsdF09XCJkYXRhLnRpdGxlXCIgLz5cbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICA8bmctdGVtcGxhdGUgI25vSW1nPlxuICAgICAgICAgICAgPGltZ1xuICAgICAgICAgICAgICBbaGVpZ2h0XT1cIjI1XCJcbiAgICAgICAgICAgICAgW3dpZHRoXT1cIjI1XCJcbiAgICAgICAgICAgICAgW3NyY109XCJkYXRhLmlkIHwgdHJhbnNsYXRlSWQ6IHsgdHlwZTogJ2NsYXNzJywgb3V0cHV0OiAnaWNvbicgfSB8IGFzeW5jXCJcbiAgICAgICAgICAgICAgW2FsdF09XCJkYXRhLnRpdGxlXCJcbiAgICAgICAgICAgIC8+XG4gICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgICAgPC90ZD5cbiAgICAgICAgPHRkPnt7IGRhdGEubmFtZSB9fTwvdGQ+XG4gICAgICAgIDx0ZD57eyBkYXRhLmNvdW50IH19PC90ZD5cbiAgICAgICAgPHRkPlxuICAgICAgICAgIHt7ICFkYXRhLmRhdGUgPyAnJyA6IChkYXRhLmRhdGUgfCBkYXRlOiAoJ0BwcnkuZm9ybWF0LmRhdGV0aW1lJyB8IGkxOG4pKSB9fVxuICAgICAgICA8L3RkPlxuICAgICAgPC90cj5cbiAgICA8L3Rib2R5PlxuICA8L3RhYmxlPlxuPC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { SupervisionActions } from '../../store/supervision.actions';
|
|
3
|
+
import { SupervisionSelectors } from '../../store/supervision.selectors';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "@ngrx/store";
|
|
6
|
+
import * as i2 from "@angular/common";
|
|
7
|
+
import * as i3 from "@provoly/dashboard";
|
|
8
|
+
export class SupervisionFlowComponent {
|
|
9
|
+
constructor(store) {
|
|
10
|
+
this.store = store;
|
|
11
|
+
this.sortActive = 'name';
|
|
12
|
+
this.sortDirection = 'asc';
|
|
13
|
+
this.store.dispatch(SupervisionActions.loadFlows());
|
|
14
|
+
this.flows$ = this.store.select(SupervisionSelectors.inputFlows);
|
|
15
|
+
this.loading$ = this.store.select(SupervisionSelectors.loading);
|
|
16
|
+
this.store.dispatch(SupervisionActions.mainActions({
|
|
17
|
+
actions: [
|
|
18
|
+
{
|
|
19
|
+
action: SupervisionActions.loadFlows(),
|
|
20
|
+
label: 'refresh',
|
|
21
|
+
icon: 'synchro'
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}));
|
|
25
|
+
}
|
|
26
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: SupervisionFlowComponent, deps: [{ token: i1.Store }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
27
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: SupervisionFlowComponent, selector: "pry-supervision-flow", ngImport: i0, template: "<div class=\"o-base-container\">\n <h1 class=\"a-h1\">{{ '@pry.supervision.inputFlow.title' | i18n }}</h1>\n\n <table\n class=\"a-table\"\n prySortTable\n prySortActive=\"name\"\n prySortDirection=\"asc\"\n (prySortChange)=\"sortActive = $event.active; sortDirection = $event.direction\"\n >\n <caption>\n {{\n '@pry.supervision.inputFlow.title' | i18n\n }},\n {{\n '@pry.action.sortableColumnHeader' | i18n\n }}\n </caption>\n <thead>\n <tr>\n <th prySortHeader=\"name\">{{ '@pry.supervision.inputFlow.name' | i18n }}</th>\n <th prySortHeader=\"format\">{{ '@pry.supervision.inputFlow.format' | i18n }}</th>\n <th>{{ '@pry.supervision.inputFlow.state' | i18n }}</th>\n <th prySortHeader=\"nbIntegrationOk\">{{ '@pry.supervision.inputFlow.oks' | i18n }}</th>\n <th prySortHeader=\"nbIntegrationKo\">{{ '@pry.supervision.inputFlow.kos' | i18n }}</th>\n <th prySortHeader=\"dateIntegration\">{{ '@pry.supervision.inputFlow.date' | i18n }}</th>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let flow of flows$ | async | prySortData: sortActive : sortDirection\">\n <td>\n <div class=\"u-display-flex -align-center\">\n {{ flow.name }}\n <a *ngIf=\"flow.accessLink\" [href]=\"flow.accessLink\" target=\"_blank\" class=\"a-btn a-btn--icon-only\">\n <pry-icon iconSvg=\"launch\" [height]=\"15\" [width]=\"15\"></pry-icon>\n <span class=\"u-sr-only\">{{ '@pry.action.opensInNewTab' | i18n }}</span>\n </a>\n </div>\n </td>\n <td>{{ flow.format }}</td>\n <td>\n <span class=\"a-badge\" [ngClass]=\"{ '-status-ok': flow.status, '-status-inactive': !flow.status }\">\n {{ (flow.status ? '@pry.supervision.inputFlow.active' : '@pry.supervision.inputFlow.inactive') | i18n }}\n </span>\n </td>\n <td>{{ flow.nbIntegrationOk }}</td>\n <td>{{ flow.nbIntegrationKo }}</td>\n <td>{{ flow.dateIntegration | date: ('@pry.format.datetime' | i18n) }}</td>\n </tr>\n </tbody>\n </table>\n</div>\n", dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.PryIconComponent, selector: "pry-icon", inputs: ["color", "iconSvg", "animation", "iconImage", "alt", "width", "height", "classes"] }, { kind: "component", type: i3.PrySortHeaderComponent, selector: "th[prySortHeader]", inputs: ["prySortHeader"], outputs: ["sortChange"] }, { kind: "directive", type: i3.PrySortHeaderDirective, selector: "[prySortHeader]" }, { kind: "directive", type: i3.PrySortTableDirective, selector: "[prySortTable]", inputs: ["prySortActive", "prySortDirection"], outputs: ["prySortChange"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i2.DatePipe, name: "date" }, { kind: "pipe", type: i3.PrySortDataPipe, name: "prySortData" }, { kind: "pipe", type: i3.I18nPipe, name: "i18n" }] }); }
|
|
28
|
+
}
|
|
29
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: SupervisionFlowComponent, decorators: [{
|
|
30
|
+
type: Component,
|
|
31
|
+
args: [{ selector: 'pry-supervision-flow', template: "<div class=\"o-base-container\">\n <h1 class=\"a-h1\">{{ '@pry.supervision.inputFlow.title' | i18n }}</h1>\n\n <table\n class=\"a-table\"\n prySortTable\n prySortActive=\"name\"\n prySortDirection=\"asc\"\n (prySortChange)=\"sortActive = $event.active; sortDirection = $event.direction\"\n >\n <caption>\n {{\n '@pry.supervision.inputFlow.title' | i18n\n }},\n {{\n '@pry.action.sortableColumnHeader' | i18n\n }}\n </caption>\n <thead>\n <tr>\n <th prySortHeader=\"name\">{{ '@pry.supervision.inputFlow.name' | i18n }}</th>\n <th prySortHeader=\"format\">{{ '@pry.supervision.inputFlow.format' | i18n }}</th>\n <th>{{ '@pry.supervision.inputFlow.state' | i18n }}</th>\n <th prySortHeader=\"nbIntegrationOk\">{{ '@pry.supervision.inputFlow.oks' | i18n }}</th>\n <th prySortHeader=\"nbIntegrationKo\">{{ '@pry.supervision.inputFlow.kos' | i18n }}</th>\n <th prySortHeader=\"dateIntegration\">{{ '@pry.supervision.inputFlow.date' | i18n }}</th>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let flow of flows$ | async | prySortData: sortActive : sortDirection\">\n <td>\n <div class=\"u-display-flex -align-center\">\n {{ flow.name }}\n <a *ngIf=\"flow.accessLink\" [href]=\"flow.accessLink\" target=\"_blank\" class=\"a-btn a-btn--icon-only\">\n <pry-icon iconSvg=\"launch\" [height]=\"15\" [width]=\"15\"></pry-icon>\n <span class=\"u-sr-only\">{{ '@pry.action.opensInNewTab' | i18n }}</span>\n </a>\n </div>\n </td>\n <td>{{ flow.format }}</td>\n <td>\n <span class=\"a-badge\" [ngClass]=\"{ '-status-ok': flow.status, '-status-inactive': !flow.status }\">\n {{ (flow.status ? '@pry.supervision.inputFlow.active' : '@pry.supervision.inputFlow.inactive') | i18n }}\n </span>\n </td>\n <td>{{ flow.nbIntegrationOk }}</td>\n <td>{{ flow.nbIntegrationKo }}</td>\n <td>{{ flow.dateIntegration | date: ('@pry.format.datetime' | i18n) }}</td>\n </tr>\n </tbody>\n </table>\n</div>\n" }]
|
|
32
|
+
}], ctorParameters: function () { return [{ type: i1.Store }]; } });
|
|
33
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3VwZXJ2aXNpb24tZmxvdy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcm92b2x5L2Rhc2hib2FyZC9zdXBlcnZpc2lvbi9jb21wb25lbnRzL3N1cGVydmlzaW9uLWZsb3cvc3VwZXJ2aXNpb24tZmxvdy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcm92b2x5L2Rhc2hib2FyZC9zdXBlcnZpc2lvbi9jb21wb25lbnRzL3N1cGVydmlzaW9uLWZsb3cvc3VwZXJ2aXNpb24tZmxvdy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBSTFDLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLG1DQUFtQyxDQUFDOzs7OztBQU16RSxNQUFNLE9BQU8sd0JBQXdCO0lBT25DLFlBQW9CLEtBQWlCO1FBQWpCLFVBQUssR0FBTCxLQUFLLENBQVk7UUFIckMsZUFBVSxHQUFJLE1BQU0sQ0FBQztRQUNyQixrQkFBYSxHQUFJLEtBQUssQ0FBQztRQUdyQixJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxrQkFBa0IsQ0FBQyxTQUFTLEVBQUUsQ0FBQyxDQUFDO1FBQ3BELElBQUksQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsb0JBQW9CLENBQUMsVUFBVSxDQUFDLENBQUM7UUFDakUsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxvQkFBb0IsQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUNoRSxJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FDakIsa0JBQWtCLENBQUMsV0FBVyxDQUFDO1lBQzdCLE9BQU8sRUFBRTtnQkFDUDtvQkFDRSxNQUFNLEVBQUUsa0JBQWtCLENBQUMsU0FBUyxFQUFFO29CQUN0QyxLQUFLLEVBQUUsU0FBUztvQkFDaEIsSUFBSSxFQUFFLFNBQVM7aUJBQ2hCO2FBQ0Y7U0FDRixDQUFDLENBQ0gsQ0FBQztJQUNKLENBQUM7OEdBdEJVLHdCQUF3QjtrR0FBeEIsd0JBQXdCLDREQ1hyQywwbkVBb0RBOzsyRkR6Q2Esd0JBQXdCO2tCQUpwQyxTQUFTOytCQUNFLHNCQUFzQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU3RvcmUgfSBmcm9tICdAbmdyeC9zdG9yZSc7XG5pbXBvcnQgeyBPYnNlcnZhYmxlIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBJbnB1dEZsb3cgfSBmcm9tICcuLi8uLi9zdG9yZS9zdXBlcnZpc2lvbi1hcGkubW9kZWwnO1xuaW1wb3J0IHsgU3VwZXJ2aXNpb25BY3Rpb25zIH0gZnJvbSAnLi4vLi4vc3RvcmUvc3VwZXJ2aXNpb24uYWN0aW9ucyc7XG5pbXBvcnQgeyBTdXBlcnZpc2lvblNlbGVjdG9ycyB9IGZyb20gJy4uLy4uL3N0b3JlL3N1cGVydmlzaW9uLnNlbGVjdG9ycyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3ByeS1zdXBlcnZpc2lvbi1mbG93JyxcbiAgdGVtcGxhdGVVcmw6ICcuL3N1cGVydmlzaW9uLWZsb3cuY29tcG9uZW50Lmh0bWwnXG59KVxuZXhwb3J0IGNsYXNzIFN1cGVydmlzaW9uRmxvd0NvbXBvbmVudCB7XG4gIGZsb3dzJDogT2JzZXJ2YWJsZTxJbnB1dEZsb3dbXT47XG4gIGxvYWRpbmckOiBPYnNlcnZhYmxlPGJvb2xlYW4+O1xuXG4gIHNvcnRBY3RpdmU/ID0gJ25hbWUnO1xuICBzb3J0RGlyZWN0aW9uPyA9ICdhc2MnO1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgc3RvcmU6IFN0b3JlPGFueT4pIHtcbiAgICB0aGlzLnN0b3JlLmRpc3BhdGNoKFN1cGVydmlzaW9uQWN0aW9ucy5sb2FkRmxvd3MoKSk7XG4gICAgdGhpcy5mbG93cyQgPSB0aGlzLnN0b3JlLnNlbGVjdChTdXBlcnZpc2lvblNlbGVjdG9ycy5pbnB1dEZsb3dzKTtcbiAgICB0aGlzLmxvYWRpbmckID0gdGhpcy5zdG9yZS5zZWxlY3QoU3VwZXJ2aXNpb25TZWxlY3RvcnMubG9hZGluZyk7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChcbiAgICAgIFN1cGVydmlzaW9uQWN0aW9ucy5tYWluQWN0aW9ucyh7XG4gICAgICAgIGFjdGlvbnM6IFtcbiAgICAgICAgICB7XG4gICAgICAgICAgICBhY3Rpb246IFN1cGVydmlzaW9uQWN0aW9ucy5sb2FkRmxvd3MoKSxcbiAgICAgICAgICAgIGxhYmVsOiAncmVmcmVzaCcsXG4gICAgICAgICAgICBpY29uOiAnc3luY2hybydcbiAgICAgICAgICB9XG4gICAgICAgIF1cbiAgICAgIH0pXG4gICAgKTtcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cIm8tYmFzZS1jb250YWluZXJcIj5cbiAgPGgxIGNsYXNzPVwiYS1oMVwiPnt7ICdAcHJ5LnN1cGVydmlzaW9uLmlucHV0Rmxvdy50aXRsZScgfCBpMThuIH19PC9oMT5cblxuICA8dGFibGVcbiAgICBjbGFzcz1cImEtdGFibGVcIlxuICAgIHByeVNvcnRUYWJsZVxuICAgIHByeVNvcnRBY3RpdmU9XCJuYW1lXCJcbiAgICBwcnlTb3J0RGlyZWN0aW9uPVwiYXNjXCJcbiAgICAocHJ5U29ydENoYW5nZSk9XCJzb3J0QWN0aXZlID0gJGV2ZW50LmFjdGl2ZTsgc29ydERpcmVjdGlvbiA9ICRldmVudC5kaXJlY3Rpb25cIlxuICA+XG4gICAgPGNhcHRpb24+XG4gICAgICB7e1xuICAgICAgICAnQHByeS5zdXBlcnZpc2lvbi5pbnB1dEZsb3cudGl0bGUnIHwgaTE4blxuICAgICAgfX0sXG4gICAgICB7e1xuICAgICAgICAnQHByeS5hY3Rpb24uc29ydGFibGVDb2x1bW5IZWFkZXInIHwgaTE4blxuICAgICAgfX1cbiAgICA8L2NhcHRpb24+XG4gICAgPHRoZWFkPlxuICAgICAgPHRyPlxuICAgICAgICA8dGggcHJ5U29ydEhlYWRlcj1cIm5hbWVcIj57eyAnQHByeS5zdXBlcnZpc2lvbi5pbnB1dEZsb3cubmFtZScgfCBpMThuIH19PC90aD5cbiAgICAgICAgPHRoIHByeVNvcnRIZWFkZXI9XCJmb3JtYXRcIj57eyAnQHByeS5zdXBlcnZpc2lvbi5pbnB1dEZsb3cuZm9ybWF0JyB8IGkxOG4gfX08L3RoPlxuICAgICAgICA8dGg+e3sgJ0Bwcnkuc3VwZXJ2aXNpb24uaW5wdXRGbG93LnN0YXRlJyB8IGkxOG4gfX08L3RoPlxuICAgICAgICA8dGggcHJ5U29ydEhlYWRlcj1cIm5iSW50ZWdyYXRpb25Pa1wiPnt7ICdAcHJ5LnN1cGVydmlzaW9uLmlucHV0Rmxvdy5va3MnIHwgaTE4biB9fTwvdGg+XG4gICAgICAgIDx0aCBwcnlTb3J0SGVhZGVyPVwibmJJbnRlZ3JhdGlvbktvXCI+e3sgJ0Bwcnkuc3VwZXJ2aXNpb24uaW5wdXRGbG93LmtvcycgfCBpMThuIH19PC90aD5cbiAgICAgICAgPHRoIHByeVNvcnRIZWFkZXI9XCJkYXRlSW50ZWdyYXRpb25cIj57eyAnQHByeS5zdXBlcnZpc2lvbi5pbnB1dEZsb3cuZGF0ZScgfCBpMThuIH19PC90aD5cbiAgICAgIDwvdHI+XG4gICAgPC90aGVhZD5cbiAgICA8dGJvZHk+XG4gICAgICA8dHIgKm5nRm9yPVwibGV0IGZsb3cgb2YgZmxvd3MkIHwgYXN5bmMgfCBwcnlTb3J0RGF0YTogc29ydEFjdGl2ZSA6IHNvcnREaXJlY3Rpb25cIj5cbiAgICAgICAgPHRkPlxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJ1LWRpc3BsYXktZmxleCAtYWxpZ24tY2VudGVyXCI+XG4gICAgICAgICAgICB7eyBmbG93Lm5hbWUgfX1cbiAgICAgICAgICAgIDxhICpuZ0lmPVwiZmxvdy5hY2Nlc3NMaW5rXCIgW2hyZWZdPVwiZmxvdy5hY2Nlc3NMaW5rXCIgdGFyZ2V0PVwiX2JsYW5rXCIgY2xhc3M9XCJhLWJ0biBhLWJ0bi0taWNvbi1vbmx5XCI+XG4gICAgICAgICAgICAgIDxwcnktaWNvbiBpY29uU3ZnPVwibGF1bmNoXCIgW2hlaWdodF09XCIxNVwiIFt3aWR0aF09XCIxNVwiPjwvcHJ5LWljb24+XG4gICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidS1zci1vbmx5XCI+e3sgJ0BwcnkuYWN0aW9uLm9wZW5zSW5OZXdUYWInIHwgaTE4biB9fTwvc3Bhbj5cbiAgICAgICAgICAgIDwvYT5cbiAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC90ZD5cbiAgICAgICAgPHRkPnt7IGZsb3cuZm9ybWF0IH19PC90ZD5cbiAgICAgICAgPHRkPlxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYS1iYWRnZVwiIFtuZ0NsYXNzXT1cInsgJy1zdGF0dXMtb2snOiBmbG93LnN0YXR1cywgJy1zdGF0dXMtaW5hY3RpdmUnOiAhZmxvdy5zdGF0dXMgfVwiPlxuICAgICAgICAgICAge3sgKGZsb3cuc3RhdHVzID8gJ0Bwcnkuc3VwZXJ2aXNpb24uaW5wdXRGbG93LmFjdGl2ZScgOiAnQHByeS5zdXBlcnZpc2lvbi5pbnB1dEZsb3cuaW5hY3RpdmUnKSB8IGkxOG4gfX1cbiAgICAgICAgICA8L3NwYW4+XG4gICAgICAgIDwvdGQ+XG4gICAgICAgIDx0ZD57eyBmbG93Lm5iSW50ZWdyYXRpb25PayB9fTwvdGQ+XG4gICAgICAgIDx0ZD57eyBmbG93Lm5iSW50ZWdyYXRpb25LbyB9fTwvdGQ+XG4gICAgICAgIDx0ZD57eyBmbG93LmRhdGVJbnRlZ3JhdGlvbiB8IGRhdGU6ICgnQHByeS5mb3JtYXQuZGF0ZXRpbWUnIHwgaTE4bikgfX08L3RkPlxuICAgICAgPC90cj5cbiAgICA8L3Rib2R5PlxuICA8L3RhYmxlPlxuPC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { SupervisionActions } from '../../store/supervision.actions';
|
|
3
|
+
import { SupervisionSelectors } from '../../store/supervision.selectors';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "@ngrx/store";
|
|
6
|
+
import * as i2 from "@angular/common";
|
|
7
|
+
import * as i3 from "@provoly/dashboard";
|
|
8
|
+
export class SupervisionInfrastructuresComponent {
|
|
9
|
+
constructor(store) {
|
|
10
|
+
this.store = store;
|
|
11
|
+
this.classFromStatus = {
|
|
12
|
+
GREEN: '-ok',
|
|
13
|
+
YELLOW: '-warning',
|
|
14
|
+
RED: '-error'
|
|
15
|
+
};
|
|
16
|
+
this.store.dispatch(SupervisionActions.loadInfras());
|
|
17
|
+
this.infras$ = this.store.select(SupervisionSelectors.infrastructures);
|
|
18
|
+
this.lastInfraScale$ = this.store.select(SupervisionSelectors.lastInfraScale);
|
|
19
|
+
this.loading$ = this.store.select(SupervisionSelectors.loading);
|
|
20
|
+
this.store.dispatch(SupervisionActions.mainActions({
|
|
21
|
+
actions: [
|
|
22
|
+
{
|
|
23
|
+
action: SupervisionActions.loadInfras(),
|
|
24
|
+
label: 'refresh',
|
|
25
|
+
icon: 'synchro'
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
onScaleUp(infra, replicas) {
|
|
31
|
+
this.store.dispatch(SupervisionActions.scaleInfra({
|
|
32
|
+
name: infra,
|
|
33
|
+
scale: replicas + 1,
|
|
34
|
+
up: true
|
|
35
|
+
}));
|
|
36
|
+
}
|
|
37
|
+
onScaleDown(infra, replicas) {
|
|
38
|
+
this.store.dispatch(SupervisionActions.scaleInfra({
|
|
39
|
+
name: infra,
|
|
40
|
+
scale: replicas - 1,
|
|
41
|
+
up: false
|
|
42
|
+
}));
|
|
43
|
+
}
|
|
44
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: SupervisionInfrastructuresComponent, deps: [{ token: i1.Store }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
45
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: SupervisionInfrastructuresComponent, selector: "pry-supervision-infrastructures", ngImport: i0, template: "<div class=\"o-base-container\">\n <h1 class=\"a-h1\">{{ '@pry.supervision.infrastructures.title' | i18n }}</h1>\n\n <ul class=\"o-cards-list\">\n <li *ngFor=\"let infra of infras$ | async\" class=\"o-cards-list__item\">\n <div class=\"o-card o-card--infra\">\n <div class=\"o-card__header\">\n <div class=\"o-card__header__logo\"></div>\n <div class=\"o-card__header__title\">\n <h4 class=\"a-h4\">{{ infra.name }}</h4>\n <p class=\"a-p\">{{ infra.title }}</p>\n </div>\n <div *ngIf=\"infra.status\" class=\"o-card__header__status\" [ngClass]=\"classFromStatus[infra.status]\"></div>\n </div>\n\n <div class=\"o-card__content\">\n <p class=\"a-p\">\n {{ infra.available }}\n {{ '@pry.supervision.infrastructures.available' + (infra.available > 1 ? 's' : '') | i18n }}\n </p>\n\n <ng-container *ngIf=\"lastInfraScale$ | async as lastInfraScale\">\n <span *ngIf=\"lastInfraScale.name === infra.name\" class=\"o-card__content__info\">\n {{ '@pry.supervision.infrastructures.scaleReplica' + (lastInfraScale.up ? 'Up' : 'Down') | i18n }}\n {{ lastInfraScale.time | date: 'HH:mm' }}\n </span>\n </ng-container>\n </div>\n\n <div class=\"o-card__footer\">\n <div class=\"o-card__footer__message\">\n <pry-icon iconSvg=\"grid_view\" [height]=\"20\" [width]=\"20\"></pry-icon>\n <span>\n {{ infra.replicas }}\n {{ '@pry.supervision.infrastructures.replica' + (infra.replicas > 1 ? 's' : '') | i18n }}\n </span>\n </div>\n\n <ng-container *pryAccess=\"{ module: 'supervision', page: 'infrastructures', action: 'scale' }\">\n <div *ngIf=\"infra.hotScale\" class=\"m-minus-plus\">\n <ng-container *ngIf=\"infra.replicas !== infra.available; else scaleTemplate\">\n <button\n class=\"m-minus-plus__btn -minus\"\n disabled\n title=\"{{ '@pry.supervision.infrastructures.removeInstance' | i18n }}\"\n >\n <span class=\"u-visually-hidden\">{{ '@pry.supervision.infrastructures.removeInstance' | i18n }}</span>\n <span class=\"m-minus-plus__btn__sign\" aria-hidden=\"true\"></span>\n </button>\n <button\n class=\"m-minus-plus__btn -plus\"\n disabled\n title=\"{{ '@pry.supervision.infrastructures.addInstance' | i18n }}\"\n >\n <span class=\"u-visually-hidden\">{{ '@pry.supervision.infrastructures.addInstance' | i18n }}</span>\n <span class=\"m-minus-plus__btn__sign\" aria-hidden=\"true\"></span>\n </button>\n </ng-container>\n\n <ng-template #scaleTemplate>\n <button\n class=\"m-minus-plus__btn -minus scale-down\"\n [disabled]=\"infra.replicas === infra.minReplicas\"\n title=\"{{ '@pry.supervision.infrastructures.removeInstance' | i18n }}\"\n (click)=\"infra.replicas !== infra.minReplicas && onScaleDown(infra.name, infra.replicas)\"\n >\n <span class=\"u-visually-hidden\">{{ '@pry.supervision.infrastructures.removeInstance' | i18n }}</span>\n <span class=\"m-minus-plus__btn__sign\" aria-hidden=\"true\"></span>\n </button>\n <button\n class=\"m-minus-plus__btn -plus scale-up\"\n [disabled]=\"infra.replicas === infra.maxReplicas\"\n title=\"{{ '@pry.supervision.infrastructures.addInstance' | i18n }}\"\n (click)=\"infra.replicas !== infra.maxReplicas && onScaleUp(infra.name, infra.replicas)\"\n >\n <span class=\"u-visually-hidden\">{{ '@pry.supervision.infrastructures.addInstance' | i18n }}</span>\n <span class=\"m-minus-plus__btn__sign\" aria-hidden=\"true\"></span>\n </button>\n </ng-template>\n </div>\n </ng-container>\n </div>\n </div>\n </li>\n </ul>\n</div>\n", dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.PryAccessDirective, selector: "[pryAccess]", inputs: ["pryAccess"] }, { kind: "component", type: i3.PryIconComponent, selector: "pry-icon", inputs: ["color", "iconSvg", "animation", "iconImage", "alt", "width", "height", "classes"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i2.DatePipe, name: "date" }, { kind: "pipe", type: i3.I18nPipe, name: "i18n" }] }); }
|
|
46
|
+
}
|
|
47
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: SupervisionInfrastructuresComponent, decorators: [{
|
|
48
|
+
type: Component,
|
|
49
|
+
args: [{ selector: 'pry-supervision-infrastructures', template: "<div class=\"o-base-container\">\n <h1 class=\"a-h1\">{{ '@pry.supervision.infrastructures.title' | i18n }}</h1>\n\n <ul class=\"o-cards-list\">\n <li *ngFor=\"let infra of infras$ | async\" class=\"o-cards-list__item\">\n <div class=\"o-card o-card--infra\">\n <div class=\"o-card__header\">\n <div class=\"o-card__header__logo\"></div>\n <div class=\"o-card__header__title\">\n <h4 class=\"a-h4\">{{ infra.name }}</h4>\n <p class=\"a-p\">{{ infra.title }}</p>\n </div>\n <div *ngIf=\"infra.status\" class=\"o-card__header__status\" [ngClass]=\"classFromStatus[infra.status]\"></div>\n </div>\n\n <div class=\"o-card__content\">\n <p class=\"a-p\">\n {{ infra.available }}\n {{ '@pry.supervision.infrastructures.available' + (infra.available > 1 ? 's' : '') | i18n }}\n </p>\n\n <ng-container *ngIf=\"lastInfraScale$ | async as lastInfraScale\">\n <span *ngIf=\"lastInfraScale.name === infra.name\" class=\"o-card__content__info\">\n {{ '@pry.supervision.infrastructures.scaleReplica' + (lastInfraScale.up ? 'Up' : 'Down') | i18n }}\n {{ lastInfraScale.time | date: 'HH:mm' }}\n </span>\n </ng-container>\n </div>\n\n <div class=\"o-card__footer\">\n <div class=\"o-card__footer__message\">\n <pry-icon iconSvg=\"grid_view\" [height]=\"20\" [width]=\"20\"></pry-icon>\n <span>\n {{ infra.replicas }}\n {{ '@pry.supervision.infrastructures.replica' + (infra.replicas > 1 ? 's' : '') | i18n }}\n </span>\n </div>\n\n <ng-container *pryAccess=\"{ module: 'supervision', page: 'infrastructures', action: 'scale' }\">\n <div *ngIf=\"infra.hotScale\" class=\"m-minus-plus\">\n <ng-container *ngIf=\"infra.replicas !== infra.available; else scaleTemplate\">\n <button\n class=\"m-minus-plus__btn -minus\"\n disabled\n title=\"{{ '@pry.supervision.infrastructures.removeInstance' | i18n }}\"\n >\n <span class=\"u-visually-hidden\">{{ '@pry.supervision.infrastructures.removeInstance' | i18n }}</span>\n <span class=\"m-minus-plus__btn__sign\" aria-hidden=\"true\"></span>\n </button>\n <button\n class=\"m-minus-plus__btn -plus\"\n disabled\n title=\"{{ '@pry.supervision.infrastructures.addInstance' | i18n }}\"\n >\n <span class=\"u-visually-hidden\">{{ '@pry.supervision.infrastructures.addInstance' | i18n }}</span>\n <span class=\"m-minus-plus__btn__sign\" aria-hidden=\"true\"></span>\n </button>\n </ng-container>\n\n <ng-template #scaleTemplate>\n <button\n class=\"m-minus-plus__btn -minus scale-down\"\n [disabled]=\"infra.replicas === infra.minReplicas\"\n title=\"{{ '@pry.supervision.infrastructures.removeInstance' | i18n }}\"\n (click)=\"infra.replicas !== infra.minReplicas && onScaleDown(infra.name, infra.replicas)\"\n >\n <span class=\"u-visually-hidden\">{{ '@pry.supervision.infrastructures.removeInstance' | i18n }}</span>\n <span class=\"m-minus-plus__btn__sign\" aria-hidden=\"true\"></span>\n </button>\n <button\n class=\"m-minus-plus__btn -plus scale-up\"\n [disabled]=\"infra.replicas === infra.maxReplicas\"\n title=\"{{ '@pry.supervision.infrastructures.addInstance' | i18n }}\"\n (click)=\"infra.replicas !== infra.maxReplicas && onScaleUp(infra.name, infra.replicas)\"\n >\n <span class=\"u-visually-hidden\">{{ '@pry.supervision.infrastructures.addInstance' | i18n }}</span>\n <span class=\"m-minus-plus__btn__sign\" aria-hidden=\"true\"></span>\n </button>\n </ng-template>\n </div>\n </ng-container>\n </div>\n </div>\n </li>\n </ul>\n</div>\n" }]
|
|
50
|
+
}], ctorParameters: function () { return [{ type: i1.Store }]; } });
|
|
51
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3VwZXJ2aXNpb24taW5mcmFzdHJ1Y3R1cmVzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Byb3ZvbHkvZGFzaGJvYXJkL3N1cGVydmlzaW9uL2NvbXBvbmVudHMvc3VwZXJ2aXNpb24taW5mcmFzdHJ1Y3R1cmVzL3N1cGVydmlzaW9uLWluZnJhc3RydWN0dXJlcy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcm92b2x5L2Rhc2hib2FyZC9zdXBlcnZpc2lvbi9jb21wb25lbnRzL3N1cGVydmlzaW9uLWluZnJhc3RydWN0dXJlcy9zdXBlcnZpc2lvbi1pbmZyYXN0cnVjdHVyZXMuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUkxQyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQzs7Ozs7QUFNekUsTUFBTSxPQUFPLG1DQUFtQztJQVU5QyxZQUFvQixLQUFpQjtRQUFqQixVQUFLLEdBQUwsS0FBSyxDQUFZO1FBTnJDLG9CQUFlLEdBQThCO1lBQzNDLEtBQUssRUFBRSxLQUFLO1lBQ1osTUFBTSxFQUFFLFVBQVU7WUFDbEIsR0FBRyxFQUFFLFFBQVE7U0FDZCxDQUFDO1FBR0EsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsa0JBQWtCLENBQUMsVUFBVSxFQUFFLENBQUMsQ0FBQztRQUNyRCxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLG9CQUFvQixDQUFDLGVBQWUsQ0FBQyxDQUFDO1FBQ3ZFLElBQUksQ0FBQyxlQUFlLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsb0JBQW9CLENBQUMsY0FBYyxDQUFDLENBQUM7UUFDOUUsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxvQkFBb0IsQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUNoRSxJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FDakIsa0JBQWtCLENBQUMsV0FBVyxDQUFDO1lBQzdCLE9BQU8sRUFBRTtnQkFDUDtvQkFDRSxNQUFNLEVBQUUsa0JBQWtCLENBQUMsVUFBVSxFQUFFO29CQUN2QyxLQUFLLEVBQUUsU0FBUztvQkFDaEIsSUFBSSxFQUFFLFNBQVM7aUJBQ2hCO2FBQ0Y7U0FDRixDQUFDLENBQ0gsQ0FBQztJQUNKLENBQUM7SUFFRCxTQUFTLENBQUMsS0FBYSxFQUFFLFFBQWdCO1FBQ3ZDLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUNqQixrQkFBa0IsQ0FBQyxVQUFVLENBQUM7WUFDNUIsSUFBSSxFQUFFLEtBQUs7WUFDWCxLQUFLLEVBQUUsUUFBUSxHQUFHLENBQUM7WUFDbkIsRUFBRSxFQUFFLElBQUk7U0FDVCxDQUFDLENBQ0gsQ0FBQztJQUNKLENBQUM7SUFFRCxXQUFXLENBQUMsS0FBYSxFQUFFLFFBQWdCO1FBQ3pDLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUNqQixrQkFBa0IsQ0FBQyxVQUFVLENBQUM7WUFDNUIsSUFBSSxFQUFFLEtBQUs7WUFDWCxLQUFLLEVBQUUsUUFBUSxHQUFHLENBQUM7WUFDbkIsRUFBRSxFQUFFLEtBQUs7U0FDVixDQUFDLENBQ0gsQ0FBQztJQUNKLENBQUM7OEdBOUNVLG1DQUFtQztrR0FBbkMsbUNBQW1DLHVFQ1hoRCxrdUlBc0ZBOzsyRkQzRWEsbUNBQW1DO2tCQUovQyxTQUFTOytCQUNFLGlDQUFpQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU3RvcmUgfSBmcm9tICdAbmdyeC9zdG9yZSc7XG5pbXBvcnQgeyBPYnNlcnZhYmxlIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBJbmZyYXN0cnVjdHVyZSwgTGFzdEluZnJhc3RydWN0dXJlU2NhbGUgfSBmcm9tICcuLi8uLi9zdG9yZS9zdXBlcnZpc2lvbi1hcGkubW9kZWwnO1xuaW1wb3J0IHsgU3VwZXJ2aXNpb25BY3Rpb25zIH0gZnJvbSAnLi4vLi4vc3RvcmUvc3VwZXJ2aXNpb24uYWN0aW9ucyc7XG5pbXBvcnQgeyBTdXBlcnZpc2lvblNlbGVjdG9ycyB9IGZyb20gJy4uLy4uL3N0b3JlL3N1cGVydmlzaW9uLnNlbGVjdG9ycyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3ByeS1zdXBlcnZpc2lvbi1pbmZyYXN0cnVjdHVyZXMnLFxuICB0ZW1wbGF0ZVVybDogJy4vc3VwZXJ2aXNpb24taW5mcmFzdHJ1Y3R1cmVzLmNvbXBvbmVudC5odG1sJ1xufSlcbmV4cG9ydCBjbGFzcyBTdXBlcnZpc2lvbkluZnJhc3RydWN0dXJlc0NvbXBvbmVudCB7XG4gIGluZnJhcyQ6IE9ic2VydmFibGU8SW5mcmFzdHJ1Y3R1cmVbXT47XG4gIGxvYWRpbmckOiBPYnNlcnZhYmxlPGJvb2xlYW4+O1xuICBsYXN0SW5mcmFTY2FsZSQ6IE9ic2VydmFibGU8TGFzdEluZnJhc3RydWN0dXJlU2NhbGUgfCB1bmRlZmluZWQ+O1xuICBjbGFzc0Zyb21TdGF0dXM6IHsgW2tleTogc3RyaW5nXTogc3RyaW5nIH0gPSB7XG4gICAgR1JFRU46ICctb2snLFxuICAgIFlFTExPVzogJy13YXJuaW5nJyxcbiAgICBSRUQ6ICctZXJyb3InXG4gIH07XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBzdG9yZTogU3RvcmU8YW55Pikge1xuICAgIHRoaXMuc3RvcmUuZGlzcGF0Y2goU3VwZXJ2aXNpb25BY3Rpb25zLmxvYWRJbmZyYXMoKSk7XG4gICAgdGhpcy5pbmZyYXMkID0gdGhpcy5zdG9yZS5zZWxlY3QoU3VwZXJ2aXNpb25TZWxlY3RvcnMuaW5mcmFzdHJ1Y3R1cmVzKTtcbiAgICB0aGlzLmxhc3RJbmZyYVNjYWxlJCA9IHRoaXMuc3RvcmUuc2VsZWN0KFN1cGVydmlzaW9uU2VsZWN0b3JzLmxhc3RJbmZyYVNjYWxlKTtcbiAgICB0aGlzLmxvYWRpbmckID0gdGhpcy5zdG9yZS5zZWxlY3QoU3VwZXJ2aXNpb25TZWxlY3RvcnMubG9hZGluZyk7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChcbiAgICAgIFN1cGVydmlzaW9uQWN0aW9ucy5tYWluQWN0aW9ucyh7XG4gICAgICAgIGFjdGlvbnM6IFtcbiAgICAgICAgICB7XG4gICAgICAgICAgICBhY3Rpb246IFN1cGVydmlzaW9uQWN0aW9ucy5sb2FkSW5mcmFzKCksXG4gICAgICAgICAgICBsYWJlbDogJ3JlZnJlc2gnLFxuICAgICAgICAgICAgaWNvbjogJ3N5bmNocm8nXG4gICAgICAgICAgfVxuICAgICAgICBdXG4gICAgICB9KVxuICAgICk7XG4gIH1cblxuICBvblNjYWxlVXAoaW5mcmE6IHN0cmluZywgcmVwbGljYXM6IG51bWJlcik6IHZvaWQge1xuICAgIHRoaXMuc3RvcmUuZGlzcGF0Y2goXG4gICAgICBTdXBlcnZpc2lvbkFjdGlvbnMuc2NhbGVJbmZyYSh7XG4gICAgICAgIG5hbWU6IGluZnJhLFxuICAgICAgICBzY2FsZTogcmVwbGljYXMgKyAxLFxuICAgICAgICB1cDogdHJ1ZVxuICAgICAgfSlcbiAgICApO1xuICB9XG5cbiAgb25TY2FsZURvd24oaW5mcmE6IHN0cmluZywgcmVwbGljYXM6IG51bWJlcik6IHZvaWQge1xuICAgIHRoaXMuc3RvcmUuZGlzcGF0Y2goXG4gICAgICBTdXBlcnZpc2lvbkFjdGlvbnMuc2NhbGVJbmZyYSh7XG4gICAgICAgIG5hbWU6IGluZnJhLFxuICAgICAgICBzY2FsZTogcmVwbGljYXMgLSAxLFxuICAgICAgICB1cDogZmFsc2VcbiAgICAgIH0pXG4gICAgKTtcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cIm8tYmFzZS1jb250YWluZXJcIj5cbiAgPGgxIGNsYXNzPVwiYS1oMVwiPnt7ICdAcHJ5LnN1cGVydmlzaW9uLmluZnJhc3RydWN0dXJlcy50aXRsZScgfCBpMThuIH19PC9oMT5cblxuICA8dWwgY2xhc3M9XCJvLWNhcmRzLWxpc3RcIj5cbiAgICA8bGkgKm5nRm9yPVwibGV0IGluZnJhIG9mIGluZnJhcyQgfCBhc3luY1wiIGNsYXNzPVwiby1jYXJkcy1saXN0X19pdGVtXCI+XG4gICAgICA8ZGl2IGNsYXNzPVwiby1jYXJkIG8tY2FyZC0taW5mcmFcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cIm8tY2FyZF9faGVhZGVyXCI+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cIm8tY2FyZF9faGVhZGVyX19sb2dvXCI+PC9kaXY+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cIm8tY2FyZF9faGVhZGVyX190aXRsZVwiPlxuICAgICAgICAgICAgPGg0IGNsYXNzPVwiYS1oNFwiPnt7IGluZnJhLm5hbWUgfX08L2g0PlxuICAgICAgICAgICAgPHAgY2xhc3M9XCJhLXBcIj57eyBpbmZyYS50aXRsZSB9fTwvcD5cbiAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICA8ZGl2ICpuZ0lmPVwiaW5mcmEuc3RhdHVzXCIgY2xhc3M9XCJvLWNhcmRfX2hlYWRlcl9fc3RhdHVzXCIgW25nQ2xhc3NdPVwiY2xhc3NGcm9tU3RhdHVzW2luZnJhLnN0YXR1c11cIj48L2Rpdj5cbiAgICAgICAgPC9kaXY+XG5cbiAgICAgICAgPGRpdiBjbGFzcz1cIm8tY2FyZF9fY29udGVudFwiPlxuICAgICAgICAgIDxwIGNsYXNzPVwiYS1wXCI+XG4gICAgICAgICAgICB7eyBpbmZyYS5hdmFpbGFibGUgfX1cbiAgICAgICAgICAgIHt7ICdAcHJ5LnN1cGVydmlzaW9uLmluZnJhc3RydWN0dXJlcy5hdmFpbGFibGUnICsgKGluZnJhLmF2YWlsYWJsZSA+IDEgPyAncycgOiAnJykgfCBpMThuIH19XG4gICAgICAgICAgPC9wPlxuXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImxhc3RJbmZyYVNjYWxlJCB8IGFzeW5jIGFzIGxhc3RJbmZyYVNjYWxlXCI+XG4gICAgICAgICAgICA8c3BhbiAqbmdJZj1cImxhc3RJbmZyYVNjYWxlLm5hbWUgPT09IGluZnJhLm5hbWVcIiBjbGFzcz1cIm8tY2FyZF9fY29udGVudF9faW5mb1wiPlxuICAgICAgICAgICAgICB7eyAnQHByeS5zdXBlcnZpc2lvbi5pbmZyYXN0cnVjdHVyZXMuc2NhbGVSZXBsaWNhJyArIChsYXN0SW5mcmFTY2FsZS51cCA/ICdVcCcgOiAnRG93bicpIHwgaTE4biB9fVxuICAgICAgICAgICAgICB7eyBsYXN0SW5mcmFTY2FsZS50aW1lIHwgZGF0ZTogJ0hIOm1tJyB9fVxuICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICA8L2Rpdj5cblxuICAgICAgICA8ZGl2IGNsYXNzPVwiby1jYXJkX19mb290ZXJcIj5cbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiby1jYXJkX19mb290ZXJfX21lc3NhZ2VcIj5cbiAgICAgICAgICAgIDxwcnktaWNvbiBpY29uU3ZnPVwiZ3JpZF92aWV3XCIgW2hlaWdodF09XCIyMFwiIFt3aWR0aF09XCIyMFwiPjwvcHJ5LWljb24+XG4gICAgICAgICAgICA8c3Bhbj5cbiAgICAgICAgICAgICAge3sgaW5mcmEucmVwbGljYXMgfX1cbiAgICAgICAgICAgICAge3sgJ0Bwcnkuc3VwZXJ2aXNpb24uaW5mcmFzdHJ1Y3R1cmVzLnJlcGxpY2EnICsgKGluZnJhLnJlcGxpY2FzID4gMSA/ICdzJyA6ICcnKSB8IGkxOG4gfX1cbiAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICA8L2Rpdj5cblxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnByeUFjY2Vzcz1cInsgbW9kdWxlOiAnc3VwZXJ2aXNpb24nLCBwYWdlOiAnaW5mcmFzdHJ1Y3R1cmVzJywgYWN0aW9uOiAnc2NhbGUnIH1cIj5cbiAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJpbmZyYS5ob3RTY2FsZVwiIGNsYXNzPVwibS1taW51cy1wbHVzXCI+XG4gICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpbmZyYS5yZXBsaWNhcyAhPT0gaW5mcmEuYXZhaWxhYmxlOyBlbHNlIHNjYWxlVGVtcGxhdGVcIj5cbiAgICAgICAgICAgICAgICA8YnV0dG9uXG4gICAgICAgICAgICAgICAgICBjbGFzcz1cIm0tbWludXMtcGx1c19fYnRuIC1taW51c1wiXG4gICAgICAgICAgICAgICAgICBkaXNhYmxlZFxuICAgICAgICAgICAgICAgICAgdGl0bGU9XCJ7eyAnQHByeS5zdXBlcnZpc2lvbi5pbmZyYXN0cnVjdHVyZXMucmVtb3ZlSW5zdGFuY2UnIHwgaTE4biB9fVwiXG4gICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ1LXZpc3VhbGx5LWhpZGRlblwiPnt7ICdAcHJ5LnN1cGVydmlzaW9uLmluZnJhc3RydWN0dXJlcy5yZW1vdmVJbnN0YW5jZScgfCBpMThuIH19PC9zcGFuPlxuICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJtLW1pbnVzLXBsdXNfX2J0bl9fc2lnblwiIGFyaWEtaGlkZGVuPVwidHJ1ZVwiPjwvc3Bhbj5cbiAgICAgICAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICAgICAgICA8YnV0dG9uXG4gICAgICAgICAgICAgICAgICBjbGFzcz1cIm0tbWludXMtcGx1c19fYnRuIC1wbHVzXCJcbiAgICAgICAgICAgICAgICAgIGRpc2FibGVkXG4gICAgICAgICAgICAgICAgICB0aXRsZT1cInt7ICdAcHJ5LnN1cGVydmlzaW9uLmluZnJhc3RydWN0dXJlcy5hZGRJbnN0YW5jZScgfCBpMThuIH19XCJcbiAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInUtdmlzdWFsbHktaGlkZGVuXCI+e3sgJ0Bwcnkuc3VwZXJ2aXNpb24uaW5mcmFzdHJ1Y3R1cmVzLmFkZEluc3RhbmNlJyB8IGkxOG4gfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cIm0tbWludXMtcGx1c19fYnRuX19zaWduXCIgYXJpYS1oaWRkZW49XCJ0cnVlXCI+PC9zcGFuPlxuICAgICAgICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgICAgICAgICAgICA8bmctdGVtcGxhdGUgI3NjYWxlVGVtcGxhdGU+XG4gICAgICAgICAgICAgICAgPGJ1dHRvblxuICAgICAgICAgICAgICAgICAgY2xhc3M9XCJtLW1pbnVzLXBsdXNfX2J0biAtbWludXMgc2NhbGUtZG93blwiXG4gICAgICAgICAgICAgICAgICBbZGlzYWJsZWRdPVwiaW5mcmEucmVwbGljYXMgPT09IGluZnJhLm1pblJlcGxpY2FzXCJcbiAgICAgICAgICAgICAgICAgIHRpdGxlPVwie3sgJ0Bwcnkuc3VwZXJ2aXNpb24uaW5mcmFzdHJ1Y3R1cmVzLnJlbW92ZUluc3RhbmNlJyB8IGkxOG4gfX1cIlxuICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cImluZnJhLnJlcGxpY2FzICE9PSBpbmZyYS5taW5SZXBsaWNhcyAmJiBvblNjYWxlRG93bihpbmZyYS5uYW1lLCBpbmZyYS5yZXBsaWNhcylcIlxuICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidS12aXN1YWxseS1oaWRkZW5cIj57eyAnQHByeS5zdXBlcnZpc2lvbi5pbmZyYXN0cnVjdHVyZXMucmVtb3ZlSW5zdGFuY2UnIHwgaTE4biB9fTwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwibS1taW51cy1wbHVzX19idG5fX3NpZ25cIiBhcmlhLWhpZGRlbj1cInRydWVcIj48L3NwYW4+XG4gICAgICAgICAgICAgICAgPC9idXR0b24+XG4gICAgICAgICAgICAgICAgPGJ1dHRvblxuICAgICAgICAgICAgICAgICAgY2xhc3M9XCJtLW1pbnVzLXBsdXNfX2J0biAtcGx1cyBzY2FsZS11cFwiXG4gICAgICAgICAgICAgICAgICBbZGlzYWJsZWRdPVwiaW5mcmEucmVwbGljYXMgPT09IGluZnJhLm1heFJlcGxpY2FzXCJcbiAgICAgICAgICAgICAgICAgIHRpdGxlPVwie3sgJ0Bwcnkuc3VwZXJ2aXNpb24uaW5mcmFzdHJ1Y3R1cmVzLmFkZEluc3RhbmNlJyB8IGkxOG4gfX1cIlxuICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cImluZnJhLnJlcGxpY2FzICE9PSBpbmZyYS5tYXhSZXBsaWNhcyAmJiBvblNjYWxlVXAoaW5mcmEubmFtZSwgaW5mcmEucmVwbGljYXMpXCJcbiAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInUtdmlzdWFsbHktaGlkZGVuXCI+e3sgJ0Bwcnkuc3VwZXJ2aXNpb24uaW5mcmFzdHJ1Y3R1cmVzLmFkZEluc3RhbmNlJyB8IGkxOG4gfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cIm0tbWludXMtcGx1c19fYnRuX19zaWduXCIgYXJpYS1oaWRkZW49XCJ0cnVlXCI+PC9zcGFuPlxuICAgICAgICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9kaXY+XG4gICAgPC9saT5cbiAgPC91bD5cbjwvZGl2PlxuIl19
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { SupervisionActions } from '../../../store/supervision.actions';
|
|
3
|
+
import { SupervisionSelectors } from '../../../store/supervision.selectors';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "@ngrx/store";
|
|
6
|
+
import * as i2 from "@angular/common";
|
|
7
|
+
import * as i3 from "@provoly/dashboard";
|
|
8
|
+
let nextCompId = 0;
|
|
9
|
+
export class SupervisionIntegrationErrorsSelectComponent {
|
|
10
|
+
constructor(store) {
|
|
11
|
+
this.store = store;
|
|
12
|
+
this.tab = 0;
|
|
13
|
+
this.compId = nextCompId++;
|
|
14
|
+
this.currentIntegrationError$ = this.store.select(SupervisionSelectors.currentIntegrationError);
|
|
15
|
+
}
|
|
16
|
+
closePanel() {
|
|
17
|
+
this.store.dispatch(SupervisionActions.loadIntegrationErrors());
|
|
18
|
+
this.store.dispatch(SupervisionActions.toggleErrorDetails({ error: null, errorDetailsOpen: false }));
|
|
19
|
+
}
|
|
20
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: SupervisionIntegrationErrorsSelectComponent, deps: [{ token: i1.Store }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
21
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: SupervisionIntegrationErrorsSelectComponent, selector: "pry-supervision-integration-errors-select", ngImport: i0, template: "<div\n *ngIf=\"currentIntegrationError$ | async as e\"\n [id]=\"'panel-env-' + (e.oClass | translateId: { type: 'class', output: 'name' } | async)\"\n [attr.aria-labelledby]=\"'button-env-' + (e.oClass | translateId: { type: 'class', output: 'name' } | async)\"\n class=\"o-panel\"\n>\n <div>\n <div class=\"o-panel__header\">\n <button type=\"button\" class=\"a-btn a-btn--icon-only\" (click)=\"closePanel()\">\n <span class=\"u-visually-hidden\">{{ '@pry.action.closePanel' | i18n }}</span>\n <pry-icon iconSvg=\"close\"></pry-icon>\n </button>\n <h3 [id]=\"'tab-title-' + (e.oClass | translateId: { type: 'class', output: 'name' } | async)\" class=\"a-h3\">\n {{ '@pry.supervision.importErrors.details.title' | i18n }}\n </h3>\n </div>\n\n <div class=\"o-tabs\">\n <div class=\"o-tabs__list\" role=\"tablist\" [attr.aria-labelledby]=\"'tab-title-' + ''\">\n <button\n type=\"button\"\n class=\"o-tabs__list__btn\"\n role=\"tab\"\n [id]=\"'tab-' + compId + '-0'\"\n [attr.aria-selected]=\"tab === 0\"\n [attr.tabindex]=\"tab === 0 ? 0 : -1\"\n [attr.aria-controls]=\"'tabpanel-' + compId + '-0'\"\n >\n {{ '@pry.supervision.importErrors.details.details' | i18n }}\n </button>\n </div>\n <div class=\"o-tabs__panels\">\n <div\n class=\"o-tabs__panels__item\"\n [class.is-hidden]=\"tab !== 0\"\n [id]=\"'tabpanel-' + compId + '-0'\"\n role=\"tabpanel\"\n [attr.aria-labelledby]=\"'tab-' + compId + '-0'\"\n tabindex=\"0\"\n >\n <div class=\"o-tabs__panels__item__content\">\n <div *ngFor=\"let error of e.errors\">\n <p class=\"a-p\">\n {{ '@pry.supervision.importErrors.details.errorLabel' | i18n }} :\n <strong>{{ error.label }}</strong>\n </p>\n <p class=\"a-p\">\n {{ '@pry.supervision.importErrors.details.errorCount' | i18n }}:\n <strong>{{ error.count }}</strong>\n </p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.PryIconComponent, selector: "pry-icon", inputs: ["color", "iconSvg", "animation", "iconImage", "alt", "width", "height", "classes"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i3.TranslateIdPipe, name: "translateId" }, { kind: "pipe", type: i3.I18nPipe, name: "i18n" }] }); }
|
|
22
|
+
}
|
|
23
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: SupervisionIntegrationErrorsSelectComponent, decorators: [{
|
|
24
|
+
type: Component,
|
|
25
|
+
args: [{ selector: 'pry-supervision-integration-errors-select', template: "<div\n *ngIf=\"currentIntegrationError$ | async as e\"\n [id]=\"'panel-env-' + (e.oClass | translateId: { type: 'class', output: 'name' } | async)\"\n [attr.aria-labelledby]=\"'button-env-' + (e.oClass | translateId: { type: 'class', output: 'name' } | async)\"\n class=\"o-panel\"\n>\n <div>\n <div class=\"o-panel__header\">\n <button type=\"button\" class=\"a-btn a-btn--icon-only\" (click)=\"closePanel()\">\n <span class=\"u-visually-hidden\">{{ '@pry.action.closePanel' | i18n }}</span>\n <pry-icon iconSvg=\"close\"></pry-icon>\n </button>\n <h3 [id]=\"'tab-title-' + (e.oClass | translateId: { type: 'class', output: 'name' } | async)\" class=\"a-h3\">\n {{ '@pry.supervision.importErrors.details.title' | i18n }}\n </h3>\n </div>\n\n <div class=\"o-tabs\">\n <div class=\"o-tabs__list\" role=\"tablist\" [attr.aria-labelledby]=\"'tab-title-' + ''\">\n <button\n type=\"button\"\n class=\"o-tabs__list__btn\"\n role=\"tab\"\n [id]=\"'tab-' + compId + '-0'\"\n [attr.aria-selected]=\"tab === 0\"\n [attr.tabindex]=\"tab === 0 ? 0 : -1\"\n [attr.aria-controls]=\"'tabpanel-' + compId + '-0'\"\n >\n {{ '@pry.supervision.importErrors.details.details' | i18n }}\n </button>\n </div>\n <div class=\"o-tabs__panels\">\n <div\n class=\"o-tabs__panels__item\"\n [class.is-hidden]=\"tab !== 0\"\n [id]=\"'tabpanel-' + compId + '-0'\"\n role=\"tabpanel\"\n [attr.aria-labelledby]=\"'tab-' + compId + '-0'\"\n tabindex=\"0\"\n >\n <div class=\"o-tabs__panels__item__content\">\n <div *ngFor=\"let error of e.errors\">\n <p class=\"a-p\">\n {{ '@pry.supervision.importErrors.details.errorLabel' | i18n }} :\n <strong>{{ error.label }}</strong>\n </p>\n <p class=\"a-p\">\n {{ '@pry.supervision.importErrors.details.errorCount' | i18n }}:\n <strong>{{ error.count }}</strong>\n </p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n" }]
|
|
26
|
+
}], ctorParameters: function () { return [{ type: i1.Store }]; } });
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3VwZXJ2aXNpb24taW50ZWdyYXRpb24tZXJyb3JzLXNlbGVjdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcm92b2x5L2Rhc2hib2FyZC9zdXBlcnZpc2lvbi9jb21wb25lbnRzL3N1cGVydmlzaW9uLWludGVncmF0aW9uLWVycm9ycy9zdXBlcnZpc2lvbi1pbnRlZ3JhdGlvbi1lcnJvcnMtc2VsZWN0L3N1cGVydmlzaW9uLWludGVncmF0aW9uLWVycm9ycy1zZWxlY3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJvdm9seS9kYXNoYm9hcmQvc3VwZXJ2aXNpb24vY29tcG9uZW50cy9zdXBlcnZpc2lvbi1pbnRlZ3JhdGlvbi1lcnJvcnMvc3VwZXJ2aXNpb24taW50ZWdyYXRpb24tZXJyb3JzLXNlbGVjdC9zdXBlcnZpc2lvbi1pbnRlZ3JhdGlvbi1lcnJvcnMtc2VsZWN0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFJMUMsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sb0NBQW9DLENBQUM7QUFDeEUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sc0NBQXNDLENBQUM7Ozs7O0FBRTVFLElBQUksVUFBVSxHQUFHLENBQUMsQ0FBQztBQU1uQixNQUFNLE9BQU8sMkNBQTJDO0lBS3RELFlBQW9CLEtBQWlCO1FBQWpCLFVBQUssR0FBTCxLQUFLLENBQVk7UUFKckMsUUFBRyxHQUFXLENBQUMsQ0FBQztRQUNoQixXQUFNLEdBQVcsVUFBVSxFQUFFLENBQUM7UUFJNUIsSUFBSSxDQUFDLHdCQUF3QixHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLG9CQUFvQixDQUFDLHVCQUF1QixDQUFDLENBQUM7SUFDbEcsQ0FBQztJQUVELFVBQVU7UUFDUixJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxrQkFBa0IsQ0FBQyxxQkFBcUIsRUFBRSxDQUFDLENBQUM7UUFDaEUsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsa0JBQWtCLENBQUMsa0JBQWtCLENBQUMsRUFBRSxLQUFLLEVBQUUsSUFBSSxFQUFFLGdCQUFnQixFQUFFLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQztJQUN2RyxDQUFDOzhHQVpVLDJDQUEyQztrR0FBM0MsMkNBQTJDLGlGQ2J4RCxrc0VBeURBOzsyRkQ1Q2EsMkNBQTJDO2tCQUp2RCxTQUFTOytCQUNFLDJDQUEyQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU3RvcmUgfSBmcm9tICdAbmdyeC9zdG9yZSc7XG5pbXBvcnQgeyBPYnNlcnZhYmxlIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBJbnRlZ3JhdGlvbkVycm9yIH0gZnJvbSAnLi4vLi4vLi4vc3RvcmUvc3VwZXJ2aXNpb24tYXBpLm1vZGVsJztcbmltcG9ydCB7IFN1cGVydmlzaW9uQWN0aW9ucyB9IGZyb20gJy4uLy4uLy4uL3N0b3JlL3N1cGVydmlzaW9uLmFjdGlvbnMnO1xuaW1wb3J0IHsgU3VwZXJ2aXNpb25TZWxlY3RvcnMgfSBmcm9tICcuLi8uLi8uLi9zdG9yZS9zdXBlcnZpc2lvbi5zZWxlY3RvcnMnO1xuXG5sZXQgbmV4dENvbXBJZCA9IDA7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3ByeS1zdXBlcnZpc2lvbi1pbnRlZ3JhdGlvbi1lcnJvcnMtc2VsZWN0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL3N1cGVydmlzaW9uLWludGVncmF0aW9uLWVycm9ycy1zZWxlY3QuY29tcG9uZW50Lmh0bWwnXG59KVxuZXhwb3J0IGNsYXNzIFN1cGVydmlzaW9uSW50ZWdyYXRpb25FcnJvcnNTZWxlY3RDb21wb25lbnQge1xuICB0YWI6IG51bWJlciA9IDA7XG4gIGNvbXBJZDogbnVtYmVyID0gbmV4dENvbXBJZCsrO1xuICBjdXJyZW50SW50ZWdyYXRpb25FcnJvciQ6IE9ic2VydmFibGU8SW50ZWdyYXRpb25FcnJvciB8IG51bGwgfCB1bmRlZmluZWQ+O1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgc3RvcmU6IFN0b3JlPGFueT4pIHtcbiAgICB0aGlzLmN1cnJlbnRJbnRlZ3JhdGlvbkVycm9yJCA9IHRoaXMuc3RvcmUuc2VsZWN0KFN1cGVydmlzaW9uU2VsZWN0b3JzLmN1cnJlbnRJbnRlZ3JhdGlvbkVycm9yKTtcbiAgfVxuXG4gIGNsb3NlUGFuZWwoKSB7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChTdXBlcnZpc2lvbkFjdGlvbnMubG9hZEludGVncmF0aW9uRXJyb3JzKCkpO1xuICAgIHRoaXMuc3RvcmUuZGlzcGF0Y2goU3VwZXJ2aXNpb25BY3Rpb25zLnRvZ2dsZUVycm9yRGV0YWlscyh7IGVycm9yOiBudWxsLCBlcnJvckRldGFpbHNPcGVuOiBmYWxzZSB9KSk7XG4gIH1cbn1cbiIsIjxkaXZcbiAgKm5nSWY9XCJjdXJyZW50SW50ZWdyYXRpb25FcnJvciQgfCBhc3luYyBhcyBlXCJcbiAgW2lkXT1cIidwYW5lbC1lbnYtJyArIChlLm9DbGFzcyB8IHRyYW5zbGF0ZUlkOiB7IHR5cGU6ICdjbGFzcycsIG91dHB1dDogJ25hbWUnIH0gfCBhc3luYylcIlxuICBbYXR0ci5hcmlhLWxhYmVsbGVkYnldPVwiJ2J1dHRvbi1lbnYtJyArIChlLm9DbGFzcyB8IHRyYW5zbGF0ZUlkOiB7IHR5cGU6ICdjbGFzcycsIG91dHB1dDogJ25hbWUnIH0gfCBhc3luYylcIlxuICBjbGFzcz1cIm8tcGFuZWxcIlxuPlxuICA8ZGl2PlxuICAgIDxkaXYgY2xhc3M9XCJvLXBhbmVsX19oZWFkZXJcIj5cbiAgICAgIDxidXR0b24gdHlwZT1cImJ1dHRvblwiIGNsYXNzPVwiYS1idG4gYS1idG4tLWljb24tb25seVwiIChjbGljayk9XCJjbG9zZVBhbmVsKClcIj5cbiAgICAgICAgPHNwYW4gY2xhc3M9XCJ1LXZpc3VhbGx5LWhpZGRlblwiPnt7ICdAcHJ5LmFjdGlvbi5jbG9zZVBhbmVsJyB8IGkxOG4gfX08L3NwYW4+XG4gICAgICAgIDxwcnktaWNvbiBpY29uU3ZnPVwiY2xvc2VcIj48L3ByeS1pY29uPlxuICAgICAgPC9idXR0b24+XG4gICAgICA8aDMgW2lkXT1cIid0YWItdGl0bGUtJyArIChlLm9DbGFzcyB8IHRyYW5zbGF0ZUlkOiB7IHR5cGU6ICdjbGFzcycsIG91dHB1dDogJ25hbWUnIH0gfCBhc3luYylcIiBjbGFzcz1cImEtaDNcIj5cbiAgICAgICAge3sgJ0Bwcnkuc3VwZXJ2aXNpb24uaW1wb3J0RXJyb3JzLmRldGFpbHMudGl0bGUnIHwgaTE4biB9fVxuICAgICAgPC9oMz5cbiAgICA8L2Rpdj5cblxuICAgIDxkaXYgY2xhc3M9XCJvLXRhYnNcIj5cbiAgICAgIDxkaXYgY2xhc3M9XCJvLXRhYnNfX2xpc3RcIiByb2xlPVwidGFibGlzdFwiIFthdHRyLmFyaWEtbGFiZWxsZWRieV09XCIndGFiLXRpdGxlLScgKyAnJ1wiPlxuICAgICAgICA8YnV0dG9uXG4gICAgICAgICAgdHlwZT1cImJ1dHRvblwiXG4gICAgICAgICAgY2xhc3M9XCJvLXRhYnNfX2xpc3RfX2J0blwiXG4gICAgICAgICAgcm9sZT1cInRhYlwiXG4gICAgICAgICAgW2lkXT1cIid0YWItJyArIGNvbXBJZCArICctMCdcIlxuICAgICAgICAgIFthdHRyLmFyaWEtc2VsZWN0ZWRdPVwidGFiID09PSAwXCJcbiAgICAgICAgICBbYXR0ci50YWJpbmRleF09XCJ0YWIgPT09IDAgPyAwIDogLTFcIlxuICAgICAgICAgIFthdHRyLmFyaWEtY29udHJvbHNdPVwiJ3RhYnBhbmVsLScgKyBjb21wSWQgKyAnLTAnXCJcbiAgICAgICAgPlxuICAgICAgICAgIHt7ICdAcHJ5LnN1cGVydmlzaW9uLmltcG9ydEVycm9ycy5kZXRhaWxzLmRldGFpbHMnIHwgaTE4biB9fVxuICAgICAgICA8L2J1dHRvbj5cbiAgICAgIDwvZGl2PlxuICAgICAgPGRpdiBjbGFzcz1cIm8tdGFic19fcGFuZWxzXCI+XG4gICAgICAgIDxkaXZcbiAgICAgICAgICBjbGFzcz1cIm8tdGFic19fcGFuZWxzX19pdGVtXCJcbiAgICAgICAgICBbY2xhc3MuaXMtaGlkZGVuXT1cInRhYiAhPT0gMFwiXG4gICAgICAgICAgW2lkXT1cIid0YWJwYW5lbC0nICsgY29tcElkICsgJy0wJ1wiXG4gICAgICAgICAgcm9sZT1cInRhYnBhbmVsXCJcbiAgICAgICAgICBbYXR0ci5hcmlhLWxhYmVsbGVkYnldPVwiJ3RhYi0nICsgY29tcElkICsgJy0wJ1wiXG4gICAgICAgICAgdGFiaW5kZXg9XCIwXCJcbiAgICAgICAgPlxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJvLXRhYnNfX3BhbmVsc19faXRlbV9fY29udGVudFwiPlxuICAgICAgICAgICAgPGRpdiAqbmdGb3I9XCJsZXQgZXJyb3Igb2YgZS5lcnJvcnNcIj5cbiAgICAgICAgICAgICAgPHAgY2xhc3M9XCJhLXBcIj5cbiAgICAgICAgICAgICAgICB7eyAnQHByeS5zdXBlcnZpc2lvbi5pbXBvcnRFcnJvcnMuZGV0YWlscy5lcnJvckxhYmVsJyB8IGkxOG4gfX0gOlxuICAgICAgICAgICAgICAgIDxzdHJvbmc+e3sgZXJyb3IubGFiZWwgfX08L3N0cm9uZz5cbiAgICAgICAgICAgICAgPC9wPlxuICAgICAgICAgICAgICA8cCBjbGFzcz1cImEtcFwiPlxuICAgICAgICAgICAgICAgIHt7ICdAcHJ5LnN1cGVydmlzaW9uLmltcG9ydEVycm9ycy5kZXRhaWxzLmVycm9yQ291bnQnIHwgaTE4biB9fTpcbiAgICAgICAgICAgICAgICA8c3Ryb25nPnt7IGVycm9yLmNvdW50IH19PC9zdHJvbmc+XG4gICAgICAgICAgICAgIDwvcD5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { Component, ViewChild, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ClassActions } from '@provoly/dashboard';
|
|
3
|
+
import { BehaviorSubject, Subscription } from 'rxjs';
|
|
4
|
+
import { map } from 'rxjs/operators';
|
|
5
|
+
import { SupervisionActions } from '../../store/supervision.actions';
|
|
6
|
+
import { SupervisionSelectors } from '../../store/supervision.selectors';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "@ngrx/store";
|
|
9
|
+
import * as i2 from "@angular/common";
|
|
10
|
+
import * as i3 from "@provoly/dashboard";
|
|
11
|
+
import * as i4 from "@angular/forms";
|
|
12
|
+
import * as i5 from "@provoly/dashboard/components/checkbox";
|
|
13
|
+
export class SupervisionIntegrationErrorsComponent {
|
|
14
|
+
constructor(store) {
|
|
15
|
+
this.store = store;
|
|
16
|
+
this.subscription = new Subscription();
|
|
17
|
+
this.currentIntegrationError = new BehaviorSubject(undefined);
|
|
18
|
+
this.possibleIntervals = [1, 5, 10, 15, 20, 25, 30];
|
|
19
|
+
this.sortActive = 'name';
|
|
20
|
+
this.sortDirection = 'asc';
|
|
21
|
+
this.store.dispatch(ClassActions.load());
|
|
22
|
+
this.store.dispatch(SupervisionActions.loadIntegrationErrors());
|
|
23
|
+
this.integrationErrors$ = this.store.select(SupervisionSelectors.integrationErrors);
|
|
24
|
+
this.subscription.add(this.store.select(SupervisionSelectors.selectedClasses).subscribe((selectedClasses) => {
|
|
25
|
+
this.selectedClasses = selectedClasses;
|
|
26
|
+
}));
|
|
27
|
+
this.loading$ = this.store.select(SupervisionSelectors.loading);
|
|
28
|
+
this.refreshInterval$ = this.store
|
|
29
|
+
.select(SupervisionSelectors.refreshInterval)
|
|
30
|
+
.pipe(map((interval) => interval / 1000));
|
|
31
|
+
this.store.dispatch(SupervisionActions.startAutoRefresh());
|
|
32
|
+
this.store.dispatch(SupervisionActions.mainActions({
|
|
33
|
+
actions: [
|
|
34
|
+
{
|
|
35
|
+
action: SupervisionActions.reloadErrors(),
|
|
36
|
+
icon: 'reset',
|
|
37
|
+
label: 'reloadErrors',
|
|
38
|
+
moduleAccess: 'supervision',
|
|
39
|
+
pageAccess: 'errors'
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
action: SupervisionActions.acknowledgeErrors(),
|
|
43
|
+
icon: 'check',
|
|
44
|
+
label: 'acknowledgeErrors',
|
|
45
|
+
moduleAccess: 'supervision',
|
|
46
|
+
pageAccess: 'errors'
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
action: SupervisionActions.loadIntegrationErrors(),
|
|
50
|
+
label: 'refresh',
|
|
51
|
+
icon: 'synchro',
|
|
52
|
+
moduleAccess: 'supervision',
|
|
53
|
+
pageAccess: 'errors'
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
}));
|
|
57
|
+
}
|
|
58
|
+
selectCurrentError(e) {
|
|
59
|
+
if (this.currentIntegrationError.value?.oClass === e.oClass)
|
|
60
|
+
this.currentIntegrationError.next(undefined);
|
|
61
|
+
else
|
|
62
|
+
this.currentIntegrationError.next(e);
|
|
63
|
+
}
|
|
64
|
+
getTotalErrorCount(e) {
|
|
65
|
+
return e.errors.reduce((previousValue, currentValue) => previousValue + currentValue.count, 0);
|
|
66
|
+
}
|
|
67
|
+
toggleErrorDetails(e) {
|
|
68
|
+
this.selectCurrentError(e);
|
|
69
|
+
this.store.dispatch(SupervisionActions.toggleErrorDetails({ error: e, errorDetailsOpen: true }));
|
|
70
|
+
}
|
|
71
|
+
onCheckChange(selectedClass) {
|
|
72
|
+
this.store.dispatch(SupervisionActions.toggleClassSelection({ selectedClass }));
|
|
73
|
+
}
|
|
74
|
+
isClassSelected(c) {
|
|
75
|
+
return !!this.selectedClasses.find((oclass) => oclass === c);
|
|
76
|
+
}
|
|
77
|
+
setRefreshInterval($event) {
|
|
78
|
+
this.store.dispatch(SupervisionActions.stopAutoRefresh());
|
|
79
|
+
this.store.dispatch(SupervisionActions.setRefreshInterval({ interval: +$event * 1000 }));
|
|
80
|
+
}
|
|
81
|
+
stopPropagation(event) {
|
|
82
|
+
event.stopPropagation();
|
|
83
|
+
}
|
|
84
|
+
ngOnDestroy() {
|
|
85
|
+
this.store.dispatch(SupervisionActions.toggleErrorDetails({ error: null, errorDetailsOpen: false }));
|
|
86
|
+
this.subscription.unsubscribe();
|
|
87
|
+
this.store.dispatch(SupervisionActions.mainActions({ actions: [] }));
|
|
88
|
+
this.store.dispatch(SupervisionActions.stopAutoRefresh());
|
|
89
|
+
}
|
|
90
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: SupervisionIntegrationErrorsComponent, deps: [{ token: i1.Store }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
91
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: SupervisionIntegrationErrorsComponent, selector: "pry-supervision-integration-errors", viewQueries: [{ propertyName: "detailPanel", first: true, predicate: ["detailPanel"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<div class=\"o-base-container\">\n <h1 class=\"a-h1\">{{ '@pry.supervision.importErrors.title' | i18n }}</h1>\n\n <div class=\"m-form-label-field m-form-label-field--inline\">\n <label class=\"a-label\" for=\"interval_time\">Rafraichir chaque</label>\n <pry-select\n [ngModel]=\"refreshInterval$ | async\"\n (ngModelChange)=\"setRefreshInterval($event)\"\n [items]=\"possibleIntervals\"\n id=\"interval_time\"\n class=\"a-pry-select\"\n ></pry-select>\n <label class=\"a-label\">secondes</label>\n </div>\n\n <table\n class=\"a-table\"\n prySortTable\n prySortActive=\"name\"\n prySortDirection=\"asc\"\n (prySortChange)=\"sortActive = $event.active; sortDirection = $event.direction\"\n >\n <caption>\n {{\n '@pry.supervision.importErrors.title' | i18n\n }},\n {{\n '@pry.action.sortableColumnHeader' | i18n\n }}\n </caption>\n <thead>\n <tr>\n <th></th>\n <th prySortHeader=\"name\">{{ '@pry.supervision.importErrors.name' | i18n }}</th>\n <th prySortHeader=\"count\">{{ '@pry.supervision.importErrors.totalErrorCount' | i18n }}</th>\n <th></th>\n </tr>\n </thead>\n <tbody>\n <tr\n *ngFor=\"let e of integrationErrors$ | async | prySortData: sortActive : sortDirection\"\n (click)=\"toggleErrorDetails(e)\"\n [class.is-selected]=\"(currentIntegrationError | async)?.oClass === e.oClass\"\n >\n <td class=\"view-details\" (click)=\"stopPropagation($event)\">\n <button\n [id]=\"'button-attr-' + (e.oClass | translateId: { type: 'class', output: 'name' } | async)\"\n type=\"button\"\n class=\"a-btn a-btn--icon-only\"\n title=\"{{ '@pry.action.viewDetails' | i18n }}\"\n [attr.aria-expanded]=\"(currentIntegrationError | async)?.oClass === e.oClass\"\n aria-haspopup\n [attr.aria-controls]=\"'panel-attr-' + (e.oClass | translateId: { type: 'class', output: 'name' } | async)\"\n >\n <span class=\"u-visually-hidden\">{{ e.name }}, {{ '@pry.action.viewDetails' | i18n }}</span>\n <pry-icon iconSvg=\"eye\" [width]=\"15\" [height]=\"15\"></pry-icon>\n </button>\n </td>\n <td>\n {{ e.oClass | translateId: { type: 'class', output: 'name' } | async }}\n </td>\n <td>\n {{ getTotalErrorCount(e) }}\n </td>\n <td (click)=\"stopPropagation($event)\">\n <pry-checkbox\n id=\"selectClass\"\n [ngModel]=\"isClassSelected(e.oClass)\"\n (ngModelChange)=\"onCheckChange(e.oClass)\"\n ></pry-checkbox>\n </td>\n </tr>\n </tbody>\n </table>\n</div>\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i3.PryIconComponent, selector: "pry-icon", inputs: ["color", "iconSvg", "animation", "iconImage", "alt", "width", "height", "classes"] }, { kind: "component", type: i3.PrySortHeaderComponent, selector: "th[prySortHeader]", inputs: ["prySortHeader"], outputs: ["sortChange"] }, { kind: "directive", type: i3.PrySortHeaderDirective, selector: "[prySortHeader]" }, { kind: "directive", type: i3.PrySortTableDirective, selector: "[prySortTable]", inputs: ["prySortActive", "prySortDirection"], outputs: ["prySortChange"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3.PrySelectComponent, selector: "pry-select", inputs: ["labelTranslate", "baseTranslate", "translationFn", "translationFnArgs", "clearable", "multiple", "multipleClearRight", "placeholder", "isForm", "required", "name", "readonly", "items", "itemsAsOption", "bindData", "bindValue", "bindLabel", "bindIcon", "iconSize", "templateLabel", "templateOption", "autocomplete"] }, { kind: "component", type: i5.PryCheckboxComponent, selector: "pry-checkbox", inputs: ["circle"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i3.TranslateIdPipe, name: "translateId" }, { kind: "pipe", type: i3.PrySortDataPipe, name: "prySortData" }, { kind: "pipe", type: i3.I18nPipe, name: "i18n" }] }); }
|
|
92
|
+
}
|
|
93
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: SupervisionIntegrationErrorsComponent, decorators: [{
|
|
94
|
+
type: Component,
|
|
95
|
+
args: [{ selector: 'pry-supervision-integration-errors', template: "<div class=\"o-base-container\">\n <h1 class=\"a-h1\">{{ '@pry.supervision.importErrors.title' | i18n }}</h1>\n\n <div class=\"m-form-label-field m-form-label-field--inline\">\n <label class=\"a-label\" for=\"interval_time\">Rafraichir chaque</label>\n <pry-select\n [ngModel]=\"refreshInterval$ | async\"\n (ngModelChange)=\"setRefreshInterval($event)\"\n [items]=\"possibleIntervals\"\n id=\"interval_time\"\n class=\"a-pry-select\"\n ></pry-select>\n <label class=\"a-label\">secondes</label>\n </div>\n\n <table\n class=\"a-table\"\n prySortTable\n prySortActive=\"name\"\n prySortDirection=\"asc\"\n (prySortChange)=\"sortActive = $event.active; sortDirection = $event.direction\"\n >\n <caption>\n {{\n '@pry.supervision.importErrors.title' | i18n\n }},\n {{\n '@pry.action.sortableColumnHeader' | i18n\n }}\n </caption>\n <thead>\n <tr>\n <th></th>\n <th prySortHeader=\"name\">{{ '@pry.supervision.importErrors.name' | i18n }}</th>\n <th prySortHeader=\"count\">{{ '@pry.supervision.importErrors.totalErrorCount' | i18n }}</th>\n <th></th>\n </tr>\n </thead>\n <tbody>\n <tr\n *ngFor=\"let e of integrationErrors$ | async | prySortData: sortActive : sortDirection\"\n (click)=\"toggleErrorDetails(e)\"\n [class.is-selected]=\"(currentIntegrationError | async)?.oClass === e.oClass\"\n >\n <td class=\"view-details\" (click)=\"stopPropagation($event)\">\n <button\n [id]=\"'button-attr-' + (e.oClass | translateId: { type: 'class', output: 'name' } | async)\"\n type=\"button\"\n class=\"a-btn a-btn--icon-only\"\n title=\"{{ '@pry.action.viewDetails' | i18n }}\"\n [attr.aria-expanded]=\"(currentIntegrationError | async)?.oClass === e.oClass\"\n aria-haspopup\n [attr.aria-controls]=\"'panel-attr-' + (e.oClass | translateId: { type: 'class', output: 'name' } | async)\"\n >\n <span class=\"u-visually-hidden\">{{ e.name }}, {{ '@pry.action.viewDetails' | i18n }}</span>\n <pry-icon iconSvg=\"eye\" [width]=\"15\" [height]=\"15\"></pry-icon>\n </button>\n </td>\n <td>\n {{ e.oClass | translateId: { type: 'class', output: 'name' } | async }}\n </td>\n <td>\n {{ getTotalErrorCount(e) }}\n </td>\n <td (click)=\"stopPropagation($event)\">\n <pry-checkbox\n id=\"selectClass\"\n [ngModel]=\"isClassSelected(e.oClass)\"\n (ngModelChange)=\"onCheckChange(e.oClass)\"\n ></pry-checkbox>\n </td>\n </tr>\n </tbody>\n </table>\n</div>\n" }]
|
|
96
|
+
}], ctorParameters: function () { return [{ type: i1.Store }]; }, propDecorators: { detailPanel: [{
|
|
97
|
+
type: ViewChild,
|
|
98
|
+
args: ['detailPanel', { static: true, read: ViewContainerRef }]
|
|
99
|
+
}] } });
|
|
100
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3VwZXJ2aXNpb24taW50ZWdyYXRpb24tZXJyb3JzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Byb3ZvbHkvZGFzaGJvYXJkL3N1cGVydmlzaW9uL2NvbXBvbmVudHMvc3VwZXJ2aXNpb24taW50ZWdyYXRpb24tZXJyb3JzL3N1cGVydmlzaW9uLWludGVncmF0aW9uLWVycm9ycy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcm92b2x5L2Rhc2hib2FyZC9zdXBlcnZpc2lvbi9jb21wb25lbnRzL3N1cGVydmlzaW9uLWludGVncmF0aW9uLWVycm9ycy9zdXBlcnZpc2lvbi1pbnRlZ3JhdGlvbi1lcnJvcnMuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBYSxTQUFTLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFbEYsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ2xELE9BQU8sRUFBRSxlQUFlLEVBQWMsWUFBWSxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ2pFLE9BQU8sRUFBRSxHQUFHLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUVyQyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQzs7Ozs7OztBQU16RSxNQUFNLE9BQU8scUNBQXFDO0lBWWhELFlBQW9CLEtBQWlCO1FBQWpCLFVBQUssR0FBTCxLQUFLLENBQVk7UUFYN0IsaUJBQVksR0FBaUIsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUV4RCw0QkFBdUIsR0FBRyxJQUFJLGVBQWUsQ0FBK0IsU0FBUyxDQUFDLENBQUM7UUFJdkYsc0JBQWlCLEdBQUcsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLEVBQUUsRUFBRSxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsQ0FBQztRQUMvQyxlQUFVLEdBQUksTUFBTSxDQUFDO1FBQ3JCLGtCQUFhLEdBQUksS0FBSyxDQUFDO1FBSXJCLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUFDLFlBQVksQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDO1FBQ3pDLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUFDLGtCQUFrQixDQUFDLHFCQUFxQixFQUFFLENBQUMsQ0FBQztRQUNoRSxJQUFJLENBQUMsa0JBQWtCLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsb0JBQW9CLENBQUMsaUJBQWlCLENBQUMsQ0FBQztRQUNwRixJQUFJLENBQUMsWUFBWSxDQUFDLEdBQUcsQ0FDbkIsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsb0JBQW9CLENBQUMsZUFBZSxDQUFDLENBQUMsU0FBUyxDQUFDLENBQUMsZUFBeUIsRUFBRSxFQUFFO1lBQzlGLElBQUksQ0FBQyxlQUFlLEdBQUcsZUFBZSxDQUFDO1FBQ3pDLENBQUMsQ0FBQyxDQUNILENBQUM7UUFDRixJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLG9CQUFvQixDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBQ2hFLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxJQUFJLENBQUMsS0FBSzthQUMvQixNQUFNLENBQUMsb0JBQW9CLENBQUMsZUFBZSxDQUFDO2FBQzVDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxRQUFRLEVBQUUsRUFBRSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDO1FBQzVDLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUFDLGtCQUFrQixDQUFDLGdCQUFnQixFQUFFLENBQUMsQ0FBQztRQUMzRCxJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FDakIsa0JBQWtCLENBQUMsV0FBVyxDQUFDO1lBQzdCLE9BQU8sRUFBRTtnQkFDUDtvQkFDRSxNQUFNLEVBQUUsa0JBQWtCLENBQUMsWUFBWSxFQUFFO29CQUN6QyxJQUFJLEVBQUUsT0FBTztvQkFDYixLQUFLLEVBQUUsY0FBYztvQkFDckIsWUFBWSxFQUFFLGFBQWE7b0JBQzNCLFVBQVUsRUFBRSxRQUFRO2lCQUNyQjtnQkFDRDtvQkFDRSxNQUFNLEVBQUUsa0JBQWtCLENBQUMsaUJBQWlCLEVBQUU7b0JBQzlDLElBQUksRUFBRSxPQUFPO29CQUNiLEtBQUssRUFBRSxtQkFBbUI7b0JBQzFCLFlBQVksRUFBRSxhQUFhO29CQUMzQixVQUFVLEVBQUUsUUFBUTtpQkFDckI7Z0JBQ0Q7b0JBQ0UsTUFBTSxFQUFFLGtCQUFrQixDQUFDLHFCQUFxQixFQUFFO29CQUNsRCxLQUFLLEVBQUUsU0FBUztvQkFDaEIsSUFBSSxFQUFFLFNBQVM7b0JBQ2YsWUFBWSxFQUFFLGFBQWE7b0JBQzNCLFVBQVUsRUFBRSxRQUFRO2lCQUNyQjthQUNGO1NBQ0YsQ0FBQyxDQUNILENBQUM7SUFDSixDQUFDO0lBRUQsa0JBQWtCLENBQUMsQ0FBbUI7UUFDcEMsSUFBSSxJQUFJLENBQUMsdUJBQXVCLENBQUMsS0FBSyxFQUFFLE1BQU0sS0FBSyxDQUFDLENBQUMsTUFBTTtZQUFFLElBQUksQ0FBQyx1QkFBdUIsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUM7O1lBQ3JHLElBQUksQ0FBQyx1QkFBdUIsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7SUFDNUMsQ0FBQztJQUVELGtCQUFrQixDQUFDLENBQW1CO1FBQ3BDLE9BQU8sQ0FBQyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQyxhQUFhLEVBQUUsWUFBWSxFQUFFLEVBQUUsQ0FBQyxhQUFhLEdBQUcsWUFBWSxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQztJQUNqRyxDQUFDO0lBRUQsa0JBQWtCLENBQUMsQ0FBbUI7UUFDcEMsSUFBSSxDQUFDLGtCQUFrQixDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQzNCLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUFDLGtCQUFrQixDQUFDLGtCQUFrQixDQUFDLEVBQUUsS0FBSyxFQUFFLENBQUMsRUFBRSxnQkFBZ0IsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDbkcsQ0FBQztJQUVELGFBQWEsQ0FBQyxhQUFxQjtRQUNqQyxJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxrQkFBa0IsQ0FBQyxvQkFBb0IsQ0FBQyxFQUFFLGFBQWEsRUFBRSxDQUFDLENBQUMsQ0FBQztJQUNsRixDQUFDO0lBRUQsZUFBZSxDQUFDLENBQVM7UUFDdkIsT0FBTyxDQUFDLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsQ0FBQyxNQUFNLEVBQUUsRUFBRSxDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUMsQ0FBQztJQUMvRCxDQUFDO0lBRUQsa0JBQWtCLENBQUMsTUFBYztRQUMvQixJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxrQkFBa0IsQ0FBQyxlQUFlLEVBQUUsQ0FBQyxDQUFDO1FBQzFELElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUFDLGtCQUFrQixDQUFDLGtCQUFrQixDQUFDLEVBQUUsUUFBUSxFQUFFLENBQUMsTUFBTSxHQUFHLElBQUksRUFBRSxDQUFDLENBQUMsQ0FBQztJQUMzRixDQUFDO0lBRUQsZUFBZSxDQUFDLEtBQVk7UUFDMUIsS0FBSyxDQUFDLGVBQWUsRUFBRSxDQUFDO0lBQzFCLENBQUM7SUFFRCxXQUFXO1FBQ1QsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsa0JBQWtCLENBQUMsa0JBQWtCLENBQUMsRUFBRSxLQUFLLEVBQUUsSUFBSSxFQUFFLGdCQUFnQixFQUFFLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQztRQUNyRyxJQUFJLENBQUMsWUFBWSxDQUFDLFdBQVcsRUFBRSxDQUFDO1FBQ2hDLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUFDLGtCQUFrQixDQUFDLFdBQVcsQ0FBQyxFQUFFLE9BQU8sRUFBRSxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDckUsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsa0JBQWtCLENBQUMsZUFBZSxFQUFFLENBQUMsQ0FBQztJQUM1RCxDQUFDOzhHQTNGVSxxQ0FBcUM7a0dBQXJDLHFDQUFxQyxpS0FVQSxnQkFBZ0IsMkNDdkJsRSx3dEZBMkVBOzsyRkQ5RGEscUNBQXFDO2tCQUpqRCxTQUFTOytCQUNFLG9DQUFvQzs0RkFhc0IsV0FBVztzQkFBOUUsU0FBUzt1QkFBQyxhQUFhLEVBQUUsRUFBRSxNQUFNLEVBQUUsSUFBSSxFQUFFLElBQUksRUFBRSxnQkFBZ0IsRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25EZXN0cm95LCBWaWV3Q2hpbGQsIFZpZXdDb250YWluZXJSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFN0b3JlIH0gZnJvbSAnQG5ncngvc3RvcmUnO1xuaW1wb3J0IHsgQ2xhc3NBY3Rpb25zIH0gZnJvbSAnQHByb3ZvbHkvZGFzaGJvYXJkJztcbmltcG9ydCB7IEJlaGF2aW9yU3ViamVjdCwgT2JzZXJ2YWJsZSwgU3Vic2NyaXB0aW9uIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBtYXAgfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5pbXBvcnQgeyBJbnRlZ3JhdGlvbkVycm9yIH0gZnJvbSAnLi4vLi4vc3RvcmUvc3VwZXJ2aXNpb24tYXBpLm1vZGVsJztcbmltcG9ydCB7IFN1cGVydmlzaW9uQWN0aW9ucyB9IGZyb20gJy4uLy4uL3N0b3JlL3N1cGVydmlzaW9uLmFjdGlvbnMnO1xuaW1wb3J0IHsgU3VwZXJ2aXNpb25TZWxlY3RvcnMgfSBmcm9tICcuLi8uLi9zdG9yZS9zdXBlcnZpc2lvbi5zZWxlY3RvcnMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdwcnktc3VwZXJ2aXNpb24taW50ZWdyYXRpb24tZXJyb3JzJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3N1cGVydmlzaW9uLWludGVncmF0aW9uLWVycm9ycy5jb21wb25lbnQuaHRtbCdcbn0pXG5leHBvcnQgY2xhc3MgU3VwZXJ2aXNpb25JbnRlZ3JhdGlvbkVycm9yc0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uRGVzdHJveSB7XG4gIHByaXZhdGUgc3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb24gPSBuZXcgU3Vic2NyaXB0aW9uKCk7XG4gIGludGVncmF0aW9uRXJyb3JzJDogT2JzZXJ2YWJsZTxJbnRlZ3JhdGlvbkVycm9yW10+O1xuICBjdXJyZW50SW50ZWdyYXRpb25FcnJvciA9IG5ldyBCZWhhdmlvclN1YmplY3Q8SW50ZWdyYXRpb25FcnJvciB8IHVuZGVmaW5lZD4odW5kZWZpbmVkKTtcbiAgc2VsZWN0ZWRDbGFzc2VzITogc3RyaW5nW107XG4gIGxvYWRpbmckOiBPYnNlcnZhYmxlPGJvb2xlYW4+O1xuICByZWZyZXNoSW50ZXJ2YWwkOiBPYnNlcnZhYmxlPG51bWJlcj47XG4gIHBvc3NpYmxlSW50ZXJ2YWxzID0gWzEsIDUsIDEwLCAxNSwgMjAsIDI1LCAzMF07XG4gIHNvcnRBY3RpdmU/ID0gJ25hbWUnO1xuICBzb3J0RGlyZWN0aW9uPyA9ICdhc2MnO1xuICBAVmlld0NoaWxkKCdkZXRhaWxQYW5lbCcsIHsgc3RhdGljOiB0cnVlLCByZWFkOiBWaWV3Q29udGFpbmVyUmVmIH0pIGRldGFpbFBhbmVsITogVmlld0NvbnRhaW5lclJlZjtcblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIHN0b3JlOiBTdG9yZTxhbnk+KSB7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChDbGFzc0FjdGlvbnMubG9hZCgpKTtcbiAgICB0aGlzLnN0b3JlLmRpc3BhdGNoKFN1cGVydmlzaW9uQWN0aW9ucy5sb2FkSW50ZWdyYXRpb25FcnJvcnMoKSk7XG4gICAgdGhpcy5pbnRlZ3JhdGlvbkVycm9ycyQgPSB0aGlzLnN0b3JlLnNlbGVjdChTdXBlcnZpc2lvblNlbGVjdG9ycy5pbnRlZ3JhdGlvbkVycm9ycyk7XG4gICAgdGhpcy5zdWJzY3JpcHRpb24uYWRkKFxuICAgICAgdGhpcy5zdG9yZS5zZWxlY3QoU3VwZXJ2aXNpb25TZWxlY3RvcnMuc2VsZWN0ZWRDbGFzc2VzKS5zdWJzY3JpYmUoKHNlbGVjdGVkQ2xhc3Nlczogc3RyaW5nW10pID0+IHtcbiAgICAgICAgdGhpcy5zZWxlY3RlZENsYXNzZXMgPSBzZWxlY3RlZENsYXNzZXM7XG4gICAgICB9KVxuICAgICk7XG4gICAgdGhpcy5sb2FkaW5nJCA9IHRoaXMuc3RvcmUuc2VsZWN0KFN1cGVydmlzaW9uU2VsZWN0b3JzLmxvYWRpbmcpO1xuICAgIHRoaXMucmVmcmVzaEludGVydmFsJCA9IHRoaXMuc3RvcmVcbiAgICAgIC5zZWxlY3QoU3VwZXJ2aXNpb25TZWxlY3RvcnMucmVmcmVzaEludGVydmFsKVxuICAgICAgLnBpcGUobWFwKChpbnRlcnZhbCkgPT4gaW50ZXJ2YWwgLyAxMDAwKSk7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChTdXBlcnZpc2lvbkFjdGlvbnMuc3RhcnRBdXRvUmVmcmVzaCgpKTtcbiAgICB0aGlzLnN0b3JlLmRpc3BhdGNoKFxuICAgICAgU3VwZXJ2aXNpb25BY3Rpb25zLm1haW5BY3Rpb25zKHtcbiAgICAgICAgYWN0aW9uczogW1xuICAgICAgICAgIHtcbiAgICAgICAgICAgIGFjdGlvbjogU3VwZXJ2aXNpb25BY3Rpb25zLnJlbG9hZEVycm9ycygpLFxuICAgICAgICAgICAgaWNvbjogJ3Jlc2V0JyxcbiAgICAgICAgICAgIGxhYmVsOiAncmVsb2FkRXJyb3JzJyxcbiAgICAgICAgICAgIG1vZHVsZUFjY2VzczogJ3N1cGVydmlzaW9uJyxcbiAgICAgICAgICAgIHBhZ2VBY2Nlc3M6ICdlcnJvcnMnXG4gICAgICAgICAgfSxcbiAgICAgICAgICB7XG4gICAgICAgICAgICBhY3Rpb246IFN1cGVydmlzaW9uQWN0aW9ucy5hY2tub3dsZWRnZUVycm9ycygpLFxuICAgICAgICAgICAgaWNvbjogJ2NoZWNrJyxcbiAgICAgICAgICAgIGxhYmVsOiAnYWNrbm93bGVkZ2VFcnJvcnMnLFxuICAgICAgICAgICAgbW9kdWxlQWNjZXNzOiAnc3VwZXJ2aXNpb24nLFxuICAgICAgICAgICAgcGFnZUFjY2VzczogJ2Vycm9ycydcbiAgICAgICAgICB9LFxuICAgICAgICAgIHtcbiAgICAgICAgICAgIGFjdGlvbjogU3VwZXJ2aXNpb25BY3Rpb25zLmxvYWRJbnRlZ3JhdGlvbkVycm9ycygpLFxuICAgICAgICAgICAgbGFiZWw6ICdyZWZyZXNoJyxcbiAgICAgICAgICAgIGljb246ICdzeW5jaHJvJyxcbiAgICAgICAgICAgIG1vZHVsZUFjY2VzczogJ3N1cGVydmlzaW9uJyxcbiAgICAgICAgICAgIHBhZ2VBY2Nlc3M6ICdlcnJvcnMnXG4gICAgICAgICAgfVxuICAgICAgICBdXG4gICAgICB9KVxuICAgICk7XG4gIH1cblxuICBzZWxlY3RDdXJyZW50RXJyb3IoZTogSW50ZWdyYXRpb25FcnJvcikge1xuICAgIGlmICh0aGlzLmN1cnJlbnRJbnRlZ3JhdGlvbkVycm9yLnZhbHVlPy5vQ2xhc3MgPT09IGUub0NsYXNzKSB0aGlzLmN1cnJlbnRJbnRlZ3JhdGlvbkVycm9yLm5leHQodW5kZWZpbmVkKTtcbiAgICBlbHNlIHRoaXMuY3VycmVudEludGVncmF0aW9uRXJyb3IubmV4dChlKTtcbiAgfVxuXG4gIGdldFRvdGFsRXJyb3JDb3VudChlOiBJbnRlZ3JhdGlvbkVycm9yKTogbnVtYmVyIHtcbiAgICByZXR1cm4gZS5lcnJvcnMucmVkdWNlKChwcmV2aW91c1ZhbHVlLCBjdXJyZW50VmFsdWUpID0+IHByZXZpb3VzVmFsdWUgKyBjdXJyZW50VmFsdWUuY291bnQsIDApO1xuICB9XG5cbiAgdG9nZ2xlRXJyb3JEZXRhaWxzKGU6IEludGVncmF0aW9uRXJyb3IpOiB2b2lkIHtcbiAgICB0aGlzLnNlbGVjdEN1cnJlbnRFcnJvcihlKTtcbiAgICB0aGlzLnN0b3JlLmRpc3BhdGNoKFN1cGVydmlzaW9uQWN0aW9ucy50b2dnbGVFcnJvckRldGFpbHMoeyBlcnJvcjogZSwgZXJyb3JEZXRhaWxzT3BlbjogdHJ1ZSB9KSk7XG4gIH1cblxuICBvbkNoZWNrQ2hhbmdlKHNlbGVjdGVkQ2xhc3M6IHN0cmluZyk6IHZvaWQge1xuICAgIHRoaXMuc3RvcmUuZGlzcGF0Y2goU3VwZXJ2aXNpb25BY3Rpb25zLnRvZ2dsZUNsYXNzU2VsZWN0aW9uKHsgc2VsZWN0ZWRDbGFzcyB9KSk7XG4gIH1cblxuICBpc0NsYXNzU2VsZWN0ZWQoYzogc3RyaW5nKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuICEhdGhpcy5zZWxlY3RlZENsYXNzZXMuZmluZCgob2NsYXNzKSA9PiBvY2xhc3MgPT09IGMpO1xuICB9XG5cbiAgc2V0UmVmcmVzaEludGVydmFsKCRldmVudDogbnVtYmVyKTogdm9pZCB7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChTdXBlcnZpc2lvbkFjdGlvbnMuc3RvcEF1dG9SZWZyZXNoKCkpO1xuICAgIHRoaXMuc3RvcmUuZGlzcGF0Y2goU3VwZXJ2aXNpb25BY3Rpb25zLnNldFJlZnJlc2hJbnRlcnZhbCh7IGludGVydmFsOiArJGV2ZW50ICogMTAwMCB9KSk7XG4gIH1cblxuICBzdG9wUHJvcGFnYXRpb24oZXZlbnQ6IEV2ZW50KTogdm9pZCB7XG4gICAgZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XG4gIH1cblxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLnN0b3JlLmRpc3BhdGNoKFN1cGVydmlzaW9uQWN0aW9ucy50b2dnbGVFcnJvckRldGFpbHMoeyBlcnJvcjogbnVsbCwgZXJyb3JEZXRhaWxzT3BlbjogZmFsc2UgfSkpO1xuICAgIHRoaXMuc3Vic2NyaXB0aW9uLnVuc3Vic2NyaWJlKCk7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChTdXBlcnZpc2lvbkFjdGlvbnMubWFpbkFjdGlvbnMoeyBhY3Rpb25zOiBbXSB9KSk7XG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChTdXBlcnZpc2lvbkFjdGlvbnMuc3RvcEF1dG9SZWZyZXNoKCkpO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiby1iYXNlLWNvbnRhaW5lclwiPlxuICA8aDEgY2xhc3M9XCJhLWgxXCI+e3sgJ0Bwcnkuc3VwZXJ2aXNpb24uaW1wb3J0RXJyb3JzLnRpdGxlJyB8IGkxOG4gfX08L2gxPlxuXG4gIDxkaXYgY2xhc3M9XCJtLWZvcm0tbGFiZWwtZmllbGQgbS1mb3JtLWxhYmVsLWZpZWxkLS1pbmxpbmVcIj5cbiAgICA8bGFiZWwgY2xhc3M9XCJhLWxhYmVsXCIgZm9yPVwiaW50ZXJ2YWxfdGltZVwiPlJhZnJhaWNoaXIgY2hhcXVlPC9sYWJlbD5cbiAgICA8cHJ5LXNlbGVjdFxuICAgICAgW25nTW9kZWxdPVwicmVmcmVzaEludGVydmFsJCB8IGFzeW5jXCJcbiAgICAgIChuZ01vZGVsQ2hhbmdlKT1cInNldFJlZnJlc2hJbnRlcnZhbCgkZXZlbnQpXCJcbiAgICAgIFtpdGVtc109XCJwb3NzaWJsZUludGVydmFsc1wiXG4gICAgICBpZD1cImludGVydmFsX3RpbWVcIlxuICAgICAgY2xhc3M9XCJhLXByeS1zZWxlY3RcIlxuICAgID48L3ByeS1zZWxlY3Q+XG4gICAgPGxhYmVsIGNsYXNzPVwiYS1sYWJlbFwiPnNlY29uZGVzPC9sYWJlbD5cbiAgPC9kaXY+XG5cbiAgPHRhYmxlXG4gICAgY2xhc3M9XCJhLXRhYmxlXCJcbiAgICBwcnlTb3J0VGFibGVcbiAgICBwcnlTb3J0QWN0aXZlPVwibmFtZVwiXG4gICAgcHJ5U29ydERpcmVjdGlvbj1cImFzY1wiXG4gICAgKHByeVNvcnRDaGFuZ2UpPVwic29ydEFjdGl2ZSA9ICRldmVudC5hY3RpdmU7IHNvcnREaXJlY3Rpb24gPSAkZXZlbnQuZGlyZWN0aW9uXCJcbiAgPlxuICAgIDxjYXB0aW9uPlxuICAgICAge3tcbiAgICAgICAgJ0Bwcnkuc3VwZXJ2aXNpb24uaW1wb3J0RXJyb3JzLnRpdGxlJyB8IGkxOG5cbiAgICAgIH19LFxuICAgICAge3tcbiAgICAgICAgJ0BwcnkuYWN0aW9uLnNvcnRhYmxlQ29sdW1uSGVhZGVyJyB8IGkxOG5cbiAgICAgIH19XG4gICAgPC9jYXB0aW9uPlxuICAgIDx0aGVhZD5cbiAgICAgIDx0cj5cbiAgICAgICAgPHRoPjwvdGg+XG4gICAgICAgIDx0aCBwcnlTb3J0SGVhZGVyPVwibmFtZVwiPnt7ICdAcHJ5LnN1cGVydmlzaW9uLmltcG9ydEVycm9ycy5uYW1lJyB8IGkxOG4gfX08L3RoPlxuICAgICAgICA8dGggcHJ5U29ydEhlYWRlcj1cImNvdW50XCI+e3sgJ0Bwcnkuc3VwZXJ2aXNpb24uaW1wb3J0RXJyb3JzLnRvdGFsRXJyb3JDb3VudCcgfCBpMThuIH19PC90aD5cbiAgICAgICAgPHRoPjwvdGg+XG4gICAgICA8L3RyPlxuICAgIDwvdGhlYWQ+XG4gICAgPHRib2R5PlxuICAgICAgPHRyXG4gICAgICAgICpuZ0Zvcj1cImxldCBlIG9mIGludGVncmF0aW9uRXJyb3JzJCB8IGFzeW5jIHwgcHJ5U29ydERhdGE6IHNvcnRBY3RpdmUgOiBzb3J0RGlyZWN0aW9uXCJcbiAgICAgICAgKGNsaWNrKT1cInRvZ2dsZUVycm9yRGV0YWlscyhlKVwiXG4gICAgICAgIFtjbGFzcy5pcy1zZWxlY3RlZF09XCIoY3VycmVudEludGVncmF0aW9uRXJyb3IgfCBhc3luYyk/Lm9DbGFzcyA9PT0gZS5vQ2xhc3NcIlxuICAgICAgPlxuICAgICAgICA8dGQgY2xhc3M9XCJ2aWV3LWRldGFpbHNcIiAoY2xpY2spPVwic3RvcFByb3BhZ2F0aW9uKCRldmVudClcIj5cbiAgICAgICAgICA8YnV0dG9uXG4gICAgICAgICAgICBbaWRdPVwiJ2J1dHRvbi1hdHRyLScgKyAoZS5vQ2xhc3MgfCB0cmFuc2xhdGVJZDogeyB0eXBlOiAnY2xhc3MnLCBvdXRwdXQ6ICduYW1lJyB9IHwgYXN5bmMpXCJcbiAgICAgICAgICAgIHR5cGU9XCJidXR0b25cIlxuICAgICAgICAgICAgY2xhc3M9XCJhLWJ0biBhLWJ0bi0taWNvbi1vbmx5XCJcbiAgICAgICAgICAgIHRpdGxlPVwie3sgJ0BwcnkuYWN0aW9uLnZpZXdEZXRhaWxzJyB8IGkxOG4gfX1cIlxuICAgICAgICAgICAgW2F0dHIuYXJpYS1leHBhbmRlZF09XCIoY3VycmVudEludGVncmF0aW9uRXJyb3IgfCBhc3luYyk/Lm9DbGFzcyA9PT0gZS5vQ2xhc3NcIlxuICAgICAgICAgICAgYXJpYS1oYXNwb3B1cFxuICAgICAgICAgICAgW2F0dHIuYXJpYS1jb250cm9sc109XCIncGFuZWwtYXR0ci0nICsgKGUub0NsYXNzIHwgdHJhbnNsYXRlSWQ6IHsgdHlwZTogJ2NsYXNzJywgb3V0cHV0OiAnbmFtZScgfSB8IGFzeW5jKVwiXG4gICAgICAgICAgPlxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ1LXZpc3VhbGx5LWhpZGRlblwiPnt7IGUubmFtZSB9fSwge3sgJ0BwcnkuYWN0aW9uLnZpZXdEZXRhaWxzJyB8IGkxOG4gfX08L3NwYW4+XG4gICAgICAgICAgICA8cHJ5LWljb24gaWNvblN2Zz1cImV5ZVwiIFt3aWR0aF09XCIxNVwiIFtoZWlnaHRdPVwiMTVcIj48L3ByeS1pY29uPlxuICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICA8L3RkPlxuICAgICAgICA8dGQ+XG4gICAgICAgICAge3sgZS5vQ2xhc3MgfCB0cmFuc2xhdGVJZDogeyB0eXBlOiAnY2xhc3MnLCBvdXRwdXQ6ICduYW1lJyB9IHwgYXN5bmMgfX1cbiAgICAgICAgPC90ZD5cbiAgICAgICAgPHRkPlxuICAgICAgICAgIHt7IGdldFRvdGFsRXJyb3JDb3VudChlKSB9fVxuICAgICAgICA8L3RkPlxuICAgICAgICA8dGQgKGNsaWNrKT1cInN0b3BQcm9wYWdhdGlvbigkZXZlbnQpXCI+XG4gICAgICAgICAgPHByeS1jaGVja2JveFxuICAgICAgICAgICAgaWQ9XCJzZWxlY3RDbGFzc1wiXG4gICAgICAgICAgICBbbmdNb2RlbF09XCJpc0NsYXNzU2VsZWN0ZWQoZS5vQ2xhc3MpXCJcbiAgICAgICAgICAgIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hlY2tDaGFuZ2UoZS5vQ2xhc3MpXCJcbiAgICAgICAgICA+PC9wcnktY2hlY2tib3g+XG4gICAgICAgIDwvdGQ+XG4gICAgICA8L3RyPlxuICAgIDwvdGJvZHk+XG4gIDwvdGFibGU+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Component, ViewChild, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { BaseLayoutComponent } from '@provoly/dashboard';
|
|
3
|
+
import { SupervisionIntegrationErrorsSelectComponent } from '../../../supervision/components/supervision-integration-errors/supervision-integration-errors-select/supervision-integration-errors-select.component';
|
|
4
|
+
import { SupervisionActions } from '../../store/supervision.actions';
|
|
5
|
+
import { SupervisionSelectors } from '../../store/supervision.selectors';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@ngrx/store";
|
|
8
|
+
import * as i2 from "@angular/router";
|
|
9
|
+
import * as i3 from "@angular/common";
|
|
10
|
+
import * as i4 from "@provoly/dashboard";
|
|
11
|
+
import * as i5 from "../supervision-menu/supervision-menu.component";
|
|
12
|
+
import * as i6 from "../supervision-title/supervision-title.component";
|
|
13
|
+
export class SupervisionLayoutComponent extends BaseLayoutComponent {
|
|
14
|
+
constructor(store, router) {
|
|
15
|
+
super(store, router);
|
|
16
|
+
this.baseToolboxTranslation = '@pry.supervision.';
|
|
17
|
+
this.actions$ = this.store.select(SupervisionSelectors.actions);
|
|
18
|
+
this.subActions$ = this.store.select(SupervisionSelectors.subActions);
|
|
19
|
+
this.panelOpen$ = this.store.select(SupervisionSelectors.errorDetailsOpen);
|
|
20
|
+
}
|
|
21
|
+
init() {
|
|
22
|
+
this.menus$ = this.store.select(SupervisionSelectors.menus);
|
|
23
|
+
this.menuOpen$ = this.store.select(SupervisionSelectors.menuOpen);
|
|
24
|
+
}
|
|
25
|
+
highlightMenu(menu) {
|
|
26
|
+
this.store.dispatch(SupervisionActions.highLightMenu({ menu }));
|
|
27
|
+
}
|
|
28
|
+
ngAfterViewInit() {
|
|
29
|
+
if (this.componentRef) {
|
|
30
|
+
this.supervisionPanel.clear();
|
|
31
|
+
}
|
|
32
|
+
this.componentRef = this.supervisionPanel.createComponent(SupervisionIntegrationErrorsSelectComponent);
|
|
33
|
+
}
|
|
34
|
+
ngOnDestroy() {
|
|
35
|
+
this.store.dispatch(SupervisionActions.toggleErrorDetails({ error: null, errorDetailsOpen: false }));
|
|
36
|
+
}
|
|
37
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: SupervisionLayoutComponent, deps: [{ token: i1.Store }, { token: i2.Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
38
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: SupervisionLayoutComponent, selector: "pry-supervision-layout", viewQueries: [{ propertyName: "supervisionPanel", first: true, predicate: ["supervisionPanel"], descendants: true, read: ViewContainerRef, static: true }], usesInheritance: true, ngImport: i0, template: "<div class=\"o-base-layout\" [ngClass]=\"{ 'is-menu-open': menuOpen$ | async }\">\n <pry-supervision-title class=\"o-base-layout__title\"></pry-supervision-title>\n <pry-supervision-menu *ngIf=\"menuOpen$ | async\" class=\"o-base-layout__menu\"></pry-supervision-menu>\n <pry-base-toolbox\n class=\"o-base-layout__toolbox\"\n [baseToolboxTranslation]=\"baseToolboxTranslation\"\n [actions$]=\"actions$\"\n [subActions$]=\"subActions$\"\n ></pry-base-toolbox>\n\n <div class=\"o-base-layout__contentwrapper\">\n <div class=\"o-base-layout__content\">\n <router-outlet></router-outlet>\n </div>\n <div class=\"o-base-layout__panel\" [class.is-open]=\"panelOpen$ | async\">\n <div class=\"o-base-layout__panel__content\">\n <ng-template #supervisionPanel></ng-template>\n </div>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i4.BaseToolboxComponent, selector: "pry-base-toolbox", inputs: ["baseToolboxTranslation", "actions$", "subActions$"] }, { kind: "directive", type: i2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "component", type: i5.SupervisionMenuComponent, selector: "pry-supervision-menu" }, { kind: "component", type: i6.SupervisionTitleComponent, selector: "pry-supervision-title" }, { kind: "pipe", type: i3.AsyncPipe, name: "async" }] }); }
|
|
39
|
+
}
|
|
40
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: SupervisionLayoutComponent, decorators: [{
|
|
41
|
+
type: Component,
|
|
42
|
+
args: [{ selector: 'pry-supervision-layout', template: "<div class=\"o-base-layout\" [ngClass]=\"{ 'is-menu-open': menuOpen$ | async }\">\n <pry-supervision-title class=\"o-base-layout__title\"></pry-supervision-title>\n <pry-supervision-menu *ngIf=\"menuOpen$ | async\" class=\"o-base-layout__menu\"></pry-supervision-menu>\n <pry-base-toolbox\n class=\"o-base-layout__toolbox\"\n [baseToolboxTranslation]=\"baseToolboxTranslation\"\n [actions$]=\"actions$\"\n [subActions$]=\"subActions$\"\n ></pry-base-toolbox>\n\n <div class=\"o-base-layout__contentwrapper\">\n <div class=\"o-base-layout__content\">\n <router-outlet></router-outlet>\n </div>\n <div class=\"o-base-layout__panel\" [class.is-open]=\"panelOpen$ | async\">\n <div class=\"o-base-layout__panel__content\">\n <ng-template #supervisionPanel></ng-template>\n </div>\n </div>\n </div>\n</div>\n" }]
|
|
43
|
+
}], ctorParameters: function () { return [{ type: i1.Store }, { type: i2.Router }]; }, propDecorators: { supervisionPanel: [{
|
|
44
|
+
type: ViewChild,
|
|
45
|
+
args: ['supervisionPanel', { static: true, read: ViewContainerRef }]
|
|
46
|
+
}] } });
|
|
47
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3VwZXJ2aXNpb24tbGF5b3V0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Byb3ZvbHkvZGFzaGJvYXJkL3N1cGVydmlzaW9uL2NvbXBvbmVudHMvc3VwZXJ2aXNpb24tbGF5b3V0L3N1cGVydmlzaW9uLWxheW91dC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcm92b2x5L2Rhc2hib2FyZC9zdXBlcnZpc2lvbi9jb21wb25lbnRzL3N1cGVydmlzaW9uLWxheW91dC9zdXBlcnZpc2lvbi1sYXlvdXQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFpQixTQUFTLEVBQTJCLFNBQVMsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUcvRyxPQUFPLEVBQUUsbUJBQW1CLEVBQXFCLE1BQU0sb0JBQW9CLENBQUM7QUFFNUUsT0FBTyxFQUFFLDJDQUEyQyxFQUFFLE1BQU0sc0pBQXNKLENBQUM7QUFDbk4sT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDckUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sbUNBQW1DLENBQUM7Ozs7Ozs7O0FBTXpFLE1BQU0sT0FBTywwQkFBMkIsU0FBUSxtQkFBbUI7SUFRakUsWUFBWSxLQUFpQixFQUFFLE1BQWM7UUFDM0MsS0FBSyxDQUFDLEtBQUssRUFBRSxNQUFNLENBQUMsQ0FBQztRQUNyQixJQUFJLENBQUMsc0JBQXNCLEdBQUcsbUJBQW1CLENBQUM7UUFDbEQsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxvQkFBb0IsQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUNoRSxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLG9CQUFvQixDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQ3RFLElBQUksQ0FBQyxVQUFVLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsb0JBQW9CLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztJQUM3RSxDQUFDO0lBRVEsSUFBSTtRQUNYLElBQUksQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsb0JBQW9CLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDNUQsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxvQkFBb0IsQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUNwRSxDQUFDO0lBRVEsYUFBYSxDQUFDLElBQVk7UUFDakMsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsa0JBQWtCLENBQUMsYUFBYSxDQUFDLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQyxDQUFDO0lBQ2xFLENBQUM7SUFFRCxlQUFlO1FBQ2IsSUFBSSxJQUFJLENBQUMsWUFBWSxFQUFFO1lBQ3JCLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxLQUFLLEVBQUUsQ0FBQztTQUMvQjtRQUNELElBQUksQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDLGVBQWUsQ0FBQywyQ0FBMkMsQ0FBQyxDQUFDO0lBQ3pHLENBQUM7SUFFUSxXQUFXO1FBQ2xCLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUFDLGtCQUFrQixDQUFDLGtCQUFrQixDQUFDLEVBQUUsS0FBSyxFQUFFLElBQUksRUFBRSxnQkFBZ0IsRUFBRSxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDdkcsQ0FBQzs4R0FsQ1UsMEJBQTBCO2tHQUExQiwwQkFBMEIsK0pBS2dCLGdCQUFnQixrRUNsQnZFLHkxQkFxQkE7OzJGRFJhLDBCQUEwQjtrQkFKdEMsU0FBUzsrQkFDRSx3QkFBd0I7aUhBUXVDLGdCQUFnQjtzQkFBeEYsU0FBUzt1QkFBQyxrQkFBa0IsRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUUsSUFBSSxFQUFFLGdCQUFnQixFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQWZ0ZXJWaWV3SW5pdCwgQ29tcG9uZW50LCBDb21wb25lbnRSZWYsIE9uRGVzdHJveSwgVmlld0NoaWxkLCBWaWV3Q29udGFpbmVyUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBSb3V0ZXIgfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xuaW1wb3J0IHsgU3RvcmUgfSBmcm9tICdAbmdyeC9zdG9yZSc7XG5pbXBvcnQgeyBCYXNlTGF5b3V0Q29tcG9uZW50LCBCYXNlVG9vbGJveEFjdGlvbiB9IGZyb20gJ0Bwcm92b2x5L2Rhc2hib2FyZCc7XG5pbXBvcnQgeyBPYnNlcnZhYmxlIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBTdXBlcnZpc2lvbkludGVncmF0aW9uRXJyb3JzU2VsZWN0Q29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vc3VwZXJ2aXNpb24vY29tcG9uZW50cy9zdXBlcnZpc2lvbi1pbnRlZ3JhdGlvbi1lcnJvcnMvc3VwZXJ2aXNpb24taW50ZWdyYXRpb24tZXJyb3JzLXNlbGVjdC9zdXBlcnZpc2lvbi1pbnRlZ3JhdGlvbi1lcnJvcnMtc2VsZWN0LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTdXBlcnZpc2lvbkFjdGlvbnMgfSBmcm9tICcuLi8uLi9zdG9yZS9zdXBlcnZpc2lvbi5hY3Rpb25zJztcbmltcG9ydCB7IFN1cGVydmlzaW9uU2VsZWN0b3JzIH0gZnJvbSAnLi4vLi4vc3RvcmUvc3VwZXJ2aXNpb24uc2VsZWN0b3JzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAncHJ5LXN1cGVydmlzaW9uLWxheW91dCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9zdXBlcnZpc2lvbi1sYXlvdXQuY29tcG9uZW50Lmh0bWwnXG59KVxuZXhwb3J0IGNsYXNzIFN1cGVydmlzaW9uTGF5b3V0Q29tcG9uZW50IGV4dGVuZHMgQmFzZUxheW91dENvbXBvbmVudCBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQsIE9uRGVzdHJveSB7XG4gIGJhc2VUb29sYm94VHJhbnNsYXRpb246IHN0cmluZztcbiAgYWN0aW9ucyQ6IE9ic2VydmFibGU8QmFzZVRvb2xib3hBY3Rpb25bXT47XG4gIHN1YkFjdGlvbnMkOiBPYnNlcnZhYmxlPEJhc2VUb29sYm94QWN0aW9uW10+O1xuICBwYW5lbE9wZW4kOiBPYnNlcnZhYmxlPGJvb2xlYW4+O1xuICBAVmlld0NoaWxkKCdzdXBlcnZpc2lvblBhbmVsJywgeyBzdGF0aWM6IHRydWUsIHJlYWQ6IFZpZXdDb250YWluZXJSZWYgfSkgc3VwZXJ2aXNpb25QYW5lbCE6IFZpZXdDb250YWluZXJSZWY7XG4gIGNvbXBvbmVudFJlZj86IENvbXBvbmVudFJlZjxhbnk+O1xuXG4gIGNvbnN0cnVjdG9yKHN0b3JlOiBTdG9yZTxhbnk+LCByb3V0ZXI6IFJvdXRlcikge1xuICAgIHN1cGVyKHN0b3JlLCByb3V0ZXIpO1xuICAgIHRoaXMuYmFzZVRvb2xib3hUcmFuc2xhdGlvbiA9ICdAcHJ5LnN1cGVydmlzaW9uLic7XG4gICAgdGhpcy5hY3Rpb25zJCA9IHRoaXMuc3RvcmUuc2VsZWN0KFN1cGVydmlzaW9uU2VsZWN0b3JzLmFjdGlvbnMpO1xuICAgIHRoaXMuc3ViQWN0aW9ucyQgPSB0aGlzLnN0b3JlLnNlbGVjdChTdXBlcnZpc2lvblNlbGVjdG9ycy5zdWJBY3Rpb25zKTtcbiAgICB0aGlzLnBhbmVsT3BlbiQgPSB0aGlzLnN0b3JlLnNlbGVjdChTdXBlcnZpc2lvblNlbGVjdG9ycy5lcnJvckRldGFpbHNPcGVuKTtcbiAgfVxuXG4gIG92ZXJyaWRlIGluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5tZW51cyQgPSB0aGlzLnN0b3JlLnNlbGVjdChTdXBlcnZpc2lvblNlbGVjdG9ycy5tZW51cyk7XG4gICAgdGhpcy5tZW51T3BlbiQgPSB0aGlzLnN0b3JlLnNlbGVjdChTdXBlcnZpc2lvblNlbGVjdG9ycy5tZW51T3Blbik7XG4gIH1cblxuICBvdmVycmlkZSBoaWdobGlnaHRNZW51KG1lbnU6IHN0cmluZyk6IHZvaWQge1xuICAgIHRoaXMuc3RvcmUuZGlzcGF0Y2goU3VwZXJ2aXNpb25BY3Rpb25zLmhpZ2hMaWdodE1lbnUoeyBtZW51IH0pKTtcbiAgfVxuXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5jb21wb25lbnRSZWYpIHtcbiAgICAgIHRoaXMuc3VwZXJ2aXNpb25QYW5lbC5jbGVhcigpO1xuICAgIH1cbiAgICB0aGlzLmNvbXBvbmVudFJlZiA9IHRoaXMuc3VwZXJ2aXNpb25QYW5lbC5jcmVhdGVDb21wb25lbnQoU3VwZXJ2aXNpb25JbnRlZ3JhdGlvbkVycm9yc1NlbGVjdENvbXBvbmVudCk7XG4gIH1cblxuICBvdmVycmlkZSBuZ09uRGVzdHJveSgpIHtcbiAgICB0aGlzLnN0b3JlLmRpc3BhdGNoKFN1cGVydmlzaW9uQWN0aW9ucy50b2dnbGVFcnJvckRldGFpbHMoeyBlcnJvcjogbnVsbCwgZXJyb3JEZXRhaWxzT3BlbjogZmFsc2UgfSkpO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiby1iYXNlLWxheW91dFwiIFtuZ0NsYXNzXT1cInsgJ2lzLW1lbnUtb3Blbic6IG1lbnVPcGVuJCB8IGFzeW5jIH1cIj5cbiAgPHByeS1zdXBlcnZpc2lvbi10aXRsZSBjbGFzcz1cIm8tYmFzZS1sYXlvdXRfX3RpdGxlXCI+PC9wcnktc3VwZXJ2aXNpb24tdGl0bGU+XG4gIDxwcnktc3VwZXJ2aXNpb24tbWVudSAqbmdJZj1cIm1lbnVPcGVuJCB8IGFzeW5jXCIgY2xhc3M9XCJvLWJhc2UtbGF5b3V0X19tZW51XCI+PC9wcnktc3VwZXJ2aXNpb24tbWVudT5cbiAgPHByeS1iYXNlLXRvb2xib3hcbiAgICBjbGFzcz1cIm8tYmFzZS1sYXlvdXRfX3Rvb2xib3hcIlxuICAgIFtiYXNlVG9vbGJveFRyYW5zbGF0aW9uXT1cImJhc2VUb29sYm94VHJhbnNsYXRpb25cIlxuICAgIFthY3Rpb25zJF09XCJhY3Rpb25zJFwiXG4gICAgW3N1YkFjdGlvbnMkXT1cInN1YkFjdGlvbnMkXCJcbiAgPjwvcHJ5LWJhc2UtdG9vbGJveD5cblxuICA8ZGl2IGNsYXNzPVwiby1iYXNlLWxheW91dF9fY29udGVudHdyYXBwZXJcIj5cbiAgICA8ZGl2IGNsYXNzPVwiby1iYXNlLWxheW91dF9fY29udGVudFwiPlxuICAgICAgPHJvdXRlci1vdXRsZXQ+PC9yb3V0ZXItb3V0bGV0PlxuICAgIDwvZGl2PlxuICAgIDxkaXYgY2xhc3M9XCJvLWJhc2UtbGF5b3V0X19wYW5lbFwiIFtjbGFzcy5pcy1vcGVuXT1cInBhbmVsT3BlbiQgfCBhc3luY1wiPlxuICAgICAgPGRpdiBjbGFzcz1cIm8tYmFzZS1sYXlvdXRfX3BhbmVsX19jb250ZW50XCI+XG4gICAgICAgIDxuZy10ZW1wbGF0ZSAjc3VwZXJ2aXNpb25QYW5lbD48L25nLXRlbXBsYXRlPlxuICAgICAgPC9kaXY+XG4gICAgPC9kaXY+XG4gIDwvZGl2PlxuPC9kaXY+XG4iXX0=
|