imio.smartweb.core 1.2.75__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.
- imio/smartweb/core/browser/static/smartweb-view-compiled.css +1 -1
- imio/smartweb/core/browser/static/src/view.less +106 -57
- imio/smartweb/core/contents/pages/views.py +4 -1
- imio/smartweb/core/contents/sections/contact/macros.pt +28 -3
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +364 -378
- imio/smartweb/core/webcomponents/src/components/Events/Events.scss +401 -417
- imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss +174 -172
- imio/smartweb/core/webcomponents/src/components/News/News.scss +145 -130
- imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +35 -14
- imio/smartweb/core/webcomponents/src/components/Search/Search.scss +117 -118
- {imio.smartweb.core-1.2.75.dist-info → imio.smartweb.core-1.2.76.dist-info}/METADATA +13 -1
- {imio.smartweb.core-1.2.75.dist-info → imio.smartweb.core-1.2.76.dist-info}/RECORD +18 -18
- /imio.smartweb.core-1.2.75-py3.12-nspkg.pth → /imio.smartweb.core-1.2.76-py3.12-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.75.dist-info → imio.smartweb.core-1.2.76.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.75.dist-info → imio.smartweb.core-1.2.76.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.75.dist-info → imio.smartweb.core-1.2.76.dist-info}/WHEEL +0 -0
- {imio.smartweb.core-1.2.75.dist-info → imio.smartweb.core-1.2.76.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.75.dist-info → imio.smartweb.core-1.2.76.dist-info}/top_level.txt +0 -0
@@ -1,147 +1,146 @@
|
|
1
1
|
.userrole-authenticated {
|
2
|
-
|
3
|
-
|
4
|
-
|
2
|
+
.r-search-container {
|
3
|
+
padding: 0 20px 0 123px;
|
4
|
+
}
|
5
5
|
}
|
6
6
|
|
7
7
|
.r-search-container {
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
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
|
-
|
60
|
-
|
61
|
-
|
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
|
-
|
65
|
-
|
66
|
-
|
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
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
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
|
-
|
97
|
-
|
98
|
-
|
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
|
-
|
102
|
-
|
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
|
-
|
105
|
-
|
96
|
+
.r-search-select {
|
97
|
+
height: 50px;
|
98
|
+
border-radius: 0px;
|
106
99
|
}
|
107
100
|
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
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
|
-
|
134
|
-
|
135
|
-
|
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
|
-
|
142
|
-
|
140
|
+
float: left;
|
141
|
+
margin-right: 0.5rem;
|
143
142
|
}
|
144
143
|
|
145
144
|
.r-search-result mark {
|
146
|
-
|
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.
|
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,18 @@ 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
|
+
|
194
206
|
1.2.75 (2024-11-19)
|
195
207
|
-------------------
|
196
208
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
imio.smartweb.core-1.2.
|
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=
|
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=
|
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
|
@@ -182,7 +182,7 @@ imio/smartweb/core/contents/pages/pages.py,sha256=iCQwzbp4nnGqwy31UE5Q9MaeJVAzJU
|
|
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=
|
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,7 +252,7 @@ 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=
|
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
258
|
imio/smartweb/core/contents/sections/contact/view.py,sha256=7zTN6JPUaeomzfiaE5eUyvFIqfyPNg2UJDOVpzt6vJ8,1962
|
@@ -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=
|
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=
|
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=
|
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=
|
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=
|
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=
|
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.
|
760
|
-
imio.smartweb.core-1.2.
|
761
|
-
imio.smartweb.core-1.2.
|
762
|
-
imio.smartweb.core-1.2.
|
763
|
-
imio.smartweb.core-1.2.
|
764
|
-
imio.smartweb.core-1.2.
|
765
|
-
imio.smartweb.core-1.2.
|
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,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{imio.smartweb.core-1.2.75.dist-info → imio.smartweb.core-1.2.76.dist-info}/namespace_packages.txt
RENAMED
File without changes
|
File without changes
|