imio.smartweb.core 1.2.22__py3-none-any.whl → 1.2.24__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/contents/cropping.py +1 -1
- imio/smartweb/core/contents/rest/events/endpoint.py +0 -4
- imio/smartweb/core/contents/sections/contact/content.py +2 -2
- imio/smartweb/core/tests/test_cropping.py +4 -4
- imio/smartweb/core/tests/test_rest.py +0 -2
- imio/smartweb/core/tests/test_vocabularies.py +1 -1
- imio/smartweb/core/utils.py +1 -1
- imio/smartweb/core/vocabularies.py +1 -0
- imio/smartweb/core/webcomponents/build/css/363.smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/54.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +16 -1
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +1 -1
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +72 -18
- imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx +1 -1
- imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +1 -1
- {imio.smartweb.core-1.2.22.dist-info → imio.smartweb.core-1.2.24.dist-info}/METADATA +21 -1
- {imio.smartweb.core-1.2.22.dist-info → imio.smartweb.core-1.2.24.dist-info}/RECORD +25 -25
- /imio.smartweb.core-1.2.22-py3.10-nspkg.pth → /imio.smartweb.core-1.2.24-py3.10-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.22.dist-info → imio.smartweb.core-1.2.24.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.22.dist-info → imio.smartweb.core-1.2.24.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.22.dist-info → imio.smartweb.core-1.2.24.dist-info}/WHEEL +0 -0
- {imio.smartweb.core-1.2.22.dist-info → imio.smartweb.core-1.2.24.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.22.dist-info → imio.smartweb.core-1.2.24.dist-info}/top_level.txt +0 -0
@@ -19,6 +19,7 @@ const ContactContent = ({ queryUrl, onChange }) => {
|
|
19
19
|
const [gallery, setGallery] = useState();
|
20
20
|
const [social, setSocial] = useState([]);
|
21
21
|
const [image, setImage] = useState();
|
22
|
+
const [isSchedulVisible, setSchedulVisibility] = useState(true);
|
22
23
|
|
23
24
|
const { response } = useAxios(
|
24
25
|
{
|
@@ -89,6 +90,10 @@ const ContactContent = ({ queryUrl, onChange }) => {
|
|
89
90
|
countryTitle
|
90
91
|
|
91
92
|
itineraryLink = itineraryLink.replaceAll('+null', '')
|
93
|
+
|
94
|
+
const toggleSchedul = () => {
|
95
|
+
setSchedulVisibility(!isSchedulVisible);
|
96
|
+
};
|
92
97
|
return (
|
93
98
|
<div className="annuaire-content r-content">
|
94
99
|
<button type="button" onClick={handleClick}>
|
@@ -110,7 +115,8 @@ const ContactContent = ({ queryUrl, onChange }) => {
|
|
110
115
|
style={{ backgroundImage: "url(" + item.image_affiche_scale + ")" }} />
|
111
116
|
<img className="r-content-figure-img"
|
112
117
|
src={item.image_affiche_scale}
|
113
|
-
style={{ objectFit: image && image.width >= image.height ? "cover" : "contain" }}
|
118
|
+
style={{ objectFit: image && image.width >= image.height ? "cover" : "contain" }}
|
119
|
+
alt="" />
|
114
120
|
</figure>
|
115
121
|
)}
|
116
122
|
|
@@ -149,6 +155,63 @@ const ContactContent = ({ queryUrl, onChange }) => {
|
|
149
155
|
) : (
|
150
156
|
""
|
151
157
|
)}
|
158
|
+
{/* schedule */}
|
159
|
+
{
|
160
|
+
item.table_date &&
|
161
|
+
<div onClick={toggleSchedul} className="annuaire-schedul" role="button" aria-expanded="false" >
|
162
|
+
<div className="annuaire-schedul-icon">
|
163
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-clock-fill" viewBox="0 0 16 16">
|
164
|
+
<path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71z" />
|
165
|
+
</svg>
|
166
|
+
</div>
|
167
|
+
<div className="annuaire-schedul-content">
|
168
|
+
{isSchedulVisible ? (
|
169
|
+
<>
|
170
|
+
<span className={item.schedule_for_today === "Fermé" ? "annuaire-day-close" : "annuaire-day-open"}>
|
171
|
+
{item.schedule_for_today}
|
172
|
+
</span>
|
173
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" fill="currentColor" class="bi bi-caret-down-fill" viewBox="0 0 16 16">
|
174
|
+
<path d="M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/>
|
175
|
+
</svg>
|
176
|
+
</>
|
177
|
+
) : (
|
178
|
+
<div>
|
179
|
+
<ul>
|
180
|
+
{item.table_date.map((day, index) => {
|
181
|
+
const dayOfWeek = Object.keys(day)[0];
|
182
|
+
const status = day[dayOfWeek];
|
183
|
+
|
184
|
+
return (
|
185
|
+
<li key={index}>
|
186
|
+
<strong>{dayOfWeek}:</strong> {status}
|
187
|
+
</li>
|
188
|
+
);
|
189
|
+
})}
|
190
|
+
</ul>
|
191
|
+
</div>
|
192
|
+
)}
|
193
|
+
</div>
|
194
|
+
{/* <div className="annuaire-schedul-content">
|
195
|
+
<span className={item.schedule_for_today === "Fermé" ? "annuaire-day-close" : "annuaire-day-open"}>
|
196
|
+
{item.schedule_for_today}
|
197
|
+
</span>
|
198
|
+
<div class="">
|
199
|
+
<ul>
|
200
|
+
{item.table_date.map((day, index) => {
|
201
|
+
const dayOfWeek = Object.keys(day)[0];
|
202
|
+
const status = day[dayOfWeek];
|
203
|
+
|
204
|
+
return (
|
205
|
+
<li key={index}>
|
206
|
+
<strong>{dayOfWeek}:</strong> {status}
|
207
|
+
</li>
|
208
|
+
);
|
209
|
+
})}
|
210
|
+
</ul>
|
211
|
+
</div>
|
212
|
+
</div> */}
|
213
|
+
</div>
|
214
|
+
}
|
152
215
|
|
153
216
|
{item.phones && item.phones.length > 0
|
154
217
|
? (<div className="annuaire-phone">
|
@@ -294,15 +357,6 @@ const ContactContent = ({ queryUrl, onChange }) => {
|
|
294
357
|
</div>
|
295
358
|
}
|
296
359
|
|
297
|
-
{/* add topics */}
|
298
|
-
<div className="topics">
|
299
|
-
{item.topics
|
300
|
-
? item.topics.map((mail, i) => {
|
301
|
-
return <span key={i}>{mail.title}</span>;
|
302
|
-
})
|
303
|
-
: ""}
|
304
|
-
</div>
|
305
|
-
|
306
360
|
{item.logo_thumb_scale ? (
|
307
361
|
<img
|
308
362
|
className="annuaire-logo"
|
@@ -312,12 +366,12 @@ const ContactContent = ({ queryUrl, onChange }) => {
|
|
312
366
|
) : (
|
313
367
|
""
|
314
368
|
)}
|
315
|
-
{item.logo_thumb_scale &&
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
369
|
+
{item.logo_thumb_scale &&
|
370
|
+
<img
|
371
|
+
className="annuaire-logo"
|
372
|
+
src={item.logo_thumb_scale}
|
373
|
+
alt="Logo"
|
374
|
+
/>
|
321
375
|
}
|
322
376
|
</div>
|
323
377
|
</div>
|
@@ -331,7 +385,7 @@ const ContactContent = ({ queryUrl, onChange }) => {
|
|
331
385
|
<span className="r-content-file-title">{file.title}</span>
|
332
386
|
<span className="r-content-file-icon">
|
333
387
|
<svg width="21" height="21" viewBox="0 0 24 24" fill="none" stroke="#8899a4" stroke-width="2" stroke-linecap="square" stroke-linejoin="arcs"><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"></path></svg>
|
334
|
-
|
388
|
+
</span>
|
335
389
|
</a>
|
336
390
|
</div>
|
337
391
|
))}
|
@@ -344,7 +398,7 @@ const ContactContent = ({ queryUrl, onChange }) => {
|
|
344
398
|
<div className="spotlight-group flexbin r-content-gallery">
|
345
399
|
{gallery.map((image, i) => (
|
346
400
|
<a key={i} className="spotlight" href={image.image_full_scale} >
|
347
|
-
<img src={image.image_preview_scale} />
|
401
|
+
<img src={image.image_preview_scale} alt="" />
|
348
402
|
</a>
|
349
403
|
))}
|
350
404
|
</div>
|
@@ -381,7 +381,7 @@ const ContactContent = ({ queryUrl, onChange }) => {
|
|
381
381
|
<div className="spotlight-group flexbin r-content-gallery">
|
382
382
|
{gallery.map((image, i) => (
|
383
383
|
<a key={i} className="spotlight" href={image.image_full_scale}>
|
384
|
-
<img src={image.image_preview_scale} />
|
384
|
+
<img src={image.image_preview_scale} alt="" />
|
385
385
|
</a>
|
386
386
|
))}
|
387
387
|
</div>
|
@@ -244,7 +244,7 @@ const ContactContent = ({ queryUrl, onChange }) => {
|
|
244
244
|
<div class="spotlight-group flexbin r-content-gallery">
|
245
245
|
{gallery.map((image,i) => (
|
246
246
|
<a key={i} class="spotlight" href={image.image_full_scale} >
|
247
|
-
<img src={image.image_preview_scale} />
|
247
|
+
<img src={image.image_preview_scale} alt="" />
|
248
248
|
</a>
|
249
249
|
))}
|
250
250
|
</div>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: imio.smartweb.core
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.24
|
4
4
|
Summary: Core product for iMio websites
|
5
5
|
Home-page: https://github.com/imio/imio.smartweb.core
|
6
6
|
Author: Christophe Boulanger
|
@@ -189,6 +189,26 @@ Changelog
|
|
189
189
|
=========
|
190
190
|
|
191
191
|
|
192
|
+
1.2.24 (2024-01-22)
|
193
|
+
-------------------
|
194
|
+
|
195
|
+
- WEB-3802 : Get dates range for events in REST views. Coming from React.
|
196
|
+
[boulch]
|
197
|
+
|
198
|
+
- WEB-4050 : Fix : Loosing related_contacts ordering when changing any attributes in section
|
199
|
+
[boulch]
|
200
|
+
|
201
|
+
- WEB-4007 : Add Schedul in contact React view
|
202
|
+
[thomlamb]
|
203
|
+
|
204
|
+
|
205
|
+
1.2.23 (2024-01-09)
|
206
|
+
-------------------
|
207
|
+
|
208
|
+
- WEB-4041 : Handle new "carre" scale
|
209
|
+
[boulch]
|
210
|
+
|
211
|
+
|
192
212
|
1.2.22 (2024-01-05)
|
193
213
|
-------------------
|
194
214
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
imio.smartweb.core-1.2.
|
1
|
+
imio.smartweb.core-1.2.24-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
|
@@ -12,8 +12,8 @@ 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=
|
16
|
-
imio/smartweb/core/vocabularies.py,sha256=
|
15
|
+
imio/smartweb/core/utils.py,sha256=2hE3RmiEV8dO5ZrevlvTmf8BhnmMZIV4QkYuceWWkDY,6577
|
16
|
+
imio/smartweb/core/vocabularies.py,sha256=QktzrS120zvMJ446C2EV1e_EhZlaKCFZhqw7_szz10A,20541
|
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
|
19
19
|
imio/smartweb/core/behaviors/configure.zcml,sha256=3M78L3V1Sdp5AjPscgxHEo79j9ZqiR55ix9QI43KJM0,1677
|
@@ -140,7 +140,7 @@ imio/smartweb/core/browser/subsite/settings.py,sha256=tXEnEYZG75eM7H766ZgNCCWMwO
|
|
140
140
|
imio/smartweb/core/browser/templates/link_input.pt,sha256=Q7Y4gW4q0DVG-U5f3ZJkrAZwJnV8NMPu_Fdht7zhb4A,2808
|
141
141
|
imio/smartweb/core/contents/__init__.py,sha256=0DXz6HbcuFMCGXea3MCfrkT3CBFuVj2nHwd3_UUgPtw,3389
|
142
142
|
imio/smartweb/core/contents/configure.zcml,sha256=VmTWQbCWiiKQUsqzOpP0bRk7ah3B3JZZt7pztgU2Z2g,807
|
143
|
-
imio/smartweb/core/contents/cropping.py,sha256=
|
143
|
+
imio/smartweb/core/contents/cropping.py,sha256=3RYRf3kZkRxcwuNsTUnsb1OKbLD9seBu3So_8k7XBXQ,1482
|
144
144
|
imio/smartweb/core/contents/blocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
145
145
|
imio/smartweb/core/contents/blocks/configure.zcml,sha256=qmn7Hq9TekwvEYvS3PzUtINoA-slaoBrhAVxqvkbYC8,732
|
146
146
|
imio/smartweb/core/contents/blocks/subscriber.py,sha256=YL8mLJBwLvRvhPprbVlSXrNnWK2elZQtbYroWAcCjVg,330
|
@@ -201,7 +201,7 @@ imio/smartweb/core/contents/rest/directory/view.py,sha256=rN4k7sqrd32TNMBBOc7RQe
|
|
201
201
|
imio/smartweb/core/contents/rest/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
202
202
|
imio/smartweb/core/contents/rest/events/configure.zcml,sha256=ufUHdGMkGd57zgZ4_DxvoK4Zn7_AC_A3_TnLkmdYRhs,1017
|
203
203
|
imio/smartweb/core/contents/rest/events/content.py,sha256=5irgZbZt1yavgLUTGU1_O9hANl7WjTe-0eWO2Iz37qw,1279
|
204
|
-
imio/smartweb/core/contents/rest/events/endpoint.py,sha256=
|
204
|
+
imio/smartweb/core/contents/rest/events/endpoint.py,sha256=71rHO0-nlp42Yi5kJPqX4sCxFljiLUsl8np8ZxMy16g,2581
|
205
205
|
imio/smartweb/core/contents/rest/events/view.pt,sha256=kV6O8spIMLkxiqX28VtZ6MTgtlIV7oipuEpPjGkfAKo,816
|
206
206
|
imio/smartweb/core/contents/rest/events/view.py,sha256=kUiHQqi_zRxbg-6j7hmwTRshWDsuDiPX6yGnezVE49c,498
|
207
207
|
imio/smartweb/core/contents/rest/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -227,7 +227,7 @@ imio/smartweb/core/contents/sections/common_templates/carousel.pt,sha256=INJ6vZm
|
|
227
227
|
imio/smartweb/core/contents/sections/common_templates/table.pt,sha256=N_ztInw5BMdDprz9nllilxzSmQTITIdXKPxk7JNVTfM,6428
|
228
228
|
imio/smartweb/core/contents/sections/contact/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
229
229
|
imio/smartweb/core/contents/sections/contact/configure.zcml,sha256=WjyGXO7alNf4yDW5dZCS_xQ_AYbQVQuRVRIeoyLIBzY,1591
|
230
|
-
imio/smartweb/core/contents/sections/contact/content.py,sha256=
|
230
|
+
imio/smartweb/core/contents/sections/contact/content.py,sha256=SSeWBuqs1iDIhaGODI_gCsw4Q6ANBq6m7exZv1lPl_k,2669
|
231
231
|
imio/smartweb/core/contents/sections/contact/forms.py,sha256=VlN_jse8tYxE9RCro2RgHlZRDDIyZA8Bjr-dNePZYwU,1387
|
232
232
|
imio/smartweb/core/contents/sections/contact/macros.pt,sha256=ynqVHvtvvcNyAIGj5K07SO9jyRN0R3KbFBBn4t1qMaE,9523
|
233
233
|
imio/smartweb/core/contents/sections/contact/utils.py,sha256=-DRERss0te9ozVhg3i2FveSuA3eT1WdJn1KicLIVJrI,5270
|
@@ -367,7 +367,7 @@ imio/smartweb/core/tests/test_behaviors.py,sha256=-CGdTPsWC6p7_SEwmQF_6IugNb5g_-
|
|
367
367
|
imio/smartweb/core/tests/test_categories.py,sha256=0qlzehS0VS-bNuAIAKued4m1o1G5VD6z21XPDqwdOk0,2012
|
368
368
|
imio/smartweb/core/tests/test_chatbot.py,sha256=F_53Vk9CwN9o4brZPifY4EQ-umcjdoGQwIBz25hcbxY,1161
|
369
369
|
imio/smartweb/core/tests/test_cirkwiview.py,sha256=i0ObNWPW4kdF81Tq3fizdBo_7aJT9WGL2SsARWhtn7Q,4921
|
370
|
-
imio/smartweb/core/tests/test_cropping.py,sha256
|
370
|
+
imio/smartweb/core/tests/test_cropping.py,sha256=2dyNZNqsL8-LAObL0_hvpxwic18C1-gip8piE_iamDU,6551
|
371
371
|
imio/smartweb/core/tests/test_default_pages.py,sha256=logfeFBEGoadZ37OtcKc2YAz3ok5DgvhQQQ3BsYQlFc,12109
|
372
372
|
imio/smartweb/core/tests/test_faceted.py,sha256=4wCfxDsU_zQ2G9xAy0g2jcuYl4HBALHszM-qJc1v-3M,5994
|
373
373
|
imio/smartweb/core/tests/test_folder.py,sha256=JjV5Hvo6IMEFHo2kowbqhLxcXy11zHRTKL9jYJrRHV0,13527
|
@@ -384,7 +384,7 @@ imio/smartweb/core/tests/test_page.py,sha256=1dD9M_6nwS6M2OuyWmT5cPq5qnxnog3tcqF
|
|
384
384
|
imio/smartweb/core/tests/test_plausibleview.py,sha256=G1ryfnz3TuQBG8VFO5KzEylT5DFABW58PQuuvPq_ccY,3229
|
385
385
|
imio/smartweb/core/tests/test_portal_page.py,sha256=hIqg4eb91o8BsSj7eSKdvoxehzOXt8bzpg1o5ej__zg,7215
|
386
386
|
imio/smartweb/core/tests/test_procedure.py,sha256=0w8phOwYfpp9vb3KDsnwjX8AhQXWdodA06W4koderQo,6474
|
387
|
-
imio/smartweb/core/tests/test_rest.py,sha256=
|
387
|
+
imio/smartweb/core/tests/test_rest.py,sha256=PO4LhMzhH4q4kmBp7amVrGP3HPC68f0AxW8D1_x7E5c,25026
|
388
388
|
imio/smartweb/core/tests/test_robot.py,sha256=NQ7AkN4tEva3bgGjMxmyqY0zIo4pJPnPOwnD9hmrTVI,926
|
389
389
|
imio/smartweb/core/tests/test_search.py,sha256=VryeRI4_5CvnStKOoNoG95M2WTy7Lyy_AhHIDG40M14,2182
|
390
390
|
imio/smartweb/core/tests/test_section_contact.py,sha256=vwCcls19KSiciaAXYG7C3SwOMWao8VGcnLvsU8ikxB0,23166
|
@@ -399,7 +399,7 @@ imio/smartweb/core/tests/test_subsite.py,sha256=wiD8Ke4_-ArstSYNLCs8ArqOuDx2xxUR
|
|
399
399
|
imio/smartweb/core/tests/test_text.py,sha256=DtZNNGJ-MDYbJ-YQj2C0q2Hr7t4-sUbV6SWkE7tihBY,4652
|
400
400
|
imio/smartweb/core/tests/test_toolbar.py,sha256=dxwOGNOg2wPkAnPU3hqGCI6VL2D2nPOIOtbMorvjfps,3823
|
401
401
|
imio/smartweb/core/tests/test_utils.py,sha256=CkRkK3SbT4oQx_-Nq2Z0AhmhzR4kk2BkIZqSbIiPU04,4125
|
402
|
-
imio/smartweb/core/tests/test_vocabularies.py,sha256=
|
402
|
+
imio/smartweb/core/tests/test_vocabularies.py,sha256=nSYjgQMtY4mByiOggLxy--OJu0yaQqJTE9G-8k3AMa8,14234
|
403
403
|
imio/smartweb/core/tests/utils.py,sha256=hsDrWOxL0oNNyx92Hke9Kj9ByKzc2kZ19q9QPVsNud4,2688
|
404
404
|
imio/smartweb/core/tests/resources/cirkwi_bad_widget_mock.html,sha256=13YeZ0mo8PoeHIHa64SLKuhNfGqBMT2uprmYDyQxE78,150
|
405
405
|
imio/smartweb/core/tests/resources/cirkwi_good_widget_mock.html,sha256=vBgQwBKNGcGRrOHfXYZO_gmAGL1oKPDIUOnDfXEHCR4,333252
|
@@ -600,7 +600,7 @@ imio/smartweb/core/webcomponents/build/assets/pin-react-active.07d154037a15be552
|
|
600
600
|
imio/smartweb/core/webcomponents/build/assets/pin-react.fda934b5daf26dd4da2a71a7e7e44431.svg,sha256=kXxN_F5nCL1SUuSvO7dsVz2BCk6lyembEe0ZcDUjEUQ,336
|
601
601
|
imio/smartweb/core/webcomponents/build/assets/search.57bdbf5b191499cd77514097d1c4972c.svg,sha256=VYkbBVirrqBaye-75ns8tcpEqjqpOiXd2CbIqo-M384,426
|
602
602
|
imio/smartweb/core/webcomponents/build/css/323.smartweb-webcomponents-compiled.css,sha256=IgXifdqMDHLh-US9FSsTYPY75eCZgTETHOBUv4KS94E,2546
|
603
|
-
imio/smartweb/core/webcomponents/build/css/363.smartweb-webcomponents-compiled.css,sha256=
|
603
|
+
imio/smartweb/core/webcomponents/build/css/363.smartweb-webcomponents-compiled.css,sha256=qmNl1TV7yB-rEb8U9pZkMqfwXooISHJnOPuAwSnOy5Q,20368
|
604
604
|
imio/smartweb/core/webcomponents/build/css/54.smartweb-webcomponents-compiled.css,sha256=UiRaanRTl9hsewkBRSi7Dqz62z2a-9pZnCUTX-ulZBY,20522
|
605
605
|
imio/smartweb/core/webcomponents/build/css/647.smartweb-webcomponents-compiled.css,sha256=IjUbb5U3SmZlX5UsisrsQIbU6OTS_YeMKBds8GQEd8c,3764
|
606
606
|
imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=xLkcneVroMl6Imnhr5c4qehs2ytJJ3v7nal5GdQiSTI,5304
|
@@ -612,11 +612,11 @@ imio/smartweb/core/webcomponents/build/js/3.smartweb-webcomponents-compiled.js,s
|
|
612
612
|
imio/smartweb/core/webcomponents/build/js/3.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
|
613
613
|
imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js,sha256=P3ty7k9oQ28DCFnvHfzQkz1DG35szEOA3zih_yZzFLI,26760
|
614
614
|
imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
|
615
|
-
imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js,sha256=
|
615
|
+
imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js,sha256=BjivnFwSWTtxnr74LPax8ktagSoyHYZKwTc_mJKJLBg,43481
|
616
616
|
imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
|
617
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=
|
619
|
-
imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js,sha256=
|
618
|
+
imio/smartweb/core/webcomponents/build/js/54.smartweb-webcomponents-compiled.js,sha256=8aWFhpY04z4Y7yPgZJgpitI5WQMLE_jd2fKPNXJCw6Q,33499
|
619
|
+
imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js,sha256=i_QGIUUJGUSD2svXhKuXkycg-BqfZQjoJljUzltX6KA,42746
|
620
620
|
imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
|
621
621
|
imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js,sha256=51GDqoBV0fL0ty2auKpPbs_Xo8yGklTW5rn4k1GtC_Y,159426
|
622
622
|
imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
|
@@ -642,10 +642,10 @@ imio/smartweb/core/webcomponents/src/assets/search.svg,sha256=VYkbBVirrqBaye-75n
|
|
642
642
|
imio/smartweb/core/webcomponents/src/assets/skeleton.svg,sha256=Dmiuh5l9BjAqJkMN0IKg6iT3wJCcD8Dda1QQt4wul9g,453
|
643
643
|
imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
|
644
644
|
imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=J2zVCXHakWL1jaqR830LJE5Gmt1RSQmqb8yx3WF-Lp4,8696
|
645
|
-
imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=
|
645
|
+
imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=78FKZeFxXyJbG_XgY3Nq46h0lJSwR6F3BXa7U_yl9m8,9078
|
646
646
|
imio/smartweb/core/webcomponents/src/components/Annuaire/index.js,sha256=OhysAmFEBw6Jg0F2iko4IGL8VcX0kZ8IZZ30tMWUY1c,97
|
647
|
-
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=
|
648
|
-
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=
|
647
|
+
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=y1GX404CtQo_J8k8GdfAs_hE6TKqj5rUfhp2AV-ke5E,4875
|
648
|
+
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=0JpzZ7h2yH4_nLISj4S1qq7_kL9kNOohm1yumjRlMIs,30366
|
649
649
|
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
|
650
650
|
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=g0jxMjGP_PTnk48sew6pAMl1JgEwappTT8K57i3ngCc,1615
|
651
651
|
imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=Q0Vq2EHYdGdGiYVhgYJAX23He8TSedQtXvRWY-kd9r8,7637
|
@@ -653,7 +653,7 @@ imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=eKa8EnG
|
|
653
653
|
imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=NYjgqNEJNXNPRYr60dIqt6MxX8Lbkv3GCcBE5K6CpIk,9042
|
654
654
|
imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
|
655
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=
|
656
|
+
imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=hs2XA8I1Mx5L9SvBfja19ipSUEXqzfmXT1WcEF-TPlQ,16452
|
657
657
|
imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=6k2bIyKd0pzj28NaVhSBJclnEyxdi6iNPbQEHSS5fZk,1600
|
658
658
|
imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=CkSWsGgrDRF5UBpV9flmS3HeZwKkloXBQ7MuUuq-1TI,6272
|
659
659
|
imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=aCXLAcBpKHFFUtWMYxrb2u6xP70e622SigUiVm0RMiw,6778
|
@@ -661,7 +661,7 @@ imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=1RnZHhLGYz
|
|
661
661
|
imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
|
662
662
|
imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx,sha256=LrcbrO3TBBqEmv27es3iD2Ahsqq5Qi8DxnshrDVc5s8,6249
|
663
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=
|
664
|
+
imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=wPrm4AGr-Zqnv_AycanqCbkKeOTYePN2F3OiH-bfdzU,12227
|
665
665
|
imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=FY3-uG_4s8CfHYtonlPmafVhPMcBgQJ2t20fPgUq1Sc,1415
|
666
666
|
imio/smartweb/core/webcomponents/src/components/Search/Search.jsx,sha256=KW5OPrER0BdTTjO7vof3ks809h2ABWfKfexaQ6HOf_E,2271
|
667
667
|
imio/smartweb/core/webcomponents/src/components/Search/Search.scss,sha256=cXrAbnVpUB6UPuF-DhM5juOQy8aDP2ZkXlDH6S_r3lo,2735
|
@@ -677,10 +677,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=ulMbtvMcmV0Af4lhYtkkSh
|
|
677
677
|
imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=Ht5NXE7K1HohmDv4BOaE4Z0mhnqtKqYbBuEiP371Uho,73
|
678
678
|
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=bsTZTvRlBaCImAchnuhZLtLQYC06bM539cPLoAgBMP0,2694
|
679
679
|
imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
|
680
|
-
imio.smartweb.core-1.2.
|
681
|
-
imio.smartweb.core-1.2.
|
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.
|
680
|
+
imio.smartweb.core-1.2.24.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
681
|
+
imio.smartweb.core-1.2.24.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
682
|
+
imio.smartweb.core-1.2.24.dist-info/METADATA,sha256=UoxvFS8e5iFXLLzuO4o1wc17SudmDQ3MvUNC_XctZZU,47434
|
683
|
+
imio.smartweb.core-1.2.24.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
684
|
+
imio.smartweb.core-1.2.24.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
685
|
+
imio.smartweb.core-1.2.24.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
686
|
+
imio.smartweb.core-1.2.24.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{imio.smartweb.core-1.2.22.dist-info → imio.smartweb.core-1.2.24.dist-info}/namespace_packages.txt
RENAMED
File without changes
|
File without changes
|