imio.smartweb.core 1.3.3__py3-none-any.whl → 1.3.4__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/webcomponents/build/css/666.smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/666.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/src/components/Campaign/Campaign.jsx +24 -4
- imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.scss +44 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCard.jsx +1 -1
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx +31 -6
- imio/smartweb/core/webcomponents/src/components/Campaign/Filters/Filter.jsx +10 -78
- imio/smartweb/core/webcomponents/src/utils/translation.js +12 -0
- {imio.smartweb.core-1.3.3.dist-info → imio.smartweb.core-1.3.4.dist-info}/METADATA +12 -14
- {imio.smartweb.core-1.3.3.dist-info → imio.smartweb.core-1.3.4.dist-info}/RECORD +19 -19
- {imio.smartweb.core-1.3.3.dist-info → imio.smartweb.core-1.3.4.dist-info}/WHEEL +1 -1
- /imio.smartweb.core-1.3.3-py3.12-nspkg.pth → /imio.smartweb.core-1.3.4-py3.8-nspkg.pth +0 -0
- {imio.smartweb.core-1.3.3.dist-info → imio.smartweb.core-1.3.4.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.3.3.dist-info → imio.smartweb.core-1.3.4.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.3.3.dist-info → imio.smartweb.core-1.3.4.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.3.3.dist-info → imio.smartweb.core-1.3.4.dist-info}/top_level.txt +0 -0
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx
CHANGED
@@ -18,7 +18,7 @@ export default function CampaignContent({ queryUrl, onChange }) {
|
|
18
18
|
const [voteContext, setVoteContext] = useState("");
|
19
19
|
const [urlVotePour, setUrlVotePour] = useState(null);
|
20
20
|
const [urlVoteContre, setUrlVoteContre] = useState(null);
|
21
|
-
|
21
|
+
const [urlComment, setUrlComment] = useState(null);
|
22
22
|
const [files, setFiles] = useState();
|
23
23
|
const { response, error, isLoading } = useAxios(
|
24
24
|
{
|
@@ -36,6 +36,8 @@ export default function CampaignContent({ queryUrl, onChange }) {
|
|
36
36
|
// set all contacts state
|
37
37
|
useEffect(() => {
|
38
38
|
if (response !== null) {
|
39
|
+
console.log(response && response);
|
40
|
+
|
39
41
|
const status = response.workflow.fields.statut;
|
40
42
|
if (status === "Publié sans vote" || status === "Publié") {
|
41
43
|
setVoteContext("vote_nodisplay");
|
@@ -49,7 +51,8 @@ export default function CampaignContent({ queryUrl, onChange }) {
|
|
49
51
|
const baseUrl = `${parsedUrl.protocol}//${parsedUrl.hostname}`;
|
50
52
|
const fullUrlPour = `${baseUrl}/ideabox-voter-pour-un-projet/?projet=${response.id}`;
|
51
53
|
const fullUrlContre = `${baseUrl}/ideabox-voter-contre-un-projet/?projet=${response.id}`;
|
52
|
-
|
54
|
+
const urlComment = `${baseUrl}/ideabox-commenter-un-projet/`;
|
55
|
+
setUrlComment(urlComment);
|
53
56
|
setUrlVotePour(fullUrlPour);
|
54
57
|
setUrlVoteContre(fullUrlContre);
|
55
58
|
}
|
@@ -75,6 +78,7 @@ export default function CampaignContent({ queryUrl, onChange }) {
|
|
75
78
|
urlVotePour={urlVotePour}
|
76
79
|
urlVoteContre={urlVoteContre}
|
77
80
|
voteContext={voteContext}
|
81
|
+
urlComment={urlComment}
|
78
82
|
/>
|
79
83
|
</div>
|
80
84
|
) : (
|
@@ -94,7 +98,7 @@ export default function CampaignContent({ queryUrl, onChange }) {
|
|
94
98
|
);
|
95
99
|
}
|
96
100
|
|
97
|
-
function ContentText({ item, urlVotePour, urlVoteContre, voteContext }) {
|
101
|
+
function ContentText({ item, urlVotePour, urlVoteContre, urlComment, voteContext }) {
|
98
102
|
const [image, setImage] = useState(new Image());
|
99
103
|
const [imageClassName, setImageClassName] = useState("");
|
100
104
|
|
@@ -117,6 +121,7 @@ function ContentText({ item, urlVotePour, urlVoteContre, voteContext }) {
|
|
117
121
|
};
|
118
122
|
}
|
119
123
|
}, [item]);
|
124
|
+
|
120
125
|
return (
|
121
126
|
<>
|
122
127
|
<article>
|
@@ -159,7 +164,7 @@ function ContentText({ item, urlVotePour, urlVoteContre, voteContext }) {
|
|
159
164
|
</article>
|
160
165
|
<div className="contactCard">
|
161
166
|
<div className="contactText">
|
162
|
-
<div className="r-content-
|
167
|
+
<div className="r-content-text">
|
163
168
|
{item.description && (
|
164
169
|
<div
|
165
170
|
className="campaign-description"
|
@@ -169,8 +174,28 @@ function ContentText({ item, urlVotePour, urlVoteContre, voteContext }) {
|
|
169
174
|
/>
|
170
175
|
)}
|
171
176
|
</div>
|
172
|
-
|
173
|
-
|
177
|
+
{item.commentaires && (
|
178
|
+
<div className="campaign-comment-container">
|
179
|
+
<p className="campaign-comment-title">
|
180
|
+
<Translate text="Commentaires" />:
|
181
|
+
</p>
|
182
|
+
<div
|
183
|
+
className="campaign-comment"
|
184
|
+
dangerouslySetInnerHTML={{
|
185
|
+
__html: item.commentaires,
|
186
|
+
}}
|
187
|
+
/>
|
188
|
+
<div className="campaign-comment-actions">
|
189
|
+
<a
|
190
|
+
href={urlComment}
|
191
|
+
target="_blank"
|
192
|
+
className="campaign-comment-action-button"
|
193
|
+
>
|
194
|
+
<Translate text="Ajouter un commentaire" />
|
195
|
+
</a>
|
196
|
+
</div>
|
197
|
+
</div>
|
198
|
+
)}
|
174
199
|
</div>
|
175
200
|
{/* add files to download */}
|
176
201
|
{/* {files && (
|
@@ -13,10 +13,9 @@ import { menuStyles, moreFilterStyles } from "./../../Filters/SelectStyles";
|
|
13
13
|
function Filters(props) {
|
14
14
|
let navigate = useNavigate();
|
15
15
|
const [inputValues, setInputValues] = useState(props.activeFilter);
|
16
|
+
const [searchValue, setSearchValue] = useState(null);
|
16
17
|
const [topicsFilter, setTopicsFilter] = useState([]);
|
17
18
|
const [zonesFilter, setZonesFilter] = useState([]);
|
18
|
-
// const [localsCategoryFilter, setLocalsCategoryFilter] = useState([]);
|
19
|
-
const [dates, setDates] = useState(null);
|
20
19
|
// Get data
|
21
20
|
const { response, error, isLoading } = useAxios({
|
22
21
|
method: "get",
|
@@ -56,34 +55,19 @@ function Filters(props) {
|
|
56
55
|
}));
|
57
56
|
setTopicsFilter(optionsTopics);
|
58
57
|
setZonesFilter(optionsZones);
|
59
|
-
|
60
|
-
// setLocalsCategoryFilter(optionsLocalsCategory);
|
61
58
|
}
|
62
59
|
}, [response]);
|
63
60
|
|
64
|
-
// const to group category and local category
|
65
|
-
// const groupedOptions = [
|
66
|
-
// {
|
67
|
-
// label: <Translate text="Catégories spécifiques" />,
|
68
|
-
// options: localsCategoryFilter,
|
69
|
-
// },
|
70
|
-
// {
|
71
|
-
// label: <Translate text="Catégories" />,
|
72
|
-
// options: categoryFilter,
|
73
|
-
// },
|
74
|
-
// ];
|
75
|
-
|
76
61
|
const onChangeHandler = useCallback(({ target: { name, value } }) => {
|
77
62
|
if (value.length > 2) {
|
78
|
-
|
63
|
+
setSearchValue(value);
|
64
|
+
props.onChangeSearch(value);
|
79
65
|
} else {
|
80
|
-
|
81
|
-
|
82
|
-
const { [name]: remove, ...rest } = state;
|
83
|
-
return rest;
|
84
|
-
});
|
66
|
+
setSearchValue(null);
|
67
|
+
props.onChangeSearch(null);
|
85
68
|
}
|
86
69
|
});
|
70
|
+
|
87
71
|
const onChangeHandlerSelect = useCallback((value, action) => {
|
88
72
|
const inputName = action.name;
|
89
73
|
if (value) {
|
@@ -96,29 +80,6 @@ function Filters(props) {
|
|
96
80
|
});
|
97
81
|
}
|
98
82
|
});
|
99
|
-
// const onChangeCheckbox = useCallback((value, action) => {
|
100
|
-
// if (value.target.checked) {
|
101
|
-
// setInputValues((state) => ({ ...state, free_entry: true }), []);
|
102
|
-
// } else {
|
103
|
-
// setInputValues((state) => {
|
104
|
-
// const newState = { ...state };
|
105
|
-
// delete newState["free_entry"];
|
106
|
-
// return newState;
|
107
|
-
// }, []);
|
108
|
-
// }
|
109
|
-
// });
|
110
|
-
|
111
|
-
const onChangeGroupSelect = useCallback((value, action) => {
|
112
|
-
if (value) {
|
113
|
-
setInputValues((state) => ({ ...state, [value.queryString]: value.value }), []);
|
114
|
-
} else {
|
115
|
-
setInputValues((prevState) => {
|
116
|
-
const state = { ...prevState };
|
117
|
-
const { [action.removedValues[0].queryString]: remove, ...rest } = state;
|
118
|
-
return rest;
|
119
|
-
});
|
120
|
-
}
|
121
|
-
});
|
122
83
|
|
123
84
|
// make to no launch useEffect first time
|
124
85
|
const firstUpdate = useRef(true);
|
@@ -132,11 +93,12 @@ function Filters(props) {
|
|
132
93
|
search: queryString.stringify(inputValues),
|
133
94
|
});
|
134
95
|
props.onChange(inputValues);
|
135
|
-
}, [inputValues]);
|
96
|
+
}, [inputValues, searchValue]);
|
136
97
|
|
137
98
|
function handleSubmit(e) {
|
138
99
|
e.preventDefault();
|
139
100
|
props.onChange(inputValues);
|
101
|
+
props.onChangeSearch(searchValue);
|
140
102
|
}
|
141
103
|
// set default input value
|
142
104
|
let actTopi =
|
@@ -144,41 +106,11 @@ function Filters(props) {
|
|
144
106
|
|
145
107
|
let actZones =
|
146
108
|
zonesFilter && zonesFilter.filter((option) => option.value === props.activeFilter.zones);
|
147
|
-
// let actCategory =
|
148
|
-
// categoryFilter &&
|
149
|
-
// categoryFilter.filter((option) => option.value === props.activeFilter.category);
|
150
|
-
|
151
|
-
// let actTarget =
|
152
|
-
// taxonomy_event_public &&
|
153
|
-
// taxonomy_event_public.filter((option) => option.value === props.activeFilter.topics);
|
154
|
-
|
155
|
-
// let actIam = iam && iam.filter((option) => option.value === props.activeFilter.topics);
|
156
|
-
|
157
|
-
useEffect(() => {
|
158
|
-
if (dates) {
|
159
|
-
setInputValues((prevState) => {
|
160
|
-
if (dates["event_dates.query"].length > 1) {
|
161
|
-
const { "event_dates.range": _, ...rest } = dates;
|
162
|
-
const newValue = "min:max";
|
163
|
-
return { ...prevState, ...rest, "event_dates.range": newValue };
|
164
|
-
} else if (dates["event_dates.query"].every((item) => item === null)) {
|
165
|
-
return {
|
166
|
-
...prevState,
|
167
|
-
"event_dates.query": [moment().format("YYYY-MM-DD")],
|
168
|
-
"event_dates.range": "min",
|
169
|
-
};
|
170
|
-
} else {
|
171
|
-
return { ...prevState, ...dates, "event_dates.range": "min" };
|
172
|
-
}
|
173
|
-
});
|
174
|
-
}
|
175
|
-
}, [dates]);
|
176
|
-
|
177
109
|
return (
|
178
110
|
<React.Fragment>
|
179
111
|
<div className="react-filters-menu">
|
180
112
|
<div className="react-filters-container">
|
181
|
-
|
113
|
+
<form className="r-filter r-filter-search" onSubmit={handleSubmit}>
|
182
114
|
<div className="relative">
|
183
115
|
<Translator>
|
184
116
|
{({ translate }) => (
|
@@ -208,7 +140,7 @@ function Filters(props) {
|
|
208
140
|
<path d="M13 24a11 11 0 1 0 0-22 11 11 0 0 0 0 22zm8-3 9 9" />
|
209
141
|
</svg>
|
210
142
|
</div>
|
211
|
-
</form>
|
143
|
+
</form>
|
212
144
|
|
213
145
|
{/* <div className="react-sep-menu"></div> */}
|
214
146
|
{/* Filtre Thématique */}
|
@@ -426,4 +426,16 @@ export default {
|
|
426
426
|
de: "Nach Thema filtern",
|
427
427
|
nl: "Filteren op thema",
|
428
428
|
},
|
429
|
+
Commentaires: {
|
430
|
+
en: "Comments",
|
431
|
+
fr: "Commentaires",
|
432
|
+
de: "Kommentare",
|
433
|
+
nl: "Reacties",
|
434
|
+
},
|
435
|
+
"Ajouter un commentaire": {
|
436
|
+
en: "Add a comment",
|
437
|
+
fr: "Ajouter un commentaire",
|
438
|
+
de: "Kommentar hinzufügen",
|
439
|
+
nl: "Reactie toevoegen",
|
440
|
+
},
|
429
441
|
};
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.1
|
2
2
|
Name: imio.smartweb.core
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.4
|
4
4
|
Summary: Core product for iMio websites
|
5
5
|
Home-page: https://github.com/imio/imio.smartweb.core
|
6
6
|
Author: Christophe Boulanger
|
@@ -57,18 +57,6 @@ Requires-Dist: plone.restapi[test]; extra == "test"
|
|
57
57
|
Requires-Dist: requests-mock; extra == "test"
|
58
58
|
Requires-Dist: beautifulsoup4; extra == "test"
|
59
59
|
Requires-Dist: freezegun; extra == "test"
|
60
|
-
Dynamic: author
|
61
|
-
Dynamic: author-email
|
62
|
-
Dynamic: classifier
|
63
|
-
Dynamic: description
|
64
|
-
Dynamic: home-page
|
65
|
-
Dynamic: keywords
|
66
|
-
Dynamic: license
|
67
|
-
Dynamic: project-url
|
68
|
-
Dynamic: provides-extra
|
69
|
-
Dynamic: requires-dist
|
70
|
-
Dynamic: requires-python
|
71
|
-
Dynamic: summary
|
72
60
|
|
73
61
|
.. This README is meant for consumption by humans and pypi. Pypi can render rst files so please do not use Sphinx features.
|
74
62
|
If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html
|
@@ -203,6 +191,16 @@ Changelog
|
|
203
191
|
=========
|
204
192
|
|
205
193
|
|
194
|
+
1.3.4 (2025-04-02)
|
195
|
+
------------------
|
196
|
+
|
197
|
+
- Ideabox : Add search filter in campaign view
|
198
|
+
[thomlamb]
|
199
|
+
|
200
|
+
- Ideabox : Add comment in campaign view
|
201
|
+
[thomlamb]
|
202
|
+
|
203
|
+
|
206
204
|
1.3.3 (2025-03-31)
|
207
205
|
------------------
|
208
206
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
imio.smartweb.core-1.3.
|
1
|
+
imio.smartweb.core-1.3.4-py3.8-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=sCJwomh6ve6OPSDexKNacz2PUkqzI5EVn8SEMZo4Sfw,1630
|
@@ -720,7 +720,7 @@ imio/smartweb/core/webcomponents/build/assets/pin-react.fda934b5daf26dd4da2a71a7
|
|
720
720
|
imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css,sha256=wWiRww8nYFkWCz8ArFPrhUIegyMD4KNeQGGM2udov08,8426
|
721
721
|
imio/smartweb/core/webcomponents/build/css/420.smartweb-webcomponents-compiled.css,sha256=3Q92R9fWkaxgUWZBpVP1GxVu5NoyQ0l0y_vjjfJgcO8,15928
|
722
722
|
imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css,sha256=fliDxV7ndq55M6cIWIXkHFB5zHmzhRKqkogFqE2C_Xw,8343
|
723
|
-
imio/smartweb/core/webcomponents/build/css/666.smartweb-webcomponents-compiled.css,sha256=
|
723
|
+
imio/smartweb/core/webcomponents/build/css/666.smartweb-webcomponents-compiled.css,sha256=V-JEaePwzO7waXcqPZslWJ2eSOzgEQGldZhtlSXD3aA,11460
|
724
724
|
imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css,sha256=4n9XOBYCX6jw5F9xjmj1C4G4gPdR8wUtlklIYLW45qo,32373
|
725
725
|
imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css,sha256=zRQhgF9klDIGadELi-8rqHrKbHYgLO8Bq4skgUjAXBA,2861
|
726
726
|
imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=M8icautg0PsMAmXKrHtVpzfxbu14EYhtawBoD6spwdE,4719
|
@@ -731,17 +731,17 @@ imio/smartweb/core/webcomponents/build/js/15.smartweb-webcomponents-compiled.js.
|
|
731
731
|
imio/smartweb/core/webcomponents/build/js/21.smartweb-webcomponents-compiled.js,sha256=5wkEG6IXjdM5rynHf5mXcNAJUGmVqCDHtlwbYmzRCWA,26529
|
732
732
|
imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js,sha256=XXPUkcyJv5ZYUI4A0_egiUji1e9xZfBa_WSb3FF2OAQ,435795
|
733
733
|
imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=QAeU4Rw9Rrv8hnkJvvMeGdkO2ZE20WLcwCpju_UuPQ0,238
|
734
|
-
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=B03VEQIf5-peYZ3aIPo4HwSjhvfIfcjlCdGtpf1Z7XM,64198
|
735
735
|
imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=srGNtnoNHz0w5OlaCDZLtTP8yBsDypbLTNk4qjsLvTU,317
|
736
736
|
imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=mA2ASTIlSg0T8xOqrOPxhHSu9_4HZLOfC3xscQfhi2M,35316
|
737
|
-
imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js,sha256=
|
737
|
+
imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js,sha256=hfF86KGTMNwClYJaUf_E6I4ZOF4b5KXiE293Fd3Ksls,34820
|
738
738
|
imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js,sha256=QMD0dRW14xDwbGZu7ItIUo5UrDxm6_f-mXjEe_BQT-A,17400
|
739
739
|
imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=R14i0Dp6JC2AOtJVaegrZVAe22i9niDnCBKa5vn7QVc,59
|
740
740
|
imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js,sha256=SDOFrHK3AuLHcrpSvRqHWmxr4AYuf5XtmIarPNh-gck,156597
|
741
741
|
imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
|
742
742
|
imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=6iAsKY0Kwa083aRhg0682E4gMWm50rfS2DIbriiiHf8,41074
|
743
|
-
imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=
|
744
|
-
imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js,sha256=
|
743
|
+
imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=x0ZlINRcfaba6Kcxz16tXBhRjVtoehUyGdVn4ZpxCac,20290
|
744
|
+
imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js,sha256=LDPAe2l7jOqiO1bz_i5hEPlu-JEGErDEwJ9CCsBMUtg,14000
|
745
745
|
imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js,sha256=YLKWqrbFtX1Q2I0gtWEbu7HTVAXe6kbOCWw6CeW8r7Y,299300
|
746
746
|
imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=A-v1lwmuIX1DpNJ1MDzKDMWv7f_d6cjHlGOCEvthhdY,50
|
747
747
|
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=9bq1vf3-tf3dgaluiPlDLB7ZZNKRetaLwQEzjZjKJ5s,422222
|
@@ -765,13 +765,13 @@ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard
|
|
765
765
|
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=g8PP7oH_DZhq5qHJzkV4T3XLRPdR_gP-Yv5SBdUgwiE,39216
|
766
766
|
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=_UbuWGN_Goao7BXlW19rIuvoj_2X7JkXBN8KXqOvbS8,2309
|
767
767
|
imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=yg7k4KgIOprikaOImjO-Mh7r83tbw0rgkc3YprQ72_4,13423
|
768
|
-
imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.jsx,sha256=
|
769
|
-
imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.scss,sha256=
|
768
|
+
imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.jsx,sha256=zdvglAzKe7-FCDsn4VRXbhq6fc_m1zL25uY4XFPlq0U,12583
|
769
|
+
imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.scss,sha256=UyJ7DXOY2h7sBWEVbMHJaxmsgnU1HI49CIWH-KmPAzs,18352
|
770
770
|
imio/smartweb/core/webcomponents/src/components/Campaign/index.js,sha256=QSsDk_SfGrFNtfNvm4tpstUxzU7-t8664a_oRHTGYq0,97
|
771
|
-
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCard.jsx,sha256=
|
772
|
-
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx,sha256=
|
771
|
+
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCard.jsx,sha256=0ZbEL8HYY3Scd0l9fSTXQDQTwAQG6zGdZzULWFUxrLw,3311
|
772
|
+
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx,sha256=OS1ggBI82KEBtoAGXV-f_iO6V5ccqrbgbyIg2Euf8V8,9588
|
773
773
|
imio/smartweb/core/webcomponents/src/components/Campaign/CampaignList/CampaignList.jsx,sha256=ElkwDuGLN_olGbPZ7gm0OxfzOeMNCPvq2ROKy38WNZg,2500
|
774
|
-
imio/smartweb/core/webcomponents/src/components/Campaign/Filters/Filter.jsx,sha256=
|
774
|
+
imio/smartweb/core/webcomponents/src/components/Campaign/Filters/Filter.jsx,sha256=g2sPYM3opHXKz7FpGZRvUbMJ8cTR2OJEyLKH-rIYbX8,7677
|
775
775
|
imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=uu9UBq07xUCKegP29JL8Ytu1Lituct8KNZ-WVTON8sc,12205
|
776
776
|
imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=FnRLuNcwtp9ngCKGsi_P18xhPmGNHQ_kMoWr4V5mZHE,12705
|
777
777
|
imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
|
@@ -808,12 +808,12 @@ imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js,sha256=3OhVCCDmzRQC
|
|
808
808
|
imio/smartweb/core/webcomponents/src/utils/CampaignMap.jsx,sha256=q4mayOIbAz29LwMWcbi9a-mrSO1_ELP6lYH8ZfrQ_xs,6024
|
809
809
|
imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=EpmA8-iqHIkWrjgjR9JKvZp1J6YRz__VcHzOII7puDQ,5284
|
810
810
|
imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=DVQ6sUQOKFvLhbcamY6EmSrfWYq61gqaQUZ_YM1Le0Q,343
|
811
|
-
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=
|
811
|
+
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=C9Zl506jbPx1GJa_1FeYhvo_7zpJJnWp4QjBA-rSkYY,10555
|
812
812
|
imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
|
813
|
-
imio.smartweb.core-1.3.
|
814
|
-
imio.smartweb.core-1.3.
|
815
|
-
imio.smartweb.core-1.3.
|
816
|
-
imio.smartweb.core-1.3.
|
817
|
-
imio.smartweb.core-1.3.
|
818
|
-
imio.smartweb.core-1.3.
|
819
|
-
imio.smartweb.core-1.3.
|
813
|
+
imio.smartweb.core-1.3.4.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
814
|
+
imio.smartweb.core-1.3.4.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
815
|
+
imio.smartweb.core-1.3.4.dist-info/METADATA,sha256=mW-ipP31ffH8lqgDhyojo1-xcPI4nTD04SXD283ybzI,62609
|
816
|
+
imio.smartweb.core-1.3.4.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
817
|
+
imio.smartweb.core-1.3.4.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
818
|
+
imio.smartweb.core-1.3.4.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
819
|
+
imio.smartweb.core-1.3.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
{imio.smartweb.core-1.3.3.dist-info → imio.smartweb.core-1.3.4.dist-info}/namespace_packages.txt
RENAMED
File without changes
|
File without changes
|