imio.smartweb.core 1.3.2__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.
Files changed (36) hide show
  1. imio/smartweb/core/browser/controlpanel.py +25 -1
  2. imio/smartweb/core/contents/rest/base.py +4 -0
  3. imio/smartweb/core/contents/rest/campaign/endpoint.py +18 -1
  4. imio/smartweb/core/tests/test_ideabox.py +5 -3
  5. imio/smartweb/core/tests/test_rest.py +21 -3
  6. imio/smartweb/core/webcomponents/build/css/666.smartweb-webcomponents-compiled.css +1 -1
  7. imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +1 -1
  8. imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +1 -1
  9. imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
  10. imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js +1 -1
  11. imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -1
  12. imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
  13. imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js +1 -1
  14. imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx +3 -2
  15. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +16 -2
  16. imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.jsx +26 -19
  17. imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.scss +161 -0
  18. imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCard.jsx +9 -3
  19. imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx +48 -8
  20. imio/smartweb/core/webcomponents/src/components/Campaign/CampaignList/CampaignList.jsx +1 -0
  21. imio/smartweb/core/webcomponents/src/components/Campaign/Filters/Filter.jsx +12 -80
  22. imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx +15 -1
  23. imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +4 -5
  24. imio/smartweb/core/webcomponents/src/components/News/News.jsx +4 -5
  25. imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +16 -1
  26. imio/smartweb/core/webcomponents/src/hooks/useAxios.js +3 -1
  27. imio/smartweb/core/webcomponents/src/index.scss +13 -3
  28. imio/smartweb/core/webcomponents/src/utils/translation.js +12 -0
  29. {imio.smartweb.core-1.3.2.dist-info → imio.smartweb.core-1.3.4.dist-info}/METADATA +29 -14
  30. {imio.smartweb.core-1.3.2.dist-info → imio.smartweb.core-1.3.4.dist-info}/RECORD +36 -36
  31. {imio.smartweb.core-1.3.2.dist-info → imio.smartweb.core-1.3.4.dist-info}/WHEEL +1 -1
  32. /imio.smartweb.core-1.3.2-py3.12-nspkg.pth → /imio.smartweb.core-1.3.4-py3.8-nspkg.pth +0 -0
  33. {imio.smartweb.core-1.3.2.dist-info → imio.smartweb.core-1.3.4.dist-info}/LICENSE.GPL +0 -0
  34. {imio.smartweb.core-1.3.2.dist-info → imio.smartweb.core-1.3.4.dist-info}/LICENSE.rst +0 -0
  35. {imio.smartweb.core-1.3.2.dist-info → imio.smartweb.core-1.3.4.dist-info}/namespace_packages.txt +0 -0
  36. {imio.smartweb.core-1.3.2.dist-info → imio.smartweb.core-1.3.4.dist-info}/top_level.txt +0 -0
@@ -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 [topicsFilter, setTopicsFilter] = useState(null);
17
- const [zonesFilter, setZonesFilter] = useState(null);
18
- // const [localsCategoryFilter, setLocalsCategoryFilter] = useState([]);
19
- const [dates, setDates] = useState(null);
16
+ const [searchValue, setSearchValue] = useState(null);
17
+ const [topicsFilter, setTopicsFilter] = useState([]);
18
+ const [zonesFilter, setZonesFilter] = useState([]);
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
- setInputValues((state) => ({ ...state, [name]: value }), []);
63
+ setSearchValue(value);
64
+ props.onChangeSearch(value);
79
65
  } else {
80
- setInputValues((prevState) => {
81
- const state = { ...prevState };
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,42 +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
- {/* <label>Recherche</label> */}
183
114
  <div className="relative">
184
115
  <Translator>
185
116
  {({ translate }) => (
@@ -210,7 +141,8 @@ function Filters(props) {
210
141
  </svg>
211
142
  </div>
212
143
  </form>
213
- <div className="react-sep-menu"></div>
144
+
145
+ {/* <div className="react-sep-menu"></div> */}
214
146
  {/* Filtre Thématique */}
215
147
  {/* Filtre Thématique */}
216
148
  <div className="r-filter top-filter topics-Filter">
@@ -121,7 +121,21 @@ const ContactContent = ({ queryUrl, onChange, onlyPastEvents, contextAuthenticat
121
121
  const closeSchedul = () => {
122
122
  setSchedulVisibility(false);
123
123
  };
124
- return (
124
+ return isLoading ? (
125
+ <div className="lds-roller-container">
126
+ <Translate text="Chargement..." />
127
+ <div className="lds-roller">
128
+ <div></div>
129
+ <div></div>
130
+ <div></div>
131
+ <div></div>
132
+ <div></div>
133
+ <div></div>
134
+ <div></div>
135
+ <div></div>
136
+ </div>
137
+ </div>
138
+ ) : (
125
139
  <div className="envent-content r-content">
126
140
  <button type="button" onClick={handleClick}>
127
141
  <Translate text="Retour" />
@@ -52,7 +52,7 @@ function EventsView(props) {
52
52
  queryString.parse(useFilterQuery().toString())
53
53
  );
54
54
  const { scrollPos, updateScrollPos } = useContext(ScrollContext);
55
- const [itemsArray, setItemsArray] = useState([]);
55
+ const [itemsArray, setItemsArray] = useState(null);
56
56
  const [itemsNumber, setItemsNumber] = useState([]);
57
57
  const [clickId, setClickId] = useState(null);
58
58
  const [hoverId, setHoverId] = useState(null);
@@ -164,6 +164,7 @@ function EventsView(props) {
164
164
  }
165
165
  const divLoader = (
166
166
  <div className="lds-roller-container">
167
+ <Translate text="Chargement..." />
167
168
  <div className="lds-roller">
168
169
  <div></div>
169
170
  <div></div>
@@ -231,11 +232,9 @@ function EventsView(props) {
231
232
  )}
232
233
  </p>
233
234
  ) : (
234
- <p className="r-results-numbers">
235
- <Translate text="Aucun résultat" />
236
- </p>
235
+ ""
237
236
  )}
238
- <div>{listRender}</div>
237
+ <div>{itemsArray !== null ? listRender : divLoader}</div>
239
238
  <div className="r-load-more">
240
239
  {itemsNumber - props.batchSize > batchStart ? (
241
240
  <div>
@@ -45,7 +45,7 @@ const NewsView = (props) => {
45
45
  queryString.parse(useFilterQuery().toString())
46
46
  );
47
47
  const { scrollPos, updateScrollPos } = useContext(ScrollContext);
48
- const [itemsArray, setItemsArray] = useState([]);
48
+ const [itemsArray, setItemsArray] = useState(null);
49
49
  const [itemsNumber, setItemsNumber] = useState([]);
50
50
  const [clickId, setClickId] = useState(null);
51
51
  const [filters, setFilters] = useState(parsed);
@@ -125,6 +125,7 @@ const NewsView = (props) => {
125
125
 
126
126
  const divLoader = (
127
127
  <div className="lds-roller-container">
128
+ <Translate text="Chargement..." />
128
129
  <div className="lds-roller">
129
130
  <div></div>
130
131
  <div></div>
@@ -182,11 +183,9 @@ const NewsView = (props) => {
182
183
  )}
183
184
  </p>
184
185
  ) : (
185
- <p className="r-results-numbers">
186
- <Translate text="Aucun résultat" />
187
- </p>
186
+ ""
188
187
  )}
189
- <div>{listRender}</div>
188
+ <div>{itemsArray !== null ? listRender : divLoader}</div>
190
189
  <div className="r-load-more">
191
190
  {itemsNumber - props.batchSize > batchStart ? (
192
191
  <div>
@@ -70,7 +70,22 @@ const ContactContent = ({ queryUrl, onChange, contextAuthenticatedUser }) => {
70
70
  moment.locale("fr");
71
71
  const created = moment(item.created).startOf("minute").fromNow();
72
72
  const lastModified = moment(item.modified).startOf("minute").fromNow();
73
- return (
73
+
74
+ return isLoading ? (
75
+ <div className="lds-roller-container">
76
+ <Translate text="Chargement..." />
77
+ <div className="lds-roller">
78
+ <div></div>
79
+ <div></div>
80
+ <div></div>
81
+ <div></div>
82
+ <div></div>
83
+ <div></div>
84
+ <div></div>
85
+ <div></div>
86
+ </div>
87
+ </div>
88
+ ) : (
74
89
  <div className="new-content r-content">
75
90
  <button type="button" onClick={handleClick}>
76
91
  <Translate text="Retour" />
@@ -19,6 +19,7 @@ const useAxios = (params) => {
19
19
 
20
20
  if (Object.keys(params.params).length === 0) {
21
21
  setResponse(null);
22
+ setIsLoading(false);
22
23
  return;
23
24
  }
24
25
 
@@ -57,10 +58,11 @@ const useAxios = (params) => {
57
58
  const res = await axios.request(params);
58
59
  setResponse(res.data);
59
60
  }
60
- setIsLoading(false);
61
61
  setError(null);
62
62
  } catch (err) {
63
63
  setError(err);
64
+ setResponse(null);
65
+ } finally {
64
66
  setIsLoading(false);
65
67
  }
66
68
  };
@@ -1,3 +1,10 @@
1
+ smartweb-events,
2
+ smartweb-news,
3
+ smartweb-annuaire,
4
+ smartweb-campaign {
5
+ min-height: 80vh;
6
+ display: block;
7
+ }
1
8
  .portaltype-imio-smartweb-directoryview {
2
9
  #portal-header {
3
10
  margin-bottom: 0 !important;
@@ -157,16 +164,19 @@
157
164
  left: 0;
158
165
  right: 0;
159
166
  background: hsla(0, 0%, 100%, 0.82);
167
+ padding-top: 2rem;
168
+ display: flex;
169
+ flex-direction: column;
170
+ justify-content: flex-start;
171
+ align-items: center;
172
+ gap: 20px;
160
173
  }
161
174
 
162
175
  .lds-roller {
163
176
  display: inline-block;
164
- position: absolute;
165
177
  width: 80px;
166
178
  height: 80px;
167
179
  top: 5rem;
168
- left: 50%;
169
- transform: translate(-50%, -50%);
170
180
  z-index: 0;
171
181
  }
172
182
 
@@ -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.2
1
+ Metadata-Version: 2.1
2
2
  Name: imio.smartweb.core
3
- Version: 1.3.2
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,33 @@ 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
+
204
+ 1.3.3 (2025-03-31)
205
+ ------------------
206
+
207
+ - WEB-4236 : Ensure that, in the control panel, the already filled passwords are better "informed"
208
+ [boulch]
209
+
210
+ - Ideabox : Use the correct workflow statuses to display projects
211
+ [boulch]
212
+
213
+ - Prevent unauthorized access: return 403 if request does not originate from the current context
214
+ Prevent some basic stupid and wicked attack
215
+ [boulch]
216
+
217
+ - Ideabox : Add status for vote
218
+ [thomlamb]
219
+
220
+
206
221
  1.3.2 (2025-03-19)
207
222
  ------------------
208
223
 
@@ -1,4 +1,4 @@
1
- imio.smartweb.core-1.3.2-py3.12-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
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
@@ -27,7 +27,7 @@ imio/smartweb/core/behaviors/quickaccess.py,sha256=j18T39KcbiJErpidMM8wH6i4XjEIZ
27
27
  imio/smartweb/core/behaviors/subsite.py,sha256=O2aJHl3Jj9WTpGBmNJaoia-PAtb7aSHpCRanvO1JE8k,1707
28
28
  imio/smartweb/core/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
29
  imio/smartweb/core/browser/configure.zcml,sha256=IYf_nBFGzxOtl-3hxXX0N6g_YIg6S1k2c23OYjEiY2A,4430
30
- imio/smartweb/core/browser/controlpanel.py,sha256=dS4GffJXwC-N809CJZ2I6gohqAujUuRRqxh2Fawtzgk,8180
30
+ imio/smartweb/core/browser/controlpanel.py,sha256=v0f3m2zyRVmV8dhZ9s9rRVmgaa881biphLfM4H-EGUg,9315
31
31
  imio/smartweb/core/browser/forms.py,sha256=_6Z0x7yVeA5JaW4IwpYkX7bTIbw0UskgvtGfNDtMsrI,1091
32
32
  imio/smartweb/core/browser/icons.py,sha256=LFBCYTfynp4qNX2OQuNmMTOUEcJv-oQ8Izu6opE3o7A,2065
33
33
  imio/smartweb/core/browser/layout.py,sha256=wvo_Q2dYg1Yd8wOdYSfPg29NPESy9ndAGl6z3r5kxnY,2066
@@ -212,7 +212,7 @@ imio/smartweb/core/contents/publication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
212
212
  imio/smartweb/core/contents/publication/configure.zcml,sha256=tbotMG82XoUSWSMEI0J9ixYPWcUCDsu4Eh0RlO7PdyA,125
213
213
  imio/smartweb/core/contents/publication/content.py,sha256=lWpNVN6x59xD201uSxykzVcphyDz6Ik7Sh7trYfwOgE,572
214
214
  imio/smartweb/core/contents/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
- imio/smartweb/core/contents/rest/base.py,sha256=BCX_C4irVCv2Givx4vk8gr4mpmfaR2yjTIagdPT8gpc,2638
215
+ imio/smartweb/core/contents/rest/base.py,sha256=cAhTBN-CUHGxbl9Zm9XplkK_q8EgLNUWiPWUpKGrMdA,2851
216
216
  imio/smartweb/core/contents/rest/configure.zcml,sha256=aRhtgdIr4KvqNwF1cMMNwrl2DiSfqEJazRpAQQflnBw,467
217
217
  imio/smartweb/core/contents/rest/traversal.py,sha256=KLNGhUmvTAzaRqSIzT3B28HgMBK4vcNV75AfyIesjN8,540
218
218
  imio/smartweb/core/contents/rest/utils.py,sha256=yZZr3FhgaihJx-H2FdQDUx7lqZuHufff0dvDcz4BsHI,3086
@@ -220,7 +220,7 @@ imio/smartweb/core/contents/rest/view.py,sha256=RlQG2NGojTxQaEySg6Kl1xxDy2KkoC4k
220
220
  imio/smartweb/core/contents/rest/campaign/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
221
221
  imio/smartweb/core/contents/rest/campaign/configure.zcml,sha256=LaZqHBIshYCreTqevApeXioRd8aC9RELcHqJiqg4zCY,2314
222
222
  imio/smartweb/core/contents/rest/campaign/content.py,sha256=OKk4kTB7de7bf_QyuI2EPFlPNMLYcQz-FbG1hgrBwqU,2907
223
- imio/smartweb/core/contents/rest/campaign/endpoint.py,sha256=h-WqcxdhKfrKOHEiXBZ11P_r61ZzzaWeCDBRoY1LtTY,7100
223
+ imio/smartweb/core/contents/rest/campaign/endpoint.py,sha256=ghkQy318R_kd5aK9PMXGYyX_bkg7bEFF01OUpcVMl1Q,7501
224
224
  imio/smartweb/core/contents/rest/campaign/view.pt,sha256=3IXOD2NkgvSUpJOt7m1Nv8O3qwufTrT0ONYSslb1dXA,929
225
225
  imio/smartweb/core/contents/rest/campaign/view.py,sha256=H8aWBQ_FY9Bs7XdD18RqJxY3iYaIbqKOoKJNZddFW7M,749
226
226
  imio/smartweb/core/contents/rest/directory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -434,7 +434,7 @@ imio/smartweb/core/tests/test_herobanner.py,sha256=oCbnS288FcJqbhWDmqdWcAXi4S7qd
434
434
  imio/smartweb/core/tests/test_htmx_in_sections.py,sha256=wMzFdI7V1G6NpYkQY7lD0GSPmNOVSH1p34nlXvpz3kw,5370
435
435
  imio/smartweb/core/tests/test_iadeliberations.py,sha256=72OVlajWI3eVq2CG7bPmxkve6G4M4yveeoFYO9hfr-I,5655
436
436
  imio/smartweb/core/tests/test_icons.py,sha256=d7TPnzTFqa4_vYcsK5tl_PPDAjjmIn_EYrYzE0BRfmU,2788
437
- imio/smartweb/core/tests/test_ideabox.py,sha256=cm7gYn-_CwK16OLneeKx8Rc5Mkyi8GonXF92CjIvpUg,6368
437
+ imio/smartweb/core/tests/test_ideabox.py,sha256=nTVQ6_99QiUNPZquDS1uLfn8iPuzj5F8Gk3HHwfozhU,6425
438
438
  imio/smartweb/core/tests/test_indexes.py,sha256=DtRgpdkZ2PKu8y8OrARY1Gk3JU-siWlkDf98A_ZvzFI,10784
439
439
  imio/smartweb/core/tests/test_instance_behaviors.py,sha256=YMLtXkhxrLlD0nh0wx1-kX2hawQiOGvJqYXh_s53GPI,4274
440
440
  imio/smartweb/core/tests/test_local_roles.py,sha256=RCH3t--G7FTNqGIRgJWypTVo_a-1rPsdK8RG-yrOYhg,4997
@@ -446,7 +446,7 @@ imio/smartweb/core/tests/test_plausibleview.py,sha256=G1ryfnz3TuQBG8VFO5KzEylT5D
446
446
  imio/smartweb/core/tests/test_portal_page.py,sha256=hIqg4eb91o8BsSj7eSKdvoxehzOXt8bzpg1o5ej__zg,7215
447
447
  imio/smartweb/core/tests/test_procedure.py,sha256=1D3H2pOZvQrNXATDN38S8cB58Z4-xL0Y7zTDSrkWbVY,6594
448
448
  imio/smartweb/core/tests/test_redirect_to_main_react_view.py,sha256=3Pa_4BAmyz67onEaHochsubdEqszAMf2j0lkscEY50c,2986
449
- imio/smartweb/core/tests/test_rest.py,sha256=9hQ9LN1PGRiqHkownp0FUaMYN3wJwRoj8D1-uXeAG54,27638
449
+ imio/smartweb/core/tests/test_rest.py,sha256=SP_K2_kwOmHxvK8oSYwGIe8-eNcVOXot_qnEWhh0fic,28208
450
450
  imio/smartweb/core/tests/test_robot.py,sha256=NQ7AkN4tEva3bgGjMxmyqY0zIo4pJPnPOwnD9hmrTVI,926
451
451
  imio/smartweb/core/tests/test_search.py,sha256=VryeRI4_5CvnStKOoNoG95M2WTy7Lyy_AhHIDG40M14,2182
452
452
  imio/smartweb/core/tests/test_section_contact.py,sha256=aJUwOaP9OEpgGKXlQ6xIrP-3gHAeujF0Bnt8xw1llm8,27352
@@ -720,10 +720,10 @@ 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=7QsBnr668bC8DuylEDP0RrHmfCI9-9UtU_m0QoJU2iE,10367
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
- imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=ybiIjh5_tUfEda--wXyl5b4YHmF5vE3IIFIcK-EHBhE,4574
726
+ imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=M8icautg0PsMAmXKrHtVpzfxbu14EYhtawBoD6spwdE,4719
727
727
  imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js,sha256=gBUVapWbeu6EcGSuNcVqWHwqA0OJxaD5UFSKHVtHhpM,186434
728
728
  imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=JAhpUJdE4xo9ZDXUJUlmZe72ZmXGd4cysLmGtIk7gWw,680
729
729
  imio/smartweb/core/webcomponents/build/js/15.smartweb-webcomponents-compiled.js,sha256=NR-ptgmjGjoHT7DB5AIQFjqophO4LHFO0Oo9jvvfFQE,170533
@@ -731,23 +731,23 @@ 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=INkzRbP5gnJRpZBiu4yrD7hmoBMH-5OHLw3K5eFkKBw,63635
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
- imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=GmOLQ7CRF0ZOyGPIVd4_yhHKtMuhzKo1tW6GWHrhZXA,34861
737
- imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js,sha256=1o-0b0n0ZVOHu54j8VRi-TM7DNobXYgRcMwhRrf_rIU,34214
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=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
- imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=pZeeboAFezsr5P1IemStRJzzG-Wduou4jWxLFJwgzzc,40736
743
- imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=l3O08gHn8nIPE9ROSICwMw4hA6cqtX1Hehj_ovVa58U,20065
744
- imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js,sha256=VXyEyYxil1NpdW2G4zcPjrR9bjrVGmuYNrvG630rgok,13775
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=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
748
748
  imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=FYZFcv_VsY7Ef-afd5tLGRLLk9j84PX0P_ciZvbFli0,968
749
749
  imio/smartweb/core/webcomponents/src/index.jsx,sha256=fD5BlphV-ex32Laoxlp0JKN2jN83ZVVwtY6lKqIiSBs,871
750
- imio/smartweb/core/webcomponents/src/index.scss,sha256=0PT1Deggm3VmTOtjoSnuWYhe6Ts_PflB8zP9gwsns_A,5880
750
+ imio/smartweb/core/webcomponents/src/index.scss,sha256=2ZIeSoCmRSWfQXWV0rZshDygzn9S2L0hQXdtwW5WLb4,6061
751
751
  imio/smartweb/core/webcomponents/src/assets/close.svg,sha256=YRqTcPuokfqTclWe7mP06MOMzGAZxQikUO9XMeSwIg8,478
752
752
  imio/smartweb/core/webcomponents/src/assets/img-placeholder-bla.png,sha256=aC1DNJvkOZB5Bg2TWrzBSyg-RgzF9PRaRRx2mI6kChg,9538
753
753
  imio/smartweb/core/webcomponents/src/assets/location-active-bla.svg,sha256=4I_3G_3oLBPGayxnuutFmbHb9v5lwG9XWQoT1htvbTM,369
@@ -758,25 +758,25 @@ imio/smartweb/core/webcomponents/src/assets/pin-react-active.svg,sha256=XgE72Zg2
758
758
  imio/smartweb/core/webcomponents/src/assets/pin-react.svg,sha256=kXxN_F5nCL1SUuSvO7dsVz2BCk6lyembEe0ZcDUjEUQ,336
759
759
  imio/smartweb/core/webcomponents/src/assets/pin.svg,sha256=-6a-6Jyc3EJteH1X5eFtPUCCz4FQeWKkVhMKHDhmbzI,890
760
760
  imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
761
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=26OQ4Ejh7ozOfvuC3XmvzVHeOR81EeMp1rwPhsRWvTM,11456
761
+ imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=DcansNKQhkXIIH9RVPUefYyQkTBm-EsZyRFEF0uUKjg,11541
762
762
  imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=99jOFI8Nv3iIrijtz3DkxUv80SgCwEHkoyharipUd_4,12433
763
763
  imio/smartweb/core/webcomponents/src/components/Annuaire/index.js,sha256=A26LlWeszwIzqu15SiEZ_mcb4NSaChAbT7d4GWEyVlY,96
764
764
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=yBbE4fl6Q-DvGLIN1er7izF507SpYHB5_SCkXPHVYYY,6647
765
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=PlRdrd_wapcZSsbwmR8wChCWOKwO_J99GIG2F37vK_Q,38783
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=mWLkqowIdT3rI7ZHmLqYMXX440QDmth5iY4FGEo52IY,12559
769
- imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.scss,sha256=8xETcHQeaFDZ9EqR2rQcvKvTa9E_gm5yZgj3mrxCW-I,14961
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=_D0NmTESIt0fFY6ysLvvB2kiosD_EO4_Wimi4wotgEI,3007
772
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx,sha256=y3coVfaQPsIIIYYA6zI_ApWWwMZHfbpZ2F6dQjqGJ1I,7667
773
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignList/CampaignList.jsx,sha256=BRhGkvmMNPEmXuBWi6BGt1BBIXsmMc5PY419nMxzs9U,2430
774
- imio/smartweb/core/webcomponents/src/components/Campaign/Filters/Filter.jsx,sha256=mBG_OOkPmf_-X-Fo95LjCD4wGMVEPL_rQj_AKpi9rmE,10381
775
- imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=L3bThj_F-dmhSSyqtC3VHbggVM-bSY-gmVZmyRzAtgg,12271
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
+ 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=g2sPYM3opHXKz7FpGZRvUbMJ8cTR2OJEyLKH-rIYbX8,7677
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
778
778
  imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=CYb-6E5sfgIXFNc2-2dpajBsBggITh-pxqEkiPiJw0M,3586
779
- imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=DalaaRT7dn9bIrrYqYTxFNXzSFGfiTL3A5xq25lSWl0,37006
779
+ imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=ncZoNCmOndEWAnvxLYIVLezQ30zaWJlKshwTmfM8u9w,37421
780
780
  imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=IE3u7O46ZF-wA0pu5WFT-lW84-l993mZVHei6JUmuBc,2414
781
781
  imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=Onfa6fL2f1vTt4sAsYNNWA1uHgMR7an10b3IaMpRL1k,15951
782
782
  imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=XKiN7Y8CFz48IluCEmyqTpSbBa6hvF4BjPcAZYKqKaQ,5949
@@ -787,12 +787,12 @@ imio/smartweb/core/webcomponents/src/components/Filters/PublicTargetData.jsx,sha
787
787
  imio/smartweb/core/webcomponents/src/components/Filters/SelectStyles.js,sha256=lXSYovMyRUC9TjLDEn03_rcXJhAB2sTqBdc0E7hadJE,1288
788
788
  imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.jsx,sha256=EznTS_9zVa9kzZ_XqFtKbJh5swZgnfkZfT9AnRfpEy4,5649
789
789
  imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.scss,sha256=fOA6Znq6BAl2spfGXefHwE3F0BPbL51RuQbPUC_HII4,1415
790
- imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=_-Wb2Sa-8WEdtJe_HR6Ew0GPveM-2PgPKpaKFk5WHto,10056
790
+ imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=AMCXzuSk2Vuwan3yQtpDaNL9Z7CJkQBFUYqwWqoNISY,9982
791
791
  imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=X1qIeoDjtWre2kj7jitnXDKzMpByV1x6PB6bgSAIuaQ,5187
792
792
  imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
793
793
  imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx,sha256=_jPvqsdg6QHNBkC7erySX-s5sgBh35X8B3P2LgxcsBw,9598
794
794
  imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx,sha256=sYJbhbW2FgV79xpXaFKM3NuKY08NkFZhMOMVPOLesB4,3941
795
- imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=BBL12LASGmtWXjIudDuFEAyRXcgX2Xdn63JhSShjM88,20105
795
+ imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=KSFEW9PkxhimHhmAzyMNEfg4eAs6meQ1IBnQak0AQCM,20521
796
796
  imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=aDgfW-TXeahzRMoubSNCR0mmKrzG2MJraJc2fKwO2SQ,3703
797
797
  imio/smartweb/core/webcomponents/src/components/Search/Search.jsx,sha256=QkS6KsNSbTUzZbZ_PKdfxh-K2hnPzLO5K6OnB_Q--U4,4843
798
798
  imio/smartweb/core/webcomponents/src/components/Search/Search.scss,sha256=um_151JG3WDC_oe3U_amWrUqUgFFS0fNRd5uDNxQZos,3726
@@ -803,17 +803,17 @@ imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx,sha256
803
803
  imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx,sha256=NW9CnEhRMI1jCRlzsYJ17zfMuMZpz9pN7EM3uiXY8WQ,2893
804
804
  imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx,sha256=SlZZ1fN0Bg6swT9C03-4t0zSEPciBoVAPsbQVH5dgbI,2230
805
805
  imio/smartweb/core/webcomponents/src/hooks/ScrollContext.jsx,sha256=s9bnwrWBvP3hKyNV99kGpKKmSP85Zd5G3Eh8uhkXBas,85
806
- imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=oeKZGIJ8g_ELRM7jze6PUzAbVy4eu0FvQlszt5kjnjk,2394
806
+ imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=Q0OufeKiUrmDifUip29CykzeTNcQAUKiUdViJBmG3Dw,2445
807
807
  imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js,sha256=3OhVCCDmzRQCxs-x14UhwiCaqn2aqpwxL4sypt1nlEo,165
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=t10nXoXPYRXKbPo8Esu0bjLzPPbxk7PRIUIERMapIiI,10250
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.2.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
814
- imio.smartweb.core-1.3.2.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
815
- imio.smartweb.core-1.3.2.dist-info/METADATA,sha256=g9-rgg46GSFqYaskgLLAwW5vIZ711p0ivhrlP1jYo2w,62265
816
- imio.smartweb.core-1.3.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
817
- imio.smartweb.core-1.3.2.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
818
- imio.smartweb.core-1.3.2.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
819
- imio.smartweb.core-1.3.2.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (74.1.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5