umap-project 3.0.3__py3-none-any.whl → 3.0.4__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.

umap/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION = "3.0.3"
1
+ VERSION = "3.0.4"
@@ -6,7 +6,7 @@ input[type="text"], input[type="password"], input[type="date"],
6
6
  input[type="datetime-local"], input[type="email"], input[type="number"],
7
7
  input[type="search"], input[type="tel"], input[type="time"], input[type="file"],
8
8
  input[type="url"], textarea {
9
- background-color: white;
9
+ background-color: var(--color-light);
10
10
  border: 2px solid var(--color-darkBlue);
11
11
  color: var(--text-color);
12
12
  display: block;
@@ -47,7 +47,7 @@ input[type=checkbox]:checked:after {
47
47
  }
48
48
  input[data-modified=true] {
49
49
  background-color: var(--color-lightCyan);
50
- border: 1px solid var(--color-darkGray);
50
+ border: 1px solid var(--color-veryDarkGray);
51
51
  }
52
52
  input + select,
53
53
  select + input,
@@ -71,7 +71,7 @@ select {
71
71
  .dark select {
72
72
  color: var(--text-color);
73
73
  background-color: var(--color-darkGray);
74
- border-color: var(--color-dark);
74
+ border-color: var(--color-veryDarkGray);
75
75
  border-width: 1px;
76
76
  }
77
77
  select[multiple="multiple"] {
@@ -89,7 +89,7 @@ input[type="submit"] {
89
89
  text-decoration: none;
90
90
  justify-content: center;
91
91
  background-color: var(--color-darkBlue);
92
- color: white;
92
+ color: var(--color-light);
93
93
  font-weight: normal;
94
94
  min-height: 40px;
95
95
  }
@@ -97,21 +97,21 @@ input[type="submit"] {
97
97
  .dark [type="button"] {
98
98
  background-color: var(--color-darkerGray);
99
99
  color: var(--text-color);
100
- border: 1px solid #1b1f20;
100
+ border: 1px solid var(--color-veryDarkGray);
101
101
  }
102
102
  .button.primary {
103
103
  font-weight: bold;
104
104
  }
105
105
  .dark .button.primary:not([disabled]),
106
106
  .dark [type="button"].primary:not([disabled]) {
107
- background-color: var(--color-brightCyan);
107
+ background-color: var(--color-verySoftCyan);
108
108
  color: var(--color-dark);
109
- border: 1px solid #1b1f20;
109
+ border: 1px solid var(--color-veryDarkGray);
110
110
  }
111
111
  .dark .button:hover,
112
112
  .dark [type="button"]:hover,
113
113
  .dark input[type="submit"]:hover {
114
- background-color: #2e3436;
114
+ background-color: var(--color-darkerGray);
115
115
  }
116
116
  .dark a {
117
117
  color: var(--text-color);
@@ -151,14 +151,14 @@ button.round.small {
151
151
  display: block;
152
152
  padding: 7px 7px;
153
153
  margin-bottom: 14px;
154
- background: #393F3F;
154
+ background: var(--color-mediumGray);
155
155
  color: var(--color-lightGray);
156
156
  font-size: 10px;
157
157
  border-radius: 0 2px;
158
158
  }
159
159
  .content .helptext {
160
- background-color: #eee;
161
- color: #000;
160
+ background-color: var(--color-lightGray);
161
+ color: var(--color-dark);
162
162
  }
163
163
  input + .help-text {
164
164
  margin-top: -14px;
@@ -205,8 +205,8 @@ input + .error {
205
205
  margin-top: -14px;
206
206
  margin-bottom: 14px;
207
207
  background: var(--color-lightGray);
208
- color: #fff;
209
- background-color: #cc0000;
208
+ color: var(--color-light);
209
+ background-color: var(--color-red);
210
210
  font-size: 11px;
211
211
  border-radius: 0 2px;
212
212
  }
@@ -214,14 +214,14 @@ input[type="file"] + .error {
214
214
  margin-top: 0;
215
215
  }
216
216
  input[value]:invalid {
217
- border-color: red;
218
- background-color: darkred;
217
+ border-color: var(--color-red);
218
+ background-color: var(--color-darkRed);
219
219
  }
220
220
  .dark input, .dark textarea {
221
221
  background-color: var(--color-darkerGray);
222
- border-color: var(--color-dark);
222
+ border-color: var(--color-veryDarkGray);
223
223
  border-width: 1px;
224
- color: #efefef;
224
+ color: var(--color-lightGray);
225
225
  }
226
226
  details {
227
227
  margin-bottom: 5px;
@@ -229,7 +229,7 @@ details {
229
229
  border-start-end-radius: 4px;
230
230
  }
231
231
  .dark details {
232
- border: 1px solid #222;
232
+ border: 1px solid var(--color-veryDarkGray);
233
233
  }
234
234
  details fieldset {
235
235
  overflow: hidden;
@@ -245,8 +245,8 @@ details summary {
245
245
  padding: 0 5px;
246
246
  }
247
247
  .dark details summary {
248
- background-color: #232729;
249
- color: #fff;
248
+ background-color: var(--color-darkerGray);
249
+ color: var(--color-light);
250
250
  }
251
251
  .dark details fieldset {
252
252
  border: 1px solid var(--color-darkGray);
@@ -311,33 +311,34 @@ input.switch:empty ~ label:after {
311
311
  width: 6em;
312
312
  -webkit-transition: all 100ms ease-in;
313
313
  transition: all 100ms ease-in;
314
- color: #c9c9c7;
314
+ color: var(--color-mediumGray);
315
315
  font-weight: bold;
316
- background-color: #ededed;
316
+ background-color: var(--color-lighterGray);
317
317
  }
318
318
  .dark input.switch:empty ~ label:before,
319
319
  .dark input.switch:empty ~ label:after {
320
- background-color: #272c2e;
320
+ background-color: var(--color-darkerGray);
321
321
  }
322
322
  input.switch:empty ~ label:after {
323
323
  width: 3em;
324
324
  margin-inline-start: 0.1em;
325
- background-color: #ededed;
325
+ background-color: var(--color-lightGray);
326
326
  content: "OFF";
327
327
  text-indent: 3.5em;
328
- border: 1px solid #374E75;
328
+ border: 1px solid var(--color-darkerGray);
329
329
  font-weight: bold;
330
330
  }
331
331
  .dark input.switch:empty ~ label:after {
332
- border: 1px solid #202425;
333
- background-color: #2c3233;
332
+ border: 1px solid var(--color-veryDarkGray);
333
+ background-color: var(--color-darkerGray);
334
+ color: var(--color-lightGray);
334
335
  }
335
336
  input.switch:checked:empty ~ label:after {
336
337
  content: ' ';
337
338
  }
338
339
  .dark input.switch:checked ~ label:before,
339
340
  input.switch:checked ~ label:before {
340
- background-color: var(--color-lightCyan);
341
+ background-color: var(--color-verySoftCyan);
341
342
  border: 1px solid var(--color-lightGray);
342
343
  color: var(--color-darkGray);
343
344
  content: "ON";
@@ -347,7 +348,7 @@ input.switch:checked ~ label:before {
347
348
  }
348
349
  .dark input.switch:checked ~ label:before {
349
350
  border: none;
350
- background-color: var(--color-accent);
351
+ background-color: var(--color-verySoftCyan);
351
352
  }
352
353
  input.switch:checked ~ label:after {
353
354
  margin-inline-start: 3em;
@@ -387,9 +388,9 @@ input.switch:checked ~ label:after {
387
388
  display: none;
388
389
  }
389
390
  .umap-multiplechoice label {
390
- border: 1px solid #374E75;
391
+ border: 1px solid var(--color-veryDarkGray);
391
392
  cursor: pointer;
392
- background-color: #c9c9c7;
393
+ background-color: var(--color-lightGray);
393
394
  min-height: 30px;
394
395
  line-height: 30px;
395
396
  text-align: center;
@@ -397,12 +398,11 @@ input.switch:checked ~ label:after {
397
398
  display: inline-block;
398
399
  }
399
400
  .dark .umap-multiplechoice label {
400
- border: 1px solid black;
401
- background-color: #2c3233;
401
+ border: 1px solid var(--color-veryDarkGray);
402
+ background-color: var(--color-darkGray);
402
403
  }
403
404
  .umap-multiplechoice input[type='radio']:checked + label {
404
- background-color: var(--color-accent);
405
- box-shadow: inset 0 0 6px 0px #2c3233;
405
+ background-color: var(--color-verySoftCyan);
406
406
  color: var(--color-darkGray);
407
407
  }
408
408
  .inheritable .header .buttons {
@@ -420,7 +420,7 @@ input.switch:checked ~ label:after {
420
420
  width: initial;
421
421
  }
422
422
  .inheritable + .inheritable {
423
- border-top: 1px solid #222;
423
+ border-top: 1px solid var(--color-darkerGray);
424
424
  padding-top: 5px;
425
425
  margin-top: 5px;
426
426
  }
@@ -504,7 +504,7 @@ i.info {
504
504
  justify-content: space-around;
505
505
  font-size: 1.2em;
506
506
  margin-bottom: 20px;
507
- border-bottom: 1px solid #bebebe;
507
+ border-bottom: 1px solid var(--color-lighterGray);
508
508
  }
509
509
  .flat-tabs button {
510
510
  padding: 10px;
@@ -515,14 +515,14 @@ i.info {
515
515
  .flat-tabs button:hover,
516
516
  .flat-tabs .on {
517
517
  font-weight: bold;
518
- border-bottom: 1px solid #444;
518
+ border-bottom: 1px solid var(--color-mediumGray);
519
519
  }
520
520
  .dark .flat-tabs button {
521
- color: #fff;
521
+ color: var(--color-light);
522
522
  }
523
523
  .dark .flat-tabs button:hover,
524
524
  .dark .flat-tabs .on {
525
- border-bottom: 1px solid #fff;
525
+ border-bottom: 1px solid var(--color-light);
526
526
  }
527
527
  .umap-pictogram-category h6 {
528
528
  font-size: 1.3em;
@@ -538,11 +538,11 @@ i.info {
538
538
  height: 30px;
539
539
  line-height: 30px;
540
540
  cursor: pointer;
541
- background-color: #999;
541
+ background-color: var(--color-lightGray);
542
542
  text-align: center;
543
543
  margin-bottom: 5px;
544
544
  display: inline-block;
545
- color: black;
545
+ color: var(--color-dark);
546
546
  font-weight: bold;
547
547
  overflow: hidden;
548
548
  }
@@ -552,10 +552,10 @@ i.info {
552
552
  }
553
553
  .umap-pictogram-choice:hover,
554
554
  .umap-color-picker span:hover {
555
- background-color: #bebebe;
555
+ background-color: var(--color-lighterGray);
556
556
  }
557
557
  .umap-pictogram-choice.selected {
558
- box-shadow: inset 0 0 0 1px #e9e9e9;
558
+ box-shadow: inset 0 0 0 1px var(--color-lighterGray);
559
559
  }
560
560
 
561
561
  .umap-pictogram-choice .leaflet-marker-icon {
@@ -108,7 +108,7 @@ export default class Umap {
108
108
 
109
109
  // Do not display in an iframe.
110
110
  if (window.self !== window.top) {
111
- geojson.properties.homeControl = false
111
+ this.properties.homeControl = false
112
112
  }
113
113
 
114
114
  this._leafletMap.setup()
@@ -833,7 +833,6 @@ export default class Umap {
833
833
  UIFields.push(`properties.${name}Control`)
834
834
  }
835
835
  UIFields = UIFields.concat([
836
- 'properties.homeControl',
837
836
  'properties.moreControl',
838
837
  'properties.scrollWheelZoom',
839
838
  'properties.miniMap',
@@ -457,7 +457,6 @@ const locale = {
457
457
  "Choose this dataset": "Choose this dataset",
458
458
  "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
459
459
  "Choose a theme": "Choose a theme",
460
- "Symplify all geometries to points": "Symplify all geometries to points",
461
460
  "Choose this data": "Choose this data",
462
461
  "Search admin boundary": "Search admin boundary",
463
462
  "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
@@ -522,10 +521,10 @@ const locale = {
522
521
  "Anonymous": "Anonymous",
523
522
  "created at {date}": "created at {date}",
524
523
  "modified at {date}": "modified at {date}",
525
- "Default zoom": "Default zoom",
526
- "Default latitude": "Default latitude",
527
- "Default longitude": "Default longitude",
528
- "Edit map default view": "Edit map default view",
524
+ "Default zoom": "Zoom predeterminat",
525
+ "Default latitude": "Latitud predeterminada",
526
+ "Default longitude": "Longitud predeterminada",
527
+ "Edit map default view": "Edita la visualització predeterminada del mapa",
529
528
  "Use current center and zoom": "Use current center and zoom",
530
529
  "Layer permalink": "Layer permalink",
531
530
  "Back to home": "Back to home",
@@ -538,7 +537,10 @@ const locale = {
538
537
  "Images": "Images",
539
538
  "Iframes": "Iframes",
540
539
  "Tags": "Tags",
541
- "Geocode": "Geocode"
540
+ "Geocode": "Geocode",
541
+ "Display the back to home icon": "Display the back to home icon",
542
+ "Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
543
+ "Simplify all geometries to points": "Simplify all geometries to points"
542
544
  }
543
545
  L.registerLocale("ca", locale)
544
546
  L.setLocale("ca")
@@ -457,7 +457,6 @@
457
457
  "Choose this dataset": "Choose this dataset",
458
458
  "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
459
459
  "Choose a theme": "Choose a theme",
460
- "Symplify all geometries to points": "Symplify all geometries to points",
461
460
  "Choose this data": "Choose this data",
462
461
  "Search admin boundary": "Search admin boundary",
463
462
  "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
@@ -522,10 +521,10 @@
522
521
  "Anonymous": "Anonymous",
523
522
  "created at {date}": "created at {date}",
524
523
  "modified at {date}": "modified at {date}",
525
- "Default zoom": "Default zoom",
526
- "Default latitude": "Default latitude",
527
- "Default longitude": "Default longitude",
528
- "Edit map default view": "Edit map default view",
524
+ "Default zoom": "Zoom predeterminat",
525
+ "Default latitude": "Latitud predeterminada",
526
+ "Default longitude": "Longitud predeterminada",
527
+ "Edit map default view": "Edita la visualització predeterminada del mapa",
529
528
  "Use current center and zoom": "Use current center and zoom",
530
529
  "Layer permalink": "Layer permalink",
531
530
  "Back to home": "Back to home",
@@ -538,5 +537,8 @@
538
537
  "Images": "Images",
539
538
  "Iframes": "Iframes",
540
539
  "Tags": "Tags",
541
- "Geocode": "Geocode"
540
+ "Geocode": "Geocode",
541
+ "Display the back to home icon": "Display the back to home icon",
542
+ "Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
543
+ "Simplify all geometries to points": "Simplify all geometries to points"
542
544
  }
umap/static/umap/map.css CHANGED
@@ -990,9 +990,9 @@ a.umap-control-caption,
990
990
  height: var(--control-size);
991
991
  line-height: var(--control-size);
992
992
  }
993
- /* Links are blue by default */
993
+ /* Links are dark cyan by default */
994
994
  .leaflet-container a {
995
- color: #0078a8;
995
+ color: var(--color-veryDarkCyan);
996
996
  }
997
997
  /* But not in controls */
998
998
  .leaflet-bar a {
umap/static/umap/vars.css CHANGED
@@ -6,12 +6,15 @@
6
6
  --color-mediumGray: #3e4444;
7
7
  --color-darkGray: #323737;
8
8
  --color-darkerGray: #2a2e30;
9
+ --color-veryDarkGray: #1e2121;
9
10
  --color-light: white;
10
11
  --color-dark: black;
11
12
  --color-limeGreen: #b9f5d2;
13
+ --color-verySoftCyan: #a1eeeb;
12
14
  --color-brightCyan: #46ece6;
13
15
  --color-lightCyan: #d4fbf9;
14
16
  --color-darkCyan: #009099;
17
+ --color-veryDarkCyan: #046460;
15
18
  --color-red: #c60f13;
16
19
  --color-darkRed: #5b2a2a;
17
20
 
@@ -64,6 +67,7 @@
64
67
  .dark {
65
68
  --background-color: var(--color-darkGray);
66
69
  --text-color: #efefef;
70
+ --color-verySoftCyan: #8cdcd9;
67
71
  }
68
72
 
69
73
  @media only screen and (max-width:770px) {
@@ -0,0 +1,25 @@
1
+ from playwright.sync_api import expect
2
+
3
+
4
+ def test_home_control_is_hidden(live_server, map, tilelayer, page):
5
+ body = f"""
6
+ <html>
7
+ <head></head>
8
+ <body>
9
+ <iframe width="100%" height="300px" frameborder="0" allowfullscreen allow="geolocation"
10
+ src="{map.get_absolute_url()}?scaleControl=false&miniMap=false&scrollWheelZoom=false&zoomControl=true&editMode=disabled&moreControl=true&searchControl=null&tilelayersControl=null&embedControl=null&datalayersControl=true&onLoadPanel=caption&captionBar=false&captionMenus=true"></iframe>
11
+ </body>
12
+ </html>
13
+ """
14
+
15
+ def handle(route):
16
+ route.fulfill(body=body)
17
+
18
+ url = f"{live_server.url}/test-iframe"
19
+ # Intercept the route
20
+ page.route(url, handle)
21
+
22
+ page.goto(url)
23
+ expect(
24
+ page.locator("iframe").content_frame.get_by_role("link", name="Home logo")
25
+ ).to_be_hidden()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: umap-project
3
- Version: 3.0.3
3
+ Version: 3.0.4
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>
@@ -1,4 +1,4 @@
1
- umap/__init__.py,sha256=ixfiZgiZXRJuwbQkXnzDO-iUUQkItZTG-vxZmXP2jRA,18
1
+ umap/__init__.py,sha256=gstwLm_3jJsK_8nUzN2sU0wolpUI2xdhOkLO1ceXLuA,18
2
2
  umap/admin.py,sha256=YlK4CgEWb2eFYRKiklsKouxeiQ8z_b-H2Fv2XCaiGFQ,3014
3
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
4
  umap/asgi.py,sha256=sJkGqDLgMoPkq2nMRyRE_Hz3ZLJm1X5lgXiQJu6rYt0,660
@@ -153,14 +153,14 @@ umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
153
  umap/static/umap/base.css,sha256=lYYsRzIoFCxkrPIaJm0C6Xj2I1M99mv_ii_gFOJxY-A,5136
154
154
  umap/static/umap/content.css,sha256=ToEEtcXLiu0RFSZtivVKWIg7H7AFPZdHG8FioDelsRA,12030
155
155
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
156
- umap/static/umap/map.css,sha256=YQvegVbDfHFibPyDVHYQCyyk17KzGDYUlEEkIpRdQCA,24803
156
+ umap/static/umap/map.css,sha256=-K-WEvuU5JVh-d6q9_ZMR6NsFowLekWzVDs6BQY0n8s,24826
157
157
  umap/static/umap/nav.css,sha256=MsckfSfuMgADt71FIVpW351ZC2ATlr50iGW-47hziwk,1956
158
158
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
159
- umap/static/umap/vars.css,sha256=Ngo6NRyvIL3T8KyyWZWD1hfcd7dkytbaQm4gDNhDxfU,2024
159
+ umap/static/umap/vars.css,sha256=E6FnvCQxs8TCWW4lfXMkSnuEQEwOklZnGFX5tqtW_nI,2164
160
160
  umap/static/umap/css/bar.css,sha256=24e8B7UAxrBR9F7YvPaeGZD_V2TnJiVKBzWvzYKTmx4,6247
161
161
  umap/static/umap/css/contextmenu.css,sha256=etLtnZXVxJTkmggr05vcfStOw4Gu9DDDTMUh0PKw2Mg,752
162
162
  umap/static/umap/css/dialog.css,sha256=BNHxSqzrUTpcEwDlLDn5I8En-uoB7cR94zkr4PvsQPY,952
163
- umap/static/umap/css/form.css,sha256=KU7bYaFOm__QLFAoY-GIeHLtxssA595TnvTKRp0PrfM,13834
163
+ umap/static/umap/css/form.css,sha256=V4o7wUNPNUU8bCzxjBEToS1-NlkMxxDmiBSsVIlnD5E,14431
164
164
  umap/static/umap/css/icon.css,sha256=lxlCkFMRtENwfAYZNznGAqnFmAFCha0d6njcqqOFDik,5755
165
165
  umap/static/umap/css/importers.css,sha256=xSpvBPy6s4ZGFW6c34sOaSCxO5JvBk_51enBSDR0dZY,1651
166
166
  umap/static/umap/css/panel.css,sha256=YCtDmZdWwrGZmOz7FA4WYKD323vlsuRxQp71-hq_pc0,4204
@@ -251,7 +251,7 @@ umap/static/umap/js/modules/schema.js,sha256=ux6B7x52dwEyCGyY_4QuPaN97ocddQaK2jS
251
251
  umap/static/umap/js/modules/share.js,sha256=eJ5BISGhGTp7908k-zQY94R5J04MzFZX5PLbYhP-_HE,7227
252
252
  umap/static/umap/js/modules/slideshow.js,sha256=iIb2J_JSRYo1tyWwqoYGyhejdTctveY0Jne8nKdnG7g,3610
253
253
  umap/static/umap/js/modules/tableeditor.js,sha256=tNZMAjzd7ji9MEcSTctH6D7gH3sK2ZgjCSiSQbFxxbQ,9901
254
- umap/static/umap/js/modules/umap.js,sha256=hHH3NP-i8P_1kLGT-YHzZn57MYyGHTJ2F-PNQ-CbZpI,54802
254
+ umap/static/umap/js/modules/umap.js,sha256=bLIFxr4Opxej9PsjKSh3gBw7HoAR8VbapqiWDzAkV7Q,54767
255
255
  umap/static/umap/js/modules/urls.js,sha256=76cFqycj2O8huuoYYBvxnVt2Fc2UDbgrRsiv6lQmcSY,890
256
256
  umap/static/umap/js/modules/utils.js,sha256=tN9AJYuypvzIcuLs6YjsW85qsHMx5nvBph3TTNw8HKQ,15938
257
257
  umap/static/umap/js/modules/data/features.js,sha256=l4-6Uaqmr5Fx68SjOOgeqGkHiR1aXZtWXuT4ovYlrgs,33115
@@ -294,8 +294,8 @@ umap/static/umap/locale/bg.js,sha256=a1HBelbjSXVyc5J11NcDNXqvhI_bSQRIA2guD1CNsUE
294
294
  umap/static/umap/locale/bg.json,sha256=VPCUC_oUi2VTjOZHhwh4bfLN9AQZj1iUbmAzgTgs0R4,33605
295
295
  umap/static/umap/locale/br.js,sha256=-vDSLoKGUBwiPqxT5vaV5gFnkWkorZrHR0kALgzhOMQ,32663
296
296
  umap/static/umap/locale/br.json,sha256=QElv4xsj_J40tvWAUurfCnU1v3FyiHL59V45bCpYWWU,32598
297
- umap/static/umap/locale/ca.js,sha256=gNKGKLehHVDHqTNWxblcPteOlOseckgjayaCClOaVKg,32306
298
- umap/static/umap/locale/ca.json,sha256=z2qghJsAmx94iI7nw6-kSKAhcfzaPQtrZqeMHEsrWjA,32241
297
+ umap/static/umap/locale/ca.js,sha256=-49KhNVeAU1l1nN6o5RDe3-3QPdntZLn89v4Bl93AZw,32538
298
+ umap/static/umap/locale/ca.json,sha256=OTGJoIwuWO20Nv54xcP08pUKFiQh6SwJwAcjizJ65yc,32473
299
299
  umap/static/umap/locale/cs_CZ.js,sha256=kVMYUGiRojyO1D_5Fecz8uJdjz88-lzrysniURUsP7Y,33686
300
300
  umap/static/umap/locale/cs_CZ.json,sha256=lIUb2uj896kyhexfMi_41AmvWTFkiR3CmOq31EO4t70,33615
301
301
  umap/static/umap/locale/da.js,sha256=aj89cjPA7sZSDquiSMmvwue8dV4RloAKJEPiMM3txLQ,31152
@@ -555,6 +555,7 @@ umap/tests/integration/test_edit_polygon.py,sha256=nuidgs0v5sgFxcQKirtF5ncE3z7_S
555
555
  umap/tests/integration/test_export_map.py,sha256=jH0BXm-7Ov26OEkve9-xKMfRwXwR73zRrZLIQusyUOY,12112
556
556
  umap/tests/integration/test_facets_browser.py,sha256=J--y2rpI__0RIPzcTx4Kn2UwuurFdh-6i_Y4c6GxUyY,10658
557
557
  umap/tests/integration/test_features_id_generation.py,sha256=mGoLIKV3xTc59XSnNPbAgHeG6RjMYwhmaVEmcqSnv-4,1463
558
+ umap/tests/integration/test_iframe.py,sha256=CQ3AdjqLjaI0JKFZ4lnBWedtmvgJ5G6nnGZESoSBqHY,898
558
559
  umap/tests/integration/test_import.py,sha256=bG2ec8C7a3GHAqP5W0Go4sYEIVRyrkGGQuR0OOlT7A0,36768
559
560
  umap/tests/integration/test_map.py,sha256=2ZO54RFVycJKGczfioX0nU1oCu29FVC9hR6wbT4s1NE,8736
560
561
  umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
@@ -576,8 +577,8 @@ umap/tests/integration/test_view_marker.py,sha256=NFCwNez__E_WsE1DuW5RuB0HVKDP4C
576
577
  umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
577
578
  umap/tests/integration/test_view_polyline.py,sha256=aJoXKmLhJaN0yhPdDCVskZNGx3q3mLDkjVPhZ30cadA,13959
578
579
  umap/tests/integration/test_websocket_sync.py,sha256=iASlErX-nZZWu7zGvSe1KHL68EXnEOTjEL9B6wZK-KQ,28300
579
- umap_project-3.0.3.dist-info/METADATA,sha256=HX0XVxetQ8Rilt9VNxjsjZ3MRn7hsiR6UU_bu8c5lkU,3016
580
- umap_project-3.0.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
581
- umap_project-3.0.3.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
582
- umap_project-3.0.3.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
583
- umap_project-3.0.3.dist-info/RECORD,,
580
+ umap_project-3.0.4.dist-info/METADATA,sha256=aSLCZFQHcMSDuXk6w-JhagNOfv-jElHhoaVMPM_-sL4,3016
581
+ umap_project-3.0.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
582
+ umap_project-3.0.4.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
583
+ umap_project-3.0.4.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
584
+ umap_project-3.0.4.dist-info/RECORD,,