imio.smartweb.core 1.4__py3-none-any.whl → 1.4.2__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-edit-compiled.css +1 -1
- imio/smartweb/core/browser/static/src/edit.less +20 -11
- imio/smartweb/core/contents/rest/events/endpoint.py +51 -3
- imio/smartweb/core/subscribers.py +10 -0
- imio/smartweb/core/tests/test_cropping.py +53 -0
- imio/smartweb/core/tests/test_rest.py +47 -5
- imio/smartweb/core/viewlets/ogptags.py +6 -12
- imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js.LICENSE.txt +3 -3
- imio/smartweb/core/webcomponents/build/js/21.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/491.smartweb-webcomponents-compiled.js +2 -0
- imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +57 -0
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx +47 -0
- imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx +69 -0
- imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx +47 -0
- imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +0 -1
- imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +69 -0
- imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx +48 -0
- {imio_smartweb_core-1.4.dist-info → imio_smartweb_core-1.4.2.dist-info}/METADATA +29 -1
- {imio_smartweb_core-1.4.dist-info → imio_smartweb_core-1.4.2.dist-info}/RECORD +37 -37
- {imio_smartweb_core-1.4.dist-info → imio_smartweb_core-1.4.2.dist-info}/WHEEL +1 -1
- imio/smartweb/core/webcomponents/build/js/15.smartweb-webcomponents-compiled.js +0 -2
- /imio/smartweb/core/webcomponents/build/js/{15.smartweb-webcomponents-compiled.js.LICENSE.txt → 491.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
- /imio.smartweb.core-1.4-py3.12-nspkg.pth → /imio.smartweb.core-1.4.2-py3.12-nspkg.pth +0 -0
- {imio_smartweb_core-1.4.dist-info → imio_smartweb_core-1.4.2.dist-info}/licenses/LICENSE.GPL +0 -0
- {imio_smartweb_core-1.4.dist-info → imio_smartweb_core-1.4.2.dist-info}/licenses/LICENSE.rst +0 -0
- {imio_smartweb_core-1.4.dist-info → imio_smartweb_core-1.4.2.dist-info}/namespace_packages.txt +0 -0
- {imio_smartweb_core-1.4.dist-info → imio_smartweb_core-1.4.2.dist-info}/top_level.txt +0 -0
@@ -61,6 +61,63 @@ const ContactContent = ({ queryUrl, onChange, contextAuthenticatedUser }) => {
|
|
61
61
|
}
|
62
62
|
}, [item]);
|
63
63
|
|
64
|
+
useEffect(() => {
|
65
|
+
if (!item || !item.title) return;
|
66
|
+
document.title = item.title;
|
67
|
+
|
68
|
+
const ogImageWidth = image?.width || "";
|
69
|
+
const ogImageHeight = image?.height || "";
|
70
|
+
|
71
|
+
// Liste complète de toutes les balises possibles
|
72
|
+
const allMetaProps = [
|
73
|
+
{ name: "description" },
|
74
|
+
{ property: "og:title" },
|
75
|
+
{ property: "og:description" },
|
76
|
+
{ property: "og:url" },
|
77
|
+
{ property: "og:type" },
|
78
|
+
{ property: "og:image" },
|
79
|
+
{ property: "og:image:type" },
|
80
|
+
{ property: "og:image:alt" },
|
81
|
+
{ property: "og:image:width" },
|
82
|
+
{ property: "og:image:height" },
|
83
|
+
];
|
84
|
+
|
85
|
+
// Supprime les anciennes balises
|
86
|
+
allMetaProps.forEach(({ name, property }) => {
|
87
|
+
const selector = name ? `meta[name="${name}"]` : `meta[property="${property}"]`;
|
88
|
+
const existing = document.head.querySelector(selector);
|
89
|
+
if (existing) {
|
90
|
+
document.head.removeChild(existing);
|
91
|
+
}
|
92
|
+
});
|
93
|
+
|
94
|
+
// Recrée les balises à jour
|
95
|
+
const metaUpdates = [
|
96
|
+
{ name: "description", content: [item.subtitle, item.description].filter(Boolean).join(" - ") },
|
97
|
+
{ property: "og:title", content: item.title },
|
98
|
+
{ property: "og:description", content: [item.subtitle, item.description].filter(Boolean).join(" - ") },
|
99
|
+
{ property: "og:url", content: typeof window !== "undefined" ? window.location.href : "" },
|
100
|
+
{ property: "og:type", content: "profile" },
|
101
|
+
];
|
102
|
+
|
103
|
+
if (item.image_affiche_scale) {
|
104
|
+
metaUpdates.push({ property: "og:image", content: item.image_affiche_scale });
|
105
|
+
|
106
|
+
if (ogImageWidth && ogImageHeight) {
|
107
|
+
metaUpdates.push({ property: "og:image:width", content: ogImageWidth });
|
108
|
+
metaUpdates.push({ property: "og:image:height", content: ogImageHeight });
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
metaUpdates.forEach(({ name, property, content }) => {
|
113
|
+
const tag = document.createElement("meta");
|
114
|
+
if (name) tag.setAttribute("name", name);
|
115
|
+
if (property) tag.setAttribute("property", property);
|
116
|
+
tag.setAttribute("content", content);
|
117
|
+
document.head.appendChild(tag);
|
118
|
+
});
|
119
|
+
}, [item, image]);
|
120
|
+
|
64
121
|
// set social link
|
65
122
|
useEffect(() => {
|
66
123
|
item.urls && setSocial(item.urls.filter((urls) => urls.type !== "website"));
|
@@ -18,6 +18,53 @@ const ContactList = ({ contactArray, onChange, onHover, contextAuthenticatedUser
|
|
18
18
|
useEffect(() => {
|
19
19
|
window.scrollTo({ top: scrollPos, left: 0, behavior: "instant" });
|
20
20
|
}, [contactArray]);
|
21
|
+
|
22
|
+
useEffect(() => {
|
23
|
+
// Liste complète de toutes les balises possibles
|
24
|
+
const allMetaProps = [
|
25
|
+
{ name: "description" },
|
26
|
+
{ property: "og:title" },
|
27
|
+
{ property: "og:description" },
|
28
|
+
{ property: "og:url" },
|
29
|
+
{ property: "og:type" },
|
30
|
+
{ property: "og:image" },
|
31
|
+
{ property: "og:image:type" },
|
32
|
+
{ property: "og:image:alt" },
|
33
|
+
{ property: "og:image:width" },
|
34
|
+
{ property: "og:image:height" },
|
35
|
+
];
|
36
|
+
|
37
|
+
// Supprime les anciennes balises
|
38
|
+
allMetaProps.forEach(({ name, property }) => {
|
39
|
+
const selector = name ? `meta[name="${name}"]` : `meta[property="${property}"]`;
|
40
|
+
const existing = document.head.querySelector(selector);
|
41
|
+
if (existing) {
|
42
|
+
document.head.removeChild(existing);
|
43
|
+
}
|
44
|
+
});
|
45
|
+
|
46
|
+
const metaUpdates = [
|
47
|
+
{ name: "description", content: "Annuaire" },
|
48
|
+
{ property: "og:title", content: "Annuaire" },
|
49
|
+
{ property: "og:description", content: "Annuaire" },
|
50
|
+
{ property: "og:url", content: typeof window !== "undefined" ? window.location.href : "" },
|
51
|
+
{ property: "og:type", content: "website" },
|
52
|
+
];
|
53
|
+
|
54
|
+
metaUpdates.forEach(({ name, property, content }) => {
|
55
|
+
const selector = name ? `meta[name="${name}"]` : `meta[property="${property}"]`;
|
56
|
+
let tag = document.head.querySelector(selector);
|
57
|
+
|
58
|
+
if (!tag) {
|
59
|
+
tag = document.createElement("meta");
|
60
|
+
if (name) tag.setAttribute("name", name);
|
61
|
+
if (property) tag.setAttribute("property", property);
|
62
|
+
document.head.appendChild(tag);
|
63
|
+
}
|
64
|
+
|
65
|
+
tag.setAttribute("content", content);
|
66
|
+
});
|
67
|
+
}, []);
|
21
68
|
return (
|
22
69
|
<React.Fragment>
|
23
70
|
<ul className="r-result-list annuaire-result-list">
|
@@ -22,6 +22,7 @@ const ContactContent = ({ queryUrl, onChange, onlyPastEvents, contextAuthenticat
|
|
22
22
|
const [recurence, setRecurence] = useState([]);
|
23
23
|
const [files, setFiles] = useState();
|
24
24
|
const [gallery, setGallery] = useState();
|
25
|
+
const [image, setImage] = useState();
|
25
26
|
const [isSchedulVisible, setSchedulVisibility] = useState(false);
|
26
27
|
const modalRef = useRef();
|
27
28
|
const { response, error, isLoading } = useAxios(
|
@@ -75,6 +76,74 @@ const ContactContent = ({ queryUrl, onChange, onlyPastEvents, contextAuthenticat
|
|
75
76
|
onChange(null);
|
76
77
|
}
|
77
78
|
|
79
|
+
// set image
|
80
|
+
useEffect(() => {
|
81
|
+
if (item.image_affiche_scale) {
|
82
|
+
const img = new Image();
|
83
|
+
img.src = item.image_affiche_scale;
|
84
|
+
img.onload = () => {
|
85
|
+
setImage(img);
|
86
|
+
};
|
87
|
+
}
|
88
|
+
}, [item]);
|
89
|
+
|
90
|
+
useEffect(() => {
|
91
|
+
if (!item || !item.title) return;
|
92
|
+
document.title = item.title;
|
93
|
+
|
94
|
+
const ogImageWidth = image?.width || "";
|
95
|
+
const ogImageHeight = image?.height || "";
|
96
|
+
|
97
|
+
// Liste complète de toutes les balises possibles
|
98
|
+
const allMetaProps = [
|
99
|
+
{ name: "description" },
|
100
|
+
{ property: "og:title" },
|
101
|
+
{ property: "og:description" },
|
102
|
+
{ property: "og:url" },
|
103
|
+
{ property: "og:type" },
|
104
|
+
{ property: "og:image" },
|
105
|
+
{ property: "og:image:type" },
|
106
|
+
{ property: "og:image:alt" },
|
107
|
+
{ property: "og:image:width" },
|
108
|
+
{ property: "og:image:height" },
|
109
|
+
];
|
110
|
+
|
111
|
+
// Supprime les anciennes balises
|
112
|
+
allMetaProps.forEach(({ name, property }) => {
|
113
|
+
const selector = name ? `meta[name="${name}"]` : `meta[property="${property}"]`;
|
114
|
+
const existing = document.head.querySelector(selector);
|
115
|
+
if (existing) {
|
116
|
+
document.head.removeChild(existing);
|
117
|
+
}
|
118
|
+
});
|
119
|
+
|
120
|
+
// Recrée les balises à jour
|
121
|
+
const metaUpdates = [
|
122
|
+
{ name: "description", content: [item.subtitle, item.description].filter(Boolean).join(" - ") },
|
123
|
+
{ property: "og:title", content: item.title },
|
124
|
+
{ property: "og:description", content: [item.subtitle, item.description].filter(Boolean).join(" - ") },
|
125
|
+
{ property: "og:url", content: typeof window !== "undefined" ? window.location.href : "" },
|
126
|
+
{ property: "og:type", content: "event" },
|
127
|
+
];
|
128
|
+
|
129
|
+
if (item.image_affiche_scale) {
|
130
|
+
metaUpdates.push({ property: "og:image", content: item.image_affiche_scale });
|
131
|
+
|
132
|
+
if (ogImageWidth && ogImageHeight) {
|
133
|
+
metaUpdates.push({ property: "og:image:width", content: ogImageWidth });
|
134
|
+
metaUpdates.push({ property: "og:image:height", content: ogImageHeight });
|
135
|
+
}
|
136
|
+
}
|
137
|
+
|
138
|
+
metaUpdates.forEach(({ name, property, content }) => {
|
139
|
+
const tag = document.createElement("meta");
|
140
|
+
if (name) tag.setAttribute("name", name);
|
141
|
+
if (property) tag.setAttribute("property", property);
|
142
|
+
tag.setAttribute("content", content);
|
143
|
+
document.head.appendChild(tag);
|
144
|
+
});
|
145
|
+
}, [item, image]);
|
146
|
+
|
78
147
|
// ref to toggle
|
79
148
|
|
80
149
|
useEffect(() => {
|
@@ -25,6 +25,53 @@ const ContactList = ({
|
|
25
25
|
window.scrollTo({ top: scrollPos, left: 0, behavior: "instant" });
|
26
26
|
}, [itemsArray]);
|
27
27
|
|
28
|
+
useEffect(() => {
|
29
|
+
// Liste complète de toutes les balises possibles
|
30
|
+
const allMetaProps = [
|
31
|
+
{ name: "description" },
|
32
|
+
{ property: "og:title" },
|
33
|
+
{ property: "og:description" },
|
34
|
+
{ property: "og:url" },
|
35
|
+
{ property: "og:type" },
|
36
|
+
{ property: "og:image" },
|
37
|
+
{ property: "og:image:type" },
|
38
|
+
{ property: "og:image:alt" },
|
39
|
+
{ property: "og:image:width" },
|
40
|
+
{ property: "og:image:height" },
|
41
|
+
];
|
42
|
+
|
43
|
+
// Supprime les anciennes balises
|
44
|
+
allMetaProps.forEach(({ name, property }) => {
|
45
|
+
const selector = name ? `meta[name="${name}"]` : `meta[property="${property}"]`;
|
46
|
+
const existing = document.head.querySelector(selector);
|
47
|
+
if (existing) {
|
48
|
+
document.head.removeChild(existing);
|
49
|
+
}
|
50
|
+
});
|
51
|
+
|
52
|
+
const metaUpdates = [
|
53
|
+
{ name: "description", content: "Agenda" },
|
54
|
+
{ property: "og:title", content: "Agenda" },
|
55
|
+
{ property: "og:description", content: "Agenda" },
|
56
|
+
{ property: "og:url", content: typeof window !== "undefined" ? window.location.href : "" },
|
57
|
+
{ property: "og:type", content: "website" },
|
58
|
+
];
|
59
|
+
|
60
|
+
metaUpdates.forEach(({ name, property, content }) => {
|
61
|
+
const selector = name ? `meta[name="${name}"]` : `meta[property="${property}"]`;
|
62
|
+
let tag = document.head.querySelector(selector);
|
63
|
+
|
64
|
+
if (!tag) {
|
65
|
+
tag = document.createElement("meta");
|
66
|
+
if (name) tag.setAttribute("name", name);
|
67
|
+
if (property) tag.setAttribute("property", property);
|
68
|
+
document.head.appendChild(tag);
|
69
|
+
}
|
70
|
+
|
71
|
+
tag.setAttribute("content", content);
|
72
|
+
});
|
73
|
+
}, []);
|
74
|
+
|
28
75
|
return (
|
29
76
|
<React.Fragment>
|
30
77
|
<ul className="r-result-list event-result-list">
|
@@ -17,6 +17,7 @@ const ContactContent = ({ queryUrl, onChange, contextAuthenticatedUser }) => {
|
|
17
17
|
const [params, setParams] = useState(parsed2);
|
18
18
|
const [item, setitem] = useState({});
|
19
19
|
const [files, setFiles] = useState(null);
|
20
|
+
const [image, setImage] = useState();
|
20
21
|
const [gallery, setGallery] = useState();
|
21
22
|
const { response, error, isLoading } = useAxios(
|
22
23
|
{
|
@@ -71,6 +72,74 @@ const ContactContent = ({ queryUrl, onChange, contextAuthenticatedUser }) => {
|
|
71
72
|
const created = moment(item.created).startOf("minute").fromNow();
|
72
73
|
const lastModified = moment(item.modified).startOf("minute").fromNow();
|
73
74
|
|
75
|
+
// set image
|
76
|
+
useEffect(() => {
|
77
|
+
if (item.image_affiche_scale) {
|
78
|
+
const img = new Image();
|
79
|
+
img.src = item.image_affiche_scale;
|
80
|
+
img.onload = () => {
|
81
|
+
setImage(img);
|
82
|
+
};
|
83
|
+
}
|
84
|
+
}, [item]);
|
85
|
+
|
86
|
+
useEffect(() => {
|
87
|
+
if (!item || !item.title) return;
|
88
|
+
document.title = item.title;
|
89
|
+
|
90
|
+
const ogImageWidth = image?.width || "";
|
91
|
+
const ogImageHeight = image?.height || "";
|
92
|
+
|
93
|
+
// Liste complète de toutes les balises possibles
|
94
|
+
const allMetaProps = [
|
95
|
+
{ name: "description" },
|
96
|
+
{ property: "og:title" },
|
97
|
+
{ property: "og:description" },
|
98
|
+
{ property: "og:url" },
|
99
|
+
{ property: "og:type" },
|
100
|
+
{ property: "og:image" },
|
101
|
+
{ property: "og:image:type" },
|
102
|
+
{ property: "og:image:alt" },
|
103
|
+
{ property: "og:image:width" },
|
104
|
+
{ property: "og:image:height" },
|
105
|
+
];
|
106
|
+
|
107
|
+
// Supprime les anciennes balises
|
108
|
+
allMetaProps.forEach(({ name, property }) => {
|
109
|
+
const selector = name ? `meta[name="${name}"]` : `meta[property="${property}"]`;
|
110
|
+
const existing = document.head.querySelector(selector);
|
111
|
+
if (existing) {
|
112
|
+
document.head.removeChild(existing);
|
113
|
+
}
|
114
|
+
});
|
115
|
+
|
116
|
+
// Recrée les balises à jour
|
117
|
+
const metaUpdates = [
|
118
|
+
{ name: "description", content: [item.subtitle, item.description].filter(Boolean).join(" - ") },
|
119
|
+
{ property: "og:title", content: item.title },
|
120
|
+
{ property: "og:description", content: [item.subtitle, item.description].filter(Boolean).join(" - ") },
|
121
|
+
{ property: "og:url", content: typeof window !== "undefined" ? window.location.href : "" },
|
122
|
+
{ property: "og:type", content: "event" },
|
123
|
+
];
|
124
|
+
|
125
|
+
if (item.image_affiche_scale) {
|
126
|
+
metaUpdates.push({ property: "og:image", content: item.image_affiche_scale });
|
127
|
+
|
128
|
+
if (ogImageWidth && ogImageHeight) {
|
129
|
+
metaUpdates.push({ property: "og:image:width", content: ogImageWidth });
|
130
|
+
metaUpdates.push({ property: "og:image:height", content: ogImageHeight });
|
131
|
+
}
|
132
|
+
}
|
133
|
+
|
134
|
+
metaUpdates.forEach(({ name, property, content }) => {
|
135
|
+
const tag = document.createElement("meta");
|
136
|
+
if (name) tag.setAttribute("name", name);
|
137
|
+
if (property) tag.setAttribute("property", property);
|
138
|
+
tag.setAttribute("content", content);
|
139
|
+
document.head.appendChild(tag);
|
140
|
+
});
|
141
|
+
}, [item, image]);
|
142
|
+
|
74
143
|
return isLoading ? (
|
75
144
|
<div className="lds-roller-container">
|
76
145
|
<Translate text="Chargement..." />
|
@@ -14,6 +14,54 @@ const NewsList = ({ itemsArray, onChange, showCategoriesOrTopics, contextAuthent
|
|
14
14
|
useEffect(() => {
|
15
15
|
window.scrollTo({ top: scrollPos, left: 0, behavior: "instant" });
|
16
16
|
}, [itemsArray]);
|
17
|
+
|
18
|
+
useEffect(() => {
|
19
|
+
// Liste complète de toutes les balises possibles
|
20
|
+
const allMetaProps = [
|
21
|
+
{ name: "description" },
|
22
|
+
{ property: "og:title" },
|
23
|
+
{ property: "og:description" },
|
24
|
+
{ property: "og:url" },
|
25
|
+
{ property: "og:type" },
|
26
|
+
{ property: "og:image" },
|
27
|
+
{ property: "og:image:type" },
|
28
|
+
{ property: "og:image:alt" },
|
29
|
+
{ property: "og:image:width" },
|
30
|
+
{ property: "og:image:height" },
|
31
|
+
];
|
32
|
+
|
33
|
+
// Supprime les anciennes balises
|
34
|
+
allMetaProps.forEach(({ name, property }) => {
|
35
|
+
const selector = name ? `meta[name="${name}"]` : `meta[property="${property}"]`;
|
36
|
+
const existing = document.head.querySelector(selector);
|
37
|
+
if (existing) {
|
38
|
+
document.head.removeChild(existing);
|
39
|
+
}
|
40
|
+
});
|
41
|
+
|
42
|
+
const metaUpdates = [
|
43
|
+
{ name: "description", content: "Actualités" },
|
44
|
+
{ property: "og:title", content: "Actualités" },
|
45
|
+
{ property: "og:description", content: "Actualtés" },
|
46
|
+
{ property: "og:url", content: typeof window !== "undefined" ? window.location.href : "" },
|
47
|
+
{ property: "og:type", content: "website" },
|
48
|
+
];
|
49
|
+
|
50
|
+
metaUpdates.forEach(({ name, property, content }) => {
|
51
|
+
const selector = name ? `meta[name="${name}"]` : `meta[property="${property}"]`;
|
52
|
+
let tag = document.head.querySelector(selector);
|
53
|
+
|
54
|
+
if (!tag) {
|
55
|
+
tag = document.createElement("meta");
|
56
|
+
if (name) tag.setAttribute("name", name);
|
57
|
+
if (property) tag.setAttribute("property", property);
|
58
|
+
document.head.appendChild(tag);
|
59
|
+
}
|
60
|
+
|
61
|
+
tag.setAttribute("content", content);
|
62
|
+
});
|
63
|
+
}, []);
|
64
|
+
|
17
65
|
return (
|
18
66
|
<React.Fragment>
|
19
67
|
<ul className="r-result-list actu-result-list">
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: imio.smartweb.core
|
3
|
-
Version: 1.4
|
3
|
+
Version: 1.4.2
|
4
4
|
Summary: Core product for iMio websites
|
5
5
|
Home-page: https://github.com/imio/imio.smartweb.core
|
6
6
|
Author: Christophe Boulanger
|
@@ -208,6 +208,34 @@ Changelog
|
|
208
208
|
=========
|
209
209
|
|
210
210
|
|
211
|
+
1.4.2 (2025-05-20)
|
212
|
+
------------------
|
213
|
+
|
214
|
+
- WEB-4242 : Clear scales annotations when we remove lead image from an object
|
215
|
+
Avoid scale is still accessible with direct link
|
216
|
+
[boulch]
|
217
|
+
|
218
|
+
- WEB-4218 : Fix cookie modal tab index and improve ux
|
219
|
+
[thomlamb]
|
220
|
+
|
221
|
+
- WEB-4234 : Avoid using fullobjects when we get events from Agenda authentic sources
|
222
|
+
[boulch]
|
223
|
+
|
224
|
+
|
225
|
+
1.4.1 (2025-05-14)
|
226
|
+
------------------
|
227
|
+
|
228
|
+
- WEB-4165 : Add the React script to manage og tags in other views (Agenda / News)
|
229
|
+
[boulch]
|
230
|
+
|
231
|
+
- WEB-4165 : Refactoring : Don't use react-helmet/react-helmet-async anymore to manage og tags in directory view
|
232
|
+
because of duplicated og:tags. Favor for creating og:tags in header viewlet (SSR) and update it thanks to REACT script
|
233
|
+
[boulch]
|
234
|
+
|
235
|
+
- WEB-4165 : Add react-helmet pakcage (6.1.0) to manage og tags in directory view
|
236
|
+
[boulch]
|
237
|
+
|
238
|
+
|
211
239
|
1.4 (2025-05-06)
|
212
240
|
----------------
|
213
241
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
imio.smartweb.core-1.4-py3.12-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
|
1
|
+
imio.smartweb.core-1.4.2-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=TvYHum_puMstTxxe9YjrtOeEm843_ef4cPSD3Eod6H8,1703
|
@@ -9,7 +9,7 @@ imio/smartweb/core/overrides.zcml,sha256=Lffmp-e2rKC4PUYxwOYjIx4W0_PW1oi5eT_dFq9
|
|
9
9
|
imio/smartweb/core/permissions.zcml,sha256=ZyBEARyO8NAq7tKFTb3G1FqEWERT1mQQ6vCVzji1ci8,1777
|
10
10
|
imio/smartweb/core/profiles.zcml,sha256=KjaQaXhygRiOvJpShLEzS4Oy0Zah1bYCFel-zi0FOJU,2942
|
11
11
|
imio/smartweb/core/setuphandlers.py,sha256=k1K8-ezP2gELwCNM5An2bBwQJjAKeS0rYtr2-q_InK8,932
|
12
|
-
imio/smartweb/core/subscribers.py,sha256=
|
12
|
+
imio/smartweb/core/subscribers.py,sha256=boTjol7IVWgDNUrUtL0atmjwqKQ_irhsABaZTdZtT48,7311
|
13
13
|
imio/smartweb/core/subscribers.zcml,sha256=etnSLNtyQOKV_P81raDNeTGNzPqwcujlim6NPCPDO_Q,2004
|
14
14
|
imio/smartweb/core/testing.py,sha256=t0Y3t3FXX2RjgklcRzHT37AjKbMKL3ZjjT3d2UhQm7A,3636
|
15
15
|
imio/smartweb/core/testing.zcml,sha256=VyKjWW2QHYuUYKkGUvtsdFI_Pa7Wcp1yBBDla112eMc,172
|
@@ -77,7 +77,7 @@ imio/smartweb/core/browser/search/search.py,sha256=y2GcivC3UBjhiO5XHKtIgeOC6M8Es
|
|
77
77
|
imio/smartweb/core/browser/static/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
78
78
|
imio/smartweb/core/browser/static/Makefile,sha256=M6dYqYEKwHzwyCn3d8RWpbwVJmfLSr2D0Zvqyl7fqFM,350
|
79
79
|
imio/smartweb/core/browser/static/package.json,sha256=rJeZEnDqQvcPTakkRPOZCALk8HBKA-3BOb4Kjwi12vs,695
|
80
|
-
imio/smartweb/core/browser/static/smartweb-edit-compiled.css,sha256=
|
80
|
+
imio/smartweb/core/browser/static/smartweb-edit-compiled.css,sha256=anWArMi2yu4PBkteTqRGYw-vw99KX6tjwZzya8g1D9Q,5243
|
81
81
|
imio/smartweb/core/browser/static/smartweb-edit-compiled.js,sha256=8apUM0A48d1cDvNbj3eL82sJzzbI3gDurkV48uGOOpg,1222
|
82
82
|
imio/smartweb/core/browser/static/smartweb-swiperconfig-compiled.js,sha256=N2b-d5pLMqI66U5ORf0E8UvjJqcnYpfe8QmHjf46Qzs,608
|
83
83
|
imio/smartweb/core/browser/static/smartweb-view-compiled.css,sha256=npyopq8t3SHOTlHwvNjJbIz__QeBJr9i8IufmK2DQgs,3694
|
@@ -151,7 +151,7 @@ imio/smartweb/core/browser/static/icons/vue-actualites.svg,sha256=M0LnT9Fp4uIQOG
|
|
151
151
|
imio/smartweb/core/browser/static/icons/vue-agenda.svg,sha256=ZaIUxfdRIYuNUwp2wKmdC1Q1g7uhjaGaxVXCooi-zkQ,336
|
152
152
|
imio/smartweb/core/browser/static/icons/vue-annuaire.svg,sha256=jCoOGU6nGabF_mGAF5hsge1OWZbRKRtYHfjmzEJhzS0,497
|
153
153
|
imio/smartweb/core/browser/static/src/edit.js,sha256=8o6qgeMJ_kDyq94HJ6xB_junqSY-ruH11uguxdkkST0,1978
|
154
|
-
imio/smartweb/core/browser/static/src/edit.less,sha256=
|
154
|
+
imio/smartweb/core/browser/static/src/edit.less,sha256=Acg3e4qdEmAqVdlQgthEPgMlzsv23MLvNr3BT2OrYQc,5545
|
155
155
|
imio/smartweb/core/browser/static/src/swiper-config.js,sha256=PK5Uw_vbHcXiyt3R8Gvdq2geNX6LEdQB2QTWTcKSqWg,1285
|
156
156
|
imio/smartweb/core/browser/static/src/view.js,sha256=c8J_VYwXuM_9u0c2OWs96yeTJTZOmKpgoCup5GLo5js,3268
|
157
157
|
imio/smartweb/core/browser/static/src/view.less,sha256=5j7QffupSausmmFMuTsxzADCkf84v5pjb6PGN3eAA5I,4399
|
@@ -233,7 +233,7 @@ imio/smartweb/core/contents/rest/directory/view.py,sha256=rN4k7sqrd32TNMBBOc7RQe
|
|
233
233
|
imio/smartweb/core/contents/rest/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
234
234
|
imio/smartweb/core/contents/rest/events/configure.zcml,sha256=ufUHdGMkGd57zgZ4_DxvoK4Zn7_AC_A3_TnLkmdYRhs,1017
|
235
235
|
imio/smartweb/core/contents/rest/events/content.py,sha256=4T0dCsoQx6c1uxISEeqdUggI0q4YE80tQimhALwRmug,1665
|
236
|
-
imio/smartweb/core/contents/rest/events/endpoint.py,sha256=
|
236
|
+
imio/smartweb/core/contents/rest/events/endpoint.py,sha256=zBPp0fjR1rx31OGqKng5seQ81NF6dMX1URoeg2hhqho,5056
|
237
237
|
imio/smartweb/core/contents/rest/events/view.pt,sha256=rhM2Wyb05_wIsMCFYERSOoDVSp_ofLiIrWsLb1cDelA,1182
|
238
238
|
imio/smartweb/core/contents/rest/events/view.py,sha256=XCFmmC0t1J2HYGIX83bAWF1R1lP_z2qPq5aFmV85h8o,804
|
239
239
|
imio/smartweb/core/contents/rest/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -426,7 +426,7 @@ imio/smartweb/core/tests/test_behaviors.py,sha256=-CGdTPsWC6p7_SEwmQF_6IugNb5g_-
|
|
426
426
|
imio/smartweb/core/tests/test_categories.py,sha256=0qlzehS0VS-bNuAIAKued4m1o1G5VD6z21XPDqwdOk0,2012
|
427
427
|
imio/smartweb/core/tests/test_chatbot.py,sha256=F_53Vk9CwN9o4brZPifY4EQ-umcjdoGQwIBz25hcbxY,1161
|
428
428
|
imio/smartweb/core/tests/test_cirkwiview.py,sha256=i0ObNWPW4kdF81Tq3fizdBo_7aJT9WGL2SsARWhtn7Q,4921
|
429
|
-
imio/smartweb/core/tests/test_cropping.py,sha256=
|
429
|
+
imio/smartweb/core/tests/test_cropping.py,sha256=60JIV1XOYVsQ210WODWJMFEGllyOeP1ZEYuQnfItAMU,8547
|
430
430
|
imio/smartweb/core/tests/test_default_pages.py,sha256=logfeFBEGoadZ37OtcKc2YAz3ok5DgvhQQQ3BsYQlFc,12109
|
431
431
|
imio/smartweb/core/tests/test_faceted.py,sha256=4wCfxDsU_zQ2G9xAy0g2jcuYl4HBALHszM-qJc1v-3M,5994
|
432
432
|
imio/smartweb/core/tests/test_folder.py,sha256=JjV5Hvo6IMEFHo2kowbqhLxcXy11zHRTKL9jYJrRHV0,13527
|
@@ -447,7 +447,7 @@ imio/smartweb/core/tests/test_plausibleview.py,sha256=G1ryfnz3TuQBG8VFO5KzEylT5D
|
|
447
447
|
imio/smartweb/core/tests/test_portal_page.py,sha256=hIqg4eb91o8BsSj7eSKdvoxehzOXt8bzpg1o5ej__zg,7215
|
448
448
|
imio/smartweb/core/tests/test_procedure.py,sha256=1D3H2pOZvQrNXATDN38S8cB58Z4-xL0Y7zTDSrkWbVY,6594
|
449
449
|
imio/smartweb/core/tests/test_redirect_to_main_react_view.py,sha256=3Pa_4BAmyz67onEaHochsubdEqszAMf2j0lkscEY50c,2986
|
450
|
-
imio/smartweb/core/tests/test_rest.py,sha256=
|
450
|
+
imio/smartweb/core/tests/test_rest.py,sha256=TjfBb2JGCsqv3fv_RpZh7_uenXn6V8FmuS80mt12WTY,29965
|
451
451
|
imio/smartweb/core/tests/test_robot.py,sha256=NQ7AkN4tEva3bgGjMxmyqY0zIo4pJPnPOwnD9hmrTVI,926
|
452
452
|
imio/smartweb/core/tests/test_search.py,sha256=VryeRI4_5CvnStKOoNoG95M2WTy7Lyy_AhHIDG40M14,2182
|
453
453
|
imio/smartweb/core/tests/test_section_contact.py,sha256=aJUwOaP9OEpgGKXlQ6xIrP-3gHAeujF0Bnt8xw1llm8,27352
|
@@ -687,7 +687,7 @@ imio/smartweb/core/viewlets/odwb_widget_header.pt,sha256=bmtPkjfd40fwOqsCL1sQFCn
|
|
687
687
|
imio/smartweb/core/viewlets/offcanvas.pt,sha256=UTXA3NNtrZPOcXKXfmkACjJM2NO6zyqlSJzp0AgZjiA,1602
|
688
688
|
imio/smartweb/core/viewlets/offcanvas.py,sha256=3VE2WJcvSKp3oAKYwGuwaHYMoK_83KMksMFDa75u52Y,129
|
689
689
|
imio/smartweb/core/viewlets/ogp_tag_header.pt,sha256=XRWkdZS2oI7W0X1oJSskpXS9dMmxSxSx_7XWb-Q2aBk,1007
|
690
|
-
imio/smartweb/core/viewlets/ogptags.py,sha256=
|
690
|
+
imio/smartweb/core/viewlets/ogptags.py,sha256=JEEBuF8kj4Uwl6dskHEfHU_bUoYygnOw4QaeyfUpWiw,4806
|
691
691
|
imio/smartweb/core/viewlets/procedure.pt,sha256=gLwNuikgXsWMnBybKdFeKfkfDKnI3SlrU3y2z8sVt5k,602
|
692
692
|
imio/smartweb/core/viewlets/procedure.py,sha256=7nqBU_Sl5tcQaV_UNM-2BPLc8vogCzTO6kQlu4hwofI,633
|
693
693
|
imio/smartweb/core/viewlets/searchbox.pt,sha256=Wv0DbGTKif1z_SDl9-FQKIAPJcfFAHHO1qOtR-LtnR4,403
|
@@ -726,27 +726,27 @@ imio/smartweb/core/webcomponents/build/css/666.smartweb-webcomponents-compiled.c
|
|
726
726
|
imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css,sha256=Caa6G19xHRnmDsB_YZGqkJTU5o7LP2IwO_HdlwtN1EU,32644
|
727
727
|
imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css,sha256=zRQhgF9klDIGadELi-8rqHrKbHYgLO8Bq4skgUjAXBA,2861
|
728
728
|
imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=M8icautg0PsMAmXKrHtVpzfxbu14EYhtawBoD6spwdE,4719
|
729
|
-
imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js,sha256=
|
730
|
-
imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=
|
731
|
-
imio/smartweb/core/webcomponents/build/js/
|
732
|
-
imio/smartweb/core/webcomponents/build/js/
|
733
|
-
imio/smartweb/core/webcomponents/build/js/21.smartweb-webcomponents-compiled.js,sha256=5wkEG6IXjdM5rynHf5mXcNAJUGmVqCDHtlwbYmzRCWA,26529
|
734
|
-
imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js,sha256=XXPUkcyJv5ZYUI4A0_egiUji1e9xZfBa_WSb3FF2OAQ,435795
|
729
|
+
imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js,sha256=Vn9SuJ6aGAvznq4x-k5hy4PCH9N9pwMtG-BDxscFsRw,186813
|
730
|
+
imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=kQXC2TVcxfiUaCGxdgiMSfV7_z_lE2NxQACm0OV5ZL8,680
|
731
|
+
imio/smartweb/core/webcomponents/build/js/21.smartweb-webcomponents-compiled.js,sha256=1xtc-MpfPZijK7BlB03N5VLUxl34cBV-XdaUWJbzmS4,26529
|
732
|
+
imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js,sha256=0GnhHKJ1-YRUdI5ZBYmzBkPAJslRxlqBuL_Xta3jvXU,435619
|
735
733
|
imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=QAeU4Rw9Rrv8hnkJvvMeGdkO2ZE20WLcwCpju_UuPQ0,238
|
736
|
-
imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=
|
734
|
+
imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=zmRoi-4Zo2YmkNUTPmoX-apnAZYlucvt_apv6-j7GvM,66765
|
737
735
|
imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=srGNtnoNHz0w5OlaCDZLtTP8yBsDypbLTNk4qjsLvTU,317
|
738
|
-
imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=
|
739
|
-
imio/smartweb/core/webcomponents/build/js/
|
736
|
+
imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=A3GaUIFOPz5YT8sxaRHkHMl_iG1uPXUHlBpcbAhWJXg,37637
|
737
|
+
imio/smartweb/core/webcomponents/build/js/491.smartweb-webcomponents-compiled.js,sha256=GFWCKX8tM3SrWQsxEmtsS0jN2-dKT8Xx0r5Lew6dLBk,171343
|
738
|
+
imio/smartweb/core/webcomponents/build/js/491.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=eNJ8gc9n9IF8nW1d9sI9niuHstYzjNz5vqXx9UgWSPc,249
|
739
|
+
imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js,sha256=fFOW89PjDsX7490E2_UB-lKZpaFFIGs80vbR9JUpsgw,35523
|
740
740
|
imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js,sha256=QMD0dRW14xDwbGZu7ItIUo5UrDxm6_f-mXjEe_BQT-A,17400
|
741
741
|
imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=R14i0Dp6JC2AOtJVaegrZVAe22i9niDnCBKa5vn7QVc,59
|
742
|
-
imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js,sha256=
|
742
|
+
imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js,sha256=ow4S4Ge8dYSUln3niZMt58ffExyL-oQBPlNbiVP9EZc,156597
|
743
743
|
imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
|
744
|
-
imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=
|
745
|
-
imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=
|
746
|
-
imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js,sha256=
|
747
|
-
imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js,sha256=
|
744
|
+
imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=7HiyFiVZPmJ6cvFVDIgIArboRjjoOwSMBYIATNdPD0c,45855
|
745
|
+
imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=BKb6Q-796XnZ19kdv-rL4ktNj0sNg9bh87FvOVxNo-A,20385
|
746
|
+
imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js,sha256=0yfjk1mwy4g7HguePLKKybHZ9l5QxDYwT0pLsgg63iU,14095
|
747
|
+
imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js,sha256=GMvH8wDjgWU_3dcV6uU5t0Ce59jlmGcjxrNMDdIKxl8,299300
|
748
748
|
imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=A-v1lwmuIX1DpNJ1MDzKDMWv7f_d6cjHlGOCEvthhdY,50
|
749
|
-
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=
|
749
|
+
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=sfnSKvIxh2VBJ6a5U0sRq0aw6AQPbVaXpeWsg1EAHQ0,425777
|
750
750
|
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=FYZFcv_VsY7Ef-afd5tLGRLLk9j84PX0P_ciZvbFli0,968
|
751
751
|
imio/smartweb/core/webcomponents/src/index.jsx,sha256=fD5BlphV-ex32Laoxlp0JKN2jN83ZVVwtY6lKqIiSBs,871
|
752
752
|
imio/smartweb/core/webcomponents/src/index.scss,sha256=2ZIeSoCmRSWfQXWV0rZshDygzn9S2L0hQXdtwW5WLb4,6061
|
@@ -764,8 +764,8 @@ imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=Dca
|
|
764
764
|
imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=99jOFI8Nv3iIrijtz3DkxUv80SgCwEHkoyharipUd_4,12433
|
765
765
|
imio/smartweb/core/webcomponents/src/components/Annuaire/index.js,sha256=A26LlWeszwIzqu15SiEZ_mcb4NSaChAbT7d4GWEyVlY,96
|
766
766
|
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=yBbE4fl6Q-DvGLIN1er7izF507SpYHB5_SCkXPHVYYY,6647
|
767
|
-
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=
|
768
|
-
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=
|
767
|
+
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=mITsX_jxu7zqvZZknDX-3bgrYueDdBNW92S1qf7Z06I,41600
|
768
|
+
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=mtzTrxFbUcQReJV1yLB-TsMbOFeccO0SnLgu52u77iw,4154
|
769
769
|
imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=yg7k4KgIOprikaOImjO-Mh7r83tbw0rgkc3YprQ72_4,13423
|
770
770
|
imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.jsx,sha256=Wm6QkHScfigtYDgSzIFiVinLY75b5v02x_DmczKnhcI,12932
|
771
771
|
imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.scss,sha256=EIs6VbLyj17G2_lOp35rEcaUHglq1rdkM23IQU2cRhU,18662
|
@@ -774,12 +774,12 @@ imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCa
|
|
774
774
|
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx,sha256=kPHCE0Elf5KrQcCMam27pRG_a29VVIYiomxCkvQjo60,10695
|
775
775
|
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignList/CampaignList.jsx,sha256=s1Na63_Xp0yPmQRr7UH5XPAAkmeppB4O8OGOxvBlqWo,2586
|
776
776
|
imio/smartweb/core/webcomponents/src/components/Campaign/Filters/Filter.jsx,sha256=g2sPYM3opHXKz7FpGZRvUbMJ8cTR2OJEyLKH-rIYbX8,7677
|
777
|
-
imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=
|
777
|
+
imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=UPorJU-GDSb7QJy6UYKA9jNjNVwooB34RE_fqpKoTGM,14465
|
778
778
|
imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=DF3ntjQTi2p1M4rYtAs-THg5111x-7jTApggVdFnq04,13079
|
779
779
|
imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
|
780
780
|
imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=CYb-6E5sfgIXFNc2-2dpajBsBggITh-pxqEkiPiJw0M,3586
|
781
|
-
imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=
|
782
|
-
imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=
|
781
|
+
imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=f1i4Hb-KzUAx2o23Nzu3y2UnwLSOwQkcFZQ3gTMy1Kw,40151
|
782
|
+
imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=Wx7VSBw0XRqLotO2V7Xz_B-HVQxso0h8ZeSATVfcaW0,4253
|
783
783
|
imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=Onfa6fL2f1vTt4sAsYNNWA1uHgMR7an10b3IaMpRL1k,15951
|
784
784
|
imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=XKiN7Y8CFz48IluCEmyqTpSbBa6hvF4BjPcAZYKqKaQ,5949
|
785
785
|
imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss,sha256=zccyw3yhc4k2GU_RYl7fJn7tZOz6DMDA2PGGK8SLmNQ,3233
|
@@ -794,8 +794,8 @@ imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=X1qIeoDjtW
|
|
794
794
|
imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
|
795
795
|
imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx,sha256=_jPvqsdg6QHNBkC7erySX-s5sgBh35X8B3P2LgxcsBw,9598
|
796
796
|
imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx,sha256=sYJbhbW2FgV79xpXaFKM3NuKY08NkFZhMOMVPOLesB4,3941
|
797
|
-
imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=
|
798
|
-
imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=
|
797
|
+
imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=SttnM2DOO0ZbTxlLpCI1Mkd3q4L6WokE7Q8I6gIRM7Y,23215
|
798
|
+
imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=jk_CEusujMu_DEHcuX54TnQTvckMcXwK457KL3CRR3I,5561
|
799
799
|
imio/smartweb/core/webcomponents/src/components/Search/Search.jsx,sha256=QkS6KsNSbTUzZbZ_PKdfxh-K2hnPzLO5K6OnB_Q--U4,4843
|
800
800
|
imio/smartweb/core/webcomponents/src/components/Search/Search.scss,sha256=um_151JG3WDC_oe3U_amWrUqUgFFS0fNRd5uDNxQZos,3726
|
801
801
|
imio/smartweb/core/webcomponents/src/components/Search/index.js,sha256=_UM9GrZj8bAVS_Pw7yaGkRL0CrfjqO93a10PQh1a_xI,94
|
@@ -812,10 +812,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=EpmA8-iqHIkWrjgjR9JKvZ
|
|
812
812
|
imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=DVQ6sUQOKFvLhbcamY6EmSrfWYq61gqaQUZ_YM1Le0Q,343
|
813
813
|
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=KYomzpin3vMdS_QyK7QF0lBRXho_6WlHnkCJaRJm4N4,10702
|
814
814
|
imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
|
815
|
-
imio_smartweb_core-1.4.dist-info/licenses/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
816
|
-
imio_smartweb_core-1.4.dist-info/licenses/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
817
|
-
imio_smartweb_core-1.4.dist-info/METADATA,sha256=
|
818
|
-
imio_smartweb_core-1.4.dist-info/WHEEL,sha256=
|
819
|
-
imio_smartweb_core-1.4.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
820
|
-
imio_smartweb_core-1.4.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
821
|
-
imio_smartweb_core-1.4.dist-info/RECORD,,
|
815
|
+
imio_smartweb_core-1.4.2.dist-info/licenses/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
816
|
+
imio_smartweb_core-1.4.2.dist-info/licenses/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
817
|
+
imio_smartweb_core-1.4.2.dist-info/METADATA,sha256=GvSPJ-ymk1zi1xKfVcd26Qq1o95zl6VdMEqLE1EpJp0,65310
|
818
|
+
imio_smartweb_core-1.4.2.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
819
|
+
imio_smartweb_core-1.4.2.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
820
|
+
imio_smartweb_core-1.4.2.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
821
|
+
imio_smartweb_core-1.4.2.dist-info/RECORD,,
|