imio.smartweb.core 1.2.24__py3-none-any.whl → 1.2.26__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 (24) hide show
  1. imio/smartweb/core/webcomponents/build/css/25.smartweb-webcomponents-compiled.css +1 -0
  2. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +1 -0
  3. imio/smartweb/core/webcomponents/build/js/25.smartweb-webcomponents-compiled.js +1 -0
  4. imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js +1 -1
  5. imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js +1 -1
  6. imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js +1 -1
  7. imio/smartweb/core/webcomponents/build/js/653.smartweb-webcomponents-compiled.js +2 -0
  8. imio/smartweb/core/webcomponents/build/js/653.smartweb-webcomponents-compiled.js.LICENSE.txt +14 -0
  9. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
  10. imio/smartweb/core/webcomponents/package.json +2 -0
  11. imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +1 -1
  12. imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx +35 -13
  13. imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx +98 -0
  14. {imio.smartweb.core-1.2.24.dist-info → imio.smartweb.core-1.2.26.dist-info}/METADATA +15 -1
  15. {imio.smartweb.core-1.2.24.dist-info → imio.smartweb.core-1.2.26.dist-info}/RECORD +21 -18
  16. imio/smartweb/core/webcomponents/build/css/54.smartweb-webcomponents-compiled.css +0 -1
  17. imio/smartweb/core/webcomponents/build/js/493.smartweb-webcomponents-compiled.js +0 -1
  18. imio/smartweb/core/webcomponents/build/js/54.smartweb-webcomponents-compiled.js +0 -1
  19. /imio.smartweb.core-1.2.24-py3.10-nspkg.pth → /imio.smartweb.core-1.2.26-py3.10-nspkg.pth +0 -0
  20. {imio.smartweb.core-1.2.24.dist-info → imio.smartweb.core-1.2.26.dist-info}/LICENSE.GPL +0 -0
  21. {imio.smartweb.core-1.2.24.dist-info → imio.smartweb.core-1.2.26.dist-info}/LICENSE.rst +0 -0
  22. {imio.smartweb.core-1.2.24.dist-info → imio.smartweb.core-1.2.26.dist-info}/WHEEL +0 -0
  23. {imio.smartweb.core-1.2.24.dist-info → imio.smartweb.core-1.2.26.dist-info}/namespace_packages.txt +0 -0
  24. {imio.smartweb.core-1.2.24.dist-info → imio.smartweb.core-1.2.26.dist-info}/top_level.txt +0 -0
@@ -60,7 +60,9 @@
60
60
  "moment": "^2.29.1",
61
61
  "query-string": "^7.0.1",
62
62
  "react": "^17.0.2",
63
+ "react-bootstrap": "^2.10.0",
63
64
  "react-content-loader": "^6.0.3",
65
+ "react-datepicker": "^4.25.0",
64
66
  "react-dom": "^17.0.2",
65
67
  "react-highlight-words": "^0.17.0",
66
68
  "react-leaflet": "^3.2.5",
@@ -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
@@ -3,6 +3,8 @@ import Select from "react-select";
3
3
  import { useHistory } from "react-router-dom";
4
4
  import useAxios from "../../../hooks/useAxios";
5
5
  import { Translator } from "react-translated";
6
+ import DateFilter from "../../Filters/DateFilter";
7
+ import moment from "moment";
6
8
 
7
9
  function Filters(props) {
8
10
  let history = useHistory();
@@ -10,6 +12,11 @@ function Filters(props) {
10
12
  const [inputValues, setInputValues] = useState(props.activeFilter);
11
13
  const [topicsFilter, setTopicsFilter] = useState(null);
12
14
  const [categoryFilter, setCategoryFilter] = useState(null);
15
+
16
+ // const [dates, setDates] = useState({ start: moment().format('YYYY-MM-DD'), end: null});
17
+ const [dates, setDates] = useState({"event_dates.query": [moment().format('YYYY-MM-DD')],"event_dates.range":"min"});
18
+
19
+ // Get data
13
20
  const { response, error, isLoading } = useAxios({
14
21
  method: "get",
15
22
  url: "",
@@ -18,6 +25,7 @@ function Filters(props) {
18
25
  Accept: "application/json",
19
26
  },
20
27
  params: inputValues,
28
+ paramsSerializer: { indexes: null }
21
29
  });
22
30
 
23
31
  useEffect(() => {
@@ -109,7 +117,17 @@ function Filters(props) {
109
117
  };
110
118
  },
111
119
  };
112
-
120
+ useEffect(() => {
121
+ setInputValues(prevState => {
122
+ if (dates["event_dates.query"].length > 1) {
123
+ const { "event_dates.range": _, ...rest } = dates;
124
+ const newValue = "min:max";
125
+ return { ...prevState, ...rest, "event_dates.range": newValue };
126
+ } else {
127
+ return { ...prevState, ...dates };
128
+ }
129
+ });
130
+ }, [dates]);
113
131
  return (
114
132
  <React.Fragment>
115
133
  <form className="r-filter" onSubmit={handleSubmit}>
@@ -117,17 +135,17 @@ function Filters(props) {
117
135
  <div className="r-filter-search">
118
136
  <Translator>
119
137
  {({ translate }) => (
120
- <input
121
- className="input-custom-class"
122
- name="SearchableText"
123
- type="text"
124
- value={inputValues.SearchableText}
125
- onChange={onChangeHandler}
126
- placeholder={translate({
127
- text: 'Recherche'
128
- })}
129
- />
130
- )}
138
+ <input
139
+ className="input-custom-class"
140
+ name="SearchableText"
141
+ type="text"
142
+ value={inputValues.SearchableText}
143
+ onChange={onChangeHandler}
144
+ placeholder={translate({
145
+ text: 'Recherche'
146
+ })}
147
+ />
148
+ )}
131
149
  </Translator>
132
150
  <button type="submit"></button>
133
151
  </div>
@@ -165,12 +183,16 @@ function Filters(props) {
165
183
  options={categoryFilter && categoryFilter}
166
184
  placeholder={translate({
167
185
  text: 'Catégories'
168
- })}
186
+ })}
169
187
  value={actCategory && actCategory[0]}
170
188
  />
171
189
  )}
172
190
  </Translator>
173
191
  </div>
192
+
193
+ <div className="r-filter schedul-Filter">
194
+ <DateFilter setDates={setDates} />
195
+ </div>
174
196
  </React.Fragment>
175
197
  );
176
198
  }
@@ -0,0 +1,98 @@
1
+ import React, { useEffect, useRef, useCallback, useState } from "react";
2
+ import DatePicker from 'react-datepicker';
3
+ import 'react-datepicker/dist/react-datepicker.css';
4
+ import moment from "moment";
5
+ import { Dropdown, DropdownButton } from 'react-bootstrap';
6
+
7
+ function DateFilter({ setDates }) {
8
+
9
+ const [startDate, setStartDate] = useState(new Date());
10
+ const [endDate, setEndDate] = useState(new Date());
11
+ 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`);
17
+ };
18
+ const today = moment().format('YYYY-MM-DD');
19
+ const handleSelect = (eventKey) => {
20
+ switch (eventKey) {
21
+ case 'today':
22
+ setDates({ "event_dates.query": [today, today] });
23
+ setFilter("Aujourd'hui");
24
+ break;
25
+ case 'tomorrow':
26
+ const tomorrow = moment().add(1, 'days').format('YYYY-MM-DD');
27
+ setDates({ "event_dates.query": [tomorrow, tomorrow] });
28
+ setFilter('Demain');
29
+ break;
30
+ case 'thisWeekEnd':
31
+ const startOfWeekEnd = moment().endOf('week').format('YYYY-MM-DD');
32
+ const endOfWeekEnd = moment().endOf('week').add(1, 'days').format('YYYY-MM-DD');
33
+ setDates({ "event_dates.query": [startOfWeekEnd, endOfWeekEnd] });
34
+ setFilter('Ce week-end');
35
+ break;
36
+ case 'thisWeek':
37
+ const endOfWeek = moment().endOf('week').add(1, 'days').format('YYYY-MM-DD');
38
+ setDates({ "event_dates.query": [today, endOfWeek] });
39
+ setFilter('Cette semaine');
40
+ break;
41
+ case 'thisMonth':
42
+ const endOfMonth = moment().endOf('month').format('YYYY-MM-DD');
43
+ setDates({ "event_dates.query": [today, endOfMonth] });
44
+ setFilter('Cette semaine');
45
+ break;
46
+ default:
47
+ break;
48
+ }
49
+ };
50
+ // 2023-02-23
51
+
52
+ return (
53
+ <>
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
64
+ <DatePicker
65
+ selected={startDate}
66
+ onChange={(date) => setStartDate(date)}
67
+ selectsStart
68
+ startDate={startDate}
69
+ 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()
86
+ }}
87
+ >
88
+ Valider
89
+ </button>
90
+ {/* <button onClick={handleApply}>Apply</button> */}
91
+ </div>
92
+ </DropdownButton>
93
+ </div>
94
+ </>
95
+ );
96
+ }
97
+
98
+ export default DateFilter;
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: imio.smartweb.core
3
- Version: 1.2.24
3
+ Version: 1.2.26
4
4
  Summary: Core product for iMio websites
5
5
  Home-page: https://github.com/imio/imio.smartweb.core
6
6
  Author: Christophe Boulanger
@@ -189,6 +189,20 @@ Changelog
189
189
  =========
190
190
 
191
191
 
192
+ 1.2.26 (2024-01-24)
193
+ -------------------
194
+
195
+ - WEB-3802 : Fix Axios Serializer to fix key in object request.
196
+ [thomlamb]
197
+
198
+
199
+ 1.2.25 (2024-01-24)
200
+ -------------------
201
+
202
+ - WEB-3802 : Adding perido filter in event React view
203
+ [thomlamb]
204
+
205
+
192
206
  1.2.24 (2024-01-22)
193
207
  -------------------
194
208
 
@@ -1,4 +1,4 @@
1
- imio.smartweb.core-1.2.24-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
1
+ imio.smartweb.core-1.2.26-py3.10-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
@@ -585,7 +585,7 @@ imio/smartweb/core/webcomponents/README.md,sha256=u-1KMiYzChIOe3BNY1paacCEVsxRit
585
585
  imio/smartweb/core/webcomponents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
586
586
  imio/smartweb/core/webcomponents/babel.config.json,sha256=GLMlFLD4qaaNVuRWogON3geyD75eqVm6cN4RAGwPt3g,194
587
587
  imio/smartweb/core/webcomponents/configure.zcml,sha256=WiA01XuVcc4VgxrvFCztR2nPMCBp2dGIgpIZv6WdJ7s,263
588
- imio/smartweb/core/webcomponents/package.json,sha256=vMBFNJ6udmOqouQl_1NGtMIgVaR5wuYOeEoLJRbHpec,2530
588
+ imio/smartweb/core/webcomponents/package.json,sha256=fT3IsMnOIto9dIDGD6I-niWwpWWYdK4dBHwOVV_Mcfo,2599
589
589
  imio/smartweb/core/webcomponents/postcss.config.js,sha256=C6AOPegqTEkRboXRWl6obj0priHtdSRiApehW4TWp8E,101
590
590
  imio/smartweb/core/webcomponents/webpack.config.js,sha256=ie90xYAH82rUaPv41_7v-eXTDADH55Z-V9v9gptDC6s,6852
591
591
  imio/smartweb/core/webcomponents/webpackPlonePlugin.js,sha256=TWpGoEYRBOKB7o0SJ1F7P0hLYflkNmbODG7ZCyrPjQw,2226
@@ -599,30 +599,32 @@ 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
602
603
  imio/smartweb/core/webcomponents/build/css/323.smartweb-webcomponents-compiled.css,sha256=IgXifdqMDHLh-US9FSsTYPY75eCZgTETHOBUv4KS94E,2546
603
604
  imio/smartweb/core/webcomponents/build/css/363.smartweb-webcomponents-compiled.css,sha256=qmNl1TV7yB-rEb8U9pZkMqfwXooISHJnOPuAwSnOy5Q,20368
604
- imio/smartweb/core/webcomponents/build/css/54.smartweb-webcomponents-compiled.css,sha256=UiRaanRTl9hsewkBRSi7Dqz62z2a-9pZnCUTX-ulZBY,20522
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
608
608
  imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=R14i0Dp6JC2AOtJVaegrZVAe22i9niDnCBKa5vn7QVc,59
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
+ 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=HhUgmspryqboAlgkZkWUtdykmr-NXnIPtFQISvuDch4,36897
611
613
  imio/smartweb/core/webcomponents/build/js/3.smartweb-webcomponents-compiled.js,sha256=zcvVPZnasClLfjNJNDXAk_haPQ4RwnPgXSctB7Qixf8,16020
612
614
  imio/smartweb/core/webcomponents/build/js/3.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
613
- imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js,sha256=P3ty7k9oQ28DCFnvHfzQkz1DG35szEOA3zih_yZzFLI,26760
615
+ imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js,sha256=8HdOjalCzP1LeQisA_nlJYV1J2Fgg-zlkQYKsl0RBTo,26760
614
616
  imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
615
- imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js,sha256=BjivnFwSWTtxnr74LPax8ktagSoyHYZKwTc_mJKJLBg,43481
617
+ imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js,sha256=scBCKqNJiIuRG3e9WJIOAWjBFpZSEx7OX7fZFVn45Ec,43481
616
618
  imio/smartweb/core/webcomponents/build/js/363.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
617
- imio/smartweb/core/webcomponents/build/js/493.smartweb-webcomponents-compiled.js,sha256=cOL--BdlasQ_dOvLzCcG0sDZGUrreOHpksjf_BGl9kE,160064
618
- imio/smartweb/core/webcomponents/build/js/54.smartweb-webcomponents-compiled.js,sha256=8aWFhpY04z4Y7yPgZJgpitI5WQMLE_jd2fKPNXJCw6Q,33499
619
- imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js,sha256=i_QGIUUJGUSD2svXhKuXkycg-BqfZQjoJljUzltX6KA,42746
619
+ imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js,sha256=8I2bAQ6DV0QFPaUyBMAV7F5rdH__ZCY2MYZUV5Ov0pw,42746
620
620
  imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
621
+ imio/smartweb/core/webcomponents/build/js/653.smartweb-webcomponents-compiled.js,sha256=T22v_gZlEHjW12TR3roCn_XUdKDVZa9yb2g-50eFHbo,277798
622
+ imio/smartweb/core/webcomponents/build/js/653.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=tUd9UGffQmBkRHLQk0laQX3euJ0uJQLOS6tylIKc6hI,376
621
623
  imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js,sha256=51GDqoBV0fL0ty2auKpPbs_Xo8yGklTW5rn4k1GtC_Y,159426
622
624
  imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
623
625
  imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js,sha256=0EuJ1Ffqn0pu7Px-9ff-LJymiQ7YpQzWu9pSs2nkyWY,363925
624
626
  imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=ot4CrmvW4r8ZeygP2wflnoqyUUmqSvjGt7WzqhtjPxY,15195
625
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=N2ErTnWZUXmciuyHoMZkXS4MG8SXJUZ33K3MUc_Ogdw,409516
627
+ imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=JbMcZt5dLwOdey64oAr7URxiwD1lfI65WE1ENeWQNuo,409534
626
628
  imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=MWaSlPSODUyzTS-6uhTd6MYi8HGJgjOtFyvm2-GJi4U,1035
627
629
  imio/smartweb/core/webcomponents/src/index.jsx,sha256=WV70VNETdsIMADJ5EqajwxQ6WacMbhw5Z_91fVDti_Y,757
628
630
  imio/smartweb/core/webcomponents/src/index.scss,sha256=1Nw2CweoA3EqyaUt_wGB3fs5XAD_LMQU2zfrMeZn7ks,5511
@@ -649,13 +651,14 @@ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactC
649
651
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
650
652
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=g0jxMjGP_PTnk48sew6pAMl1JgEwappTT8K57i3ngCc,1615
651
653
  imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=Q0Vq2EHYdGdGiYVhgYJAX23He8TSedQtXvRWY-kd9r8,7637
652
- imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=eKa8EnGesP5aDdFCjMJ64lAkWArPCqWM1WW87qNeX8g,8635
654
+ imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=hgQnqMlFEHrKNie0YUApVLZKQ5y0xRN9VQIt3Twc-Cs,8683
653
655
  imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=NYjgqNEJNXNPRYr60dIqt6MxX8Lbkv3GCcBE5K6CpIk,9042
654
656
  imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
655
657
  imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=eQlCR9UgXJATOmXFQzPphNrPP1zcjgKkCdbFmg-W8BU,1649
656
658
  imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=hs2XA8I1Mx5L9SvBfja19ipSUEXqzfmXT1WcEF-TPlQ,16452
657
659
  imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=6k2bIyKd0pzj28NaVhSBJclnEyxdi6iNPbQEHSS5fZk,1600
658
- imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=CkSWsGgrDRF5UBpV9flmS3HeZwKkloXBQ7MuUuq-1TI,6272
660
+ imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=-efkiJrscXsj4l_AlPOe4xflGZNtlYxpdY4daLnkE3I,7216
661
+ imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=_lnSd6SnHYg8GUg8aHfSpB5rssXG52wX6baYdZUJScM,4104
659
662
  imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=aCXLAcBpKHFFUtWMYxrb2u6xP70e622SigUiVm0RMiw,6778
660
663
  imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=1RnZHhLGYzwVWejfw4TbjyTEsiyn_Ajd2SQCF21aiYA,3260
661
664
  imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
@@ -677,10 +680,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=ulMbtvMcmV0Af4lhYtkkSh
677
680
  imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=Ht5NXE7K1HohmDv4BOaE4Z0mhnqtKqYbBuEiP371Uho,73
678
681
  imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=bsTZTvRlBaCImAchnuhZLtLQYC06bM539cPLoAgBMP0,2694
679
682
  imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
680
- imio.smartweb.core-1.2.24.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
681
- imio.smartweb.core-1.2.24.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
682
- imio.smartweb.core-1.2.24.dist-info/METADATA,sha256=UoxvFS8e5iFXLLzuO4o1wc17SudmDQ3MvUNC_XctZZU,47434
683
- imio.smartweb.core-1.2.24.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
684
- imio.smartweb.core-1.2.24.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
685
- imio.smartweb.core-1.2.24.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
686
- imio.smartweb.core-1.2.24.dist-info/RECORD,,
683
+ imio.smartweb.core-1.2.26.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
684
+ imio.smartweb.core-1.2.26.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
685
+ imio.smartweb.core-1.2.26.dist-info/METADATA,sha256=aRP9zAHlg4f-mjMJLv7nfRfQdpT1Nmb6n3pKjBPK26M,47664
686
+ imio.smartweb.core-1.2.26.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
687
+ imio.smartweb.core-1.2.26.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
688
+ imio.smartweb.core-1.2.26.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
689
+ imio.smartweb.core-1.2.26.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- .flexbin{display:flex;flex-wrap:wrap;margin:-2.5px;overflow:hidden}.flexbin:after{content:"";flex-grow:999999999;height:0;min-width:300px}.flexbin>*{display:block;flex-grow:1;height:300px;margin:2.5px;position:relative}.flexbin>*>img{height:300px;max-width:100%;min-width:100%;object-fit:cover;vertical-align:bottom}.flexbin.flexbin-margin{margin:2.5px}@media (max-width:980px){.flexbin{display:flex;flex-wrap:wrap;margin:-2.5px;overflow:hidden}.flexbin:after{content:"";flex-grow:999999999;height:0;min-width:150px}.flexbin>*{display:block;flex-grow:1;height:150px;margin:2.5px;position:relative}.flexbin>*>img{height:150px;max-width:100%;min-width:100%;object-fit:cover;vertical-align:bottom}.flexbin.flexbin-margin{margin:2.5px}}@media (max-width:400px){.flexbin{display:flex;flex-wrap:wrap;margin:-2.5px;overflow:hidden}.flexbin:after{content:"";flex-grow:999999999;height:0;min-width:100px}.flexbin>*{display:block;flex-grow:1;height:100px;margin:2.5px;position:relative}.flexbin>*>img{height:100px;max-width:100%;min-width:100%;object-fit:cover;vertical-align:bottom}.flexbin.flexbin-margin{margin:2.5px}}.leaflet-container{height:100vh}.leaflet-popup{padding:0}.leaflet-image-layer,.leaflet-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane,.leaflet-pane>canvas,.leaflet-pane>svg,.leaflet-tile,.leaflet-tile-container,.leaflet-zoom-box{left:0;position:absolute;top:0}.leaflet-container{overflow:hidden}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile{-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{height:1600px;-webkit-transform-origin:0 0;width:1600px}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-height:none!important;max-width:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer{max-height:none!important;max-width:none!important;padding:0;width:auto}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{-moz-box-sizing:border-box;box-sizing:border-box;height:0;width:0;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{height:1px;width:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{pointer-events:visiblePainted;pointer-events:auto;position:relative;z-index:800}.leaflet-bottom,.leaflet-top{pointer-events:none;position:absolute;z-index:1000}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{clear:both;float:left}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-pan-anim .leaflet-tile,.leaflet-zoom-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-control,.leaflet-popup-pane{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-image-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-image-layer.leaflet-interactive,.leaflet-marker-icon.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{background:hsla(0,0%,100%,.5);border:2px dotted #38f}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{border-radius:4px;box-shadow:0 1px 5px rgba(0,0,0,.65)}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;color:#000;display:block;height:26px;line-height:26px;text-align:center;text-decoration:none;width:26px}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:focus,.leaflet-bar a:hover{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom:none;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.leaflet-bar a.leaflet-disabled{background-color:#f4f4f4;color:#bbb;cursor:default}.leaflet-touch .leaflet-bar a{height:30px;line-height:30px;width:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{background:#fff;border-radius:5px;box-shadow:0 1px 5px rgba(0,0,0,.4)}.leaflet-control-layers-toggle{background-image:url(../assets/layers.416d91365b44e4b4f4777663e6f009f3.png);height:36px;width:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(../assets/layers-2x.8f2c4d11474275fbc1614b9098334eae.png);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{height:44px;width:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{background:#fff;color:#333;padding:6px 10px 6px 6px}.leaflet-control-layers-scrollbar{overflow-x:hidden;overflow-y:scroll;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{border-top:1px solid #ddd;height:0;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(../assets/marker-icon.2b3e1faf89f94a4835397e7a43b4f77d.png)}.leaflet-container .leaflet-control-attribution{background:#fff;background:hsla(0,0%,100%,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{color:#333;line-height:1.4;padding:0 5px}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:focus,.leaflet-control-attribution a:hover{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;height:.6669em;vertical-align:baseline!important;width:1em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{background:hsla(0,0%,100%,.8);border:2px solid #777;border-top:none;-moz-box-sizing:border-box;box-sizing:border-box;line-height:1.1;padding:2px 5px 1px;text-shadow:1px 1px #fff;white-space:nowrap}.leaflet-control-scale-line:not(:first-child){border-bottom:none;border-top:2px solid #777;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers{box-shadow:none}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-layers{background-clip:padding-box;border:2px solid rgba(0,0,0,.2)}.leaflet-popup{margin-bottom:20px;position:absolute;text-align:center}.leaflet-popup-content-wrapper{border-radius:12px;padding:1px;text-align:left}.leaflet-popup-content{font-size:13px;font-size:1.08333em;line-height:1.3;margin:13px 24px 13px 20px;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{height:20px;left:50%;margin-left:-20px;margin-top:-1px;overflow:hidden;pointer-events:none;position:absolute;width:40px}.leaflet-popup-tip{height:17px;margin:-10px auto 0;padding:1px;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);width:17px}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;box-shadow:0 3px 14px rgba(0,0,0,.4);color:#333}.leaflet-container a.leaflet-popup-close-button{background:transparent;border:none;color:#757575;font:16px/24px Tahoma,Verdana,sans-serif;height:24px;position:absolute;right:0;text-align:center;text-decoration:none;top:0;width:24px}.leaflet-container a.leaflet-popup-close-button:focus,.leaflet-container a.leaflet-popup-close-button:hover{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678,M12=0.70710678,M21=-0.70710678,M22=0.70710678);margin:0 auto;width:24px}.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{background-color:#fff;border:1px solid #fff;border-radius:3px;box-shadow:0 1px 3px rgba(0,0,0,.4);color:#222;padding:6px;pointer-events:none;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before,.leaflet-tooltip-top:before{background:transparent;border:6px solid transparent;content:"";pointer-events:none;position:absolute}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{border-top-color:#fff;bottom:0;margin-bottom:-12px}.leaflet-tooltip-bottom:before{border-bottom-color:#fff;margin-left:-6px;margin-top:-12px;top:0}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{margin-top:-6px;top:50%}.leaflet-tooltip-left:before{border-left-color:#fff;margin-right:-12px;right:0}.leaflet-tooltip-right:before{border-right-color:#fff;left:0;margin-left:-12px}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}body,html{max-width:100%;overflow-x:initial!important}.row{margin:0}.breadcrumb,.row{padding:0}body .outer-wrapper>.container{max-width:100%!important;padding:0!important}@media screen and (min-width:1200px){.r-annuaire-wrapper{margin-right:inherit;max-width:100%;padding-left:0;padding-right:0}}#portal-column-content{padding:0!important}.r-result-filter-container{background:#fff;z-index:1}@media screen and (min-width:1200px){.r-result-filter-container{position:-webkit-sticky;position:sticky}}.annuaire-result-filter{padding:0 .75rem}#portal-column-content h1{font-size:0;position:absolute}#viewlet-below-content-description,#viewlet-below-content-title{display:none}header#content-header{background:#fff;position:-webkit-sticky;position:sticky;top:0}article>header{margin-bottom:0}.r-annuaire-result{grid-area:1/1/3/2}.r-map.annuaire-map{grid-area:1/2/2/3;position:-webkit-sticky;position:sticky}.r-results-numbers{margin-bottom:.5rem;width:100%}.r-results-numbers span{font-weight:700}.r-wrapper{display:block}@media screen and (min-width:1200px){.r-wrapper{display:grid;gap:40px;grid-template-columns:minmax(20px,800px) minmax(20px,100%);justify-content:space-between;margin-left:auto;width:calc(558px + 50vw)}}@media screen and (min-width:1400px){.r-wrapper{width:calc(648px + 50vw)}}.r-wrapper .r-result{margin-top:2rem;padding-bottom:2rem}.r-wrapper .r-result-filter{display:flex;gap:20px}.r-wrapper .r-result-filter .r-filter{width:100%}.r-wrapper .r-result-list{padding:0}.r-wrapper .r-result-list .r-list-item-group{list-style:none;margin:1rem 0;position:relative}.r-wrapper .r-result-list .r-list-item-group .r-list-item-link{inset:0!important;position:absolute!important}.r-wrapper .r-result-list .r-list-item-group .r-list-item{display:flex;flex-direction:column;height:100%}@media screen and (min-width:600px){.r-wrapper .r-result-list .r-list-item-group .r-list-item{flex-direction:row}}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-img{background-size:cover;padding-bottom:56%;width:100%}@media screen and (min-width:600px){.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-img{height:149px;padding-bottom:0;width:246px}}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text{flex-grow:1;margin-top:.6rem}@media screen and (min-width:600px){.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text{margin-left:1.5rem;margin-top:0}}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text a{position:relative}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-title{display:block;font-weight:700}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-categorie{display:block}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all{display:flex;gap:10px}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all .r-item-adresse{width:36%}@media screen and (max-width:1200px){.r-wrapper .r-map{margin-top:2rem!important}.r-wrapper .r-map .leaflet-container{height:50vh!important}}.r-load-more{margin-bottom:2rem;text-align:center}.r-load-more button{background:#000;border:1px solid transparent;border-radius:10px;border-bottom-left-radius:10px;border-bottom-left-radius:0;color:#fff;display:block;font-size:14px;font-weight:700;margin:0 auto;padding:.4rem 1rem}.r-load-more button:hover{background:rgba(0,0,0,.871)}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-img{border-radius:15px 15px 15px 0}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text{font-size:13px}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text:after{background:#ff0;border-radius:50px;content:"";height:50px;width:50px}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-title{font-size:18px}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-categorie{color:#747474;font-weight:400;margin-bottom:5px;text-transform:uppercase}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all{color:#727272}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all a{color:#000}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all .r-item-adresse .itineraty{margin-top:5px}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all .r-item-adresse .itineraty:before{background-size:contain;background:url(../assets/location-bla.1423bcce16ddcb21141430cac1428dc1.svg) no-repeat;content:"";display:inline-block;height:15px;vertical-align:middle;width:15px}.r-wrapper .r-result-list .r-list-item-group .r-list-item .r-item-text .r-item-all .r-item-contact{width:100%}.icon-baseline{align-self:center;display:inline-flex;margin-right:.4rem}.icon-baseline svg{height:1em;position:relative;top:.125em;width:1em}.dpinlb{display:inline-block;vertical-align:top}.r-content-img{padding-bottom:60%}.r-content-title{margin:1rem 0}.news-info-title{color:#008fd2;display:block;font-weight:700;margin-bottom:1rem}.r-content-news-info{display:flex;flex-wrap:wrap;justify-content:space-between;margin-bottom:2rem}@media screen and (min-width:600px){.r-content-news-info-container{-webkit-column-count:2;column-count:2}}.r-content-news-info-container>div{-webkit-column-break-inside:avoid;break-inside:avoid;margin:.6rem 0;padding-right:3rem}.r-content-news-info-container>div svg{width:16px}.r-content-news-info-container .r-content-news-info--date{display:flex}.r-content-news-info-container .r-content-news-info--date .r-content-date-end,.r-content-news-info-container .r-content-news-info--date .r-content-date-start,.r-content-news-info-container .r-content-news-info--date .r-content-date-start-hours{display:flex;flex-wrap:wrap}.r-content-news-info-container .r-content-news-info-social svg{height:30px;width:30px}.r-content-news-info-container .r-content-news-info-social ul{align-items:center;display:flex;margin:0}.r-content-news-info-container .r-content-news-info-social ul li{list-style:none}.r-content-news-info-container .r-content-news-info-social ul li a:hover{opacity:.7}@media screen and (max-width:1000px){.r-content-news-info-action{margin-top:1.1rem}}.r-content-news-info-action a{text-decoration:none}.r-content-news-info-action>div{margin:.6rem 0}.r-content-news-info-action .r-content-booking{margin-top:0}.r-content-news-info-action .r-content-booking a{align-items:center;background:#000;border-radius:10px;border-bottom-left-radius:0;color:#fff;cursor:pointer;display:block;display:flex;font-weight:500;gap:10px;padding:.4rem 1rem;text-decoration:none}.r-content-news-info-action .r-content-booking a svg{fill:#fff;width:22px}.r-content-news-info-action .r-content-booking a:hover{background:#3f3f3f;color:#fff}@media screen and (min-width:600px){.no-map .r-annuaire-wrapper{display:block}.no-map .r-result-list{display:grid;gap:20px;grid-template-columns:1fr 1fr 1fr;max-width:1296px}.no-map .r-list-item-group{transition:all .2s ease}.no-map .r-list-item-group:focus,.no-map .r-list-item-group:hover{-webkit-transform:translateY(-10px)!important;transform:translateY(-10px)!important}.no-map .r-list-item-group .r-list-item{box-shadow:0 8px 26px rgba(0,0,0,.08);flex-direction:column!important}.no-map .r-list-item-group .r-list-item .r-item-img{border-radius:0!important;height:0!important;margin-bottom:.5rem;padding-bottom:60%!important;width:100%!important}.no-map .r-list-item-group .r-list-item .r-item-text{display:grid;grid-template-columns:1fr 1fr;margin-right:1.5rem}.no-map .r-list-item-group .r-list-item .r-item-text:after{display:none}.no-map .r-list-item-group .r-list-item .r-item-text .r-item-categorie{grid-row-start:1}.no-map .r-list-item-group .r-list-item .r-item-text .r-item-title{font-weight:500!important;grid-column-end:3;grid-column-start:1;grid-row-start:2;margin-bottom:2rem;margin-top:1rem}.no-map .r-list-item-group .r-list-item .r-item-text .r-item-date{grid-column-start:2;grid-row-start:1;justify-self:end}}.no-map .r-result.r-annuaire-result{max-width:1296px}.no-map .envent-content{margin:0 auto;max-width:700px}