@fmidev/smartmet-alert-client 4.4.19 → 4.7.0-alpha.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/.eslintignore +2 -14
- package/.github/workflows/test.yaml +26 -0
- package/.nvmrc +1 -0
- package/dist/index.html +5 -0
- package/dist/index.js +105 -135
- package/dist/index.mjs +112 -135
- package/dist/locale-en-DCEKDw5G.js +8 -0
- package/dist/locale-fi-DPiOM1rB.js +8 -0
- package/dist/locale-sv-B0FlbgEF.js +8 -0
- package/dist/vendor-Cfkkvdz7.js +21 -0
- package/dist/vue/index.mjs +15245 -0
- package/dist/vue/style.css +1 -0
- package/dist/xml-parser-BiNO9kc-.js +13 -0
- package/package.json +60 -24
- package/src/AlertClientVue.vue +170 -0
- package/src/App.vue +55 -205
- package/src/assets/img/ui/arrow-down.svg +4 -11
- package/src/assets/img/ui/arrow-up.svg +4 -11
- package/src/assets/img/ui/clear.svg +7 -21
- package/src/assets/img/ui/close.svg +4 -15
- package/src/assets/img/ui/toggle-selected.svg +5 -6
- package/src/assets/img/ui/toggle-unselected.svg +5 -6
- package/src/assets/img/warning/cold-weather.svg +3 -6
- package/src/assets/img/warning/flood-level-3.svg +4 -7
- package/src/assets/img/warning/forest-fire-weather.svg +2 -6
- package/src/assets/img/warning/grass-fire-weather.svg +2 -6
- package/src/assets/img/warning/hot-weather.svg +3 -6
- package/src/assets/img/warning/pedestrian-safety.svg +3 -7
- package/src/assets/img/warning/rain.svg +2 -7
- package/src/assets/img/warning/sea-icing.svg +2 -6
- package/src/assets/img/warning/sea-thunder-storm.svg +2 -5
- package/src/assets/img/warning/sea-water-height-high-water.svg +3 -8
- package/src/assets/img/warning/sea-water-height-shallow-water.svg +3 -7
- package/src/assets/img/warning/sea-wave-height.svg +4 -7
- package/src/assets/img/warning/sea-wind-legend.svg +2 -5
- package/src/assets/img/warning/sea-wind.svg +2 -5
- package/src/assets/img/warning/several.svg +2 -5
- package/src/assets/img/warning/thunder-storm.svg +2 -5
- package/src/assets/img/warning/traffic-weather.svg +2 -6
- package/src/assets/img/warning/uv-note.svg +2 -6
- package/src/assets/img/warning/wind.svg +2 -5
- package/src/components/AlertClient.vue +41 -19
- package/src/components/CollapsiblePanel.vue +284 -0
- package/src/components/DayLarge.vue +12 -7
- package/src/components/DaySmall.vue +16 -6
- package/src/components/Days.vue +76 -51
- package/src/components/DescriptionWarning.vue +15 -8
- package/src/components/GrayScaleToggle.vue +11 -6
- package/src/components/Legend.vue +36 -248
- package/src/components/MapLarge.vue +41 -42
- package/src/components/MapSmall.vue +44 -28
- package/src/components/PopupRow.vue +6 -3
- package/src/components/Region.vue +30 -15
- package/src/components/RegionWarning.vue +6 -5
- package/src/components/Regions.vue +50 -19
- package/src/components/Warning.vue +18 -10
- package/src/components/Warnings.vue +36 -21
- package/src/main.js +1 -0
- package/src/mixins/alertClientCore.js +210 -0
- package/src/mixins/config.js +262 -256
- package/src/mixins/utils.js +40 -26
- package/src/plugins/index.js +1 -1
- package/src/scss/_utilities.scss +193 -0
- package/src/scss/constants.scss +2 -1
- package/src/scss/warningImages.scss +8 -3
- package/src/vue.js +41 -0
- package/svgo.config.js +45 -0
- package/tests/README.md +430 -0
- package/tests/fixtures/mockWarningData.js +135 -0
- package/tests/integration/warning-flow.spec.js +452 -0
- package/tests/setup.js +41 -0
- package/tests/unit/components/AlertClient.spec.js +734 -0
- package/tests/unit/components/DayLarge.spec.js +281 -0
- package/tests/unit/components/DaySmall.spec.js +278 -0
- package/tests/unit/components/Days.spec.js +565 -0
- package/tests/unit/components/DescriptionWarning.spec.js +432 -0
- package/tests/unit/components/GrayScaleToggle.spec.js +311 -0
- package/tests/unit/components/Legend.spec.js +223 -0
- package/tests/unit/components/MapLarge.spec.js +276 -0
- package/tests/unit/components/MapSmall.spec.js +226 -0
- package/tests/unit/components/PopupRow.spec.js +261 -0
- package/tests/unit/components/Region.spec.js +430 -0
- package/tests/unit/components/RegionWarning.snapshot.spec.js +73 -0
- package/tests/unit/components/RegionWarning.spec.js +408 -0
- package/tests/unit/components/Regions.spec.js +335 -0
- package/tests/unit/components/Warning.snapshot.spec.js +107 -0
- package/tests/unit/components/Warning.spec.js +472 -0
- package/tests/unit/components/Warnings.spec.js +329 -0
- package/tests/unit/components/__snapshots__/RegionWarning.snapshot.spec.js.snap +21 -0
- package/tests/unit/components/__snapshots__/Warning.snapshot.spec.js.snap +199 -0
- package/tests/unit/mixins/config.spec.js +269 -0
- package/tests/unit/mixins/i18n.spec.js +115 -0
- package/tests/unit/mixins/keycodes.spec.js +37 -0
- package/tests/unit/mixins/utils.spec.js +624 -0
- package/vite.config.js +96 -26
- package/vitest.config.js +40 -0
- package/dist/index.mjs.map +0 -1
- package/dist/index.relative.html +0 -19
- package/dist/index.start.html +0 -20
- package/playwright.config.ts +0 -18
- package/public/index.relative.html +0 -19
- package/public/index.start.html +0 -20
- package/src/mixins/panzoom.js +0 -900
- package/test/snapshot.test.ts +0 -126
- package/vitest.config.ts +0 -6
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<
|
|
4
|
-
<path
|
|
5
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;" d="M 20.386719 11.488281 L 13.933594 6.632812 L 7.480469 11.488281 L 9.886719 11.488281 L 9.886719 18.070312 L 9.90625 18.070312 C 10.667969 18.070312 11.035156 17.675781 11.503906 17.175781 C 12.027344 16.617188 12.679688 15.921875 13.933594 15.921875 C 15.1875 15.921875 15.835938 16.617188 16.359375 17.175781 C 16.828125 17.675781 17.199219 18.070312 17.957031 18.070312 L 17.976562 18.070312 L 17.976562 11.488281 Z M 15.074219 13.90625 L 12.753906 13.90625 L 12.753906 11.589844 L 15.074219 11.589844 Z M 15.074219 13.90625 "/>
|
|
6
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;" d="M 21.542969 15.527344 C 20.371094 15.527344 19.757812 16.179688 19.265625 16.703125 C 18.828125 17.171875 18.480469 17.542969 17.765625 17.542969 C 17.050781 17.542969 16.707031 17.171875 16.265625 16.703125 C 15.773438 16.179688 15.164062 15.527344 13.988281 15.527344 C 12.8125 15.527344 12.199219 16.179688 11.707031 16.703125 C 11.269531 17.171875 10.921875 17.542969 10.207031 17.542969 C 9.492188 17.542969 9.148438 17.171875 8.707031 16.703125 C 8.214844 16.179688 7.605469 15.527344 6.429688 15.527344 C 6.132812 15.527344 5.894531 15.765625 5.894531 16.0625 C 5.894531 16.355469 6.132812 16.59375 6.429688 16.59375 L 6.4375 16.59375 C 7.144531 16.597656 7.492188 16.96875 7.929688 17.433594 C 8.417969 17.957031 9.03125 18.609375 10.207031 18.609375 C 11.382812 18.609375 11.996094 17.957031 12.484375 17.433594 C 12.925781 16.964844 13.273438 16.59375 13.988281 16.59375 C 14.699219 16.59375 15.046875 16.964844 15.488281 17.433594 C 15.980469 17.957031 16.589844 18.609375 17.765625 18.609375 C 18.941406 18.609375 19.554688 17.957031 20.042969 17.433594 C 20.480469 16.96875 20.828125 16.597656 21.535156 16.59375 L 21.542969 16.59375 C 21.734375 16.59375 21.910156 16.492188 22.007812 16.328125 C 22.101562 16.164062 22.101562 15.960938 22.007812 15.792969 C 21.910156 15.628906 21.734375 15.527344 21.542969 15.527344 Z M 21.542969 15.527344 "/>
|
|
7
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#231f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.2" d="M21.543 17.965c-1.172 0-1.785.652-2.277 1.176-.438.468-.786.84-1.5.84-.715 0-1.063-.372-1.5-.84-.493-.524-1.106-1.176-2.278-1.176-1.175 0-1.789.652-2.281 1.176-.437.468-.785.836-1.5.836s-1.059-.368-1.5-.836c-.492-.524-1.102-1.176-2.277-1.176a.533.533 0 1 0 0 1.066h.011c.704.004 1.051.375 1.489.84.492.524 1.101 1.176 2.277 1.176s1.79-.652 2.277-1.176c.442-.469.79-.84 1.504-.84.711 0 1.059.371 1.5.84.492.524 1.102 1.176 2.278 1.176s1.789-.652 2.277-1.176c.437-.465.785-.832 1.492-.84h.008a.533.533 0 1 0 0-1.066Zm0 0" paint-order="stroke"/>
|
|
3
|
+
<path fill="#231f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.2" d="m20.387 11.488-6.453-4.855-6.454 4.855h2.407v6.582h.02c.761 0 1.128-.394 1.597-.894.523-.559 1.176-1.254 2.43-1.254s1.902.695 2.425 1.254c.47.5.84.894 1.598.894h.02v-6.582Zm-5.313 2.418h-2.32V11.59h2.32Zm0 0" paint-order="stroke"/>
|
|
4
|
+
<path fill="#231f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.2" d="M21.543 15.527c-1.172 0-1.785.653-2.277 1.176-.438.469-.786.84-1.5.84-.715 0-1.059-.371-1.5-.84-.493-.523-1.102-1.176-2.278-1.176s-1.789.653-2.281 1.176c-.437.469-.785.84-1.5.84s-1.059-.371-1.5-.84c-.492-.523-1.102-1.176-2.277-1.176a.533.533 0 1 0 0 1.067h.008c.707.004 1.054.375 1.492.84.488.523 1.101 1.175 2.277 1.175s1.79-.652 2.277-1.175c.442-.47.79-.84 1.504-.84.711 0 1.059.37 1.5.84.492.523 1.102 1.175 2.278 1.175s1.789-.652 2.277-1.175c.437-.465.785-.836 1.492-.84h.008a.54.54 0 0 0 .465-.266.54.54 0 0 0 0-.535.54.54 0 0 0-.465-.266Zm0 0" paint-order="stroke"/>
|
|
8
5
|
</svg>
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<g id="surface1">
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 17.992188 12.910156 C 18.265625 14.246094 16.886719 16.019531 16.394531 15.089844 C 16.152344 14.632812 16.546875 13.894531 16.683594 13.460938 C 16.910156 12.742188 17.089844 11.980469 17.058594 11.222656 C 16.96875 8.910156 15.054688 5.578125 12.042969 5.601562 C 13.71875 7.621094 9.484375 9.496094 10.328125 13.910156 C 9.578125 13.78125 9.035156 12.359375 9.035156 12.359375 C 9.035156 12.359375 7.273438 18.726562 12.558594 18.726562 C 11.25 17.902344 10.289062 16.695312 10.25 15.304688 C 10.25 15.304688 11.398438 16.257812 12.414062 16.214844 C 11.648438 14.226562 13.027344 12.148438 14.742188 11.414062 C 14.175781 12.597656 13.578125 14.074219 13.753906 15.40625 C 14.027344 17.46875 16.335938 17.34375 17.816406 16.050781 C 17.816406 16.929688 16.609375 18.023438 15.855469 18.726562 C 20.917969 17.769531 19.09375 13.390625 17.992188 12.910156 "/>
|
|
5
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 8.089844 20.925781 L 20.527344 20.925781 L 20.527344 19.714844 L 8.089844 19.714844 Z M 8.089844 20.925781 "/>
|
|
6
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.5" d="M17.992 12.91c.274 1.336-1.105 3.11-1.597 2.18-.243-.457.152-1.195.289-1.63.226-.718.406-1.48.375-2.237-.09-2.313-2.004-5.645-5.016-5.621 1.676 2.02-2.559 3.894-1.715 8.308-.75-.129-1.293-1.55-1.293-1.55s-1.762 6.367 3.524 6.367c-1.309-.825-2.27-2.032-2.309-3.422 0 0 1.148.953 2.164.91-.766-1.988.613-4.067 2.328-4.8-.566 1.183-1.164 2.66-.988 3.991.273 2.063 2.582 1.938 4.062.645 0 .879-1.207 1.972-1.96 2.676 5.062-.957 3.238-5.336 2.136-5.817M8.09 20.926h12.437v-1.211H8.09Zm0 0" paint-order="stroke"/>
|
|
7
3
|
</svg>
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<g id="surface1">
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 17.992188 12.910156 C 18.265625 14.246094 16.886719 16.019531 16.394531 15.089844 C 16.152344 14.632812 16.546875 13.894531 16.683594 13.460938 C 16.910156 12.742188 17.089844 11.980469 17.058594 11.222656 C 16.96875 8.910156 15.054688 5.578125 12.042969 5.601562 C 13.71875 7.621094 9.484375 9.496094 10.328125 13.910156 C 9.578125 13.78125 9.035156 12.359375 9.035156 12.359375 C 9.035156 12.359375 7.273438 18.726562 12.558594 18.726562 C 11.25 17.902344 10.289062 16.695312 10.25 15.304688 C 10.25 15.304688 11.398438 16.257812 12.414062 16.214844 C 11.648438 14.226562 13.027344 12.148438 14.742188 11.414062 C 14.175781 12.597656 13.578125 14.074219 13.753906 15.40625 C 14.027344 17.46875 16.335938 17.34375 17.816406 16.050781 C 17.816406 16.929688 16.609375 18.023438 15.855469 18.726562 C 20.917969 17.769531 19.09375 13.390625 17.992188 12.910156 "/>
|
|
5
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 8.089844 20.925781 L 20.527344 20.925781 L 20.527344 19.714844 L 8.089844 19.714844 Z M 8.089844 20.925781 "/>
|
|
6
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.5" d="M17.992 12.91c.274 1.336-1.105 3.11-1.597 2.18-.243-.457.152-1.195.289-1.63.226-.718.406-1.48.375-2.237-.09-2.313-2.004-5.645-5.016-5.621 1.676 2.02-2.559 3.894-1.715 8.308-.75-.129-1.293-1.55-1.293-1.55s-1.762 6.367 3.524 6.367c-1.309-.825-2.27-2.032-2.309-3.422 0 0 1.148.953 2.164.91-.766-1.988.613-4.067 2.328-4.8-.566 1.183-1.164 2.66-.988 3.991.273 2.063 2.582 1.938 4.062.645 0 .879-1.207 1.972-1.96 2.676 5.062-.957 3.238-5.336 2.136-5.817M8.09 20.926h12.437v-1.211H8.09Zm0 0" paint-order="stroke"/>
|
|
7
3
|
</svg>
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 13.828125 21.453125 C 12.722656 21.453125 11.820312 20.554688 11.820312 19.445312 C 11.820312 18.882812 12.050781 18.359375 12.46875 17.976562 L 12.46875 17.972656 C 12.589844 17.859375 12.667969 17.699219 12.667969 17.519531 L 12.667969 7.382812 C 12.667969 6.742188 13.1875 6.222656 13.828125 6.222656 C 14.46875 6.222656 14.992188 6.742188 14.992188 7.382812 L 14.992188 17.519531 C 14.992188 17.699219 15.070312 17.859375 15.191406 17.972656 L 15.191406 17.976562 C 15.609375 18.359375 15.835938 18.882812 15.835938 19.445312 C 15.835938 20.554688 14.9375 21.453125 13.828125 21.453125 Z M 17.503906 9.894531 C 17.792969 9.894531 18.023438 9.660156 18.023438 9.375 C 18.023438 9.089844 17.792969 8.855469 17.503906 8.855469 L 16.234375 8.855469 L 16.234375 8.203125 L 17.503906 8.203125 C 17.792969 8.203125 18.023438 7.96875 18.023438 7.683594 C 18.023438 7.398438 17.792969 7.164062 17.503906 7.164062 L 16.226562 7.164062 C 16.113281 5.941406 15.082031 4.976562 13.828125 4.976562 C 12.503906 4.976562 11.425781 6.058594 11.425781 7.382812 L 11.425781 17.265625 C 10.882812 17.859375 10.578125 18.640625 10.578125 19.445312 C 10.578125 21.238281 12.035156 22.699219 13.828125 22.699219 C 15.621094 22.699219 17.082031 21.238281 17.082031 19.445312 C 17.082031 18.640625 16.777344 17.859375 16.234375 17.265625 L 16.234375 11.585938 L 17.503906 11.585938 C 17.792969 11.585938 18.023438 11.355469 18.023438 11.066406 C 18.023438 10.78125 17.792969 10.550781 17.503906 10.550781 L 16.234375 10.550781 L 16.234375 9.894531 Z M 17.503906 9.894531 "/>
|
|
5
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 1px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 14.367188 18.234375 L 14.367188 12.691406 C 14.367188 12.390625 14.128906 12.152344 13.828125 12.152344 C 13.53125 12.152344 13.289062 12.390625 13.289062 12.691406 L 13.289062 18.234375 C 12.824219 18.441406 12.5 18.90625 12.5 19.445312 C 12.5 20.179688 13.097656 20.773438 13.828125 20.773438 C 14.5625 20.773438 15.15625 20.179688 15.15625 19.445312 C 15.15625 18.90625 14.832031 18.441406 14.367188 18.234375 "/>
|
|
6
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.5" d="M13.828 21.453a2.01 2.01 0 0 1-2.008-2.008c0-.562.23-1.086.649-1.468v-.004a.62.62 0 0 0 .199-.453V7.383a1.16 1.16 0 0 1 2.324 0V17.52c0 .18.078.34.2.453v.004c.417.382.644.906.644 1.468 0 1.11-.899 2.008-2.008 2.008Zm3.676-11.558a.52.52 0 1 0 0-1.04h-1.27v-.652h1.27a.52.52 0 1 0 0-1.039h-1.277a2.414 2.414 0 0 0-2.399-2.187 2.41 2.41 0 0 0-2.402 2.406v9.883a3.24 3.24 0 0 0-.848 2.18 3.256 3.256 0 0 0 3.25 3.253 3.26 3.26 0 0 0 3.254-3.254 3.24 3.24 0 0 0-.848-2.18v-5.68h1.27a.517.517 0 1 0 0-1.034h-1.27v-.656Zm0 0" paint-order="stroke"/>
|
|
3
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" d="M14.367 18.234v-5.543c0-.3-.238-.539-.539-.539a.54.54 0 0 0-.539.54v5.542a1.327 1.327 0 1 0 1.867 1.211c0-.539-.324-1.004-.789-1.21" paint-order="stroke"/>
|
|
7
4
|
</svg>
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 13.085938 6.300781 L 12.683594 9.726562 L 13.949219 10.195312 L 12.460938 11.152344 L 9.921875 10.496094 L 7.960938 14.425781 L 8.710938 14.816406 L 10.722656 12.292969 L 12.113281 13.085938 L 10.363281 14.945312 L 11.890625 18.558594 L 12.59375 18.304688 L 11.847656 15.546875 L 16.867188 11.632812 L 17.917969 12.34375 L 17.125 14.871094 L 17.726562 15.132812 L 19.28125 12.0625 L 16.453125 9.347656 L 13.898438 8.773438 L 13.902344 6.222656 Z M 13.085938 6.300781 "/>
|
|
5
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 7.464844 21.207031 L 21.148438 21.207031 L 21.148438 19.832031 L 7.464844 19.832031 Z M 7.464844 21.207031 "/>
|
|
6
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 16.488281 8.796875 C 17.175781 8.84375 17.769531 8.3125 17.816406 7.605469 C 17.867188 6.898438 17.351562 6.285156 16.664062 6.234375 C 15.980469 6.183594 15.382812 6.71875 15.335938 7.425781 C 15.289062 8.132812 15.804688 8.746094 16.488281 8.796875 "/>
|
|
7
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.5" d="m13.086 6.3-.402 3.427 1.265.468-1.488.957-2.54-.656-1.96 3.93.75.39 2.012-2.523 1.39.793-1.75 1.86 1.528 3.613.703-.254-.746-2.758 5.02-3.914 1.05.71-.793 2.528.602.262 1.554-3.07-2.828-2.715-2.555-.575.004-2.55ZM7.465 21.207h13.683v-1.375H7.465Zm0 0" paint-order="stroke"/>
|
|
3
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.5" d="M16.488 8.797c.688.047 1.282-.485 1.328-1.192.051-.707-.464-1.32-1.152-1.37-.684-.051-1.281.484-1.328 1.19-.047.708.469 1.321 1.152 1.372" paint-order="stroke"/>
|
|
8
4
|
</svg>
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<g id="surface1">
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;stroke-linecap: round;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 15.230469 12.722656 C 15.230469 12.722656 13.296875 17.964844 12.082031 19.179688 C 11.167969 20.09375 9.6875 20.09375 8.773438 19.179688 C 7.859375 18.265625 7.859375 16.785156 8.773438 15.871094 C 9.988281 14.65625 15.230469 12.722656 15.230469 12.722656 "/>
|
|
5
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;stroke-linecap: round;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 20.515625 13.808594 C 20.515625 13.808594 19.039062 17.808594 18.113281 18.734375 C 17.417969 19.433594 16.285156 19.433594 15.589844 18.734375 C 14.890625 18.039062 14.890625 16.910156 15.589844 16.210938 C 16.515625 15.285156 20.515625 13.808594 20.515625 13.808594 "/>
|
|
6
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;stroke-linecap: round;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 14.191406 7.464844 C 14.191406 7.464844 12.714844 11.46875 11.789062 12.394531 C 11.09375 13.089844 9.960938 13.089844 9.265625 12.394531 C 8.566406 11.695312 8.566406 10.566406 9.265625 9.867188 C 10.191406 8.945312 14.191406 7.464844 14.191406 7.464844 "/>
|
|
7
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="2.5" d="M15.23 12.723s-1.933 5.242-3.148 6.457a2.339 2.339 0 1 1-3.309-3.309c1.215-1.215 6.457-3.148 6.457-3.148m5.286 1.086s-1.477 4-2.403 4.925c-.695.7-1.828.7-2.523 0a1.78 1.78 0 0 1 0-2.523c.926-.926 4.926-2.402 4.926-2.402m-6.325-6.344s-1.476 4.004-2.402 4.93a1.785 1.785 0 1 1-2.523-2.527c.925-.923 4.925-2.403 4.925-2.403" paint-order="stroke"/>
|
|
8
3
|
</svg>
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<g id="surface1">
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 15.171875 9.5625 L 12.644531 15.875 L 14.515625 21.3125 L 16.925781 13.535156 L 17.933594 16.613281 L 21.136719 9.5625 Z M 15.171875 9.5625 "/>
|
|
5
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 7.464844 9.5625 L 10.863281 18.328125 L 14.371094 9.5625 Z M 7.464844 9.5625 "/>
|
|
6
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.5" d="m15.172 9.563-2.527 6.312 1.87 5.438 2.41-7.778 1.009 3.078 3.203-7.05Zm-7.707 0 3.398 8.765 3.508-8.765Zm0 0" paint-order="stroke"/>
|
|
7
3
|
</svg>
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<g id="surface1">
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;stroke-linecap: circle;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 11.855469 7.464844 L 9.839844 14.472656 L 13.371094 14.472656 L 11.375 23.023438 L 18.152344 11.910156 L 14.484375 11.910156 L 16.484375 7.464844 Z M 11.855469 7.464844 "/>
|
|
5
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-linecap="circle" stroke-width="2.5" d="M11.855 7.465 9.84 14.473h3.531l-1.996 8.55 6.777-11.113h-3.668l2-4.445Zm0 0" paint-order="stroke"/>
|
|
6
3
|
</svg>
|
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 18.332031 18.976562 C 17.078125 18.976562 16.421875 18.28125 15.898438 17.722656 C 15.429688 17.21875 15.058594 16.824219 14.296875 16.824219 C 13.535156 16.824219 13.164062 17.21875 12.691406 17.722656 C 12.167969 18.28125 11.515625 18.976562 10.257812 18.976562 C 9.003906 18.976562 8.351562 18.28125 7.824219 17.722656 C 7.355469 17.21875 6.984375 16.824219 6.222656 16.824219 L 6.222656 15.683594 C 7.476562 15.683594 8.132812 16.382812 8.65625 16.941406 C 9.125 17.441406 9.496094 17.839844 10.257812 17.839844 C 11.019531 17.839844 11.390625 17.441406 11.863281 16.941406 C 12.386719 16.382812 13.039062 15.683594 14.296875 15.683594 C 15.550781 15.683594 16.203125 16.382812 16.730469 16.941406 C 17.199219 17.441406 17.570312 17.839844 18.332031 17.839844 C 19.09375 17.839844 19.464844 17.441406 19.933594 16.941406 C 20.460938 16.382812 21.113281 15.683594 22.371094 15.683594 L 22.371094 16.824219 C 21.605469 16.824219 21.234375 17.21875 20.765625 17.722656 C 20.242188 18.28125 19.589844 18.976562 18.332031 18.976562 "/>
|
|
5
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 18.332031 16.261719 C 17.078125 16.261719 16.421875 15.566406 15.898438 15.007812 C 15.429688 14.503906 15.058594 14.109375 14.296875 14.109375 C 13.535156 14.109375 13.164062 14.503906 12.691406 15.007812 C 12.167969 15.566406 11.515625 16.261719 10.257812 16.261719 C 9.003906 16.261719 8.351562 15.566406 7.824219 15.007812 C 7.355469 14.503906 6.984375 14.109375 6.222656 14.109375 L 6.222656 12.972656 C 7.476562 12.972656 8.132812 13.667969 8.65625 14.226562 C 9.125 14.726562 9.496094 15.125 10.257812 15.125 C 11.019531 15.125 11.390625 14.726562 11.863281 14.226562 C 12.386719 13.667969 13.039062 12.972656 14.296875 12.972656 C 15.550781 12.972656 16.203125 13.667969 16.730469 14.226562 C 17.199219 14.726562 17.570312 15.125 18.332031 15.125 C 19.09375 15.125 19.464844 14.726562 19.933594 14.226562 C 20.460938 13.667969 21.113281 12.972656 22.371094 12.972656 L 22.371094 14.109375 C 21.605469 14.109375 21.234375 14.503906 20.765625 15.007812 C 20.242188 15.566406 19.589844 16.261719 18.332031 16.261719 "/>
|
|
6
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 18.332031 21.582031 C 17.078125 21.582031 16.421875 20.882812 15.898438 20.324219 C 15.429688 19.824219 15.058594 19.425781 14.296875 19.425781 C 13.535156 19.425781 13.164062 19.824219 12.691406 20.324219 C 12.167969 20.882812 11.515625 21.582031 10.257812 21.582031 C 9.003906 21.582031 8.351562 20.882812 7.824219 20.324219 C 7.355469 19.824219 6.984375 19.425781 6.222656 19.425781 L 6.222656 18.289062 C 7.476562 18.289062 8.132812 18.984375 8.65625 19.542969 C 9.125 20.046875 9.496094 20.441406 10.257812 20.441406 C 11.019531 20.441406 11.390625 20.046875 11.863281 19.542969 C 12.386719 18.984375 13.039062 18.289062 14.296875 18.289062 C 15.550781 18.289062 16.203125 18.984375 16.730469 19.542969 C 17.199219 20.046875 17.570312 20.441406 18.332031 20.441406 C 19.09375 20.441406 19.464844 20.046875 19.933594 19.542969 C 20.460938 18.984375 21.113281 18.289062 22.371094 18.289062 L 22.371094 19.425781 C 21.605469 19.425781 21.234375 19.824219 20.765625 20.324219 C 20.242188 20.882812 19.589844 21.582031 18.332031 21.582031 "/>
|
|
7
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 16.679688 9.792969 L 16.679688 12.566406 L 19.851562 12.566406 L 19.851562 9.792969 L 21.4375 9.792969 L 18.265625 6.222656 L 15.09375 9.792969 Z M 16.679688 9.792969 "/>
|
|
8
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.2" d="M18.332 18.977c-1.254 0-1.91-.696-2.434-1.254-.468-.504-.84-.899-1.601-.899-.762 0-1.133.395-1.606.899-.523.558-1.175 1.254-2.433 1.254-1.254 0-1.906-.696-2.434-1.254-.469-.504-.84-.899-1.601-.899v-1.14c1.254 0 1.91.699 2.433 1.257.469.5.84.899 1.602.899s1.133-.399 1.605-.899c.524-.558 1.176-1.257 2.434-1.257 1.254 0 1.906.699 2.433 1.257.47.5.84.899 1.602.899s1.133-.399 1.602-.899c.527-.558 1.18-1.257 2.437-1.257v1.14c-.766 0-1.137.395-1.605.899-.524.558-1.176 1.254-2.434 1.254" paint-order="stroke"/>
|
|
3
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.2" d="M18.332 16.262c-1.254 0-1.91-.696-2.434-1.254-.468-.504-.84-.899-1.601-.899-.762 0-1.133.395-1.606.899-.523.558-1.175 1.254-2.433 1.254-1.254 0-1.906-.696-2.434-1.254-.469-.504-.84-.899-1.601-.899v-1.136c1.254 0 1.91.695 2.433 1.254.469.5.84.898 1.602.898s1.133-.398 1.605-.898c.524-.559 1.176-1.254 2.434-1.254 1.254 0 1.906.695 2.433 1.254.47.5.84.898 1.602.898s1.133-.398 1.602-.898c.527-.559 1.18-1.254 2.437-1.254v1.136c-.766 0-1.137.395-1.605.899-.524.558-1.176 1.254-2.434 1.254m0 5.32c-1.254 0-1.91-.7-2.434-1.258-.468-.5-.84-.898-1.601-.898-.762 0-1.133.398-1.606.898-.523.559-1.175 1.258-2.433 1.258-1.254 0-1.906-.7-2.434-1.258-.469-.5-.84-.898-1.601-.898v-1.137c1.254 0 1.91.695 2.433 1.254.469.504.84.898 1.602.898s1.133-.394 1.605-.898c.524-.559 1.176-1.254 2.434-1.254 1.254 0 1.906.695 2.433 1.254.47.504.84.898 1.602.898s1.133-.394 1.602-.898c.527-.559 1.18-1.254 2.437-1.254v1.137c-.766 0-1.137.398-1.605.898-.524.559-1.176 1.258-2.434 1.258M16.68 9.793v2.773h3.172V9.793h1.585l-3.171-3.57-3.172 3.57Zm0 0" paint-order="stroke"/>
|
|
9
4
|
</svg>
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 18.390625 19.039062 C 17.128906 19.039062 16.472656 18.339844 15.945312 17.777344 C 15.472656 17.273438 15.101562 16.875 14.335938 16.875 C 13.570312 16.875 13.195312 17.273438 12.726562 17.777344 C 12.199219 18.339844 11.539062 19.039062 10.277344 19.039062 C 9.015625 19.039062 8.359375 18.339844 7.832031 17.777344 C 7.359375 17.273438 6.988281 16.875 6.222656 16.875 L 6.222656 15.730469 C 7.484375 15.730469 8.140625 16.433594 8.667969 16.996094 C 9.140625 17.496094 9.511719 17.894531 10.277344 17.894531 C 11.042969 17.894531 11.417969 17.496094 11.890625 16.996094 C 12.417969 16.433594 13.074219 15.730469 14.335938 15.730469 C 15.597656 15.730469 16.253906 16.433594 16.78125 16.996094 C 17.253906 17.496094 17.625 17.894531 18.390625 17.894531 C 19.160156 17.894531 19.53125 17.496094 20.003906 16.996094 C 20.53125 16.433594 21.1875 15.730469 22.449219 15.730469 L 22.449219 16.875 C 21.683594 16.875 21.308594 17.273438 20.839844 17.777344 C 20.3125 18.339844 19.65625 19.039062 18.390625 19.039062 "/>
|
|
5
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 18.390625 21.65625 C 17.128906 21.65625 16.472656 20.957031 15.945312 20.394531 C 15.472656 19.890625 15.101562 19.492188 14.335938 19.492188 C 13.570312 19.492188 13.195312 19.890625 12.726562 20.394531 C 12.199219 20.957031 11.539062 21.65625 10.277344 21.65625 C 9.015625 21.65625 8.359375 20.957031 7.832031 20.394531 C 7.359375 19.890625 6.988281 19.492188 6.222656 19.492188 L 6.222656 18.347656 C 7.484375 18.347656 8.140625 19.046875 8.667969 19.609375 C 9.140625 20.113281 9.511719 20.511719 10.277344 20.511719 C 11.042969 20.511719 11.417969 20.113281 11.890625 19.609375 C 12.417969 19.046875 13.074219 18.347656 14.335938 18.347656 C 15.597656 18.347656 16.253906 19.046875 16.78125 19.609375 C 17.253906 20.113281 17.625 20.511719 18.390625 20.511719 C 19.160156 20.511719 19.53125 20.113281 20.003906 19.609375 C 20.53125 19.046875 21.1875 18.347656 22.449219 18.347656 L 22.449219 19.492188 C 21.683594 19.492188 21.308594 19.890625 20.839844 20.394531 C 20.3125 20.957031 19.65625 21.65625 18.390625 21.65625 "/>
|
|
6
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 16.730469 9.011719 L 16.730469 6.222656 L 19.917969 6.222656 L 19.917969 9.011719 L 21.511719 9.011719 L 18.324219 12.597656 L 15.136719 9.011719 Z M 16.730469 9.011719 "/>
|
|
7
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.2" d="M18.39 19.04c-1.261 0-1.917-.7-2.445-1.263-.472-.504-.843-.902-1.61-.902-.765 0-1.14.398-1.608.902-.528.563-1.188 1.262-2.45 1.262-1.261 0-1.918-.7-2.445-1.262-.473-.504-.844-.902-1.61-.902V15.73c1.262 0 1.919.704 2.446 1.266.473.5.844.899 1.61.899.765 0 1.14-.399 1.613-.899.527-.562 1.183-1.266 2.445-1.266s1.918.704 2.445 1.266c.473.5.844.899 1.61.899.77 0 1.14-.399 1.613-.899.527-.562 1.183-1.266 2.445-1.266v1.145c-.765 0-1.14.398-1.61.902-.526.563-1.183 1.262-2.448 1.262" paint-order="stroke"/>
|
|
3
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.2" d="M18.39 21.656c-1.261 0-1.917-.699-2.445-1.261-.472-.504-.843-.903-1.61-.903-.765 0-1.14.399-1.608.903-.528.562-1.188 1.261-2.45 1.261-1.261 0-1.918-.699-2.445-1.261-.473-.504-.844-.903-1.61-.903v-1.144c1.262 0 1.919.699 2.446 1.261.473.504.844.903 1.61.903.765 0 1.14-.399 1.613-.903.527-.562 1.183-1.261 2.445-1.261s1.918.699 2.445 1.261c.473.504.844.903 1.61.903.77 0 1.14-.399 1.613-.903.527-.562 1.183-1.261 2.445-1.261v1.144c-.765 0-1.14.399-1.61.903-.526.562-1.183 1.261-2.448 1.261M16.73 9.012v-2.79h3.188v2.79h1.594l-3.188 3.586-3.187-3.586Zm0 0" paint-order="stroke"/>
|
|
8
4
|
</svg>
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 1.8px;stroke-linecap: round;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 15.227 12.785 C 15.227 11.605 16.184 10.648 17.363 10.648 C 17.867 10.648 18.73 11.129 18.738 11.133 C 18.746 11.137 18.742 11.137 18.738 11.133 C 18.656 10.753 18.527 10.391 18.359 10.053 C 18.212 9.756 18.034 9.478 17.83 9.223 C 17.438 8.734 16.949 8.327 16.39 8.033 C 15.752 7.697 15.024 7.508 14.246 7.508 C 13.426 7.508 12.66 7.723 11.992 8.094 C 7.359 10.262 8.133 18.645 8.145 19.93 L 21.762 19.93 C 19.66 18.359 15.227 15.254 15.227 12.785 Z"/>
|
|
6
|
-
</g>
|
|
7
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="1.8" d="M18.551 13.477c.785-.45.273-1.918.265-1.969a2.5 2.5 0 0 0-1.25-.352 2.38 2.38 0 0 0-1.867.907c1.035.785 2.391 1.679 2.852 1.414Z" paint-order="stroke"/>
|
|
3
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="1.8" d="M15.227 12.785c0-1.18.957-2.137 2.136-2.137.504 0 1.367.481 1.375.485s.004.004 0 0a4.61 4.61 0 0 0-2.348-3.1 4.6 4.6 0 0 0-2.144-.525c-.82 0-1.586.215-2.254.586-4.633 2.168-3.859 10.551-3.847 11.836h13.617c-2.102-1.571-6.535-4.676-6.535-7.145Z" paint-order="stroke"/>
|
|
4
|
+
</svg>
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<g transform-origin="14 14" transform="scale(0.85)">
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;paint-order: stroke;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d=" M 16.782 7.178 L 22.844 5.156 L 20.822 11.218 C 21.173 12.077 21.367 13.016 21.367 14 C 21.367 18.063 18.063 21.367 14 21.367 C 9.938 21.367 6.633 18.063 6.633 14 C 6.633 9.938 9.938 6.633 14 6.633 L 14 6.633 C 14.984 6.633 15.923 6.827 16.782 7.178 Z M 14 8.844 C 11.156 8.844 8.844 11.156 8.844 14 C 8.844 16.844 11.156 19.16 14 19.16 C 16.844 19.16 19.156 16.844 19.156 14 C 19.156 11.156 16.844 8.844 14 8.844 L 14 8.844 Z"/>
|
|
5
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill-rule="evenodd" stroke="#fff" stroke-width="2.125" d="m16.365 8.201 5.152-1.718L19.8 11.635c.298.73.463 1.529.463 2.365a6.27 6.27 0 0 1-6.262 6.262A6.27 6.27 0 0 1 7.738 14 6.27 6.27 0 0 1 14 7.738c.836 0 1.635.165 2.365.463ZM14 9.617A4.386 4.386 0 0 0 9.617 14 4.39 4.39 0 0 0 14 18.386 4.39 4.39 0 0 0 18.383 14 4.386 4.386 0 0 0 14 9.617Z" paint-order="stroke"/>
|
|
6
3
|
</svg>
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<g id="surface1">
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;stroke-linecap: square;paint-order: stroke;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" transform="translate(14, 14) scale(0.93) translate(-14, -14)" d="M 11.127030796064377 6.106581985398371 A 8.4 8.4 0 1 0 16.872969203935618 6.106581985398369 L 14 0 L 11.127030796064377 6.106581985398371" />
|
|
5
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path stroke="#fff" stroke-linecap="square" stroke-width="2.325" d="M11.328 6.66a7.812 7.812 0 1 0 5.344 0L14 .98l-2.672 5.68" paint-order="stroke"/>
|
|
6
3
|
</svg>
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<g id="surface1">
|
|
4
|
-
<path style="fill:rgb(255, 255, 255, 1.0);fill-opacity:1;" d="M 13.605469 18.632812 L 14.984375 18.632812 L 14.984375 14.984375 L 18.632812 14.984375 L 18.632812 13.605469 L 14.984375 13.605469 L 14.984375 9.957031 L 13.605469 9.957031 L 13.605469 13.605469 L 9.957031 13.605469 L 9.957031 14.984375 L 13.605469 14.984375 Z M 13.605469 18.632812 "/>
|
|
5
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="rgb(255,255,255,1)" d="M13.605 18.633h1.38v-3.649h3.648v-1.379h-3.649V9.957h-1.379v3.648H9.957v1.38h3.648Zm0 0"/>
|
|
6
3
|
</svg>
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<g id="surface1">
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;stroke-linecap: circle;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 11.96875 7.464844 L 9.957031 14.472656 L 13.484375 14.472656 L 11.488281 23.023438 L 18.265625 11.910156 L 14.601562 11.910156 L 16.597656 7.464844 Z M 11.96875 7.464844 "/>
|
|
5
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-linecap="circle" stroke-width="2.5" d="m11.969 7.465-2.012 7.008h3.527l-1.996 8.55 6.778-11.113h-3.664l1.996-4.445Zm0 0" paint-order="stroke"/>
|
|
6
3
|
</svg>
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<g>
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d=" M 10.047 21.57 C 10.07 21.438 10.105 21.289 10.156 21.133 C 10.23 20.902 10.336 20.648 10.461 20.379 C 10.586 20.113 10.73 19.832 10.883 19.543 C 11.035 19.25 11.191 18.953 11.348 18.645 C 11.5 18.336 11.648 18.023 11.777 17.699 C 11.906 17.379 12.012 17.051 12.086 16.73 C 12.156 16.41 12.195 16.094 12.199 15.801 C 12.203 15.512 12.172 15.246 12.125 15.02 C 12.082 14.793 12.02 14.602 11.961 14.453 C 11.945 14.414 11.934 14.379 11.918 14.348 C 11.906 14.313 11.891 14.281 11.879 14.25 C 11.863 14.223 11.852 14.195 11.84 14.168 C 11.832 14.148 11.82 14.129 11.813 14.113 C 11.773 14.047 11.758 14.008 11.758 14.008 L 11.32 14.152 C 11.32 14.152 11.324 14.191 11.332 14.27 C 11.332 14.289 11.336 14.313 11.34 14.336 C 11.34 14.355 11.34 14.383 11.34 14.406 C 11.34 14.434 11.344 14.461 11.344 14.492 C 11.344 14.52 11.344 14.555 11.344 14.586 C 11.34 14.723 11.328 14.887 11.297 15.063 C 11.262 15.242 11.207 15.434 11.121 15.629 C 11.039 15.824 10.922 16.023 10.785 16.223 C 10.641 16.422 10.473 16.617 10.281 16.816 C 10.09 17.012 9.875 17.211 9.645 17.41 C 9.414 17.609 9.172 17.813 8.918 18.027 C 8.664 18.238 8.406 18.461 8.148 18.703 C 7.887 18.945 7.629 19.203 7.383 19.492 C 7.137 19.777 6.906 20.098 6.707 20.445 C 6.508 20.793 6.34 21.168 6.23 21.547 C 6.227 21.555 6.223 21.563 6.223 21.57 L 10.047 21.57 Z M 16.883 21.57 C 16.902 21.457 16.934 21.332 16.977 21.195 C 17.039 21 17.129 20.785 17.234 20.559 C 17.34 20.332 17.465 20.094 17.594 19.844 C 17.723 19.598 17.859 19.344 17.988 19.082 C 18.117 18.82 18.246 18.551 18.352 18.277 C 18.461 18.008 18.551 17.727 18.617 17.453 C 18.676 17.18 18.711 16.914 18.715 16.664 C 18.715 16.418 18.691 16.191 18.652 16 C 18.613 15.805 18.563 15.645 18.512 15.516 C 18.5 15.484 18.488 15.457 18.477 15.426 C 18.461 15.398 18.449 15.371 18.441 15.344 C 18.43 15.32 18.418 15.297 18.41 15.277 C 18.398 15.258 18.391 15.242 18.383 15.227 C 18.352 15.172 18.336 15.141 18.336 15.141 L 17.965 15.262 C 17.965 15.262 17.969 15.297 17.977 15.359 C 17.977 15.379 17.98 15.395 17.98 15.418 C 17.98 15.434 17.98 15.457 17.984 15.477 C 17.984 15.5 17.984 15.523 17.984 15.551 C 17.984 15.574 17.984 15.602 17.984 15.633 C 17.984 15.746 17.973 15.883 17.945 16.035 C 17.918 16.188 17.871 16.352 17.797 16.516 C 17.727 16.684 17.629 16.855 17.508 17.023 C 17.387 17.191 17.246 17.359 17.082 17.527 C 16.918 17.695 16.734 17.863 16.539 18.031 C 16.344 18.203 16.137 18.375 15.922 18.555 C 15.707 18.738 15.488 18.926 15.266 19.133 C 15.047 19.336 14.828 19.559 14.617 19.801 C 14.41 20.047 14.211 20.32 14.043 20.613 C 13.871 20.91 13.73 21.227 13.637 21.551 C 13.633 21.559 13.633 21.563 13.629 21.57 L 16.883 21.57 Z"/>
|
|
5
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d=" M 11.798 8.412 L 13.203 5.891 C 13.297 5.719 13.516 5.602 13.715 5.602 L 13.715 5.602 C 13.742 5.602 13.766 5.602 13.793 5.605 L 18.887 6.508 C 19.102 6.547 19.309 6.754 19.344 6.973 L 19.805 9.829 L 20.641 9.977 C 20.859 10.016 20.992 10.223 20.938 10.438 L 20.207 13.289 C 20.152 13.504 19.93 13.648 19.715 13.609 L 19.254 13.527 L 19.121 14.273 C 19.082 14.492 18.875 14.637 18.656 14.602 L 17.895 14.465 C 17.676 14.426 17.531 14.215 17.566 14 L 17.699 13.254 L 15.59 12.883 C 15.375 12.844 15.184 12.809 15.168 12.809 C 15.152 12.805 14.961 12.77 14.742 12.73 L 12.637 12.359 L 12.504 13.102 C 12.469 13.32 12.258 13.469 12.039 13.43 L 11.277 13.297 C 11.059 13.258 10.914 13.047 10.953 12.828 L 11.082 12.086 L 10.621 12.004 C 10.402 11.965 10.242 11.754 10.266 11.531 L 10.555 8.602 C 10.578 8.379 10.773 8.23 10.992 8.27 L 11.798 8.412 Z M 18.589 9.614 L 18.262 7.582 L 14.012 6.832 L 14.012 6.832 L 13.011 8.627 L 18.589 9.614 Z"/>
|
|
6
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.2" d="M10.047 21.57c.023-.132.058-.281.109-.437.074-.231.18-.485.305-.754.125-.266.269-.547.422-.836q.229-.438.465-.898c.152-.309.3-.622.429-.946.129-.32.235-.648.309-.969.07-.32.109-.636.113-.929a3.6 3.6 0 0 0-.074-.781 3 3 0 0 0-.164-.567c-.016-.039-.027-.074-.043-.105l-.039-.098q-.022-.041-.039-.082c-.008-.02-.02-.039-.027-.055a1 1 0 0 1-.055-.105l-.438.144.02.184v.07l.004.086v.094a3 3 0 0 1-.047.477c-.035.179-.09.371-.176.566a3.4 3.4 0 0 1-.336.594 5.5 5.5 0 0 1-.504.593c-.191.196-.406.395-.636.594q-.346.297-.727.617a17 17 0 0 0-.77.676c-.261.242-.519.5-.765.789a6 6 0 0 0-.676.953 5 5 0 0 0-.477 1.102q-.006.012-.007.023zm6.836 0a3 3 0 0 1 .094-.375c.062-.195.152-.41.257-.636s.231-.465.36-.715c.129-.246.265-.5.394-.762s.258-.531.364-.805c.109-.269.199-.55.265-.824.059-.273.094-.539.098-.789 0-.246-.024-.473-.063-.664a3 3 0 0 0-.14-.484l-.035-.09a.4.4 0 0 1-.036-.082l-.031-.067-.027-.05-.047-.086-.371.121.012.097c0 .02.003.036.003.059 0 .016 0 .039.004.059v.156a2.25 2.25 0 0 1-.187.883q-.106.253-.289.507a4.4 4.4 0 0 1-.426.504 9 9 0 0 1-.543.504q-.294.256-.617.524a19 19 0 0 0-.656.578 9 9 0 0 0-.649.668 5.6 5.6 0 0 0-.574.812 4.2 4.2 0 0 0-.406.938l-.008.019zM11.798 8.412l1.405-2.521a.61.61 0 0 1 .512-.289q.039 0 .078.003l5.094.903a.6.6 0 0 1 .457.465l.461 2.856.836.148a.37.37 0 0 1 .297.461l-.731 2.851a.44.44 0 0 1-.492.32l-.461-.082-.133.746a.406.406 0 0 1-.465.329l-.761-.137a.41.41 0 0 1-.329-.465l.133-.746-2.109-.371c-.215-.039-.406-.074-.422-.074l-.426-.079-2.105-.371-.133.743a.4.4 0 0 1-.465.328l-.762-.133a.404.404 0 0 1-.324-.469l.129-.742-.461-.082a.44.44 0 0 1-.355-.473l.289-2.929a.37.37 0 0 1 .437-.332zm6.791 1.202-.327-2.032-4.25-.75-1.001 1.795z" paint-order="stroke"/>
|
|
7
3
|
</svg>
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<g id="surface1">
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 17.304688 18.0625 L 14.386719 9.996094 L 16.171875 9.996094 L 18.238281 15.964844 L 20.238281 9.996094 L 21.988281 9.996094 L 19.0625 18.0625 Z M 17.304688 18.0625 "/>
|
|
5
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.2px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 7.464844 9.996094 L 9.117188 9.996094 L 9.117188 14.363281 C 9.117188 15.054688 9.136719 15.503906 9.175781 15.710938 C 9.246094 16.042969 9.414062 16.304688 9.679688 16.507812 C 9.945312 16.707031 10.308594 16.804688 10.769531 16.804688 C 11.238281 16.804688 11.589844 16.710938 11.828125 16.523438 C 12.066406 16.332031 12.207031 16.101562 12.257812 15.828125 C 12.304688 15.550781 12.328125 15.09375 12.328125 14.457031 L 12.328125 9.996094 L 13.976562 9.996094 L 13.976562 14.230469 C 13.976562 15.199219 13.933594 15.882812 13.84375 16.285156 C 13.753906 16.683594 13.589844 17.019531 13.351562 17.296875 C 13.113281 17.570312 12.792969 17.789062 12.390625 17.953125 C 11.988281 18.117188 11.464844 18.199219 10.820312 18.199219 C 10.039062 18.199219 9.449219 18.109375 9.046875 17.929688 C 8.644531 17.753906 8.324219 17.523438 8.089844 17.238281 C 7.855469 16.953125 7.703125 16.65625 7.628906 16.34375 C 7.519531 15.882812 7.464844 15.199219 7.464844 14.296875 Z M 7.464844 9.996094 "/>
|
|
6
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.2" d="m17.305 18.063-2.918-8.067h1.785l2.066 5.969 2-5.969h1.75l-2.925 8.067Zm-9.84-8.067h1.652v4.367q0 1.037.059 1.348c.07.332.238.594.504.797q.398.298 1.09.297.701 0 1.058-.282.355-.285.43-.695.07-.415.07-1.371v-4.46h1.649v4.233q.001 1.454-.133 2.055-.135.598-.492 1.012-.358.41-.961.656-.604.246-1.57.246-1.172 0-1.774-.27-.604-.263-.957-.69a2.2 2.2 0 0 1-.461-.895q-.165-.693-.164-2.047Zm0 0" paint-order="stroke"/>
|
|
7
3
|
</svg>
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
<g id="surface1">
|
|
4
|
-
<path style="stroke:rgba(255, 255, 255, 1.0);stroke-width: 2.5px;paint-order: stroke;fill-rule:evenodd;fill:rgb(13.333333%,12.156863%,12.54902%);fill-opacity:1;" d="M 12.140625 9.332031 L 6.84375 14.039062 L 12.140625 18.746094 L 12.140625 16.394531 L 20.535156 16.394531 L 20.535156 11.6875 L 12.140625 11.6875 Z M 12.140625 9.332031 "/>
|
|
5
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28">
|
|
2
|
+
<path fill="#221f20" fill-rule="evenodd" stroke="#fff" stroke-width="2.5" d="m12.14 9.332-5.296 4.707 5.297 4.707v-2.351h8.394v-4.707h-8.394Zm0 0" paint-order="stroke"/>
|
|
6
3
|
</svg>
|
|
@@ -2,16 +2,29 @@
|
|
|
2
2
|
<div
|
|
3
3
|
id="fmi-warnings"
|
|
4
4
|
:class="theme"
|
|
5
|
-
:data-smartmet-alert-client-version="version"
|
|
6
|
-
|
|
5
|
+
:data-smartmet-alert-client-version="version"
|
|
6
|
+
>
|
|
7
|
+
<div
|
|
8
|
+
id="fmi-warnings-errors"
|
|
9
|
+
:class="errors"
|
|
10
|
+
/>
|
|
7
11
|
<div>
|
|
8
|
-
<div
|
|
12
|
+
<div
|
|
13
|
+
class="container-fluid"
|
|
14
|
+
:class="theme"
|
|
15
|
+
>
|
|
9
16
|
<div class="row">
|
|
10
17
|
<div class="col-12 col-md-8 col-lg-8 col-xl-8 day-region-views">
|
|
11
|
-
<h2
|
|
18
|
+
<h2
|
|
19
|
+
v-if="!loading"
|
|
20
|
+
class="valid-warnings"
|
|
21
|
+
>
|
|
12
22
|
{{ validWarningsText }}
|
|
13
23
|
</h2>
|
|
14
|
-
<div
|
|
24
|
+
<div
|
|
25
|
+
v-if="loading"
|
|
26
|
+
class="not-ready"
|
|
27
|
+
>
|
|
15
28
|
<p>
|
|
16
29
|
{{ mainInfoText }}
|
|
17
30
|
{{ additionalInfoText }}
|
|
@@ -20,9 +33,9 @@
|
|
|
20
33
|
:href="supportedBrowsersLink"
|
|
21
34
|
target="_blank"
|
|
22
35
|
rel="noopener noreferrer"
|
|
23
|
-
class="supported-browsers"
|
|
24
|
-
{{ supportedBrowsers }}</a
|
|
36
|
+
class="supported-browsers"
|
|
25
37
|
>
|
|
38
|
+
{{ supportedBrowsers }}</a>
|
|
26
39
|
</div>
|
|
27
40
|
<div v-if="regionListEnabled">
|
|
28
41
|
<a
|
|
@@ -32,9 +45,11 @@
|
|
|
32
45
|
tabindex="0"
|
|
33
46
|
class="visually-hidden-focusable focus-ring"
|
|
34
47
|
@click="toContentClicked"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
48
|
+
>{{ toContentText }}</a>
|
|
49
|
+
<div
|
|
50
|
+
v-else
|
|
51
|
+
:aria-label="noWarningsText"
|
|
52
|
+
></div>
|
|
38
53
|
</div>
|
|
39
54
|
<Days
|
|
40
55
|
:input="days"
|
|
@@ -49,8 +64,9 @@
|
|
|
49
64
|
:theme="theme"
|
|
50
65
|
:language="language"
|
|
51
66
|
:spinner-enabled="spinnerEnabled"
|
|
52
|
-
@
|
|
53
|
-
@loaded="onLoaded"
|
|
67
|
+
@day-selected="onDaySelected"
|
|
68
|
+
@loaded="onLoaded"
|
|
69
|
+
/>
|
|
54
70
|
</div>
|
|
55
71
|
<div class="col-12 col-md-4 col-lg-4 col-xl-4 symbol-list">
|
|
56
72
|
<Legend
|
|
@@ -60,11 +76,15 @@
|
|
|
60
76
|
:gray-scale-selector="grayScaleSelector"
|
|
61
77
|
:theme="theme"
|
|
62
78
|
:language="language"
|
|
63
|
-
@
|
|
64
|
-
@
|
|
79
|
+
@theme-changed="onThemeChanged"
|
|
80
|
+
@warnings-toggled="onWarningsToggled"
|
|
81
|
+
/>
|
|
65
82
|
</div>
|
|
66
83
|
</div>
|
|
67
|
-
<div
|
|
84
|
+
<div
|
|
85
|
+
v-if="regionListEnabled"
|
|
86
|
+
class="row"
|
|
87
|
+
>
|
|
68
88
|
<div class="col-12 col-md-8 col-lg-8 col-xl-8 day-region-views">
|
|
69
89
|
<Regions
|
|
70
90
|
:input="regions"
|
|
@@ -73,7 +93,8 @@
|
|
|
73
93
|
:parents="parents"
|
|
74
94
|
:geometry-id="geometryId"
|
|
75
95
|
:theme="theme"
|
|
76
|
-
:language="language"
|
|
96
|
+
:language="language"
|
|
97
|
+
/>
|
|
77
98
|
</div>
|
|
78
99
|
<div class="col-12 col-md-4 col-lg-4 col-xl-4 symbol-list"></div>
|
|
79
100
|
</div>
|
|
@@ -128,7 +149,7 @@ export default {
|
|
|
128
149
|
},
|
|
129
150
|
geometryId: {
|
|
130
151
|
type: Number,
|
|
131
|
-
default: config.props.defaultGeometryId,
|
|
152
|
+
default: Number(config.props.defaultGeometryId),
|
|
132
153
|
},
|
|
133
154
|
language: {
|
|
134
155
|
type: String,
|
|
@@ -140,7 +161,7 @@ export default {
|
|
|
140
161
|
},
|
|
141
162
|
loading: {
|
|
142
163
|
type: Number,
|
|
143
|
-
default:
|
|
164
|
+
default: 1,
|
|
144
165
|
},
|
|
145
166
|
sleep: {
|
|
146
167
|
type: Boolean,
|
|
@@ -251,7 +272,7 @@ export default {
|
|
|
251
272
|
)
|
|
252
273
|
}
|
|
253
274
|
},
|
|
254
|
-
|
|
275
|
+
beforeUnmount() {
|
|
255
276
|
if (this.isClientSide()) {
|
|
256
277
|
document.removeEventListener('visibilitychange', this.visibilityListener)
|
|
257
278
|
}
|
|
@@ -401,6 +422,7 @@ div#fmi-warnings {
|
|
|
401
422
|
h2.valid-warnings {
|
|
402
423
|
text-align: left;
|
|
403
424
|
font-weight: bold;
|
|
425
|
+
margin-top: 0;
|
|
404
426
|
margin-bottom: 3px;
|
|
405
427
|
}
|
|
406
428
|
|