@eeacms/volto-cca-policy 0.2.99 → 0.3.0
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.
- package/CHANGELOG.md +31 -8
- package/locales/bg/LC_MESSAGES/volto.po +5 -95
- package/locales/cs/LC_MESSAGES/volto.po +5 -95
- package/locales/de/LC_MESSAGES/volto.po +5 -95
- package/locales/en/LC_MESSAGES/volto.po +5 -95
- package/locales/es/LC_MESSAGES/volto.po +5 -95
- package/locales/et/LC_MESSAGES/volto.po +5 -95
- package/locales/fi/LC_MESSAGES/volto.po +5 -95
- package/locales/fr/LC_MESSAGES/volto.po +5 -95
- package/locales/ga/LC_MESSAGES/volto.po +5 -95
- package/locales/hr/LC_MESSAGES/volto.po +5 -95
- package/locales/hu/LC_MESSAGES/volto.po +5 -95
- package/locales/it/LC_MESSAGES/volto.po +5 -95
- package/locales/lt/LC_MESSAGES/volto.po +5 -95
- package/locales/nl/LC_MESSAGES/volto.po +5 -95
- package/locales/pl/LC_MESSAGES/volto.po +5 -95
- package/locales/pt/LC_MESSAGES/volto.po +5 -95
- package/locales/ro/LC_MESSAGES/volto.po +5 -95
- package/locales/sl/LC_MESSAGES/volto.po +5 -95
- package/locales/volto.pot +6 -96
- package/package.json +1 -1
- package/src/components/manage/Blocks/Listing/EventCardsListingView.jsx +136 -161
- package/src/components/manage/Blocks/Listing/styles.less +46 -16
- package/src/customizations/volto/components/manage/UniversalLink/UniversalLink.jsx +19 -10
- package/src/customizations/volto/components/manage/UniversalLink/UniversalLink.test.jsx +3 -3
- package/src/helpers/index.js +3 -0
- package/src/search/{config.js → cca/config.js} +15 -2
- package/src/search/{facets.js → cca/facets.js} +1 -1
- package/src/search/common.js +7 -3
- package/src/search/index.js +8 -7
- package/theme/assets/images/eea-logo.svg +1 -0
- package/theme/globals/site.variables +1 -0
- /package/src/search/{views.js → cca/views.js} +0 -0
|
@@ -58,10 +58,10 @@ const UniversalLink = ({
|
|
|
58
58
|
|
|
59
59
|
//case: item of type 'File'
|
|
60
60
|
if (
|
|
61
|
-
|
|
61
|
+
download &&
|
|
62
62
|
config.settings.downloadableObjects.includes(item['@type'])
|
|
63
63
|
) {
|
|
64
|
-
url = `${url}/@@download/file`;
|
|
64
|
+
url = url.includes('/@@download/file') ? url : `${url}/@@download/file`;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
if (
|
|
@@ -73,15 +73,21 @@ const UniversalLink = ({
|
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
+
if (download && isInternalURL(url)) {
|
|
77
|
+
url = url.includes('/@@download/file') ? url : `${url}/@@download/file`;
|
|
78
|
+
}
|
|
79
|
+
|
|
76
80
|
const isExternal = !isInternalURL(url);
|
|
81
|
+
const isDownload =
|
|
82
|
+
(!isExternal && url && url.includes('@@download')) || download;
|
|
77
83
|
|
|
78
|
-
const isDownload = (!isExternal && url.includes('@@download')) || download;
|
|
79
84
|
const isDisplayFile =
|
|
80
85
|
(!isExternal && url.includes('@@display-file')) || false;
|
|
81
|
-
|
|
82
86
|
const checkedURL = URLUtils.checkAndNormalizeUrl(url);
|
|
83
87
|
|
|
84
|
-
|
|
88
|
+
// we can receive an item with a linkWithHash property set from ObjectBrowserWidget
|
|
89
|
+
// if so, we use that instead of the url prop
|
|
90
|
+
url = (item && item['linkWithHash']) || checkedURL.url;
|
|
85
91
|
let tag = (
|
|
86
92
|
<Link
|
|
87
93
|
to={flattenToAppURL(url)}
|
|
@@ -95,16 +101,18 @@ const UniversalLink = ({
|
|
|
95
101
|
</Link>
|
|
96
102
|
);
|
|
97
103
|
|
|
98
|
-
const isBlank =
|
|
99
|
-
(isExternal || openLinkInNewTab) &&
|
|
100
|
-
(!checkedURL.isMail || !checkedURL.isTelephone);
|
|
101
|
-
|
|
102
104
|
if (isExternal) {
|
|
103
105
|
tag = (
|
|
104
106
|
<a
|
|
105
107
|
href={url}
|
|
106
108
|
title={title}
|
|
107
|
-
target={
|
|
109
|
+
target={
|
|
110
|
+
!checkedURL.isMail &&
|
|
111
|
+
!checkedURL.isTelephone &&
|
|
112
|
+
!(openLinkInNewTab === false)
|
|
113
|
+
? '_blank'
|
|
114
|
+
: null
|
|
115
|
+
}
|
|
108
116
|
rel="noopener"
|
|
109
117
|
className={className}
|
|
110
118
|
{...props}
|
|
@@ -129,6 +137,7 @@ const UniversalLink = ({
|
|
|
129
137
|
<a
|
|
130
138
|
href={flattenToAppURL(url)}
|
|
131
139
|
title={title}
|
|
140
|
+
target={!(openLinkInNewTab === false) ? '_blank' : null}
|
|
132
141
|
rel="noopener"
|
|
133
142
|
className={className}
|
|
134
143
|
{...props}
|
|
@@ -120,9 +120,9 @@ describe('UniversalLink', () => {
|
|
|
120
120
|
</Provider>,
|
|
121
121
|
);
|
|
122
122
|
|
|
123
|
-
expect(
|
|
124
|
-
'
|
|
125
|
-
);
|
|
123
|
+
expect(
|
|
124
|
+
getByTitle('Volto GitHub repository').getAttribute('target'),
|
|
125
|
+
).toBeNull();
|
|
126
126
|
});
|
|
127
127
|
|
|
128
128
|
it('check UniversalLink renders ext link for blacklisted urls', () => {
|
package/src/helpers/index.js
CHANGED
|
@@ -35,6 +35,9 @@ export const serializeText = (text) => {
|
|
|
35
35
|
return isArray(text) ? serializeNodes(text) : text;
|
|
36
36
|
};
|
|
37
37
|
|
|
38
|
+
export const capitalizeFirstLetter = (str) =>
|
|
39
|
+
str.charAt(0).toUpperCase() + str.slice(1).toLowerCase();
|
|
40
|
+
|
|
38
41
|
export const makeContributionsSearchQuery = (props) => {
|
|
39
42
|
const { id } = props;
|
|
40
43
|
const organisation = OBSERVATORY_PARTNERS[id];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { mergeConfig } from '@eeacms/search';
|
|
2
|
-
import { getClientProxyAddress } from '
|
|
3
|
-
import vocabs from '
|
|
2
|
+
import { getClientProxyAddress } from '../utils';
|
|
3
|
+
import vocabs from '../vocabulary';
|
|
4
4
|
|
|
5
5
|
import facets from './facets';
|
|
6
6
|
import views from './views';
|
|
@@ -115,6 +115,19 @@ export default function installMainSearch(config) {
|
|
|
115
115
|
},
|
|
116
116
|
});
|
|
117
117
|
|
|
118
|
+
// ccaSearch.permanentFilters.push((filters) => {
|
|
119
|
+
// const hasLanguageFilter = filters.find(({ field }) => field === 'language');
|
|
120
|
+
// console.log('permanentFilters', hasLanguageFilter, filters);
|
|
121
|
+
// if (!hasLanguageFilter) {
|
|
122
|
+
// return {
|
|
123
|
+
// terms: {
|
|
124
|
+
// language: ['en'],
|
|
125
|
+
// },
|
|
126
|
+
// };
|
|
127
|
+
// }
|
|
128
|
+
// return null;
|
|
129
|
+
// });
|
|
130
|
+
|
|
118
131
|
// ccaSearch.permanentFilters.push({
|
|
119
132
|
// terms: {
|
|
120
133
|
// objectProvides: [
|
package/src/search/common.js
CHANGED
|
@@ -136,9 +136,13 @@ export const language = {
|
|
|
136
136
|
isFilterable: false,
|
|
137
137
|
show: 10000,
|
|
138
138
|
isMulti: true,
|
|
139
|
-
default: {
|
|
140
|
-
|
|
141
|
-
|
|
139
|
+
default: (options) => {
|
|
140
|
+
const { language } = options || {};
|
|
141
|
+
// console.log('options', options);
|
|
142
|
+
return {
|
|
143
|
+
values: [language || 'en'],
|
|
144
|
+
type: 'any',
|
|
145
|
+
};
|
|
142
146
|
},
|
|
143
147
|
facetValues: [
|
|
144
148
|
'de',
|
package/src/search/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import installMainSearch from './config';
|
|
1
|
+
import installMainSearch from './cca/config';
|
|
2
2
|
import installHealthSearch from './health_observatory/config-health';
|
|
3
3
|
import installMissionStoriesSearch from './mission_stories/config-stories';
|
|
4
4
|
import installMissionToolsSearch from './mission_tools/config-tools';
|
|
@@ -37,12 +37,13 @@ const applyConfig = (config) => {
|
|
|
37
37
|
installMissionAllSearch,
|
|
38
38
|
].reduce((acc, cur) => cur(acc), config.settings.searchlib);
|
|
39
39
|
|
|
40
|
-
config.settings.searchlib.searchui
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
40
|
+
const searchui = config.settings.searchlib.searchui;
|
|
41
|
+
searchui.ccaSearch.extraQueryParams = extraQueryParams;
|
|
42
|
+
searchui.ccaHealthSearch.extraQueryParams = extraQueryParams;
|
|
43
|
+
searchui.missionProjects.extraQueryParams = extraQueryParams;
|
|
44
|
+
searchui.missionStoriesSearch.extraQueryParams = extraQueryParams;
|
|
45
|
+
searchui.missionToolsSearch.extraQueryParams = extraQueryParams;
|
|
46
|
+
searchui.missionAll.extraQueryParams = extraQueryParams;
|
|
46
47
|
|
|
47
48
|
// console.log(config.settings.searchlib);
|
|
48
49
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.2" viewBox="0 0 350 129" width="350" height="129"><style>.a{fill:#004b7f}.b{fill:#007b6c}</style><path class="a" d="m62.4 95.3c-4.1 0-7.9-0.9-11.5-2.5l4.1-7.5c2.3 1 4.8 1.5 7.4 1.5 11.1 0 20-9.5 20-21.2 0-6.7-3.3-12.4-7.9-16.3l4.4-7.8c1.2 0.9 2.3 1.9 3.4 3 5.3 5.6 8.2 13.1 8.2 21.1 0 16.4-12.6 29.7-28.1 29.7z"/><path class="b" d="m69.9 46.5l-0.2 0.2-0.3-0.1c-0.5-0.3-1-0.5-1.6-0.7q-0.7-0.2-1.5-0.4l-0.2-0.1-0.1-0.3c-2.5-9.5 1.8-24.7 10.1-36 1.6-2.2 3.3-4.1 5-5.8l0.6-0.5 0.1 0.8q0.7 3.6 0.8 7.7c0.1 14.2-5.2 29-12.7 35.2z"/><path class="b" d="m58.6 7.5c6.1 12.6 7.5 28.4 3.3 37.5l-0.1 0.2h-0.3c-0.5 0.1-1.1 0.1-1.7 0.2q-0.7 0.1-1.5 0.4h-0.3l-0.1-0.2c-6.3-7.4-8.8-23-6.1-37 0.6-2.7 1.3-5.3 2.1-7.6l0.3-0.8 0.5 0.7c1.4 1.9 2.7 4.2 3.9 6.6z"/><path class="b" d="m53.3 47.4v0.3l-0.2 0.1q-0.8 0.5-1.5 1-0.7 0.4-1.2 1l-0.2 0.2-0.3-0.1c-8.7-3.8-17.5-16.6-20.9-30.4q-1-4.1-1.3-7.8l-0.1-0.8 0.7 0.3c2.1 1.1 4.2 2.5 6.3 4.1 10.7 8.5 18.6 22 18.7 32.1z"/><path class="b" d="m8.7 33.5l-0.4-0.7h0.8c2.2 0 4.7 0.3 7.3 0.8 13.2 2.5 25.9 11 30.1 20l0.1 0.2-0.1 0.2c-0.4 0.5-0.7 1.1-0.9 1.6q-0.4 0.7-0.7 1.5l-0.1 0.2-0.3 0.1c-9.4 0.7-22.6-6.7-31.5-17.5-1.7-2.1-3.2-4.2-4.3-6.4z"/><path class="b" d="m7.2 65.6c-2.4-1-4.6-2.3-6.6-3.6l-0.6-0.5 0.7-0.3c2-1.1 4.4-2 6.8-2.8 13-3.8 27.9-2.2 35.5 3.9l0.2 0.2v0.3c-0.1 0.6-0.2 1.2-0.2 1.8q0 0.8 0 1.6l0.1 0.3-0.3 0.1c-8.1 5-23 4.6-35.6-1z"/><path class="b" d="m12.7 91.6q-3.9 0.3-7.4-0.1l-0.8-0.1 0.5-0.7c1.4-2 3.1-3.9 5-5.7 10-9.4 24-15 33.4-13.1l0.2 0.1 0.1 0.3q0.3 0.8 0.6 1.7c0.2 0.5 0.4 0.9 0.7 1.4l0.1 0.3-0.1 0.2c-5.2 8.3-18.7 14.9-32.3 15.7z"/><path class="b" d="m50.8 82.6l0.2 0.2v0.3c-1.2 9.8-10.6 22.1-22.4 29.2-2.3 1.3-4.6 2.5-6.8 3.3l-0.7 0.3 0.1-0.9c0.5-2.4 1.2-4.9 2.2-7.4 4.9-13.2 15.2-24.7 24.4-27.4h0.3l0.2 0.2q0.6 0.7 1.2 1.3c0.4 0.3 0.8 0.6 1.3 0.9z"/><path class="a" d="m102.5 75.8c-0.7 3.2-0.2 1.5-1.2 4.5 3.2 2.1 7.7 5.3 10.5 8.3 1.5 1.6 2.9 3.3 4 4.9q-1.8 4-4.2 7.6c-1.9-0.1-4.1-0.6-6.2-1.1-3.9-1-8.8-3.5-12.1-5.3-2 2.4-0.9 1.2-3.1 3.4 1.9 3.4 4.4 8.5 5.6 12.5 0.6 2.1 1.1 4.2 1.4 6.1-2.3 1.7-4.7 3.3-7.2 4.7-1.6-1-3.4-2.4-4.9-3.9-3-2.8-6.2-7.5-8.4-10.8-2.9 1.2-1.3 0.8-4.2 1.6 0.1 3.9 0.1 9.7-0.7 13.8-0.3 2-0.8 4.3-1.4 6-2.7 0.4-8.5 0.6-8.7 0.6-0.8-1.6-1.6-3.8-2.3-5.8-1.4-4-2.2-9.7-2.6-13.7-3.1-0.4-1.5 0-4.4-0.8-1.7 3.6-4.2 8.7-6.7 11.9-1.3 1.6-2.6 3-3.9 4.3q-3.1-1.2-6.1-2.8l13-23.7c4.2 1.9 8.9 3 13.6 3 9 0 17.5-3.7 23.8-10.4 6.4-6.7 9.9-15.7 9.9-25.2 0-9.5-3.5-18.4-9.9-25.1q-1.8-2-3.9-3.6l12.9-23.5c1.9 1.3 3.7 2.7 5.5 4.3-0.4 2-0.8 3.8-1.6 6-1.3 4-4.2 8.9-6.3 12.2 2.2 2.4 1.2 1.1 2.9 3.6 3.5-1.6 8.5-3.8 12.4-4.5 2.1-0.5 4.1-0.7 6-0.7q2.1 3.8 3.6 7.9c-1.2 1.6-2.6 3.2-4.2 4.8-2.9 2.8-7.7 5.7-11 7.6 0.9 3.2 0.5 1.5 1 4.6 3.7 0.3 9.1 0.9 12.9 2.1 2 0.7 4 1.6 5.7 2.5 0 0.7 0 6.4-0.2 8.7-1.8 0.8-3.9 1.5-6.1 2.1-3.8 1.1-9.3 1.2-13.2 1.3z"/><path d="m171.9 29.4h-9.7v6.5h11.4v4.1h-16.5v-24.5h16.5v4.1h-11.4v5.8h9.7z"/><path d="m186.9 38.1q-1.8 2.2-5 2.2-2.9 0-4.5-1.6-1.5-1.7-1.5-5v-11.9h4.8v11.8q0 2.8 2.6 2.8 2.4 0 3.4-1.7v-12.9h4.9v18.2h-4.6z"/><path d="m205.5 26.4q-1-0.2-1.7-0.2-2.8 0-3.7 1.9v11.9h-4.8v-18.2h4.6l0.1 2.2c1-1.7 2.4-2.5 4.1-2.5q0.8 0 1.5 0.2z"/><path fill-rule="evenodd" d="m206.5 30.7q0-2.7 1-4.8 1.1-2.1 3-3.3c1.3-0.7 2.8-1.1 4.6-1.1 2.4 0 4.5 0.7 6 2.2 1.6 1.5 2.4 3.6 2.6 6.1v1.2q0 4.2-2.3 6.7c-1.6 1.7-3.7 2.6-6.3 2.6q-4 0-6.3-2.6c-1.6-1.6-2.4-3.9-2.4-6.8v-0.2zm4.9 0.4q0 2.6 1 3.9c0.6 1 1.6 1.4 2.8 1.4q1.7 0 2.8-1.3 1-1.4 1-4.3 0-2.6-1-4-1-1.4-2.8-1.4-1.8 0-2.8 1.4-1 1.4-1 4.3z"/><path fill-rule="evenodd" d="m243.2 31.1q0 4.2-2 6.7c-1.3 1.7-3 2.5-5.1 2.5q-2.8 0-4.5-1.9v8.6h-4.9v-25.2h4.5l0.2 1.8q1.8-2.1 4.6-2.1 3.4 0 5.3 2.5 1.8 2.4 1.9 6.8zm-4.9-0.4c0-1.7-0.3-2.9-0.9-3.9-0.6-0.9-1.5-1.3-2.6-1.3-1.6 0-2.6 0.5-3.2 1.7v7.4q0.9 1.8 3.2 1.8c2.3 0 3.5-1.9 3.5-5.7z"/><path fill-rule="evenodd" d="m254.6 40.3q-4 0-6.6-2.4c-1.6-1.6-2.5-3.8-2.5-6.5v-0.5q0-2.7 1.1-4.9 1-2.2 3-3.3 1.9-1.2 4.4-1.2 3.8 0 5.9 2.4 2.2 2.3 2.2 6.6v2h-11.6c0.1 1.2 0.6 2.1 1.4 2.9q1.2 1 3 1 2.8 0 4.4-2l2.4 2.7c-0.7 1-1.7 1.8-2.9 2.4-1.4 0.5-2.7 0.8-4.2 0.8zm-0.6-14.9q-1.4 0-2.3 1-1 1-1.2 2.8h6.8v-0.4q-0.1-1.6-0.9-2.5-0.9-0.9-2.4-0.9z"/><path fill-rule="evenodd" d="m275.4 40c-0.2-0.4-0.4-1-0.5-1.7q-1.8 2-4.6 2-2.7 0-4.5-1.6-1.7-1.5-1.7-3.9 0-2.8 2.1-4.4 2.2-1.5 6.3-1.6h2.2v-1q0-1.3-0.6-2-0.7-0.7-2.1-0.7-1.2 0-1.9 0.6-0.7 0.5-0.7 1.6h-4.9q0-1.6 1-3 0.9-1.3 2.7-2c1.2-0.5 2.6-0.8 4-0.8q3.4 0 5.4 1.7c1.3 1.1 2 2.7 2 4.7v7.9c0 1.7 0.2 3 0.7 3.9v0.3zm-4-3.4c0.7 0 1.4-0.1 2-0.5q0.9-0.5 1.3-1.3v-3.1h-1.8q-3.7 0-3.9 2.5v0.3q0 0.9 0.7 1.5 0.5 0.6 1.7 0.6z"/><path d="m287.8 21.8l0.1 2.1q2-2.4 5.3-2.4c1.9 0 3.3 0.5 4.3 1.7 0.9 1.1 1.4 2.8 1.4 5v11.8h-4.9v-11.6q0.1-1.6-0.6-2.3-0.7-0.7-2.3-0.7c-1.4 0-2.3 0.6-3.1 1.7v12.8h-4.8v-18.1h4.6z"/><path d="m171.9 66.9h-9.7v6.6h11.4v4h-16.5v-24.4h16.5v4.1h-11.4v5.8h9.7z"/><path d="m180.7 59.4l0.2 2.1q1.9-2.5 5.2-2.5c1.9 0 3.4 0.6 4.3 1.7 1 1.2 1.4 2.9 1.5 5.1v11.7h-4.9v-11.6q0-1.5-0.7-2.2-0.7-0.7-2.2-0.7c-1.4 0-2.4 0.5-3.1 1.7v12.8h-4.9v-18.1h4.6z"/><path d="m202.4 71.6l3.4-12.2h5.1l-6.2 18.1h-4.7l-6.1-18.1h5.1z"/><path d="m213 54.7c0-0.8 0.2-1.3 0.7-1.8 0.5-0.5 1.1-0.7 2-0.7q1.2 0 2 0.7 0.7 0.7 0.7 1.8 0 1.1-0.7 1.8-0.8 0.7-2 0.7-1.2 0-2-0.7-0.7-0.7-0.7-1.8zm0.3 4.7h4.8v18.1h-4.8z"/><path d="m232.4 63.9q-1-0.1-1.8-0.1-2.7 0-3.6 1.9v11.8h-4.9v-18.1h4.6l0.2 2.2c0.9-1.7 2.3-2.6 4-2.6q0.8 0 1.5 0.3z"/><path fill-rule="evenodd" d="m233.4 68.3q0-2.7 1-4.8 1.1-2.2 3-3.3c1.3-0.8 2.8-1.2 4.6-1.2 2.4 0 4.5 0.8 6 2.3 1.6 1.5 2.4 3.5 2.6 6.1v1.2q0 4.2-2.3 6.7c-1.6 1.7-3.7 2.5-6.3 2.5q-4 0-6.3-2.5c-1.6-1.7-2.4-4-2.4-6.8v-0.2zm4.9 0.3q0 2.6 1 4c0.6 0.9 1.6 1.4 2.8 1.4q1.7 0 2.8-1.3 1-1.4 0.9-4.4 0.1-2.5-0.9-3.9-1.1-1.4-2.9-1.4-1.7 0-2.7 1.4-1 1.3-1 4.2z"/><path d="m258.1 59.4l0.2 2.1q1.9-2.5 5.2-2.5c1.9 0 3.4 0.6 4.3 1.7 1 1.2 1.4 2.9 1.5 5.1v11.7h-4.9v-11.6q0-1.5-0.7-2.2-0.7-0.7-2.2-0.7c-1.4 0-2.4 0.5-3.1 1.7v12.8h-4.9v-18.1h4.6z"/><path d="m277.5 59.4l0.2 2q1.9-2.4 5.2-2.4 3.5 0 4.8 2.8 1.9-2.8 5.5-2.8 3 0 4.4 1.8 1.5 1.7 1.5 5.2v11.5h-4.9v-11.5q0-1.6-0.6-2.3-0.6-0.7-2.1-0.7-2.2 0-3.1 2.1v12.4h-4.8v-11.5q0-1.6-0.7-2.3-0.6-0.7-2.1-0.7-2.1 0-3 1.7v12.8h-4.9v-18.1z"/><path fill-rule="evenodd" d="m311.2 77.9q-4 0-6.5-2.4c-1.7-1.7-2.5-3.9-2.5-6.6v-0.4q0-2.7 1-4.9 1.1-2.2 3.1-3.4 1.9-1.1 4.4-1.1 3.7 0 5.9 2.3 2.1 2.4 2.1 6.7v2h-11.6c0.2 1.1 0.7 2.1 1.5 2.8q1.1 1.1 3 1.1 2.8 0 4.4-2l2.4 2.6c-0.8 1.1-1.7 1.9-3 2.4-1.2 0.6-2.7 0.9-4.2 0.9zm-0.5-14.9q-1.5 0-2.4 1c-0.6 0.6-1 1.6-1.1 2.8h6.7v-0.4q0-1.6-0.9-2.5-0.8-0.9-2.3-0.9z"/><path d="m326 59.4l0.1 2.1q2-2.5 5.2-2.5c1.9 0 3.4 0.6 4.3 1.7 1 1.2 1.5 2.9 1.5 5.1v11.7h-4.9v-11.6q0-1.5-0.7-2.2-0.7-0.7-2.2-0.7c-1.4 0-2.4 0.5-3.1 1.7v12.8h-4.9v-18.1h4.7z"/><path d="m346.6 54.9v4.5h3.2v3.5h-3.2v9.1q0 1 0.4 1.5 0.4 0.4 1.5 0.4c0.5 0 1 0 1.4-0.1v3.7c-0.9 0.3-1.9 0.4-2.9 0.4q-5.1 0-5.3-5.1v-9.8h-2.6v-3.6h2.6v-4.5z"/><path fill-rule="evenodd" d="m171 110.1h-8.8l-1.7 5h-5.4l9.1-24.4h4.7l9.2 24.4h-5.4zm-7.5-4.1h6.1l-3.1-9.1z"/><path fill-rule="evenodd" d="m179.3 105.9q0-4.2 2-6.7c1.3-1.7 3.2-2.6 5.4-2.6q3 0 4.7 2.1l0.2-1.7h4.4v17.5q0 2.4-1.1 4.2-1.1 1.7-3.1 2.6c-1.3 0.7-2.8 1-4.6 1-1.4 0-2.6-0.3-3.9-0.8q-1.9-0.8-2.9-2.1l2.2-2.9q1.8 2 4.4 2c1.3 0 2.3-0.3 3-1q1.1-1 1.1-3v-0.9c-1.2 1.3-2.6 1.9-4.5 1.9-2.2 0-3.9-0.9-5.3-2.6q-2-2.5-2-6.8v-0.2zm4.9 0.3c0 1.7 0.3 3 1 3.9 0.6 0.9 1.5 1.4 2.7 1.4q2.3 0 3.2-1.6v-7.7q-1-1.6-3.2-1.7-1.7 0-2.7 1.5c-0.7 1-1 2.4-1 4.2z"/><path fill-rule="evenodd" d="m208.1 115.5q-4 0-6.5-2.5c-1.7-1.6-2.6-3.8-2.6-6.5v-0.5q0-2.7 1.1-4.9 1.1-2.1 3-3.3 2-1.2 4.5-1.2 3.7 0 5.9 2.4 2.1 2.3 2.1 6.6v2h-11.6c0.2 1.2 0.7 2.2 1.4 2.9q1.2 1.1 3.1 1.1 2.8 0 4.4-2.1l2.4 2.7c-0.8 1-1.7 1.8-3 2.4-1.2 0.6-2.7 0.9-4.2 0.9zm-0.5-15q-1.5 0-2.4 1-0.9 1-1.1 2.8h6.8v-0.4q-0.1-1.6-0.9-2.5-0.9-0.9-2.4-0.9z"/><path d="m222.9 97l0.1 2.1q2-2.5 5.2-2.5c2 0 3.4 0.6 4.4 1.7 0.9 1.1 1.4 2.8 1.4 5.1v11.7h-4.9v-11.6q0-1.6-0.6-2.2-0.7-0.7-2.3-0.8c-1.4 0-2.4 0.6-3.1 1.8v12.8h-4.8v-18.2h4.6z"/><path d="m245.3 111.5q1.3 0 2.2-0.7 0.8-0.8 0.9-2h4.5c0 1.3-0.3 2.4-1 3.4q-1 1.5-2.7 2.4-1.7 0.8-3.8 0.8-3.9 0-6.1-2.5-2.3-2.4-2.3-6.8v-0.3q0-4.2 2.3-6.7 2.2-2.5 6.1-2.5 3.4 0 5.5 1.9c1.4 1.3 2.1 3 2.1 5.2h-4.5c-0.1-1-0.4-1.7-0.9-2.3q-0.9-0.9-2.3-0.9-1.7 0-2.5 1.2-0.9 1.3-0.9 4.1v0.4q0 2.9 0.9 4.1c0.5 0.8 1.3 1.2 2.5 1.2z"/><path d="m262.5 108.2l3.4-11.3h5.2l-7.3 21-0.4 1c-1.1 2.3-2.9 3.5-5.4 3.5q-1.1 0-2.2-0.3v-3.7h0.8q1.3 0 2-0.4 0.7-0.4 1.1-1.4l0.6-1.5-6.4-18.2h5.2z"/></svg>
|
|
File without changes
|