imio.smartweb.core 1.2.12__py3-none-any.whl → 1.2.19__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/configure.zcml +1 -1
- imio/smartweb/core/browser/dashboards/configure.zcml +0 -2
- imio/smartweb/core/browser/dashboards/plausible.py +4 -4
- imio/smartweb/core/browser/static/smartweb-edit-compiled.js +1 -1
- imio/smartweb/core/browser/static/src/edit.js +5 -0
- imio/smartweb/core/browser/utils.py +4 -30
- imio/smartweb/core/contents/__init__.py +2 -0
- imio/smartweb/core/contents/rest/base.py +12 -0
- imio/smartweb/core/contents/rest/configure.zcml +7 -0
- imio/smartweb/core/contents/rest/directory/content.py +2 -2
- imio/smartweb/core/contents/rest/directory/view.pt +2 -1
- imio/smartweb/core/contents/rest/directory/view.py +3 -0
- imio/smartweb/core/contents/rest/events/content.py +2 -2
- imio/smartweb/core/contents/rest/events/view.pt +2 -1
- imio/smartweb/core/contents/rest/events/view.py +3 -0
- imio/smartweb/core/contents/rest/news/content.py +2 -2
- imio/smartweb/core/contents/rest/news/view.pt +2 -1
- imio/smartweb/core/contents/rest/news/view.py +3 -0
- imio/smartweb/core/contents/rest/search/endpoint.py +1 -1
- imio/smartweb/core/contents/rest/traversal.py +18 -0
- imio/smartweb/core/contents/rest/view.py +7 -0
- imio/smartweb/core/contents/sections/events/view.py +1 -1
- imio/smartweb/core/contents/sections/news/view.py +1 -1
- imio/smartweb/core/interfaces.py +4 -0
- imio/smartweb/core/profiles/default/actions.xml +15 -0
- imio/smartweb/core/profiles/default/metadata.xml +1 -1
- imio/smartweb/core/rest/authentic_sources.py +21 -11
- imio/smartweb/core/tests/test_rest.py +120 -0
- imio/smartweb/core/tests/utils.py +15 -0
- imio/smartweb/core/upgrades/configure.zcml +18 -0
- imio/smartweb/core/upgrades/profiles/1051_to_1052/actions.xml +20 -0
- imio/smartweb/core/utils.py +31 -0
- imio/smartweb/core/viewlets/configure.zcml +11 -0
- imio/smartweb/core/viewlets/httpheaders.py +13 -0
- imio/smartweb/core/viewlets/ogp_tag_header.pt +10 -0
- imio/smartweb/core/viewlets/ogptags.py +8 -0
- imio/smartweb/core/webcomponents/build/css/54.smartweb-webcomponents-compiled.css +1 -0
- imio/smartweb/core/webcomponents/build/css/647.smartweb-webcomponents-compiled.css +1 -0
- imio/smartweb/core/webcomponents/build/js/3.smartweb-webcomponents-compiled.js +2 -0
- imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js +2 -0
- imio/smartweb/core/webcomponents/build/js/493.smartweb-webcomponents-compiled.js +1 -0
- imio/smartweb/core/webcomponents/build/js/54.smartweb-webcomponents-compiled.js +1 -0
- imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js +2 -0
- imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js.LICENSE.txt +1 -0
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/package.json +14 -17
- imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg +1 -0
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx +85 -84
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +22 -23
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +109 -93
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/download.svg +1 -0
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx +7 -7
- imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx +43 -0
- imio/smartweb/core/webcomponents/src/components/Events/{ContactContent/ContactContent.jsx → EventContent/EventContent.jsx} +76 -81
- imio/smartweb/core/webcomponents/src/components/Events/{ContactList/ContactList.jsx → EventList/EventList.jsx} +9 -9
- imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +99 -98
- imio/smartweb/core/webcomponents/src/components/Events/Events.scss +1 -1
- imio/smartweb/core/webcomponents/src/components/News/News.jsx +23 -25
- imio/smartweb/core/webcomponents/src/components/News/News.scss +3 -5
- imio/smartweb/core/webcomponents/src/components/News/{ContactCard/ContactCard.jsx → NewsCard/NewsCard.jsx} +14 -27
- imio/smartweb/core/webcomponents/src/components/News/{ContactContent/ContactContent.jsx → NewsContent/NewsContent.jsx} +37 -40
- imio/smartweb/core/webcomponents/src/components/News/{ContactList/ContactList.jsx → NewsList/NewsList.jsx} +9 -9
- imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx +5 -5
- imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx +5 -5
- imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx +5 -5
- imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx +3 -3
- imio/smartweb/core/webcomponents/src/{components/Events/ContactMap/ContactMap.jsx → utils/Map.jsx} +60 -64
- {imio.smartweb.core-1.2.12.dist-info → imio.smartweb.core-1.2.19.dist-info}/METADATA +59 -1
- {imio.smartweb.core-1.2.12.dist-info → imio.smartweb.core-1.2.19.dist-info}/RECORD +80 -82
- imio/smartweb/core/webcomponents/build/css/267.smartweb-webcomponents-compiled.css +0 -1
- imio/smartweb/core/webcomponents/build/css/779.smartweb-webcomponents-compiled.css +0 -1
- imio/smartweb/core/webcomponents/build/js/267.smartweb-webcomponents-compiled.js +0 -1
- imio/smartweb/core/webcomponents/build/js/552.smartweb-webcomponents-compiled.js +0 -2
- imio/smartweb/core/webcomponents/build/js/565.smartweb-webcomponents-compiled.js +0 -1
- imio/smartweb/core/webcomponents/build/js/612.smartweb-webcomponents-compiled.js +0 -2
- imio/smartweb/core/webcomponents/build/js/779.smartweb-webcomponents-compiled.js +0 -1
- imio/smartweb/core/webcomponents/pnpm-lock.yaml +0 -7066
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactMap/ContactMap.jsx +0 -156
- imio/smartweb/core/webcomponents/src/components/Annuaire/Skeleton/LoaderCss.jsx +0 -7
- imio/smartweb/core/webcomponents/src/components/Annuaire/Skeleton/Skeleton.jsx +0 -20
- imio/smartweb/core/webcomponents/src/components/Events/ContactCard/ContactCard.jsx +0 -49
- imio/smartweb/core/webcomponents/src/components/Events/ContactMap/ContactMap.scss +0 -0
- imio/smartweb/core/webcomponents/src/components/Events/Skeleton/Skeleton.jsx +0 -20
- imio/smartweb/core/webcomponents/src/components/News/ContactMap/ContactMap.jsx +0 -127
- imio/smartweb/core/webcomponents/src/components/News/ContactMap/ContactMap.scss +0 -4
- imio/smartweb/core/webcomponents/src/components/News/Skeleton/Skeleton.jsx +0 -20
- imio/smartweb/core/webcomponents/src/components/Search/Skeleton/Skeleton.jsx +0 -20
- /imio/smartweb/core/webcomponents/build/css/{552.smartweb-webcomponents-compiled.css → 363.smartweb-webcomponents-compiled.css} +0 -0
- /imio/smartweb/core/webcomponents/build/js/{552.smartweb-webcomponents-compiled.js.LICENSE.txt → 3.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
- /imio/smartweb/core/webcomponents/build/js/{612.smartweb-webcomponents-compiled.js.LICENSE.txt → 363.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
- /imio/smartweb/core/webcomponents/src/{components/Annuaire/ContactMap/ContactMap.scss → utils/Map.scss} +0 -0
- /imio.smartweb.core-1.2.12-py3.10-nspkg.pth → /imio.smartweb.core-1.2.19-py3.10-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.12.dist-info → imio.smartweb.core-1.2.19.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.12.dist-info → imio.smartweb.core-1.2.19.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.12.dist-info → imio.smartweb.core-1.2.19.dist-info}/WHEEL +0 -0
- {imio.smartweb.core-1.2.12.dist-info → imio.smartweb.core-1.2.19.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.12.dist-info → imio.smartweb.core-1.2.19.dist-info}/top_level.txt +0 -0
@@ -1,10 +1,10 @@
|
|
1
|
-
imio.smartweb.core-1.2.
|
1
|
+
imio.smartweb.core-1.2.19-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
|
2
2
|
imio/smartweb/core/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
|
3
3
|
imio/smartweb/core/config.py,sha256=BUgfvh4hCaw0onCYAG4gQI1O4hZ-GzXWEltdHi4YLIs,337
|
4
4
|
imio/smartweb/core/configure.zcml,sha256=PeC4rF--rF6MfVQ0NzggQrZWIl35oPtJdEhvQwGxhhI,1459
|
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=3YzYMwCJUTs8NFMmg5eP6fVaA2zqcnD0g7nM5IB1CtM,1017
|
8
8
|
imio/smartweb/core/permissions.zcml,sha256=ZyBEARyO8NAq7tKFTb3G1FqEWERT1mQQ6vCVzji1ci8,1777
|
9
9
|
imio/smartweb/core/profiles.zcml,sha256=ck-C0RgJLnxFB0BSJfZ3C6Exn2-vQXK_bhi84RVD_Io,2028
|
10
10
|
imio/smartweb/core/setuphandlers.py,sha256=k1K8-ezP2gELwCNM5An2bBwQJjAKeS0rYtr2-q_InK8,932
|
@@ -12,7 +12,7 @@ imio/smartweb/core/subscribers.py,sha256=9I6fAJj1FhtkYQZ2Ug_3Bl-p_rn1Nf9_BBHo_iU
|
|
12
12
|
imio/smartweb/core/subscribers.zcml,sha256=48jHmwwnW37LFCN8HFlxdCe8CgNohYRY_pvbKYa2Gww,1016
|
13
13
|
imio/smartweb/core/testing.py,sha256=t0Y3t3FXX2RjgklcRzHT37AjKbMKL3ZjjT3d2UhQm7A,3636
|
14
14
|
imio/smartweb/core/testing.zcml,sha256=VyKjWW2QHYuUYKkGUvtsdFI_Pa7Wcp1yBBDla112eMc,172
|
15
|
-
imio/smartweb/core/utils.py,sha256=
|
15
|
+
imio/smartweb/core/utils.py,sha256=3NS-QRQqErHHh3R-8M3w5bBO8GAlwL69wNxOIl0136w,6571
|
16
16
|
imio/smartweb/core/vocabularies.py,sha256=AYVwb04DhjbebmB0TsfYnhuC9LV-sTwyx9PXeaE6EPA,20506
|
17
17
|
imio/smartweb/core/vocabularies.zcml,sha256=lqiCmaaJwMcO18fWlrtdpI-1g3AZ-Krh9mXRTt1y8o4,5264
|
18
18
|
imio/smartweb/core/behaviors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -23,19 +23,19 @@ imio/smartweb/core/behaviors/orientation.py,sha256=WrW9BeT9KICl4qmkGzplLepJ5J_rM
|
|
23
23
|
imio/smartweb/core/behaviors/quickaccess.py,sha256=j18T39KcbiJErpidMM8wH6i4XjEIZyTQ1kER4_FfhhE,1063
|
24
24
|
imio/smartweb/core/behaviors/subsite.py,sha256=O2aJHl3Jj9WTpGBmNJaoia-PAtb7aSHpCRanvO1JE8k,1707
|
25
25
|
imio/smartweb/core/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
-
imio/smartweb/core/browser/configure.zcml,sha256=
|
26
|
+
imio/smartweb/core/browser/configure.zcml,sha256=Ml4uwbocH5_v_Pi_y8L0m4bUb55M4-jKnYhL1wuHR58,2828
|
27
27
|
imio/smartweb/core/browser/controlpanel.py,sha256=6HXq01oq9ndFc4fNx5Dv49TG92OiCKoK7ovQQUVNQkA,5361
|
28
28
|
imio/smartweb/core/browser/forms.py,sha256=Htj_5T3ryQcrvkGgtuSqndfJsvusxMA3OSqoUoj0xHE,1089
|
29
29
|
imio/smartweb/core/browser/icons.py,sha256=LFBCYTfynp4qNX2OQuNmMTOUEcJv-oQ8Izu6opE3o7A,2065
|
30
30
|
imio/smartweb/core/browser/layout.py,sha256=wvo_Q2dYg1Yd8wOdYSfPg29NPESy9ndAGl6z3r5kxnY,2066
|
31
|
-
imio/smartweb/core/browser/utils.py,sha256=
|
31
|
+
imio/smartweb/core/browser/utils.py,sha256=h4odo_1nXQCBqnp2JjHTW7nbcSZ15hvScmYQNOH1YkA,3228
|
32
32
|
imio/smartweb/core/browser/banner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
33
|
imio/smartweb/core/browser/banner/configure.zcml,sha256=Z2M7gkRDdmV4zRekUhyuJ-_jvbIbhgTj2Zq674iKvUE,389
|
34
34
|
imio/smartweb/core/browser/banner/settings.py,sha256=jfD705_q8MAHUJbjjcfcPj1f98Rahiz_Mks2Ctx5kMA,947
|
35
35
|
imio/smartweb/core/browser/dashboards/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
36
|
-
imio/smartweb/core/browser/dashboards/configure.zcml,sha256=
|
36
|
+
imio/smartweb/core/browser/dashboards/configure.zcml,sha256=hPgoJ_g5KTJBrr-o-3gdLRkGThtifDWgGDzlGz-Aa0w,457
|
37
37
|
imio/smartweb/core/browser/dashboards/plausible.pt,sha256=VlR0b3jXzkG_Qdkx51hOUVI2-LCMStfOFdRhSoD14oQ,1107
|
38
|
-
imio/smartweb/core/browser/dashboards/plausible.py,sha256=
|
38
|
+
imio/smartweb/core/browser/dashboards/plausible.py,sha256=LAJo3_-wNiRuEhNbFLDGr2zW44dhMn-uSb3go5BeI1g,631
|
39
39
|
imio/smartweb/core/browser/faceted/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
40
|
imio/smartweb/core/browser/faceted/block_view.pt,sha256=IIYWx4vGN9ZZavN_2oDnX3ca7LQwv0_30aYjz57TPVE,1987
|
41
41
|
imio/smartweb/core/browser/faceted/configure.zcml,sha256=JFOMhQLPWgsbfYWbO_-EGkG8u5GLT-s_DgGAH_cFHd8,3289
|
@@ -72,7 +72,7 @@ imio/smartweb/core/browser/static/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
72
72
|
imio/smartweb/core/browser/static/Makefile,sha256=M6dYqYEKwHzwyCn3d8RWpbwVJmfLSr2D0Zvqyl7fqFM,350
|
73
73
|
imio/smartweb/core/browser/static/package.json,sha256=rJeZEnDqQvcPTakkRPOZCALk8HBKA-3BOb4Kjwi12vs,695
|
74
74
|
imio/smartweb/core/browser/static/smartweb-edit-compiled.css,sha256=2MJ1HREUQxeXJdG_dlctPKcEgV1om7VSpAVZ7X_zL3w,863
|
75
|
-
imio/smartweb/core/browser/static/smartweb-edit-compiled.js,sha256=
|
75
|
+
imio/smartweb/core/browser/static/smartweb-edit-compiled.js,sha256=8apUM0A48d1cDvNbj3eL82sJzzbI3gDurkV48uGOOpg,1222
|
76
76
|
imio/smartweb/core/browser/static/smartweb-swiperconfig-compiled.js,sha256=N2b-d5pLMqI66U5ORf0E8UvjJqcnYpfe8QmHjf46Qzs,608
|
77
77
|
imio/smartweb/core/browser/static/smartweb-view-compiled.css,sha256=rcpadTevQ4zYZak9WIERRGRJNm0jWG9HJy-ReycSdLs,2702
|
78
78
|
imio/smartweb/core/browser/static/smartweb-view-compiled.js,sha256=T4e-c-rP2TRm7XtuFfM6V5f4PyU80V-37Mw2YL1Y2k0,2060
|
@@ -129,7 +129,7 @@ imio/smartweb/core/browser/static/icons/reseausocial-youtube.svg,sha256=yu6wRkDn
|
|
129
129
|
imio/smartweb/core/browser/static/icons/vue-actualites.svg,sha256=AV03gmKj7dG2FEODgiVkbqA2aWFhLp5G12AGH58V3uc,350
|
130
130
|
imio/smartweb/core/browser/static/icons/vue-agenda.svg,sha256=3oWoG6U3MvFuWES1pf943JI-89OUsI-94SDFAHp9UGM,339
|
131
131
|
imio/smartweb/core/browser/static/icons/vue-annuaire.svg,sha256=MwuysY7mS6r8IIYwo99GyG5LwtPLFw6CxrhiYyImnOI,497
|
132
|
-
imio/smartweb/core/browser/static/src/edit.js,sha256=
|
132
|
+
imio/smartweb/core/browser/static/src/edit.js,sha256=8o6qgeMJ_kDyq94HJ6xB_junqSY-ruH11uguxdkkST0,1978
|
133
133
|
imio/smartweb/core/browser/static/src/edit.less,sha256=ls4apgCMkJaagk8ePsOl6HmQpOVaPdCBaGMkdocZn2o,1089
|
134
134
|
imio/smartweb/core/browser/static/src/swiper-config.js,sha256=PK5Uw_vbHcXiyt3R8Gvdq2geNX6LEdQB2QTWTcKSqWg,1285
|
135
135
|
imio/smartweb/core/browser/static/src/view.js,sha256=xgNT2ggBCeeiWeA8IEL7jRHhqBXywCNVP9nKae4sF68,2980
|
@@ -138,7 +138,7 @@ imio/smartweb/core/browser/subsite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
138
138
|
imio/smartweb/core/browser/subsite/configure.zcml,sha256=ITEH-6pVztshQElqjNv9sk-CcVUTLFeccdSO9rHLwt0,414
|
139
139
|
imio/smartweb/core/browser/subsite/settings.py,sha256=tXEnEYZG75eM7H766ZgNCCWMwOcY9j45shD-8NR_7I0,1601
|
140
140
|
imio/smartweb/core/browser/templates/link_input.pt,sha256=Q7Y4gW4q0DVG-U5f3ZJkrAZwJnV8NMPu_Fdht7zhb4A,2808
|
141
|
-
imio/smartweb/core/contents/__init__.py,sha256=
|
141
|
+
imio/smartweb/core/contents/__init__.py,sha256=0DXz6HbcuFMCGXea3MCfrkT3CBFuVj2nHwd3_UUgPtw,3389
|
142
142
|
imio/smartweb/core/contents/configure.zcml,sha256=VmTWQbCWiiKQUsqzOpP0bRk7ah3B3JZZt7pztgU2Z2g,807
|
143
143
|
imio/smartweb/core/contents/cropping.py,sha256=u5CiSEunHBohw6wmC2yuNXYzDUS3L5kF2SvWiI_VwVU,1465
|
144
144
|
imio/smartweb/core/contents/blocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -188,30 +188,31 @@ imio/smartweb/core/contents/pages/procedure/content.py,sha256=e_kv7YsRF0vblfpxqq
|
|
188
188
|
imio/smartweb/core/contents/pages/procedure/utils.py,sha256=EATKvK72QPQheLXCXCoADYMjA3UfgPtkOPKdqnEyX64,1291
|
189
189
|
imio/smartweb/core/contents/pages/procedure/view.py,sha256=UeZwtdn20lCo7qbqqPcsD9LL69vNTq4m_wXB4nv8jMo,408
|
190
190
|
imio/smartweb/core/contents/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
191
|
-
imio/smartweb/core/contents/rest/base.py,sha256=
|
192
|
-
imio/smartweb/core/contents/rest/configure.zcml,sha256=
|
193
|
-
imio/smartweb/core/contents/rest/
|
191
|
+
imio/smartweb/core/contents/rest/base.py,sha256=v-JXDgQCyvdqDgPFYq0zOMg3l1k2xMONnem92QiFIEQ,2414
|
192
|
+
imio/smartweb/core/contents/rest/configure.zcml,sha256=vANiA3brvm8rsJIUSVNf0BdlEnejpEGXoC82-hpxKkA,433
|
193
|
+
imio/smartweb/core/contents/rest/traversal.py,sha256=KLNGhUmvTAzaRqSIzT3B28HgMBK4vcNV75AfyIesjN8,540
|
194
|
+
imio/smartweb/core/contents/rest/view.py,sha256=nOdJ3It-cEzwCLqz4QMAzMwZCWsMnWIJrSIhLcbCU4s,1014
|
194
195
|
imio/smartweb/core/contents/rest/directory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
195
196
|
imio/smartweb/core/contents/rest/directory/configure.zcml,sha256=_K34jECLk9RWscAyiRXwoJLLBIVj-EJRGFOEbUU5Ito,1035
|
196
|
-
imio/smartweb/core/contents/rest/directory/content.py,sha256=
|
197
|
+
imio/smartweb/core/contents/rest/directory/content.py,sha256=CpOPKpeBGZp7NSqtv9IWgaUUmMGDDuUiB1rcPQaXCUE,1102
|
197
198
|
imio/smartweb/core/contents/rest/directory/endpoint.py,sha256=n07UKvqG0iDQV-1nxl7cnP04V7WuXktkv_SItUAVqcg,2962
|
198
|
-
imio/smartweb/core/contents/rest/directory/view.pt,sha256=
|
199
|
-
imio/smartweb/core/contents/rest/directory/view.py,sha256=
|
199
|
+
imio/smartweb/core/contents/rest/directory/view.pt,sha256=CN5111--p6j0xZ1Tm_OhkwJdCh_xoyiOdDaFAXg4cR4,815
|
200
|
+
imio/smartweb/core/contents/rest/directory/view.py,sha256=rN4k7sqrd32TNMBBOc7RQeosRgYM-dl645Pi1GjVvwA,507
|
200
201
|
imio/smartweb/core/contents/rest/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
202
|
imio/smartweb/core/contents/rest/events/configure.zcml,sha256=ufUHdGMkGd57zgZ4_DxvoK4Zn7_AC_A3_TnLkmdYRhs,1017
|
202
|
-
imio/smartweb/core/contents/rest/events/content.py,sha256=
|
203
|
+
imio/smartweb/core/contents/rest/events/content.py,sha256=5irgZbZt1yavgLUTGU1_O9hANl7WjTe-0eWO2Iz37qw,1279
|
203
204
|
imio/smartweb/core/contents/rest/events/endpoint.py,sha256=HDCxziCblNCWQtnF7HkCsxXW9AOictvTAztYuslX9Zc,2735
|
204
|
-
imio/smartweb/core/contents/rest/events/view.pt,sha256=
|
205
|
-
imio/smartweb/core/contents/rest/events/view.py,sha256=
|
205
|
+
imio/smartweb/core/contents/rest/events/view.pt,sha256=kV6O8spIMLkxiqX28VtZ6MTgtlIV7oipuEpPjGkfAKo,816
|
206
|
+
imio/smartweb/core/contents/rest/events/view.py,sha256=kUiHQqi_zRxbg-6j7hmwTRshWDsuDiPX6yGnezVE49c,498
|
206
207
|
imio/smartweb/core/contents/rest/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
207
208
|
imio/smartweb/core/contents/rest/news/configure.zcml,sha256=f1kNWMjcHul5_dKv51KY_GQII-Cvx-uL7N9Z25zlN8c,1005
|
208
|
-
imio/smartweb/core/contents/rest/news/content.py,sha256=
|
209
|
+
imio/smartweb/core/contents/rest/news/content.py,sha256=awCW9vXglOPIOLsCB9w7M9O5eKGyb755oGZMOdhB_6g,755
|
209
210
|
imio/smartweb/core/contents/rest/news/endpoint.py,sha256=JhJ-YoaszlSfhZnWrc0UELO4Y8ihA3TPE7F9Upptyxk,2668
|
210
|
-
imio/smartweb/core/contents/rest/news/view.pt,sha256=
|
211
|
-
imio/smartweb/core/contents/rest/news/view.py,sha256=
|
211
|
+
imio/smartweb/core/contents/rest/news/view.pt,sha256=OUKvgb7dnkbfyPm30tEvqPeGBSqufLc8A4ptUttpaGA,763
|
212
|
+
imio/smartweb/core/contents/rest/news/view.py,sha256=8dkfrEHi4c7AbgDU1CIfWd5xRz8K28v2DCSY2j-sv0Y,410
|
212
213
|
imio/smartweb/core/contents/rest/search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
213
214
|
imio/smartweb/core/contents/rest/search/configure.zcml,sha256=BTFcBQ28NINyEfoVgYwJgf0JWvk99ewSKgOYx91lZy4,951
|
214
|
-
imio/smartweb/core/contents/rest/search/endpoint.py,sha256=
|
215
|
+
imio/smartweb/core/contents/rest/search/endpoint.py,sha256=sTkdQp-7I0mS8DhV9z0arxcsN9D8yA2DAqoIzLnicB8,9795
|
215
216
|
imio/smartweb/core/contents/sections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
216
217
|
imio/smartweb/core/contents/sections/base.py,sha256=2e3lIG_RGGFAshBEkTNG97OReAnn9GLQk_O_Eqh7SRY,2486
|
217
218
|
imio/smartweb/core/contents/sections/configure.zcml,sha256=aEbAu9MikK-sCVzST8Nn-bMbv7clnHfnoumlBW197Wk,2242
|
@@ -236,7 +237,7 @@ imio/smartweb/core/contents/sections/events/__init__.py,sha256=47DEQpj8HBSa-_TIm
|
|
236
237
|
imio/smartweb/core/contents/sections/events/configure.zcml,sha256=FCDIf6w-2qCPqq0QUodw8-xyAopq7l6O8zoU_uMHNwg,1117
|
237
238
|
imio/smartweb/core/contents/sections/events/content.py,sha256=x4lWDEAC3Y-ouLhjKmec9nvAwhGLectt1EjL6gsoMhQ,2914
|
238
239
|
imio/smartweb/core/contents/sections/events/macros.pt,sha256=llSq-xstFiOXctseKDwvhVCM7A1_Z1Jq-_cUgNiBe10,1522
|
239
|
-
imio/smartweb/core/contents/sections/events/view.py,sha256=
|
240
|
+
imio/smartweb/core/contents/sections/events/view.py,sha256=UFOdHMB5BHzYBqwD2CpAudP2uDLzYOeBbF2W-Ao9918,3636
|
240
241
|
imio/smartweb/core/contents/sections/external_content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
241
242
|
imio/smartweb/core/contents/sections/external_content/configure.zcml,sha256=fv5_EgtBz4Ecnia8zgxwASnuxRmh6dXLJPncmR0BC-U,727
|
242
243
|
imio/smartweb/core/contents/sections/external_content/content.py,sha256=apHtfPwxkHkLQJVFVXs4F8O0gE09uI49AFQ8xRFrXgo,1096
|
@@ -268,7 +269,7 @@ imio/smartweb/core/contents/sections/map/views.py,sha256=3Z5oFis2NIByJCHh8bjAlLu
|
|
268
269
|
imio/smartweb/core/contents/sections/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
269
270
|
imio/smartweb/core/contents/sections/news/configure.zcml,sha256=8MOIEeI7Zr_wbNVgiMa_21Ohgv_bkpEi_7gJu6NK380,880
|
270
271
|
imio/smartweb/core/contents/sections/news/content.py,sha256=tfB2c_ZohUwOcnO4XlKc-sJ96ojkoptaBW71iSa0V7o,2911
|
271
|
-
imio/smartweb/core/contents/sections/news/view.py,sha256=
|
272
|
+
imio/smartweb/core/contents/sections/news/view.py,sha256=7Vsmxf8mCx6APQGyuxRegTH_UYnEScxpV3JsUHz4dPs,3259
|
272
273
|
imio/smartweb/core/contents/sections/postit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
273
274
|
imio/smartweb/core/contents/sections/postit/configure.zcml,sha256=Q0Szs1pmrNP2OiRROpeSQPKLV3tCpyjqZa9vwNFTK9Q,504
|
274
275
|
imio/smartweb/core/contents/sections/postit/content.py,sha256=--bqQPsjpKuqMzOb21eOERjp2a2QehGTAsBvZ3FnQMA,2239
|
@@ -303,11 +304,11 @@ imio/smartweb/core/faceted/configure.zcml,sha256=xuZzXBOMGu87KNLuFIQ8gHz8fxct7lD
|
|
303
304
|
imio/smartweb/core/faceted/layout.py,sha256=9WCr3U7cEy0SmfI1cXBijR1bF4DVXQ684LzGpD-MNMw,395
|
304
305
|
imio/smartweb/core/faceted/menu.py,sha256=fFCDVUyN8803Jf7vfkF5FczbYavPC-FoiC-mxZT6Mag,295
|
305
306
|
imio/smartweb/core/faceted/config/collection.xml,sha256=N_IE-bDMPXKWOhkI_y6seEDYKOeDWQvstwIbtXvPAlw,2906
|
306
|
-
imio/smartweb/core/profiles/default/actions.xml,sha256=
|
307
|
+
imio/smartweb/core/profiles/default/actions.xml,sha256=wzlfN9gHt6tRgwpIVjA2D1jyyLun-CQfnmLSTlJ-Uk0,6612
|
307
308
|
imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH8EF-fc-aPua-oIdu0GuzTyk,179
|
308
309
|
imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
|
309
310
|
imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
|
310
|
-
imio/smartweb/core/profiles/default/metadata.xml,sha256=
|
311
|
+
imio/smartweb/core/profiles/default/metadata.xml,sha256=Y3Vu6fAHTcMxwfdJYl6x63AjIRmrqblSUF1oMYd8bbc,1218
|
311
312
|
imio/smartweb/core/profiles/default/repositorytool.xml,sha256=GXq_sozn7Ucy0810IS9T0dgl8M7FT0gUbVz7BeFcLpo,183
|
312
313
|
imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
|
313
314
|
imio/smartweb/core/profiles/default/types.xml,sha256=xkQyPtEccUnAHu5mL83r96dmtnCWNn17lVRJPP2jWMg,2040
|
@@ -358,7 +359,7 @@ imio/smartweb/core/profiles/testing/types/Document.xml,sha256=rsGEqMCL6GdRoNaUaU
|
|
358
359
|
imio/smartweb/core/profiles/testing/types/Folder.xml,sha256=VegC_axHcmGWUvCSTxID12lErLwKSURpL2h3CTbEae4,213
|
359
360
|
imio/smartweb/core/profiles/uninstall/browserlayer.xml,sha256=K8KnZFW9E6Hwi61Z6XZlXOjUpAKzJR6HjmjoOjFEWrk,128
|
360
361
|
imio/smartweb/core/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
361
|
-
imio/smartweb/core/rest/authentic_sources.py,sha256=
|
362
|
+
imio/smartweb/core/rest/authentic_sources.py,sha256=5GmzB3GL5vhQNhqgZGmbsQSgXeETdoJiw74sSRVEtyg,4305
|
362
363
|
imio/smartweb/core/rest/configure.zcml,sha256=3tEU99M_deyoRN0YeIVQmPk7NL88gjYtXZOT8QmSbN4,2891
|
363
364
|
imio/smartweb/core/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
364
365
|
imio/smartweb/core/tests/test_banner.py,sha256=83Q86ezLMJVwCLxoJddmlE9GKR3h6Qyb-rbqVSFc8a0,7838
|
@@ -383,7 +384,7 @@ imio/smartweb/core/tests/test_page.py,sha256=1dD9M_6nwS6M2OuyWmT5cPq5qnxnog3tcqF
|
|
383
384
|
imio/smartweb/core/tests/test_plausibleview.py,sha256=G1ryfnz3TuQBG8VFO5KzEylT5DFABW58PQuuvPq_ccY,3229
|
384
385
|
imio/smartweb/core/tests/test_portal_page.py,sha256=hIqg4eb91o8BsSj7eSKdvoxehzOXt8bzpg1o5ej__zg,7215
|
385
386
|
imio/smartweb/core/tests/test_procedure.py,sha256=0w8phOwYfpp9vb3KDsnwjX8AhQXWdodA06W4koderQo,6474
|
386
|
-
imio/smartweb/core/tests/test_rest.py,sha256=
|
387
|
+
imio/smartweb/core/tests/test_rest.py,sha256=WOSprdg0oV-8BLemwpNL9VH25qO2ghR3iM0TeEmW1Ps,19679
|
387
388
|
imio/smartweb/core/tests/test_robot.py,sha256=NQ7AkN4tEva3bgGjMxmyqY0zIo4pJPnPOwnD9hmrTVI,926
|
388
389
|
imio/smartweb/core/tests/test_search.py,sha256=VryeRI4_5CvnStKOoNoG95M2WTy7Lyy_AhHIDG40M14,2182
|
389
390
|
imio/smartweb/core/tests/test_section_contact.py,sha256=SC0pliePmuJ5NGLV9CYsNiodWEDgmrUM0ukoaI30sDk,23198
|
@@ -399,7 +400,7 @@ imio/smartweb/core/tests/test_text.py,sha256=DtZNNGJ-MDYbJ-YQj2C0q2Hr7t4-sUbV6SW
|
|
399
400
|
imio/smartweb/core/tests/test_toolbar.py,sha256=dxwOGNOg2wPkAnPU3hqGCI6VL2D2nPOIOtbMorvjfps,3823
|
400
401
|
imio/smartweb/core/tests/test_utils.py,sha256=CkRkK3SbT4oQx_-Nq2Z0AhmhzR4kk2BkIZqSbIiPU04,4125
|
401
402
|
imio/smartweb/core/tests/test_vocabularies.py,sha256=37k8LiezqLoosJ2A4h32p78EjAwPpO8w6g3gFbt3ho8,14234
|
402
|
-
imio/smartweb/core/tests/utils.py,sha256=
|
403
|
+
imio/smartweb/core/tests/utils.py,sha256=hsDrWOxL0oNNyx92Hke9Kj9ByKzc2kZ19q9QPVsNud4,2688
|
403
404
|
imio/smartweb/core/tests/resources/cirkwi_bad_widget_mock.html,sha256=13YeZ0mo8PoeHIHa64SLKuhNfGqBMT2uprmYDyQxE78,150
|
404
405
|
imio/smartweb/core/tests/resources/cirkwi_good_widget_mock.html,sha256=vBgQwBKNGcGRrOHfXYZO_gmAGL1oKPDIUOnDfXEHCR4,333252
|
405
406
|
imio/smartweb/core/tests/resources/json_auth_sources_directory_entity.json,sha256=DymLJjcVgC4pYTG3-KNINialYbBt6-4bF4qvHuhvx2o,369
|
@@ -435,7 +436,7 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
|
|
435
436
|
imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
|
436
437
|
imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
|
437
438
|
imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
438
|
-
imio/smartweb/core/upgrades/configure.zcml,sha256=
|
439
|
+
imio/smartweb/core/upgrades/configure.zcml,sha256=H3daUNGkJUbgTkaPipSci2h6RKNp10D4_QfPEKr16Nw,24385
|
439
440
|
imio/smartweb/core/upgrades/upgrades.py,sha256=SZHVeYODErjQZR_LzQ0cxBnJoqWRWsIiRpUhNTMiz7k,8295
|
440
441
|
imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
|
441
442
|
imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
|
@@ -532,6 +533,7 @@ imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionExt
|
|
532
533
|
imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionLinks.xml,sha256=cyejrUtL-HEgj9g9OyMrmTcLytL8vqwQWRYGaMfHHHM,446
|
533
534
|
imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionNews.xml,sha256=w1N5DtS2SClNMwpcoafH4_OW1KcMgRGKuwYnjKDKUI8,445
|
534
535
|
imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionSelections.xml,sha256=ZOmofiYNFz6gHv0j6OF3_Q783wq0eUrg7SP97YjcNnI,451
|
536
|
+
imio/smartweb/core/upgrades/profiles/1051_to_1052/actions.xml,sha256=f2y6T7OsV3aV_0lwX34cDnwzeJ0WV2jAZZQ2vzM3o4o,882
|
535
537
|
imio/smartweb/core/viewlets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
536
538
|
imio/smartweb/core/viewlets/actions.py,sha256=QWj_pLNxH4223XPk4b4Dc79DiajF0HHfaXlUmXTwJ8k,661
|
537
539
|
imio/smartweb/core/viewlets/arcgis_header.pt,sha256=iQc5ZG3g1Cmap963OG-wPotllr7oWmVSMoAnA7tctrQ,3428
|
@@ -541,7 +543,7 @@ imio/smartweb/core/viewlets/category.pt,sha256=JElI8UGE7Lk-Uhf2KsKlTlX3EvqPdjmgk
|
|
541
543
|
imio/smartweb/core/viewlets/category.py,sha256=F8Vqxy3686-jY6ymjvZJFtK1Kj2a8Sqj8tAC37ZsCOU,308
|
542
544
|
imio/smartweb/core/viewlets/chatbot.pt,sha256=ataC2OtLpEawvrIZnM9vR8ChLfwkeMl78tOieSGpvSM,611
|
543
545
|
imio/smartweb/core/viewlets/chatbot.py,sha256=WgY4PQ7hZAuMRdACxRmwAs7-71Vl-h1Jk7CM1YPc6b0,329
|
544
|
-
imio/smartweb/core/viewlets/configure.zcml,sha256=
|
546
|
+
imio/smartweb/core/viewlets/configure.zcml,sha256=VU2pH2Kckw7kxsUJ07AiIvbQbLvZBzp7jFIMw-O46fQ,12670
|
545
547
|
imio/smartweb/core/viewlets/default_page_warning.pt,sha256=nw1G01jkmyY776NMmSxg-7ZHuNcZkzbrrZirTaRVyXY,531
|
546
548
|
imio/smartweb/core/viewlets/external_content.py,sha256=b9Qpxvzd5cEfwUOnS9Cp19wPplsUfDrolIwocm7Wx9A,421
|
547
549
|
imio/smartweb/core/viewlets/footer.pt,sha256=PbbXe2krY6DvCFWidShbo5XU9PATf8smpGM3N33vhkw,872
|
@@ -552,6 +554,7 @@ imio/smartweb/core/viewlets/header_actions_viewlet.pt,sha256=8XzyvcdvhyWneUrv7FU
|
|
552
554
|
imio/smartweb/core/viewlets/header_top_viewlet.pt,sha256=nn7AhTim_4yfhxevbW1-UsQ62tREyFZhZKq1FODmccc,137
|
553
555
|
imio/smartweb/core/viewlets/herobanner.pt,sha256=Zg7Hv44VkU5FZ7T0RcuDCcZ7oDcvVX5HQyiVrPU62bU,688
|
554
556
|
imio/smartweb/core/viewlets/herobanner.py,sha256=RkuqUWY7pXcSgIW7amSnJCi5MzGDbjWHtuUAes0yhgc,1359
|
557
|
+
imio/smartweb/core/viewlets/httpheaders.py,sha256=-bLAtb_N5wNCe9yoQ_5hcw5Ok74uEwjsDvbiKM0uQEY,389
|
555
558
|
imio/smartweb/core/viewlets/interfaces.py,sha256=guKxKhsi93k2GXX5Ohw-wAdxwZKxstQScUjLvi7jJ94,498
|
556
559
|
imio/smartweb/core/viewlets/lead_image.py,sha256=z7MVIBEcdmjR53TYCP60YHi-6fgUz7RHbK82GtfDjKk,318
|
557
560
|
imio/smartweb/core/viewlets/logo.pt,sha256=5XeXG4h8aCD2yiz59BRbhVICE-YYCZ3q-qnuSxOrmKU,738
|
@@ -563,6 +566,8 @@ imio/smartweb/core/viewlets/minisite_link.pt,sha256=4BwRkbEAT-9TElSsUPUBOki9VZqK
|
|
563
566
|
imio/smartweb/core/viewlets/navigation.py,sha256=-woNkfk67arOSfTKekPEUS7McheunveTgJM2NedniiU,7284
|
564
567
|
imio/smartweb/core/viewlets/offcanvas.pt,sha256=9uLFpK0psIKQlg5BXahi24_IZebLCeXEsE81JoxNGDY,533
|
565
568
|
imio/smartweb/core/viewlets/offcanvas.py,sha256=3VE2WJcvSKp3oAKYwGuwaHYMoK_83KMksMFDa75u52Y,129
|
569
|
+
imio/smartweb/core/viewlets/ogp_tag_header.pt,sha256=VsyJSD5j5tmK_FFQXuwjpCDAbwtWXYfUm7RTbg3TwPE,612
|
570
|
+
imio/smartweb/core/viewlets/ogptags.py,sha256=LjxCS82JD6KpL1tbYwKoeZlPsxlguDUHo6_pVYJVUJs,195
|
566
571
|
imio/smartweb/core/viewlets/procedure.pt,sha256=gLwNuikgXsWMnBybKdFeKfkfDKnI3SlrU3y2z8sVt5k,602
|
567
572
|
imio/smartweb/core/viewlets/procedure.py,sha256=7nqBU_Sl5tcQaV_UNM-2BPLc8vogCzTO6kQlu4hwofI,633
|
568
573
|
imio/smartweb/core/viewlets/searchbox.pt,sha256=Wv0DbGTKif1z_SDl9-FQKIAPJcfFAHHO1qOtR-LtnR4,403
|
@@ -580,8 +585,7 @@ imio/smartweb/core/webcomponents/README.md,sha256=u-1KMiYzChIOe3BNY1paacCEVsxRit
|
|
580
585
|
imio/smartweb/core/webcomponents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
581
586
|
imio/smartweb/core/webcomponents/babel.config.json,sha256=GLMlFLD4qaaNVuRWogON3geyD75eqVm6cN4RAGwPt3g,194
|
582
587
|
imio/smartweb/core/webcomponents/configure.zcml,sha256=WiA01XuVcc4VgxrvFCztR2nPMCBp2dGIgpIZv6WdJ7s,263
|
583
|
-
imio/smartweb/core/webcomponents/package.json,sha256=
|
584
|
-
imio/smartweb/core/webcomponents/pnpm-lock.yaml,sha256=JG4ddKx_Cm56scBd2-mqDpbV3owMc5O9RfIExoujY4E,255013
|
588
|
+
imio/smartweb/core/webcomponents/package.json,sha256=vMBFNJ6udmOqouQl_1NGtMIgVaR5wuYOeEoLJRbHpec,2530
|
585
589
|
imio/smartweb/core/webcomponents/postcss.config.js,sha256=C6AOPegqTEkRboXRWl6obj0priHtdSRiApehW4TWp8E,101
|
586
590
|
imio/smartweb/core/webcomponents/webpack.config.js,sha256=ie90xYAH82rUaPv41_7v-eXTDADH55Z-V9v9gptDC6s,6852
|
587
591
|
imio/smartweb/core/webcomponents/webpackPlonePlugin.js,sha256=TWpGoEYRBOKB7o0SJ1F7P0hLYflkNmbODG7ZCyrPjQw,2226
|
@@ -595,29 +599,30 @@ imio/smartweb/core/webcomponents/build/assets/oeil-big.f32cd1df1274a9593de0c4bd8
|
|
595
599
|
imio/smartweb/core/webcomponents/build/assets/pin-react-active.07d154037a15be5525b823fdc626cf29.svg,sha256=XgE72Zg25rWhDFtpgRTh6pSWc0utqIobzbez4RYC3kA,330
|
596
600
|
imio/smartweb/core/webcomponents/build/assets/pin-react.fda934b5daf26dd4da2a71a7e7e44431.svg,sha256=kXxN_F5nCL1SUuSvO7dsVz2BCk6lyembEe0ZcDUjEUQ,336
|
597
601
|
imio/smartweb/core/webcomponents/build/assets/search.57bdbf5b191499cd77514097d1c4972c.svg,sha256=VYkbBVirrqBaye-75ns8tcpEqjqpOiXd2CbIqo-M384,426
|
598
|
-
imio/smartweb/core/webcomponents/build/css/267.smartweb-webcomponents-compiled.css,sha256=g5tMyfvrcZN8y8wj_e0BcBGxGWDmvxsmRmwDtQkLGZs,20468
|
599
602
|
imio/smartweb/core/webcomponents/build/css/323.smartweb-webcomponents-compiled.css,sha256=IgXifdqMDHLh-US9FSsTYPY75eCZgTETHOBUv4KS94E,2546
|
600
|
-
imio/smartweb/core/webcomponents/build/css/
|
601
|
-
imio/smartweb/core/webcomponents/build/css/
|
603
|
+
imio/smartweb/core/webcomponents/build/css/363.smartweb-webcomponents-compiled.css,sha256=x9VqRcId3S5hYdax0wOTpMeryV4eFyI-M9HbQ1jpLvo,20093
|
604
|
+
imio/smartweb/core/webcomponents/build/css/54.smartweb-webcomponents-compiled.css,sha256=UiRaanRTl9hsewkBRSi7Dqz62z2a-9pZnCUTX-ulZBY,20522
|
605
|
+
imio/smartweb/core/webcomponents/build/css/647.smartweb-webcomponents-compiled.css,sha256=IjUbb5U3SmZlX5UsisrsQIbU6OTS_YeMKBds8GQEd8c,3764
|
602
606
|
imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=xLkcneVroMl6Imnhr5c4qehs2ytJJ3v7nal5GdQiSTI,5304
|
603
607
|
imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js,sha256=0O_DNz729MDffAcwrH63ZvFYeDv_acOR0GXjnI-oH3g,17480
|
604
608
|
imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=R14i0Dp6JC2AOtJVaegrZVAe22i9niDnCBKa5vn7QVc,59
|
605
609
|
imio/smartweb/core/webcomponents/build/js/212.smartweb-webcomponents-compiled.js,sha256=tcLNEn8czwNz0Rxjdm2iD9TyWiwG07aZO8MGHr7OWMU,171258
|
606
610
|
imio/smartweb/core/webcomponents/build/js/212.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=euEy6zLvyR2bywaOKBw2hW-9rDEbt5IPelh6VIDyL4Y,361
|
607
|
-
imio/smartweb/core/webcomponents/build/js/
|
608
|
-
imio/smartweb/core/webcomponents/build/js/
|
611
|
+
imio/smartweb/core/webcomponents/build/js/3.smartweb-webcomponents-compiled.js,sha256=zcvVPZnasClLfjNJNDXAk_haPQ4RwnPgXSctB7Qixf8,16020
|
612
|
+
imio/smartweb/core/webcomponents/build/js/3.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
|
613
|
+
imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js,sha256=P3ty7k9oQ28DCFnvHfzQkz1DG35szEOA3zih_yZzFLI,26760
|
609
614
|
imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
|
610
|
-
imio/smartweb/core/webcomponents/build/js/
|
611
|
-
imio/smartweb/core/webcomponents/build/js/
|
612
|
-
imio/smartweb/core/webcomponents/build/js/
|
613
|
-
imio/smartweb/core/webcomponents/build/js/
|
614
|
-
imio/smartweb/core/webcomponents/build/js/
|
615
|
-
imio/smartweb/core/webcomponents/build/js/
|
615
|
+
imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js,sha256=NHDKSXUCFASe0Um6q6r7yLGKxReSCqpO-i-lw1WeSms,42357
|
616
|
+
imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
|
617
|
+
imio/smartweb/core/webcomponents/build/js/493.smartweb-webcomponents-compiled.js,sha256=cOL--BdlasQ_dOvLzCcG0sDZGUrreOHpksjf_BGl9kE,160064
|
618
|
+
imio/smartweb/core/webcomponents/build/js/54.smartweb-webcomponents-compiled.js,sha256=NWaovmdm3y_f8ojUQ_vvs7TxyVtX88f22rglrsu9xBA,33499
|
619
|
+
imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js,sha256=mOAJaLuMG_XqsKts8A3iyehoOAFJbppWiQwW3TGDKPM,42746
|
620
|
+
imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
|
616
621
|
imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js,sha256=51GDqoBV0fL0ty2auKpPbs_Xo8yGklTW5rn4k1GtC_Y,159426
|
617
622
|
imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
|
618
623
|
imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js,sha256=0EuJ1Ffqn0pu7Px-9ff-LJymiQ7YpQzWu9pSs2nkyWY,363925
|
619
624
|
imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=ot4CrmvW4r8ZeygP2wflnoqyUUmqSvjGt7WzqhtjPxY,15195
|
620
|
-
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=
|
625
|
+
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=N2ErTnWZUXmciuyHoMZkXS4MG8SXJUZ33K3MUc_Ogdw,409516
|
621
626
|
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=MWaSlPSODUyzTS-6uhTd6MYi8HGJgjOtFyvm2-GJi4U,1035
|
622
627
|
imio/smartweb/core/webcomponents/src/index.jsx,sha256=WV70VNETdsIMADJ5EqajwxQ6WacMbhw5Z_91fVDti_Y,757
|
623
628
|
imio/smartweb/core/webcomponents/src/index.scss,sha256=1Nw2CweoA3EqyaUt_wGB3fs5XAD_LMQU2zfrMeZn7ks,5511
|
@@ -635,54 +640,47 @@ imio/smartweb/core/webcomponents/src/assets/pin-react.svg,sha256=kXxN_F5nCL1SUuS
|
|
635
640
|
imio/smartweb/core/webcomponents/src/assets/pin.svg,sha256=-6a-6Jyc3EJteH1X5eFtPUCCz4FQeWKkVhMKHDhmbzI,890
|
636
641
|
imio/smartweb/core/webcomponents/src/assets/search.svg,sha256=VYkbBVirrqBaye-75ns8tcpEqjqpOiXd2CbIqo-M384,426
|
637
642
|
imio/smartweb/core/webcomponents/src/assets/skeleton.svg,sha256=Dmiuh5l9BjAqJkMN0IKg6iT3wJCcD8Dda1QQt4wul9g,453
|
638
|
-
imio/smartweb/core/webcomponents/src/
|
643
|
+
imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
|
644
|
+
imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=J2zVCXHakWL1jaqR830LJE5Gmt1RSQmqb8yx3WF-Lp4,8696
|
639
645
|
imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=Bdt5jAxxWUMICWrRSe1FFbtUPHvgV4TP7M7sUsyrZCI,8871
|
640
646
|
imio/smartweb/core/webcomponents/src/components/Annuaire/index.js,sha256=OhysAmFEBw6Jg0F2iko4IGL8VcX0kZ8IZZ30tMWUY1c,97
|
641
|
-
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=
|
642
|
-
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=
|
643
|
-
imio/smartweb/core/webcomponents/src/components/Annuaire/
|
644
|
-
imio/smartweb/core/webcomponents/src/components/Annuaire/
|
645
|
-
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactMap/ContactMap.scss,sha256=Ht5NXE7K1HohmDv4BOaE4Z0mhnqtKqYbBuEiP371Uho,73
|
647
|
+
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=yBusagLB-0mSlZWSXNB0wlYFzj2WBg5FvGBsVbGVbes,4868
|
648
|
+
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=D0oP6fx-RLwGwKIvtbnPqZndlLKF27vm67V7RET6ric,26744
|
649
|
+
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
|
650
|
+
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=g0jxMjGP_PTnk48sew6pAMl1JgEwappTT8K57i3ngCc,1615
|
646
651
|
imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=Q0Vq2EHYdGdGiYVhgYJAX23He8TSedQtXvRWY-kd9r8,7637
|
647
|
-
imio/smartweb/core/webcomponents/src/components/
|
648
|
-
imio/smartweb/core/webcomponents/src/components/
|
649
|
-
imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=nGDwSKzCU3IvIIbqBSXfJZXAqhcAcYuvCfknOzOvDys,9025
|
650
|
-
imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=Rw0SoXqpVWjmCUDGDUQFq992JGzEKLHnlEQCupQg8a0,9045
|
652
|
+
imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=eKa8EnGesP5aDdFCjMJ64lAkWArPCqWM1WW87qNeX8g,8635
|
653
|
+
imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=NYjgqNEJNXNPRYr60dIqt6MxX8Lbkv3GCcBE5K6CpIk,9042
|
651
654
|
imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
|
652
|
-
imio/smartweb/core/webcomponents/src/components/Events/
|
653
|
-
imio/smartweb/core/webcomponents/src/components/Events/
|
654
|
-
imio/smartweb/core/webcomponents/src/components/Events/
|
655
|
-
imio/smartweb/core/webcomponents/src/components/Events/ContactMap/ContactMap.jsx,sha256=aZzTi6VSrtGKtpD9HjePXkmwosH7J37Z3OEhiqk8Dc4,5725
|
656
|
-
imio/smartweb/core/webcomponents/src/components/Events/ContactMap/ContactMap.scss,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
655
|
+
imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=eQlCR9UgXJATOmXFQzPphNrPP1zcjgKkCdbFmg-W8BU,1649
|
656
|
+
imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=9Hu5kHrkHoBHG2zT3nmKMu584TsZFIQcgMCl_snseQs,16453
|
657
|
+
imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=6k2bIyKd0pzj28NaVhSBJclnEyxdi6iNPbQEHSS5fZk,1600
|
657
658
|
imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=CkSWsGgrDRF5UBpV9flmS3HeZwKkloXBQ7MuUuq-1TI,6272
|
658
|
-
imio/smartweb/core/webcomponents/src/components/
|
659
|
-
imio/smartweb/core/webcomponents/src/components/News/News.
|
660
|
-
imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=ceOATMGRkY7DKSRrxmVjXDfy7Ho5S4ag5Ue9EVTcGJI,3293
|
659
|
+
imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=aCXLAcBpKHFFUtWMYxrb2u6xP70e622SigUiVm0RMiw,6778
|
660
|
+
imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=1RnZHhLGYzwVWejfw4TbjyTEsiyn_Ajd2SQCF21aiYA,3260
|
661
661
|
imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
|
662
|
-
imio/smartweb/core/webcomponents/src/components/News/ContactCard/ContactCard.jsx,sha256=lNSf41IyHBKgxGXdP1uK4RwRxQam3CRaOqw_W-_bmfk,3116
|
663
|
-
imio/smartweb/core/webcomponents/src/components/News/ContactContent/ContactContent.jsx,sha256=iS1ubycCwMXy-T47yCpxa616Jabwo_lxJXg7p_NNEsY,12536
|
664
|
-
imio/smartweb/core/webcomponents/src/components/News/ContactList/ContactList.jsx,sha256=r5Nh1nbJHHceU-qKk549KDbS06ciC9KSZ6gvw-DPOeE,1493
|
665
|
-
imio/smartweb/core/webcomponents/src/components/News/ContactMap/ContactMap.jsx,sha256=CUj_4_X6_OfdepdjdgsNNRq66wfYbDyL40h79YnPiSA,4216
|
666
|
-
imio/smartweb/core/webcomponents/src/components/News/ContactMap/ContactMap.scss,sha256=boHGz4RLxZzD3IK-6TePqJcklrX_hnl2_qzVIOU13jE,42
|
667
662
|
imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx,sha256=LrcbrO3TBBqEmv27es3iD2Ahsqq5Qi8DxnshrDVc5s8,6249
|
668
|
-
imio/smartweb/core/webcomponents/src/components/News/
|
663
|
+
imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx,sha256=m6Xk9EWS3t6Mgzra5199_Ash53pNhqKb_xnI_tPYoRQ,2544
|
664
|
+
imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=6zNqF61Rk_ci8156Hp2KjoaHZooda5vTxvp_8D1PvXs,12228
|
665
|
+
imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=FY3-uG_4s8CfHYtonlPmafVhPMcBgQJ2t20fPgUq1Sc,1415
|
669
666
|
imio/smartweb/core/webcomponents/src/components/Search/Search.jsx,sha256=KW5OPrER0BdTTjO7vof3ks809h2ABWfKfexaQ6HOf_E,2271
|
670
667
|
imio/smartweb/core/webcomponents/src/components/Search/Search.scss,sha256=cXrAbnVpUB6UPuF-DhM5juOQy8aDP2ZkXlDH6S_r3lo,2735
|
671
668
|
imio/smartweb/core/webcomponents/src/components/Search/index.js,sha256=9-31nRb1gWthMG0e4q7k52nPq3Ia4w3WkqnCjbupZpo,95
|
672
|
-
imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx,sha256=
|
673
|
-
imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx,sha256=
|
669
|
+
imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx,sha256=W-Qgo54rG-k2n-K4Brdpx6qEwea1gocZXzOkZqhAZTw,2412
|
670
|
+
imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx,sha256=pE3tV8v3JwPzKI_R14UqekX35zayXjWVOEt7w3AKTGU,2410
|
674
671
|
imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx,sha256=_7EozRrBRVuiQYIwMb2KQqeLk_lT_ev7SJvOTJ4KV8w,6510
|
675
|
-
imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx,sha256=
|
676
|
-
imio/smartweb/core/webcomponents/src/components/Search/
|
677
|
-
imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx,sha256=TXYWG7R1jbM7nlDqNmOkdFGueJmwzlgCPetoF6B01zc,1831
|
672
|
+
imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx,sha256=rWkvitv4KsRKNBl8JdDJHFii4GwaiF_-1GP6xOMIITs,2437
|
673
|
+
imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx,sha256=gDpPg4wEfd3XtSSbxKsHDoO-tim1UkRVHkyegirgDRc,1810
|
678
674
|
imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=MsRpT8p9bZTp2Hk2scbeqIeVoFSqKlt0Dr6ZGWNgJ1g,1215
|
679
675
|
imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js,sha256=fGxgxCI22ERSlVLCYmD0-nztnGUIz-VkUNyLtj5HSuo,223
|
676
|
+
imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=ulMbtvMcmV0Af4lhYtkkShvjJ9_s3Ik5x4FfIz_QGsE,5071
|
677
|
+
imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=Ht5NXE7K1HohmDv4BOaE4Z0mhnqtKqYbBuEiP371Uho,73
|
680
678
|
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=bsTZTvRlBaCImAchnuhZLtLQYC06bM539cPLoAgBMP0,2694
|
681
679
|
imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
|
682
|
-
imio.smartweb.core-1.2.
|
683
|
-
imio.smartweb.core-1.2.
|
684
|
-
imio.smartweb.core-1.2.
|
685
|
-
imio.smartweb.core-1.2.
|
686
|
-
imio.smartweb.core-1.2.
|
687
|
-
imio.smartweb.core-1.2.
|
688
|
-
imio.smartweb.core-1.2.
|
680
|
+
imio.smartweb.core-1.2.19.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
681
|
+
imio.smartweb.core-1.2.19.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
682
|
+
imio.smartweb.core-1.2.19.dist-info/METADATA,sha256=LwMhtLjPgntJsIf47CjVe6NUGC5LDlDR69aLjdjYOdo,46559
|
683
|
+
imio.smartweb.core-1.2.19.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
684
|
+
imio.smartweb.core-1.2.19.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
685
|
+
imio.smartweb.core-1.2.19.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
686
|
+
imio.smartweb.core-1.2.19.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
.flexbin{display:flex;flex-wrap:wrap;margin:-2.5px;overflow:hidden}.flexbin:after{content:"";flex-grow:999999999;height:0;min-width:300px}.flexbin>*{display:block;flex-grow:1;height:300px;margin:2.5px;position:relative}.flexbin>*>img{height:300px;max-width:100%;min-width:100%;object-fit:cover;vertical-align:bottom}.flexbin.flexbin-margin{margin:2.5px}@media (max-width:980px){.flexbin{display:flex;flex-wrap:wrap;margin:-2.5px;overflow:hidden}.flexbin:after{content:"";flex-grow:999999999;height:0;min-width:150px}.flexbin>*{display:block;flex-grow:1;height:150px;margin:2.5px;position:relative}.flexbin>*>img{height:150px;max-width:100%;min-width:100%;object-fit:cover;vertical-align:bottom}.flexbin.flexbin-margin{margin:2.5px}}@media (max-width:400px){.flexbin{display:flex;flex-wrap:wrap;margin:-2.5px;overflow:hidden}.flexbin:after{content:"";flex-grow:999999999;height:0;min-width:100px}.flexbin>*{display:block;flex-grow:1;height:100px;margin:2.5px;position:relative}.flexbin>*>img{height:100px;max-width:100%;min-width:100%;object-fit:cover;vertical-align:bottom}.flexbin.flexbin-margin{margin:2.5px}}.leaflet-image-layer,.leaflet-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane,.leaflet-pane>canvas,.leaflet-pane>svg,.leaflet-tile,.leaflet-tile-container,.leaflet-zoom-box{left:0;position:absolute;top:0}.leaflet-container{overflow:hidden}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile{-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{height:1600px;-webkit-transform-origin:0 0;width:1600px}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-height:none!important;max-width:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer{max-height:none!important;max-width:none!important;padding:0;width:auto}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{-moz-box-sizing:border-box;box-sizing:border-box;height:0;width:0;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{height:1px;width:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{pointer-events:visiblePainted;pointer-events:auto;position:relative;z-index:800}.leaflet-bottom,.leaflet-top{pointer-events:none;position:absolute;z-index:1000}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{clear:both;float:left}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-pan-anim .leaflet-tile,.leaflet-zoom-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-control,.leaflet-popup-pane{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-image-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-image-layer.leaflet-interactive,.leaflet-marker-icon.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{background:hsla(0,0%,100%,.5);border:2px dotted #38f}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{border-radius:4px;box-shadow:0 1px 5px rgba(0,0,0,.65)}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;color:#000;display:block;height:26px;line-height:26px;text-align:center;text-decoration:none;width:26px}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:focus,.leaflet-bar a:hover{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom:none;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.leaflet-bar a.leaflet-disabled{background-color:#f4f4f4;color:#bbb;cursor:default}.leaflet-touch .leaflet-bar a{height:30px;line-height:30px;width:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{background:#fff;border-radius:5px;box-shadow:0 1px 5px rgba(0,0,0,.4)}.leaflet-control-layers-toggle{background-image:url(../assets/layers.416d91365b44e4b4f4777663e6f009f3.png);height:36px;width:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(../assets/layers-2x.8f2c4d11474275fbc1614b9098334eae.png);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{height:44px;width:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{background:#fff;color:#333;padding:6px 10px 6px 6px}.leaflet-control-layers-scrollbar{overflow-x:hidden;overflow-y:scroll;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{border-top:1px solid #ddd;height:0;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(../assets/marker-icon.2b3e1faf89f94a4835397e7a43b4f77d.png)}.leaflet-container .leaflet-control-attribution{background:#fff;background:hsla(0,0%,100%,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{color:#333;line-height:1.4;padding:0 5px}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:focus,.leaflet-control-attribution a:hover{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;height:.6669em;vertical-align:baseline!important;width:1em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{background:hsla(0,0%,100%,.8);border:2px solid #777;border-top:none;-moz-box-sizing:border-box;box-sizing:border-box;line-height:1.1;padding:2px 5px 1px;text-shadow:1px 1px #fff;white-space:nowrap}.leaflet-control-scale-line:not(:first-child){border-bottom:none;border-top:2px solid #777;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers{box-shadow:none}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-layers{background-clip:padding-box;border:2px solid rgba(0,0,0,.2)}.leaflet-popup{margin-bottom:20px;position:absolute;text-align:center}.leaflet-popup-content-wrapper{border-radius:12px;padding:1px;text-align:left}.leaflet-popup-content{font-size:13px;font-size:1.08333em;line-height:1.3;margin:13px 24px 13px 20px;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{height:20px;left:50%;margin-left:-20px;margin-top:-1px;overflow:hidden;pointer-events:none;position:absolute;width:40px}.leaflet-popup-tip{height:17px;margin:-10px auto 0;padding:1px;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);width:17px}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;box-shadow:0 3px 14px rgba(0,0,0,.4);color:#333}.leaflet-container a.leaflet-popup-close-button{background:transparent;border:none;color:#757575;font:16px/24px Tahoma,Verdana,sans-serif;height:24px;position:absolute;right:0;text-align:center;text-decoration:none;top:0;width:24px}.leaflet-container a.leaflet-popup-close-button:focus,.leaflet-container a.leaflet-popup-close-button:hover{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678,M12=0.70710678,M21=-0.70710678,M22=0.70710678);margin:0 auto;width:24px}.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{background-color:#fff;border:1px solid #fff;border-radius:3px;box-shadow:0 1px 3px rgba(0,0,0,.4);color:#222;padding:6px;pointer-events:none;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before,.leaflet-tooltip-top:before{background:transparent;border:6px solid transparent;content:"";pointer-events:none;position:absolute}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{border-top-color:#fff;bottom:0;margin-bottom:-12px}.leaflet-tooltip-bottom:before{border-bottom-color:#fff;margin-left:-6px;margin-top:-12px;top:0}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{margin-top:-6px;top:50%}.leaflet-tooltip-left:before{border-left-color:#fff;margin-right:-12px;right:0}.leaflet-tooltip-right:before{border-right-color:#fff;left:0;margin-left:-12px}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}body,html{max-width:100%;overflow-x:initial!important}.row{margin:0}.breadcrumb,.row{padding:0}body .outer-wrapper>.container{max-width:100%!important;padding:0!important}@media screen and (min-width:1200px){.r-annuaire-wrapper{margin-right:inherit;max-width:100%;padding-left:0;padding-right:0}}#portal-column-content{padding:0!important}.r-result-filter-container{background:#fff;z-index:1}@media screen and (min-width:1200px){.r-result-filter-container{position:-webkit-sticky;position:sticky}}.annuaire-result-filter{padding:0 .75rem}#portal-column-content h1{font-size:0;position:absolute}#viewlet-below-content-description,#viewlet-below-content-title{display:none}header#content-header{background:#fff;position:-webkit-sticky;position:sticky;top:0}article>header{margin-bottom:0}.r-annuaire-result{grid-area:1/1/3/2}.r-map.annuaire-map{grid-area:1/2/2/3;position:-webkit-sticky;position:sticky}.r-results-numbers{margin-bottom:.5rem;width:100%}.r-results-numbers span{font-weight:700}.r-wrapper{display:block}@media screen and (min-width:1200px){.r-wrapper{display:grid;gap:40px;grid-template-columns:minmax(20px,800px) minmax(20px,100%);justify-content:space-between;margin-left:auto;width:calc(558px + 50vw)}}@media screen and (min-width:1400px){.r-wrapper{width:calc(648px + 50vw)}}.r-wrapper .r-result{margin-top:2rem;padding-bottom:2rem}.r-wrapper .r-result-filter{display:flex;gap:20px}.r-wrapper .r-result-filter .r-filter{width:100%}.r-wrapper .r-result-list{padding:0}.r-wrapper .r-result-list .r-list-item-group{list-style:none;margin:1rem 0;position:relative}.r-wrapper .r-result-list .r-list-item-group .r-list-item-link{inset:0!important;position:absolute!important}.r-wrapper .r-result-list .r-list-item-group .r-list-item{display:flex;flex-direction:column;height:100%}@media screen and (min-width:600px){.r-wrapper .r-result-list .r-list-item-group .r-list-item{flex-direction:row}}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-img{background-size:cover;padding-bottom:56%;width:100%}@media screen and (min-width:600px){.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-img{height:149px;padding-bottom:0;width:246px}}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text{flex-grow:1;margin-top:.6rem}@media screen and (min-width:600px){.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text{margin-left:1.5rem;margin-top:0}}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text a{position:relative}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-title{display:block;font-weight:700}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-categorie{display:block}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all{display:flex;gap:10px}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all .r-item-adresse{width:36%}@media screen and (max-width:1200px){.r-wrapper .r-map{margin-top:2rem!important}.r-wrapper .r-map .leaflet-container{height:50vh!important}}.r-load-more{margin-bottom:2rem;text-align:center}.r-load-more button{background:#000;border:1px solid transparent;border-radius:10px;border-bottom-left-radius:10px;border-bottom-left-radius:0;color:#fff;display:block;font-size:14px;font-weight:700;margin:0 auto;padding:.4rem 1rem}.r-load-more button:hover{background:rgba(0,0,0,.871)}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-img{border-radius:15px 15px 15px 0}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text{font-size:13px}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text:after{background:#ff0;border-radius:50px;content:"";height:50px;width:50px}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-title{font-size:18px}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-categorie{color:#747474;font-weight:400;margin-bottom:5px;text-transform:uppercase}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all{color:#727272}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all a{color:#000}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all .r-item-adresse .itineraty{margin-top:5px}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all .r-item-adresse .itineraty:before{background-size:contain;background:url(../assets/location-bla.1423bcce16ddcb21141430cac1428dc1.svg) no-repeat;content:"";display:inline-block;height:15px;vertical-align:middle;width:15px}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all .r-item-contact{width:100%}.icon-baseline{align-self:center;display:inline-flex;margin-right:.4rem}.icon-baseline svg{height:1em;position:relative;top:.125em;width:1em}.dpinlb{display:inline-block;vertical-align:top}.r-content-img{padding-bottom:56.25%}.r-content-title{margin:1rem 0}.news-info-title{color:#008fd2;display:block;font-weight:700;margin-bottom:1rem}.r-content-news-info{display:flex;flex-wrap:wrap;justify-content:space-between;margin-bottom:2rem}@media screen and (min-width:600px){.r-content-news-info-container{-webkit-column-count:2;column-count:2}}.r-content-news-info-container>div{-webkit-column-break-inside:avoid;break-inside:avoid;margin:.6rem 0;padding-right:3rem}.r-content-news-info-container>div svg{width:16px}.r-content-news-info-container .r-content-news-info--date{display:flex}.r-content-news-info-container .r-content-news-info--date .r-content-date-end,.r-content-news-info-container .r-content-news-info--date .r-content-date-start,.r-content-news-info-container .r-content-news-info--date .r-content-date-start-hours{display:flex;flex-wrap:wrap}.r-content-news-info-container .r-content-news-info-social svg{height:30px;width:30px}.r-content-news-info-container .r-content-news-info-social ul{align-items:center;display:flex;margin:0}.r-content-news-info-container .r-content-news-info-social ul li{list-style:none}.r-content-news-info-container .r-content-news-info-social ul li a:hover{opacity:.7}@media screen and (max-width:1000px){.r-content-news-info-action{margin-top:1.1rem}}.r-content-news-info-action a{text-decoration:none}.r-content-news-info-action>div{margin:.6rem 0}.r-content-news-info-action .r-content-booking{margin-top:0}.r-content-news-info-action .r-content-booking a{align-items:center;background:#000;border-radius:10px;border-bottom-left-radius:0;color:#fff;cursor:pointer;display:block;display:flex;font-weight:500;gap:10px;padding:.4rem 1rem;text-decoration:none}.r-content-news-info-action .r-content-booking a svg{fill:#fff;width:22px}.r-content-news-info-action .r-content-booking a:hover{background:#3f3f3f;color:#fff}@media screen and (min-width:600px){.no-map .r-annuaire-wrapper{display:block}.no-map .r-result-list{display:grid;gap:20px;grid-template-columns:1fr 1fr 1fr;max-width:1296px}.no-map .r-list-item-group{transition:all .2s ease}.no-map .r-list-item-group:focus,.no-map .r-list-item-group:hover{-webkit-transform:translateY(-10px)!important;transform:translateY(-10px)!important}.no-map .r-list-item-group .r-list-item{box-shadow:0 8px 26px rgba(0,0,0,.08);flex-direction:column!important}.no-map .r-list-item-group .r-list-item .r-item-img{border-radius:0!important;height:0!important;margin-bottom:.5rem;padding-bottom:60%!important;width:100%!important}.no-map .r-list-item-group .r-list-item .r-item-text{display:grid;grid-template-columns:1fr 1fr;margin-right:1.5rem}.no-map .r-list-item-group .r-list-item .r-item-text:after{display:none}.no-map .r-list-item-group .r-list-item .r-item-text .r-item-categorie{grid-row-start:1}.no-map .r-list-item-group .r-list-item .r-item-text .r-item-title{font-weight:500!important;grid-column-end:3;grid-column-start:1;grid-row-start:2;margin-bottom:2rem;margin-top:1rem}.no-map .r-list-item-group .r-list-item .r-item-text .r-item-date{grid-column-start:2;grid-row-start:1;justify-self:end}}.no-map .r-result.r-annuaire-result{max-width:1296px}.no-map .envent-content{margin:0 auto;max-width:700px}
|
@@ -1 +0,0 @@
|
|
1
|
-
.flexbin{display:flex;flex-wrap:wrap;margin:-2.5px;overflow:hidden}.flexbin:after{content:"";flex-grow:999999999;height:0;min-width:300px}.flexbin>*{display:block;flex-grow:1;height:300px;margin:2.5px;position:relative}.flexbin>*>img{height:300px;max-width:100%;min-width:100%;object-fit:cover;vertical-align:bottom}.flexbin.flexbin-margin{margin:2.5px}@media (max-width:980px){.flexbin{display:flex;flex-wrap:wrap;margin:-2.5px;overflow:hidden}.flexbin:after{content:"";flex-grow:999999999;height:0;min-width:150px}.flexbin>*{display:block;flex-grow:1;height:150px;margin:2.5px;position:relative}.flexbin>*>img{height:150px;max-width:100%;min-width:100%;object-fit:cover;vertical-align:bottom}.flexbin.flexbin-margin{margin:2.5px}}@media (max-width:400px){.flexbin{display:flex;flex-wrap:wrap;margin:-2.5px;overflow:hidden}.flexbin:after{content:"";flex-grow:999999999;height:0;min-width:100px}.flexbin>*{display:block;flex-grow:1;height:100px;margin:2.5px;position:relative}.flexbin>*>img{height:100px;max-width:100%;min-width:100%;object-fit:cover;vertical-align:bottom}.flexbin.flexbin-margin{margin:2.5px}}.breadcrumb{padding:0}.r-result-list{list-style:none;margin-top:50px;padding-left:0}#portal-column-content h1{font-size:0;position:absolute}#viewlet-below-content-description,#viewlet-below-content-title{display:none}.r-item-text{display:flex;flex-direction:column;margin:20px 30px;position:relative}.r-item-title{display:block}.r-results-numbers{margin-bottom:.5rem;width:100%}.r-results-numbers span{font-weight:700}.r-content-img{padding-bottom:56.25%}.new-content{margin:0 auto;max-width:700px}.r-load-more{margin-bottom:2rem;text-align:center}.r-load-more button{background:#000;border:1px solid transparent;border-radius:10px;border-bottom-left-radius:10px;border-bottom-left-radius:0;color:#fff;display:block;font-size:14px;font-weight:700;margin:0 auto;padding:.4rem 1rem}.r-load-more button:hover{background:rgba(0,0,0,.871)}.r-actu-wrapper{position:relative}.r-actu-wrapper:after{content:url(../assets/oeil-big.f32cd1df1274a9593de0c4bd8e344216.svg);display:block;position:absolute;right:0;top:0;-webkit-transform:translateY(-20%);transform:translateY(-20%);width:495px;z-index:-1}.r-actu-wrapper .r-list-item-group{background:#fff;border:1px solid #d1d1d1;border-radius:15px 15px 15px 0;margin:30px auto;max-width:900px}.r-item-title{font-size:18px;font-weight:700}.r-item-description{color:#444;font-size:16px;margin-top:10px}.r-item-img{border-radius:15px 15px 15px 0}.r-actu-wrapper .r-item-img{background-position:top;background-repeat:no-repeat;background-size:cover;flex:0 0 247px;height:183px}@media screen and (min-width:775px){.r-actu-wrapper .r-item-img{flex:0 0 323px;height:220px;width:323px}}.r-item-read-more{margin-top:auto}.r-item-arrow-more{align-self:center;background:#f9b331;background:url(../assets/next-react.17bc43ff4a6a86f4520f5782f6a89a72.svg);background-position:50%;background-repeat:no-repeat;background-size:20px;border-radius:50px;flex:0 0 50px;height:50px;margin-left:auto;margin-right:30px;width:50px}.r-list-item-group:hover .r-item-arrow-more{background:url(../assets/next-react-white.819cb069ac8eec300a9db6a7707712d6.svg),#f9b331;background-position:50%;background-repeat:no-repeat;background-size:20px}@media screen and (max-width:600px){.r-list-item{flex-direction:column}.r-item-read-more{position:relative}}.icon-baseline{align-self:center;display:inline-flex;margin-right:.4rem}.icon-baseline svg{height:1em;position:relative;top:.125em;width:1em}.dpinlb{display:inline-block;vertical-align:top}.r-content-news-info-social svg{height:30px;width:30px}.r-content-news-info-social ul{align-items:center;display:flex;margin:0}.r-content-news-info-social ul li{list-style:none}.r-content-news-info-social ul li a:hover{opacity:.7}
|
@@ -1 +0,0 @@
|
|
1
|
-
"use strict";(self.webpackChunkimio_smartweb_core_webcomponents=self.webpackChunkimio_smartweb_core_webcomponents||[]).push([[267],{67676:function(e,t,n){n(78709);t.Z=n.p+"assets/pin-react-active.07d154037a15be5525b823fdc626cf29.svg"},59834:function(e,t,n){n(78709);t.Z=n.p+"assets/pin-react.fda934b5daf26dd4da2a71a7e7e44431.svg"},91267:function(e,t,n){n.r(t),n.d(t,{default:function(){return re}});var r=n(78709),a=n(12707),l=n(51031),c=n(59927),i=n(14844),o=n(93580);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function u(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n,r,a={},l=Object.keys(e);for(r=0;r<l.length;r++)n=l[r],t.indexOf(n)>=0||(a[n]=e[n]);return a}(e,t);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);for(r=0;r<l.length;r++)n=l[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(a[n]=e[n])}return a}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function f(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?m(Object(n),!0).forEach((function(t){p(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):m(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function p(e,t,n){return(t=v(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function v(e){var t=function(e,t){if("object"!==s(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!==s(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===s(t)?t:String(t)}function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,l,c,i=[],o=!0,s=!1;try{if(l=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;o=!1}else for(;!(o=(r=l.call(n)).done)&&(i.push(r.value),i.length!==t);o=!0);}catch(e){s=!0,a=e}finally{try{if(!o&&null!=n.return&&(c=n.return(),Object(c)!==c))return}finally{if(s)throw a}}return i}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var E=function(e){var t=(0,l.k6)(),a=n(31296),s=d((0,r.useState)(e.activeFilter),2),m=s[0],h=s[1],E=d((0,r.useState)(null),2),g=E[0],y=E[1],b=d((0,r.useState)(null),2),w=b[0],N=b[1],S=(0,i.Z)({method:"get",url:"",baseURL:e.url,headers:{Accept:"application/json"},params:m}),O=S.response;S.error,S.isLoading,(0,r.useEffect)((function(){if(null!==O){var e=O.topics&&O.topics.map((function(e){return{value:e.token,label:e.title}})),t=O.category&&O.category.map((function(e){return{value:e.token,label:e.title}}));y(e),N(t)}}),[O]);var x=(0,r.useCallback)((function(e){var t=e.target,n=t.name,r=t.value;r.length>2?h((function(e){return f(f({},e),{},p({},n,r))}),[]):h((function(e){var t=f({},e);t[n];return u(t,[n].map(v))}))})),j=(0,r.useCallback)((function(e,t){var n=t.name;e?h((function(t){return f(f({},t),{},p({},n,e.value))}),[]):h((function(e){var t=f({},e);t[n];return u(t,[n].map(v))}))})),I=(0,r.useRef)(!0);(0,r.useEffect)((function(){I.current?I.current=!1:(t.push({pathname:"./",search:a.stringify(m)}),e.onChange(m))}),[m]);var _=g&&g.filter((function(t){return t.value===e.activeFilter.topics})),k=w&&w.filter((function(t){return t.value===e.activeFilter.category})),A={control:function(e){return f(f({},e),{},{backgroundColor:"white",borderRadius:"0",height:"50px"})},placeholder:function(e){return f(f({},e),{},{color:"000",fontWeight:"bold",fontSize:"12px",textTransform:"uppercase",letterSpacing:"1.2px"})},option:function(e,t){t.data,t.isDisabled,t.isFocused,t.isSelected;return f({},e)}};return r.createElement(r.Fragment,null,r.createElement("form",{className:"r-filter",onSubmit:function(t){t.preventDefault(),e.onChange(m)}},r.createElement("div",{className:"r-filter-search"},r.createElement(o.$H,null,(function(e){var t=e.translate;return r.createElement("input",{className:"input-custom-class",name:"SearchableText",type:"text",value:m.SearchableText,onChange:x,placeholder:t({text:"Recherche"})})})),r.createElement("button",{type:"submit"}))),r.createElement("div",{className:"r-filter topics-Filter"},r.createElement(o.$H,null,(function(e){var t=e.translate;return r.createElement(c.ZP,{styles:A,name:"topics",className:"select-custom-class library-topics",isClearable:!0,onChange:j,options:g&&g,placeholder:t({text:"Thématiques"}),value:_&&_[0]})}))),r.createElement("div",{className:"r-filter facilities-Filter"},r.createElement(o.$H,null,(function(e){var t=e.translate;return r.createElement(c.ZP,{styles:A,name:"category",className:"select-custom-class library-facilities",isClearable:!0,onChange:j,options:w&&w,placeholder:t({text:"Catégories"}),value:k&&k[0]})}))))},g=n(6489),y=n(78279),b=n.n(y),w=n(8047),N=n.n(w),S=n(61584),O=(n(17110),["u"]);function x(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,l,c,i=[],o=!0,s=!1;try{if(l=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;o=!1}else for(;!(o=(r=l.call(n)).done)&&(i.push(r.value),i.length!==t);o=!0);}catch(e){s=!0,a=e}finally{try{if(!o&&null!=n.return&&(c=n.return(),Object(c)!==c))return}finally{if(s)throw a}}return i}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return j(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return j(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function j(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function I(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n,r,a={},l=Object.keys(e);for(r=0;r<l.length;r++)n=l[r],t.indexOf(n)>=0||(a[n]=e[n]);return a}(e,t);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);for(r=0;r<l.length;r++)n=l[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(a[n]=e[n])}return a}var _=function(e){var t=e.queryUrl,a=e.onChange,c=(0,l.k6)(),s=n(31296),u=Object.assign({UID:s.parse((0,g.Z)().toString()).u,fullobjects:1}),m=(u.u,I(u,O)),f=x((0,r.useState)(m),2),p=f[0],v=f[1],d=x((0,r.useState)({}),2),h=d[0],E=d[1],y=x((0,r.useState)(0),2),w=y[0],N=y[1],j=x((0,r.useState)(0),2),_=j[0],k=j[1],A=(0,i.Z)({method:"get",url:"",baseURL:t,headers:{Accept:"application/json"},params:p},[]),U=A.response;A.error,A.isLoading;(0,r.useEffect)((function(){v(m)}),[s.parse((0,g.Z)().toString()).u]),(0,r.useEffect)((function(){null!==U&&E(U.items[0]),window.scrollTo(0,0)}),[U]),(0,r.useEffect)((function(){h.items&&h.items.length>0&&(N(h.items.filter((function(e){return"File"===e["@type"]}))),k(h.items.filter((function(e){return"Image"===e["@type"]}))))}),[h]),b().locale("be");var H=b().utc(h.start).format("DD-MM-YYYY"),C=b().utc(h.end).format("DD-MM-YYYY"),P=b().utc(h.start).format("LT"),M=b().utc(h.end).format("LT"),D="https://www.google.com/maps/dir/?api=1&destination="+h.street+"+"+h.number+"+"+h.complement+"+"+h.zipcode+"+"+h.city;return D=D.replaceAll("+null",""),r.createElement("div",{className:"envent-content r-content"},r.createElement("button",{type:"button",onClick:function(){c.push("./"),a(null)}},r.createElement(o.vN,{text:"Retour"})),r.createElement("article",null,r.createElement("header",null,r.createElement("h2",{className:"r-content-title"},h.title)),r.createElement("figure",null,r.createElement("div",{className:"r-content-img",style:{backgroundImage:h.image_affiche_scale?"url("+h.image_affiche_scale+")":""}})),r.createElement("span",{className:"news-info-title"},r.createElement(o.vN,{text:"Infos pratiques"})),r.createElement("div",{className:"r-content-news-info"},r.createElement("div",{className:"r-content-news-info-container"},r.createElement("div",{className:"r-content-news-info-schedul"},r.createElement("div",{className:"icon-baseline"},r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",preserveAspectRatio:"xMinYMin",viewBox:"0 0 19.41 19.41"},r.createElement("path",{d:"M16.09,2.74H14.35V.85a.44.44,0,0,0-.43-.44H12.47A.44.44,0,0,0,12,.85V2.74H7.38V.85A.44.44,0,0,0,7,.41H5.5a.44.44,0,0,0-.44.44V2.74H3.32A1.74,1.74,0,0,0,1.58,4.48V17.26A1.74,1.74,0,0,0,3.32,19H16.09a1.74,1.74,0,0,0,1.75-1.74V4.48A1.74,1.74,0,0,0,16.09,2.74Zm-.21,14.52H3.54A.22.22,0,0,1,3.32,17h0V6.22H16.09V17a.21.21,0,0,1-.21.22Z"}))),r.createElement("div",{className:"dpinlb"},r.createElement("div",{className:"r-content-news-info--date"},H===C?r.createElement("div",null,h.whole_day?r.createElement("div",{className:"r-content-date-start"},r.createElement("span",null,"Le "),r.createElement("div",{className:"r-time"},H)):h.open_end?r.createElement(r.Fragment,null,r.createElement("div",{className:"r-content-date-one-day"},r.createElement("div",{className:"r-content-date-start"},r.createElement("span",null,"Le "),r.createElement("div",{className:"r-time"},H),r.createElement("span",null," à "),r.createElement("div",{className:"r-time-hours"},P)))):r.createElement(r.Fragment,null,r.createElement("div",{className:"r-content-date-one-day"},r.createElement("div",{className:"r-content-date-start"},r.createElement("span",null,"Le "),r.createElement("div",{className:"r-time"},H)),r.createElement("div",{className:"r-content-date-start-hours"},r.createElement("span",null,"de "),r.createElement("div",{className:"r-time-hours"},P),r.createElement("span",null," à "),r.createElement("div",{className:"r-time-hours"},M))))):r.createElement("div",{className:"r-content-date-du-au"},r.createElement("div",{className:"r-content-date-start"},r.createElement("span",null,"Du "),r.createElement("div",{className:"r-time"},H)),r.createElement("div",{className:"r-content-date-end"},r.createElement("span",null," au "),r.createElement("div",{className:"r-time"},C)))))),r.createElement("div",{className:"r-content-news-info-aera"},h.street?r.createElement("div",{className:"icon-baseline"},r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.41 19.41"},r.createElement("path",{d:"M9,18.34C3.9,10.94,3,10.18,3,7.45a6.75,6.75,0,0,1,13.49,0c0,2.73-.94,3.49-6,10.89a.85.85,0,0,1-1.17.22A.77.77,0,0,1,9,18.34Zm.7-8.07A2.82,2.82,0,1,0,6.89,7.45a2.83,2.83,0,0,0,2.82,2.82Z"}))):"",r.createElement("div",{className:"dpinlb"},r.createElement("div",{className:"r-content-news-info--itinirary"},h.street?r.createElement("a",{href:D,target:"_blank"},r.createElement("span",null,"Itinéraire")):""),!0===h.reduced_mobility_facilities?r.createElement("div",{className:"r-content-news-info--reduced"},r.createElement("span",null,r.createElement(o.vN,{text:"Accessible aux PMR"}))):"")),r.createElement("div",{className:"r-content-news-info-contact"},r.createElement("div",{className:"dpinlb"},r.createElement("div",{className:"r-content-news-info--name"},r.createElement("span",null,h.contact_name)),r.createElement("div",{className:"r-content-news-info--phone"},r.createElement("span",null,r.createElement("a",{href:"tel:".concat(h.contact_phone)},h.contact_phone))),r.createElement("div",{className:"r-content-news-info--email"},r.createElement("a",{href:"mailto:".concat(h.contact_email)},h.contact_email)))),null===h.event_url&&null===h.online_participation&&null===h.video_url?"":r.createElement("div",{className:"r-content-news-info-link"},r.createElement("div",{className:"icon-baseline"},r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.41 19.41"},r.createElement("path",{d:"M16.36,2.22H3.06a1.3,1.3,0,0,0-1.3,1.3h0v9a1.3,1.3,0,0,0,1.3,1.3H7.52v1.74h-.7a.8.8,0,0,0,0,1.6h5.79a.8.8,0,0,0,0-1.6h-.7V13.85h4.45a1.31,1.31,0,0,0,1.3-1.3v-9A1.3,1.3,0,0,0,16.36,2.22Zm-1.9,10.83a.37.37,0,1,1,.36-.37h0a.36.36,0,0,1-.36.36Zm1.6.08a.45.45,0,1,1,.44-.45h0a.44.44,0,0,1-.44.45h0Zm.53-1.35H2.82V3.52a.23.23,0,0,1,.23-.23H16.36a.23.23,0,0,1,.23.23h0v8.27Z"}))),r.createElement("div",{className:"dpinlb"},null===h.event_url?"":r.createElement("div",{className:"r-content-news-info-event_link"},r.createElement("a",{href:h.event_url},r.createElement(o.vN,{text:"Lien de l'événement"}))),null===h.online_participation?"":r.createElement("div",{className:"r-content-news-info--online_participation"},r.createElement("a",{href:h.online_participation},r.createElement(o.vN,{text:"Participation en ligne"}))),null===h.video_url?"":r.createElement("div",{className:"r-content-news-info--video"},r.createElement("a",{href:h.video_url},r.createElement(o.vN,{text:"Lien vers la vidéo"}))))),null===h.facebook&&null===h.instagram&&null===h.twitter?"":r.createElement("div",{className:"r-content-news-info-social"},r.createElement("ul",null,h.facebook?r.createElement("li",null,r.createElement("a",{href:h.facebook,target:"_blank"},r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",height:"800",width:"1200",viewBox:"-204.79995 -341.33325 1774.9329 2047.9995"},r.createElement("path",{d:"M1365.333 682.667C1365.333 305.64 1059.693 0 682.667 0 305.64 0 0 305.64 0 682.667c0 340.738 249.641 623.16 576 674.373V880H402.667V682.667H576v-150.4c0-171.094 101.917-265.6 257.853-265.6 74.69 0 152.814 13.333 152.814 13.333v168h-86.083c-84.804 0-111.25 52.623-111.25 106.61v128.057h189.333L948.4 880H789.333v477.04c326.359-51.213 576-333.635 576-674.373",fill:"#100f0d"}),r.createElement("path",{d:"M948.4 880l30.267-197.333H789.333V554.609C789.333 500.623 815.78 448 900.584 448h86.083V280s-78.124-13.333-152.814-13.333c-155.936 0-257.853 94.506-257.853 265.6v150.4H402.667V880H576v477.04a687.805 687.805 0 00106.667 8.293c36.288 0 71.91-2.84 106.666-8.293V880H948.4",fill:"#fff"})))):"",h.instagram?r.createElement("li",null,r.createElement("a",{href:h.instagram,target:"_blank"},r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",height:"800",width:"1200",viewBox:"-100.7682 -167.947 873.3244 1007.682"},r.createElement("g",{fill:"#100f0d"},r.createElement("path",{d:"M335.895 0c-91.224 0-102.663.387-138.49 2.021-35.752 1.631-60.169 7.31-81.535 15.612-22.088 8.584-40.82 20.07-59.493 38.743-18.674 18.673-30.16 37.407-38.743 59.495C9.33 137.236 3.653 161.653 2.02 197.405.386 233.232 0 244.671 0 335.895c0 91.222.386 102.661 2.02 138.488 1.633 35.752 7.31 60.169 15.614 81.534 8.584 22.088 20.07 40.82 38.743 59.495 18.674 18.673 37.405 30.159 59.493 38.743 21.366 8.302 45.783 13.98 81.535 15.612 35.827 1.634 47.266 2.021 138.49 2.021 91.222 0 102.661-.387 138.488-2.021 35.752-1.631 60.169-7.31 81.534-15.612 22.088-8.584 40.82-20.07 59.495-38.743 18.673-18.675 30.159-37.407 38.743-59.495 8.302-21.365 13.981-45.782 15.612-81.534 1.634-35.827 2.021-47.266 2.021-138.488 0-91.224-.387-102.663-2.021-138.49-1.631-35.752-7.31-60.169-15.612-81.534-8.584-22.088-20.07-40.822-38.743-59.495-18.675-18.673-37.407-30.159-59.495-38.743-21.365-8.302-45.782-13.981-81.534-15.612C438.556.387 427.117 0 335.895 0zm0 60.521c89.686 0 100.31.343 135.729 1.959 32.75 1.493 50.535 6.965 62.37 11.565 15.68 6.094 26.869 13.372 38.622 25.126 11.755 11.754 19.033 22.944 25.127 38.622 4.6 11.836 10.072 29.622 11.565 62.371 1.616 35.419 1.959 46.043 1.959 135.73 0 89.687-.343 100.311-1.959 135.73-1.493 32.75-6.965 50.535-11.565 62.37-6.094 15.68-13.372 26.869-25.127 38.622-11.753 11.755-22.943 19.033-38.621 25.127-11.836 4.6-29.622 10.072-62.371 11.565-35.413 1.616-46.036 1.959-135.73 1.959-89.694 0-100.315-.343-135.73-1.96-32.75-1.492-50.535-6.964-62.37-11.564-15.68-6.094-26.869-13.372-38.622-25.127-11.754-11.753-19.033-22.943-25.127-38.621-4.6-11.836-10.071-29.622-11.565-62.371-1.616-35.419-1.959-46.043-1.959-135.73 0-89.687.343-100.311 1.959-135.73 1.494-32.75 6.965-50.535 11.565-62.37 6.094-15.68 13.373-26.869 25.126-38.622 11.754-11.755 22.944-19.033 38.622-25.127 11.836-4.6 29.622-10.072 62.371-11.565 35.419-1.616 46.043-1.959 135.73-1.959"}),r.createElement("path",{d:"M335.895 447.859c-61.838 0-111.966-50.128-111.966-111.964 0-61.838 50.128-111.966 111.966-111.966 61.836 0 111.964 50.128 111.964 111.966 0 61.836-50.128 111.964-111.964 111.964zm0-284.451c-95.263 0-172.487 77.224-172.487 172.487 0 95.261 77.224 172.485 172.487 172.485 95.261 0 172.485-77.224 172.485-172.485 0-95.263-77.224-172.487-172.485-172.487m219.608-6.815c0 22.262-18.047 40.307-40.308 40.307-22.26 0-40.307-18.045-40.307-40.307 0-22.261 18.047-40.308 40.307-40.308 22.261 0 40.308 18.047 40.308 40.308"}))))):"",h.twitter?r.createElement("li",null,r.createElement("a",{href:h.twitter,target:"_blank"},r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",height:"800",width:"1200",viewBox:"-44.7006 -60.54775 387.4052 363.2865"},r.createElement("path",{fill:"#000",d:"M93.719 242.19c112.46 0 173.96-93.168 173.96-173.96 0-2.646-.054-5.28-.173-7.903a124.338 124.338 0 0030.498-31.66c-10.955 4.87-22.744 8.148-35.11 9.626 12.622-7.57 22.313-19.543 26.885-33.817a122.62 122.62 0 01-38.824 14.841C239.798 7.433 223.915 0 206.326 0c-33.764 0-61.144 27.381-61.144 61.132 0 4.798.537 9.465 1.586 13.941-50.815-2.557-95.874-26.886-126.03-63.88a60.977 60.977 0 00-8.279 30.73c0 21.212 10.794 39.938 27.208 50.893a60.685 60.685 0 01-27.69-7.647c-.009.257-.009.507-.009.781 0 29.61 21.075 54.332 49.051 59.934a61.218 61.218 0 01-16.122 2.152 60.84 60.84 0 01-11.491-1.103c7.784 24.293 30.355 41.971 57.115 42.465-20.926 16.402-47.287 26.171-75.937 26.171-4.929 0-9.798-.28-14.584-.846 27.059 17.344 59.189 27.464 93.722 27.464"})))):""))),r.createElement("div",{className:"r-content-news-info-action"},h.ticket_url?r.createElement("div",{className:"r-content-booking"},r.createElement("a",{href:h.ticket_url},r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.41 19.41"},r.createElement("circle",{cx:"13.03",cy:"14.61",r:"0.63",fill:"fill:#fff"}),r.createElement("circle",{cx:"11.59",cy:"6.52",r:"0.63",fill:"fill:#fff"}),r.createElement("path",{d:"M17.11,11.47h.62V7.71h-1.6a1.25,1.25,0,0,1-1.25-1.25,1.27,1.27,0,0,1,.67-1.12l.54-.28-1.6-3.39-12.8,6h0v3.76h.63a1.26,1.26,0,0,1,0,2.51H1.68v3.76H17.73V14h-.62a1.26,1.26,0,1,1,0-2.51Zm-6.9-6.4a.63.63,0,0,0,1.14-.53l2.54-1.2.58,1.23A2.52,2.52,0,0,0,14,7.71H4.63Zm6.27,10.08v1.34H13.66a.63.63,0,1,0-1.26,0H2.93V15.16a2.51,2.51,0,0,0,0-4.86V9H12.4a.63.63,0,0,0,1.26,0h2.82V10.3a2.51,2.51,0,0,0,0,4.86Z",fill:"fill:#fff"}),r.createElement("circle",{cx:"13.03",cy:"10.85",r:"0.63",fill:"fill:#fff"}),r.createElement("circle",{cx:"13.03",cy:"12.73",r:"0.63",fill:"fill:#fff"})),r.createElement(o.vN,{text:"Billetterie"}))):"")),r.createElement("div",{className:"r-content-description"},r.createElement(S.D,null,h.description)),r.createElement("div",{className:"r-content-text",dangerouslySetInnerHTML:{__html:h.text&&h.text.data}}),w?r.createElement("div",{className:"r-content-files"},w.map((function(e){return r.createElement("div",{className:"r-content-file"},r.createElement("a",{href:e.targetUrl,className:"r-content-file-link",rel:"nofollow"},r.createElement("span",{className:"r-content-file-title"},e.title),r.createElement("span",{className:"r-content-file-icon"},r.createElement("svg",{width:"21",height:"21",viewBox:"0 0 24 24",fill:"none",stroke:"#8899a4","stroke-width":"2","stroke-linecap":"square","stroke-linejoin":"arcs"},r.createElement("path",{d:"M3 15v4c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-4M17 9l-5 5-5-5M12 12.8V2.5"}))," ")))}))):"",_?r.createElement("div",{className:"r-content-gallery"},r.createElement("div",{className:"spotlight-group flexbin r-content-gallery"},_.map((function(e){return r.createElement("a",{className:"spotlight",href:e.image_full_scale},r.createElement("img",{src:e.image_preview_scale}))})))):""))},k=function(e){var t=e.contactItem,n=t.title&&t.title,a=(t.taxonomy_contact_category&&t.taxonomy_contact_category[0],b()(t.start&&t.start));t.number&&t.number,t.street&&t.street,t.complement&&t.complement,t.zipcode&&t.zipcode,t.city&&t.city,t.country&&t.country,t.phones&&t.phones,t.mails&&t.mails,t.topics&&t.topics;return r.createElement("div",{className:"r-list-item"},r.createElement("div",{className:t.image_vignette_scale?"r-item-img":"r-item-img r-item-img-placeholder",style:{backgroundImage:t.image_vignette_scale?"url("+t.image_vignette_scale+")":""}}),r.createElement("div",{className:"r-item-text"},t.category?r.createElement("span",{className:"r-item-categorie"},t.category.title):"",r.createElement("span",{className:"r-item-title"},n),a?r.createElement("span",{className:"r-item-date"},r.createElement(N(),{format:"DD-MM-YYYY"},a)):""))},A=n(29924),U=n.n(A),H=function(e){var t=e.contactArray,n=e.onChange,l=e.onHover;e.parentCallback;function c(e){l(e)}return r.createElement(r.Fragment,null,r.createElement("ul",{className:"r-result-list event-result-list"},t.map((function(e,t){return r.createElement("li",{key:t,className:"r-list-item-group",onMouseEnter:function(){return c(e.UID)},onMouseLeave:function(){return c(null)},onClick:function(){return t=e.UID,void n(t);var t}},r.createElement(a.rU,{className:"r-list-item-link",style:{textDecoration:"none"},to:{pathname:U()(e.title).replace(/[^a-zA-Z ]/g,"").replace(/\s/g,"-").toLowerCase(),search:"?u=".concat(e.UID),state:{idItem:e.UID}}}),r.createElement(k,{contactItem:e,key:e.created}))}))))},C=n(38458),P=n(35108),M=n(16683),D=n(22948),L=n(79221),Z=n(48818),V=n.n(Z),T=n(59834),z=n(67676);function F(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,l,c,i=[],o=!0,s=!1;try{if(l=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;o=!1}else for(;!(o=(r=l.call(n)).done)&&(i.push(r.value),i.length!==t);o=!0);}catch(e){s=!0,a=e}finally{try{if(!o&&null!=n.return&&(c=n.return(),Object(c)!==c))return}finally{if(s)throw a}}return i}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return B(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return B(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function B(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Y(e){var t=e.activeItem,n=e.arrayOfLatLngs,r=(0,C.Sx)();if(t){var a=[];a.push(t.geolocation.latitude),a.push(t.geolocation.longitude),r.setView(a,15)}else{var l=new(V().LatLngBounds)(n);r.fitBounds(l)}return null}var q=function(e){var t=F((0,r.useState)(null),2),n=t[0],l=t[1],c=F((0,r.useState)(null),2),i=(c[0],c[1]),o=F((0,r.useState)([]),2),s=o[0],u=o[1],m=F((0,r.useState)(null),2),f=m[0],p=m[1];function v(e){return new(V().Icon)({iconUrl:e,iconSize:[29,37]})}(0,r.useEffect)((function(){var t=e.items.filter((function(e){return e.geolocation.latitude&&50.4989185!==e.geolocation.latitude&&4.7184485!==e.geolocation.longitude}));u(t)}),[e]);var d=function(t){return t===e.clickId||t===e.hoverId?999:1};return(0,r.useEffect)((function(){if(null!==e.clickId){var t=s&&s.filter((function(t){return t.UID===e.clickId}));l(t[0])}else l(null)}),[e.clickId]),(0,r.useEffect)((function(){if(e.hoverId){var t=s&&s.filter((function(t){return t.UID===e.hoverId}));i(t[0])}else i(null)}),[e.hoverId]),(0,r.useEffect)((function(){if(s.length>0){var e=[];s.map((function(t,n){var r=t.geolocation.latitude,a=t.geolocation.longitude;e.push([r,a])})),p(e)}}),[s]),r.createElement("div",null,r.createElement(P.h,{style:{height:"calc(100vh - ".concat(e.headerHeight,"px)"),minHeight:"600px"},center:[50.85034,4.35171],zoom:15},r.createElement(M.I,{attribution:'© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',url:"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"}),null!=f?r.createElement(Y,{activeItem:n,arrayOfLatLngs:f&&f}):"",s&&s.map((function(t){return r.createElement(D.J,{key:t.UID,icon:(n=t.UID,n===e.clickId||n===e.hoverId?v(z.Z):v(T.Z)),zIndexOffset:d(t.UID),position:[t.geolocation?t.geolocation.latitude:"",t.geolocation?t.geolocation.longitude:""],eventHandlers:{mouseover:function(e){}}},r.createElement(L.G,{closeButton:!1},r.createElement(a.rU,{className:"r-map-popup",style:{textDecoration:"none"},to:{pathname:U()(t.title.replace(/\s/g,"-").toLowerCase()),search:"?u=".concat(t.UID),state:{idItem:t.UID}}},r.createElement("span",{className:"r-map-popup-title"},t.title),r.createElement("p",{className:"r-map-popup-category"},t.category&&t.category.title))));var n}))))},R=n(38401);function $(e){return $="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},$(e)}var W=["u"];function G(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function J(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?G(Object(n),!0).forEach((function(t){K(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):G(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function K(e,t,n){return(t=function(e){var t=function(e,t){if("object"!==$(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!==$(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===$(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Q(e){return function(e){if(Array.isArray(e))return te(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||ee(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function X(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,l,c,i=[],o=!0,s=!1;try{if(l=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;o=!1}else for(;!(o=(r=l.call(n)).done)&&(i.push(r.value),i.length!==t);o=!0);}catch(e){s=!0,a=e}finally{try{if(!o&&null!=n.return&&(c=n.return(),Object(c)!==c))return}finally{if(s)throw a}}return i}}(e,t)||ee(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ee(e,t){if(e){if("string"==typeof e)return te(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?te(e,t):void 0}}function te(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function ne(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n,r,a={},l=Object.keys(e);for(r=0;r<l.length;r++)n=l[r],t.indexOf(n)>=0||(a[n]=e[n]);return a}(e,t);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);for(r=0;r<l.length;r++)n=l[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(a[n]=e[n])}return a}function re(e){return r.createElement(a.UT,null,r.createElement(o.zt,{language:e.currentLanguage,translation:R.Z},r.createElement(ae,{queryFilterUrl:e.queryFilterUrl,queryUrl:e.queryUrl,proposeUrl:e.proposeUrl,batchSize:e.batchSize,displayMap:e.displayMap})))}function ae(e){var t=n(31296),c=Object.assign({b_start:0,fullobjects:1},t.parse((0,g.Z)().toString())),s=(c.u,ne(c,W)),u=X((0,r.useState)([]),2),m=u[0],f=u[1],p=X((0,r.useState)([]),2),v=p[0],d=p[1],h=X((0,r.useState)(null),2),y=h[0],b=h[1],w=X((0,r.useState)(null),2),N=w[0],S=w[1],O=X((0,r.useState)(s),2),x=O[0],j=O[1],I=X((0,r.useState)(0),2),k=I[0],A=I[1],U=X((0,r.useState)(!1),2),C=U[0],P=U[1],M="True"===e.displayMap,D=(0,i.Z)({method:"get",url:"",baseURL:e.queryUrl,headers:{Accept:"application/json"},params:x,load:C},[]),L=D.response,Z=(D.error,D.isLoading),V=D.isMore;(0,r.useEffect)((function(){null!==L&&(f(V?function(e){return[].concat(Q(e),Q(L.items))}:L.items),d(L.items_total))}),[L]);var T=function(e){b(e)};(0,r.useEffect)((function(){j((function(e){return J(J({},e),{},{b_start:k})}))}),[k]);var z,F,B=document.getElementById("portal-header").offsetHeight,Y=(0,r.useRef)(),R=X(r.useState({height:0}),2),$=R[0],G=R[1];(0,r.useEffect)((function(){G({height:Y.current.clientHeight})}),[Y.current]),m&&m.length>0?(z=r.createElement(H,{onChange:T,contactArray:m,onHover:function(e){S(e)}}),F=r.createElement(q,{headerHeight:$.height+B,clickId:y,hoverId:N,items:m})):Z||(z=r.createElement("p",null,r.createElement(o.vN,{text:"Aucun événement n'a été trouvé"})));var K=r.createElement("div",{className:"lds-roller-container"},r.createElement("div",{className:"lds-roller"},r.createElement("div",null),r.createElement("div",null),r.createElement("div",null),r.createElement("div",null),r.createElement("div",null),r.createElement("div",null),r.createElement("div",null),r.createElement("div",null)));return r.createElement(a.UT,null,r.createElement("div",{className:"ref ".concat(M?"view-map":"no-map")},r.createElement("div",{className:"r-result-filter-container",ref:Y,style:{top:B}},r.createElement("div",{id:"r-result-filter",className:"r-result-filter container annuaire-result-filter"},r.createElement(E,{url:e.queryFilterUrl,activeFilter:x,onChange:function(e){P(!1),A((function(e){return 0})),j(e),window.scrollTo(0,0)}}),e.proposeUrl&&r.createElement("div",{className:"r-add-event"},r.createElement("a",{target:"_blank",href:e.proposeUrl},r.createElement(o.vN,{text:"Proposer un événement"}))),v>0?r.createElement("p",{className:"r-results-numbers"},r.createElement("span",null,v),v>1?r.createElement(o.vN,{text:"événements trouvés"}):r.createElement(o.vN,{text:"événement trouvé"})):r.createElement("p",{className:"r-results-numbers"},r.createElement(o.vN,{text:"Aucun résultat"})))),r.createElement(l.rs,null,r.createElement(l.AW,{path:"/:name"},r.createElement("div",{className:"r-wrapper container r-annuaire-wrapper"},r.createElement("div",{className:"r-result r-annuaire-result"},r.createElement(_,{queryUrl:e.queryUrl,onChange:T})),M&&r.createElement("div",{className:"r-map annuaire-map",style:{top:$.height+B,height:"calc(100vh-"+$.height+B}},F))),r.createElement(l.AW,{exact:!0,path:"*"},r.createElement("div",{className:"r-wrapper container r-annuaire-wrapper"},r.createElement("div",{className:"r-result r-annuaire-result"},r.createElement("div",null,z),r.createElement("div",{className:"r-load-more"},v-e.batchSize>k?r.createElement("div",null,r.createElement("span",{className:"no-more-result"},Z?K:""),r.createElement("button",{onClick:function(){A((function(t){return t+parseInt(e.batchSize)})),P(!0)},className:"btn-grad"},Z?r.createElement(o.vN,{text:"Chargement..."}):r.createElement(o.vN,{text:"Plus de résultats"}))):r.createElement("span",{className:"no-more-result"},Z?K:""))),M&&r.createElement("div",{className:"r-map annuaire-map",style:{top:$.height+B,height:"calc(100vh-"+$.height+B}},F))))))}}}]);
|