imio.smartweb.core 1.2.91__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.
- imio/smartweb/core/browser/controlpanel.py +42 -5
- imio/smartweb/core/browser/utils.py +4 -1
- imio/smartweb/core/configure.zcml +5 -1
- imio/smartweb/core/contents/__init__.py +2 -0
- imio/smartweb/core/contents/rest/campaign/__init__.py +0 -0
- imio/smartweb/core/contents/rest/campaign/configure.zcml +80 -0
- imio/smartweb/core/contents/rest/campaign/content.py +83 -0
- imio/smartweb/core/contents/rest/campaign/endpoint.py +211 -0
- imio/smartweb/core/contents/rest/campaign/view.pt +19 -0
- imio/smartweb/core/contents/rest/campaign/view.py +29 -0
- imio/smartweb/core/contents/rest/configure.zcml +1 -0
- imio/smartweb/core/interfaces.py +4 -0
- imio/smartweb/core/overrides.zcml +10 -0
- imio/smartweb/core/profiles/default/metadata.xml +1 -1
- imio/smartweb/core/profiles/ideabox/browserlayer.xml +7 -0
- imio/smartweb/core/profiles/ideabox/metadata.xml +5 -0
- imio/smartweb/core/profiles/ideabox/registry/iaideabox.xml +9 -0
- imio/smartweb/core/profiles/ideabox/types/imio.smartweb.CampaignView.xml +40 -0
- imio/smartweb/core/profiles/ideabox/types/imio.smartweb.Folder.xml +71 -0
- imio/smartweb/core/profiles/ideabox/types.xml +17 -0
- imio/smartweb/core/profiles/ideabox_uninstall/browserlayer.xml +7 -0
- imio/smartweb/core/profiles/ideabox_uninstall/types/imio.smartweb.Folder.xml +25 -0
- imio/smartweb/core/profiles/ideabox_uninstall/types.xml +4 -0
- imio/smartweb/core/profiles/testing/metadata.xml +1 -0
- imio/smartweb/core/profiles/testing/registry.xml +2 -2
- imio/smartweb/core/profiles.zcml +18 -0
- imio/smartweb/core/subscribers.py +27 -1
- imio/smartweb/core/subscribers.zcml +8 -0
- imio/smartweb/core/tests/resources/json_ideabox_campaign.json +222 -0
- imio/smartweb/core/tests/resources/json_ideabox_campaigns.json +425 -0
- imio/smartweb/core/tests/resources/json_ideabox_projects.json +1871 -0
- imio/smartweb/core/tests/test_iadeliberations.py +38 -40
- imio/smartweb/core/tests/test_ideabox.py +120 -0
- imio/smartweb/core/tests/test_procedure.py +7 -3
- imio/smartweb/core/tests/test_rest.py +7 -0
- imio/smartweb/core/tests/test_vocabularies.py +8 -10
- imio/smartweb/core/upgrades/configure.zcml +16 -1
- imio/smartweb/core/upgrades/upgrades.py +64 -0
- imio/smartweb/core/utils.py +33 -0
- imio/smartweb/core/viewlets/ogptags.py +9 -0
- imio/smartweb/core/vocabularies.py +35 -4
- imio/smartweb/core/vocabularies.zcml +6 -0
- imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/css/420.smartweb-webcomponents-compiled.css +1 -0
- imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/css/666.smartweb-webcomponents-compiled.css +1 -0
- imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js +2 -0
- imio/smartweb/core/webcomponents/build/js/{828.smartweb-webcomponents-compiled.js.LICENSE.txt → 141.smartweb-webcomponents-compiled.js.LICENSE.txt} +3 -3
- imio/smartweb/core/webcomponents/build/js/15.smartweb-webcomponents-compiled.js +2 -0
- imio/smartweb/core/webcomponents/build/js/21.smartweb-webcomponents-compiled.js +1 -0
- imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -5
- imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js +1 -0
- imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js +1 -0
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/package.json +80 -80
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +1 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.jsx +306 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.scss +672 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCard.jsx +79 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx +193 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignList/CampaignList.jsx +67 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/Filters/Filter.jsx +259 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/index.js +2 -0
- imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss +1 -0
- imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +0 -1
- imio/smartweb/core/webcomponents/src/hooks/useAxios.js +45 -9
- imio/smartweb/core/webcomponents/src/index.jsx +2 -0
- imio/smartweb/core/webcomponents/src/index.scss +2 -2
- imio/smartweb/core/webcomponents/src/utils/CampaignMap.jsx +177 -0
- imio/smartweb/core/webcomponents/src/utils/Map.jsx +1 -1
- imio/smartweb/core/webcomponents/src/utils/Map.scss +15 -1
- imio/smartweb/core/webcomponents/src/utils/translation.js +235 -199
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/METADATA +8 -1
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/RECORD +90 -57
- imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js +0 -2
- imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js +0 -2
- /imio/smartweb/core/webcomponents/build/js/{499.smartweb-webcomponents-compiled.js.LICENSE.txt → 15.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
- /imio.smartweb.core-1.2.91-py3.12-nspkg.pth → /imio.smartweb.core-1.3-py3.12-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/WHEEL +0 -0
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/top_level.txt +0 -0
@@ -1,20 +1,21 @@
|
|
1
|
-
imio.smartweb.core-1.
|
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=
|
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=
|
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=
|
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=
|
12
|
-
imio/smartweb/core/subscribers.zcml,sha256=
|
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=
|
16
|
-
imio/smartweb/core/vocabularies.py,sha256=
|
17
|
-
imio/smartweb/core/vocabularies.zcml,sha256=
|
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=
|
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=
|
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
|
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=
|
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=
|
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=
|
393
|
-
imio/smartweb/core/profiles/testing/registry.xml,sha256=
|
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=
|
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=
|
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=
|
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=
|
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=
|
492
|
-
imio/smartweb/core/upgrades/upgrades.py,sha256=
|
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
|
@@ -664,7 +684,7 @@ imio/smartweb/core/viewlets/odwb_widget_header.pt,sha256=bmtPkjfd40fwOqsCL1sQFCn
|
|
664
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=
|
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
|
@@ -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=
|
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=
|
700
|
-
imio/smartweb/core/webcomponents/build/css/
|
701
|
-
imio/smartweb/core/webcomponents/build/css/
|
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=
|
704
|
-
imio/smartweb/core/webcomponents/build/js/
|
705
|
-
imio/smartweb/core/webcomponents/build/js/
|
706
|
-
imio/smartweb/core/webcomponents/build/js/
|
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=
|
709
|
-
imio/smartweb/core/webcomponents/build/js/
|
710
|
-
imio/smartweb/core/webcomponents/build/js/
|
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=
|
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/
|
716
|
-
imio/smartweb/core/webcomponents/build/js/
|
717
|
-
imio/smartweb/core/webcomponents/build/js/
|
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=
|
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=
|
724
|
-
imio/smartweb/core/webcomponents/src/index.scss,sha256=
|
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=
|
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=
|
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=
|
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=
|
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/
|
776
|
-
imio/smartweb/core/webcomponents/src/utils/Map.
|
777
|
-
imio/smartweb/core/webcomponents/src/utils/
|
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.
|
780
|
-
imio.smartweb.core-1.
|
781
|
-
imio.smartweb.core-1.
|
782
|
-
imio.smartweb.core-1.
|
783
|
-
imio.smartweb.core-1.
|
784
|
-
imio.smartweb.core-1.
|
785
|
-
imio.smartweb.core-1.
|
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,,
|