imio.smartweb.core 1.2.74__py3-none-any.whl → 1.2.76__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. imio/smartweb/core/browser/static/smartweb-view-compiled.css +1 -1
  2. imio/smartweb/core/browser/static/src/view.less +106 -57
  3. imio/smartweb/core/contents/pages/configure.zcml +1 -0
  4. imio/smartweb/core/contents/pages/views.py +44 -0
  5. imio/smartweb/core/contents/sections/contact/macros.pt +28 -3
  6. imio/smartweb/core/contents/sections/contact/view.py +28 -12
  7. imio/smartweb/core/contents/sections/events/view.py +1 -1
  8. imio/smartweb/core/contents/sections/news/view.py +1 -1
  9. imio/smartweb/core/tests/test_section_contact.py +35 -10
  10. imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +364 -378
  11. imio/smartweb/core/webcomponents/src/components/Events/Events.scss +401 -417
  12. imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss +174 -172
  13. imio/smartweb/core/webcomponents/src/components/News/News.scss +145 -130
  14. imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +35 -14
  15. imio/smartweb/core/webcomponents/src/components/Search/Search.scss +117 -118
  16. {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/METADATA +20 -1
  17. {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/RECORD +23 -23
  18. /imio.smartweb.core-1.2.74-py3.12-nspkg.pth → /imio.smartweb.core-1.2.76-py3.12-nspkg.pth +0 -0
  19. {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/LICENSE.GPL +0 -0
  20. {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/LICENSE.rst +0 -0
  21. {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/WHEEL +0 -0
  22. {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/namespace_packages.txt +0 -0
  23. {imio.smartweb.core-1.2.74.dist-info → imio.smartweb.core-1.2.76.dist-info}/top_level.txt +0 -0
@@ -1,147 +1,146 @@
1
1
  .userrole-authenticated {
2
- .r-search-container {
3
- padding: 0 20px 0 123px;
4
- }
2
+ .r-search-container {
3
+ padding: 0 20px 0 123px;
4
+ }
5
5
  }
6
6
 
7
7
  .r-search-container {
8
- max-width: 1330px;
9
- margin: 0 auto;
10
- padding: 0 20px 0 20px;
11
-
12
- .full-width {
13
- width: 100vw;
14
- position: relative;
15
- left: 50%;
16
- right: 50%;
17
- margin-left: -50vw;
18
- margin-right: -50vw;
19
- }
20
-
21
- .r-search-highlighter {
22
- padding: 0;
23
- font-weight: bold;
24
- background: transparent;
25
- position: relative;
26
- border-bottom: 2px solid #F9B300;
27
- }
28
-
29
- .r-search-header {
30
- border-bottom: 1px solid #000;
31
- }
32
-
33
- .r-search-header-title {
34
- font-weight: bold;
35
- font-size: 15px;
36
- text-transform: uppercase;
37
- }
38
-
39
- .r-search-header-count {
40
- font-size: 10px;
41
- text-transform: uppercase;
42
- color: #808080;
43
- }
44
-
45
- .r-search-result {
46
- margin-top: 2rem;
47
- display: grid;
48
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
49
- gap: 1.5rem;
50
- }
51
-
52
- .r-search.search-bar-filter {
53
- position: relative;
54
-
55
- form {
56
- position: relative;
8
+ max-width: 1330px;
9
+ margin: 0 auto;
10
+ padding: 0 20px 0 20px;
11
+
12
+ .full-width {
13
+ width: 100vw;
14
+ position: relative;
15
+ left: 50%;
16
+ right: 50%;
17
+ margin-left: -50vw;
18
+ margin-right: -50vw;
57
19
  }
58
20
 
59
- label,
60
- input {
61
- width: 100%;
21
+ .r-search-highlighter {
22
+ padding: 0;
23
+ font-weight: bold;
24
+ background: transparent;
25
+ position: relative;
26
+ border-bottom: 2px solid #f9b300;
62
27
  }
63
28
 
64
- input {
65
- line-height: 50px;
66
- border: 1px solid #CCCCCC;
67
- height: 50px;
68
- padding: 0 10px;
69
- font-weight: bold;
70
- color: #000;
71
- letter-spacing: 1.2px;
72
-
73
- &::placeholder {
74
- color: #000;
75
- font-size: 12px;
76
- opacity: 1;
77
- text-transform: uppercase;
78
- letter-spacing: 1.2px;
79
- }
29
+ .r-search-header {
30
+ border-bottom: 1px solid #000;
31
+ }
80
32
 
33
+ .r-search-header-title {
34
+ font-weight: bold;
35
+ font-size: 15px;
36
+ text-transform: uppercase;
81
37
  }
82
38
 
83
- button {
84
- background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg id='Calque_2' data-name='Calque 2'%3E%3Cg id='Calque_1-2' data-name='Calque 1'%3E%3Cg id='search'%3E%3Cpath id='Shape' d='M11.08,6.77a4.31,4.31,0,1,0-4.31,4.31h0A4.32,4.32,0,0,0,11.08,6.77Zm4.92,8A1.24,1.24,0,0,1,14.77,16a1.17,1.17,0,0,1-.86-.37l-3.3-3.28a6.77,6.77,0,1,1,1.74-1.74l3.3,3.3A1.25,1.25,0,0,1,16,14.77Z' style='fill:%23141414;fill-rule:evenodd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat;
85
- background-position: center;
86
- background-size: 80%;
87
- border: none;
88
- width: 20px;
89
- position: absolute;
90
- right: 10px;
91
- top: 0;
92
- bottom: 0;
39
+ .r-search-header-count {
40
+ font-size: 10px;
41
+ text-transform: uppercase;
42
+ color: #808080;
93
43
  }
94
- }
95
44
 
96
- .r-search-select {
97
- height: 50px;
98
- border-radius: 0px;
99
- }
45
+ .r-search-result {
46
+ margin-top: 2rem;
47
+ display: grid;
48
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
49
+ gap: 1.5rem;
50
+ }
100
51
 
101
- .r-search-list {
102
- margin-top: 20px;
52
+ .r-search.search-bar-filter {
53
+ position: relative;
54
+
55
+ form {
56
+ position: relative;
57
+ }
58
+
59
+ label,
60
+ input {
61
+ width: 100%;
62
+ }
63
+
64
+ input {
65
+ line-height: 50px;
66
+ border: 1px solid #cccccc;
67
+ height: 50px;
68
+ padding: 0 10px;
69
+ font-weight: bold;
70
+ color: #000;
71
+ letter-spacing: 1.2px;
72
+
73
+ &::placeholder {
74
+ color: #000;
75
+ font-size: 12px;
76
+ opacity: 1;
77
+ text-transform: uppercase;
78
+ letter-spacing: 1.2px;
79
+ }
80
+ }
81
+
82
+ button {
83
+ background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg id='Calque_2' data-name='Calque 2'%3E%3Cg id='Calque_1-2' data-name='Calque 1'%3E%3Cg id='search'%3E%3Cpath id='Shape' d='M11.08,6.77a4.31,4.31,0,1,0-4.31,4.31h0A4.32,4.32,0,0,0,11.08,6.77Zm4.92,8A1.24,1.24,0,0,1,14.77,16a1.17,1.17,0,0,1-.86-.37l-3.3-3.28a6.77,6.77,0,1,1,1.74-1.74l3.3,3.3A1.25,1.25,0,0,1,16,14.77Z' style='fill:%23141414;fill-rule:evenodd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
84
+ no-repeat;
85
+ background-position: center;
86
+ background-size: 80%;
87
+ border: none;
88
+ width: 20px;
89
+ position: absolute;
90
+ right: 10px;
91
+ top: 0;
92
+ bottom: 0;
93
+ }
94
+ }
103
95
 
104
- @media screen and (min-width:992px) {
105
- max-height: 375px;
96
+ .r-search-select {
97
+ height: 50px;
98
+ border-radius: 0px;
106
99
  }
107
100
 
108
- overflow-y: scroll;
109
-
110
- .r-search-item {
111
- list-style: none;
112
- border-bottom: 1px solid rgba(0, 0, 0, .25);
113
- padding: 1rem 0;
114
- font-size: 14px;
115
- display: flex;
116
- gap: 10px;
117
-
118
- .r-search-img {
119
- width: 91px;
120
- height: 61px;
121
- background-size: cover;
122
- background-repeat: no-repeat;
123
- flex-basis: 100%;
124
- flex-basis: 91px;
125
- flex-grow: 0;
126
- flex-shrink: 0;
127
- }
101
+ .r-search-list {
102
+ margin-top: 20px;
103
+ overflow-y: scroll;
104
+
105
+ @media screen and (min-width: 992px) {
106
+ max-height: 375px;
107
+ }
108
+
109
+ .r-search-item {
110
+ list-style: none;
111
+ border-bottom: 1px solid rgba(0, 0, 0, 0.25);
112
+ padding: 1rem 0;
113
+ font-size: 14px;
114
+ display: flex;
115
+ gap: 10px;
116
+
117
+ .r-search-img {
118
+ width: 91px;
119
+ height: 61px;
120
+ background-size: cover;
121
+ background-repeat: no-repeat;
122
+ flex-basis: 100%;
123
+ flex-basis: 91px;
124
+ flex-grow: 0;
125
+ flex-shrink: 0;
126
+ }
127
+ }
128
128
  }
129
- }
130
129
  }
131
130
 
132
131
  .offcanvas-header .btn-close {
133
- right: 10px;
134
- position: absolute;
135
- top: 10px;
132
+ right: 10px;
133
+ position: absolute;
134
+ top: 10px;
136
135
  }
137
136
 
138
137
  .search-contact .r-search-img,
139
138
  .search-events .r-search-img,
140
139
  .search-news .r-search-img {
141
- float: left;
142
- margin-right: .5rem;
140
+ float: left;
141
+ margin-right: 0.5rem;
143
142
  }
144
143
 
145
144
  .r-search-result mark {
146
- display: initial;
147
- }
145
+ display: initial;
146
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: imio.smartweb.core
3
- Version: 1.2.74
3
+ Version: 1.2.76
4
4
  Summary: Core product for iMio websites
5
5
  Home-page: https://github.com/imio/imio.smartweb.core
6
6
  Author: Christophe Boulanger
@@ -191,6 +191,25 @@ Changelog
191
191
  =========
192
192
 
193
193
 
194
+ 1.2.76 (2025-01-06)
195
+ -------------------
196
+
197
+ - WEB-4199 : Fix missing contacts when there are more contacts than default Plone batching
198
+ [boulch]
199
+
200
+ - Replace url by social icon in contact section
201
+ [thomlamb]
202
+
203
+ - Add iframe youtube or vimeo in React news view
204
+ [thomlamb]
205
+
206
+ 1.2.75 (2024-11-19)
207
+ -------------------
208
+
209
+ - Reduce queries to directory
210
+ [boulch, laulaz]
211
+
212
+
194
213
  1.2.74 (2024-11-13)
195
214
  -------------------
196
215
 
@@ -1,4 +1,4 @@
1
- imio.smartweb.core-1.2.74-py3.12-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
1
+ imio.smartweb.core-1.2.76-py3.12-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
2
2
  imio/smartweb/core/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
3
3
  imio/smartweb/core/config.py,sha256=BUgfvh4hCaw0onCYAG4gQI1O4hZ-GzXWEltdHi4YLIs,337
4
4
  imio/smartweb/core/configure.zcml,sha256=PeC4rF--rF6MfVQ0NzggQrZWIl35oPtJdEhvQwGxhhI,1459
@@ -78,7 +78,7 @@ imio/smartweb/core/browser/static/package.json,sha256=rJeZEnDqQvcPTakkRPOZCALk8H
78
78
  imio/smartweb/core/browser/static/smartweb-edit-compiled.css,sha256=3C1_U0jw_1cq97onQlsCWulezGUM4r__WmB1QqCdr8E,5120
79
79
  imio/smartweb/core/browser/static/smartweb-edit-compiled.js,sha256=8apUM0A48d1cDvNbj3eL82sJzzbI3gDurkV48uGOOpg,1222
80
80
  imio/smartweb/core/browser/static/smartweb-swiperconfig-compiled.js,sha256=N2b-d5pLMqI66U5ORf0E8UvjJqcnYpfe8QmHjf46Qzs,608
81
- imio/smartweb/core/browser/static/smartweb-view-compiled.css,sha256=g3mxBTOYtCqY3u39ZXpGFS6vdJRiDWMtKeYOEdRcbVc,2757
81
+ imio/smartweb/core/browser/static/smartweb-view-compiled.css,sha256=tqjBhYC2NqZEUk6Q5ApLZNRkCRUgoG-qdfEJIq9nWEA,2961
82
82
  imio/smartweb/core/browser/static/smartweb-view-compiled.js,sha256=73bvXpnpueWVKAqaS5CFFHbQnD6RuixH58SaRJP_Gh0,2162
83
83
  imio/smartweb/core/browser/static/spotlight-bundle.js,sha256=MxZ4E6qmRiV1eojklqYnKc9J7q1p1YeCWYoCfXNhZmA,19615
84
84
  imio/smartweb/core/browser/static/swiper-bundle.min.css,sha256=_7BNAPE6sDlKRWoyA9Hax0ffAel0ai6vNtp51OUHFAA,17908
@@ -152,7 +152,7 @@ imio/smartweb/core/browser/static/src/edit.js,sha256=8o6qgeMJ_kDyq94HJ6xB_junqSY
152
152
  imio/smartweb/core/browser/static/src/edit.less,sha256=uiqNkhAIucG9q4Gz1PJyt2GkYsvcOgkWKhcTUj2BAJU,5408
153
153
  imio/smartweb/core/browser/static/src/swiper-config.js,sha256=PK5Uw_vbHcXiyt3R8Gvdq2geNX6LEdQB2QTWTcKSqWg,1285
154
154
  imio/smartweb/core/browser/static/src/view.js,sha256=c8J_VYwXuM_9u0c2OWs96yeTJTZOmKpgoCup5GLo5js,3268
155
- imio/smartweb/core/browser/static/src/view.less,sha256=PdNzSlj6_VAP89FzhJDabG0RUXMw7sIu-Ehey-Qq-iY,2908
155
+ imio/smartweb/core/browser/static/src/view.less,sha256=4kRKpFWRJGiK8UBx97i1DoHteRgAS-0BmmU_rf-x7PM,3238
156
156
  imio/smartweb/core/browser/subsite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
157
  imio/smartweb/core/browser/subsite/configure.zcml,sha256=ITEH-6pVztshQElqjNv9sk-CcVUTLFeccdSO9rHLwt0,414
158
158
  imio/smartweb/core/browser/subsite/settings.py,sha256=tXEnEYZG75eM7H766ZgNCCWMwOcY9j45shD-8NR_7I0,1601
@@ -177,12 +177,12 @@ imio/smartweb/core/contents/folder/macros.pt,sha256=aGQd4241WhasLu0CwoxDuku2mhBv
177
177
  imio/smartweb/core/contents/folder/summary_view.pt,sha256=ZymRV39P5qmT3riJJXDc4eTI3Mio1Ua_CliNrEk9kJw,1168
178
178
  imio/smartweb/core/contents/folder/views.py,sha256=A8VidsJXcxOlhCSb_3QDuWuvH-wB1UD87GaPGgIP-HI,5682
179
179
  imio/smartweb/core/contents/pages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
180
- imio/smartweb/core/contents/pages/configure.zcml,sha256=o-YBg5r3qJKC9JR5I8YvCzusLKT2uiLsqvvR8Iw9CQk,2252
180
+ imio/smartweb/core/contents/pages/configure.zcml,sha256=e-EqjBgF17vs51DWV2iBKZeMBlfPue9nBryzpEUPY0E,2297
181
181
  imio/smartweb/core/contents/pages/pages.py,sha256=iCQwzbp4nnGqwy31UE5Q9MaeJVAzJUgto-f7kWc8I7Q,464
182
182
  imio/smartweb/core/contents/pages/subscriber.py,sha256=2efcWPA5VsoEzv1_fIWh3sn1k2g0Kx_B_cTyQ5LIhLg,961
183
183
  imio/smartweb/core/contents/pages/view.pt,sha256=0-rTH5tgN9mgSHdt9_0qwYQpJO0nC4Wc0Kg6CUGRCbY,3127
184
184
  imio/smartweb/core/contents/pages/view_section.pt,sha256=_jYm5FqFVYr1Jia5r9qmqryd2a6NDNXO5SWu6osTZ0A,1345
185
- imio/smartweb/core/contents/pages/views.py,sha256=nDLsSCo3OTPskK4IAZxrDtSkhbTXg6u1H0S0rTO-C5w,4938
185
+ imio/smartweb/core/contents/pages/views.py,sha256=3EEmK7ZLtjSkCc5wlH72KxyelG0ruOeGWi8apBrqqfE,6693
186
186
  imio/smartweb/core/contents/pages/cirkwi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
187
  imio/smartweb/core/contents/pages/cirkwi/configure.zcml,sha256=f5kNhtZhY10aHetW5nZZZ00tbBQP1EiezVia5_JfJlg,378
188
188
  imio/smartweb/core/contents/pages/cirkwi/content.py,sha256=L8VtzTsdqM_1g13RWygd07Z9mtPiyg7PbjxXyDM6nSA,779
@@ -252,15 +252,15 @@ imio/smartweb/core/contents/sections/contact/__init__.py,sha256=47DEQpj8HBSa-_TI
252
252
  imio/smartweb/core/contents/sections/contact/configure.zcml,sha256=WjyGXO7alNf4yDW5dZCS_xQ_AYbQVQuRVRIeoyLIBzY,1591
253
253
  imio/smartweb/core/contents/sections/contact/content.py,sha256=MdhY6QPMdCseThddjwZ0e7xzkx1-p21MBuwqEic1f90,2690
254
254
  imio/smartweb/core/contents/sections/contact/forms.py,sha256=VlN_jse8tYxE9RCro2RgHlZRDDIyZA8Bjr-dNePZYwU,1387
255
- imio/smartweb/core/contents/sections/contact/macros.pt,sha256=ynqVHvtvvcNyAIGj5K07SO9jyRN0R3KbFBBn4t1qMaE,9523
255
+ imio/smartweb/core/contents/sections/contact/macros.pt,sha256=bCuvXDaNBT84AHXHYUkazJ35FJ2YVGl61Ry7rXuLHgA,10870
256
256
  imio/smartweb/core/contents/sections/contact/utils.py,sha256=XPZW3b6kqiUQ7YxHP6r5mqYlXGsi7n0prepeTy-8EY8,5205
257
257
  imio/smartweb/core/contents/sections/contact/view.pt,sha256=CyNoSxzf9kNQdjN2iCp77zpFeXfC1KGgQlx_UeTSQ6M,1170
258
- imio/smartweb/core/contents/sections/contact/view.py,sha256=5l5FQLxz-UfFZrttqNsWetuCg-4yT-wIzukIK-QLF6s,1422
258
+ imio/smartweb/core/contents/sections/contact/view.py,sha256=7zTN6JPUaeomzfiaE5eUyvFIqfyPNg2UJDOVpzt6vJ8,1962
259
259
  imio/smartweb/core/contents/sections/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
260
260
  imio/smartweb/core/contents/sections/events/configure.zcml,sha256=FCDIf6w-2qCPqq0QUodw8-xyAopq7l6O8zoU_uMHNwg,1117
261
261
  imio/smartweb/core/contents/sections/events/content.py,sha256=aolTpBgOCKu4EHLQUFjOkFN7YpJId0Wpj_iH5AZ9Vvk,3246
262
262
  imio/smartweb/core/contents/sections/events/macros.pt,sha256=llSq-xstFiOXctseKDwvhVCM7A1_Z1Jq-_cUgNiBe10,1522
263
- imio/smartweb/core/contents/sections/events/view.py,sha256=Ylp23caV6ba8y0jjoradXsRnueIABPD4cC7A2maR97c,4528
263
+ imio/smartweb/core/contents/sections/events/view.py,sha256=Jjs93_6uVCJsDMHwnmBC0mRpLYfysPa-_iOCiUCJFj8,4520
264
264
  imio/smartweb/core/contents/sections/external_content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
265
265
  imio/smartweb/core/contents/sections/external_content/configure.zcml,sha256=6ZvD4hJiXMZM2-mz9D7ipZcphS5HKJFREG9XUzF_6ms,1651
266
266
  imio/smartweb/core/contents/sections/external_content/content.py,sha256=apHtfPwxkHkLQJVFVXs4F8O0gE09uI49AFQ8xRFrXgo,1096
@@ -295,7 +295,7 @@ imio/smartweb/core/contents/sections/map/views.py,sha256=3Z5oFis2NIByJCHh8bjAlLu
295
295
  imio/smartweb/core/contents/sections/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
296
296
  imio/smartweb/core/contents/sections/news/configure.zcml,sha256=8MOIEeI7Zr_wbNVgiMa_21Ohgv_bkpEi_7gJu6NK380,880
297
297
  imio/smartweb/core/contents/sections/news/content.py,sha256=A79d6gfxiqrrL87VPqFz13NYAfTjHbSFNZlpi1kixzE,3261
298
- imio/smartweb/core/contents/sections/news/view.py,sha256=e3gwMlyxevvqHJ1CxSMQ8W_q8KECpB8F5inwbofzhQg,4155
298
+ imio/smartweb/core/contents/sections/news/view.py,sha256=VNhsyqAkVVLV1101Wp9mSIfL-i_U3oYM_Quq7YlQr1E,4147
299
299
  imio/smartweb/core/contents/sections/postit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
300
300
  imio/smartweb/core/contents/sections/postit/configure.zcml,sha256=Q0Szs1pmrNP2OiRROpeSQPKLV3tCpyjqZa9vwNFTK9Q,504
301
301
  imio/smartweb/core/contents/sections/postit/content.py,sha256=--bqQPsjpKuqMzOb21eOERjp2a2QehGTAsBvZ3FnQMA,2239
@@ -425,7 +425,7 @@ imio/smartweb/core/tests/test_redirect_to_main_react_view.py,sha256=k4gU6xBIA5m8
425
425
  imio/smartweb/core/tests/test_rest.py,sha256=t7dp7YWUCKR75tsU3vVOzAy9HivGBWuMJoeMpuKOXbM,27374
426
426
  imio/smartweb/core/tests/test_robot.py,sha256=NQ7AkN4tEva3bgGjMxmyqY0zIo4pJPnPOwnD9hmrTVI,926
427
427
  imio/smartweb/core/tests/test_search.py,sha256=VryeRI4_5CvnStKOoNoG95M2WTy7Lyy_AhHIDG40M14,2182
428
- imio/smartweb/core/tests/test_section_contact.py,sha256=fSLkQCeWU7iGcogSa3O3I8uFtU91IxrsqM4Mf_Eb9bQ,23524
428
+ imio/smartweb/core/tests/test_section_contact.py,sha256=TePnLCLu8pqA4d1SYRK8dGi7m7BbooiTTkQUC4KztAs,24693
429
429
  imio/smartweb/core/tests/test_section_events.py,sha256=7eP-HmXp0D3gvOrjVpzVPmV9nF_PKERnmOGz1G3Z0l0,8641
430
430
  imio/smartweb/core/tests/test_section_external_content.py,sha256=vCMipaHPBlxI-kg-f90cnkWqUuUDnnyAtsXRP6PhOeo,6674
431
431
  imio/smartweb/core/tests/test_section_news.py,sha256=6S7-r6ZnpeN_JdLYLZMWbHKRzeuf5ynPWnox2DDFPZk,9126
@@ -713,14 +713,14 @@ imio/smartweb/core/webcomponents/src/assets/pin-react.svg,sha256=kXxN_F5nCL1SUuS
713
713
  imio/smartweb/core/webcomponents/src/assets/pin.svg,sha256=-6a-6Jyc3EJteH1X5eFtPUCCz4FQeWKkVhMKHDhmbzI,890
714
714
  imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
715
715
  imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=26OQ4Ejh7ozOfvuC3XmvzVHeOR81EeMp1rwPhsRWvTM,11456
716
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=_O6UeLtzaxTv8uC6RVgWtHQAAZfBJx9g4PrKV9KAUx4,9474
716
+ imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=AjCOYP4W98OgH7vGlGxTcPJSFkfMWU1TDlcFYcwMNes,12408
717
717
  imio/smartweb/core/webcomponents/src/components/Annuaire/index.js,sha256=A26LlWeszwIzqu15SiEZ_mcb4NSaChAbT7d4GWEyVlY,96
718
718
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=yBbE4fl6Q-DvGLIN1er7izF507SpYHB5_SCkXPHVYYY,6647
719
719
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=PlRdrd_wapcZSsbwmR8wChCWOKwO_J99GIG2F37vK_Q,38783
720
720
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=_UbuWGN_Goao7BXlW19rIuvoj_2X7JkXBN8KXqOvbS8,2309
721
721
  imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=yg7k4KgIOprikaOImjO-Mh7r83tbw0rgkc3YprQ72_4,13423
722
722
  imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=L3bThj_F-dmhSSyqtC3VHbggVM-bSY-gmVZmyRzAtgg,12271
723
- imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=CEy4vmYlE8n9_JASOBTl5rk6ZCIC7PbrGp7ZTgZL3n0,10012
723
+ imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=FnRLuNcwtp9ngCKGsi_P18xhPmGNHQ_kMoWr4V5mZHE,12705
724
724
  imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
725
725
  imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=CYb-6E5sfgIXFNc2-2dpajBsBggITh-pxqEkiPiJw0M,3586
726
726
  imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=DalaaRT7dn9bIrrYqYTxFNXzSFGfiTL3A5xq25lSWl0,37006
@@ -729,20 +729,20 @@ imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256
729
729
  imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=XKiN7Y8CFz48IluCEmyqTpSbBa6hvF4BjPcAZYKqKaQ,5949
730
730
  imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss,sha256=zccyw3yhc4k2GU_RYl7fJn7tZOz6DMDA2PGGK8SLmNQ,3233
731
731
  imio/smartweb/core/webcomponents/src/components/Filters/IamData.jsx,sha256=_Yvc0AZMTwRmrycvZlUsV1ipCCq8G-yeVHOv89y8tnQ,751
732
- imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss,sha256=k5eyOlIlqXWCPHwvf35_RxxGeX_HN1_EZ1gEIA0cT5g,3771
732
+ imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss,sha256=jdwWv8ASnzpmeC_Y2AULS99C9ksQCNLaJMmiSebCGzc,4508
733
733
  imio/smartweb/core/webcomponents/src/components/Filters/PublicTargetData.jsx,sha256=X7N2li7AH0kmQPWMGhntioDFjoPRIqqT5QTK9OCgvvk,1808
734
734
  imio/smartweb/core/webcomponents/src/components/Filters/SelectStyles.js,sha256=lXSYovMyRUC9TjLDEn03_rcXJhAB2sTqBdc0E7hadJE,1288
735
735
  imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.jsx,sha256=EznTS_9zVa9kzZ_XqFtKbJh5swZgnfkZfT9AnRfpEy4,5649
736
736
  imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.scss,sha256=fOA6Znq6BAl2spfGXefHwE3F0BPbL51RuQbPUC_HII4,1415
737
737
  imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=_-Wb2Sa-8WEdtJe_HR6Ew0GPveM-2PgPKpaKFk5WHto,10056
738
- imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=6N4xW_2IUlvGF6WBpoEad9OTHLrgDdyJKeFDSoc3mdc,4491
738
+ imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=X1qIeoDjtWre2kj7jitnXDKzMpByV1x6PB6bgSAIuaQ,5187
739
739
  imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
740
740
  imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx,sha256=_jPvqsdg6QHNBkC7erySX-s5sgBh35X8B3P2LgxcsBw,9598
741
741
  imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx,sha256=sYJbhbW2FgV79xpXaFKM3NuKY08NkFZhMOMVPOLesB4,3941
742
- imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=GFYN17-cYULiaJQC4RGPoVOW-0trXvpeSEZs-0Wb180,19470
742
+ imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=fRopUUNQ4j2jaCScr6dsQsqvJmFbfFKM20lCvX9zYRs,20142
743
743
  imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=aDgfW-TXeahzRMoubSNCR0mmKrzG2MJraJc2fKwO2SQ,3703
744
744
  imio/smartweb/core/webcomponents/src/components/Search/Search.jsx,sha256=mAXFJr2BmOjAe8-F9qeaWKvUhsOOBad-UKZ_QSwESmQ,2461
745
- imio/smartweb/core/webcomponents/src/components/Search/Search.scss,sha256=nnyNWve8dcce7q1G2jaOne3YbQXn5qbu0ai1-JBv0Fk,3033
745
+ imio/smartweb/core/webcomponents/src/components/Search/Search.scss,sha256=PEeXhoIcLGB4s6Suqz5ouwpwrG3Ry7Wt1nT3WjZmd_g,3551
746
746
  imio/smartweb/core/webcomponents/src/components/Search/index.js,sha256=_UM9GrZj8bAVS_Pw7yaGkRL0CrfjqO93a10PQh1a_xI,94
747
747
  imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx,sha256=f6Gw4NoDC5z5HSsXXJ7jNfqfkhMDKENGijUdw1lM2y8,2904
748
748
  imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx,sha256=nvE0IRwVzHe66y-6re0mAjwqjrIEE1E-ZJ_MQA8tkL0,2902
@@ -756,10 +756,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=cYuZykMIaLjr4KiLvmS4aY
756
756
  imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=xXWz0O-JBwSZrzz2XeQdN4nZEOjppU2sVFtlLQOitQ8,77
757
757
  imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=5YDHwdaRNWFWOgyNd7YejoAdcDvnvAENo3Xn0GDT8P8,8941
758
758
  imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
759
- imio.smartweb.core-1.2.74.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
760
- imio.smartweb.core-1.2.74.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
761
- imio.smartweb.core-1.2.74.dist-info/METADATA,sha256=vThvy7qQqrpa5UiPkmY1e5kDBtUXNAJzEQPfhk1vGkQ,58100
762
- imio.smartweb.core-1.2.74.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
763
- imio.smartweb.core-1.2.74.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
764
- imio.smartweb.core-1.2.74.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
765
- imio.smartweb.core-1.2.74.dist-info/RECORD,,
759
+ imio.smartweb.core-1.2.76.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
760
+ imio.smartweb.core-1.2.76.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
761
+ imio.smartweb.core-1.2.76.dist-info/METADATA,sha256=4oTZwXWhJLHa5vgVyd2tYKoUJWeSyD0XC7UNbw1xcfw,58462
762
+ imio.smartweb.core-1.2.76.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
763
+ imio.smartweb.core-1.2.76.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
764
+ imio.smartweb.core-1.2.76.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
765
+ imio.smartweb.core-1.2.76.dist-info/RECORD,,