umap-project 2.4.0b1__py3-none-any.whl → 2.4.1__py3-none-any.whl

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.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (53) hide show
  1. umap/__init__.py +1 -1
  2. umap/locale/en/LC_MESSAGES/django.po +11 -11
  3. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/fr/LC_MESSAGES/django.po +12 -11
  5. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/pt/LC_MESSAGES/django.po +87 -37
  7. umap/static/umap/base.css +20 -28
  8. umap/static/umap/css/importers.css +8 -1
  9. umap/static/umap/css/panel.css +0 -1
  10. umap/static/umap/img/16-white.svg +1 -3
  11. umap/static/umap/img/source/16-white.svg +2 -4
  12. umap/static/umap/js/modules/browser.js +5 -5
  13. umap/static/umap/js/modules/caption.js +1 -1
  14. umap/static/umap/js/modules/importer.js +20 -9
  15. umap/static/umap/js/modules/importers/datasets.js +1 -0
  16. umap/static/umap/js/modules/utils.js +3 -3
  17. umap/static/umap/js/umap.features.js +11 -3
  18. umap/static/umap/js/umap.js +47 -48
  19. umap/static/umap/js/umap.layer.js +11 -1
  20. umap/static/umap/js/umap.popup.js +1 -1
  21. umap/static/umap/locale/en.js +2 -1
  22. umap/static/umap/locale/en.json +2 -1
  23. umap/static/umap/locale/es.js +9 -8
  24. umap/static/umap/locale/es.json +9 -8
  25. umap/static/umap/locale/fr.js +16 -15
  26. umap/static/umap/locale/fr.json +16 -15
  27. umap/static/umap/locale/pt.js +61 -60
  28. umap/static/umap/locale/pt.json +61 -60
  29. umap/static/umap/map.css +14 -13
  30. umap/static/umap/unittests/utils.js +5 -5
  31. umap/static/umap/vars.css +2 -1
  32. umap/static/umap/vendors/dompurify/purify.es.js +59 -5
  33. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  34. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +2 -2
  35. umap/tests/integration/test_browser.py +76 -3
  36. umap/tests/integration/test_edit_polygon.py +11 -0
  37. umap/tests/integration/test_import.py +47 -0
  38. umap/tests/integration/test_map.py +29 -0
  39. umap/tests/integration/test_view_marker.py +2 -2
  40. {umap_project-2.4.0b1.dist-info → umap_project-2.4.1.dist-info}/METADATA +5 -5
  41. {umap_project-2.4.0b1.dist-info → umap_project-2.4.1.dist-info}/RECORD +44 -53
  42. {umap_project-2.4.0b1.dist-info → umap_project-2.4.1.dist-info}/WHEEL +1 -1
  43. umap/.DS_Store +0 -0
  44. umap/static/.DS_Store +0 -0
  45. umap/static/umap/.DS_Store +0 -0
  46. umap/static/umap/favicons/.DS_Store +0 -0
  47. umap/static/umap/fonts/.DS_Store +0 -0
  48. umap/static/umap/img/.DS_Store +0 -0
  49. umap/static/umap/img/source/.DS_Store +0 -0
  50. umap/tests/.DS_Store +0 -0
  51. umap/tests/integration/.DS_Store +0 -0
  52. {umap_project-2.4.0b1.dist-info → umap_project-2.4.1.dist-info}/entry_points.txt +0 -0
  53. {umap_project-2.4.0b1.dist-info → umap_project-2.4.1.dist-info}/licenses/LICENSE +0 -0
@@ -61,8 +61,8 @@ L.FormBuilder = L.Evented.extend({
61
61
  getter: function (field) {
62
62
  var path = field.split('.'),
63
63
  value = this.obj;
64
- for (var i = 0, l = path.length; i < l; i++) {
65
- value = value[path[i]];
64
+ for (const prop of path) {
65
+ value = value[prop];
66
66
  }
67
67
  return value;
68
68
  },
@@ -15,12 +15,16 @@ DATALAYER_DATA = {
15
15
  "features": [
16
16
  {
17
17
  "type": "Feature",
18
- "properties": {"name": "one point in france", "foo": "point"},
18
+ "properties": {"name": "one point in france", "foo": "point", "bar": "one"},
19
19
  "geometry": {"type": "Point", "coordinates": [3.339844, 46.920255]},
20
20
  },
21
21
  {
22
22
  "type": "Feature",
23
- "properties": {"name": "one polygon in greenland", "foo": "polygon"},
23
+ "properties": {
24
+ "name": "one polygon in greenland",
25
+ "foo": "polygon",
26
+ "bar": "two",
27
+ },
24
28
  "geometry": {
25
29
  "type": "Polygon",
26
30
  "coordinates": [
@@ -36,7 +40,11 @@ DATALAYER_DATA = {
36
40
  },
37
41
  {
38
42
  "type": "Feature",
39
- "properties": {"name": "one line in new zeland", "foo": "line"},
43
+ "properties": {
44
+ "name": "one line in new zeland",
45
+ "foo": "line",
46
+ "bar": "three",
47
+ },
40
48
  "geometry": {
41
49
  "type": "LineString",
42
50
  "coordinates": [
@@ -103,6 +111,71 @@ def test_data_browser_should_be_filterable(live_server, page, bootstrap, map):
103
111
  expect(paths).to_have_count(0)
104
112
 
105
113
 
114
+ def test_filter_uses_layer_setting_if_any(live_server, page, bootstrap, map):
115
+ datalayer = map.datalayer_set.first()
116
+ datalayer.settings["labelKey"] = "foo"
117
+ datalayer.save()
118
+ page.goto(f"{live_server.url}{map.get_absolute_url()}")
119
+ expect(page.get_by_title("Features in this layer: 3")).to_be_visible()
120
+ markers = page.locator(".leaflet-marker-icon")
121
+ paths = page.locator(".leaflet-overlay-pane path")
122
+ expect(markers).to_have_count(1)
123
+ expect(paths).to_have_count(2)
124
+ expect(page.get_by_text("point")).to_be_visible()
125
+ expect(page.get_by_text("polygon")).to_be_visible()
126
+ expect(page.get_by_text("line")).to_be_visible()
127
+ page.locator(".filters summary").click()
128
+ filter_ = page.locator("input[name='filter']")
129
+ expect(filter_).to_be_visible()
130
+ filter_.type("po")
131
+ expect(page.get_by_title("Features in this layer: 2/3")).to_be_visible()
132
+ expect(page.get_by_title("Features in this layer: 2/3")).to_have_text("(2/3)")
133
+ expect(page.get_by_text("line")).to_be_hidden()
134
+ expect(page.get_by_text("point")).to_be_visible()
135
+ expect(page.get_by_text("polygon")).to_be_visible()
136
+ expect(markers).to_have_count(1)
137
+ expect(paths).to_have_count(1) # Only polygon
138
+ # Empty the filter
139
+ filter_.fill("")
140
+ filter_.blur()
141
+ expect(markers).to_have_count(1)
142
+ expect(paths).to_have_count(2)
143
+ filter_.type("point")
144
+ expect(page.get_by_text("point")).to_be_visible()
145
+ expect(page.get_by_text("line")).to_be_hidden()
146
+ expect(page.get_by_text("polygon")).to_be_hidden()
147
+ expect(markers).to_have_count(1)
148
+ expect(paths).to_have_count(0)
149
+
150
+
151
+ def test_filter_works_with_variable_in_labelKey(live_server, page, map):
152
+ map.settings["properties"]["onLoadPanel"] = "databrowser"
153
+ map.save()
154
+ data = deepcopy(DATALAYER_DATA)
155
+ data["_umap_options"]["labelKey"] = "{name} ({bar})"
156
+ DataLayerFactory(map=map, data=data)
157
+ page.goto(f"{live_server.url}{map.get_absolute_url()}")
158
+ expect(page.get_by_title("Features in this layer: 3")).to_be_visible()
159
+ markers = page.locator(".leaflet-marker-icon")
160
+ paths = page.locator(".leaflet-overlay-pane path")
161
+ expect(markers).to_have_count(1)
162
+ expect(paths).to_have_count(2)
163
+ expect(page.get_by_text("one point in france (one)")).to_be_visible()
164
+ expect(page.get_by_text("one line in new zeland (three)")).to_be_visible()
165
+ expect(page.get_by_text("one polygon in greenland (two)")).to_be_visible()
166
+ page.locator(".filters summary").click()
167
+ filter_ = page.locator("input[name='filter']")
168
+ expect(filter_).to_be_visible()
169
+ filter_.type("two")
170
+ expect(page.get_by_title("Features in this layer: 1/3")).to_be_visible()
171
+ expect(page.get_by_title("Features in this layer: 1/3")).to_have_text("(1/3)")
172
+ expect(page.get_by_text("one polygon in greenland (two)")).to_be_visible()
173
+ expect(page.get_by_text("one line in new zeland (three)")).to_be_hidden()
174
+ expect(page.get_by_text("one point in france (one)")).to_be_hidden()
175
+ expect(markers).to_have_count(0)
176
+ expect(paths).to_have_count(1) # Only polygon
177
+
178
+
106
179
  def test_data_browser_can_show_only_visible_features(live_server, page, bootstrap, map):
107
180
  # Zoom on France
108
181
  page.goto(f"{live_server.url}{map.get_absolute_url()}#6/51.000/2.000")
@@ -120,3 +120,14 @@ def test_should_reset_style_on_cancel(live_server, openmap, page, bootstrap):
120
120
  page.once("dialog", lambda dialog: dialog.accept())
121
121
  page.get_by_role("button", name="Cancel edits").click()
122
122
  expect(page.locator(".leaflet-overlay-pane path[fill='DarkBlue']")).to_have_count(1)
123
+
124
+
125
+ def test_can_change_datalayer(live_server, openmap, page, bootstrap):
126
+ other = DataLayerFactory(
127
+ name="Layer 2", map=openmap, settings={"color": "GoldenRod"}
128
+ )
129
+ page.goto(f"{live_server.url}{openmap.get_absolute_url()}?edit")
130
+ expect(page.locator("path[fill='DarkBlue']")).to_have_count(1)
131
+ page.locator("path").click(modifiers=["Shift"])
132
+ page.get_by_role("combobox").select_option(other.name)
133
+ expect(page.locator("path[fill='GoldenRod']")).to_have_count(1)
@@ -538,3 +538,50 @@ def test_overpass_import_with_bbox(page, live_server, tilelayer, settings):
538
538
  expect(page.get_by_placeholder("Provide an URL here")).to_have_value(
539
539
  "https://my.overpass.io/interpreter?data=[out:json];nwr[building]({south},{west},{north},{east});out geom;"
540
540
  )
541
+
542
+
543
+ def test_import_from_datasets(page, live_server, tilelayer, settings):
544
+ settings.UMAP_IMPORTERS = {
545
+ "datasets": {
546
+ "choices": [
547
+ {
548
+ "url": "https://remote.org/data.json",
549
+ "label": "Good data",
550
+ "format": "geojson",
551
+ }
552
+ ]
553
+ }
554
+ }
555
+
556
+ def handle(route):
557
+ route.fulfill(
558
+ json={
559
+ "type": "FeatureCollection",
560
+ "features": [
561
+ {
562
+ "type": "Feature",
563
+ "properties": {},
564
+ "geometry": {
565
+ "type": "Point",
566
+ "coordinates": [4.3375, 51.2707],
567
+ },
568
+ }
569
+ ],
570
+ }
571
+ )
572
+
573
+ # Intercept the route
574
+ page.route("https://remote.org/data.json", handle)
575
+ page.goto(f"{live_server.url}/map/new/")
576
+ expect(page.locator(".leaflet-marker-icon")).to_be_hidden()
577
+ page.get_by_role("link", name="Import data (Ctrl+I)").click()
578
+ page.get_by_role("button", name="Datasets").click()
579
+ page.get_by_role("dialog").get_by_role("combobox").select_option(
580
+ "https://remote.org/data.json"
581
+ )
582
+ page.get_by_role("button", name="Choose this dataset").click()
583
+ page.get_by_label("Copy into the layer").check()
584
+ page.get_by_role("button", name="Import data").click()
585
+ expect(page.locator(".leaflet-marker-icon")).to_be_visible()
586
+ page.get_by_role("button", name="Open browser").click()
587
+ expect(page.locator("h5").get_by_text("Good data")).to_be_visible()
@@ -204,3 +204,32 @@ def test_zoom_control_on_load(map, live_server, page):
204
204
  map.save()
205
205
  page.goto(f"{live_server.url}{map.get_absolute_url()}")
206
206
  expect(page.locator(".leaflet-control-zoom")).to_be_hidden()
207
+
208
+
209
+ def test_feature_in_query_string_has_precedence_over_onloadpanel(
210
+ map, live_server, page
211
+ ):
212
+ map.settings["properties"]["onLoadPanel"] = "caption"
213
+ map.name = "This is my map"
214
+ map.save()
215
+ data = {
216
+ "type": "FeatureCollection",
217
+ "features": [
218
+ {
219
+ "type": "Feature",
220
+ "properties": {"name": "FooBar"},
221
+ "geometry": {
222
+ "type": "Point",
223
+ "coordinates": [2.12, 49.57],
224
+ },
225
+ }
226
+ ],
227
+ "_umap_options": {"popupShape": "Panel"},
228
+ }
229
+ DataLayerFactory(map=map, data=data)
230
+ page.goto(f"{live_server.url}{map.get_absolute_url()}?feature=FooBar")
231
+ expect(page.get_by_role("heading", name="FooBar")).to_be_visible()
232
+ expect(page.get_by_role("heading", name="This is my map")).to_be_hidden()
233
+ page.goto(f"{live_server.url}{map.get_absolute_url()}")
234
+ expect(page.get_by_role("heading", name="FooBar")).to_be_hidden()
235
+ expect(page.get_by_role("heading", name="This is my map")).to_be_visible()
@@ -39,8 +39,8 @@ def test_should_open_popup_on_click(live_server, map, page, bootstrap):
39
39
  expect(page.locator(".leaflet-popup-content-wrapper")).to_be_visible()
40
40
  expect(page.get_by_role("heading", name="test marker")).to_be_visible()
41
41
  expect(page.get_by_text("Some description")).to_be_visible()
42
- # Close popup
43
- page.locator("#map").click()
42
+ # Close popup, clicking on the map, but outside of the popup.
43
+ page.locator("#map").click(position={"x": 50, "y": 50})
44
44
  expect(page.locator(".umap-icon-active")).to_be_hidden()
45
45
 
46
46
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: umap-project
3
- Version: 2.4.0b1
3
+ Version: 2.4.1
4
4
  Summary: Create maps with OpenStreetMap layers in a minute and embed them in your site.
5
5
  Author-email: Yohan Boniface <yb@enix.org>
6
6
  Maintainer-email: David Larlet <david@larlet.fr>
@@ -22,7 +22,7 @@ Requires-Dist: django-probes==1.7.0
22
22
  Requires-Dist: django==5.0.6
23
23
  Requires-Dist: pillow==10.3.0
24
24
  Requires-Dist: psycopg==3.1.19
25
- Requires-Dist: pydantic==2.7.3
25
+ Requires-Dist: pydantic==2.7.4
26
26
  Requires-Dist: rcssmin==1.1.2
27
27
  Requires-Dist: requests==2.32.3
28
28
  Requires-Dist: rjsmin==1.2.2
@@ -33,11 +33,11 @@ Provides-Extra: dev
33
33
  Requires-Dist: djlint==1.34.1; extra == 'dev'
34
34
  Requires-Dist: hatch==1.12.0; extra == 'dev'
35
35
  Requires-Dist: isort==5.13.2; extra == 'dev'
36
- Requires-Dist: mkdocs-material==9.5.26; extra == 'dev'
36
+ Requires-Dist: mkdocs-material==9.5.27; extra == 'dev'
37
37
  Requires-Dist: mkdocs-static-i18n==1.2.3; extra == 'dev'
38
38
  Requires-Dist: mkdocs==1.6.0; extra == 'dev'
39
39
  Requires-Dist: pymdown-extensions==10.8.1; extra == 'dev'
40
- Requires-Dist: ruff==0.4.8; extra == 'dev'
40
+ Requires-Dist: ruff==0.4.9; extra == 'dev'
41
41
  Requires-Dist: vermin==1.6.0; extra == 'dev'
42
42
  Provides-Extra: docker
43
43
  Requires-Dist: uwsgi==2.0.26; extra == 'docker'
@@ -1,5 +1,4 @@
1
- umap/.DS_Store,sha256=B4-anBIm7kFQicJnbjnO-JSfRpv0HVyvhdun5qug0zM,6148
2
- umap/__init__.py,sha256=xbIuSa3jWXV1nXp8BdijnVJ5W7sRppyos9mnJ3cEwUo,20
1
+ umap/__init__.py,sha256=liW7GDwlfGm-Uu-jpwWCKTecLBA0kLmrtuKKxLK2dH8,18
3
2
  umap/admin.py,sha256=gL6zrexmDbIKIqOKHCuAM5wtqr8FIQkRtjbcXcNyBrs,749
4
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
5
4
  umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
@@ -38,7 +37,7 @@ umap/locale/de/LC_MESSAGES/django.po,sha256=vkpO7hxsY8C6tGyHNBMgfWRKwNxGs-IZ_BFs
38
37
  umap/locale/el/LC_MESSAGES/django.mo,sha256=sQhmIyKMdxrBssH9Yu7pt3QjvYEtvqxk0_BiarpCKaI,12429
39
38
  umap/locale/el/LC_MESSAGES/django.po,sha256=yI6iHoWce4H3reQNrbrE2cQFCZ8d1zlMP2y9iGA_8TM,17815
40
39
  umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
41
- umap/locale/en/LC_MESSAGES/django.po,sha256=n7NOlv9fcXMx95Qiycd73EUojTrPvfd5o4vjRDgqByk,12075
40
+ umap/locale/en/LC_MESSAGES/django.po,sha256=6z8O69PmOB7cM2gdObZuzLLGQvzvpHM15sTxOZ5jyuY,12075
42
41
  umap/locale/es/LC_MESSAGES/django.mo,sha256=JmXqbBXhl11fQCibH1MHU64AFsCp_pEbv8AiA94zL08,9034
43
42
  umap/locale/es/LC_MESSAGES/django.po,sha256=JqoNWltQ-vJNgunikXgRcuy90O7t8zROQ5NPlc8rYN4,14596
44
43
  umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
@@ -49,8 +48,8 @@ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=LcU15SxGd21_jDyaZoH2DIQbrD1GqcUHM
49
48
  umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=ASiA2CeduaQzb6TwyWbm-rCi2wN29PV_VnhOn0ifxeg,14688
50
49
  umap/locale/fi/LC_MESSAGES/django.mo,sha256=-p9kvtfjdJKrbSMEfpdvoZ6jEX_njf-0uqzlvydbhOo,4856
51
50
  umap/locale/fi/LC_MESSAGES/django.po,sha256=Saq5PpycYhmutr6CWPQNYI4UwQbSdxrCWxapwotaB3c,12823
52
- umap/locale/fr/LC_MESSAGES/django.mo,sha256=n3UJhFF9fr9kSGCl9PeBppx-asz54nMppW-Uo8m2ARw,11387
53
- umap/locale/fr/LC_MESSAGES/django.po,sha256=aQDUujCDbw_-x11jjcmneoOjmuI7ezKYaYey5KSF0WI,17042
51
+ umap/locale/fr/LC_MESSAGES/django.mo,sha256=O1iKAw-p_C72yo0os9B4_AQEGP8Rlqb2shuHiU213V8,11362
52
+ umap/locale/fr/LC_MESSAGES/django.po,sha256=ewfJRRsQVEq_5GP_KlX_Ljb95QicENwmp1V0gpbSEqs,17056
54
53
  umap/locale/gl/LC_MESSAGES/django.mo,sha256=-p9_T_4C3ns1Sc1iG7zfCUstFsGX_aaxzeLwD8d8Uho,6253
55
54
  umap/locale/gl/LC_MESSAGES/django.po,sha256=w5yCwKMsmFJ7Tk-y4p2a8oOaYkyYi_aLNnWpbw04M2M,13210
56
55
  umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMjHkvLsRo,6944
@@ -79,8 +78,8 @@ umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk
79
78
  umap/locale/no/LC_MESSAGES/django.po,sha256=HXr3Y_gxOPjdU1pSV_tyX_l7pbDMVrFBdf0gm3gciwI,7998
80
79
  umap/locale/pl/LC_MESSAGES/django.mo,sha256=gianKLgTIpQVm_eix8KUAIJE2y3hRlb2jlZGGSrZSPA,9457
81
80
  umap/locale/pl/LC_MESSAGES/django.po,sha256=EuvkgUF7tFMxxVB7_neSF31zVk07TBp_HDPI2uK8D4c,14735
82
- umap/locale/pt/LC_MESSAGES/django.mo,sha256=gsaX4yKl65uc_yB9PcPP3pxqbZp4WkJlnmjAxWifCqs,10180
83
- umap/locale/pt/LC_MESSAGES/django.po,sha256=-R1c6MuNNoJLTTBpGUAYYE3Y_jTnsB2_Vl5w_wVidYM,14808
81
+ umap/locale/pt/LC_MESSAGES/django.mo,sha256=eoKl_1ZO74e7YOud-SA6s-fHICKEltrBBnnU54F3x24,11414
82
+ umap/locale/pt/LC_MESSAGES/django.po,sha256=tqFJKNlkfCFfRFrQ4VD3tAwNe3je9W4EIGR3BhUgiVs,16667
84
83
  umap/locale/pt_BR/LC_MESSAGES/django.mo,sha256=DrxyrIeCD0dmbieR3clKO2Sy0pyWpcHmQKM251Ff294,6328
85
84
  umap/locale/pt_BR/LC_MESSAGES/django.po,sha256=RXQyHUSrm2JdiWLyR6XEvdSzFLicNj9hR82Noppc2n4,13319
86
85
  umap/locale/pt_PT/LC_MESSAGES/django.mo,sha256=4iwtGYsVFh05Qbp9XmZdclQSTZIYYt6IiLN6W3Eyc6I,6356
@@ -143,27 +142,24 @@ umap/settings/__init__.py,sha256=xxt2Nq7a3xjGTvn1f1hEBV8xErNu0XJ-qP_S21uWzpQ,159
143
142
  umap/settings/base.py,sha256=opweJ5UoMRmBylkAuWcTqP364ab9DRwXwfjMKio-60s,10254
144
143
  umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
145
144
  umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
146
- umap/static/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
147
145
  umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
- umap/static/umap/.DS_Store,sha256=25wUHAzNlKKNi8zJzUdKYuHD2pgYZXNNmvaeGbIAYkM,6148
149
- umap/static/umap/base.css,sha256=HmOZZmeZACdMgetiI2cygSt-Z2s8WloH0HOEzRt4y58,17131
146
+ umap/static/umap/base.css,sha256=qV2WarYpWh7RefaR4cJzRJNG3PCvFLZ7iSxnTJdo3Bg,16822
150
147
  umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
151
148
  umap/static/umap/content.css,sha256=3aFi5hHUuokCqdW_xQuEDyS6vW1ahSdjbSPPnFNutbk,11429
152
149
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
153
150
  umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
154
- umap/static/umap/map.css,sha256=eRdNaEKQqBT8ZRTNsmNT4qCJWVznqbRrUOAQgtyghA4,39672
151
+ umap/static/umap/map.css,sha256=AhFu96DW531RsCyv4m2Zika9anNE4DUTa1PZ9tuBkqI,39763
155
152
  umap/static/umap/nav.css,sha256=vU41w3awlBtsB4XCRJOtVVy9-VN7rua1nJsay61ST_0,1574
156
153
  umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
157
154
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
158
155
  umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
159
- umap/static/umap/vars.css,sha256=oew1iuKNev2JK0-IAFzDgvGGceNv7tNRI6vExIzuLbE,1266
156
+ umap/static/umap/vars.css,sha256=pWmVp9pUQAB4rxh0oQ3R1PDtpVSiJr_X-IKPZwvysVo,1290
160
157
  umap/static/umap/css/dialog.css,sha256=IMDzMNemyCdVyPC5r8rEc5zJuMjdqMiJ4gz7tuHsXtc,379
161
158
  umap/static/umap/css/icon.css,sha256=VUQqVTl8JVfYBGV5mT1NL6ocRol_jZPOmS9Yzv9SuXQ,2430
162
- umap/static/umap/css/importers.css,sha256=pKUlkrBgcTSq6Nf5Fx-SlbRJ7T2ugU2mtlJIQtcCajE,1185
163
- umap/static/umap/css/panel.css,sha256=pjbR1XulhLc8iZMDcPi1VLFAE6qlYsxitKytlWCMLLU,2914
159
+ umap/static/umap/css/importers.css,sha256=m9OezQIOv55KcwU4_t1fouMKjFQOMG4ML1t33rXkT7s,1264
160
+ umap/static/umap/css/panel.css,sha256=QSw2lUur2AOzdJxoX604FszXDBJ_fCD4nilTQhab0Mg,2891
164
161
  umap/static/umap/css/tooltip.css,sha256=-hPbDSVn0cEHfNiBYtz-PlZ-bVBWVKg_8VnsEckYv3M,1384
165
162
  umap/static/umap/css/window.css,sha256=50MFWr9oU200f8-crTPJi3ZPG9h1eG5i6oOBP8yttBQ,808
166
- umap/static/umap/favicons/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
167
163
  umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
168
164
  umap/static/umap/favicons/favicon.ico,sha256=0jjg1MnZ2AdWFLKjEwZSf09TVXlqz6oNdtX4rRppHdA,15086
169
165
  umap/static/umap/favicons/icon-192.png,sha256=saYoRLAaZNkHHntkmldXiptk9FEcaGWDO3N6HpYyw8w,2987
@@ -175,9 +171,7 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
175
171
  umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
176
172
  umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
177
173
  umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
178
- umap/static/umap/fonts/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
179
- umap/static/umap/img/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
180
- umap/static/umap/img/16-white.svg,sha256=qvCWtxEyFGjinV6Zm6SYczI3FYDG2ar-SoLCke329Qo,35880
174
+ umap/static/umap/img/16-white.svg,sha256=XsUxQH9olPbnJKfzhr7HnOjtG6MYnMP59BeujQUMHa4,35894
181
175
  umap/static/umap/img/16.svg,sha256=R9KiBefx832Eog5088aXm07s-thjbRsgSTs3N8emvCw,25475
182
176
  umap/static/umap/img/24-white.svg,sha256=PE1gVqezV0mTFmYwmaG2r1n_HODeADkZNd-9Wb5gOCo,17592
183
177
  umap/static/umap/img/24.svg,sha256=rEsLjRM1Unxqi_Lw9kc6Npy86jk5wbhWS8ZkVfM_GR0,24881
@@ -208,21 +202,20 @@ umap/static/umap/img/importers/overpass.svg,sha256=PFmMwBEQug3bpMdjk3Xue7cU3eArn
208
202
  umap/static/umap/img/importers/random.svg,sha256=DnxcCu2vJOBdZYWhl8Si0boGjkLcvqrRZaB_BbP1zcM,2445
209
203
  umap/static/umap/img/importers/random1.svg,sha256=mY-Yp9-my2ZxdvL6sgnDzc-ihjnAw-mNZtgSkbj25LA,1370
210
204
  umap/static/umap/img/importers/random2.svg,sha256=wRwBTM7skyvLZJX4QHozMX8P4jxP59POTHlKPsMODcg,1933
211
- umap/static/umap/img/source/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
212
- umap/static/umap/img/source/16-white.svg,sha256=MS_S0U-3bjOlo4hKslp-cPdbBOlUtWC4JlSH7Os1FpY,68449
205
+ umap/static/umap/img/source/16-white.svg,sha256=AxOnA1TMUHgjn3Hozg89s7I_u_MvcCFxUG3aNNfnCPQ,67676
213
206
  umap/static/umap/img/source/16.svg,sha256=XjrSS3_6kxf432h83aQF6UfxwjNxjNdioJG8jXEdQXo,48127
214
207
  umap/static/umap/img/source/24-white.svg,sha256=KUkQwOG-ut88Ev5QJKNCXx8DWdPxskIRuxxvY_jL0NA,29405
215
208
  umap/static/umap/img/source/24.svg,sha256=YMuMON2fI9PzkG-QMmT0XqoDDGhPEmbE1jMJUBfpOLI,38713
216
209
  umap/static/umap/js/umap.controls.js,sha256=Zrp5Dys0lHx5KSSuBSYDOz_g58T9LxLGQOZ-OHHYD2U,37277
217
210
  umap/static/umap/js/umap.core.js,sha256=JWaIuowHjnLrOQnUCifln4qiAvD7X43DAcL7flQK_4g,7546
218
211
  umap/static/umap/js/umap.datalayer.permissions.js,sha256=_wqTme7S7AvMOXSWecLm_iJBCV65V_KUH9ABKJg1H-8,1948
219
- umap/static/umap/js/umap.features.js,sha256=M-Bj0lS4q_vsvhYQl2lp7WSDphbrghltvqZKHQkNWac,36412
212
+ umap/static/umap/js/umap.features.js,sha256=l48x_edp97pV_qVP-FvG6bHRee6noLRIokuYgUiIoz0,36592
220
213
  umap/static/umap/js/umap.forms.js,sha256=FGqqpD7yQOxfgHNwTaYSiNYRw8biuoZpwDmwvozFhXI,31400
221
214
  umap/static/umap/js/umap.icon.js,sha256=8dzfEN5fgP2jXYTbN6B-xjrB94A6nXHCXO2RKoTC0S0,7594
222
- umap/static/umap/js/umap.js,sha256=BmXDvnIDb61ivEgae19LUlKVobBzB-FieR8clpui6Pg,57023
223
- umap/static/umap/js/umap.layer.js,sha256=hLOUncINK5BjbwIWWH4qTrfUKQYq3V_80Rs9-JU_x5I,50739
215
+ umap/static/umap/js/umap.js,sha256=_My6zbAICFWjTH2CCf1FUBJaia5Rv78J0gRlXP45g6A,56958
216
+ umap/static/umap/js/umap.layer.js,sha256=ZAm4oWTKoKWlSxrzrRtKmMTauabEpzzHrcD2QkPSkEg,51307
224
217
  umap/static/umap/js/umap.permissions.js,sha256=JK_O8ttM95F5tGXY5MJ_eLXgEmNPS4dVQS3h9u3I3iM,6068
225
- umap/static/umap/js/umap.popup.js,sha256=rVO7JPJM0usM6hoKtfZaxgyCKaE-Ze1oFDQrc3T3kIY,9800
218
+ umap/static/umap/js/umap.popup.js,sha256=UKDQnTiIPQzy6ZW7tH06yqVRsLLGeu8sC3FQOBIL4fQ,9805
226
219
  umap/static/umap/js/umap.share.js,sha256=nUM4r1QZSw6s9lIxgXvMMcG-udsauGWFOrayC9_uEa4,7766
227
220
  umap/static/umap/js/umap.slideshow.js,sha256=xRhNvtQJEYtyiif38KLEyquPn_L50Ga3zkD7j4V23aQ,4398
228
221
  umap/static/umap/js/umap.tableeditor.js,sha256=Vi9xy0FKspLc9uTbLGuh0UJUfKSNnNAOHxWyAjuvF8A,3882
@@ -231,23 +224,23 @@ umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmB
231
224
  umap/static/umap/js/components/alerts/alert.css,sha256=F2Bg6IabPgzkCIZycwnta8neONX_q7fhVIYYY1po9g8,4314
232
225
  umap/static/umap/js/components/alerts/alert.js,sha256=7IYQfvXUWtcm3A300sbI5EULfRnQGmuMbh5hQDPYquc,4475
233
226
  umap/static/umap/js/modules/autocomplete.js,sha256=BPpZBvNttkAQVf3LzTlj_dQhTHbD8cZrAXOIeq6jRn4,7886
234
- umap/static/umap/js/modules/browser.js,sha256=0x1vlMOIeV-Ma-yrOzpkbgRiN2kUP4UK6F9LgxuHloI,7337
235
- umap/static/umap/js/modules/caption.js,sha256=s8SIwKszoO7z8be8WRISJLOx58_cOup2V26vhJ5bE0g,3867
227
+ umap/static/umap/js/modules/browser.js,sha256=IlOtFy9PYG72Y8FSPxbfS7gQhauopRWIMl6mUfCvjcw,7238
228
+ umap/static/umap/js/modules/caption.js,sha256=Nfm4C9O01KPHqtyBmA76R7WN4XEOyNnTR9-_J_QTlB0,3872
236
229
  umap/static/umap/js/modules/dompurify.js,sha256=-4MuNA0bAa60lAL40MPa1F4YHfr2V05isAJdPQlABpk,341
237
230
  umap/static/umap/js/modules/facets.js,sha256=H7RtTKbpCMQa68GIRqkUtmKfDYqrv6pcTSLXeC3GwQc,3428
238
231
  umap/static/umap/js/modules/global.js,sha256=IBFJfeOs9Dt3bM-6D7hzKuFPbIqcPFhp5XRViGcNmH4,1312
239
232
  umap/static/umap/js/modules/help.js,sha256=kNbDZM2RgVbC1d3HgJAELM2tadgulIFnTCdgveTmcNg,9850
240
233
  umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
241
- umap/static/umap/js/modules/importer.js,sha256=8P-stI1hkDid7_RJw6ODDjpSCk1e668YGEX-O_TjR9k,8440
234
+ umap/static/umap/js/modules/importer.js,sha256=JXPksGEB6v05_vY4-ZTs-4BWg9qiDCglA7IlDdkGltU,8689
242
235
  umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
243
236
  umap/static/umap/js/modules/orderable.js,sha256=E3FgVeQG1iEnu56M7KIYOwV1ngNyrF8yXVEs0jExbjc,2518
244
237
  umap/static/umap/js/modules/request.js,sha256=Ax1h2dIW2rRiS93v78iHYVCBHTMIIp6RIomW-pk99Fs,3881
245
238
  umap/static/umap/js/modules/rules.js,sha256=4FfuENBDL_8Jgn_jlgFQy7UaknBtTsw-srryvBGm2b4,6060
246
239
  umap/static/umap/js/modules/schema.js,sha256=cJnZYuhkbv8GZcu8TocIyyWZtQy5RjOEoM7nSTBwKxM,12226
247
240
  umap/static/umap/js/modules/urls.js,sha256=5r2xDllTHALs7LurFmCSXMN8YZzhOSYwoQrNsTx4Xq8,853
248
- umap/static/umap/js/modules/utils.js,sha256=h4NT-hsLo6gmusYiGjN2WYXvxRVXRRa781i1pWID910,10705
241
+ umap/static/umap/js/modules/utils.js,sha256=B1A2Hc_08J6QevMpeirluast56jsb8dXcUZn5p2Bgpw,10705
249
242
  umap/static/umap/js/modules/importers/communesfr.js,sha256=VtyPEh7MccPM0P1YoYFtBX4YLwk4LrxS5IhJFM3Vmwc,1273
250
- umap/static/umap/js/modules/importers/datasets.js,sha256=g9cviZ7BT8x55CiSFod4299if2uZEtjZndo9lbkUUCI,1301
243
+ umap/static/umap/js/modules/importers/datasets.js,sha256=SsIMNYcDy0s82prnTVXulevSTnaHLMWXldrKiU4E9MA,1379
251
244
  umap/static/umap/js/modules/importers/geodatamine.js,sha256=OCqw7OVmniJKkpAhAAeTf17KV47FF4oiueAq1UFxDSA,3076
252
245
  umap/static/umap/js/modules/importers/overpass.js,sha256=QDWZhi0S5xKTE13o5ISLxH-bkAheqMzcihRpLFkQgVY,2765
253
246
  umap/static/umap/js/modules/sync/engine.js,sha256=TPUi0H_WZZ7sEQ4UV--om5RgLHPxJdpKWVsuFIG_31Q,2584
@@ -276,11 +269,11 @@ umap/static/umap/locale/de.js,sha256=mz9wq5V-1mox5REu_IsGLH2CgELQVDkBQlFlKXl2EiY
276
269
  umap/static/umap/locale/de.json,sha256=xvxvLQYc4TSHuNFSR6MINLl6umTpMmR8crG_5zqRxV8,30033
277
270
  umap/static/umap/locale/el.js,sha256=t1HHbGoP_rI-AP0G0R21CzSbUqqG4YTzM4T_tfF8g5Y,38855
278
271
  umap/static/umap/locale/el.json,sha256=KMQt2_RurbYV8k2gV6GiResfLCpnwV4hgUB7q_6B0Ek,38790
279
- umap/static/umap/locale/en.js,sha256=yS54U88A1zV8olxoMPLBzk1zWvzuu_o7T_epMLTZRFo,28147
280
- umap/static/umap/locale/en.json,sha256=ps5ABcHoKcDC6j4dchqLJHXSoVS_kvQNUUxmHVq6Ik0,28082
272
+ umap/static/umap/locale/en.js,sha256=dXUj767O4fB8gUialiv0EUzeUq29JDAwvFXKH2Vy_Ao,28213
273
+ umap/static/umap/locale/en.json,sha256=GgpjGitJ3SXVfbppBDKG9ZhD5BoglwGksoYA-NrZLRY,28148
281
274
  umap/static/umap/locale/en_US.json,sha256=u6sIwPJfYnI156QDTbYwBrq0i4ws0d0dEm41SPfuJBo,27861
282
- umap/static/umap/locale/es.js,sha256=W2OnEkmeAFIkOU2JpfFLU7BKVcCrIDrZSfVnph8NVBM,30373
283
- umap/static/umap/locale/es.json,sha256=ak3Nf1pL5jRtX5HRBIt6ydwpCt50RNzXT0_rPDjbJ8I,30308
275
+ umap/static/umap/locale/es.js,sha256=7INo4p2CBrD9gsV-telZGHeX3KN4Kwkus4V2tta0dc8,30537
276
+ umap/static/umap/locale/es.json,sha256=YPJSD96BVFdMIUfXCesdrVkPeXHLeKLGS7__nG7qscE,30472
284
277
  umap/static/umap/locale/et.js,sha256=gTnlWcCqlKH048VKU3G3RgaqmEkj6_ugV5uw3_9XwdA,28337
285
278
  umap/static/umap/locale/et.json,sha256=rp4CtO3HHi2jK34P-jJDO7-D-ZiyaHgDss6fQ0O509E,28272
286
279
  umap/static/umap/locale/eu.js,sha256=nNmK158y9fnHZcenHTcSmpUf6DQIocQiRv_ZgQqzIU8,28192
@@ -289,8 +282,8 @@ umap/static/umap/locale/fa_IR.js,sha256=kz2VJKwVsy_LiydbaXa4d9RKeVVtp7eMX6QBABkY
289
282
  umap/static/umap/locale/fa_IR.json,sha256=bQyzFdyg-7hv7n_nGb537TZeolvlU0bAA-RY63TWlfk,34094
290
283
  umap/static/umap/locale/fi.js,sha256=sZImuGI33mkuF4zqOVzHLUXQVrmeqg2BvS-Yye3t0kE,29039
291
284
  umap/static/umap/locale/fi.json,sha256=gGumegoK89jiJJzxhfTB9b9RTAHZ5zvqO-wasarVX5Y,28974
292
- umap/static/umap/locale/fr.js,sha256=vZhezWDTAvWVcoi5GdKlgyW_tBpN-AGJi-L9GvzFYMo,30765
293
- umap/static/umap/locale/fr.json,sha256=URCW2F3tq4PCCXzhKay3VYnryfPOman-yqDH4Gc1pFM,30700
285
+ umap/static/umap/locale/fr.js,sha256=abosQmwya8-kBbAPArKKS_UirvPdfQw9CKmWsnQwbGs,30852
286
+ umap/static/umap/locale/fr.json,sha256=gQtunKe8CMJZBqULiJQ-yExGWCAJkhLd5eAfrVxVLkI,30787
294
287
  umap/static/umap/locale/gl.js,sha256=zF8UtVRHghXmEcDPkCrtgGedfXnAu8E-X0T-ZKilgeM,29588
295
288
  umap/static/umap/locale/gl.json,sha256=9Z-FgEGCeoR0lCEEeNfsLcpBrULEwI5EkMfvGp5ECG0,29523
296
289
  umap/static/umap/locale/he.js,sha256=OnRsbuDFhoj6FMnTTsx6wEHR-Eu6xgIRTfEow7rT7hs,31649
@@ -320,8 +313,8 @@ umap/static/umap/locale/no.json,sha256=tcmQYo64or9X0iKEo96bIZ_Iv9QTGpG3f0mcSK9z7
320
313
  umap/static/umap/locale/pl.js,sha256=B6fYRZKeBOG9UujBVBSREhy_vii5JcAuHADUOjVSuWs,29825
321
314
  umap/static/umap/locale/pl.json,sha256=8WnN7sb-ARh1sftrl7rzkymrWgbGq3ldcwvNfokLyds,29760
322
315
  umap/static/umap/locale/pl_PL.json,sha256=eCRlYcE5PsBGx_NIaxzJn-qmDLx6FKAQ0OIcTXnHUfM,28080
323
- umap/static/umap/locale/pt.js,sha256=NEp13tgvZvhEy2GXWOMIv0inBvSe1pFIHvkJ1SHk0ho,30457
324
- umap/static/umap/locale/pt.json,sha256=XZPKwYu5TdrM5_5bwWmVbQYXlwVE-pYBjb8eIam3QpE,30392
316
+ umap/static/umap/locale/pt.js,sha256=xgmzOTY7SL8vBRhwdA8s1J18BEMEkIuM6cFhLRqNkpw,30851
317
+ umap/static/umap/locale/pt.json,sha256=J3Y7BVzVUYC4NuDVRkoFxE8yoUN_HzYoaymUOJO8GhE,30786
325
318
  umap/static/umap/locale/pt_BR.js,sha256=Zjs7uMwFruBdDniMtsN-QMVz1_grjpYD2yHHn1sSiGY,29563
326
319
  umap/static/umap/locale/pt_BR.json,sha256=DsdC2oW7KZH02dqf1Yhl8VyrxPCyNsImz4jpMBj8tPw,29492
327
320
  umap/static/umap/locale/pt_PT.js,sha256=aOPtOSAFKg3A0Xxlr0dKDixqCi_p2tAMBGb2nedFdok,29581
@@ -368,19 +361,19 @@ umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg
368
361
  umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
369
362
  umap/static/umap/unittests/URLs.js,sha256=EqXPGohwNiEtJWk1QY2KgPaIwd0iP56nYvn05ufsZ-g,1878
370
363
  umap/static/umap/unittests/sync.js,sha256=A5JyhiEMSzjWqWtubyDcLfcthsFLvfUuKKn1Lcv0ZnA,3098
371
- umap/static/umap/unittests/utils.js,sha256=gd_9iUEW_sVxnZKhfzgAQ9TvRqkKbiSxjVY4ZtTXJ54,21850
364
+ umap/static/umap/unittests/utils.js,sha256=C-576wKC4Eb-bwHjUto_UvOMdu3EzyE5LyRipc3ru2o,21850
372
365
  umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=FebyRte_vQrD_CLC8Xjc2cI_bR694S6hDSIu26tDnZ8,24622
373
366
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css,sha256=_pRTmdgpDxfu1Oxb7DnP_DTdA44G-k3kf0otWP8gEnc,990
374
367
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt4ZrRcCzTUp6OiNmD5KuDsZCvhG-yZt8lhE,8994
375
368
  umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=GCr5ZQawzxqZysqyxDTH6oUqP-KHxYTsG5xRt28--Zw,15029
376
- umap/static/umap/vendors/dompurify/purify.es.js,sha256=TScM8DATZbXGCLOVBYhpfX4gbnKRCAlt53htdqS9umc,63951
377
- umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=7KkvHp3X9QVutUAQnlG8iCMV4jJeHRsggC4yBoO2dTk,123294
369
+ umap/static/umap/vendors/dompurify/purify.es.js,sha256=bbb7tFci1Ja9p9jIhl6P_TRY_UFR7A3l9cx3iBEYctQ,66134
370
+ umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=3alEtwTS7nADNMarS5Av7mklHAozIHSRGLrZDKHRKIw,127359
378
371
  umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=Mx8aiCT4w9DBEUBJiX5eq9Ocy-6E3C9wLAik-dgOLY4,74768
379
372
  umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayxzynqhE-AgnuRlqYI0,3898
380
373
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
381
374
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js,sha256=ati65azw8WxPG70b4JblFSHgD-fJ0ytriQEzC5tJWCM,9141
382
375
  umap/static/umap/vendors/editinosm/edit-in-osm.png,sha256=xsQrWBc8olICRKg-bt7auEoceoCoWWZxm5OmAHSE2PM,3340
383
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js,sha256=KInWXlcLx6ANiQT5luvf8_d25IPRkYP4Rc-0L6KOR_c,12414
376
+ umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js,sha256=J_0lfNnev_bRBgjxJBozVLSd8Qwffd-OyWW8RvwBHSE,12391
384
377
  umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js,sha256=_VGiFGzaidNadoKY4_8zFXP_OqGdajjpB-0vNHRz33o,5041
385
378
  umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js,sha256=RQN1bmEq_28pzVG8Csu34O677VNj5_1xl1wUGyDjMuo,3654
386
379
  umap/static/umap/vendors/fullscreen/fullscreen.png,sha256=yDtz-dhjuAoo6q9xc00-_XNTrGwEWrN80pOneFdol4g,299
@@ -472,7 +465,6 @@ umap/templates/umap/user_dashboard.html,sha256=P9A_5m3HBnEGj87ptbBVOoqrF7gW6Rsyl
472
465
  umap/templates/umap/components/alerts/alert.html,sha256=HeOVES74qAHE_dV00cMP5w4DNw4qLgTOksS8dsCJkiM,3064
473
466
  umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
474
467
  umap/templatetags/umap_tags.py,sha256=oMXsa80LFM52EcLnF6A_o4_PdvOncLBf33pexaeL8nw,1773
475
- umap/tests/.DS_Store,sha256=1XzuPE00K75AO_2mNxKwuv3D4oPx0c9L2CQc5cfE-d8,6148
476
468
  umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
477
469
  umap/tests/base.py,sha256=gZlVLqyRY5eICH8oPAz3c8vWHhTOdbLMvEXME8sTdAw,4345
478
470
  umap/tests/conftest.py,sha256=yLFE5sqz61tw_EoZp1nrH-8S49_aStA5Lt1JtZXd-Hg,1498
@@ -499,12 +491,11 @@ umap/tests/fixtures/test_upload_data_osm.json,sha256=ekOwBHdp7qHQ-JUGlb-kGUXcVep
499
491
  umap/tests/fixtures/test_upload_empty_coordinates.json,sha256=-mJ_1orzUAROfE4PXchHXyqxjS-q4tDfvEFPllJiHFU,786
500
492
  umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5UZ1LbAJCCKnJea0qEFAI,4566
501
493
  umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIxU7WL1llnAmEVJwCWla6XOds,1525
502
- umap/tests/integration/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
503
494
  umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
504
495
  umap/tests/integration/conftest.py,sha256=QQuhq7Z2lZlJFJN5qMRWINu1qfUOQPOfgx5dLYX-5zY,1984
505
496
  umap/tests/integration/test_anonymous_owned_map.py,sha256=v3_qXx3_YhDzr0N8fNfeZwepPGpJ_yZrKwX5LpLFf5Q,9457
506
497
  umap/tests/integration/test_basics.py,sha256=dOb5zZ4YNJlkJc6rVt5HIrf4nmy0Bxw5S0Nn94Yi1Qo,2616
507
- umap/tests/integration/test_browser.py,sha256=w2_tajwKxxqrbjTBOAjg3Mfc8BqdIGrXSK9armu1d8c,13655
498
+ umap/tests/integration/test_browser.py,sha256=Xpen79k4OoYY6kgfdZ0PtjmD1-sREdVr2kL69PXbCu4,16911
508
499
  umap/tests/integration/test_caption.py,sha256=CRZHNwRHuSPIz33F2kpL85bacQQ0cFXDu12IB1rIskc,1016
509
500
  umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
510
501
  umap/tests/integration/test_conditional_rules.py,sha256=zvLMzy15JrBRIrhUvRMAB1KKmI3Zdb-CYFs9Dn5v-bE,7330
@@ -515,12 +506,12 @@ umap/tests/integration/test_draw_polyline.py,sha256=Cg_lmRLTNPMk1CJBvVJEXww_wQmm
515
506
  umap/tests/integration/test_edit_datalayer.py,sha256=uLIyBQ8CbjowoJjvu4us8UJcjFWcDX4Z_t7o2XHEjVY,9431
516
507
  umap/tests/integration/test_edit_map.py,sha256=cIJWelF1DWIUjqEyyb7NyaDLU8cQ0LGo-WfUEUx_5-A,7111
517
508
  umap/tests/integration/test_edit_marker.py,sha256=1MpA1mjdtVx2HuFkVSYZojBoGJ0fhK_JBGDsv5v6rUE,4736
518
- umap/tests/integration/test_edit_polygon.py,sha256=v6NaNtZLagP7A4M2I-jUF5qpy4XA67WUwPtKBjKZnA0,4782
509
+ umap/tests/integration/test_edit_polygon.py,sha256=PPUiQ0oka41t_nxIDfXRxPZMXtIGT8fFiB8oZ-If4h0,5274
519
510
  umap/tests/integration/test_export_map.py,sha256=Y_sgsT7ZTrrDCx5dLegioJ40GN_PtzK7yRFHTxtIb-4,12738
520
511
  umap/tests/integration/test_facets_browser.py,sha256=bsEpb4tXZtxF3tdmSZ0tGrOIIEhd1KSbmDQruuUQFic,10622
521
512
  umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
522
- umap/tests/integration/test_import.py,sha256=mWBHsmmWx1GuIz1wrGxpJY_f_TRn3PDpxZC_5yYuVII,22026
523
- umap/tests/integration/test_map.py,sha256=YvguclU6SFNDxbxio9lm8Jz4iXWDV9Ox43_ets4qbiA,7661
513
+ umap/tests/integration/test_import.py,sha256=f9DlqGX2_wCWrk0KRM79XrLJDF4vL7xAzRpbfZtfQtI,23675
514
+ umap/tests/integration/test_map.py,sha256=WH_vNCsFTnfEKNyt9OHfpXa3BMS1fh1cqvSLSb_Nxtk,8726
524
515
  umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
525
516
  umap/tests/integration/test_map_preview.py,sha256=4rPQF1zfiwqN7PvwFeB3OagR1wLEMbug0Omcd6zQShQ,2702
526
517
  umap/tests/integration/test_optimistic_merge.py,sha256=HK-RYWyqvkUw3ibnONzb3HNMsvj9RLDXnf0vJlWkv6g,10948
@@ -533,12 +524,12 @@ umap/tests/integration/test_star.py,sha256=icB5SbFbXe4KYp3DIJ0xAwCrSQS2rweqIaQTA
533
524
  umap/tests/integration/test_statics.py,sha256=BuScxhKTXclLzKEZYTatzPnh9rKrY2FsqgdT3vVLwqc,1521
534
525
  umap/tests/integration/test_tableeditor.py,sha256=C4C5qj6b77XSNso7B634r0uaIzpO6Gkos7il6VGiSd8,1058
535
526
  umap/tests/integration/test_tilelayer.py,sha256=nQIhU3GIxxCXrelNWgSsm4iT3Su52rW8ENWtKfiqjWk,4607
536
- umap/tests/integration/test_view_marker.py,sha256=Y45rDzhScKsHz7_JgK46tRd29qrBLxndFLAk8pjHnJs,2843
527
+ umap/tests/integration/test_view_marker.py,sha256=PPuG93hSN33qjSOnHg8ls0XucsuGl89t49JqwLusJLE,2918
537
528
  umap/tests/integration/test_view_polygon.py,sha256=I7wR6DUrictIMrCPKajCrruJVLry4ZRDdjSs8q0XaOg,1829
538
529
  umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
539
530
  umap/tests/integration/test_websocket_sync.py,sha256=r2qlo7KUdPbX58gMJDNg-C1ZuDNSNT105wOUA6GJRMI,10487
540
- umap_project-2.4.0b1.dist-info/METADATA,sha256=i0uZQSAsUaq66etOskqrJcamR1SZy_7YvgArRnz2mAg,2682
541
- umap_project-2.4.0b1.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
542
- umap_project-2.4.0b1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
543
- umap_project-2.4.0b1.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
544
- umap_project-2.4.0b1.dist-info/RECORD,,
531
+ umap_project-2.4.1.dist-info/METADATA,sha256=rCeIfCRyqarl1z2Rh_nRdLl4AZ7r1hVTxG8POCgXfLw,2680
532
+ umap_project-2.4.1.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
533
+ umap_project-2.4.1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
534
+ umap_project-2.4.1.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
535
+ umap_project-2.4.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.18.0
2
+ Generator: hatchling 1.24.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
umap/.DS_Store DELETED
Binary file
umap/static/.DS_Store DELETED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
umap/tests/.DS_Store DELETED
Binary file
Binary file