@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,28 @@
|
|
|
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" width="512px" height="512px"
|
|
3
|
+
viewBox="0 0 512 512" version="1.1">
|
|
4
|
+
<g id="surface1">
|
|
5
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(11.372549%,11.372549%,10.588235%);fill-opacity:1;"
|
|
6
|
+
d="M 366.933594 83.199219 L 147.199219 83.199219 C 140.800781 83.199219 134.398438 76.800781 134.398438 70.398438 C 134.398438 64 140.800781 57.601562 147.199219 57.601562 L 366.933594 57.601562 C 373.332031 57.601562 379.734375 64 379.734375 70.398438 C 379.734375 76.800781 373.332031 83.199219 366.933594 83.199219 Z M 366.933594 83.199219 " />
|
|
7
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(11.372549%,11.372549%,10.588235%);fill-opacity:1;"
|
|
8
|
+
d="M 366.933594 454.398438 L 145.066406 454.398438 C 138.667969 454.398438 132.265625 448 132.265625 441.601562 C 132.265625 435.199219 138.667969 428.800781 145.066406 428.800781 L 364.800781 428.800781 C 371.199219 428.800781 377.601562 435.199219 377.601562 441.601562 C 379.734375 450.132812 373.332031 454.398438 366.933594 454.398438 Z M 366.933594 454.398438 " />
|
|
9
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(11.372549%,11.372549%,10.588235%);fill-opacity:1;"
|
|
10
|
+
d="M 454.398438 145.066406 L 454.398438 369.066406 C 454.398438 375.464844 448 381.867188 441.601562 381.867188 C 435.199219 381.867188 428.800781 375.464844 428.800781 369.066406 L 428.800781 145.066406 C 428.800781 138.667969 435.199219 132.265625 441.601562 132.265625 C 448 132.265625 454.398438 136.535156 454.398438 145.066406 Z M 454.398438 145.066406 " />
|
|
11
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(11.372549%,11.372549%,10.588235%);fill-opacity:1;"
|
|
12
|
+
d="M 83.199219 145.066406 L 83.199219 369.066406 C 83.199219 375.464844 76.800781 381.867188 70.398438 381.867188 C 64 381.867188 57.601562 375.464844 57.601562 369.066406 L 57.601562 145.066406 C 57.601562 138.667969 64 132.265625 70.398438 132.265625 C 76.800781 132.265625 83.199219 136.535156 83.199219 145.066406 Z M 83.199219 145.066406 " />
|
|
13
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(11.372549%,11.372549%,10.588235%);fill-opacity:1;"
|
|
14
|
+
d="M 91.734375 106.667969 L 49.066406 106.667969 C 40.535156 106.667969 34.132812 100.265625 34.132812 91.734375 L 34.132812 49.066406 C 34.132812 40.535156 40.535156 34.132812 49.066406 34.132812 L 93.867188 34.132812 C 100.265625 32 106.667969 40.535156 106.667969 49.066406 L 106.667969 93.867188 C 106.667969 100.265625 100.265625 106.667969 91.734375 106.667969 Z M 91.734375 106.667969 " />
|
|
15
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(11.372549%,11.372549%,10.588235%);fill-opacity:1;"
|
|
16
|
+
d="M 462.933594 106.667969 L 418.132812 106.667969 C 411.734375 106.667969 405.332031 100.265625 405.332031 91.734375 L 405.332031 49.066406 C 405.332031 40.535156 411.734375 34.132812 420.265625 34.132812 L 465.066406 34.132812 C 473.601562 34.132812 480 40.535156 480 49.066406 L 480 93.867188 C 477.867188 100.265625 471.464844 106.667969 462.933594 106.667969 Z M 462.933594 106.667969 " />
|
|
17
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(11.372549%,11.372549%,10.588235%);fill-opacity:1;"
|
|
18
|
+
d="M 462.933594 480 L 418.132812 480 C 409.601562 480 403.199219 473.601562 403.199219 465.066406 L 403.199219 420.265625 C 403.199219 411.734375 409.601562 405.332031 418.132812 405.332031 L 462.933594 405.332031 C 471.464844 405.332031 477.867188 411.734375 477.867188 420.265625 L 477.867188 465.066406 C 477.867188 471.464844 471.464844 480 462.933594 480 Z M 462.933594 480 " />
|
|
19
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(11.372549%,11.372549%,10.588235%);fill-opacity:1;"
|
|
20
|
+
d="M 91.734375 480 L 49.066406 480 C 40.535156 480 34.132812 473.601562 34.132812 465.066406 L 34.132812 420.265625 C 34.132812 411.734375 40.535156 405.332031 49.066406 405.332031 L 93.867188 405.332031 C 100.265625 405.332031 106.667969 411.734375 106.667969 420.265625 L 106.667969 465.066406 C 106.667969 471.464844 100.265625 480 91.734375 480 Z M 91.734375 480 " />
|
|
21
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(11.372549%,11.372549%,10.588235%);fill-opacity:1;"
|
|
22
|
+
d="M 168.535156 194.132812 L 256 243.199219 L 345.601562 194.132812 L 260.265625 145.066406 C 260.265625 145.066406 256 142.933594 251.734375 145.066406 C 247.464844 147.199219 168.535156 194.132812 168.535156 194.132812 Z M 168.535156 194.132812 " />
|
|
23
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(11.372549%,11.372549%,10.588235%);fill-opacity:1;"
|
|
24
|
+
d="M 157.867188 217.601562 L 157.867188 307.199219 C 157.867188 307.199219 157.867188 313.601562 162.132812 315.734375 C 168.535156 320 243.199219 362.667969 243.199219 362.667969 L 243.199219 264.535156 Z M 157.867188 217.601562 " />
|
|
25
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(11.372549%,11.372549%,10.588235%);fill-opacity:1;"
|
|
26
|
+
d="M 268.800781 264.535156 L 268.800781 362.667969 L 349.867188 315.734375 C 349.867188 315.734375 356.265625 311.464844 356.265625 307.199219 C 356.265625 302.933594 356.265625 217.601562 356.265625 217.601562 Z M 268.800781 264.535156 " />
|
|
27
|
+
</g>
|
|
28
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
2
|
+
<path fill="none" d="M0 0h24v24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M17 6h5v2h-2v13a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8H2V6h5V3a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v3zm1 2H6v12h12V8zm-9 3h2v6H9v-6zm4 0h2v6h-2v-6zM9 4v2h6V4H9z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="100" height="100">
|
|
2
|
+
<path fill="none" d="M0 0h100v100H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M8 4h13v2H8V4zM4.5 6.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm0 6.9a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zM8 11h13v2H8v-2zm0 7h13v2H8v-2z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg fill="none" height="100" viewBox="0 0 20 20" width="100" xmlns="http://www.w3.org/2000/svg"
|
|
2
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<clipPath id="a">
|
|
4
|
+
<path d="m0 0h20v20h-20z" />
|
|
5
|
+
</clipPath>
|
|
6
|
+
<g clip-path="url(#a)" fill="#000">
|
|
7
|
+
<path
|
|
8
|
+
d="m0 9.91021c.02-2.03.61-3.89 1.74-5.57 1.09-1.61 2.54-2.8 4.33-3.579998.89-.39 1.82-.62 2.78-.7500003.38-.05.55.08.56.4700003.02.619998.02 1.239998.02 1.859998 0 .82-.02 1.63-.02 2.45v2.27c0 .73.01 1.45.02 2.18 0 .34 0 .68.04 1.01999.04.43.3.76.55 1.08 1 1.28 2.01 2.55 3.01 3.82.7.89 1.41 1.79 2.1 2.68.23.29.36.54-.15.83-.75.42-1.52.74-2.35.97-.9.25-1.81.36-2.74.36-1.03 0-2.04-.17-3.02-.5-1.55-.52-2.91-1.36-4.05-2.54-1.05-1.08-1.83-2.33-2.3-3.76-.34-1.06-.52-2.16-.52-3.28999z" />
|
|
9
|
+
<path
|
|
10
|
+
d="m18.2602 8.47009c-.58.06001-1.16.12-1.74.18-.97.1-1.93.19-2.9.29-.82.08-1.63.18-2.45.27-.26.03-.51-.19-.51-.46 0-.59 0-1.18 0-1.78.01-.96.03-1.92.04-2.87 0-.83 0-1.67 0-2.5 0-.41.01-.819995.05-1.219995.02-.27.2-.4000002.46-.3700002 1.35.1900002 2.62.6000002 3.8 1.2899952 1.09.63 2.02 1.43 2.8 2.41.68.85 1.24 1.79001 1.57 2.84001.14.44.27.88999.38 1.33999.06.27001-.07.42-.35.45-.39.05-.77.1-1.16.14z" />
|
|
11
|
+
<path
|
|
12
|
+
d="m20.0011 10.4898c-.06 1.36-.41 2.72-1.05 4-.51 1.02-1.18 1.92-2 2.72-.23.22-.51.2-.7-.06-.57-.76-1.15-1.52-1.72-2.28-.72-.95-1.44-1.89-2.16-2.84-.23-.3-.43-.61-.66-.91-.22-.28-.12-.65.3-.7.68-.08 1.36-.12 2.04-.19.91-.09 1.82-.19 2.73-.28999.82-.08 1.63-.16 2.45-.24h.13c.44-.09.63.05.64.47999v.32z" />
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m0 0h24v24h-24z" fill="none" />
|
|
3
|
+
<path
|
|
4
|
+
d="m11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m0 0h24v24h-24z" fill="none" />
|
|
3
|
+
<path
|
|
4
|
+
d="m3 17.25v3.75h3.75l11.06-11.06-3.75-3.75zm17.71-10.21c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m0 0h24v24h-24zm0 0h24v24h-24z" fill="none" />
|
|
3
|
+
<path
|
|
4
|
+
d="m12.126 8.125 1.937-1.937 3.747 3.747-1.937 1.938zm8.584-2.495-2.34-2.34a1 1 0 0 0 -1.41 0l-1.83 1.83 3.75 3.75 1.83-1.87a1 1 0 0 0 0-1.37zm-18.71-.63 6.63 6.63-5.63 5.62v3.75h3.75l5.63-5.62 5.62 5.62 2-2-16-16z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg height="96pt" preserveAspectRatio="xMidYMid meet" viewBox="0 0 96 96" width="96pt"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path
|
|
4
|
+
d="m557 842c-21-23-21-36-2-52 8-7 15-16 15-20 0-3-54-51-121-104l-121-98-29 28c-31 30-50 28-73-9-9-14 2-30 64-92l75-75-123-123c-96-97-122-128-122-150 0-23 4-27 27-27 22 0 53 26 150 122l123 123 75-75 75-75 27 28 27 27-26 27-26 28 94 119c52 66 97 122 99 125 3 2 14-4 24-13 18-17 21-17 45-1 14 10 26 22 26 29 0 14-262 276-276 276-6 0-18-8-27-18zm63-328c-51-66-95-121-97-124-2-2-33 25-69 61l-65 65 123 97 122 98 39-39 39-40z"
|
|
5
|
+
transform="matrix(.1 0 0 -.1 0 96)" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="19" height="24" viewBox="0 0 19 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M5.89005 5.21847e-06C5.7798 -0.000548837 5.67398 0.0430361 5.59604 0.121156C5.5181 0.19909 5.47433 0.304913 5.47489 0.415171V1.25545H2.04905C0.923772 1.25545 0 2.16797 0 3.28918V21.9656C0 23.0868 0.923772 24 2.04905 24H16.3011C17.4264 24 18.3502 23.0868 18.3502 21.9656L18.35 3.28918C18.35 2.16797 17.4262 1.25545 16.3009 1.25545H12.8743V0.415171C12.8747 0.304918 12.8311 0.199095 12.7532 0.121156C12.6753 0.043038 12.5692 -0.000547939 12.459 5.21847e-06H5.89005ZM6.303 0.827377H12.0469V2.5137L6.303 2.51352V0.827377ZM7.07142 6.23045C6.96135 6.23396 6.85719 6.28086 6.78202 6.3612L4.94719 8.32141L4.0212 7.393C3.86053 7.23177 3.59994 7.23067 3.43778 7.39042C3.35967 7.4678 3.31553 7.57288 3.31515 7.68277C3.3146 7.79284 3.358 7.89829 3.43538 7.97623L4.66278 9.20674C4.742 9.28652 4.85004 9.33048 4.96233 9.32881C5.07461 9.32715 5.18154 9.27987 5.25819 9.19788L7.38647 6.92591C7.54216 6.7597 7.53422 6.49893 7.36874 6.3425C7.28841 6.26696 7.18149 6.22675 7.07142 6.23045ZM10.086 7.3657C9.9761 7.36533 9.87064 7.40836 9.79271 7.48574C9.71478 7.5633 9.67082 7.66858 9.67064 7.77846C9.67027 7.88871 9.71385 7.99454 9.79179 8.07247C9.86972 8.15059 9.97573 8.19418 10.086 8.19363H14.6212C14.7309 8.19326 14.836 8.1493 14.9132 8.07137C14.9904 7.99343 15.0336 7.88816 15.0332 7.77846C15.0329 7.55094 14.8487 7.36644 14.6212 7.36552L10.086 7.3657ZM7.07142 11.3973C6.96135 11.4008 6.85719 11.4479 6.78202 11.5282L4.94705 13.4884L4.02106 12.56C3.86039 12.3988 3.59998 12.3977 3.43783 12.5574C3.35971 12.6348 3.31557 12.7399 3.3152 12.85C3.31464 12.9598 3.35804 13.0653 3.43542 13.1432L4.66282 14.3737C4.74205 14.4535 4.85008 14.4975 4.96237 14.4958C5.07466 14.4942 5.18158 14.4469 5.25823 14.3649L7.38651 12.0929C7.5422 11.9267 7.53426 11.6659 7.36878 11.5095C7.28845 11.434 7.18149 11.3936 7.07142 11.3973ZM10.086 12.5325C9.97573 12.5321 9.86972 12.5757 9.79178 12.6537C9.71385 12.7316 9.67026 12.8376 9.67063 12.9479C9.67082 13.0577 9.71477 13.163 9.7927 13.2404C9.87064 13.3178 9.97609 13.3612 10.086 13.3608H14.6212C14.8487 13.3599 15.0329 13.1754 15.0332 12.9479C15.0336 12.8382 14.9904 12.7327 14.9132 12.6548C14.836 12.577 14.7309 12.5329 14.6212 12.5325L10.086 12.5325ZM7.07142 16.5643C6.96135 16.5678 6.85719 16.6149 6.78202 16.6952L4.94719 18.6554L4.0212 17.727C3.85979 17.5665 3.5992 17.5665 3.43778 17.727C3.27674 17.8877 3.27563 18.1483 3.43538 18.3104L4.66278 19.5443C4.74201 19.6241 4.85004 19.6679 4.96233 19.6662C5.07461 19.6645 5.18154 19.6172 5.25819 19.5353L7.38647 17.2633C7.46219 17.1833 7.503 17.0764 7.49968 16.9663C7.49617 16.8561 7.44908 16.7519 7.36874 16.6767C7.28841 16.601 7.18149 16.5608 7.07142 16.5643ZM10.086 17.7026C9.97628 17.7021 9.87083 17.7455 9.79289 17.8229C9.71514 17.9001 9.67101 18.0052 9.67064 18.1149C9.67027 18.2251 9.71385 18.3309 9.79179 18.4091C9.86972 18.487 9.97573 18.5306 10.086 18.5302H14.6212C14.7309 18.5297 14.836 18.4857 14.9132 18.4078C14.9904 18.33 15.0336 18.2246 15.0332 18.1149C15.0323 17.8877 14.8484 17.7038 14.6212 17.7028L10.086 17.7026Z"
|
|
4
|
+
fill="#40B688" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="19" height="24" viewBox="0 0 19 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M5.89005 5.21847e-06C5.7798 -0.000548837 5.67398 0.0430361 5.59604 0.121156C5.5181 0.19909 5.47433 0.304913 5.47489 0.415171V1.25545H2.04905C0.923772 1.25545 0 2.16797 0 3.28918V21.9656C0 23.0868 0.923772 24 2.04905 24H16.3011C17.4264 24 18.3502 23.0868 18.3502 21.9656L18.35 3.28918C18.35 2.16797 17.4262 1.25545 16.3009 1.25545H12.8743V0.415171C12.8747 0.304918 12.8311 0.199095 12.7532 0.121156C12.6753 0.043038 12.5692 -0.000547939 12.459 5.21847e-06H5.89005ZM6.303 0.827377H12.0469V2.5137L6.303 2.51352V0.827377ZM2.04903 2.08304H5.47487V2.92573C5.47432 3.03599 5.51809 3.14181 5.59602 3.21975C5.67396 3.29768 5.77978 3.34127 5.89004 3.3409H12.4589C12.5692 3.34127 12.6752 3.29768 12.7531 3.21975C12.831 3.14181 12.8746 3.03581 12.8742 2.92555V2.08286H16.3008C16.9862 2.08286 17.5225 2.61602 17.5225 3.28922V21.9656C17.5225 22.6387 16.9862 23.172 16.3008 23.172H2.04877C1.36361 23.172 0.827098 22.6388 0.827098 21.9656V3.28922C0.827098 2.61607 1.36387 2.08304 2.04903 2.08304ZM7.07142 6.23045C6.96135 6.23396 6.85719 6.28086 6.78202 6.3612L4.94719 8.32141L4.0212 7.393C3.86053 7.23177 3.59994 7.23067 3.43778 7.39042C3.35967 7.4678 3.31553 7.57288 3.31515 7.68277C3.3146 7.79284 3.358 7.89829 3.43538 7.97623L4.66278 9.20674C4.742 9.28652 4.85004 9.33048 4.96233 9.32881C5.07461 9.32715 5.18154 9.27987 5.25819 9.19788L7.38647 6.92591C7.54216 6.7597 7.53422 6.49893 7.36874 6.3425C7.28841 6.26696 7.18149 6.22675 7.07142 6.23045ZM10.086 7.3657C9.9761 7.36533 9.87064 7.40836 9.79271 7.48574C9.71478 7.5633 9.67082 7.66858 9.67064 7.77846C9.67027 7.88871 9.71385 7.99454 9.79179 8.07247C9.86972 8.15059 9.97573 8.19418 10.086 8.19363H14.6212C14.7309 8.19326 14.836 8.1493 14.9132 8.07137C14.9904 7.99343 15.0336 7.88816 15.0332 7.77846C15.0329 7.55094 14.8487 7.36644 14.6212 7.36552L10.086 7.3657ZM7.07142 11.3973C6.96135 11.4008 6.85719 11.4479 6.78202 11.5282L4.94705 13.4884L4.02106 12.56C3.86039 12.3988 3.59998 12.3977 3.43783 12.5574C3.35971 12.6348 3.31557 12.7399 3.3152 12.85C3.31464 12.9598 3.35804 13.0653 3.43542 13.1432L4.66282 14.3737C4.74205 14.4535 4.85008 14.4975 4.96237 14.4958C5.07466 14.4942 5.18158 14.4469 5.25823 14.3649L7.38651 12.0929C7.5422 11.9267 7.53426 11.6659 7.36878 11.5095C7.28845 11.434 7.18149 11.3936 7.07142 11.3973ZM10.086 12.5325C9.97573 12.5321 9.86972 12.5757 9.79178 12.6537C9.71385 12.7316 9.67026 12.8376 9.67063 12.9479C9.67082 13.0577 9.71477 13.163 9.7927 13.2404C9.87064 13.3178 9.97609 13.3612 10.086 13.3608H14.6212C14.8487 13.3599 15.0329 13.1754 15.0332 12.9479C15.0336 12.8382 14.9904 12.7327 14.9132 12.6548C14.836 12.577 14.7309 12.5329 14.6212 12.5325L10.086 12.5325ZM7.07142 16.5643C6.96135 16.5678 6.85719 16.6149 6.78202 16.6952L4.94719 18.6554L4.0212 17.727C3.85979 17.5665 3.5992 17.5665 3.43778 17.727C3.27674 17.8877 3.27563 18.1483 3.43538 18.3104L4.66278 19.5443C4.74201 19.6241 4.85004 19.6679 4.96233 19.6662C5.07461 19.6645 5.18154 19.6172 5.25819 19.5353L7.38647 17.2633C7.46219 17.1833 7.503 17.0764 7.49968 16.9663C7.49617 16.8561 7.44908 16.7519 7.36874 16.6767C7.28841 16.601 7.18149 16.5608 7.07142 16.5643ZM10.086 17.7026C9.97628 17.7021 9.87083 17.7455 9.79289 17.8229C9.71514 17.9001 9.67101 18.0052 9.67064 18.1149C9.67027 18.2251 9.71385 18.3309 9.79179 18.4091C9.86972 18.487 9.97573 18.5306 10.086 18.5302H14.6212C14.7309 18.5297 14.836 18.4857 14.9132 18.4078C14.9904 18.33 15.0336 18.2246 15.0332 18.1149C15.0323 17.8877 14.8484 17.7038 14.6212 17.7028L10.086 17.7026Z"
|
|
4
|
+
fill="#7B96B2" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
|
|
3
|
+
<g>
|
|
4
|
+
<title>Layer 1</title>
|
|
5
|
+
<path id="svg_1" d="m0,0l24,0l0,24l-24,0l0,-24z" fill="none" />
|
|
6
|
+
<path id="svg_2"
|
|
7
|
+
d="m12,3c5.392,0 9.878,3.88 10.819,9c-0.94,5.12 -5.427,9 -10.819,9c-5.392,0 -9.878,-3.88 -10.819,-9c0.94,-5.12 5.427,-9 10.819,-9zm0,16a9.005,9.005 0 0 0 8.777,-7a9.005,9.005 0 0 0 -17.554,0a9.005,9.005 0 0 0 8.777,7zm0,-2.5a4.5,4.5 0 1 1 0,-9a4.5,4.5 0 0 1 0,9zm0,-2a2.5,2.5 0 1 0 0,-5a2.5,2.5 0 0 0 0,5z" />
|
|
8
|
+
<g stroke="null">
|
|
9
|
+
<path stroke="null" d="m13.24921,15.14195l13.90536,0l0,13.27445l-13.90536,0l0,-13.27445z" fill="none" />
|
|
10
|
+
<path stroke="null"
|
|
11
|
+
d="m20.20189,22.42741l2.86798,-2.73785l0.81926,0.78209l-3.68724,3.51994l-3.68724,-3.51994l0.81926,-0.78209l2.86798,2.73785z" />
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
|
|
3
|
+
<g>
|
|
4
|
+
<title>Layer 1</title>
|
|
5
|
+
<path id="svg_1" d="m0,0l24,0l0,24l-24,0l0,-24z" fill="none" />
|
|
6
|
+
<path id="svg_2"
|
|
7
|
+
d="m12,3c5.392,0 9.878,3.88 10.819,9c-0.94,5.12 -5.427,9 -10.819,9c-5.392,0 -9.878,-3.88 -10.819,-9c0.94,-5.12 5.427,-9 10.819,-9zm0,16a9.005,9.005 0 0 0 8.777,-7a9.005,9.005 0 0 0 -17.554,0a9.005,9.005 0 0 0 8.777,7zm0,-2.5a4.5,4.5 0 1 1 0,-9a4.5,4.5 0 0 1 0,9zm0,-2a2.5,2.5 0 1 0 0,-5a2.5,2.5 0 0 0 0,5z" />
|
|
8
|
+
<g stroke="null">
|
|
9
|
+
<path stroke="null" d="m13.24921,-4.10095l13.58991,0l0,12.64353l-13.58991,0l0,-12.64353z" fill="none" />
|
|
10
|
+
<path stroke="null"
|
|
11
|
+
d="m20.04416,1.60339l-2.80292,2.60773l-0.80067,-0.74491l3.60359,-3.35264l3.60359,3.35264l-0.80067,0.74491l-2.80292,-2.60773z" />
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
2
|
+
<path fill="none" d="M0 0h24v24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M12 3c5.392 0 9.878 3.88 10.819 9-.94 5.12-5.427 9-10.819 9-5.392 0-9.878-3.88-10.819-9C2.121 6.88 6.608 3 12 3zm0 16a9.005 9.005 0 0 0 8.777-7 9.005 9.005 0 0 0-17.554 0A9.005 9.005 0 0 0 12 19zm0-2.5a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9zm0-2a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
2
|
+
<path fill="none" d="M0 0h24v24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M13 12h3l-4 4-4-4h3V8h2v4zm2-8H5v16h14V8h-4V4zM3 2.992C3 2.444 3.447 2 3.999 2H16l5 5v13.993A1 1 0 0 1 20.007 22H3.993A1 1 0 0 1 3 21.008V2.992z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
2
|
+
<path fill="none" d="M0 0h24v24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M15 4H5v16h14V8h-4V4zM3 2.992C3 2.444 3.447 2 3.999 2H16l5 5v13.993A1 1 0 0 1 20.007 22H3.993A1 1 0 0 1 3 21.008V2.992zM13 12v4h-2v-4H8l4-4 4 4h-3z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
2
|
+
<svg fill="#000000" width="800px" height="800px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path
|
|
4
|
+
d="M29.047 12.95c0-5.274-2.781-10.059-7.437-12.799-0.477-0.281-1.090-0.121-1.369 0.355s-0.121 1.089 0.355 1.369c4.039 2.376 6.45 6.516 6.45 11.074 0 7.574-5.498 13.072-13.072 13.072-1.694 0-3.337-0.317-4.885-0.942-0.511-0.208-1.096 0.040-1.302 0.552s0.040 1.096 0.552 1.302c1.788 0.723 3.684 1.089 5.635 1.089 0.006 0 0.012-0 0.018-0v1.969h-2.904c-0.577 0-1.045 0.447-1.045 0.998s0.468 0.998 1.045 0.998h7.902c0.577 0 1.045-0.447 1.045-0.998s-0.468-0.998-1.045-0.998h-3.012v-2.087c7.681-0.892 13.069-6.903 13.069-14.952zM24.98 13.040c0-6.083-4.93-11.044-11.012-11.044-6.084 0-11.015 4.961-11.015 11.044s4.931 10.982 11.015 10.982c6.083 0 11.012-4.899 11.012-10.982zM4.953 13.040c0-4.97 4.044-9.044 9.014-9.044s9.012 4.074 9.012 9.044-4.043 8.982-9.012 8.982c-4.971 0-9.014-4.012-9.014-8.982z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg fill="none" height="100" viewBox="0 0 20 20" width="100" xmlns="http://www.w3.org/2000/svg"
|
|
2
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<clipPath id="a">
|
|
4
|
+
<path d="m0 0h20v20h-20z" />
|
|
5
|
+
</clipPath>
|
|
6
|
+
<g clip-path="url(#a)">
|
|
7
|
+
<g fill="#000">
|
|
8
|
+
<path
|
|
9
|
+
d="m3.35 13.3499c1.85015 0 3.35-1.4998 3.35-3.35 0-1.85015-1.49985-3.35-3.35-3.35s-3.35 1.49985-3.35 3.35c0 1.8502 1.49985 3.35 3.35 3.35z" />
|
|
10
|
+
<path
|
|
11
|
+
d="m16.6508 6.7c1.8501 0 3.35-1.49985 3.35-3.35s-1.4999-3.35-3.35-3.35c-1.8502 0-3.35 1.49985-3.35 3.35s1.4998 3.35 3.35 3.35z" />
|
|
12
|
+
<path
|
|
13
|
+
d="m16.6508 19.9998c1.8501 0 3.35-1.4998 3.35-3.35 0-1.8501-1.4999-3.35-3.35-3.35-1.8502 0-3.35 1.4999-3.35 3.35 0 1.8502 1.4998 3.35 3.35 3.35z" />
|
|
14
|
+
</g>
|
|
15
|
+
<g stroke="#000" stroke-miterlimit="10" stroke-width="2">
|
|
16
|
+
<path d="m16.7116 3.3501-13.36004 6.65" />
|
|
17
|
+
<path d="m16.5016 16.65-13.15004-6.65" />
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="80" height="60" viewBox="0 0 80 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="79.5" y="0.5" width="17.5182" height="79" transform="rotate(90 79.5 0.5)" stroke="#7B96B2" />
|
|
3
|
+
<rect x="79.5" y="21.2407" width="17.5182" height="79" transform="rotate(90 79.5 21.2407)" stroke="#7B96B2" />
|
|
4
|
+
<rect x="79.5" y="41.9819" width="17.5182" height="79" transform="rotate(90 79.5 41.9819)" stroke="#7B96B2" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="80" height="60" viewBox="0 0 80 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.5" y="0.5" width="23.6914" height="59" stroke="#7B96B2" />
|
|
3
|
+
<rect x="28.1543" y="0.5" width="23.6914" height="59" stroke="#7B96B2" />
|
|
4
|
+
<rect x="55.8086" y="0.5" width="23.6914" height="59" stroke="#7B96B2" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="80" height="60" viewBox="0 0 80 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.5" y="0.5" width="38.2547" height="28" stroke="#7B96B2" />
|
|
3
|
+
<rect x="41.2454" y="0.5" width="38.2547" height="28" stroke="#7B96B2" />
|
|
4
|
+
<rect x="0.5" y="31.5" width="38.2547" height="28" stroke="#7B96B2" />
|
|
5
|
+
<rect x="41.2454" y="31.5" width="38.2547" height="28" stroke="#7B96B2" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="80" height="60" viewBox="0 0 80 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.5" y="0.5" width="38.2547" height="28" stroke="#7B96B2" />
|
|
3
|
+
<rect x="41.5" y="0.5" width="38" height="59" stroke="#7B96B2" />
|
|
4
|
+
<rect x="0.5" y="31.5" width="38.2547" height="28" stroke="#7B96B2" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="80" height="60" viewBox="0 0 80 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="52.5" y="0.5" width="27" height="40" stroke="#7B96B2" stroke-dasharray="2 2" />
|
|
3
|
+
<rect x="0.5" y="11.5" width="46" height="48" stroke="#7B96B2" stroke-dasharray="2 2" />
|
|
4
|
+
<path
|
|
5
|
+
d="M62.1684 36.0484C62.0632 36.1148 61.9921 36.2378 62.0007 36.3628L62.7551 48.9525C62.7639 49.0811 62.8522 49.2011 62.9726 49.2478C63.0931 49.2946 63.2393 49.2657 63.3329 49.1767L66.6981 45.9771L67.8001 48.1725C67.8831 48.3384 68.1151 48.4086 68.2763 48.3166L69.7582 47.462C69.9214 47.3701 69.9791 47.1319 69.8759 46.9759L68.5224 44.9301L72.9791 43.6215C73.1045 43.5863 73.2046 43.4738 73.2247 43.3453C73.2449 43.2167 73.184 43.0791 73.0753 43.0073L62.5302 36.0582C62.3856 35.9788 62.2832 35.9857 62.1682 36.0483L62.1684 36.0484Z"
|
|
6
|
+
fill="#3E546A" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg enable-background="new 0 0 24 24" height="100" viewBox="0 0 24 24" width="100" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m0 0h24v24h-24z" fill="none" />
|
|
3
|
+
<path d="m3 3v8h8v-8zm6 6h-4v-4h4zm-6 4v8h8v-8zm6 6h-4v-4h4zm4-16v8h8v-8zm6 6h-4v-4h4zm-6 4v8h8v-8zm6 6h-4v-4h4z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
2
|
+
<path fill="none" d="M0 0H24V24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M19 14v3h3v2h-3.001L19 22h-2l-.001-3H14v-2h3v-3h2zm1.243-9.243c2.262 2.268 2.34 5.88.236 8.235l-1.42-1.418c1.331-1.524 1.261-3.914-.232-5.404-1.503-1.499-3.92-1.563-5.49-.153l-1.335 1.198-1.336-1.197c-1.575-1.412-3.991-1.35-5.494.154-1.49 1.49-1.565 3.875-.192 5.451l8.432 8.446L12 21.485 3.52 12.993c-2.104-2.356-2.025-5.974.236-8.236 2.265-2.264 5.888-2.34 8.244-.228 2.349-2.109 5.979-2.039 8.242.228z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
2
|
+
<path fill="none" d="M0 0H24V24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M12.001 4.529c2.349-2.109 5.979-2.039 8.242.228 2.262 2.268 2.34 5.88.236 8.236l-8.48 8.492-8.478-8.492c-2.104-2.356-2.025-5.974.236-8.236 2.265-2.264 5.888-2.34 8.244-.228z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m0 0h24v24h-24z" fill="none" />
|
|
3
|
+
<path
|
|
4
|
+
d="m17 5h-2v-2h2zm-2 16h2v-2.59l2.59 2.59 1.41-1.41-2.59-2.59h2.59v-2h-6zm4-12h2v-2h-2zm0 4h2v-2h-2zm-8 8h2v-2h-2zm-4-16h2v-2h-2zm-4 12h2v-2h-2zm2 4v-2h-2c0 1.1.9 2 2 2zm14-18v2h2c0-1.1-.9-2-2-2zm-8 2h2v-2h-2zm-8 4h2v-2h-2zm4 12h2v-2h-2zm-4-8h2v-2h-2zm0-8h2v-2c-1.1 0-2 .9-2 2z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
2
|
+
<path fill="none" d="M0 0H24V24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12h2c0 4.418 3.582 8 8 8s8-3.582 8-8-3.582-8-8-8C9.25 4 6.824 5.387 5.385 7.5H8v2H2v-6h2V6c1.824-2.43 4.729-4 8-4zm1 5v4.585l3.243 3.243-1.415 1.415L11 12.413V7h2z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M15.9498 17.8498H12.4232C12.1746 17.8498 11.9732 17.6482 11.9732 17.3998V13.4011C11.9717 12.4011 11.4375 11.4778 10.5712 10.9783C9.70493 10.4787 8.6382 10.4787 7.77208 10.9783C6.90581 11.4778 6.37157 12.4011 6.3701 13.4011V17.3998C6.36996 17.6482 6.16854 17.8498 5.9201 17.8498H2.40033C1.76402 17.8491 1.15397 17.596 0.703972 17.1462C0.253972 16.6961 0.000840813 16.0861 5.22417e-05 15.4498V7.57437C-0.00490307 6.82625 0.342909 6.11949 0.938761 5.66709L7.71945 0.489257C8.13797 0.172115 8.64866 0.000274599 9.17391 3.13377e-07C9.69917 -0.000267527 10.21 0.171161 10.6289 0.488023L17.4052 5.66757C17.9989 6.12213 18.3477 6.82659 18.3496 7.5743V15.4497C18.3488 16.086 18.0957 16.6962 17.6457 17.1461C17.1957 17.5961 16.5861 17.8491 15.9498 17.8498Z"
|
|
4
|
+
fill="#40B688" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<mask id="path-1-inside-1_1953_48691" fill="white">
|
|
3
|
+
<path
|
|
4
|
+
d="M15.9498 17.8498H12.4232C12.1746 17.8498 11.9732 17.6482 11.9732 17.3998V13.4011C11.9717 12.4011 11.4375 11.4778 10.5712 10.9783C9.70493 10.4787 8.6382 10.4787 7.77208 10.9783C6.90581 11.4778 6.37157 12.4011 6.3701 13.4011V17.3998C6.36996 17.6482 6.16854 17.8498 5.9201 17.8498H2.40033C1.76402 17.8491 1.15397 17.596 0.703972 17.1462C0.253972 16.6961 0.000840813 16.0861 5.22417e-05 15.4498V7.57437C-0.00490307 6.82625 0.342909 6.11949 0.938761 5.66709L7.71945 0.489257C8.13797 0.172115 8.64866 0.000274599 9.17391 3.13377e-07C9.69917 -0.000267527 10.21 0.171161 10.6289 0.488023L17.4052 5.66757H17.405C17.9987 6.12213 18.3477 6.82659 18.3496 7.5743V15.4497C18.3488 16.086 18.0957 16.6962 17.6457 17.1461C17.1957 17.5961 16.5857 17.8491 15.9494 17.8497L15.9498 17.8498ZM12.8733 16.9498H15.9498C16.3474 16.9494 16.7289 16.7912 17.0101 16.51C17.2914 16.2289 17.4495 15.8476 17.4501 15.4498V7.57437C17.4518 7.10643 17.2331 6.66501 16.8597 6.38307L10.0842 1.20456C9.82247 1.00648 9.5032 0.899339 9.17505 0.899339C8.8469 0.899339 8.52763 1.00648 8.26593 1.20456L1.48421 6.38273C1.11256 6.66572 0.896144 7.10715 0.900018 7.5743V15.4497C0.900554 15.8475 1.05872 16.2288 1.33997 16.5099C1.62122 16.7912 2.00265 16.9493 2.40029 16.9497H5.47006V13.4012C5.47167 12.0798 6.17762 10.8596 7.32218 10.1995C8.46674 9.53932 9.87646 9.53932 11.0209 10.1995C12.1655 10.8596 12.8713 12.0798 12.873 13.4012L12.8733 16.9498Z" />
|
|
5
|
+
</mask>
|
|
6
|
+
<path
|
|
7
|
+
d="M15.9498 17.8498H12.4232C12.1746 17.8498 11.9732 17.6482 11.9732 17.3998V13.4011C11.9717 12.4011 11.4375 11.4778 10.5712 10.9783C9.70493 10.4787 8.6382 10.4787 7.77208 10.9783C6.90581 11.4778 6.37157 12.4011 6.3701 13.4011V17.3998C6.36996 17.6482 6.16854 17.8498 5.9201 17.8498H2.40033C1.76402 17.8491 1.15397 17.596 0.703972 17.1462C0.253972 16.6961 0.000840813 16.0861 5.22417e-05 15.4498V7.57437C-0.00490307 6.82625 0.342909 6.11949 0.938761 5.66709L7.71945 0.489257C8.13797 0.172115 8.64866 0.000274599 9.17391 3.13377e-07C9.69917 -0.000267527 10.21 0.171161 10.6289 0.488023L17.4052 5.66757H17.405C17.9987 6.12213 18.3477 6.82659 18.3496 7.5743V15.4497C18.3488 16.086 18.0957 16.6962 17.6457 17.1461C17.1957 17.5961 16.5857 17.8491 15.9494 17.8497L15.9498 17.8498ZM12.8733 16.9498H15.9498C16.3474 16.9494 16.7289 16.7912 17.0101 16.51C17.2914 16.2289 17.4495 15.8476 17.4501 15.4498V7.57437C17.4518 7.10643 17.2331 6.66501 16.8597 6.38307L10.0842 1.20456C9.82247 1.00648 9.5032 0.899339 9.17505 0.899339C8.8469 0.899339 8.52763 1.00648 8.26593 1.20456L1.48421 6.38273C1.11256 6.66572 0.896144 7.10715 0.900018 7.5743V15.4497C0.900554 15.8475 1.05872 16.2288 1.33997 16.5099C1.62122 16.7912 2.00265 16.9493 2.40029 16.9497H5.47006V13.4012C5.47167 12.0798 6.17762 10.8596 7.32218 10.1995C8.46674 9.53932 9.87646 9.53932 11.0209 10.1995C12.1655 10.8596 12.8713 12.0798 12.873 13.4012L12.8733 16.9498Z"
|
|
8
|
+
fill="#7B96B2" />
|
|
9
|
+
<path
|
|
10
|
+
d="M15.9498 17.8498V19.1831L16.1549 16.5323L15.9498 17.8498ZM11.9732 13.4011H13.3065L13.3065 13.3991L11.9732 13.4011ZM7.77208 10.9783L8.43815 12.1333L8.43823 12.1333L7.77208 10.9783ZM6.3701 13.4011L5.03677 13.3991V13.4011H6.3701ZM6.3701 17.3998L7.70343 17.4005V17.3998H6.3701ZM2.40033 17.8498L2.39892 19.1831H2.40033V17.8498ZM0.703972 17.1462L-0.238837 18.089L-0.238682 18.0891L0.703972 17.1462ZM5.22417e-05 15.4498H-1.33328L-1.33328 15.4514L5.22417e-05 15.4498ZM5.22417e-05 7.57437H1.33341L1.33336 7.56554L5.22417e-05 7.57437ZM0.938761 5.66709L1.74504 6.72902L1.74796 6.72679L0.938761 5.66709ZM7.71945 0.489257L6.91417 -0.573444L6.91024 -0.570444L7.71945 0.489257ZM9.17391 3.13377e-07L9.17323 -1.33333H9.17322L9.17391 3.13377e-07ZM10.6289 0.488023L11.4387 -0.571306L11.4332 -0.575395L10.6289 0.488023ZM17.4052 5.66757V7.0009H21.3451L18.2149 4.60825L17.4052 5.66757ZM17.405 5.66757V4.33423H13.4703L16.5945 6.72623L17.405 5.66757ZM18.3496 7.5743H19.683L19.683 7.57094L18.3496 7.5743ZM18.3496 15.4497L19.683 15.4514V15.4497H18.3496ZM17.6457 17.1461L16.703 16.2032L16.7029 16.2033L17.6457 17.1461ZM15.9494 17.8497L15.948 16.5164L15.7443 19.1672L15.9494 17.8497ZM12.8733 16.9498L11.54 16.9499L11.5401 18.2831H12.8733V16.9498ZM15.9498 16.9498V18.2831L15.9511 18.2831L15.9498 16.9498ZM17.0101 16.51L16.0675 15.5669L16.0673 15.5672L17.0101 16.51ZM17.4501 15.4498L18.7834 15.4516V15.4498H17.4501ZM17.4501 7.57437L16.1167 7.56941V7.57437H17.4501ZM16.8597 6.38307L16.05 7.44245L16.0563 7.44717L16.8597 6.38307ZM10.0842 1.20456L10.8938 0.145195L10.8889 0.141427L10.0842 1.20456ZM8.26593 1.20456L7.46124 0.141408L7.45677 0.144825L8.26593 1.20456ZM1.48421 6.38273L2.29195 7.44355L2.29337 7.44247L1.48421 6.38273ZM0.900018 7.5743H2.2334L2.23331 7.56324L0.900018 7.5743ZM0.900018 15.4497H-0.433317L-0.433314 15.4515L0.900018 15.4497ZM1.33997 16.5099L2.28278 15.5671L2.28255 15.5669L1.33997 16.5099ZM2.40029 16.9497L2.39891 18.2831H2.40029V16.9497ZM5.47006 16.9497V18.2831H6.8034V16.9497H5.47006ZM5.47006 13.4012L4.13673 13.3995V13.4012H5.47006ZM11.0209 10.1995L10.3547 11.3544L10.3548 11.3544L11.0209 10.1995ZM12.873 13.4012L14.2064 13.401L14.2064 13.3994L12.873 13.4012ZM15.9498 16.5165H12.4232V19.1831H15.9498V16.5165ZM12.4232 16.5165C12.9112 16.5165 13.3065 16.9121 13.3065 17.3998H10.6398C10.6398 18.3844 11.438 19.1831 12.4232 19.1831V16.5165ZM13.3065 17.3998V13.4011H10.6398V17.3998H13.3065ZM13.3065 13.3991C13.3043 11.9233 12.5158 10.5605 11.2373 9.82324L9.90512 12.1333C10.3591 12.3951 10.6391 12.879 10.6398 13.403L13.3065 13.3991ZM11.2373 9.82324C9.95881 9.086 8.38436 9.08595 7.10592 9.82329L8.43823 12.1333C8.89205 11.8715 9.45106 11.8715 9.90512 12.1333L11.2373 9.82324ZM7.106 9.82324C5.82745 10.5605 5.03894 11.9233 5.03677 13.3991L7.70343 13.403C7.7042 12.879 7.98418 12.3951 8.43815 12.1333L7.106 9.82324ZM5.03677 13.4011V17.3998H7.70343V13.4011H5.03677ZM5.03677 17.3991C5.03703 16.9124 5.4315 16.5165 5.9201 16.5165V19.1831C6.90557 19.1831 7.7029 18.3841 7.70343 17.4005L5.03677 17.3991ZM5.9201 16.5165H2.40033V19.1831H5.9201V16.5165ZM2.40173 16.5165C2.11864 16.5162 1.84705 16.4035 1.64663 16.2032L-0.238682 18.0891C0.460896 18.7885 1.40939 19.1821 2.39892 19.1831L2.40173 16.5165ZM1.64678 16.2033C1.44641 16.003 1.33374 15.7314 1.33338 15.4481L-1.33328 15.4514C-1.33205 16.4408 -0.938463 17.3893 -0.238837 18.089L1.64678 16.2033ZM1.33339 15.4498V7.57437H-1.33328V15.4498H1.33339ZM1.33336 7.56554C1.33118 7.23736 1.48376 6.92739 1.74503 6.72902L0.132488 4.60515C-0.797943 5.31158 -1.34099 6.41514 -1.33325 7.5832L1.33336 7.56554ZM1.74796 6.72679L8.52865 1.54896L6.91024 -0.570444L0.129557 4.60738L1.74796 6.72679ZM8.52472 1.55195C8.71174 1.41023 8.93993 1.33346 9.17461 1.33333L9.17322 -1.33333C8.35739 -1.33291 7.5642 -1.066 6.91418 -0.573437L8.52472 1.55195ZM9.17459 1.33333C9.40902 1.33321 9.63723 1.40971 9.82462 1.55144L11.4332 -0.575395C10.7828 -1.06738 9.98933 -1.33375 9.17323 -1.33333L9.17459 1.33333ZM9.81922 1.54734L16.5955 6.72688L18.2149 4.60825L11.4386 -0.571293L9.81922 1.54734ZM17.4052 4.33423H17.405V7.0009H17.4052V4.33423ZM16.5945 6.72623C16.8596 6.92925 17.0155 7.24386 17.0163 7.57766L19.683 7.57094C19.68 6.40933 19.1378 5.315 18.2156 4.6089L16.5945 6.72623ZM17.0163 7.5743V15.4497H19.683V7.5743H17.0163ZM17.0163 15.448C17.0159 15.7314 16.9032 16.003 16.703 16.2032L18.5884 18.089C19.2882 17.3894 19.6817 16.4407 19.683 15.4514L17.0163 15.448ZM16.7029 16.2033C16.5027 16.4035 16.2312 16.5161 15.948 16.5164L15.9507 19.1831C16.9401 19.182 17.8888 18.7886 18.5885 18.0889L16.7029 16.2033ZM15.7443 19.1672L15.7447 19.1673L16.1549 16.5323L16.1544 16.5323L15.7443 19.1672ZM12.8733 18.2831H15.9498V15.6165H12.8733V18.2831ZM15.9511 18.2831C16.7019 18.2824 17.4219 17.9838 17.9529 17.4528L16.0673 15.5672C16.0358 15.5987 15.993 15.6164 15.9485 15.6165L15.9511 18.2831ZM17.9527 17.453C18.484 16.922 18.7824 16.2021 18.7834 15.4516L16.1167 15.448C16.1167 15.493 16.0988 15.5357 16.0675 15.5669L17.9527 17.453ZM18.7834 15.4498V7.57437H16.1167V15.4498H18.7834ZM18.7834 7.57933C18.7867 6.69171 18.3718 5.85408 17.6631 5.31898L16.0563 7.44717C16.0944 7.47594 16.1169 7.52116 16.1168 7.56941L18.7834 7.57933ZM17.6694 5.32372L10.8938 0.145207L9.27451 2.26391L16.0501 7.44243L17.6694 5.32372ZM10.8889 0.141427C10.3954 -0.232065 9.79355 -0.433995 9.17505 -0.433995V2.23267C9.21284 2.23267 9.24953 2.24503 9.27948 2.26769L10.8889 0.141427ZM9.17505 -0.433995C8.55654 -0.433995 7.95469 -0.23206 7.46125 0.141417L9.0706 2.2677C9.10057 2.24502 9.13726 2.23267 9.17505 2.23267V-0.433995ZM7.45677 0.144825L0.675053 5.323L2.29337 7.44247L9.07509 2.2643L7.45677 0.144825ZM0.676473 5.32191C-0.0295149 5.85947 -0.440628 6.69814 -0.433269 7.58536L2.23331 7.56324C2.23292 7.51617 2.25463 7.47197 2.29195 7.44355L0.676473 5.32191ZM-0.433315 7.5743V15.4497H2.23335V7.5743H-0.433315ZM-0.433314 15.4515C-0.432303 16.2021 -0.133847 16.922 0.397399 17.453L2.28255 15.5669C2.25129 15.5356 2.23341 15.4929 2.23335 15.4479L-0.433314 15.4515ZM0.397163 17.4527C0.928197 17.9838 1.64823 18.2823 2.39891 18.2831L2.40167 15.6164C2.35706 15.6163 2.31425 15.5986 2.28278 15.5671L0.397163 17.4527ZM2.40029 18.2831H5.47006V15.6164H2.40029V18.2831ZM6.8034 16.9497V13.4012H4.13673V16.9497H6.8034ZM6.8034 13.4028C6.80442 12.5575 7.25604 11.7768 7.98833 11.3544L6.65602 9.04446C5.09919 9.94238 4.13892 11.6022 4.13673 13.3995L6.8034 13.4028ZM7.98833 11.3544C8.72064 10.9321 9.62258 10.9321 10.3547 11.3544L11.6871 9.04448C10.1303 8.14652 8.21284 8.14655 6.65602 9.04446L7.98833 11.3544ZM10.3548 11.3544C11.087 11.7767 11.5386 12.5574 11.5397 13.4029L14.2064 13.3994C14.204 11.6022 13.244 9.94243 11.6871 9.04446L10.3548 11.3544ZM11.5397 13.4013L11.54 16.9499L14.2067 16.9497L14.2064 13.401L11.5397 13.4013Z"
|
|
11
|
+
fill="#7B96B2" mask="url(#path-1-inside-1_1953_48691)" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<mask id="path-1-inside-1_1953_48691" fill="white">
|
|
3
|
+
<path
|
|
4
|
+
d="M15.9498 17.8498H12.4232C12.1746 17.8498 11.9732 17.6482 11.9732 17.3998V13.4011C11.9717 12.4011 11.4375 11.4778 10.5712 10.9783C9.70493 10.4787 8.6382 10.4787 7.77208 10.9783C6.90581 11.4778 6.37157 12.4011 6.3701 13.4011V17.3998C6.36996 17.6482 6.16854 17.8498 5.9201 17.8498H2.40033C1.76402 17.8491 1.15397 17.596 0.703972 17.1462C0.253972 16.6961 0.000840813 16.0861 5.22417e-05 15.4498V7.57437C-0.00490307 6.82625 0.342909 6.11949 0.938761 5.66709L7.71945 0.489257C8.13797 0.172115 8.64866 0.000274599 9.17391 3.13377e-07C9.69917 -0.000267527 10.21 0.171161 10.6289 0.488023L17.4052 5.66757H17.405C17.9987 6.12213 18.3477 6.82659 18.3496 7.5743V15.4497C18.3488 16.086 18.0957 16.6962 17.6457 17.1461C17.1957 17.5961 16.5857 17.8491 15.9494 17.8497L15.9498 17.8498ZM12.8733 16.9498H15.9498C16.3474 16.9494 16.7289 16.7912 17.0101 16.51C17.2914 16.2289 17.4495 15.8476 17.4501 15.4498V7.57437C17.4518 7.10643 17.2331 6.66501 16.8597 6.38307L10.0842 1.20456C9.82247 1.00648 9.5032 0.899339 9.17505 0.899339C8.8469 0.899339 8.52763 1.00648 8.26593 1.20456L1.48421 6.38273C1.11256 6.66572 0.896144 7.10715 0.900018 7.5743V15.4497C0.900554 15.8475 1.05872 16.2288 1.33997 16.5099C1.62122 16.7912 2.00265 16.9493 2.40029 16.9497H5.47006V13.4012C5.47167 12.0798 6.17762 10.8596 7.32218 10.1995C8.46674 9.53932 9.87646 9.53932 11.0209 10.1995C12.1655 10.8596 12.8713 12.0798 12.873 13.4012L12.8733 16.9498Z" />
|
|
5
|
+
</mask>
|
|
6
|
+
<path
|
|
7
|
+
d="M15.9498 17.8498H12.4232C12.1746 17.8498 11.9732 17.6482 11.9732 17.3998V13.4011C11.9717 12.4011 11.4375 11.4778 10.5712 10.9783C9.70493 10.4787 8.6382 10.4787 7.77208 10.9783C6.90581 11.4778 6.37157 12.4011 6.3701 13.4011V17.3998C6.36996 17.6482 6.16854 17.8498 5.9201 17.8498H2.40033C1.76402 17.8491 1.15397 17.596 0.703972 17.1462C0.253972 16.6961 0.000840813 16.0861 5.22417e-05 15.4498V7.57437C-0.00490307 6.82625 0.342909 6.11949 0.938761 5.66709L7.71945 0.489257C8.13797 0.172115 8.64866 0.000274599 9.17391 3.13377e-07C9.69917 -0.000267527 10.21 0.171161 10.6289 0.488023L17.4052 5.66757H17.405C17.9987 6.12213 18.3477 6.82659 18.3496 7.5743V15.4497C18.3488 16.086 18.0957 16.6962 17.6457 17.1461C17.1957 17.5961 16.5857 17.8491 15.9494 17.8497L15.9498 17.8498ZM12.8733 16.9498H15.9498C16.3474 16.9494 16.7289 16.7912 17.0101 16.51C17.2914 16.2289 17.4495 15.8476 17.4501 15.4498V7.57437C17.4518 7.10643 17.2331 6.66501 16.8597 6.38307L10.0842 1.20456C9.82247 1.00648 9.5032 0.899339 9.17505 0.899339C8.8469 0.899339 8.52763 1.00648 8.26593 1.20456L1.48421 6.38273C1.11256 6.66572 0.896144 7.10715 0.900018 7.5743V15.4497C0.900554 15.8475 1.05872 16.2288 1.33997 16.5099C1.62122 16.7912 2.00265 16.9493 2.40029 16.9497H5.47006V13.4012C5.47167 12.0798 6.17762 10.8596 7.32218 10.1995C8.46674 9.53932 9.87646 9.53932 11.0209 10.1995C12.1655 10.8596 12.8713 12.0798 12.873 13.4012L12.8733 16.9498Z"
|
|
8
|
+
fill="#7B96B2" />
|
|
9
|
+
<path
|
|
10
|
+
d="M15.9498 17.8498V19.1831L16.1549 16.5323L15.9498 17.8498ZM11.9732 13.4011H13.3065L13.3065 13.3991L11.9732 13.4011ZM7.77208 10.9783L8.43815 12.1333L8.43823 12.1333L7.77208 10.9783ZM6.3701 13.4011L5.03677 13.3991V13.4011H6.3701ZM6.3701 17.3998L7.70343 17.4005V17.3998H6.3701ZM2.40033 17.8498L2.39892 19.1831H2.40033V17.8498ZM0.703972 17.1462L-0.238837 18.089L-0.238682 18.0891L0.703972 17.1462ZM5.22417e-05 15.4498H-1.33328L-1.33328 15.4514L5.22417e-05 15.4498ZM5.22417e-05 7.57437H1.33341L1.33336 7.56554L5.22417e-05 7.57437ZM0.938761 5.66709L1.74504 6.72902L1.74796 6.72679L0.938761 5.66709ZM7.71945 0.489257L6.91417 -0.573444L6.91024 -0.570444L7.71945 0.489257ZM9.17391 3.13377e-07L9.17323 -1.33333H9.17322L9.17391 3.13377e-07ZM10.6289 0.488023L11.4387 -0.571306L11.4332 -0.575395L10.6289 0.488023ZM17.4052 5.66757V7.0009H21.3451L18.2149 4.60825L17.4052 5.66757ZM17.405 5.66757V4.33423H13.4703L16.5945 6.72623L17.405 5.66757ZM18.3496 7.5743H19.683L19.683 7.57094L18.3496 7.5743ZM18.3496 15.4497L19.683 15.4514V15.4497H18.3496ZM17.6457 17.1461L16.703 16.2032L16.7029 16.2033L17.6457 17.1461ZM15.9494 17.8497L15.948 16.5164L15.7443 19.1672L15.9494 17.8497ZM12.8733 16.9498L11.54 16.9499L11.5401 18.2831H12.8733V16.9498ZM15.9498 16.9498V18.2831L15.9511 18.2831L15.9498 16.9498ZM17.0101 16.51L16.0675 15.5669L16.0673 15.5672L17.0101 16.51ZM17.4501 15.4498L18.7834 15.4516V15.4498H17.4501ZM17.4501 7.57437L16.1167 7.56941V7.57437H17.4501ZM16.8597 6.38307L16.05 7.44245L16.0563 7.44717L16.8597 6.38307ZM10.0842 1.20456L10.8938 0.145195L10.8889 0.141427L10.0842 1.20456ZM8.26593 1.20456L7.46124 0.141408L7.45677 0.144825L8.26593 1.20456ZM1.48421 6.38273L2.29195 7.44355L2.29337 7.44247L1.48421 6.38273ZM0.900018 7.5743H2.2334L2.23331 7.56324L0.900018 7.5743ZM0.900018 15.4497H-0.433317L-0.433314 15.4515L0.900018 15.4497ZM1.33997 16.5099L2.28278 15.5671L2.28255 15.5669L1.33997 16.5099ZM2.40029 16.9497L2.39891 18.2831H2.40029V16.9497ZM5.47006 16.9497V18.2831H6.8034V16.9497H5.47006ZM5.47006 13.4012L4.13673 13.3995V13.4012H5.47006ZM11.0209 10.1995L10.3547 11.3544L10.3548 11.3544L11.0209 10.1995ZM12.873 13.4012L14.2064 13.401L14.2064 13.3994L12.873 13.4012ZM15.9498 16.5165H12.4232V19.1831H15.9498V16.5165ZM12.4232 16.5165C12.9112 16.5165 13.3065 16.9121 13.3065 17.3998H10.6398C10.6398 18.3844 11.438 19.1831 12.4232 19.1831V16.5165ZM13.3065 17.3998V13.4011H10.6398V17.3998H13.3065ZM13.3065 13.3991C13.3043 11.9233 12.5158 10.5605 11.2373 9.82324L9.90512 12.1333C10.3591 12.3951 10.6391 12.879 10.6398 13.403L13.3065 13.3991ZM11.2373 9.82324C9.95881 9.086 8.38436 9.08595 7.10592 9.82329L8.43823 12.1333C8.89205 11.8715 9.45106 11.8715 9.90512 12.1333L11.2373 9.82324ZM7.106 9.82324C5.82745 10.5605 5.03894 11.9233 5.03677 13.3991L7.70343 13.403C7.7042 12.879 7.98418 12.3951 8.43815 12.1333L7.106 9.82324ZM5.03677 13.4011V17.3998H7.70343V13.4011H5.03677ZM5.03677 17.3991C5.03703 16.9124 5.4315 16.5165 5.9201 16.5165V19.1831C6.90557 19.1831 7.7029 18.3841 7.70343 17.4005L5.03677 17.3991ZM5.9201 16.5165H2.40033V19.1831H5.9201V16.5165ZM2.40173 16.5165C2.11864 16.5162 1.84705 16.4035 1.64663 16.2032L-0.238682 18.0891C0.460896 18.7885 1.40939 19.1821 2.39892 19.1831L2.40173 16.5165ZM1.64678 16.2033C1.44641 16.003 1.33374 15.7314 1.33338 15.4481L-1.33328 15.4514C-1.33205 16.4408 -0.938463 17.3893 -0.238837 18.089L1.64678 16.2033ZM1.33339 15.4498V7.57437H-1.33328V15.4498H1.33339ZM1.33336 7.56554C1.33118 7.23736 1.48376 6.92739 1.74503 6.72902L0.132488 4.60515C-0.797943 5.31158 -1.34099 6.41514 -1.33325 7.5832L1.33336 7.56554ZM1.74796 6.72679L8.52865 1.54896L6.91024 -0.570444L0.129557 4.60738L1.74796 6.72679ZM8.52472 1.55195C8.71174 1.41023 8.93993 1.33346 9.17461 1.33333L9.17322 -1.33333C8.35739 -1.33291 7.5642 -1.066 6.91418 -0.573437L8.52472 1.55195ZM9.17459 1.33333C9.40902 1.33321 9.63723 1.40971 9.82462 1.55144L11.4332 -0.575395C10.7828 -1.06738 9.98933 -1.33375 9.17323 -1.33333L9.17459 1.33333ZM9.81922 1.54734L16.5955 6.72688L18.2149 4.60825L11.4386 -0.571293L9.81922 1.54734ZM17.4052 4.33423H17.405V7.0009H17.4052V4.33423ZM16.5945 6.72623C16.8596 6.92925 17.0155 7.24386 17.0163 7.57766L19.683 7.57094C19.68 6.40933 19.1378 5.315 18.2156 4.6089L16.5945 6.72623ZM17.0163 7.5743V15.4497H19.683V7.5743H17.0163ZM17.0163 15.448C17.0159 15.7314 16.9032 16.003 16.703 16.2032L18.5884 18.089C19.2882 17.3894 19.6817 16.4407 19.683 15.4514L17.0163 15.448ZM16.7029 16.2033C16.5027 16.4035 16.2312 16.5161 15.948 16.5164L15.9507 19.1831C16.9401 19.182 17.8888 18.7886 18.5885 18.0889L16.7029 16.2033ZM15.7443 19.1672L15.7447 19.1673L16.1549 16.5323L16.1544 16.5323L15.7443 19.1672ZM12.8733 18.2831H15.9498V15.6165H12.8733V18.2831ZM15.9511 18.2831C16.7019 18.2824 17.4219 17.9838 17.9529 17.4528L16.0673 15.5672C16.0358 15.5987 15.993 15.6164 15.9485 15.6165L15.9511 18.2831ZM17.9527 17.453C18.484 16.922 18.7824 16.2021 18.7834 15.4516L16.1167 15.448C16.1167 15.493 16.0988 15.5357 16.0675 15.5669L17.9527 17.453ZM18.7834 15.4498V7.57437H16.1167V15.4498H18.7834ZM18.7834 7.57933C18.7867 6.69171 18.3718 5.85408 17.6631 5.31898L16.0563 7.44717C16.0944 7.47594 16.1169 7.52116 16.1168 7.56941L18.7834 7.57933ZM17.6694 5.32372L10.8938 0.145207L9.27451 2.26391L16.0501 7.44243L17.6694 5.32372ZM10.8889 0.141427C10.3954 -0.232065 9.79355 -0.433995 9.17505 -0.433995V2.23267C9.21284 2.23267 9.24953 2.24503 9.27948 2.26769L10.8889 0.141427ZM9.17505 -0.433995C8.55654 -0.433995 7.95469 -0.23206 7.46125 0.141417L9.0706 2.2677C9.10057 2.24502 9.13726 2.23267 9.17505 2.23267V-0.433995ZM7.45677 0.144825L0.675053 5.323L2.29337 7.44247L9.07509 2.2643L7.45677 0.144825ZM0.676473 5.32191C-0.0295149 5.85947 -0.440628 6.69814 -0.433269 7.58536L2.23331 7.56324C2.23292 7.51617 2.25463 7.47197 2.29195 7.44355L0.676473 5.32191ZM-0.433315 7.5743V15.4497H2.23335V7.5743H-0.433315ZM-0.433314 15.4515C-0.432303 16.2021 -0.133847 16.922 0.397399 17.453L2.28255 15.5669C2.25129 15.5356 2.23341 15.4929 2.23335 15.4479L-0.433314 15.4515ZM0.397163 17.4527C0.928197 17.9838 1.64823 18.2823 2.39891 18.2831L2.40167 15.6164C2.35706 15.6163 2.31425 15.5986 2.28278 15.5671L0.397163 17.4527ZM2.40029 18.2831H5.47006V15.6164H2.40029V18.2831ZM6.8034 16.9497V13.4012H4.13673V16.9497H6.8034ZM6.8034 13.4028C6.80442 12.5575 7.25604 11.7768 7.98833 11.3544L6.65602 9.04446C5.09919 9.94238 4.13892 11.6022 4.13673 13.3995L6.8034 13.4028ZM7.98833 11.3544C8.72064 10.9321 9.62258 10.9321 10.3547 11.3544L11.6871 9.04448C10.1303 8.14652 8.21284 8.14655 6.65602 9.04446L7.98833 11.3544ZM10.3548 11.3544C11.087 11.7767 11.5386 12.5574 11.5397 13.4029L14.2064 13.3994C14.204 11.6022 13.244 9.94243 11.6871 9.04446L10.3548 11.3544ZM11.5397 13.4013L11.54 16.9499L14.2067 16.9497L14.2064 13.401L11.5397 13.4013Z"
|
|
11
|
+
fill="#7B96B2" mask="url(#path-1-inside-1_1953_48691)" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg enable-background="new 0 0 512.001 512.001" viewBox="0 0 512.001 512.001" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="m471.767 61.324h-332.152c-4.598 0-8.326 3.728-8.326 8.326s3.728 8.326 8.326 8.326h332.15c13.004 0 23.582 10.58 23.582 23.582v308.885c0 13.004-10.58 23.582-23.582 23.582h-263.501c-4.598 0-8.326 3.728-8.326 8.326s3.728 8.326 8.326 8.326h263.501c22.186 0 40.234-18.048 40.235-40.234v-308.885c.001-22.186-18.048-40.234-40.233-40.234z" />
|
|
4
|
+
<path
|
|
5
|
+
d="m174.961 434.026h-134.727c-13.004 0-23.582-10.58-23.582-23.582v-308.886c0-13.003 10.578-23.581 23.582-23.581h66.077c4.598 0 8.326-3.728 8.326-8.326s-3.728-8.326-8.326-8.326h-66.077c-22.186 0-40.234 18.048-40.234 40.233v308.886c0 22.185 18.048 40.233 40.234 40.233h134.726c4.598 0 8.326-3.728 8.326-8.326s-3.727-8.325-8.325-8.325z" />
|
|
6
|
+
<path
|
|
7
|
+
d="m456.134 168.677h-400.268c-4.598 0-8.326 3.728-8.326 8.326v216.528c0 4.598 3.728 8.326 8.326 8.326h296.258c4.598 0 8.326-3.728 8.326-8.326s-3.728-8.326-8.326-8.326h-287.932v-199.876h383.616v199.876h-62.38c-4.598 0-8.326 3.728-8.326 8.326s3.728 8.326 8.326 8.326h70.706c4.598 0 8.326-3.728 8.326-8.326v-216.528c0-4.598-3.728-8.326-8.326-8.326z" />
|
|
8
|
+
<circle cx="437.701" cy="123.325" r="18.437" />
|
|
9
|
+
<circle cx="382.173" cy="123.325" r="18.437" />
|
|
10
|
+
<circle cx="326.655" cy="123.325" r="18.437" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg enable-background="new 0 0 232.322 232.322" viewBox="0 0 232.322 232.322" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="m224.822 23.935h-217.322c-4.142 0-7.5 3.357-7.5 7.5v169.451c0 4.143 3.358 7.5 7.5 7.5h217.322c4.142 0 7.5-3.357 7.5-7.5v-169.451c0-4.142-3.358-7.5-7.5-7.5zm-7.5 15.001v143.091l-59.995-63.799c-1.417-1.507-3.394-2.362-5.462-2.362-.001 0-.001 0-.001 0-2.068 0-4.044.855-5.462 2.36l-25.62 27.227-34.349-45.291c-1.418-1.87-3.629-2.968-5.976-2.968-.002 0-.004 0-.006 0-2.349.002-4.561 1.104-5.977 2.978l-59.474 78.689v-139.925zm-9.907 154.451h-184.591l57.643-76.269 33.722 44.465c1.334 1.759 3.374 2.84 5.578 2.957 2.201.11 4.348-.742 5.86-2.35l26.234-27.879z" />
|
|
4
|
+
<path
|
|
5
|
+
d="m155.237 101.682c13.597 0 24.658-11.061 24.658-24.656 0-13.597-11.061-24.658-24.658-24.658-13.596 0-24.656 11.062-24.656 24.658 0 13.595 11.061 24.656 24.656 24.656zm0-34.315c5.326 0 9.658 4.333 9.658 9.658 0 5.324-4.332 9.656-9.658 9.656-5.325 0-9.656-4.332-9.656-9.656 0-5.325 4.332-9.658 9.656-9.658z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="4" height="12" viewBox="0 0 4 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M1.99847 4.79883C1.33375 4.79883 0.799316 5.33638 0.799316 5.99798V10.798C0.799316 11.4627 1.3338 11.9971 1.99847 11.9971C2.66314 11.9971 3.19763 11.4627 3.19763 10.798V5.99798C3.19763 5.33638 2.66314 4.79883 1.99847 4.79883Z"
|
|
4
|
+
fill="#7B96B2" />
|
|
5
|
+
<path
|
|
6
|
+
d="M3.19763 1.19818C3.19763 1.86063 2.66087 2.39733 1.99847 2.39733C1.33607 2.39733 0.799316 1.86058 0.799316 1.19818C0.799316 0.535779 1.33607 -0.000976562 1.99847 -0.000976562C2.66087 -0.000976562 3.19763 0.535779 3.19763 1.19818Z"
|
|
7
|
+
fill="#7B96B2" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
2
|
+
<path fill="none" d="M0 0h24v24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16zM11 7h2v2h-2V7zm0 4h2v6h-2v-6z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
2
|
+
<path fill="none" d="M0 0H24V24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M11 2.05v2.012C7.054 4.554 4 7.92 4 12c0 4.418 3.582 8 8 8 1.849 0 3.55-.627 4.906-1.68l1.423 1.423C16.605 21.153 14.4 22 12 22 6.477 22 2 17.523 2 12c0-5.185 3.947-9.449 9-9.95zM21.95 13c-.2 2.011-.994 3.847-2.207 5.328l-1.423-1.422c.86-1.107 1.436-2.445 1.618-3.906h2.013zM13.002 2.05c4.724.469 8.48 4.226 8.95 8.95h-2.013c-.451-3.618-3.319-6.486-6.937-6.938V2.049z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="100" height="100">
|
|
2
|
+
<path fill="none" d="M0 0h24v24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M10 6v2H5v11h11v-5h2v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h6zm11-3v8h-2V6.413l-7.793 7.794-1.414-1.414L17.585 5H13V3h8z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px">
|
|
2
|
+
<path d="M0 0h24v24H0z" fill="none" />
|
|
3
|
+
<path
|
|
4
|
+
d="M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
2
|
+
<path fill="none" d="M0 0h24v24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M13.06 8.11l1.415 1.415a7 7 0 0 1 0 9.9l-.354.353a7 7 0 0 1-9.9-9.9l1.415 1.415a5 5 0 1 0 7.071 7.071l.354-.354a5 5 0 0 0 0-7.07l-1.415-1.415 1.415-1.414zm6.718 6.011l-1.414-1.414a5 5 0 1 0-7.071-7.071l-.354.354a5 5 0 0 0 0 7.07l1.415 1.415-1.415 1.414-1.414-1.414a7 7 0 0 1 0-9.9l.354-.353a7 7 0 0 1 9.9 9.9z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg enable-background="new 0 0 55 55" viewBox="0 0 55 55" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="m20 6.263 15 3.529v40.016l-15-2.647zm-.999-2.262c-.224 0-.443.075-.622.216-.239.189-.379.478-.379.784v43c0 .485.348.9.826.984l17 3c.058.011.116.016.174.016.233 0 .461-.082.643-.234.226-.19.357-.471.357-.766v-42c0-.464-.319-.867-.771-.974l-17-4c-.076-.018-.152-.026-.228-.026z" />
|
|
4
|
+
<path
|
|
5
|
+
d="m54.584 2.189c-.261-.188-.597-.241-.901-.137l-18 6c-.408.136-.683.518-.683.949v42c0 .33.163.639.436.825.168.115.366.175.564.175.123 0 .245-.022.362-.068l18-7c.385-.15.638-.52.638-.932v-41c0-.322-.154-.623-.416-.812z" />
|
|
6
|
+
<path
|
|
7
|
+
d="m18.783 4.024-18 4c-.457.103-.783.508-.783.977v43c0 .304.138.59.375.78.179.144.4.22.625.22.072 0 .145-.008.217-.023l18-4c.457-.103.783-.509.783-.977v-43c0-.304-.138-.59-.375-.78-.235-.19-.545-.26-.842-.197z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m0 0h24v24h-24z" fill="none" />
|
|
3
|
+
<path
|
|
4
|
+
d="m12 20.9 4.95-4.95a7 7 0 1 0 -9.9 0zm0 2.828-6.364-6.364a9 9 0 1 1 12.728 0zm0-10.728a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 2a4 4 0 1 1 0-8 4 4 0 0 1 0 8z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
2
|
+
<path fill="none" d="M0 0h24v24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm0 2C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-6a4 4 0 1 0 0-8 4 4 0 0 0 0 8zm0 2a6 6 0 1 1 0-12 6 6 0 0 1 0 12zm0-4a2 2 0 1 1 0-4 2 2 0 0 1 0 4z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m0 0h24v24h-24z" fill="none" />
|
|
3
|
+
<path
|
|
4
|
+
d="m6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg enable-background="new 0 0 512 512" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path clip-rule="evenodd"
|
|
3
|
+
d="m315.1 452.9c0 32.6-26.5 59.1-59.1 59.1s-59.1-26.5-59.1-59.1 26.5-59.1 59.1-59.1 59.1 26.5 59.1 59.1zm0-196.9c0 32.6-26.5 59.1-59.1 59.1s-59.1-26.5-59.1-59.1 26.5-59.1 59.1-59.1 59.1 26.5 59.1 59.1zm0-196.9c0 32.6-26.5 59.1-59.1 59.1s-59.1-26.5-59.1-59.1 26.5-59.1 59.1-59.1 59.1 26.5 59.1 59.1z"
|
|
4
|
+
fill-rule="evenodd" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="100" height="100">
|
|
2
|
+
<path fill="none" d="M0 0h24v24H0z" />
|
|
3
|
+
<path
|
|
4
|
+
d="M11 11V5.828L9.172 7.657 7.757 6.243 12 2l4.243 4.243-1.415 1.414L13 5.828V11h5.172l-1.829-1.828 1.414-1.415L22 12l-4.243 4.243-1.414-1.415L18.172 13H13v5.172l1.828-1.829 1.415 1.414L12 22l-4.243-4.243 1.415-1.414L11 18.172V13H5.828l1.829 1.828-1.414 1.415L2 12l4.243-4.243 1.414 1.415L5.828 11z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m0 0h24v24h-24z" fill="none" />
|
|
3
|
+
<path d="m4.07 13h-2.02c.2 2.01 1 3.84 2.21 5.33l1.43-1.43c-.86-1.11-1.44-2.44-1.62-3.9z" />
|
|
4
|
+
<path d="m5.69 7.1-1.43-1.43c-1.21 1.49-2.01 3.32-2.21 5.33h2.02c.18-1.46.76-2.79 1.62-3.9z" />
|
|
5
|
+
<path d="m11 4.07v-2.02c-2.01.2-3.84 1-5.33 2.21l1.43 1.43c1.11-.86 2.44-1.44 3.9-1.62z" />
|
|
6
|
+
<path d="m18.33 4.26c-1.49-1.21-3.32-2.01-5.33-2.21v2.02c1.46.18 2.79.76 3.9 1.62z" />
|
|
7
|
+
<path d="m18.31 16.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.33h-2.02c-.18 1.46-.76 2.79-1.62 3.9z" />
|
|
8
|
+
<path d="m19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.33l-1.43 1.43c.86 1.11 1.44 2.44 1.62 3.9z" />
|
|
9
|
+
<path d="m13 19.93v2.02c2.01-.2 3.84-1 5.33-2.21l-1.43-1.43c-1.11.86-2.44 1.44-3.9 1.62z" />
|
|
10
|
+
<path d="m5.67 19.74c1.48 1.21 3.32 2.01 5.33 2.21v-2.02c-1.46-.18-2.79-.76-3.9-1.62z" />
|
|
11
|
+
<circle cx="12" cy="12" r="5" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg fill="none" height="9" width="10" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g stroke="#000" stroke-linecap="round">
|
|
3
|
+
<path d="m6.8305 2.85742h-3.68595c-1.10457 0-2 .89543-2 2v3.57303" transform="matrix(0 1 -1 0 9.63146 1.65642)" />
|
|
4
|
+
<path d="m8.56093 1.25h-3.68595c-1.10457 0-2 .89543-2 2v3.57303" transform="matrix(0 1 -1 0 9.75446 -1.68144)" />
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|