@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,684 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 718.92 393.41">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>.cls-1 {
|
|
5
|
+
fill: none;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.cls-2 {
|
|
9
|
+
mask: url(#mask-15);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.cls-3 {
|
|
13
|
+
mask: url(#mask-17);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.cls-4 {
|
|
17
|
+
mask: url(#mask-18);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.cls-5 {
|
|
21
|
+
mask: url(#mask-14);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.cls-6 {
|
|
25
|
+
mask: url(#mask-13);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.cls-7 {
|
|
29
|
+
mask: url(#mask-12);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.cls-8 {
|
|
33
|
+
mask: url(#mask-11);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.cls-9 {
|
|
37
|
+
mask: url(#mask-16);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.cls-10 {
|
|
41
|
+
mask: url(#mask-10);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.cls-11 {
|
|
45
|
+
filter: url(#luminosity-noclip-6);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.cls-12 {
|
|
49
|
+
filter: url(#luminosity-noclip-8);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.cls-13 {
|
|
53
|
+
filter: url(#luminosity-noclip-4);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.cls-14 {
|
|
57
|
+
clip-path: url(#clippath);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.cls-15 {
|
|
61
|
+
mask: url(#mask);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.cls-16 {
|
|
65
|
+
filter: url(#luminosity-noclip-2);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.cls-17 {
|
|
69
|
+
fill: #f9f9f9;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.cls-18 {
|
|
73
|
+
fill: #72bc98;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.cls-19 {
|
|
77
|
+
fill: #36b283;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.cls-20 {
|
|
81
|
+
fill: url(#Dégradé_sans_nom_103);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.cls-20, .cls-21, .cls-22, .cls-23, .cls-24, .cls-25, .cls-26, .cls-27, .cls-28, .cls-29, .cls-30, .cls-31 {
|
|
85
|
+
mix-blend-mode: multiply;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.cls-21 {
|
|
89
|
+
fill: url(#Dégradé_sans_nom_106);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.cls-32 {
|
|
93
|
+
filter: url(#luminosity-noclip-18);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.cls-33 {
|
|
97
|
+
filter: url(#luminosity-noclip-17);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.cls-34 {
|
|
101
|
+
filter: url(#luminosity-noclip-16);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.cls-35 {
|
|
105
|
+
filter: url(#luminosity-noclip-15);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.cls-36 {
|
|
109
|
+
filter: url(#luminosity-noclip-19);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.cls-37 {
|
|
113
|
+
filter: url(#luminosity-noclip-14);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.cls-38 {
|
|
117
|
+
filter: url(#luminosity-noclip-10);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.cls-39 {
|
|
121
|
+
filter: url(#luminosity-noclip-12);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.cls-40 {
|
|
125
|
+
filter: url(#luminosity-noclip-20);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.cls-22 {
|
|
129
|
+
fill: url(#linear-gradient-6);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.cls-23 {
|
|
133
|
+
fill: url(#linear-gradient-5);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.cls-24 {
|
|
137
|
+
fill: url(#linear-gradient-4);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.cls-25 {
|
|
141
|
+
fill: url(#linear-gradient-2);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.cls-26 {
|
|
145
|
+
fill: url(#linear-gradient-3);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.cls-41 {
|
|
149
|
+
clip-path: url(#clippath-1);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.cls-42 {
|
|
153
|
+
clip-path: url(#clippath-4);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.cls-43 {
|
|
157
|
+
clip-path: url(#clippath-3);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.cls-44 {
|
|
161
|
+
clip-path: url(#clippath-2);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.cls-45 {
|
|
165
|
+
clip-path: url(#clippath-7);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.cls-46 {
|
|
169
|
+
clip-path: url(#clippath-8);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.cls-47 {
|
|
173
|
+
clip-path: url(#clippath-6);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.cls-48 {
|
|
177
|
+
clip-path: url(#clippath-5);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.cls-49 {
|
|
181
|
+
clip-path: url(#clippath-9);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.cls-50 {
|
|
185
|
+
mix-blend-mode: overlay;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.cls-51 {
|
|
189
|
+
clip-path: url(#clippath-14);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.cls-52 {
|
|
193
|
+
clip-path: url(#clippath-13);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.cls-53 {
|
|
197
|
+
clip-path: url(#clippath-10);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.cls-54 {
|
|
201
|
+
clip-path: url(#clippath-11);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.cls-55 {
|
|
205
|
+
mix-blend-mode: screen;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.cls-56 {
|
|
209
|
+
opacity: .5;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.cls-27 {
|
|
213
|
+
fill: url(#linear-gradient);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.cls-57 {
|
|
217
|
+
isolation: isolate;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.cls-28 {
|
|
221
|
+
fill: url(#Dégradé_sans_nom_106-4);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.cls-29 {
|
|
225
|
+
fill: url(#Dégradé_sans_nom_106-5);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.cls-30 {
|
|
229
|
+
fill: url(#Dégradé_sans_nom_106-2);
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.cls-31 {
|
|
233
|
+
fill: url(#Dégradé_sans_nom_106-3);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.cls-58 {
|
|
237
|
+
mask: url(#mask-3);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.cls-59 {
|
|
241
|
+
mask: url(#mask-2);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.cls-60 {
|
|
245
|
+
mask: url(#mask-5);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.cls-61 {
|
|
249
|
+
mask: url(#mask-4);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.cls-62 {
|
|
253
|
+
mask: url(#mask-1);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.cls-63 {
|
|
257
|
+
mask: url(#mask-7);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.cls-64 {
|
|
261
|
+
mask: url(#mask-6);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.cls-65 {
|
|
265
|
+
mask: url(#mask-8);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.cls-66 {
|
|
269
|
+
mask: url(#mask-9);
|
|
270
|
+
}</style>
|
|
271
|
+
<filter id="luminosity-noclip-2" x="12.62" y="244.57" width="132.3" height="233.98"
|
|
272
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
273
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
274
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
275
|
+
</filter>
|
|
276
|
+
<filter id="luminosity-noclip-3" x="12.62" y="-8388.71" width="132.3" height="32766"
|
|
277
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
278
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
279
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
280
|
+
</filter>
|
|
281
|
+
<mask id="mask-1" x="12.62" y="-8388.71" width="132.3" height="32766" maskUnits="userSpaceOnUse" />
|
|
282
|
+
<linearGradient id="linear-gradient" x1="13.81" y1="492.67" x2="205.51" y2="300.97"
|
|
283
|
+
gradientTransform="matrix(1, 0, 0, 1, 0, 0)" gradientUnits="userSpaceOnUse">
|
|
284
|
+
<stop offset="0" stop-color="#000" />
|
|
285
|
+
<stop offset="1" stop-color="gray" />
|
|
286
|
+
</linearGradient>
|
|
287
|
+
<mask id="mask" x="12.62" y="244.57" width="132.3" height="233.98" maskUnits="userSpaceOnUse">
|
|
288
|
+
<g class="cls-16">
|
|
289
|
+
<g class="cls-62">
|
|
290
|
+
<polygon class="cls-27" points="12.62 382.76 144.92 244.57 144.92 478.55 12.7 478.55 12.62 382.76" />
|
|
291
|
+
</g>
|
|
292
|
+
</g>
|
|
293
|
+
</mask>
|
|
294
|
+
<linearGradient id="Dégradé_sans_nom_106" x1="13.81" y1="492.67" x2="205.51" y2="300.97"
|
|
295
|
+
gradientTransform="matrix(1, 0, 0, 1, 0, 0)" gradientUnits="userSpaceOnUse">
|
|
296
|
+
<stop offset="0" stop-color="#5db085" />
|
|
297
|
+
<stop offset="1" stop-color="#aedac6" />
|
|
298
|
+
</linearGradient>
|
|
299
|
+
<filter id="luminosity-noclip-4" x="144.57" y="244.5" width="89.4" height="234.05"
|
|
300
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
301
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
302
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
303
|
+
</filter>
|
|
304
|
+
<filter id="luminosity-noclip-5" x="144.57" y="-8388.71" width="89.4" height="32766"
|
|
305
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
306
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
307
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
308
|
+
</filter>
|
|
309
|
+
<mask id="mask-3" x="144.57" y="-8388.71" width="89.4" height="32766" maskUnits="userSpaceOnUse" />
|
|
310
|
+
<linearGradient id="linear-gradient-2" x1="127.78" y1="423.02" x2="239.6" y2="311.19"
|
|
311
|
+
xlink:href="#linear-gradient" />
|
|
312
|
+
<mask id="mask-2" x="144.57" y="244.5" width="89.4" height="234.05" maskUnits="userSpaceOnUse">
|
|
313
|
+
<g class="cls-13">
|
|
314
|
+
<g class="cls-58">
|
|
315
|
+
<polygon class="cls-25"
|
|
316
|
+
points="144.57 244.5 144.57 244.5 233.97 276.81 233.97 478.55 144.92 478.55 144.57 244.5" />
|
|
317
|
+
</g>
|
|
318
|
+
</g>
|
|
319
|
+
</mask>
|
|
320
|
+
<linearGradient id="Dégradé_sans_nom_106-2" x1="127.78" y1="423.02" x2="239.6" y2="311.19"
|
|
321
|
+
xlink:href="#Dégradé_sans_nom_106" />
|
|
322
|
+
<filter id="luminosity-noclip-6" x="233.97" y="220.47" width="65.52" height="258.08"
|
|
323
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
324
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
325
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
326
|
+
</filter>
|
|
327
|
+
<filter id="luminosity-noclip-7" x="233.97" y="-8388.71" width="65.52" height="32766"
|
|
328
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
329
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
330
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
331
|
+
</filter>
|
|
332
|
+
<mask id="mask-5" x="233.97" y="-8388.71" width="65.52" height="32766" maskUnits="userSpaceOnUse" />
|
|
333
|
+
<linearGradient id="linear-gradient-3" x1="238.71" y1="405.7" x2="360.37" y2="284.04"
|
|
334
|
+
xlink:href="#linear-gradient" />
|
|
335
|
+
<mask id="mask-4" x="233.97" y="220.47" width="65.52" height="258.08" maskUnits="userSpaceOnUse">
|
|
336
|
+
<g class="cls-11">
|
|
337
|
+
<g class="cls-60">
|
|
338
|
+
<polygon class="cls-26"
|
|
339
|
+
points="233.97 276.81 233.97 276.81 299.49 220.47 299.49 478.55 233.97 478.55 233.97 276.81" />
|
|
340
|
+
</g>
|
|
341
|
+
</g>
|
|
342
|
+
</mask>
|
|
343
|
+
<linearGradient id="Dégradé_sans_nom_106-3" x1="238.71" y1="405.7" x2="360.37" y2="284.04"
|
|
344
|
+
xlink:href="#Dégradé_sans_nom_106" />
|
|
345
|
+
<filter id="luminosity-noclip-8" x="299.49" y="212.37" width="90.72" height="266.23"
|
|
346
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
347
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
348
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
349
|
+
</filter>
|
|
350
|
+
<filter id="luminosity-noclip-9" x="299.49" y="-8388.71" width="90.72" height="32766"
|
|
351
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
352
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
353
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
354
|
+
</filter>
|
|
355
|
+
<mask id="mask-7" x="299.49" y="-8388.71" width="90.72" height="32766" maskUnits="userSpaceOnUse" />
|
|
356
|
+
<linearGradient id="linear-gradient-4" x1="313.09" y1="381.29" x2="450.31" y2="244.07"
|
|
357
|
+
xlink:href="#linear-gradient" />
|
|
358
|
+
<mask id="mask-6" x="299.49" y="212.37" width="90.72" height="266.23" maskUnits="userSpaceOnUse">
|
|
359
|
+
<g class="cls-12">
|
|
360
|
+
<g class="cls-63">
|
|
361
|
+
<polygon class="cls-24"
|
|
362
|
+
points="299.49 220.47 299.49 220.47 390.21 212.37 390.21 478.6 299.49 478.6 299.49 220.47" />
|
|
363
|
+
</g>
|
|
364
|
+
</g>
|
|
365
|
+
</mask>
|
|
366
|
+
<linearGradient id="Dégradé_sans_nom_106-4" x1="313.09" y1="381.29" x2="450.31" y2="244.07"
|
|
367
|
+
xlink:href="#Dégradé_sans_nom_106" />
|
|
368
|
+
<filter id="luminosity-noclip-10" x="390.21" y="24.99" width="116.9" height="457.16"
|
|
369
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
370
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
371
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
372
|
+
</filter>
|
|
373
|
+
<filter id="luminosity-noclip-11" x="390.21" y="-8388.71" width="116.9" height="32766"
|
|
374
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
375
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
376
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
377
|
+
</filter>
|
|
378
|
+
<mask id="mask-9" x="390.21" y="-8388.71" width="116.9" height="32766" maskUnits="userSpaceOnUse" />
|
|
379
|
+
<linearGradient id="linear-gradient-5" x1="367.89" y1="392.78" x2="578.99" y2="181.69"
|
|
380
|
+
gradientTransform="matrix(1, 0, 0, 1, 0, 0)" gradientUnits="userSpaceOnUse">
|
|
381
|
+
<stop offset="0" stop-color="#000" />
|
|
382
|
+
<stop offset="1" stop-color="#4d4d4d" />
|
|
383
|
+
</linearGradient>
|
|
384
|
+
<mask id="mask-8" x="390.21" y="24.99" width="116.9" height="457.16" maskUnits="userSpaceOnUse">
|
|
385
|
+
<g class="cls-38">
|
|
386
|
+
<g class="cls-66">
|
|
387
|
+
<polygon class="cls-23"
|
|
388
|
+
points="507.11 24.99 507.11 482.14 390.21 482.14 390.21 215.96 390.21 215.96 507.11 24.99" />
|
|
389
|
+
</g>
|
|
390
|
+
</g>
|
|
391
|
+
</mask>
|
|
392
|
+
<linearGradient id="Dégradé_sans_nom_106-5" x1="382.59" y1="413.32" x2="563.96" y2="231.96"
|
|
393
|
+
xlink:href="#Dégradé_sans_nom_106" />
|
|
394
|
+
<filter id="luminosity-noclip-12" x="507.11" y="38.85" width="211.81" height="520.54"
|
|
395
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
396
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
397
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
398
|
+
</filter>
|
|
399
|
+
<filter id="luminosity-noclip-13" x="507.11" y="-8388.71" width="211.81" height="32766"
|
|
400
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
401
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
402
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
403
|
+
</filter>
|
|
404
|
+
<mask id="mask-11" x="507.11" y="-8388.71" width="211.81" height="32766" maskUnits="userSpaceOnUse" />
|
|
405
|
+
<linearGradient id="linear-gradient-6" x1="542.83" y1="400.99" x2="813.71" y2="130.11"
|
|
406
|
+
gradientTransform="matrix(1, 0, 0, 1, 0, 0)" gradientUnits="userSpaceOnUse">
|
|
407
|
+
<stop offset="0" stop-color="#000" />
|
|
408
|
+
<stop offset="1" stop-color="#999" />
|
|
409
|
+
</linearGradient>
|
|
410
|
+
<mask id="mask-10" x="507.11" y="38.85" width="211.81" height="520.54" maskUnits="userSpaceOnUse">
|
|
411
|
+
<g class="cls-39">
|
|
412
|
+
<g class="cls-8">
|
|
413
|
+
<polygon class="cls-22"
|
|
414
|
+
points="507.11 559.39 507.11 102.23 507.11 102.23 718.92 38.85 718.92 559.39 507.11 559.39" />
|
|
415
|
+
</g>
|
|
416
|
+
</g>
|
|
417
|
+
</mask>
|
|
418
|
+
<linearGradient id="Dégradé_sans_nom_103" x1="570.86" y1="372.24" x2="813.16" y2="129.93"
|
|
419
|
+
gradientTransform="matrix(1, 0, 0, 1, 0, 0)" gradientUnits="userSpaceOnUse">
|
|
420
|
+
<stop offset="0" stop-color="#5db085" />
|
|
421
|
+
<stop offset="1" stop-color="#afdac6" />
|
|
422
|
+
</linearGradient>
|
|
423
|
+
<clipPath id="clippath">
|
|
424
|
+
<path class="cls-1"
|
|
425
|
+
d="M6.89,376.13c-6.38-.01-11.57,5.16-11.58,11.56,0,6.4,5.16,11.59,11.54,11.6,6.38,.01,11.57-5.16,11.58-11.56,0-6.4-5.16-11.59-11.54-11.6Zm7.92,15.16c-.09,.19-.18,.38-.28,.57-1.48,2.71-4.35,4.54-7.67,4.54-4.81,0-8.72-3.89-8.72-8.69,0-1.76,.53-3.4,1.43-4.77,.12-.18,.25-.36,.39-.54,.06-.08,.12-.16,.19-.24,1.6-1.92,4.01-3.14,6.71-3.14,2.41,0,4.59,.98,6.16,2.55,.1,.11,.21,.21,.3,.32,.08,.09,.16,.18,.24,.27,.02,.02,.03,.04,.05,.06,.28,.35,.54,.72,.77,1.1,.03,.05,.06,.1,.09,.16,.04,.06,.07,.13,.11,.2,.06,.12,.13,.25,.19,.38,.02,.05,.05,.1,.07,.14,.48,1.08,.74,2.27,.74,3.52s-.28,2.49-.77,3.58Z" />
|
|
426
|
+
</clipPath>
|
|
427
|
+
<clipPath id="clippath-1">
|
|
428
|
+
<path class="cls-1"
|
|
429
|
+
d="M-3.99,387.85c.01-5.98,4.86-10.82,10.82-10.81,5.97,.01,10.8,4.86,10.79,10.84,0,5.98-4.86,10.82-10.82,10.81-5.97,0-10.8-4.86-10.79-10.84Z" />
|
|
430
|
+
</clipPath>
|
|
431
|
+
<filter id="luminosity-noclip-14" x="-4.79" y="376.2" width="23.24" height="23.33"
|
|
432
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
433
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
434
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
435
|
+
</filter>
|
|
436
|
+
<mask id="mask-12" x="-4.79" y="376.2" width="23.24" height="23.33" maskUnits="userSpaceOnUse">
|
|
437
|
+
<g class="cls-37">
|
|
438
|
+
<image width="49" height="50" transform="translate(-4.96 375.83) scale(.48)"
|
|
439
|
+
xlink:href="data:image/png;base64,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" />
|
|
440
|
+
</g>
|
|
441
|
+
</mask>
|
|
442
|
+
<clipPath id="clippath-2">
|
|
443
|
+
<path class="cls-1"
|
|
444
|
+
d="M143.69,233c-6.38-.01-11.57,5.16-11.58,11.56,0,6.4,5.16,11.59,11.54,11.6,6.38,0,11.57-5.17,11.58-11.56,0-6.4-5.16-11.59-11.54-11.6Zm7.92,15.16c-.09,.19-.18,.38-.28,.56-1.47,2.71-4.35,4.55-7.66,4.55-4.81,0-8.72-3.89-8.72-8.69,0-1.76,.53-3.4,1.43-4.77,.12-.19,.25-.36,.39-.54,.06-.08,.13-.16,.19-.24,1.6-1.92,4.01-3.14,6.71-3.14,2.41,0,4.59,.97,6.16,2.54,.11,.11,.21,.21,.31,.32,.08,.09,.16,.18,.24,.27,.02,.02,.03,.04,.05,.06,.28,.34,.54,.71,.77,1.1,.03,.05,.06,.1,.09,.15,.04,.07,.07,.13,.11,.2,.07,.12,.13,.25,.19,.38,.02,.05,.04,.1,.07,.15,.48,1.07,.74,2.27,.74,3.52s-.28,2.49-.77,3.58Z" />
|
|
445
|
+
</clipPath>
|
|
446
|
+
<clipPath id="clippath-3">
|
|
447
|
+
<path class="cls-1"
|
|
448
|
+
d="M132.81,244.71c.01-5.98,4.85-10.82,10.82-10.81,5.97,.01,10.8,4.86,10.79,10.84,0,5.98-4.85,10.82-10.82,10.81-5.97,0-10.8-4.86-10.79-10.84Z" />
|
|
449
|
+
</clipPath>
|
|
450
|
+
<filter id="luminosity-noclip-15" x="132.01" y="233.06" width="23.24" height="23.34"
|
|
451
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
452
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
453
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
454
|
+
</filter>
|
|
455
|
+
<mask id="mask-13" x="132.01" y="233.06" width="23.24" height="23.34" maskUnits="userSpaceOnUse">
|
|
456
|
+
<g class="cls-35">
|
|
457
|
+
<image width="49" height="50" transform="translate(131.84 232.79) scale(.48)"
|
|
458
|
+
xlink:href="data:image/png;base64,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" />
|
|
459
|
+
</g>
|
|
460
|
+
</mask>
|
|
461
|
+
<clipPath id="clippath-4">
|
|
462
|
+
<path class="cls-1"
|
|
463
|
+
d="M232.93,265.23c-6.38-.01-11.57,5.16-11.58,11.56,0,6.4,5.16,11.59,11.54,11.6,6.38,.01,11.57-5.16,11.58-11.56,0-6.4-5.16-11.59-11.54-11.6Zm7.92,15.16c-.09,.19-.18,.38-.28,.57-1.47,2.71-4.35,4.54-7.66,4.54-4.81,0-8.72-3.89-8.72-8.69,0-1.76,.53-3.4,1.43-4.77,.12-.19,.25-.36,.39-.54,.06-.08,.12-.16,.19-.24,1.6-1.92,4.01-3.14,6.71-3.14,2.41,0,4.59,.97,6.16,2.54,.1,.11,.21,.21,.3,.32,.08,.09,.16,.18,.24,.27,.02,.02,.03,.04,.05,.06,.28,.34,.54,.71,.77,1.1,.03,.05,.06,.1,.09,.15,.04,.07,.07,.13,.11,.2,.07,.12,.13,.25,.19,.38,.02,.05,.04,.1,.07,.15,.48,1.08,.74,2.26,.74,3.52s-.28,2.48-.77,3.58Z" />
|
|
464
|
+
</clipPath>
|
|
465
|
+
<clipPath id="clippath-5">
|
|
466
|
+
<path class="cls-1"
|
|
467
|
+
d="M222.06,276.94c0-5.98,4.85-10.82,10.82-10.81,5.97,.01,10.8,4.86,10.79,10.84,0,5.98-4.85,10.82-10.82,10.81-5.97,0-10.8-4.86-10.79-10.84Z" />
|
|
468
|
+
</clipPath>
|
|
469
|
+
<filter id="luminosity-noclip-16" x="221.25" y="265.29" width="23.24" height="23.34"
|
|
470
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
471
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
472
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
473
|
+
</filter>
|
|
474
|
+
<mask id="mask-14" x="221.25" y="265.29" width="23.24" height="23.34" maskUnits="userSpaceOnUse">
|
|
475
|
+
<g class="cls-34">
|
|
476
|
+
<image width="49" height="50" transform="translate(221.12 264.95) scale(.48)"
|
|
477
|
+
xlink:href="data:image/png;base64,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" />
|
|
478
|
+
</g>
|
|
479
|
+
</mask>
|
|
480
|
+
<clipPath id="clippath-6">
|
|
481
|
+
<path class="cls-1"
|
|
482
|
+
d="M298.46,208.9c-6.38-.01-11.57,5.16-11.58,11.56,0,6.4,5.16,11.59,11.54,11.6,6.38,.01,11.57-5.17,11.58-11.56,0-6.4-5.16-11.59-11.54-11.6Zm7.92,15.16c-.09,.19-.18,.38-.28,.56-1.48,2.71-4.35,4.55-7.66,4.55-4.81,0-8.72-3.89-8.72-8.69,0-1.76,.53-3.4,1.43-4.77,.12-.19,.25-.36,.39-.54,.06-.08,.12-.16,.19-.24,1.6-1.92,4.01-3.14,6.71-3.14,2.41,0,4.59,.97,6.16,2.54,.11,.11,.21,.21,.31,.32,.08,.09,.16,.18,.24,.27,.02,.02,.03,.04,.05,.06,.28,.34,.54,.71,.77,1.1,.03,.05,.06,.1,.09,.15,.04,.07,.07,.13,.11,.2,.06,.12,.13,.25,.19,.38,.02,.05,.04,.1,.07,.15,.48,1.07,.74,2.27,.74,3.52s-.27,2.49-.77,3.58Z" />
|
|
483
|
+
</clipPath>
|
|
484
|
+
<clipPath id="clippath-7">
|
|
485
|
+
<path class="cls-1"
|
|
486
|
+
d="M287.59,220.61c0-5.98,4.86-10.82,10.82-10.81,5.97,.01,10.8,4.86,10.79,10.84-.01,5.98-4.85,10.82-10.82,10.81-5.97,0-10.8-4.86-10.79-10.84Z" />
|
|
487
|
+
</clipPath>
|
|
488
|
+
<filter id="luminosity-noclip-17" x="286.78" y="208.96" width="23.24" height="23.34"
|
|
489
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
490
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
491
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
492
|
+
</filter>
|
|
493
|
+
<mask id="mask-15" x="286.78" y="208.96" width="23.24" height="23.34" maskUnits="userSpaceOnUse">
|
|
494
|
+
<g class="cls-33">
|
|
495
|
+
<image width="50" height="49" transform="translate(286.4 208.79) scale(.48)"
|
|
496
|
+
xlink:href="data:image/png;base64,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" />
|
|
497
|
+
</g>
|
|
498
|
+
</mask>
|
|
499
|
+
<clipPath id="clippath-8">
|
|
500
|
+
<path class="cls-1"
|
|
501
|
+
d="M389.22,200.77c-6.38,0-11.57,5.17-11.58,11.56,0,6.4,5.16,11.59,11.54,11.6,6.38,.01,11.56-5.16,11.58-11.56,0-6.4-5.16-11.59-11.54-11.6Zm7.92,15.17c-.09,.19-.18,.38-.28,.56-1.47,2.71-4.35,4.55-7.66,4.55-4.81,0-8.72-3.89-8.72-8.69,0-1.76,.53-3.4,1.43-4.77,.12-.19,.25-.37,.39-.54,.06-.08,.12-.16,.19-.24,1.6-1.92,4.01-3.14,6.71-3.14,2.41,0,4.59,.97,6.16,2.55,.1,.1,.21,.21,.3,.32,.08,.09,.16,.18,.24,.27,.02,.02,.03,.04,.05,.06,.28,.34,.54,.71,.77,1.1,.03,.05,.06,.1,.09,.15,.04,.07,.07,.13,.11,.2,.07,.12,.13,.25,.19,.38,.02,.05,.05,.1,.07,.15,.48,1.07,.74,2.26,.74,3.51s-.28,2.49-.77,3.58Z" />
|
|
502
|
+
</clipPath>
|
|
503
|
+
<clipPath id="clippath-9">
|
|
504
|
+
<path class="cls-1"
|
|
505
|
+
d="M378.34,212.49c0-5.98,4.85-10.82,10.82-10.81,5.97,0,10.8,4.86,10.79,10.84,0,5.98-4.85,10.82-10.82,10.81-5.97-.01-10.8-4.87-10.79-10.84Z" />
|
|
506
|
+
</clipPath>
|
|
507
|
+
<filter id="luminosity-noclip-18" x="377.54" y="200.84" width="23.24" height="23.34"
|
|
508
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
509
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
510
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
511
|
+
</filter>
|
|
512
|
+
<mask id="mask-16" x="377.54" y="200.84" width="23.24" height="23.34" maskUnits="userSpaceOnUse">
|
|
513
|
+
<g class="cls-32">
|
|
514
|
+
<image width="50" height="50" transform="translate(377.12 200.63) scale(.48)"
|
|
515
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAABcRAAAXEQHKJvM/AAAIHUlEQVRoQ8WZ3U/TbhTHP+3Wss0x2CSguIkzDpyEVGKMeuHLX+CNf6aJUS9+FxLDhfHCEISRwID5MgaKWwA3wHa2Xfu7IH2C0G686jdZlm5Pn+d8+z3nOec5lVzX5TwgSZLvxK7rSn6/nxbSWRAJMvqoOAtyJyZyWuODcFJScqcBfjgvEnDyuY9FRJIk9zgLybJMLBZjZGQEWT76UsddB47hWp0mlmWZSCRCJpMhm80SiUTI5/OoqoqmaRQKBQqFArVajUqlwsbGBqZp4jhOu2mP7GodiXQiEIvFePjwIdlsloGBAdLpNNFolFgsRiaTQVVVVFXFtm1KpRKu6/Lt2zcqlQqqqjI/P8/ExAS6rrdbpiOhtkQ6kRgaGmJ8fBxN09A0jVgsJj4XLlygr6+PcDiMoijYts36+joAjUYDwzDY3NxElmWeP3/Ox48fWV5epp097cgEEmlHQlVV7t27x/j4OHfv3mVsbAxVVYlEIiiKgqqq4ltVVWRZptlsCiPr9TqmaWKaJoZhUC6XKRQKTExMMDs721adIDJhvx/bYWRkhHw+L1TIZrN0dXWRyWQACIVCSJKELMviI0kSkUhEzBGNRtF1HVmWMQyDaDQq/uvv72d2dpZKpdIxfvbDVxE/NWRZ5unTp2iaxtDQEL29veTzeXp7e1EUhZ6eHiRJ8u4Xn4PwjPPWbTabbG1t8evXL7a2tiiVSiwsLDA/P8/k5KSvOn6qHFIkyKWuX78uVLhy5QqJRIILFy7Q3d2NoihCiU44uA1HIhFSqRSqqgIwNjZGNBolGo2iKAovX748NIckSe5BMkdyraGhIZ49e8bo6CiZTEbkBY+A5z4nQSgUEkarqsru7q6INYBiscjS0lKHWQ4kxCCXymazjI6OMjw8TDweBxCLHVWJdvAeSnd3N8lkEkVRyOfzJBIJkYsO4qCtgkiQS+VyOR4/fkw8Hqerq4uBgQGi0eipVPCDJElCncHBQQBu376Npmncv38/6B5hc1vXSqVSPHjwAE3TyOfz9PX1oarqmajgB29OWZaJx+MMDg6iaRr1ep1KpUK5XA68N5CILMs8evSIW7duCcmj0SiRSORcSHgIhUKoqipcLJ1Oc+fOHVZWVqjVaoE5JpBILpdD0zSePHlCd3c38XicSCRCKBQKuuXMIEkSiqKgKAqXLl1CVVU+f/4M4LuLQZvq98aNGwwPDwMwODhIV1fXsSrY08AL/kQiQU9Pjyg8/eDFibz/Yj+87a+7u/vgX38FXkINhUKEw3uOo2la4MP0/VWWZa5evcq1a9dIJpMiuM8zNtrB25qBP0qd/fAlEolESCaT4vq8dqlO2K9IOp1mYGCA3t5e37G+RDKZDKlUilQqJRLgv4IX+LBXdd+8edN3nC+RfD4vqlnYk/ZvBfp+eEk3HA4Ti8VIpVIkEolD4yRJcmW/QB8bG2NkZIREIoHjOLiu2/bAc57wzjnhcFgcH/wequ9jnp6eZmlpie3tbWzb/mckAFqtFrDnYl+/fmVpacn3nCL71faWZdFoNAAEkX9JBvaOx81mk2az6fu/ryLFYhHTNNnc3MSyrGOd1M4SjuNg2zbb29sArK+vUywWD41zXVfyJVKr1fj+/TumaWLbNq1W658o4uWucDhMo9GgVquxs7PjO9aXiGVZlMtl6vU6tm37DfkrcBwHy7KAvaDf2dlha2vLd6wvEdd1RYyYpili5F+oAnseUiqV+PLlS/sY8Qv4YrHIly9fsG2ber3O7u7uX42VVqslWkihUAhFUdquH5jlXNdlc3OTubk5arUalmVh2/ZfIbPfpdbW1igWixQKBd+zuydC4HlkeXmZFy9e8Pv3b9ECtW2bZDIZWLidBVzXxbIsWq0Wq6ur1Ot1CoUCr169atuEaFt3lEolZmZmqFarVKtVsYCXpM4D3pb7+/dvfv78yczMDIVCgfn5+bb3CSJ+ceI4DouLi0xPT7O1tYWu6+i6TrPZFKXLeaDValEul1lcXGRhYYEPHz4IV9uP/TZ37Gutr6/z7t07rly5AuwVlLFYDMMwRCPiLApKL7hhLy5WVlaYn59ncXFRNL/b4Q8irutKfkVkqVSiUCgAkEwmMU1TtGy8bvtJybiuKxKvruuiQw97O+f79++D7mvfafQj4zgOb9++Fde5XI5ms0k6naanpwfHcYQ6ruse6RDmuaYXE81mk83NTYrFIj9+/KBarfLp0ycMwzh075F6v0HY2dnhzZs3GIbB9vY2hmHQbDbp7+/n0qVLOI5DOBz+owO/XyUvnrzE2mq1MAxD1HS6rrOysiLebBWLRZaXl4PMOQRfIkEupus6ExMTlMtldF3HMAzS6TSw16TYfwz1OiGwVzN5CliWhWmaWJaFZVlsbGxgWRZzc3NMTU0xOTlJqVQKzFd+akAbRYLIOI7D0tIS9XqdarUq2jT5fJ6NjQ3xrsS2bSzLwnVdwuGwMNyyLLa3t/n16xe6rrO+vs7CwgKFQoGpqSm+fft2yBYPQSSgg2sFkQGoVqu8fv1alNWrq6skk0ni8TiWZR1yL13XhRobGxs0Gg0ajQY/f/5kenqa//7771RVQ8eXodD5XeLAwADxeJxsNks8Hufy5cvkcjkymQyhUEgQME2TSqXC7u4unz9/Fg+h02uDdkp4OBIRD50IeZBlmVQqxcWLF8nn87RaLZaXl7Ftm7W1NVFRHwVHIQHHJAJHJ3NaHJWAh2NnseMucBKcZI1jK7IfZ63OSQh4OBWRgzgusdMYfhBnSsQPHrmzNNoP/wMzGDejVJfvFAAAAABJRU5ErkJggg==" />
|
|
516
|
+
</g>
|
|
517
|
+
</mask>
|
|
518
|
+
<clipPath id="clippath-10">
|
|
519
|
+
<path class="cls-1"
|
|
520
|
+
d="M506.05,90.62c-6.38,0-11.57,5.17-11.58,11.56,0,6.4,5.16,11.59,11.54,11.6,6.38,.01,11.57-5.17,11.58-11.56,0-6.4-5.16-11.59-11.54-11.6Zm7.92,15.17c-.09,.19-.18,.38-.28,.57-1.48,2.71-4.35,4.54-7.66,4.54-4.81,0-8.72-3.89-8.72-8.69,0-1.76,.53-3.4,1.43-4.77,.12-.19,.25-.36,.39-.54,.06-.08,.12-.16,.19-.24,1.6-1.92,4.01-3.14,6.71-3.14,2.4,0,4.59,.97,6.16,2.55,.11,.1,.21,.21,.31,.32,.08,.09,.16,.18,.24,.27,.02,.02,.03,.04,.05,.06,.28,.35,.54,.71,.77,1.1,.03,.05,.06,.1,.09,.16,.04,.07,.07,.13,.11,.2,.06,.13,.13,.25,.19,.38,.02,.05,.04,.1,.07,.15,.48,1.08,.74,2.27,.74,3.52s-.28,2.48-.77,3.57Z" />
|
|
521
|
+
</clipPath>
|
|
522
|
+
<clipPath id="clippath-11">
|
|
523
|
+
<path class="cls-1"
|
|
524
|
+
d="M495.18,102.33c.01-5.98,4.86-10.82,10.82-10.81,5.97,0,10.8,4.86,10.79,10.84,0,5.98-4.85,10.82-10.82,10.81-5.97,0-10.8-4.86-10.79-10.84Z" />
|
|
525
|
+
</clipPath>
|
|
526
|
+
<filter id="luminosity-noclip-19" x="494.37" y="90.68" width="23.24" height="23.33"
|
|
527
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
528
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
529
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
530
|
+
</filter>
|
|
531
|
+
<mask id="mask-17" x="494.37" y="90.68" width="23.24" height="23.33" maskUnits="userSpaceOnUse">
|
|
532
|
+
<g class="cls-36">
|
|
533
|
+
<image width="49" height="50" transform="translate(494.24 90.23) scale(.48)"
|
|
534
|
+
xlink:href="data:image/png;base64,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" />
|
|
535
|
+
</g>
|
|
536
|
+
</mask>
|
|
537
|
+
<clipPath id="clippath-13">
|
|
538
|
+
<path class="cls-1"
|
|
539
|
+
d="M708.04,30.23c-6.38,0-11.57,5.17-11.58,11.56,0,6.4,5.16,11.59,11.54,11.6,6.38,.01,11.57-5.17,11.58-11.56,0-6.4-5.16-11.59-11.54-11.6Zm7.92,15.17c-.09,.19-.18,.38-.28,.57-1.48,2.71-4.35,4.54-7.66,4.54-4.81,0-8.72-3.89-8.72-8.69,0-1.76,.53-3.4,1.43-4.77,.12-.19,.25-.36,.39-.54,.06-.08,.12-.16,.19-.24,1.6-1.92,4.01-3.14,6.71-3.14,2.4,0,4.59,.97,6.16,2.55,.11,.1,.21,.21,.31,.32,.08,.09,.16,.18,.24,.27,.02,.02,.03,.04,.05,.06,.28,.35,.54,.71,.77,1.1,.03,.05,.06,.1,.09,.16,.04,.07,.07,.13,.11,.2,.06,.13,.13,.25,.19,.38,.02,.05,.04,.1,.07,.15,.48,1.08,.74,2.27,.74,3.52s-.28,2.48-.77,3.57Z" />
|
|
540
|
+
</clipPath>
|
|
541
|
+
<clipPath id="clippath-14">
|
|
542
|
+
<path class="cls-1"
|
|
543
|
+
d="M697.16,41.95c.01-5.98,4.86-10.82,10.82-10.81,5.97,0,10.8,4.86,10.79,10.84,0,5.98-4.85,10.82-10.82,10.81-5.97,0-10.8-4.86-10.79-10.84Z" />
|
|
544
|
+
</clipPath>
|
|
545
|
+
<filter id="luminosity-noclip-20" x="696.36" y="30.29" width="23.24" height="23.33"
|
|
546
|
+
color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
547
|
+
<feFlood flood-color="#fff" result="bg" />
|
|
548
|
+
<feBlend in="SourceGraphic" in2="bg" />
|
|
549
|
+
</filter>
|
|
550
|
+
<mask id="mask-18" x="696.36" y="30.29" width="23.24" height="23.33" maskUnits="userSpaceOnUse">
|
|
551
|
+
<g class="cls-40">
|
|
552
|
+
<image width="49" height="49" transform="translate(696.32 30.23) scale(.48)"
|
|
553
|
+
xlink:href="data:image/png;base64,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" />
|
|
554
|
+
</g>
|
|
555
|
+
</mask>
|
|
556
|
+
</defs>
|
|
557
|
+
<g class="cls-57">
|
|
558
|
+
<g id="graphique">
|
|
559
|
+
<rect class="cls-17" x="-16.45" y="-3.44" width="738.82" height="400.29" />
|
|
560
|
+
<g class="cls-56">
|
|
561
|
+
<g class="cls-15">
|
|
562
|
+
<polygon class="cls-21" points="12.62 382.76 144.92 244.57 144.92 478.55 12.7 478.55 12.62 382.76" />
|
|
563
|
+
</g>
|
|
564
|
+
<g class="cls-59">
|
|
565
|
+
<polygon class="cls-30"
|
|
566
|
+
points="144.57 244.5 144.57 244.5 233.97 276.81 233.97 478.55 144.92 478.55 144.57 244.5" />
|
|
567
|
+
</g>
|
|
568
|
+
<g class="cls-61">
|
|
569
|
+
<polygon class="cls-31"
|
|
570
|
+
points="233.97 276.81 233.97 276.81 299.49 220.47 299.49 478.55 233.97 478.55 233.97 276.81" />
|
|
571
|
+
</g>
|
|
572
|
+
<g class="cls-64">
|
|
573
|
+
<polygon class="cls-28"
|
|
574
|
+
points="299.49 220.47 299.49 220.47 390.21 212.37 390.21 478.6 299.49 478.6 299.49 220.47" />
|
|
575
|
+
</g>
|
|
576
|
+
<g class="cls-65">
|
|
577
|
+
<polygon class="cls-29"
|
|
578
|
+
points="507.11 102.23 507.11 482.14 390.21 478.55 390.21 212.37 390.21 212.37 507.11 102.23" />
|
|
579
|
+
</g>
|
|
580
|
+
<g class="cls-10">
|
|
581
|
+
<polygon class="cls-20"
|
|
582
|
+
points="507.11 482.14 507.11 102.23 507.11 102.23 718.92 38.85 717.47 559.39 507.11 482.14" />
|
|
583
|
+
</g>
|
|
584
|
+
</g>
|
|
585
|
+
<g>
|
|
586
|
+
<polygon class="cls-18"
|
|
587
|
+
points="7.59 388.4 6.15 387.02 143.64 243.42 232.4 275.33 299.15 219.49 388.5 211.06 505.75 101.53 707.22 41.81 708.02 43.64 507.12 103.11 389.68 212.96 299.95 221.42 232.8 277.59 144.19 245.73 7.59 388.4" />
|
|
588
|
+
<circle class="cls-19" cx="143.81" cy="244.82" r="6.86" />
|
|
589
|
+
<circle class="cls-19" cx="232.97" cy="275.81" r="6.86" />
|
|
590
|
+
<circle class="cls-19" cx="299.49" cy="220.47" r="6.86" />
|
|
591
|
+
<circle class="cls-19" cx="389.21" cy="211.37" r="6.86" />
|
|
592
|
+
<circle class="cls-19" cx="507.11" cy="102.23" r="6.86" />
|
|
593
|
+
<circle class="cls-19" cx="711.49" cy="40.77" r="6.86" />
|
|
594
|
+
<circle class="cls-19" cx="7.15" cy="387.02" r="6.86" />
|
|
595
|
+
</g>
|
|
596
|
+
<g class="cls-50">
|
|
597
|
+
<g class="cls-55">
|
|
598
|
+
<g class="cls-14">
|
|
599
|
+
<g class="cls-55">
|
|
600
|
+
<g class="cls-41">
|
|
601
|
+
<g class="cls-7">
|
|
602
|
+
<image width="49" height="50" transform="translate(-4.96 375.83) scale(.48)"
|
|
603
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADEAAAAyCAYAAAD1CDOyAAAACXBIWXMAABcRAAAXEQHKJvM/AAABJklEQVRoQ+2awRaEIAhFsTP//8vOiqJCQc0Cjnc7HXi3Z5ualHOGidDhqXjVID/pggaku8H9/ojYiIQUWsN1RpfUJl1Q4AkBjq65rU10LWkEd6hbaWniDQGKep+mCfWwCahakZr4UoBSzVGTsCKAFPNITViDFSlJWGuhCidhXeCWz9txQk4iVwnrLbBQCW8Ce16vx+kESnhrAckAwZpwzZKwwgZ+H2okh2nCPUvCCkvCCmEk1C+pjJLCNOGeJWEFlPD6cCeAYE0A+GtjzxuuCQA/bZxyck1YF7nlC3mcEKttsLlqTVgTKeaRjpMVkaEPjwDfi4j7NZ+AAY5Bb76jEsMjmiYo6sGDNO3RNkGZ2UpTeKRHAqELR4S6glNGJChckGn/b7ryByqzJHE2gWwGAAAAAElFTkSuQmCC" />
|
|
604
|
+
</g>
|
|
605
|
+
</g>
|
|
606
|
+
</g>
|
|
607
|
+
</g>
|
|
608
|
+
</g>
|
|
609
|
+
<g class="cls-55">
|
|
610
|
+
<g class="cls-44">
|
|
611
|
+
<g class="cls-55">
|
|
612
|
+
<g class="cls-43">
|
|
613
|
+
<g class="cls-6">
|
|
614
|
+
<image width="49" height="50" transform="translate(131.84 232.79) scale(.48)"
|
|
615
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADEAAAAyCAYAAAD1CDOyAAAACXBIWXMAABcRAAAXEQHKJvM/AAABJklEQVRoQ+2ayw6FMAgFqbn//8u9KwxWWuhDBdJZGkPP9NSNmnLO8BDc4MRcm+Yn3aBEuxOPiM1IaINL0DlDQiMSq8Jz4OwumUO6oeBJAUrXOtomuoYuQt2KpokvBCji+pKEOOAlmjlaElYEkGqemoQ1AYTNJR0nF3ASVltAbvlKCesCyCVnuOPkpQXkzBuqCW8tIBkgWBOu2RJWOMDvQ43kME24Z0tYYUtYIYyE+F7HOClME+7ZElZACa8PdwII1gSAvzbOvGUT3kQAwO9xumw2J2G9jVu+WhPWRS54O07s5rYkrLVRzSM1YUWkmUPzCRgHfPFqR7WJUhMU1cCFqNfTNEF5oxV1eKSnCUr3QkqG5vY2QSkXHGlnKHTJjEQJF2j6NyANf0UMJHFhr5p0AAAAAElFTkSuQmCC" />
|
|
616
|
+
</g>
|
|
617
|
+
</g>
|
|
618
|
+
</g>
|
|
619
|
+
</g>
|
|
620
|
+
</g>
|
|
621
|
+
<g class="cls-55">
|
|
622
|
+
<g class="cls-42">
|
|
623
|
+
<g class="cls-55">
|
|
624
|
+
<g class="cls-48">
|
|
625
|
+
<g class="cls-5">
|
|
626
|
+
<image width="49" height="50" transform="translate(221.12 264.95) scale(.48)"
|
|
627
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADEAAAAyCAYAAAD1CDOyAAAACXBIWXMAABcRAAAXEQHKJvM/AAABJklEQVRoQ+2awRKDIAxEF8f//2V6ioMKJAGtSYZ3rZPsc+HSNuWc8SLl8NR8apKde0AB9zZqnz8iNiPBhZZwnTEktXEPNHhCoMbQXG0TQ0uU0A5xK5om/iFQIt4naUI87AVErXBNfClQ0s3Rk7AiQDTztCSsCRDVXNxxckFNwmoLxC3fVcK6AHHKGe44eWmBOPKGasJbC0QGgjXhmiVhhQ1+LzWRwzThniVhhSVhhTAS4i+pjJLCNOGeJWEFkvB6uRMQrAnAXxtH3nBNAH7aOOWsNWFd5JYv5HEirLZRzdVrwppIMw93nKyIdHNIfj2lAV98tSN6iVwTJaKBDyLep5EAFIMnSFDu0UoAA0sUDM2V3IkW5cKZ+zIUvGRGoqQW5LX/N135AWv2I3KCaTIoAAAAAElFTkSuQmCC" />
|
|
628
|
+
</g>
|
|
629
|
+
</g>
|
|
630
|
+
</g>
|
|
631
|
+
</g>
|
|
632
|
+
</g>
|
|
633
|
+
<g class="cls-55">
|
|
634
|
+
<g class="cls-47">
|
|
635
|
+
<g class="cls-55">
|
|
636
|
+
<g class="cls-45">
|
|
637
|
+
<g class="cls-2">
|
|
638
|
+
<image width="50" height="49" transform="translate(286.4 208.79) scale(.48)"
|
|
639
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAxCAYAAACYq/ofAAAACXBIWXMAABcRAAAXEQHKJvM/AAABH0lEQVRoQ+2ZyxKDMAhFidP//+V0hcWRhEfUAuPZ1sI9c5ONtt473IA0tAm/m/lIDyiQQnNw/1mSWxHxCMzAeS6hTXpgwNUSFNdsayOuJQ7M7VgaeUqCot6paUQ97CZU7UiN/FuCMs0yE4kkgQwzSY2kYSQSsQ2EzcaJRJZAThnLHq0MbSCHrFQkkwSyZy57tNJSTiTj/UA6QMFG0vOKRGOD3Bcd6aUaKcEGhjcVgWmlGinBKxINFMl84RtAwUbSU1Ik4z3ZM5dsBCBXK4esXCMZZE4Zyx4tJHIrbLZZIxFlhpmkoxVJZukbIkAMGTGD5qsuwG/Q0y8qRAFE0whFPfgCTLu0jVDubsckgFgbobgWCrhnehqhcIu1TblDc3wBDnMjbiUb1U4AAAAASUVORK5CYII=" />
|
|
640
|
+
</g>
|
|
641
|
+
</g>
|
|
642
|
+
</g>
|
|
643
|
+
</g>
|
|
644
|
+
</g>
|
|
645
|
+
<g class="cls-55">
|
|
646
|
+
<g class="cls-46">
|
|
647
|
+
<g class="cls-55">
|
|
648
|
+
<g class="cls-49">
|
|
649
|
+
<g class="cls-9">
|
|
650
|
+
<image width="50" height="50" transform="translate(377.12 200.63) scale(.48)"
|
|
651
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAABcRAAAXEQHKJvM/AAABMUlEQVRoQ+2awRKDIAxEF6f//8v0FIsYTALaJpm+Y4cJ+1y4WEutFQ8xGlwGvy/xkhYosTwNbu2y3IqIJbxEO2tKapMWDLhTomdqtrWRqU0moH3U7Vga+ZZEi3pPTSPqYQ+hakdq5NcSLZdZrkQ8SRDDTFIjYRiJeGyDYLNxIp4liFPGtEcrQhvEIWsrEkmC2DOnPVph+Ys4ogIfkYgX/UCGRgD8RfyRRaRuSHDRgTyNYIPhTYVnsjRSsoikaSSfSPgLn6GRAuQQAZBUJOI92TOnbASI1cohK9dIBJlTxrRHi/DcCpvtqhGPMsNM0tHyKMMiiQA+ZAoW/wwlxEEPotpXK0Koht6E6eFZRQDD8AXMe2g+GOCgje5+lWQWIGZFiH5jq9h08J5VkR4umOoTjFXeagAjdFRmkzYAAAAASUVORK5CYII=" />
|
|
652
|
+
</g>
|
|
653
|
+
</g>
|
|
654
|
+
</g>
|
|
655
|
+
</g>
|
|
656
|
+
</g>
|
|
657
|
+
<g class="cls-55">
|
|
658
|
+
<g class="cls-53">
|
|
659
|
+
<g class="cls-55">
|
|
660
|
+
<g class="cls-54">
|
|
661
|
+
<g class="cls-3">
|
|
662
|
+
<image width="49" height="50" transform="translate(494.24 90.23) scale(.48)"
|
|
663
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADEAAAAyCAYAAAD1CDOyAAAACXBIWXMAABcRAAAXEQHKJvM/AAABHUlEQVRoQ+2Zyw6FIAxEB3P//5e5qypGoIX6aBvO0hA6x4GNppwzHiYDSNwiDT9uwSCtN1J7fpuYRkJb4W1iG7eggVagxdS+o01MDRmEZohbGWniDYES8TxJE+LNHkDUCtfElwIl3Rw9CSsCRDMP14QLWhLWWiCquWoSVgWIS76Qx8l6C8QpZynhRYDY84Y6Tt5aIDIQrAnXLAkrbPB7qYkcpgn3LAkrLAkrhJEQf6QySgrThHuWhBVIwuvlTkCwJgB/bex5wzUB+GnjlLPWhHWRS76Qx4mw2kY1V68JayLNPNxxsiKi+vEIfC/Czpf8AgaOjd78RsWGJyRNlIg3VjI0R9pEyZOtDIUnZiSIO2WmwhMaCaIWoCemClzjD6obJHEXMvluAAAAAElFTkSuQmCC" />
|
|
664
|
+
</g>
|
|
665
|
+
</g>
|
|
666
|
+
</g>
|
|
667
|
+
</g>
|
|
668
|
+
</g>
|
|
669
|
+
<g class="cls-55">
|
|
670
|
+
<g class="cls-52">
|
|
671
|
+
<g class="cls-55">
|
|
672
|
+
<g class="cls-51">
|
|
673
|
+
<g class="cls-4">
|
|
674
|
+
<image width="49" height="49" transform="translate(696.32 30.23) scale(.48)"
|
|
675
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADEAAAAxCAYAAABznEEcAAAACXBIWXMAABcRAAAXEQHKJvM/AAABKElEQVRoQ+2ZwRKDIAxEl07//5fpoYMFDSZBnGYZ31mTvCxcNOWcMRlLwaQ94OGtPaBgGVhCem9YbFRidPgzSk23zEt7YEfGPQI17voeCXfxC7iWZZUwF5yMqa92J0xFbka9K2dJRBAwYT1OEegutScRNQVxLkkiqkCXvQSDwGFGpjtR04jUEgwpiBQJRoFtZtbj1PBIBCAD/BIAvhKMl7phmSTYyStILJHEIxGGRyIIaQWJJZLACwPfPqOxTBLMJIBfAsBPgvpeMCexLb6WoE1jnwSLSDMn43E6LFqSYEljo5dEVBFxLqbjNPS7K1Iap7NoSST8X0btr0kU1EI3YF6gVQJwFJ2Aq49HouBq4GRoUdrP+B6l0azvuO7Ba0YlClJzTezSwBIfeO0ibapDxWkAAAAASUVORK5CYII=" />
|
|
676
|
+
</g>
|
|
677
|
+
</g>
|
|
678
|
+
</g>
|
|
679
|
+
</g>
|
|
680
|
+
</g>
|
|
681
|
+
</g>
|
|
682
|
+
</g>
|
|
683
|
+
</g>
|
|
684
|
+
</svg>
|