umap-project 1.14.0a1__py3-none-any.whl → 1.14.0a2__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 (182) hide show
  1. umap/__init__.py +1 -1
  2. umap/static/.gitignore +0 -0
  3. umap/static/umap/base.css +994 -0
  4. umap/static/umap/bitbucket.png +0 -0
  5. umap/static/umap/content.css +395 -0
  6. umap/static/umap/favicons/apple-touch-icon.png +0 -0
  7. umap/static/umap/favicons/favicon.ico +0 -0
  8. umap/static/umap/favicons/icon-192.png +0 -0
  9. umap/static/umap/favicons/icon-512.png +0 -0
  10. umap/static/umap/favicons/icon.svg +5 -0
  11. umap/static/umap/font/FiraSans-Light.woff +0 -0
  12. umap/static/umap/font/FiraSans-Light.woff2 +0 -0
  13. umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
  14. umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
  15. umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
  16. umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
  17. umap/static/umap/font.css +33 -0
  18. umap/static/umap/github.png +0 -0
  19. umap/static/umap/img/16-white.svg +190 -0
  20. umap/static/umap/img/16.svg +182 -0
  21. umap/static/umap/img/24-white.svg +62 -0
  22. umap/static/umap/img/24.svg +90 -0
  23. umap/static/umap/img/edit.svg +7 -0
  24. umap/static/umap/img/icon-bg.png +0 -0
  25. umap/static/umap/img/logo.svg +4 -0
  26. umap/static/umap/img/logo_filigree.png +0 -0
  27. umap/static/umap/img/logo_small.svg +14 -0
  28. umap/static/umap/img/marker.png +0 -0
  29. umap/static/umap/img/opensource.svg +7 -0
  30. umap/static/umap/img/osm.svg +7 -0
  31. umap/static/umap/img/search.gif +0 -0
  32. umap/static/umap/img/source/16-white.svg +980 -0
  33. umap/static/umap/img/source/16.svg +201 -0
  34. umap/static/umap/img/source/24-white.svg +83 -0
  35. umap/static/umap/img/source/24.svg +110 -0
  36. umap/static/umap/js/components/fragment.js +13 -0
  37. umap/static/umap/js/modules/global.js +8 -0
  38. umap/static/umap/js/modules/urls.js +29 -0
  39. umap/static/umap/js/umap.autocomplete.js +336 -0
  40. umap/static/umap/js/umap.browser.js +148 -0
  41. umap/static/umap/js/umap.controls.js +1542 -0
  42. umap/static/umap/js/umap.core.js +851 -0
  43. umap/static/umap/js/umap.datalayer.permissions.js +72 -0
  44. umap/static/umap/js/umap.features.js +1216 -0
  45. umap/static/umap/js/umap.forms.js +1267 -0
  46. umap/static/umap/js/umap.icon.js +234 -0
  47. umap/static/umap/js/umap.importer.js +166 -0
  48. umap/static/umap/js/umap.js +2010 -0
  49. umap/static/umap/js/umap.layer.js +1636 -0
  50. umap/static/umap/js/umap.permissions.js +212 -0
  51. umap/static/umap/js/umap.popup.js +340 -0
  52. umap/static/umap/js/umap.share.js +254 -0
  53. umap/static/umap/js/umap.slideshow.js +165 -0
  54. umap/static/umap/js/umap.tableeditor.js +120 -0
  55. umap/static/umap/js/umap.ui.js +240 -0
  56. umap/static/umap/js/umap.xhr.js +304 -0
  57. umap/static/umap/locale/am_ET.js +447 -0
  58. umap/static/umap/locale/am_ET.json +445 -0
  59. umap/static/umap/locale/ar.js +447 -0
  60. umap/static/umap/locale/ar.json +445 -0
  61. umap/static/umap/locale/ast.js +447 -0
  62. umap/static/umap/locale/ast.json +445 -0
  63. umap/static/umap/locale/bg.js +447 -0
  64. umap/static/umap/locale/bg.json +445 -0
  65. umap/static/umap/locale/br.js +447 -0
  66. umap/static/umap/locale/br.json +445 -0
  67. umap/static/umap/locale/ca.js +447 -0
  68. umap/static/umap/locale/ca.json +445 -0
  69. umap/static/umap/locale/cs_CZ.js +447 -0
  70. umap/static/umap/locale/cs_CZ.json +445 -0
  71. umap/static/umap/locale/da.js +447 -0
  72. umap/static/umap/locale/da.json +445 -0
  73. umap/static/umap/locale/de.js +447 -0
  74. umap/static/umap/locale/de.json +445 -0
  75. umap/static/umap/locale/el.js +447 -0
  76. umap/static/umap/locale/el.json +445 -0
  77. umap/static/umap/locale/en.js +447 -0
  78. umap/static/umap/locale/en.json +445 -0
  79. umap/static/umap/locale/en_US.json +445 -0
  80. umap/static/umap/locale/es.js +447 -0
  81. umap/static/umap/locale/es.json +445 -0
  82. umap/static/umap/locale/et.js +447 -0
  83. umap/static/umap/locale/et.json +445 -0
  84. umap/static/umap/locale/eu.js +413 -0
  85. umap/static/umap/locale/eu.json +411 -0
  86. umap/static/umap/locale/fa_IR.js +447 -0
  87. umap/static/umap/locale/fa_IR.json +445 -0
  88. umap/static/umap/locale/fi.js +447 -0
  89. umap/static/umap/locale/fi.json +445 -0
  90. umap/static/umap/locale/fr.js +447 -0
  91. umap/static/umap/locale/fr.json +445 -0
  92. umap/static/umap/locale/gl.js +447 -0
  93. umap/static/umap/locale/gl.json +445 -0
  94. umap/static/umap/locale/he.js +447 -0
  95. umap/static/umap/locale/he.json +445 -0
  96. umap/static/umap/locale/hr.js +447 -0
  97. umap/static/umap/locale/hr.json +445 -0
  98. umap/static/umap/locale/hu.js +447 -0
  99. umap/static/umap/locale/hu.json +445 -0
  100. umap/static/umap/locale/id.js +447 -0
  101. umap/static/umap/locale/id.json +445 -0
  102. umap/static/umap/locale/is.js +447 -0
  103. umap/static/umap/locale/is.json +445 -0
  104. umap/static/umap/locale/it.js +447 -0
  105. umap/static/umap/locale/it.json +445 -0
  106. umap/static/umap/locale/ja.js +447 -0
  107. umap/static/umap/locale/ja.json +445 -0
  108. umap/static/umap/locale/ko.js +447 -0
  109. umap/static/umap/locale/ko.json +445 -0
  110. umap/static/umap/locale/lt.js +447 -0
  111. umap/static/umap/locale/lt.json +445 -0
  112. umap/static/umap/locale/ms.js +447 -0
  113. umap/static/umap/locale/ms.json +445 -0
  114. umap/static/umap/locale/nl.js +447 -0
  115. umap/static/umap/locale/nl.json +445 -0
  116. umap/static/umap/locale/no.js +447 -0
  117. umap/static/umap/locale/no.json +445 -0
  118. umap/static/umap/locale/pl.js +447 -0
  119. umap/static/umap/locale/pl.json +445 -0
  120. umap/static/umap/locale/pl_PL.json +445 -0
  121. umap/static/umap/locale/pt.js +447 -0
  122. umap/static/umap/locale/pt.json +445 -0
  123. umap/static/umap/locale/pt_BR.js +447 -0
  124. umap/static/umap/locale/pt_BR.json +445 -0
  125. umap/static/umap/locale/pt_PT.js +447 -0
  126. umap/static/umap/locale/pt_PT.json +445 -0
  127. umap/static/umap/locale/ro.js +447 -0
  128. umap/static/umap/locale/ro.json +445 -0
  129. umap/static/umap/locale/ru.js +447 -0
  130. umap/static/umap/locale/ru.json +445 -0
  131. umap/static/umap/locale/si.js +439 -0
  132. umap/static/umap/locale/si.json +437 -0
  133. umap/static/umap/locale/sk_SK.js +447 -0
  134. umap/static/umap/locale/sk_SK.json +445 -0
  135. umap/static/umap/locale/sl.js +447 -0
  136. umap/static/umap/locale/sl.json +445 -0
  137. umap/static/umap/locale/sr.js +447 -0
  138. umap/static/umap/locale/sr.json +445 -0
  139. umap/static/umap/locale/sv.js +447 -0
  140. umap/static/umap/locale/sv.json +445 -0
  141. umap/static/umap/locale/th_TH.js +447 -0
  142. umap/static/umap/locale/th_TH.json +445 -0
  143. umap/static/umap/locale/tr.js +447 -0
  144. umap/static/umap/locale/tr.json +445 -0
  145. umap/static/umap/locale/uk_UA.js +447 -0
  146. umap/static/umap/locale/uk_UA.json +445 -0
  147. umap/static/umap/locale/vi.js +447 -0
  148. umap/static/umap/locale/vi.json +445 -0
  149. umap/static/umap/locale/vi_VN.json +445 -0
  150. umap/static/umap/locale/zh.js +447 -0
  151. umap/static/umap/locale/zh.json +445 -0
  152. umap/static/umap/locale/zh_CN.json +445 -0
  153. umap/static/umap/locale/zh_TW.Big5.json +445 -0
  154. umap/static/umap/locale/zh_TW.js +447 -0
  155. umap/static/umap/locale/zh_TW.json +445 -0
  156. umap/static/umap/map.css +1843 -0
  157. umap/static/umap/nav.css +81 -0
  158. umap/static/umap/openstreetmap.png +0 -0
  159. umap/static/umap/test/.eslintrc +22 -0
  160. umap/static/umap/test/Choropleth.js +243 -0
  161. umap/static/umap/test/Controls.js +100 -0
  162. umap/static/umap/test/DataLayer.js +495 -0
  163. umap/static/umap/test/Feature.js +382 -0
  164. umap/static/umap/test/Map.Export.js +106 -0
  165. umap/static/umap/test/Map.Init.js +46 -0
  166. umap/static/umap/test/Map.js +342 -0
  167. umap/static/umap/test/Marker.js +122 -0
  168. umap/static/umap/test/Permissions.js +74 -0
  169. umap/static/umap/test/Polygon.js +367 -0
  170. umap/static/umap/test/Polyline.js +402 -0
  171. umap/static/umap/test/TableEditor.js +100 -0
  172. umap/static/umap/test/URLs.js +54 -0
  173. umap/static/umap/test/Util.js +549 -0
  174. umap/static/umap/test/_pre.js +460 -0
  175. umap/static/umap/test/index.html +135 -0
  176. umap/static/umap/theme.css +1 -0
  177. umap/static/umap/twitter.png +0 -0
  178. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/METADATA +1 -1
  179. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/RECORD +182 -6
  180. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/WHEEL +0 -0
  181. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/entry_points.txt +0 -0
  182. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/licenses/LICENSE +0 -0
Binary file
@@ -0,0 +1,395 @@
1
+ /*
2
+ * Content
3
+ */
4
+ body.content {
5
+ width: 100%;
6
+ height: 100%;
7
+ overflow-x: hidden;
8
+ }
9
+
10
+
11
+ /* Search form */
12
+ input::-webkit-input-placeholder, ::-webkit-input-placeholder {
13
+ color: #a5a5a5;
14
+ }
15
+
16
+ input:-moz-placeholder, :-moz-placeholder {
17
+ color: #a5a5a5;
18
+ }
19
+
20
+ #umap-ui-container textarea {
21
+ height: 100px;
22
+ margin-bottom: 14px;
23
+ }
24
+ #umap-ui-container select {
25
+ margin-bottom: 10px;
26
+ }
27
+
28
+ #umap-ui-container.warning .button {
29
+ background-color: #c60f13;
30
+ border: 1px solid #7f0a0c;
31
+ }
32
+ #umap-ui-container.warning .button:hover {
33
+ background-color: #970b0e;
34
+ }
35
+
36
+
37
+ /* **************** */
38
+ /* Login icons */
39
+ /* **************** */
40
+ .login-grid li,
41
+ .login-grid a {
42
+ display: inline-block;
43
+ }
44
+
45
+ .login-grid a {
46
+ border: 1px solid #e5e5e5;
47
+ padding: 5px;
48
+ color: #000;
49
+ background-position: center bottom;
50
+ background-repeat: no-repeat;
51
+ background-size: 92px 92px;
52
+ height: 92px;
53
+ width: 92px;
54
+ margin-right: 10px;
55
+ }
56
+ .login-grid .login-github {
57
+ background-image: url("./github.png");
58
+ }
59
+ .login-grid .login-bitbucket {
60
+ background-image: url("./bitbucket.png");
61
+ }
62
+ .login-grid .login-twitter-oauth2 {
63
+ background-image: url("./twitter.png");
64
+ }
65
+ .login-grid .login-openstreetmap {
66
+ background-image: url("./openstreetmap.png");
67
+ }
68
+
69
+
70
+ /* **************************** */
71
+ /* home */
72
+ /* **************************** */
73
+ .map_fragment {
74
+ width: 100%;
75
+ }
76
+ .map_list .map_fragment,
77
+ .demo_map .map_fragment {
78
+ height: 210px;
79
+ }
80
+ .map_list .legend {
81
+ padding-top: 7px;
82
+ margin-bottom: 28px;
83
+ text-align: center;
84
+ font-size: 1.2em;
85
+ }
86
+ .map_list .legend a {
87
+ color: #222;
88
+ font-weight: bold;
89
+ }
90
+ .map_list .legend em,
91
+ .map_list .legend em a {
92
+ color: #444;
93
+ font-weight: normal;
94
+ }
95
+ .map_list hr {
96
+ display: none;
97
+ }
98
+ .map_list .wide + hr {
99
+ display: block;
100
+ }
101
+ .umap-features-list ul {
102
+ margin-top: 14px;
103
+ }
104
+ .umap-features-list li {
105
+ line-height: 21px;
106
+ }
107
+ .umap-features-list li:before {
108
+ content: "✔";
109
+ color: #323E56;
110
+ padding-right: 5px;
111
+ }
112
+ .summary {
113
+ background-color: #eee;
114
+ }
115
+ .summary .row {
116
+ margin-top: 0;
117
+ padding-top: 20px;
118
+ }
119
+ .search_wrapper .row {
120
+ margin-top: 0;
121
+ padding-top: 20px;
122
+ }
123
+ .showcase-map {
124
+ background-color: #fff;
125
+ padding-bottom: 28px;
126
+ }
127
+ .showcase-map .row {
128
+ margin-top: 28px;
129
+ }
130
+ h2.section {
131
+ text-transform: uppercase;
132
+ color: #666;
133
+ text-align: center;
134
+ padding-top: 28px;
135
+ }
136
+ h2.tabs a {
137
+ color: #666;
138
+ }
139
+ h2.tabs a:not(.selected) {
140
+ font-weight: normal;
141
+ color: #666;
142
+ }
143
+ h2.tabs a:hover {
144
+ text-decoration: underline;
145
+ }
146
+ .showcase-map .map_fragment {
147
+ height: 400px;
148
+ }
149
+ .highlights {
150
+ text-align: center;
151
+ }
152
+ .highlights img.colophon {
153
+ display: inline-block;
154
+ height: 128px;
155
+ }
156
+ .demo-instance-warning {
157
+ background-color: #c0392b;
158
+ color: #efefef;
159
+ margin-top: 0;
160
+ padding: 14px 0;
161
+ }
162
+ .demo-instance-warning .row {
163
+ margin-top: 0;
164
+ }
165
+ .demo-instance-warning a {
166
+ color: #efefef;
167
+ text-decoration: underline;
168
+ }
169
+ body.content #umap-ui-container {
170
+ background-color: #fff;
171
+ }
172
+
173
+
174
+ /* **************************** */
175
+ /* colors */
176
+ /* **************************** */
177
+
178
+ input[type="submit"],
179
+ .button {
180
+ background-color: #79c1c0;
181
+ color: #323737;
182
+ }
183
+ .wrapper input[type="submit"]:hover {
184
+ background-color: #689191;
185
+ }
186
+ .wrapper .neutral, .wrapper input[type="submit"].neutral {
187
+ background-color: #ddd;
188
+ color: #323737;
189
+ }
190
+ .wrapper.somber {
191
+ background-color: #2E3641;
192
+ color: #efefef;
193
+ padding-top: 20px;
194
+ margin-top: 20px;
195
+ }
196
+ .wrapper.somber .row {
197
+ margin-top: 0;
198
+ }
199
+ .wrapper .button,
200
+ .wrapper input {
201
+ height: 56px;
202
+ line-height: 43px;
203
+ }
204
+
205
+ /* **************************** */
206
+ /* 404 */
207
+ /* **************************** */
208
+ .content404 {
209
+ width: 400px;
210
+ margin-left: auto;
211
+ margin-right: auto;
212
+ margin-top: 100px;
213
+ text-align: center;
214
+ }
215
+ .content404 a {
216
+ color: #3A4259;
217
+ }
218
+ .content404 h1 {
219
+ font-size: 10em;
220
+ margin-bottom: 0;
221
+ line-height: 0.5em;
222
+ margin-top: 40px;
223
+ }
224
+ .content404 h2 {
225
+ font-size: 4em;
226
+ margin-top: 0;
227
+ }
228
+ .content404 img {
229
+ width: 32%;
230
+ }
231
+
232
+
233
+ /* **************************** */
234
+ /* Autocomplete */
235
+ /* **************************** */
236
+ ul.umap-autocomplete {
237
+ position: absolute;
238
+ background-color: white;
239
+ z-index: 1010;
240
+ box-shadow: 0 4px 9px #999999;
241
+ }
242
+ .umap-autocomplete li {
243
+ height: 56px;
244
+ line-height: 28px;
245
+ padding: 14px;
246
+ }
247
+ .umap-autocomplete li.on {
248
+ background-color: SeaGreen;
249
+ cursor: pointer;
250
+ }
251
+ .umap-singleresult {
252
+ margin-bottom: 10px;
253
+ }
254
+ .umap-singleresult div,
255
+ .umap-multiresult li {
256
+ width: 100%;
257
+ background-color: #2e3436;
258
+ border-radius: 2px;
259
+ border: 1px solid #202425;
260
+ padding: 7px;
261
+ color: #eeeeec;
262
+ }
263
+ .umap-multiresult li + li {
264
+ margin-top: 7px;
265
+ }
266
+ .umap-singleresult div .close,
267
+ .umap-multiresult li .close {
268
+ float: right;
269
+ cursor: pointer;
270
+ }
271
+
272
+ /* **************************** */
273
+ /* Messages */
274
+ /* **************************** */
275
+ .messages li {
276
+ border-radius: 1px;
277
+ color: white;
278
+ margin-bottom: 20px;
279
+ padding: 20px;
280
+ text-align: center;
281
+ width: 100%;
282
+ background-color: #444;
283
+ font-weight: bold;
284
+ }
285
+
286
+ .messages .success {
287
+ background-color: #16a085;
288
+ }
289
+
290
+ .messages .error {
291
+ background-color: #c60f13;
292
+ }
293
+
294
+
295
+ /* **************************** */
296
+ /* Dashboard */
297
+ /* **************************** */
298
+ table.maps {
299
+ width: 100%;
300
+ }
301
+ table.maps .map_fragment {
302
+ display: block;
303
+ height: 80vh;
304
+ width: 100%;
305
+ }
306
+ table.maps tbody tr:nth-child(odd) {
307
+ background-color: #f4f4f4;
308
+ }
309
+ table.maps td {
310
+ text-align: center;
311
+ }
312
+ table.maps thead tr {
313
+ line-height: 2em;
314
+ }
315
+ table.maps .button {
316
+ margin-bottom: 2px;
317
+ padding:4px 6px;
318
+ height: 36px;
319
+ line-height: 23px;
320
+ }
321
+
322
+ /* **************************** */
323
+ /* Dialog */
324
+ /* **************************** */
325
+ dialog {
326
+ width: 90vw;
327
+ height: 90vh;
328
+ }
329
+ dialog::backdrop {
330
+ background: #fff5;
331
+ backdrop-filter: blur(4px);
332
+ }
333
+ .close-dialog {
334
+ text-align: center;
335
+ margin-bottom: 0;
336
+ }
337
+
338
+ /* ********************************* */
339
+ /* Pagination */
340
+ /* ********************************* */
341
+ .pagination {
342
+ display: flex;
343
+ flex-direction: row;
344
+ justify-content: space-around;
345
+ margin: 1rem;
346
+ border-top: 1px solid gray;
347
+ }
348
+ .pagination > * {
349
+ padding: 1rem;
350
+ }
351
+
352
+
353
+ /* ************************************************* */
354
+ /* ********************* MOBILE ******************** */
355
+ /* ************************************************* */
356
+ @media only screen and (max-width:770px) {
357
+ .row {
358
+ padding-left: 5px;
359
+ padding-right: 5px;
360
+ }
361
+ .twide {
362
+ width: 100%;
363
+ padding-left: 0!important;
364
+ }
365
+ .tthird {
366
+ width: 33.3333%;
367
+ }
368
+ .ttwo-third {
369
+ width: 66.6666%;
370
+ }
371
+ .tshow {
372
+ display: inherit;
373
+ }
374
+ .thide {
375
+ display: none;
376
+ }
377
+ }
378
+ @media only screen and (max-width: 639px) {
379
+ .mwide {
380
+ padding-left: 0!important;
381
+ width: 100%;
382
+ }
383
+ .mwide + .mwide {
384
+ margin-top: 20px;
385
+ }
386
+ .mthird {
387
+ width: 33.3333%;
388
+ }
389
+ .mshow {
390
+ display: inherit;
391
+ }
392
+ .mhide {
393
+ display: none;
394
+ }
395
+ }
Binary file
Binary file
Binary file
@@ -0,0 +1,5 @@
1
+ <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
2
+ <rect x=".3" y=".3" width="15.5" height="15.5" rx="7.8" fill="#F2F2F2" stroke="#F2F2F2" stroke-width=".5"/>
3
+ <path d="M5.9 3.5A5 5 0 0 0 8 13C4.1 9.4 3.2 5 5.9 3.5ZM8 13a5 5 0 0 0 2.1-9.5C12.8 4.9 12 9.4 8 13Z" fill="#323E56"/>
4
+ <path d="M9.9 5.6a1.9 1.9 0 1 1-3.8 0 1.9 1.9 0 0 1 3.8 0Z" fill="#323E56"/>
5
+ </svg>
@@ -0,0 +1,33 @@
1
+ /* ************************************************* */
2
+ /* *********************** FONT ******************** */
3
+ /* ************************************************* */
4
+
5
+
6
+ @font-face {
7
+ font-family: 'fira_sans';
8
+ src: url('./font/FiraSans-Light.woff2') format('woff2'),
9
+ url('./font/FiraSans-Light.woff') format('woff');
10
+ font-weight: normal;
11
+ font-style: normal;
12
+ font-display: swap;
13
+ }
14
+
15
+ @font-face {
16
+ font-family: 'fira_sans';
17
+ src: url('./font/FiraSans-SemiBold.woff2') format('woff2'),
18
+ url('./font/FiraSans-SemiBold.woff') format('woff');
19
+ font-weight: bold;
20
+ font-style: normal;
21
+ font-display: swap;
22
+ }
23
+
24
+ @font-face {
25
+ font-family: 'fira_sans';
26
+ src: url('./font/FiraSans-LightItalic.woff2') format('woff2'),
27
+ url('./font/FiraSans-LightItalic.woff') format('woff');
28
+ font-weight: normal;
29
+ font-style: italic;
30
+ font-display: swap;
31
+ }
32
+
33
+
Binary file