imio.smartweb.core 1.2.90__py3-none-any.whl → 1.3__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.
Files changed (96) hide show
  1. imio/smartweb/core/browser/controlpanel.py +42 -5
  2. imio/smartweb/core/browser/utils.py +4 -1
  3. imio/smartweb/core/configure.zcml +5 -1
  4. imio/smartweb/core/contents/__init__.py +2 -0
  5. imio/smartweb/core/contents/rest/campaign/__init__.py +0 -0
  6. imio/smartweb/core/contents/rest/campaign/configure.zcml +80 -0
  7. imio/smartweb/core/contents/rest/campaign/content.py +83 -0
  8. imio/smartweb/core/contents/rest/campaign/endpoint.py +211 -0
  9. imio/smartweb/core/contents/rest/campaign/view.pt +19 -0
  10. imio/smartweb/core/contents/rest/campaign/view.py +29 -0
  11. imio/smartweb/core/contents/rest/configure.zcml +1 -0
  12. imio/smartweb/core/interfaces.py +4 -0
  13. imio/smartweb/core/overrides.zcml +10 -0
  14. imio/smartweb/core/profiles/default/metadata.xml +1 -1
  15. imio/smartweb/core/profiles/ideabox/browserlayer.xml +7 -0
  16. imio/smartweb/core/profiles/ideabox/metadata.xml +5 -0
  17. imio/smartweb/core/profiles/ideabox/registry/iaideabox.xml +9 -0
  18. imio/smartweb/core/profiles/ideabox/types/imio.smartweb.CampaignView.xml +40 -0
  19. imio/smartweb/core/profiles/ideabox/types/imio.smartweb.Folder.xml +71 -0
  20. imio/smartweb/core/profiles/ideabox/types.xml +17 -0
  21. imio/smartweb/core/profiles/ideabox_uninstall/browserlayer.xml +7 -0
  22. imio/smartweb/core/profiles/ideabox_uninstall/types/imio.smartweb.Folder.xml +25 -0
  23. imio/smartweb/core/profiles/ideabox_uninstall/types.xml +4 -0
  24. imio/smartweb/core/profiles/testing/metadata.xml +1 -0
  25. imio/smartweb/core/profiles/testing/registry.xml +2 -2
  26. imio/smartweb/core/profiles.zcml +18 -0
  27. imio/smartweb/core/subscribers.py +27 -1
  28. imio/smartweb/core/subscribers.zcml +8 -0
  29. imio/smartweb/core/tests/resources/json_ideabox_campaign.json +222 -0
  30. imio/smartweb/core/tests/resources/json_ideabox_campaigns.json +425 -0
  31. imio/smartweb/core/tests/resources/json_ideabox_projects.json +1871 -0
  32. imio/smartweb/core/tests/test_iadeliberations.py +38 -40
  33. imio/smartweb/core/tests/test_ideabox.py +120 -0
  34. imio/smartweb/core/tests/test_procedure.py +7 -3
  35. imio/smartweb/core/tests/test_rest.py +7 -0
  36. imio/smartweb/core/tests/test_vocabularies.py +8 -10
  37. imio/smartweb/core/upgrades/configure.zcml +16 -1
  38. imio/smartweb/core/upgrades/upgrades.py +64 -0
  39. imio/smartweb/core/utils.py +33 -0
  40. imio/smartweb/core/viewlets/actions.py +10 -0
  41. imio/smartweb/core/viewlets/header_actions.pt +2 -0
  42. imio/smartweb/core/viewlets/offcanvas.pt +31 -6
  43. imio/smartweb/core/viewlets/ogptags.py +9 -0
  44. imio/smartweb/core/viewlets/subsite_logo.pt +1 -1
  45. imio/smartweb/core/vocabularies.py +35 -4
  46. imio/smartweb/core/vocabularies.zcml +6 -0
  47. imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css +1 -1
  48. imio/smartweb/core/webcomponents/build/css/420.smartweb-webcomponents-compiled.css +1 -0
  49. imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css +1 -1
  50. imio/smartweb/core/webcomponents/build/css/666.smartweb-webcomponents-compiled.css +1 -0
  51. imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css +1 -1
  52. imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +1 -1
  53. imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js +2 -0
  54. imio/smartweb/core/webcomponents/build/js/{828.smartweb-webcomponents-compiled.js.LICENSE.txt → 141.smartweb-webcomponents-compiled.js.LICENSE.txt} +3 -3
  55. imio/smartweb/core/webcomponents/build/js/15.smartweb-webcomponents-compiled.js +2 -0
  56. imio/smartweb/core/webcomponents/build/js/21.smartweb-webcomponents-compiled.js +1 -0
  57. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +1 -1
  58. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -5
  59. imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +1 -1
  60. imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
  61. imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js +1 -0
  62. imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js +1 -1
  63. imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js +1 -1
  64. imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -1
  65. imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
  66. imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js +1 -0
  67. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
  68. imio/smartweb/core/webcomponents/package.json +80 -80
  69. imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +1 -0
  70. imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.jsx +306 -0
  71. imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.scss +672 -0
  72. imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCard.jsx +79 -0
  73. imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx +193 -0
  74. imio/smartweb/core/webcomponents/src/components/Campaign/CampaignList/CampaignList.jsx +67 -0
  75. imio/smartweb/core/webcomponents/src/components/Campaign/Filters/Filter.jsx +259 -0
  76. imio/smartweb/core/webcomponents/src/components/Campaign/index.js +2 -0
  77. imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss +1 -0
  78. imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +0 -1
  79. imio/smartweb/core/webcomponents/src/hooks/useAxios.js +45 -9
  80. imio/smartweb/core/webcomponents/src/index.jsx +2 -0
  81. imio/smartweb/core/webcomponents/src/index.scss +2 -2
  82. imio/smartweb/core/webcomponents/src/utils/CampaignMap.jsx +177 -0
  83. imio/smartweb/core/webcomponents/src/utils/Map.jsx +1 -1
  84. imio/smartweb/core/webcomponents/src/utils/Map.scss +15 -1
  85. imio/smartweb/core/webcomponents/src/utils/translation.js +235 -199
  86. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/METADATA +18 -1
  87. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/RECORD +94 -61
  88. imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js +0 -2
  89. imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js +0 -2
  90. /imio/smartweb/core/webcomponents/build/js/{499.smartweb-webcomponents-compiled.js.LICENSE.txt → 15.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  91. /imio.smartweb.core-1.2.90-py3.12-nspkg.pth → /imio.smartweb.core-1.3-py3.12-nspkg.pth +0 -0
  92. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/LICENSE.GPL +0 -0
  93. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/LICENSE.rst +0 -0
  94. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/WHEEL +0 -0
  95. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/namespace_packages.txt +0 -0
  96. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/top_level.txt +0 -0
@@ -1,20 +1,21 @@
1
- imio.smartweb.core-1.2.90-py3.12-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
1
+ imio.smartweb.core-1.3-py3.12-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
2
2
  imio/smartweb/core/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
3
3
  imio/smartweb/core/config.py,sha256=BUgfvh4hCaw0onCYAG4gQI1O4hZ-GzXWEltdHi4YLIs,337
4
- imio/smartweb/core/configure.zcml,sha256=PeC4rF--rF6MfVQ0NzggQrZWIl35oPtJdEhvQwGxhhI,1459
4
+ imio/smartweb/core/configure.zcml,sha256=sCJwomh6ve6OPSDexKNacz2PUkqzI5EVn8SEMZo4Sfw,1630
5
5
  imio/smartweb/core/indexers.py,sha256=Lv1lHWFzM71ju822N8y7w61GDOyi6qmUbveZNI1tCz4,3887
6
6
  imio/smartweb/core/indexers.zcml,sha256=XHvKTkNcF5mkX-dVwRbjNsrBwIwwqa2Cm81PoXBqtow,968
7
- imio/smartweb/core/interfaces.py,sha256=ioMwBC-HdOyz35HQGMZTksaJf8GLS2hbRz2wjvB_r5w,1217
7
+ imio/smartweb/core/interfaces.py,sha256=MYmxdG779CYXjZ1-n3sKTVqohM1i364kqZ_c_Pzd3a4,1312
8
+ imio/smartweb/core/overrides.zcml,sha256=Lffmp-e2rKC4PUYxwOYjIx4W0_PW1oi5eT_dFq9bROo,292
8
9
  imio/smartweb/core/permissions.zcml,sha256=ZyBEARyO8NAq7tKFTb3G1FqEWERT1mQQ6vCVzji1ci8,1777
9
- imio/smartweb/core/profiles.zcml,sha256=H9crlNrI8zLxgmkpbkhkD3Ti5LRF8Zutk3AJXNBpvw0,2299
10
+ imio/smartweb/core/profiles.zcml,sha256=KjaQaXhygRiOvJpShLEzS4Oy0Zah1bYCFel-zi0FOJU,2942
10
11
  imio/smartweb/core/setuphandlers.py,sha256=k1K8-ezP2gELwCNM5An2bBwQJjAKeS0rYtr2-q_InK8,932
11
- imio/smartweb/core/subscribers.py,sha256=zOmwTw0XvE6_bdoZI7qQln_W__7MxXCnKh6QwNK65x4,5937
12
- imio/smartweb/core/subscribers.zcml,sha256=BnrxZp4AfsRYreYHsJJxKgPQZJ-wpNM2XnDTuDUbBkA,1616
12
+ imio/smartweb/core/subscribers.py,sha256=IXKvQJGSVnCl5OAbxyeIwcAtONt7oxa4VWFv8MeUBnA,7039
13
+ imio/smartweb/core/subscribers.zcml,sha256=etnSLNtyQOKV_P81raDNeTGNzPqwcujlim6NPCPDO_Q,2004
13
14
  imio/smartweb/core/testing.py,sha256=t0Y3t3FXX2RjgklcRzHT37AjKbMKL3ZjjT3d2UhQm7A,3636
14
15
  imio/smartweb/core/testing.zcml,sha256=VyKjWW2QHYuUYKkGUvtsdFI_Pa7Wcp1yBBDla112eMc,172
15
- imio/smartweb/core/utils.py,sha256=ToipQdzA1WnX8SLKIwaWhH7JraOBU89Q7ez2AJfAng8,8364
16
- imio/smartweb/core/vocabularies.py,sha256=6DykA6VR4Q2qn-13dKHN5Hbne9DtPV8pTPpqRLLgI3M,23060
17
- imio/smartweb/core/vocabularies.zcml,sha256=KSH7JWlAJtKawLvfmsztZzE_AK1JR6B5udY6tleY2cQ,5904
16
+ imio/smartweb/core/utils.py,sha256=A5v-2qWAhJWdWXouguuTPDQd5h2bg7WvcR_9pUSM1uU,9466
17
+ imio/smartweb/core/vocabularies.py,sha256=Q7NP7tXJ1z8KqxqyashJF72-GrTCdS-OuqvHquqjHvQ,24159
18
+ imio/smartweb/core/vocabularies.zcml,sha256=X2z8Kc-9vcpxn4wSOiO-2VCruC42tde1i14vWbY_m0w,6096
18
19
  imio/smartweb/core/behaviors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
20
  imio/smartweb/core/behaviors/categorization.py,sha256=a5i8pYagdTcEG43A1NLs4SGF42PCAUFn8IRUq1pFqpM,828
20
21
  imio/smartweb/core/behaviors/configure.zcml,sha256=2jQIrHfv4_8M5wZPKYVvd_v-9Yh_K-_7qGfos4BZm3g,2174
@@ -26,13 +27,13 @@ imio/smartweb/core/behaviors/quickaccess.py,sha256=j18T39KcbiJErpidMM8wH6i4XjEIZ
26
27
  imio/smartweb/core/behaviors/subsite.py,sha256=O2aJHl3Jj9WTpGBmNJaoia-PAtb7aSHpCRanvO1JE8k,1707
27
28
  imio/smartweb/core/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
29
  imio/smartweb/core/browser/configure.zcml,sha256=jP5H_q7e_NzbaT13UWovdi04IxmUg4Ecrdh8ZDbP_tE,3935
29
- imio/smartweb/core/browser/controlpanel.py,sha256=OF3SeohnRqq0RcnBmUnPqOx5EN58NQ-5fBegdeDdzyc,6893
30
+ imio/smartweb/core/browser/controlpanel.py,sha256=dS4GffJXwC-N809CJZ2I6gohqAujUuRRqxh2Fawtzgk,8180
30
31
  imio/smartweb/core/browser/forms.py,sha256=_6Z0x7yVeA5JaW4IwpYkX7bTIbw0UskgvtGfNDtMsrI,1091
31
32
  imio/smartweb/core/browser/icons.py,sha256=LFBCYTfynp4qNX2OQuNmMTOUEcJv-oQ8Izu6opE3o7A,2065
32
33
  imio/smartweb/core/browser/layout.py,sha256=wvo_Q2dYg1Yd8wOdYSfPg29NPESy9ndAGl6z3r5kxnY,2066
33
34
  imio/smartweb/core/browser/redirect_to_main_react_view.py,sha256=vzJwAet0P2uoMhlOtNjMy02e4LQw9DsHb6mRgBXGOB8,1668
34
35
  imio/smartweb/core/browser/sitemap.py,sha256=voch7Bvchz3NTCm9zUC75sShCLD4KunLKyWA6OtaGmE,5962
35
- imio/smartweb/core/browser/utils.py,sha256=ccA2DVA994S3t92_fQeMSFIGfAblE9C1vw78ZFUAJiU,3218
36
+ imio/smartweb/core/browser/utils.py,sha256=UDICDU2oh0h6wR46w_FI9GdIUopWcu14SaAPp_QAREE,3334
36
37
  imio/smartweb/core/browser/vocabulary.py,sha256=OBoU4mxGLKtzGD5mtsN-yV7yeMi4HdAQZVI4n1b9Myo,1312
37
38
  imio/smartweb/core/browser/banner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
39
  imio/smartweb/core/browser/banner/configure.zcml,sha256=Z2M7gkRDdmV4zRekUhyuJ-_jvbIbhgTj2Zq674iKvUE,389
@@ -158,7 +159,7 @@ imio/smartweb/core/browser/subsite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
158
159
  imio/smartweb/core/browser/subsite/configure.zcml,sha256=ITEH-6pVztshQElqjNv9sk-CcVUTLFeccdSO9rHLwt0,414
159
160
  imio/smartweb/core/browser/subsite/settings.py,sha256=tXEnEYZG75eM7H766ZgNCCWMwOcY9j45shD-8NR_7I0,1601
160
161
  imio/smartweb/core/browser/templates/link_input.pt,sha256=Q7Y4gW4q0DVG-U5f3ZJkrAZwJnV8NMPu_Fdht7zhb4A,2808
161
- imio/smartweb/core/contents/__init__.py,sha256=OlnHoPzWP6o52Urk5E49fbTMOsRYQTsSX-k-64MtYuc,3703
162
+ imio/smartweb/core/contents/__init__.py,sha256=-4AczhjH0foxIpEWbuMVeavFHJkSReyNzYgg0De6Grc,3816
162
163
  imio/smartweb/core/contents/configure.zcml,sha256=heQRN2fw2SM7ILzCsM-5sK1J3EfRrNctqYdpr1wncdk,844
163
164
  imio/smartweb/core/contents/cropping.py,sha256=3RYRf3kZkRxcwuNsTUnsb1OKbLD9seBu3So_8k7XBXQ,1482
164
165
  imio/smartweb/core/contents/blocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -212,10 +213,16 @@ imio/smartweb/core/contents/publication/configure.zcml,sha256=tbotMG82XoUSWSMEI0
212
213
  imio/smartweb/core/contents/publication/content.py,sha256=lWpNVN6x59xD201uSxykzVcphyDz6Ik7Sh7trYfwOgE,572
213
214
  imio/smartweb/core/contents/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
215
  imio/smartweb/core/contents/rest/base.py,sha256=DAnzRRxxK0sQXIp09fVUikBpMJx5qZfInO1Kkd_RDbU,2526
215
- imio/smartweb/core/contents/rest/configure.zcml,sha256=vANiA3brvm8rsJIUSVNf0BdlEnejpEGXoC82-hpxKkA,433
216
+ imio/smartweb/core/contents/rest/configure.zcml,sha256=aRhtgdIr4KvqNwF1cMMNwrl2DiSfqEJazRpAQQflnBw,467
216
217
  imio/smartweb/core/contents/rest/traversal.py,sha256=KLNGhUmvTAzaRqSIzT3B28HgMBK4vcNV75AfyIesjN8,540
217
218
  imio/smartweb/core/contents/rest/utils.py,sha256=paMFXc81Hni0a8fpfNQtRTAr1vXNtXgBs5qLOn3_k2Q,3073
218
219
  imio/smartweb/core/contents/rest/view.py,sha256=RlQG2NGojTxQaEySg6Kl1xxDy2KkoC4ktK45Uc4H2ME,1110
220
+ imio/smartweb/core/contents/rest/campaign/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
221
+ imio/smartweb/core/contents/rest/campaign/configure.zcml,sha256=LaZqHBIshYCreTqevApeXioRd8aC9RELcHqJiqg4zCY,2314
222
+ imio/smartweb/core/contents/rest/campaign/content.py,sha256=OKk4kTB7de7bf_QyuI2EPFlPNMLYcQz-FbG1hgrBwqU,2907
223
+ imio/smartweb/core/contents/rest/campaign/endpoint.py,sha256=8OC-ezR1j2_PaDCns80OAVZwNioJ260Igwqu4YSPZvk,7079
224
+ imio/smartweb/core/contents/rest/campaign/view.pt,sha256=3IXOD2NkgvSUpJOt7m1Nv8O3qwufTrT0ONYSslb1dXA,929
225
+ imio/smartweb/core/contents/rest/campaign/view.py,sha256=H8aWBQ_FY9Bs7XdD18RqJxY3iYaIbqKOoKJNZddFW7M,749
219
226
  imio/smartweb/core/contents/rest/directory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
227
  imio/smartweb/core/contents/rest/directory/configure.zcml,sha256=_K34jECLk9RWscAyiRXwoJLLBIVj-EJRGFOEbUU5Ito,1035
221
228
  imio/smartweb/core/contents/rest/directory/content.py,sha256=CpOPKpeBGZp7NSqtv9IWgaUUmMGDDuUiB1rcPQaXCUE,1102
@@ -340,7 +347,7 @@ imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH
340
347
  imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
341
348
  imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
342
349
  imio/smartweb/core/profiles/default/diff_tool.xml,sha256=66L2L7ZBGJajPDeHl16A3h6RUcj9l0C7qpwe8JSYe7o,212
343
- imio/smartweb/core/profiles/default/metadata.xml,sha256=t0JLUwSutonePWZJ0XS2mggHQAtnNom2w7nyQhvuYxA,1218
350
+ imio/smartweb/core/profiles/default/metadata.xml,sha256=zlg0MdauZSxGE9WVDwa7Yz-NJzEaXvXnudBwS7JuFd0,1218
344
351
  imio/smartweb/core/profiles/default/repositorytool.xml,sha256=aTErs-VvEEV3dm9_TdgPZfx1Pb1f5Sw7ap7IgiJOK4w,227
345
352
  imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
346
353
  imio/smartweb/core/profiles/default/types.xml,sha256=k4V9-IxygB_2YPHWjQ7y_Upl443ksxfC_MC9mz9o3Yc,2111
@@ -388,9 +395,18 @@ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionTimestampedPublic
388
395
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml,sha256=SizWFzAer6gHpUKaNfGcKZe246eVLnFcra50fff2qAc,1167
389
396
  imio/smartweb/core/profiles/icons/basic/registry.xml,sha256=mSsx5FJZi9A6az0Hk1Otg3D2an5uUST8YnrZKrMiLvc,23211
390
397
  imio/smartweb/core/profiles/icons/contenttypes/registry.xml,sha256=nYHOYa4R1KZZh75n9gaMhHaPXAaXjCKX2tW5t7afFhg,8766
398
+ imio/smartweb/core/profiles/ideabox/browserlayer.xml,sha256=L3sTHDonqMsn2Vi5m8kAD3cGBHmZqzMCacgcRl_oEx4,182
399
+ imio/smartweb/core/profiles/ideabox/metadata.xml,sha256=Cdd-RieBJxpWLpkwtQ-DMGD28QpaalSZDhxuPMbs824,170
400
+ imio/smartweb/core/profiles/ideabox/types.xml,sha256=fotF5YGpyGOxKCzYz32LLwt-oTr5pkEgliuVXXZ-2SM,1101
401
+ imio/smartweb/core/profiles/ideabox/registry/iaideabox.xml,sha256=NDTqM4kD3pGu8IlCX_7sWLtQQ75tnHzS06kgSS7C0nQ,249
402
+ imio/smartweb/core/profiles/ideabox/types/imio.smartweb.CampaignView.xml,sha256=pIK574jdzZO1wL4cxQ3R2brKtNoUCi9b6zy3daBB_Es,1470
403
+ imio/smartweb/core/profiles/ideabox/types/imio.smartweb.Folder.xml,sha256=sNaCgZ7SuWtkPnPOPb7O3Hr3qS7oIUwRYGh7WgaSPsE,2649
404
+ imio/smartweb/core/profiles/ideabox_uninstall/browserlayer.xml,sha256=Kiysz6KX9pT22IxODSPZM4f7aSK2swjMDhVVu0aUOBY,136
405
+ imio/smartweb/core/profiles/ideabox_uninstall/types.xml,sha256=-KVWOyVVSH32xG0775Z7PjwYe6Eq9N8t9NFX-vLnaW0,167
406
+ imio/smartweb/core/profiles/ideabox_uninstall/types/imio.smartweb.Folder.xml,sha256=Exc_YaZANSU_03LjvPui1wGtrkA3hTzWan6En60k67Y,901
391
407
  imio/smartweb/core/profiles/last_compilation/registry.xml,sha256=XLMMpMtgKFTE4GGkGpMm0vOJrJ1yLLbtelO7He2nb40,852
392
- imio/smartweb/core/profiles/testing/metadata.xml,sha256=ZOXnwD8iPGY1Z1uqcPerr0Nx8-yxzLT4l4HuCLMlWr0,227
393
- imio/smartweb/core/profiles/testing/registry.xml,sha256=QqluPp7bSDSinUlOy02YMrR3H5nyWjRse0iJico8cQE,706
408
+ imio/smartweb/core/profiles/testing/metadata.xml,sha256=VV7tqsgONohvkCppGHavLK2nCrOrbjD6EbUiyOxAKDM,291
409
+ imio/smartweb/core/profiles/testing/registry.xml,sha256=Kxi0mjn3tES5wgSN1GMhMtd--4nN-IN0k8lPRf4Lbqg,686
394
410
  imio/smartweb/core/profiles/testing/types.xml,sha256=bIwRPefUDm3jNk5U6uQtSRLaOXup2QOPiF3hmfWogmk,163
395
411
  imio/smartweb/core/profiles/testing/types/Collection.xml,sha256=C-sMSIWDq53bNJEFCIKAKo3DvVRQXad22qb8LGCFU6k,517
396
412
  imio/smartweb/core/profiles/testing/types/Document.xml,sha256=rsGEqMCL6GdRoNaUaUvUowjR4k-Awwsd1Kpe3ztPV0w,215
@@ -416,8 +432,9 @@ imio/smartweb/core/tests/test_folder.py,sha256=JjV5Hvo6IMEFHo2kowbqhLxcXy11zHRTK
416
432
  imio/smartweb/core/tests/test_footer.py,sha256=5FYaKDRrY10_rXvetVmbo6-uOZSRQuOkaO_fvuv94N4,10970
417
433
  imio/smartweb/core/tests/test_herobanner.py,sha256=oCbnS288FcJqbhWDmqdWcAXi4S7qdnf2MvBtxrLVd_I,5940
418
434
  imio/smartweb/core/tests/test_htmx_in_sections.py,sha256=wMzFdI7V1G6NpYkQY7lD0GSPmNOVSH1p34nlXvpz3kw,5370
419
- imio/smartweb/core/tests/test_iadeliberations.py,sha256=S3ZMT__jHEbVRtBILPDi8WfJP0kmH7mFK5fnx4OO3hg,5564
435
+ imio/smartweb/core/tests/test_iadeliberations.py,sha256=72OVlajWI3eVq2CG7bPmxkve6G4M4yveeoFYO9hfr-I,5655
420
436
  imio/smartweb/core/tests/test_icons.py,sha256=d7TPnzTFqa4_vYcsK5tl_PPDAjjmIn_EYrYzE0BRfmU,2788
437
+ imio/smartweb/core/tests/test_ideabox.py,sha256=Y_Kl8OvBndiCCAEu5NjjYk5tzJOvzCH7Es5DHnbLelk,4756
421
438
  imio/smartweb/core/tests/test_indexes.py,sha256=DtRgpdkZ2PKu8y8OrARY1Gk3JU-siWlkDf98A_ZvzFI,10784
422
439
  imio/smartweb/core/tests/test_instance_behaviors.py,sha256=YMLtXkhxrLlD0nh0wx1-kX2hawQiOGvJqYXh_s53GPI,4274
423
440
  imio/smartweb/core/tests/test_local_roles.py,sha256=RCH3t--G7FTNqGIRgJWypTVo_a-1rPsdK8RG-yrOYhg,4997
@@ -427,9 +444,9 @@ imio/smartweb/core/tests/test_navigation.py,sha256=dOnQTVtbEmCJ8lkRkGjAG5if3IfVB
427
444
  imio/smartweb/core/tests/test_page.py,sha256=1dD9M_6nwS6M2OuyWmT5cPq5qnxnog3tcqFSbpIStF8,10699
428
445
  imio/smartweb/core/tests/test_plausibleview.py,sha256=G1ryfnz3TuQBG8VFO5KzEylT5DFABW58PQuuvPq_ccY,3229
429
446
  imio/smartweb/core/tests/test_portal_page.py,sha256=hIqg4eb91o8BsSj7eSKdvoxehzOXt8bzpg1o5ej__zg,7215
430
- imio/smartweb/core/tests/test_procedure.py,sha256=0w8phOwYfpp9vb3KDsnwjX8AhQXWdodA06W4koderQo,6474
447
+ imio/smartweb/core/tests/test_procedure.py,sha256=1D3H2pOZvQrNXATDN38S8cB58Z4-xL0Y7zTDSrkWbVY,6594
431
448
  imio/smartweb/core/tests/test_redirect_to_main_react_view.py,sha256=3Pa_4BAmyz67onEaHochsubdEqszAMf2j0lkscEY50c,2986
432
- imio/smartweb/core/tests/test_rest.py,sha256=t7dp7YWUCKR75tsU3vVOzAy9HivGBWuMJoeMpuKOXbM,27374
449
+ imio/smartweb/core/tests/test_rest.py,sha256=EAdoE1quJJdDOiYZTTHj7F9lnobGtI__eYzZyfvais0,27674
433
450
  imio/smartweb/core/tests/test_robot.py,sha256=NQ7AkN4tEva3bgGjMxmyqY0zIo4pJPnPOwnD9hmrTVI,926
434
451
  imio/smartweb/core/tests/test_search.py,sha256=VryeRI4_5CvnStKOoNoG95M2WTy7Lyy_AhHIDG40M14,2182
435
452
  imio/smartweb/core/tests/test_section_contact.py,sha256=aJUwOaP9OEpgGKXlQ6xIrP-3gHAeujF0Bnt8xw1llm8,27352
@@ -446,7 +463,7 @@ imio/smartweb/core/tests/test_subsite.py,sha256=wiD8Ke4_-ArstSYNLCs8ArqOuDx2xxUR
446
463
  imio/smartweb/core/tests/test_text.py,sha256=DtZNNGJ-MDYbJ-YQj2C0q2Hr7t4-sUbV6SWkE7tihBY,4652
447
464
  imio/smartweb/core/tests/test_toolbar.py,sha256=dxwOGNOg2wPkAnPU3hqGCI6VL2D2nPOIOtbMorvjfps,3823
448
465
  imio/smartweb/core/tests/test_utils.py,sha256=W_gR8ZOecscA6f86qrcOeQVGCzdyqhlzP6TgQI5ah2g,5045
449
- imio/smartweb/core/tests/test_vocabularies.py,sha256=Wlz7t_JfgT2IkRvl8uHL_87NsDFcKb0J1ycXGIB6AJg,16876
466
+ imio/smartweb/core/tests/test_vocabularies.py,sha256=v_fZF1CSHDpCITGJEIHEnkORvvKUHLiygD-53OvtjWg,16732
450
467
  imio/smartweb/core/tests/test_vocabulary.py,sha256=9S3BtVIJbN1o0q2qMcX8k0CdUwixmc3DBs_s5qFrJwA,1648
451
468
  imio/smartweb/core/tests/utils.py,sha256=hsDrWOxL0oNNyx92Hke9Kj9ByKzc2kZ19q9QPVsNud4,2688
452
469
  imio/smartweb/core/tests/resources/cirkwi_bad_widget_mock.html,sha256=13YeZ0mo8PoeHIHa64SLKuhNfGqBMT2uprmYDyQxE78,150
@@ -467,6 +484,9 @@ imio/smartweb/core/tests/resources/json_events_types_raw_mock.json,sha256=Yaxw-m
467
484
  imio/smartweb/core/tests/resources/json_iadeliberations_institutions.json,sha256=koaFRWm7xMUFQ7XjFu0o2PqOdMXa4wIH8Ae2dChAbO4,2279
468
485
  imio/smartweb/core/tests/resources/json_iadeliberations_publication.json,sha256=peL3-Tb3kWOZUNqCkYsvJD3710jMzPlb0pGj1gnAQN4,5136
469
486
  imio/smartweb/core/tests/resources/json_iadeliberations_publications.json,sha256=JsY4rynmLwpnmOEvvqhyoSQ0USUvNv3wGRYOGEKRThY,17115
487
+ imio/smartweb/core/tests/resources/json_ideabox_campaign.json,sha256=QdItDOrLtJqDAOA8V5ew2Y6pq8ilG5NADx1LMJySWWs,7306
488
+ imio/smartweb/core/tests/resources/json_ideabox_campaigns.json,sha256=YYwwcu5BtQNoE6a3zYe7gNFPBuuEP61Mq8UIgutUf4M,17142
489
+ imio/smartweb/core/tests/resources/json_ideabox_projects.json,sha256=0an8Itb2UxuDentNI26C7lTxCEMiFkuSqk7FwljDI_w,76600
470
490
  imio/smartweb/core/tests/resources/json_news_entities_raw_mock.json,sha256=InbDt8kUmVBsfCTyfn5M6qqC1j8z5RB8Edg7hIWRv0g,726
471
491
  imio/smartweb/core/tests/resources/json_news_newsfolder_raw_mock.json,sha256=JpryCi1tpJPAoqnF9c2ZPtcQc4R_ottDRiyU-z2x3FQ,783
472
492
  imio/smartweb/core/tests/resources/json_news_raw_mock.json,sha256=P5KPoC_uJB3HaYY4t4J07uPjh58b-pxZD4ZrlKR1Gr4,15865
@@ -488,8 +508,8 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
488
508
  imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
489
509
  imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
490
510
  imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
491
- imio/smartweb/core/upgrades/configure.zcml,sha256=juj4_tpNwr_zMJi3ANkNK-xZAM3-BVo67nez8G9u-Ms,32517
492
- imio/smartweb/core/upgrades/upgrades.py,sha256=SZHVeYODErjQZR_LzQ0cxBnJoqWRWsIiRpUhNTMiz7k,8295
511
+ imio/smartweb/core/upgrades/configure.zcml,sha256=OsYMIEsLtS3QiYi_QaMDcANLqvvYZHVsj5jtTU-byOk,33004
512
+ imio/smartweb/core/upgrades/upgrades.py,sha256=dglP6cUcUufp7wCjdanKKcZoEI1bCV1FWI_M1eNAnz8,10418
493
513
  imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
494
514
  imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
495
515
  imio/smartweb/core/upgrades/profiles/1020_to_1021/rolemap.xml,sha256=atPFvI1zqv3z6E7HvsFS3r4LdIFsN7VEGe-3GUEaYtY,538
@@ -629,7 +649,7 @@ imio/smartweb/core/upgrades/profiles/1063_to_1064/types/Link.xml,sha256=19TjIa4m
629
649
  imio/smartweb/core/upgrades/profiles/1063_to_1064/types/imio.smartweb.BlockLink.xml,sha256=1r5sydZbHyom_VIrH_gT34FwwPUMyk87x2g3FAjNltE,293
630
650
  imio/smartweb/core/upgrades/profiles/1063_to_1064/types/imio.smartweb.SectionSlide.xml,sha256=kViKVS5u-x54Au1ShmOs4gUCd0a2UOwyAv_JgThzdVQ,296
631
651
  imio/smartweb/core/viewlets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
632
- imio/smartweb/core/viewlets/actions.py,sha256=QWj_pLNxH4223XPk4b4Dc79DiajF0HHfaXlUmXTwJ8k,661
652
+ imio/smartweb/core/viewlets/actions.py,sha256=CUMkS3w_MXOxqOzqp7s3PFCUF-RCrCFsKw3oxv0C37E,1200
633
653
  imio/smartweb/core/viewlets/arcgis_header.pt,sha256=iQc5ZG3g1Cmap963OG-wPotllr7oWmVSMoAnA7tctrQ,3428
634
654
  imio/smartweb/core/viewlets/banner.pt,sha256=fFhT7paFQ8bO-BioOnh2Rwtl_dW4GfMs-HGpJgWs1C8,1277
635
655
  imio/smartweb/core/viewlets/banner.py,sha256=u-RI3m0j3XmCgu3b-NJhgrNcqUHqKIzM8nAM7wmnbdA,2302
@@ -643,7 +663,7 @@ imio/smartweb/core/viewlets/external_content.py,sha256=YeTvnnfnAS1jsgsqvwTmYjjOH
643
663
  imio/smartweb/core/viewlets/footer.pt,sha256=KZVvks-NtSzAoQTTMClTUy0M07r0kgbd6B6bgKXVaK4,1103
644
664
  imio/smartweb/core/viewlets/footer.py,sha256=pzhepBKL_vjpSrfS_0IMyEVzZ_PHfzIOt7IgSIuUbkU,3455
645
665
  imio/smartweb/core/viewlets/header.py,sha256=QcKtG0KJjLMyChOQblwyTcCc3Qj7_bOzHTmvVRS8lJg,367
646
- imio/smartweb/core/viewlets/header_actions.pt,sha256=LNpems7Hm_pm1ksgolKaTS63o8JpkvnLLBKusrtP7Ik,577
666
+ imio/smartweb/core/viewlets/header_actions.pt,sha256=7DDPEndWg-EnMVyfakAiK5TsUhRmU20-_in_JZWOPAE,672
647
667
  imio/smartweb/core/viewlets/header_actions_viewlet.pt,sha256=8XzyvcdvhyWneUrv7FUXyHMF2ghDUgldqVv7zP6TEfw,129
648
668
  imio/smartweb/core/viewlets/header_top_viewlet.pt,sha256=nn7AhTim_4yfhxevbW1-UsQ62tREyFZhZKq1FODmccc,137
649
669
  imio/smartweb/core/viewlets/herobanner.pt,sha256=Zg7Hv44VkU5FZ7T0RcuDCcZ7oDcvVX5HQyiVrPU62bU,688
@@ -661,17 +681,17 @@ imio/smartweb/core/viewlets/minisite.py,sha256=5477JK5xc-KJCAowGOn0KooSYpDo-6cUw
661
681
  imio/smartweb/core/viewlets/minisite_link.pt,sha256=4BwRkbEAT-9TElSsUPUBOki9VZqKMnfac1icTUDBINI,370
662
682
  imio/smartweb/core/viewlets/navigation.py,sha256=-woNkfk67arOSfTKekPEUS7McheunveTgJM2NedniiU,7284
663
683
  imio/smartweb/core/viewlets/odwb_widget_header.pt,sha256=bmtPkjfd40fwOqsCL1sQFCnJaR8Xfm6wka9Cs5fFWZc,1176
664
- imio/smartweb/core/viewlets/offcanvas.pt,sha256=VfHFI9WoDqcm5nfJ-OTHACnJn0F5PfEE4FXZFzPM3JQ,613
684
+ imio/smartweb/core/viewlets/offcanvas.pt,sha256=HTmwDJERsehha8zr84hA0Mr1NkqgYihFzC_P8f1CXiw,1426
665
685
  imio/smartweb/core/viewlets/offcanvas.py,sha256=3VE2WJcvSKp3oAKYwGuwaHYMoK_83KMksMFDa75u52Y,129
666
686
  imio/smartweb/core/viewlets/ogp_tag_header.pt,sha256=XRWkdZS2oI7W0X1oJSskpXS9dMmxSxSx_7XWb-Q2aBk,1007
667
- imio/smartweb/core/viewlets/ogptags.py,sha256=ZbrOVs7bqV5Trx6izolncbuXkaiZRmd6v6E8L8f9hEI,4902
687
+ imio/smartweb/core/viewlets/ogptags.py,sha256=ntWF7IBGt-YwMpOgMv8YxG2b2Sk4l-zOmkJWqEaIEO4,5192
668
688
  imio/smartweb/core/viewlets/procedure.pt,sha256=gLwNuikgXsWMnBybKdFeKfkfDKnI3SlrU3y2z8sVt5k,602
669
689
  imio/smartweb/core/viewlets/procedure.py,sha256=7nqBU_Sl5tcQaV_UNM-2BPLc8vogCzTO6kQlu4hwofI,633
670
690
  imio/smartweb/core/viewlets/searchbox.pt,sha256=Wv0DbGTKif1z_SDl9-FQKIAPJcfFAHHO1qOtR-LtnR4,403
671
691
  imio/smartweb/core/viewlets/social.py,sha256=gau_zEDo1IM9ZeYWPHjNl-eMTwbmO23lxFSWf-DO9uk,1187
672
692
  imio/smartweb/core/viewlets/subsite.py,sha256=2MFX2UukohUDybF7lDklcmgtY2Z0MaFdHU2cFfiBkDo,4218
673
693
  imio/smartweb/core/viewlets/subsite_header_viewlet.pt,sha256=v0sSWJeSdUcsFygVh9UHRaf204abjZniMbaRs3eC9BQ,137
674
- imio/smartweb/core/viewlets/subsite_logo.pt,sha256=6htSau-jXv0psDpzSyWc74fePaGk5-yI8sUH46vfoFE,503
694
+ imio/smartweb/core/viewlets/subsite_logo.pt,sha256=57C45PcffBqHIQskcqZ0Nvd5xTuPdQx54W5u9oXeIJc,543
675
695
  imio/smartweb/core/viewlets/subsite_navigation.pt,sha256=6mBA66EXKsZa9JVmOkqhJFEg0L41ssyH5OroLJcZBeQ,163
676
696
  imio/smartweb/core/viewlets/toolbar.py,sha256=RmHarWPYIPSqf2qNTi30NsKMe8Uc_FLznKl5YcY1eo0,6556
677
697
  imio/smartweb/core/webcomponents/.eslintrc.json,sha256=QH-cYmAXVlIKIwm9TldshO4PA3A3J2rAzjQ-q4zrDrs,343
@@ -682,7 +702,7 @@ imio/smartweb/core/webcomponents/README.md,sha256=u-1KMiYzChIOe3BNY1paacCEVsxRit
682
702
  imio/smartweb/core/webcomponents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
683
703
  imio/smartweb/core/webcomponents/babel.config.json,sha256=GLMlFLD4qaaNVuRWogON3geyD75eqVm6cN4RAGwPt3g,194
684
704
  imio/smartweb/core/webcomponents/configure.zcml,sha256=WiA01XuVcc4VgxrvFCztR2nPMCBp2dGIgpIZv6WdJ7s,263
685
- imio/smartweb/core/webcomponents/package.json,sha256=BGp-GZVH_TDJeD_aQKFRtco4aA7foy0FAmxQnsF0PGo,2682
705
+ imio/smartweb/core/webcomponents/package.json,sha256=8nVALJFTQ7zJXDCmXed9AKeEi20sgvV1TCFVSOc2Jp4,2974
686
706
  imio/smartweb/core/webcomponents/postcss.config.js,sha256=C6AOPegqTEkRboXRWl6obj0priHtdSRiApehW4TWp8E,101
687
707
  imio/smartweb/core/webcomponents/webpack.config.js,sha256=ie90xYAH82rUaPv41_7v-eXTDADH55Z-V9v9gptDC6s,6852
688
708
  imio/smartweb/core/webcomponents/webpackPlonePlugin.js,sha256=TWpGoEYRBOKB7o0SJ1F7P0hLYflkNmbODG7ZCyrPjQw,2226
@@ -696,32 +716,37 @@ imio/smartweb/core/webcomponents/build/assets/marker-icon.2b3e1faf89f94a4835397e
696
716
  imio/smartweb/core/webcomponents/build/assets/oeil-big.f32cd1df1274a9593de0c4bd8e344216.svg,sha256=xVSktVFHmBKwOQJL8yM4LmPmoNChGoz6RBS7d5QZuUQ,433
697
717
  imio/smartweb/core/webcomponents/build/assets/pin-react-active.07d154037a15be5525b823fdc626cf29.svg,sha256=XgE72Zg25rWhDFtpgRTh6pSWc0utqIobzbez4RYC3kA,330
698
718
  imio/smartweb/core/webcomponents/build/assets/pin-react.fda934b5daf26dd4da2a71a7e7e44431.svg,sha256=kXxN_F5nCL1SUuSvO7dsVz2BCk6lyembEe0ZcDUjEUQ,336
699
- imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css,sha256=ZoYufYnSdoiuqmC56hEVhJsjwI3qe6X2QfezMIY1lrE,8243
700
- imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css,sha256=9CwbA0J60QC8l_HQZ0u6abP3iN3usuD8CGijKBJumh8,24072
701
- imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css,sha256=4lpV-6NaisDZFzo7YchHTyOOp5FJxNNz2cblWJBaQC8,48102
719
+ imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css,sha256=wWiRww8nYFkWCz8ArFPrhUIegyMD4KNeQGGM2udov08,8426
720
+ imio/smartweb/core/webcomponents/build/css/420.smartweb-webcomponents-compiled.css,sha256=3Q92R9fWkaxgUWZBpVP1GxVu5NoyQ0l0y_vjjfJgcO8,15928
721
+ imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css,sha256=fliDxV7ndq55M6cIWIXkHFB5zHmzhRKqkogFqE2C_Xw,8343
722
+ imio/smartweb/core/webcomponents/build/css/666.smartweb-webcomponents-compiled.css,sha256=7QsBnr668bC8DuylEDP0RrHmfCI9-9UtU_m0QoJU2iE,10367
723
+ imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css,sha256=4n9XOBYCX6jw5F9xjmj1C4G4gPdR8wUtlklIYLW45qo,32373
702
724
  imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css,sha256=cmIujPCjesquXQEUFlVnQo1PkkBNk5Ed81I0xqbap_I,2727
703
- imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=8hmanCh14XmP_dHe95rehsNzWu5SbH2JfdGugeS-PJc,4575
704
- imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js,sha256=mb8qvqSSicnVlLJHxWAGgrTkNHv-_vbSP0fEfmm3VXo,415156
705
- imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=9CksAZD8HmkPS0n0IpNDiIs-Rz7g4WGlxIAiWXg1SPg,338
706
- imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=XXhBLWqYZuCO6tAunorjcUgLr57nhrwP3IJnCygyJFQ,55974
725
+ imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=ybiIjh5_tUfEda--wXyl5b4YHmF5vE3IIFIcK-EHBhE,4574
726
+ imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js,sha256=gBUVapWbeu6EcGSuNcVqWHwqA0OJxaD5UFSKHVtHhpM,186434
727
+ imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=JAhpUJdE4xo9ZDXUJUlmZe72ZmXGd4cysLmGtIk7gWw,680
728
+ imio/smartweb/core/webcomponents/build/js/15.smartweb-webcomponents-compiled.js,sha256=NR-ptgmjGjoHT7DB5AIQFjqophO4LHFO0Oo9jvvfFQE,170533
729
+ imio/smartweb/core/webcomponents/build/js/15.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=eNJ8gc9n9IF8nW1d9sI9niuHstYzjNz5vqXx9UgWSPc,249
730
+ imio/smartweb/core/webcomponents/build/js/21.smartweb-webcomponents-compiled.js,sha256=5wkEG6IXjdM5rynHf5mXcNAJUGmVqCDHtlwbYmzRCWA,26529
731
+ imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js,sha256=XXPUkcyJv5ZYUI4A0_egiUji1e9xZfBa_WSb3FF2OAQ,435795
732
+ imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=QAeU4Rw9Rrv8hnkJvvMeGdkO2ZE20WLcwCpju_UuPQ0,238
733
+ imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=WgYICuiZtInw41E6Jcn8yDBUKSznKlLcv84gsBB8o7w,63389
707
734
  imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=srGNtnoNHz0w5OlaCDZLtTP8yBsDypbLTNk4qjsLvTU,317
708
- imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=Ri_q8m-uVehIVeIQQl1_tn90t8a3t-Z5lDY5wWBBA3Q,41382
709
- imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js,sha256=C4DEpTuaRR0KAUgH9winSpJYpPwOHAOMUdreD7DaX6A,143081
710
- imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=eNJ8gc9n9IF8nW1d9sI9niuHstYzjNz5vqXx9UgWSPc,249
711
- imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js,sha256=FA5QfzUfmlsrCL5il1pWsT4gxkVTfYb_iyz7ccFlO8A,17404
735
+ imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=GmOLQ7CRF0ZOyGPIVd4_yhHKtMuhzKo1tW6GWHrhZXA,34861
736
+ imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js,sha256=6OZPn502IZm0WbeWT4PntjiUWiE7kf4_bp4s7R8GKwE,33968
737
+ imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js,sha256=QMD0dRW14xDwbGZu7ItIUo5UrDxm6_f-mXjEe_BQT-A,17400
712
738
  imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=R14i0Dp6JC2AOtJVaegrZVAe22i9niDnCBKa5vn7QVc,59
713
- imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js,sha256=ca082EaYXpsgjIeedTCxHiJ_-RO09R2WQ28L21QEMrk,153293
739
+ imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js,sha256=SDOFrHK3AuLHcrpSvRqHWmxr4AYuf5XtmIarPNh-gck,156597
714
740
  imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
715
- imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js,sha256=gckUhUY-I6BDU1bXCwf_QTQYepQYrk9jd3ILCp4f6vE,174992
716
- imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=-3_bgdYPth5WaLi7KThLMFaeIhyLEDdatZAaOJMVBvI,680
717
- imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=ygNQDzogjjhZjdzkids77ptwudcDiuMxPP_oQyd60kM,47264
718
- imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=RrMPAIBn91DeRGcWP6YGH9yX48eDaqnXBnWaAbw1NbM,15159
741
+ imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=pZeeboAFezsr5P1IemStRJzzG-Wduou4jWxLFJwgzzc,40736
742
+ imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=xeEYUPCtVfFR6xwsAgr1EQ-HDloCCaNwSAvYv5Jec3E,18733
743
+ imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js,sha256=w6XeFgTJ_6Q7rvPkoqH2DURuFu2WpVqKAb95ndrI-Pc,13529
719
744
  imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js,sha256=YLKWqrbFtX1Q2I0gtWEbu7HTVAXe6kbOCWw6CeW8r7Y,299300
720
745
  imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=A-v1lwmuIX1DpNJ1MDzKDMWv7f_d6cjHlGOCEvthhdY,50
721
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=5c8fUfQ6RV0Got867_AU3WxfnGpzGcmtQHvRnoM7b9I,413903
746
+ imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=9bq1vf3-tf3dgaluiPlDLB7ZZNKRetaLwQEzjZjKJ5s,422222
722
747
  imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=FYZFcv_VsY7Ef-afd5tLGRLLk9j84PX0P_ciZvbFli0,968
723
- imio/smartweb/core/webcomponents/src/index.jsx,sha256=WV70VNETdsIMADJ5EqajwxQ6WacMbhw5Z_91fVDti_Y,757
724
- imio/smartweb/core/webcomponents/src/index.scss,sha256=K4w5Tnaf6X_wLUNeMCU6IFZQ8BobZeINSIBgruRIp4I,5881
748
+ imio/smartweb/core/webcomponents/src/index.jsx,sha256=fD5BlphV-ex32Laoxlp0JKN2jN83ZVVwtY6lKqIiSBs,871
749
+ imio/smartweb/core/webcomponents/src/index.scss,sha256=0PT1Deggm3VmTOtjoSnuWYhe6Ts_PflB8zP9gwsns_A,5880
725
750
  imio/smartweb/core/webcomponents/src/assets/close.svg,sha256=YRqTcPuokfqTclWe7mP06MOMzGAZxQikUO9XMeSwIg8,478
726
751
  imio/smartweb/core/webcomponents/src/assets/img-placeholder-bla.png,sha256=aC1DNJvkOZB5Bg2TWrzBSyg-RgzF9PRaRRx2mI6kChg,9538
727
752
  imio/smartweb/core/webcomponents/src/assets/location-active-bla.svg,sha256=4I_3G_3oLBPGayxnuutFmbHb9v5lwG9XWQoT1htvbTM,369
@@ -733,12 +758,19 @@ imio/smartweb/core/webcomponents/src/assets/pin-react.svg,sha256=kXxN_F5nCL1SUuS
733
758
  imio/smartweb/core/webcomponents/src/assets/pin.svg,sha256=-6a-6Jyc3EJteH1X5eFtPUCCz4FQeWKkVhMKHDhmbzI,890
734
759
  imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
735
760
  imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=26OQ4Ejh7ozOfvuC3XmvzVHeOR81EeMp1rwPhsRWvTM,11456
736
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=AjCOYP4W98OgH7vGlGxTcPJSFkfMWU1TDlcFYcwMNes,12408
761
+ imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=99jOFI8Nv3iIrijtz3DkxUv80SgCwEHkoyharipUd_4,12433
737
762
  imio/smartweb/core/webcomponents/src/components/Annuaire/index.js,sha256=A26LlWeszwIzqu15SiEZ_mcb4NSaChAbT7d4GWEyVlY,96
738
763
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=yBbE4fl6Q-DvGLIN1er7izF507SpYHB5_SCkXPHVYYY,6647
739
764
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=PlRdrd_wapcZSsbwmR8wChCWOKwO_J99GIG2F37vK_Q,38783
740
765
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=_UbuWGN_Goao7BXlW19rIuvoj_2X7JkXBN8KXqOvbS8,2309
741
766
  imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=yg7k4KgIOprikaOImjO-Mh7r83tbw0rgkc3YprQ72_4,13423
767
+ imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.jsx,sha256=mWLkqowIdT3rI7ZHmLqYMXX440QDmth5iY4FGEo52IY,12559
768
+ imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.scss,sha256=8xETcHQeaFDZ9EqR2rQcvKvTa9E_gm5yZgj3mrxCW-I,14961
769
+ imio/smartweb/core/webcomponents/src/components/Campaign/index.js,sha256=QSsDk_SfGrFNtfNvm4tpstUxzU7-t8664a_oRHTGYq0,97
770
+ imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCard.jsx,sha256=_D0NmTESIt0fFY6ysLvvB2kiosD_EO4_Wimi4wotgEI,3007
771
+ imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx,sha256=y3coVfaQPsIIIYYA6zI_ApWWwMZHfbpZ2F6dQjqGJ1I,7667
772
+ imio/smartweb/core/webcomponents/src/components/Campaign/CampaignList/CampaignList.jsx,sha256=BRhGkvmMNPEmXuBWi6BGt1BBIXsmMc5PY419nMxzs9U,2430
773
+ imio/smartweb/core/webcomponents/src/components/Campaign/Filters/Filter.jsx,sha256=mBG_OOkPmf_-X-Fo95LjCD4wGMVEPL_rQj_AKpi9rmE,10381
742
774
  imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=L3bThj_F-dmhSSyqtC3VHbggVM-bSY-gmVZmyRzAtgg,12271
743
775
  imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=FnRLuNcwtp9ngCKGsi_P18xhPmGNHQ_kMoWr4V5mZHE,12705
744
776
  imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
@@ -749,7 +781,7 @@ imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256
749
781
  imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=XKiN7Y8CFz48IluCEmyqTpSbBa6hvF4BjPcAZYKqKaQ,5949
750
782
  imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss,sha256=zccyw3yhc4k2GU_RYl7fJn7tZOz6DMDA2PGGK8SLmNQ,3233
751
783
  imio/smartweb/core/webcomponents/src/components/Filters/IamData.jsx,sha256=_Yvc0AZMTwRmrycvZlUsV1ipCCq8G-yeVHOv89y8tnQ,751
752
- imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss,sha256=jdwWv8ASnzpmeC_Y2AULS99C9ksQCNLaJMmiSebCGzc,4508
784
+ imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss,sha256=dJIiQ7aI98Ex67UQWmHbUv4YI7uwbtzwhWpgSOmJhUU,4509
753
785
  imio/smartweb/core/webcomponents/src/components/Filters/PublicTargetData.jsx,sha256=X7N2li7AH0kmQPWMGhntioDFjoPRIqqT5QTK9OCgvvk,1808
754
786
  imio/smartweb/core/webcomponents/src/components/Filters/SelectStyles.js,sha256=lXSYovMyRUC9TjLDEn03_rcXJhAB2sTqBdc0E7hadJE,1288
755
787
  imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.jsx,sha256=EznTS_9zVa9kzZ_XqFtKbJh5swZgnfkZfT9AnRfpEy4,5649
@@ -759,7 +791,7 @@ imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=X1qIeoDjtW
759
791
  imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
760
792
  imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx,sha256=_jPvqsdg6QHNBkC7erySX-s5sgBh35X8B3P2LgxcsBw,9598
761
793
  imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx,sha256=sYJbhbW2FgV79xpXaFKM3NuKY08NkFZhMOMVPOLesB4,3941
762
- imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=fRopUUNQ4j2jaCScr6dsQsqvJmFbfFKM20lCvX9zYRs,20142
794
+ imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=BBL12LASGmtWXjIudDuFEAyRXcgX2Xdn63JhSShjM88,20105
763
795
  imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=aDgfW-TXeahzRMoubSNCR0mmKrzG2MJraJc2fKwO2SQ,3703
764
796
  imio/smartweb/core/webcomponents/src/components/Search/Search.jsx,sha256=mAXFJr2BmOjAe8-F9qeaWKvUhsOOBad-UKZ_QSwESmQ,2461
765
797
  imio/smartweb/core/webcomponents/src/components/Search/Search.scss,sha256=PEeXhoIcLGB4s6Suqz5ouwpwrG3Ry7Wt1nT3WjZmd_g,3551
@@ -770,16 +802,17 @@ imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx,sha256
770
802
  imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx,sha256=NW9CnEhRMI1jCRlzsYJ17zfMuMZpz9pN7EM3uiXY8WQ,2893
771
803
  imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx,sha256=SlZZ1fN0Bg6swT9C03-4t0zSEPciBoVAPsbQVH5dgbI,2230
772
804
  imio/smartweb/core/webcomponents/src/hooks/ScrollContext.jsx,sha256=s9bnwrWBvP3hKyNV99kGpKKmSP85Zd5G3Eh8uhkXBas,85
773
- imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=Iz72CNBW85km1ejPm056ewMBgjClzpNmjh9hVPE7Hek,1156
805
+ imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=oeKZGIJ8g_ELRM7jze6PUzAbVy4eu0FvQlszt5kjnjk,2394
774
806
  imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js,sha256=3OhVCCDmzRQCxs-x14UhwiCaqn2aqpwxL4sypt1nlEo,165
775
- imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=cYuZykMIaLjr4KiLvmS4aYG4CPy8LljjYJzLwmaN98g,5283
776
- imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=xXWz0O-JBwSZrzz2XeQdN4nZEOjppU2sVFtlLQOitQ8,77
777
- imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=5YDHwdaRNWFWOgyNd7YejoAdcDvnvAENo3Xn0GDT8P8,8941
807
+ imio/smartweb/core/webcomponents/src/utils/CampaignMap.jsx,sha256=q4mayOIbAz29LwMWcbi9a-mrSO1_ELP6lYH8ZfrQ_xs,6024
808
+ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=EpmA8-iqHIkWrjgjR9JKvZp1J6YRz__VcHzOII7puDQ,5284
809
+ imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=DVQ6sUQOKFvLhbcamY6EmSrfWYq61gqaQUZ_YM1Le0Q,343
810
+ imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=V_0_jpGV1frEmB3ny2_pYxQlQSNDKEMYECViFYHy0Tg,9900
778
811
  imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
779
- imio.smartweb.core-1.2.90.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
780
- imio.smartweb.core-1.2.90.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
781
- imio.smartweb.core-1.2.90.dist-info/METADATA,sha256=2cAANOnHCM08KmqZ18MZzbP7KlOCmJDkFwcSvPN7XNs,61239
782
- imio.smartweb.core-1.2.90.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
783
- imio.smartweb.core-1.2.90.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
784
- imio.smartweb.core-1.2.90.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
785
- imio.smartweb.core-1.2.90.dist-info/RECORD,,
812
+ imio.smartweb.core-1.3.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
813
+ imio.smartweb.core-1.3.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
814
+ imio.smartweb.core-1.3.dist-info/METADATA,sha256=uZqJ5V-NmxZT-Naa-VwaY0hS5ytGHRpmuLW_MTUcovw,61570
815
+ imio.smartweb.core-1.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
816
+ imio.smartweb.core-1.3.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
817
+ imio.smartweb.core-1.3.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
818
+ imio.smartweb.core-1.3.dist-info/RECORD,,