imio.smartweb.core 1.2.25__py3-none-any.whl → 1.2.27__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 (29) hide show
  1. imio/smartweb/core/contents/sections/common_templates/carousel.pt +1 -1
  2. imio/smartweb/core/contents/sections/common_templates/table.pt +1 -1
  3. imio/smartweb/core/contents/sections/views.py +18 -0
  4. imio/smartweb/core/webcomponents/build/css/{25.smartweb-webcomponents-compiled.css → 392.smartweb-webcomponents-compiled.css} +1 -1
  5. imio/smartweb/core/webcomponents/build/js/392.smartweb-webcomponents-compiled.js +1 -0
  6. imio/smartweb/core/webcomponents/build/js/{363.smartweb-webcomponents-compiled.js → 528.smartweb-webcomponents-compiled.js} +2 -2
  7. imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js +1 -2
  8. imio/smartweb/core/webcomponents/build/js/729.smartweb-webcomponents-compiled.js +2 -0
  9. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
  10. imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +1 -1
  11. imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx +7 -2
  12. imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx +54 -47
  13. imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss +53 -0
  14. imio/smartweb/core/webcomponents/src/hooks/useAxios.js +0 -3
  15. imio/smartweb/core/webcomponents/src/utils/translation.js +85 -15
  16. {imio.smartweb.core-1.2.25.dist-info → imio.smartweb.core-1.2.27.dist-info}/METADATA +23 -3
  17. {imio.smartweb.core-1.2.25.dist-info → imio.smartweb.core-1.2.27.dist-info}/RECORD +26 -26
  18. {imio.smartweb.core-1.2.25.dist-info → imio.smartweb.core-1.2.27.dist-info}/WHEEL +1 -1
  19. imio/smartweb/core/webcomponents/build/js/25.smartweb-webcomponents-compiled.js +0 -1
  20. imio/smartweb/core/webcomponents/build/js/3.smartweb-webcomponents-compiled.js +0 -2
  21. imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -1
  22. /imio/smartweb/core/webcomponents/build/css/{363.smartweb-webcomponents-compiled.css → 528.smartweb-webcomponents-compiled.css} +0 -0
  23. /imio/smartweb/core/webcomponents/build/js/{3.smartweb-webcomponents-compiled.js.LICENSE.txt → 528.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  24. /imio/smartweb/core/webcomponents/build/js/{363.smartweb-webcomponents-compiled.js.LICENSE.txt → 729.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  25. /imio.smartweb.core-1.2.25-py3.10-nspkg.pth → /imio.smartweb.core-1.2.27-py3.8-nspkg.pth +0 -0
  26. {imio.smartweb.core-1.2.25.dist-info → imio.smartweb.core-1.2.27.dist-info}/LICENSE.GPL +0 -0
  27. {imio.smartweb.core-1.2.25.dist-info → imio.smartweb.core-1.2.27.dist-info}/LICENSE.rst +0 -0
  28. {imio.smartweb.core-1.2.25.dist-info → imio.smartweb.core-1.2.27.dist-info}/namespace_packages.txt +0 -0
  29. {imio.smartweb.core-1.2.25.dist-info → imio.smartweb.core-1.2.27.dist-info}/top_level.txt +0 -0
@@ -48,6 +48,7 @@ function EventsView(props) {
48
48
  Accept: "application/json",
49
49
  },
50
50
  params: filters,
51
+ paramsSerializer: { indexes: null },
51
52
  load: loadMoreLaunch,
52
53
  },
53
54
  []
@@ -132,7 +133,6 @@ function EventsView(props) {
132
133
  }
133
134
 
134
135
  const divLoader = <div className="lds-roller-container"><div className="lds-roller"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div></div>;
135
-
136
136
  return (
137
137
  <div className={`ref ${displayMap ? "view-map" : "no-map"}`}>
138
138
  <div
@@ -25,6 +25,7 @@ function Filters(props) {
25
25
  Accept: "application/json",
26
26
  },
27
27
  params: inputValues,
28
+ paramsSerializer: { indexes: null }
28
29
  });
29
30
 
30
31
  useEffect(() => {
@@ -122,11 +123,15 @@ function Filters(props) {
122
123
  const { "event_dates.range": _, ...rest } = dates;
123
124
  const newValue = "min:max";
124
125
  return { ...prevState, ...rest, "event_dates.range": newValue };
125
- } else {
126
- return { ...prevState, ...dates };
126
+ }else if(dates["event_dates.query"].every(item => item === null)){
127
+ return { ...prevState,"event_dates.query": [moment().format('YYYY-MM-DD')],"event_dates.range":"min"}
128
+ }
129
+ else {
130
+ return { ...prevState, ...dates, "event_dates.range": "min" };
127
131
  }
128
132
  });
129
133
  }, [dates]);
134
+
130
135
  return (
131
136
  <React.Fragment>
132
137
  <form className="r-filter" onSubmit={handleSubmit}>
@@ -3,91 +3,98 @@ import DatePicker from 'react-datepicker';
3
3
  import 'react-datepicker/dist/react-datepicker.css';
4
4
  import moment from "moment";
5
5
  import { Dropdown, DropdownButton } from 'react-bootstrap';
6
+ import { Translate } from "react-translated";
7
+ import './DateFilter.scss';
6
8
 
7
9
  function DateFilter({ setDates }) {
8
10
 
9
- const [startDate, setStartDate] = useState(new Date());
10
- const [endDate, setEndDate] = useState(new Date());
11
+ const [dateRange, setDateRange] = useState([null, null]);
12
+ const [startDate, endDate] = dateRange;
11
13
  const [filter, setFilter] = useState('Période');
12
- const handleApply = () => {
13
- const start = moment(startDate).format('YYYY-MM-DD');
14
- const end = moment(endDate).format('YYYY-MM-DD');
15
- setDates({ "event_dates.query": [start, end] });
16
- setFilter(`custom`);
14
+
15
+
16
+ const handleApply = (e) => {
17
+ setDateRange(e);
18
+ const dates = e; // Remplacez ceci par votre tableau de dates
19
+ const filteredDates = dates.filter(date => date !== null);
20
+ const formattedDates = filteredDates.map(date => moment(date).format('YYYY-MM-DD'));
21
+ setDates({ "event_dates.query": formattedDates });
22
+ if(e.every(item => item === null)){
23
+ setFilter(periodTitle.all);
24
+ }else {
25
+ setFilter("custom");
26
+ }
17
27
  };
18
28
  const today = moment().format('YYYY-MM-DD');
29
+
30
+ const periodTitle = {
31
+ all: <Translate text="Toutes les dates" />,
32
+ today: <Translate text="Aujourd'hui" />,
33
+ tomorrow: <Translate text='Demain' />,
34
+ thisWeekEnd: <Translate text='Ce week-end' />,
35
+ thisWeek: <Translate text='Cette semaine' />,
36
+ thisMonth: <Translate text='Ce mois-ci' />,
37
+ custom: <Translate text='Personnalisé (Du ... au ...)'/>
38
+ }
39
+
40
+
19
41
  const handleSelect = (eventKey) => {
20
42
  switch (eventKey) {
43
+ case 'all':
44
+ setDates({ "event_dates.query": [today] });
45
+ setFilter(periodTitle.all);
46
+ break;
21
47
  case 'today':
22
48
  setDates({ "event_dates.query": [today, today] });
23
- setFilter("Aujourd'hui");
49
+ setFilter(periodTitle.today);
24
50
  break;
25
51
  case 'tomorrow':
26
52
  const tomorrow = moment().add(1, 'days').format('YYYY-MM-DD');
27
53
  setDates({ "event_dates.query": [tomorrow, tomorrow] });
28
- setFilter('Demain');
54
+ setFilter(periodTitle.tomorrow);
29
55
  break;
30
56
  case 'thisWeekEnd':
31
57
  const startOfWeekEnd = moment().endOf('week').format('YYYY-MM-DD');
32
58
  const endOfWeekEnd = moment().endOf('week').add(1, 'days').format('YYYY-MM-DD');
33
59
  setDates({ "event_dates.query": [startOfWeekEnd, endOfWeekEnd] });
34
- setFilter('Ce week-end');
60
+ setFilter(periodTitle.thisWeekEnd);
35
61
  break;
36
62
  case 'thisWeek':
37
63
  const endOfWeek = moment().endOf('week').add(1, 'days').format('YYYY-MM-DD');
38
64
  setDates({ "event_dates.query": [today, endOfWeek] });
39
- setFilter('Cette semaine');
65
+ setFilter(periodTitle.thisWeek);
40
66
  break;
41
67
  case 'thisMonth':
42
68
  const endOfMonth = moment().endOf('month').format('YYYY-MM-DD');
43
69
  setDates({ "event_dates.query": [today, endOfMonth] });
44
- setFilter('Cette semaine');
70
+ setFilter(periodTitle.thisMonth);
45
71
  break;
46
72
  default:
47
73
  break;
48
74
  }
49
75
  };
50
- // 2023-02-23
51
-
52
76
  return (
53
77
  <>
54
- <div>
55
- <DropdownButton onSelect={handleSelect} title={filter}>
56
- <Dropdown.Item eventKey="today">Aujourd'hui</Dropdown.Item>
57
- <Dropdown.Item eventKey="tomorrow">Demain</Dropdown.Item>
58
- <Dropdown.Item eventKey="thisWeekEnd">Ce week-end</Dropdown.Item>
59
- <Dropdown.Item eventKey="thisWeek">Cette semaine</Dropdown.Item>
60
- <Dropdown.Item eventKey="thisMonth">Ce mois-ci</Dropdown.Item>
61
-
62
- <div>
63
- du
78
+ <div className="period-filter">
79
+ <DropdownButton className="period-filter-toggler" onSelect={handleSelect} title={filter}>
80
+ <Dropdown.Item eventKey="all">{periodTitle.all}</Dropdown.Item>
81
+ <Dropdown.Item eventKey="today">{periodTitle.today}</Dropdown.Item>
82
+ <Dropdown.Item eventKey="tomorrow">{periodTitle.tomorrow}</Dropdown.Item>
83
+ <Dropdown.Item eventKey="thisWeekEnd">{periodTitle.thisWeekEnd}</Dropdown.Item>
84
+ <Dropdown.Item eventKey="thisWeek">{periodTitle.thisWeek}</Dropdown.Item>
85
+ <Dropdown.Item eventKey="thisMonth">{periodTitle.thisMonth}</Dropdown.Item>
86
+ <div className="perdiod-filter-range">
64
87
  <DatePicker
65
- selected={startDate}
66
- onChange={(date) => setStartDate(date)}
67
- selectsStart
88
+ placeholderText={periodTitle.custom.props.text}
89
+ selectsRange={true}
68
90
  startDate={startDate}
69
91
  endDate={endDate}
70
- onClick={(e) => e.stopPropagation()}
71
- />
72
- au
73
- <DatePicker
74
- selected={endDate}
75
- onChange={(date) => setEndDate(date)}
76
- selectsEnd
77
- startDate={startDate}
78
- endDate={endDate}
79
- minDate={startDate}
80
- onClick={(e) => e.stopPropagation()}
81
- />
82
- <button
83
- onClick={(e) => {
84
- e.stopPropagation();
85
- handleApply()
92
+ minDate={new Date().setDate(new Date().getDate() + 1)}
93
+ onChange={(update) => {
94
+ handleApply(update)
86
95
  }}
87
- >
88
- Valider
89
- </button>
90
- {/* <button onClick={handleApply}>Apply</button> */}
96
+ isClearable={true}
97
+ />
91
98
  </div>
92
99
  </DropdownButton>
93
100
  </div>
@@ -0,0 +1,53 @@
1
+ .period-filter {
2
+ .period-filter-toggler {
3
+ & > button {
4
+ background: transparent;
5
+ color: hsl(0, 0%, 20%);
6
+ box-sizing: border-box;
7
+ font-weight: bold;
8
+ font-size: 12px;
9
+ text-transform: uppercase;
10
+ letter-spacing: 1.2px;
11
+
12
+ -webkit-box-pack: justify;
13
+ -webkit-justify-content: space-between;
14
+ justify-content: space-between;
15
+ min-height: 38px;
16
+ outline: 0 !important;
17
+ position: relative;
18
+ -webkit-transition: all 100ms;
19
+ transition: all 100ms;
20
+ background-color: white;
21
+ border-color: hsl(0, 0%, 80%);
22
+ border-radius: 0;
23
+ border-style: solid;
24
+ border-width: 1px;
25
+ box-sizing: border-box;
26
+ height: 50px;
27
+ &:hover {
28
+ background-color: transparent;
29
+ border-color: hsl(0, 0%, 70%);
30
+ color: hsl(0, 0%, 20%);
31
+ }
32
+ &:focus,
33
+ &:active {
34
+ border-color: #2684FF!important;
35
+ background: transparent!important;
36
+ color: hsl(0, 0%, 20%)!important;
37
+ box-shadow: 0 0 0 1px #2684FF!important;
38
+ }
39
+ }
40
+ }
41
+
42
+ }
43
+
44
+ .perdiod-filter-range {
45
+ padding: 5px 16px;
46
+ input {
47
+ border: solid 1px hsl(0, 0%, 42%) !important;
48
+ border-radius: 5px;
49
+ padding: 5px 9px;
50
+ color: hsl(0, 0%, 20%);
51
+ border: solid 1px hsl(0, 0%, 70%)!important;
52
+ }
53
+ }
@@ -30,9 +30,6 @@ const useAxios = (params) => {
30
30
  }
31
31
  }
32
32
  };
33
- // console.log(isLoading);
34
- // console.log(response);
35
-
36
33
  useEffect(() => {
37
34
  fetchData({...params,signal: controller.signal});
38
35
  return() => controller.abort()
@@ -3,110 +3,180 @@ export default {
3
3
  'Chargement...': {
4
4
  en: 'Loading',
5
5
  fr: 'Chargement...',
6
+ de: 'Laden',
6
7
  },
7
8
  "Recherche": {
8
9
  en: 'Search',
9
10
  fr: "Recherche",
11
+ de: "Suche",
10
12
  },
11
13
  "Thématiques": {
12
14
  en: 'Themes',
13
15
  fr: "Thématiques",
16
+ de: "Themen",
14
17
  },
15
18
  "Catégories": {
16
19
  en: 'Categories',
17
20
  fr: "Catégories",
21
+ de: "Kategorien",
18
22
  },
19
23
  "Facilités": {
20
24
  en: 'Facilities',
21
25
  fr: "Facilités",
26
+ de: "Einrichtungen",
22
27
  },
23
28
  'Plus de résultats': {
24
29
  en: 'More results',
25
30
  fr: 'Plus de résultats',
31
+ de: 'Mehr Ergebnisse',
26
32
  },
27
33
  'Aucun résultat': {
28
34
  en: 'No result',
29
35
  fr: 'Aucun résultat',
36
+ de: 'Kein Ergebnis',
30
37
  },
31
38
  'Retour': {
32
39
  en: 'Return',
33
40
  fr: 'Retour',
41
+ de: 'Zurück',
34
42
  },
35
43
  'Téléchargements': {
36
44
  en: 'Downloads',
37
45
  fr: 'Téléchargements',
46
+ de: 'Downloads',
38
47
  },
39
48
  'Billetterie': {
40
49
  en: 'Ticketing',
41
50
  fr: 'Billetterie',
51
+ de: 'Tickets',
42
52
  },
43
53
  'Lien vers la vidéo': {
44
54
  en: 'Link to video',
45
55
  fr: 'Lien vers la vidéo',
56
+ de: 'Link zum Video',
46
57
  },
47
58
  'Participation en ligne': {
48
59
  en: 'Join online',
49
60
  fr: 'Participation en ligne',
61
+ de: 'Online teilnehmen',
50
62
  },
51
63
  'Actualités trouvées': {
52
64
  en: ' News found',
53
- fr: ' actualités trouvées',
65
+ fr: ' Actualités trouvées',
66
+ de: ' Nachrichten gefunden',
54
67
  },
55
68
  'Actualité trouvée': {
56
69
  en: ' News found',
57
- fr: ' actualité trouvée',
70
+ fr: ' Atualité trouvée',
71
+ de: ' Nachricht gefunden',
58
72
  },
59
73
  "Aucune actualité n'a été trouvée": {
60
74
  en: 'No news was found',
61
75
  fr: "Aucune actualité n'a été trouvée",
76
+ de: 'Keine Nachrichten gefunden',
62
77
  },
63
78
  "Proposer une actualité": {
64
79
  en: 'Suggest a news',
65
80
  fr: "Proposer une actualité",
81
+ de: 'Nachricht vorschlagen',
66
82
  },
67
83
  'événements trouvés': {
68
- en: ' events found',
69
- fr: ' événements trouvés',
84
+ en: ' Events found',
85
+ fr: ' Événements trouvés',
86
+ de: ' Veranstaltungen gefunden',
70
87
  },
71
88
  'événement trouvé': {
72
- en: ' event found',
73
- fr: ' événement trouvé',
89
+ en: ' Event found',
90
+ fr: ' Événement trouvé',
91
+ de: ' Veranstaltung gefunden',
74
92
  },
75
93
  "Aucun événement n'a été trouvé": {
76
- en: 'No events was found',
94
+ en: 'No event was found',
77
95
  fr: "Aucun événement n'a été trouvé",
96
+ de: 'Keine Veranstaltungen gefunden',
78
97
  },
79
98
  "Proposer un événement": {
80
99
  en: 'Suggest a event',
81
100
  fr: "Proposer un événement",
101
+ de: 'Veranstaltung vorschlagen',
82
102
  },
83
103
  "Infos pratiques": {
84
104
  en: 'Practical information',
85
105
  fr: "Infos pratiques",
106
+ de: 'Praktische Informationen',
86
107
  },
87
108
  "Accessible aux PMR": {
88
- en: 'Je sais pas traduire',
109
+ en: 'Accessibility for PRM',
89
110
  fr: "Accessible aux PMR",
111
+ de: 'Barrierefreiheit für PMR',
90
112
  },
91
113
  "Lien de l'événement": {
92
114
  en: 'Event link',
93
115
  fr: "Lien de l'événement",
116
+ de: 'Veranstaltungslink',
94
117
  },
95
118
  'contacts trouvés': {
96
- en: ' contact found',
97
- fr: ' contacts trouvés',
119
+ en: ' Contact found',
120
+ fr: ' Contacts trouvés',
121
+ de: ' Kontakt gefunden',
98
122
  },
99
123
  'contact trouvé': {
100
- en: ' contact found',
101
- fr: ' contact trouvé',
124
+ en: ' Contact found',
125
+ fr: ' Contact trouvé',
126
+ de: ' Kontakt gefunden',
102
127
  },
103
128
  "Aucun contact n'a été trouvé": {
104
129
  en: 'No contact was found',
105
130
  fr: "Aucun contact n'a été trouvé",
131
+ de: 'Kein Kontakt gefunden',
106
132
  },
107
133
  "Proposer un contact": {
108
134
  en: 'Suggest a contact',
109
135
  fr: "Proposer un contact",
110
- },
111
- }
112
-
136
+ de: 'Kontakt vorschlagen',
137
+ },
138
+ "Toutes les dates": {
139
+ en: 'All dates',
140
+ fr: "Toutes les dates",
141
+ de: 'Alle Daten',
142
+ },
143
+ "Aujourd'hui": {
144
+ en: "Today",
145
+ fr: "Aujourd'hui",
146
+ de: "Heute",
147
+ },
148
+ "Demain": {
149
+ en: "Tomorrow",
150
+ fr: "Demain",
151
+ de: "Morgen",
152
+ },
153
+ "Ce week-end": {
154
+ en: "This weekend",
155
+ fr: "Ce week-end",
156
+ de: "Dieses Wochenende",
157
+ },
158
+ "Cette semaine": {
159
+ en: "This week",
160
+ fr: "Cette semaine",
161
+ de: "Diese Woche",
162
+ },
163
+ "Ce mois-ci": {
164
+ en: "This month",
165
+ fr: "Ce mois-ci",
166
+ de: "Diesen Monat",
167
+ },
168
+ "Personnalisé (Du ... au ...)": {
169
+ en: "Custom (From ... to ...)",
170
+ fr: "Personnalisé (Du ... au ...)",
171
+ de: "Benutzerdefiniert (Von ... bis ...)",
172
+ },
173
+ "Personnalisé": {
174
+ fr: "Personnalisé",
175
+ },
176
+ "Personnalisé": {
177
+ fr: "Personnalisé",
178
+ },
179
+ "Personnalisé": {
180
+ fr: "Personnalisé",
181
+ },
182
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: imio.smartweb.core
3
- Version: 1.2.25
3
+ Version: 1.2.27
4
4
  Summary: Core product for iMio websites
5
5
  Home-page: https://github.com/imio/imio.smartweb.core
6
6
  Author: Christophe Boulanger
@@ -26,7 +26,7 @@ License-File: LICENSE.rst
26
26
  Requires-Dist: setuptools
27
27
  Requires-Dist: z3c.jbot
28
28
  Requires-Dist: z3c.unconfigure
29
- Requires-Dist: plone.api (>=1.8.4)
29
+ Requires-Dist: plone.api >=1.8.4
30
30
  Requires-Dist: plone.gallery
31
31
  Requires-Dist: plone.restapi
32
32
  Requires-Dist: plone.app.dexterity
@@ -48,7 +48,7 @@ Requires-Dist: imio.smartweb.common
48
48
  Requires-Dist: imio.smartweb.locales
49
49
  Provides-Extra: test
50
50
  Requires-Dist: plone.app.testing ; extra == 'test'
51
- Requires-Dist: plone.testing (>=5.0.0) ; extra == 'test'
51
+ Requires-Dist: plone.testing >=5.0.0 ; extra == 'test'
52
52
  Requires-Dist: plone.app.contenttypes ; extra == 'test'
53
53
  Requires-Dist: plone.app.robotframework[debug] ; extra == 'test'
54
54
  Requires-Dist: plone.restapi[test] ; extra == 'test'
@@ -189,6 +189,26 @@ Changelog
189
189
  =========
190
190
 
191
191
 
192
+ 1.2.27 (2024-01-26)
193
+ -------------------
194
+
195
+ - WEB-3802 : Adding scss styles for new period filter
196
+ [thomlamb]
197
+
198
+ - WEB-3802 : Adding missing traduction for React view.
199
+ [thomlamb]
200
+
201
+ - WEB-4029 : Fix issue "invalid date" with pat-display-time and DateTime Zope/Plone format (with Firefox!)
202
+ [boulch]
203
+
204
+
205
+ 1.2.26 (2024-01-24)
206
+ -------------------
207
+
208
+ - WEB-3802 : Fix Axios Serializer to fix key in object request.
209
+ [thomlamb]
210
+
211
+
192
212
  1.2.25 (2024-01-24)
193
213
  -------------------
194
214
 
@@ -1,4 +1,4 @@
1
- imio.smartweb.core-1.2.25-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
1
+ imio.smartweb.core-1.2.27-py3.8-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
2
2
  imio/smartweb/core/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
3
3
  imio/smartweb/core/config.py,sha256=BUgfvh4hCaw0onCYAG4gQI1O4hZ-GzXWEltdHi4YLIs,337
4
4
  imio/smartweb/core/configure.zcml,sha256=PeC4rF--rF6MfVQ0NzggQrZWIl35oPtJdEhvQwGxhhI,1459
@@ -218,13 +218,13 @@ imio/smartweb/core/contents/sections/base.py,sha256=2e3lIG_RGGFAshBEkTNG97OReAnn
218
218
  imio/smartweb/core/contents/sections/configure.zcml,sha256=aEbAu9MikK-sCVzST8Nn-bMbv7clnHfnoumlBW197Wk,2242
219
219
  imio/smartweb/core/contents/sections/macros.pt,sha256=zfbNvH5fFj6j3M3v1Ys7UYcXpQnS-alw0L3w_8ScU20,4092
220
220
  imio/smartweb/core/contents/sections/subscriber.py,sha256=WM7nEZVPOkmyT1GfkWGDWwLhuhUYaTnlBr6BJVqUJMk,642
221
- imio/smartweb/core/contents/sections/views.py,sha256=nDTYyeaikubTfE6eHcN4_acj7Lo1zdoaX0AKa7sdeFA,2832
221
+ imio/smartweb/core/contents/sections/views.py,sha256=bjszBmkQ8uGj8zx61FwVkSfr9SdvgHVdeTrqMs_nRXQ,3502
222
222
  imio/smartweb/core/contents/sections/collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
223
  imio/smartweb/core/contents/sections/collection/configure.zcml,sha256=Ak4UbKFjogWZad6-5_y6oSx8tWXt3nN7bEdKXG7pQCI,920
224
224
  imio/smartweb/core/contents/sections/collection/content.py,sha256=DMmU9rIaRlbRjIaot5RHXu59vJmAbun0FCmyahWhBCM,2379
225
225
  imio/smartweb/core/contents/sections/collection/views.py,sha256=G8Q7zlFmuEKKCmAGLj5cVL3axebzf5ZlSVRYx9q45U4,1470
226
- imio/smartweb/core/contents/sections/common_templates/carousel.pt,sha256=INJ6vZmuErNNBmshHs4erXA9JSACJXpQZrXAw4br7e0,5393
227
- imio/smartweb/core/contents/sections/common_templates/table.pt,sha256=N_ztInw5BMdDprz9nllilxzSmQTITIdXKPxk7JNVTfM,6428
226
+ imio/smartweb/core/contents/sections/common_templates/carousel.pt,sha256=oSfgXbFY77VQFkMsPpdG1ZTFKsFe865Lm8gqOXNkHbc,5412
227
+ imio/smartweb/core/contents/sections/common_templates/table.pt,sha256=_6XcDToJUCSof4NEbCfbpNWTTcQloucv7QJhtQKalm4,6447
228
228
  imio/smartweb/core/contents/sections/contact/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
229
  imio/smartweb/core/contents/sections/contact/configure.zcml,sha256=WjyGXO7alNf4yDW5dZCS_xQ_AYbQVQuRVRIeoyLIBzY,1591
230
230
  imio/smartweb/core/contents/sections/contact/content.py,sha256=SSeWBuqs1iDIhaGODI_gCsw4Q6ANBq6m7exZv1lPl_k,2669
@@ -599,9 +599,9 @@ imio/smartweb/core/webcomponents/build/assets/oeil-big.f32cd1df1274a9593de0c4bd8
599
599
  imio/smartweb/core/webcomponents/build/assets/pin-react-active.07d154037a15be5525b823fdc626cf29.svg,sha256=XgE72Zg25rWhDFtpgRTh6pSWc0utqIobzbez4RYC3kA,330
600
600
  imio/smartweb/core/webcomponents/build/assets/pin-react.fda934b5daf26dd4da2a71a7e7e44431.svg,sha256=kXxN_F5nCL1SUuSvO7dsVz2BCk6lyembEe0ZcDUjEUQ,336
601
601
  imio/smartweb/core/webcomponents/build/assets/search.57bdbf5b191499cd77514097d1c4972c.svg,sha256=VYkbBVirrqBaye-75ns8tcpEqjqpOiXd2CbIqo-M384,426
602
- imio/smartweb/core/webcomponents/build/css/25.smartweb-webcomponents-compiled.css,sha256=5TBWE3IUlwOKqNo3d-uw6GujgEhUDrEU7JA2cU9xMuk,43851
603
602
  imio/smartweb/core/webcomponents/build/css/323.smartweb-webcomponents-compiled.css,sha256=IgXifdqMDHLh-US9FSsTYPY75eCZgTETHOBUv4KS94E,2546
604
- imio/smartweb/core/webcomponents/build/css/363.smartweb-webcomponents-compiled.css,sha256=qmNl1TV7yB-rEb8U9pZkMqfwXooISHJnOPuAwSnOy5Q,20368
603
+ imio/smartweb/core/webcomponents/build/css/392.smartweb-webcomponents-compiled.css,sha256=ydiVqK7KtAvCGg3lYdDr_zBtHs8ed_MT_U-xP_PabLg,44690
604
+ imio/smartweb/core/webcomponents/build/css/528.smartweb-webcomponents-compiled.css,sha256=qmNl1TV7yB-rEb8U9pZkMqfwXooISHJnOPuAwSnOy5Q,20368
605
605
  imio/smartweb/core/webcomponents/build/css/647.smartweb-webcomponents-compiled.css,sha256=IjUbb5U3SmZlX5UsisrsQIbU6OTS_YeMKBds8GQEd8c,3764
606
606
  imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=xLkcneVroMl6Imnhr5c4qehs2ytJJ3v7nal5GdQiSTI,5304
607
607
  imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js,sha256=0O_DNz729MDffAcwrH63ZvFYeDv_acOR0GXjnI-oH3g,17480
@@ -609,22 +609,21 @@ imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js
609
609
  imio/smartweb/core/webcomponents/build/js/212.smartweb-webcomponents-compiled.js,sha256=tcLNEn8czwNz0Rxjdm2iD9TyWiwG07aZO8MGHr7OWMU,171258
610
610
  imio/smartweb/core/webcomponents/build/js/212.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=euEy6zLvyR2bywaOKBw2hW-9rDEbt5IPelh6VIDyL4Y,361
611
611
  imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js,sha256=pBioLG4GpJJKMTu5PYcCABHxzJ31RWb1rMHYDhY7vpI,161004
612
- imio/smartweb/core/webcomponents/build/js/25.smartweb-webcomponents-compiled.js,sha256=uvcUstnpgqYDosdeuDjkUtO1vXpYSJ0xhayQpAJhkIU,36833
613
- imio/smartweb/core/webcomponents/build/js/3.smartweb-webcomponents-compiled.js,sha256=zcvVPZnasClLfjNJNDXAk_haPQ4RwnPgXSctB7Qixf8,16020
614
- imio/smartweb/core/webcomponents/build/js/3.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
615
612
  imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js,sha256=8HdOjalCzP1LeQisA_nlJYV1J2Fgg-zlkQYKsl0RBTo,26760
616
613
  imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
617
- imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js,sha256=scBCKqNJiIuRG3e9WJIOAWjBFpZSEx7OX7fZFVn45Ec,43481
618
- imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
619
- imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js,sha256=8I2bAQ6DV0QFPaUyBMAV7F5rdH__ZCY2MYZUV5Ov0pw,42746
620
- imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
614
+ imio/smartweb/core/webcomponents/build/js/392.smartweb-webcomponents-compiled.js,sha256=2NbQoy_CSFMDzRJGx8I5ylVZZxzo-pNV573nPgIBxTU,41369
615
+ imio/smartweb/core/webcomponents/build/js/528.smartweb-webcomponents-compiled.js,sha256=o_cVbuCtONGZnjnXdijXmKplcJbcQswpWYL-vwoj3Lo,47344
616
+ imio/smartweb/core/webcomponents/build/js/528.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
617
+ imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js,sha256=qahw7GUDnhjgsBgWC7NtobztVptvnn54q5IR7F6uwE4,30681
621
618
  imio/smartweb/core/webcomponents/build/js/653.smartweb-webcomponents-compiled.js,sha256=T22v_gZlEHjW12TR3roCn_XUdKDVZa9yb2g-50eFHbo,277798
622
619
  imio/smartweb/core/webcomponents/build/js/653.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=tUd9UGffQmBkRHLQk0laQX3euJ0uJQLOS6tylIKc6hI,376
620
+ imio/smartweb/core/webcomponents/build/js/729.smartweb-webcomponents-compiled.js,sha256=02-lkUhBEy4FHtBMzx4fvQAXyv4MBhu_xwIR0ElB3Pk,14106
621
+ imio/smartweb/core/webcomponents/build/js/729.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
623
622
  imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js,sha256=51GDqoBV0fL0ty2auKpPbs_Xo8yGklTW5rn4k1GtC_Y,159426
624
623
  imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
625
624
  imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js,sha256=0EuJ1Ffqn0pu7Px-9ff-LJymiQ7YpQzWu9pSs2nkyWY,363925
626
625
  imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=ot4CrmvW4r8ZeygP2wflnoqyUUmqSvjGt7WzqhtjPxY,15195
627
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=JbMcZt5dLwOdey64oAr7URxiwD1lfI65WE1ENeWQNuo,409534
626
+ imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=23QmGM2-LKuRVOrK4yC8HVgCyGFemNXbB8pNyv1nog4,409549
628
627
  imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=MWaSlPSODUyzTS-6uhTd6MYi8HGJgjOtFyvm2-GJi4U,1035
629
628
  imio/smartweb/core/webcomponents/src/index.jsx,sha256=WV70VNETdsIMADJ5EqajwxQ6WacMbhw5Z_91fVDti_Y,757
630
629
  imio/smartweb/core/webcomponents/src/index.scss,sha256=1Nw2CweoA3EqyaUt_wGB3fs5XAD_LMQU2zfrMeZn7ks,5511
@@ -651,14 +650,15 @@ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactC
651
650
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
652
651
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=g0jxMjGP_PTnk48sew6pAMl1JgEwappTT8K57i3ngCc,1615
653
652
  imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=Q0Vq2EHYdGdGiYVhgYJAX23He8TSedQtXvRWY-kd9r8,7637
654
- imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=eKa8EnGesP5aDdFCjMJ64lAkWArPCqWM1WW87qNeX8g,8635
653
+ imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=hgQnqMlFEHrKNie0YUApVLZKQ5y0xRN9VQIt3Twc-Cs,8683
655
654
  imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=NYjgqNEJNXNPRYr60dIqt6MxX8Lbkv3GCcBE5K6CpIk,9042
656
655
  imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
657
656
  imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=eQlCR9UgXJATOmXFQzPphNrPP1zcjgKkCdbFmg-W8BU,1649
658
657
  imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=hs2XA8I1Mx5L9SvBfja19ipSUEXqzfmXT1WcEF-TPlQ,16452
659
658
  imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=6k2bIyKd0pzj28NaVhSBJclnEyxdi6iNPbQEHSS5fZk,1600
660
- imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=Vk1uelgXfcjoeYrnhoiIGy0WnDnwz1IyPEO_bUVnPes,7172
661
- imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=_lnSd6SnHYg8GUg8aHfSpB5rssXG52wX6baYdZUJScM,4104
659
+ imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=ygnUGfcDDEQcbUylEExZuvQcsZcJrJEzlD7Ld78RqKo,7457
660
+ imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=SX3SNN1MiAvMCR1xxCB0lPdUfoCm3iab2qKCkPBAKY8,4543
661
+ imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss,sha256=RM34RrKuYxA6fHOb5i-yZ7_ud2fQPRt82p2OhKOCZdM,1575
662
662
  imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=aCXLAcBpKHFFUtWMYxrb2u6xP70e622SigUiVm0RMiw,6778
663
663
  imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=1RnZHhLGYzwVWejfw4TbjyTEsiyn_Ajd2SQCF21aiYA,3260
664
664
  imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
@@ -674,16 +674,16 @@ imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult
674
674
  imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx,sha256=_7EozRrBRVuiQYIwMb2KQqeLk_lT_ev7SJvOTJ4KV8w,6510
675
675
  imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx,sha256=rWkvitv4KsRKNBl8JdDJHFii4GwaiF_-1GP6xOMIITs,2437
676
676
  imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx,sha256=gDpPg4wEfd3XtSSbxKsHDoO-tim1UkRVHkyegirgDRc,1810
677
- imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=MsRpT8p9bZTp2Hk2scbeqIeVoFSqKlt0Dr6ZGWNgJ1g,1215
677
+ imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=EP0YppioHn490jbnFAW4PsQUdUtAd8EJxQaCb2X0kSo,1153
678
678
  imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js,sha256=fGxgxCI22ERSlVLCYmD0-nztnGUIz-VkUNyLtj5HSuo,223
679
679
  imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=ulMbtvMcmV0Af4lhYtkkShvjJ9_s3Ik5x4FfIz_QGsE,5071
680
680
  imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=Ht5NXE7K1HohmDv4BOaE4Z0mhnqtKqYbBuEiP371Uho,73
681
- imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=bsTZTvRlBaCImAchnuhZLtLQYC06bM539cPLoAgBMP0,2694
681
+ imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=eE3mXtcrURbDWPWexQsszStFxFCuFEV3SBopk9J-5IM,4573
682
682
  imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
683
- imio.smartweb.core-1.2.25.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
684
- imio.smartweb.core-1.2.25.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
685
- imio.smartweb.core-1.2.25.dist-info/METADATA,sha256=p-teZjGMgtadUhavS7lrOsvIKi8ciQvI5EjSYUn4nVs,47544
686
- imio.smartweb.core-1.2.25.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
687
- imio.smartweb.core-1.2.25.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
688
- imio.smartweb.core-1.2.25.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
689
- imio.smartweb.core-1.2.25.dist-info/RECORD,,
683
+ imio.smartweb.core-1.2.27.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
684
+ imio.smartweb.core-1.2.27.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
685
+ imio.smartweb.core-1.2.27.dist-info/METADATA,sha256=tBm8cyNvPy8S_JclGhMXK5f3i3Ln839hK17gn17cg-Y,47958
686
+ imio.smartweb.core-1.2.27.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
687
+ imio.smartweb.core-1.2.27.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
688
+ imio.smartweb.core-1.2.27.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
689
+ imio.smartweb.core-1.2.27.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.40.0)
2
+ Generator: bdist_wheel (0.41.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5