@vcmap/ui 5.0.0-rc.25 → 5.0.0-rc.26

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/dist/assets/ui.js CHANGED
@@ -1 +1 @@
1
- export * from "./ui.6ed89d.js";
1
+ export * from "./ui.74022f.js";
@@ -1,5 +1,5 @@
1
- export * from "./vue.7327e4.js";
2
- import { default as f } from "./vue.7327e4.js";
1
+ export * from "./vue.9b8c6e.js";
2
+ import { default as f } from "./vue.9b8c6e.js";
3
3
  export {
4
4
  f as default
5
5
  };
@@ -13,7 +13,7 @@ function loadCss(href) {
13
13
  elem.onerror = reject;
14
14
  document.head.appendChild(elem);
15
15
  });
16
- } await loadCss('./assets/vuetify.d2131d.css');import v from "./vue.7327e4.js";
16
+ } await loadCss('./assets/vuetify.30486f.css');import v from "./vue.9b8c6e.js";
17
17
  const Ne = v.extend().extend({
18
18
  name: "themeable",
19
19
  provide() {
@@ -1,5 +1,5 @@
1
- export * from "./vuetify.d2131d.js";
2
- import { default as f } from "./vuetify.d2131d.js";
1
+ export * from "./vuetify.30486f.js";
2
+ import { default as f } from "./vuetify.30486f.js";
3
3
  export {
4
4
  f as default
5
5
  };
package/dist/index.html CHANGED
@@ -29,7 +29,7 @@
29
29
  />
30
30
  <link rel="icon" type="image/svg+xml" href="./assets/favicon.d5ec97.svg" />
31
31
 
32
- <script type="module" crossorigin src="./assets/index-bb372634.js"></script>
32
+ <script type="module" crossorigin src="./assets/index-f94d5be3.js"></script>
33
33
  </head>
34
34
  <body style="height: 100vh">
35
35
  <noscript>
package/index.js CHANGED
@@ -225,6 +225,8 @@ export { default as VcsTreeviewSearchbar } from './src/components/lists/VcsTreev
225
225
  // export { default as VcsOverflowMenu } from './src/components/menus/VcsOverflowMenu.vue';
226
226
 
227
227
  export { default as VcsBadge } from './src/components/notification/VcsBadge.vue';
228
+ export { default as VcsDefaultLogo } from './src/logo.svg';
229
+ export { default as VcsDefaultMobileLogo } from './src/logo-mobile.svg';
228
230
 
229
231
  // export { default as VcsFileNamePopover } from './src/components/popovers/VcsFileNamePopover.vue';
230
232
  // export { default as VcsTexturePopover } from './src/components/popovers/VcsTexturePopover.vue';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vcmap/ui",
3
- "version": "5.0.0-rc.25",
3
+ "version": "5.0.0-rc.26",
4
4
  "author": "Virtual City Systems",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -15,7 +15,6 @@
15
15
  draggable="false"
16
16
  class="mobile-logo"
17
17
  />
18
- <div v-else class="company-logo-mobile mobile-logo" />
19
18
  </template>
20
19
  <VcsButton
21
20
  v-if="!$vuetify.breakpoint.smAndUp && $vuetify.breakpoint.mobile"
@@ -70,7 +69,7 @@
70
69
  .mobile-attribution-btn {
71
70
  position: fixed;
72
71
  right: 2px;
73
- bottom: 56px;
72
+ bottom: 36px;
74
73
  }
75
74
  </style>
76
75
 
@@ -110,6 +109,7 @@
110
109
  import VcsAttributions from './VcsAttributions.vue';
111
110
  import { getAttributions } from './attributionsHelper.js';
112
111
  import NotifierComponent from '../notifier/notifierComponent.vue';
112
+ import VcsDefaultLogoMobile from '../logo-mobile.svg';
113
113
 
114
114
  /**
115
115
  * You should call this function in the component providing the vcsUiApp to your
@@ -546,7 +546,8 @@
546
546
  mobileLogo: computed(
547
547
  () =>
548
548
  app.uiConfig.config.value.mobileLogo ??
549
- app.uiConfig.config.value.logo,
549
+ app.uiConfig.config.value.logo ??
550
+ VcsDefaultLogoMobile,
550
551
  ),
551
552
  attributionEntries,
552
553
  attributionAction,
@@ -48,16 +48,12 @@
48
48
  <v-col class="d-flex justify-center">
49
49
  <div class="d-flex align-center">
50
50
  <template v-if="!$vuetify.breakpoint.xs">
51
- <img
52
- v-if="config.logo"
53
- class="logo"
54
- :src="config.logo"
55
- draggable="false"
56
- alt="Logo"
57
- />
58
- <div v-else class="company-logo logo" />
51
+ <img class="logo" :src="logo" draggable="false" alt="Logo" />
59
52
  </template>
60
- <div v-if="!$vuetify.breakpoint.sm && config.appTitle" class="ml-4">
53
+ <div
54
+ v-if="$vuetify.breakpoint.mdAndUp && config.appTitle"
55
+ class="ml-4"
56
+ >
61
57
  {{ $t(config.appTitle) }}
62
58
  </div>
63
59
  </div>
@@ -157,6 +153,7 @@
157
153
  import VcsActionList from '../components/lists/VcsActionList.vue';
158
154
  import VcsToolButton from '../components/buttons/VcsToolButton.vue';
159
155
  import { createSearchButtonAction } from '../actions/actionHelper.js';
156
+ import VcsDefaultLogo from '../logo.svg';
160
157
 
161
158
  export default {
162
159
  name: 'VcsNavbar',
@@ -188,6 +185,10 @@
188
185
  ),
189
186
  );
190
187
 
188
+ const logo = computed(() => {
189
+ return app.uiConfig.config.value.logo ?? VcsDefaultLogo;
190
+ });
191
+
191
192
  const { searchAction, destroy: destroySearchAction } =
192
193
  createSearchButtonAction(app);
193
194
 
@@ -204,6 +205,7 @@
204
205
  searchAction,
205
206
  menuActions: getActions(ButtonLocation.MENU),
206
207
  config: app.uiConfig.config,
208
+ logo,
207
209
  };
208
210
  },
209
211
  };
@@ -342,8 +342,10 @@
342
342
 
343
343
  &.v-data-table__mobile-row {
344
344
  justify-content: left;
345
- height: 27px;
346
345
  min-height: auto;
346
+ .v-data-table__mobile-row__header {
347
+ min-width: 50px;
348
+ }
347
349
  }
348
350
  }
349
351
  }
@@ -138,7 +138,7 @@
138
138
  ::v-deep {
139
139
  .v-data-table__mobile-row__cell {
140
140
  td.vcs-table.overflow-max-width {
141
- max-width: 260px;
141
+ max-width: 100% !important;
142
142
  }
143
143
  }
144
144
  }
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div :class="{ 'win-container-mobile': $vuetify.breakpoint.xs }">
2
+ <div :class="{ 'win-container-mobile': addMobileClass }">
3
3
  <WindowComponent
4
4
  v-for="id in componentIds"
5
5
  :key="id"
@@ -34,21 +34,28 @@
34
34
 
35
35
  <style scoped lang="scss">
36
36
  .win-container-mobile {
37
- position: absolute;
37
+ position: fixed;
38
+ bottom: 56px;
39
+ left: 0;
40
+ right: 0;
38
41
  z-index: 2;
39
- width: 100%;
42
+ display: contents;
40
43
  }
41
44
  .win-container-mobile > {
42
45
  div {
43
46
  width: 100% !important;
47
+ max-width: 100% !important;
44
48
  inset: unset !important;
45
49
  border-radius: 0 !important;
50
+ overflow: auto;
51
+ bottom: 0 !important;
52
+ max-height: 50% !important;
46
53
  }
47
54
  }
48
55
  </style>
49
56
 
50
57
  <script>
51
- import { computed, inject, onUnmounted, ref } from 'vue';
58
+ import { computed, getCurrentInstance, inject, onUnmounted, ref } from 'vue';
52
59
 
53
60
  import WindowComponent from './WindowComponent.vue';
54
61
  import WindowComponentHeader from './WindowComponentHeader.vue';
@@ -125,6 +132,15 @@
125
132
  moveWindow(id, translation, windowManager, targetSize.value);
126
133
  };
127
134
 
135
+ const componentIdRef = ref(componentIds);
136
+
137
+ const addMobileClass = computed(() => {
138
+ return (
139
+ getCurrentInstance().proxy.$vuetify.breakpoint.xs &&
140
+ componentIdRef.value.length > 0
141
+ );
142
+ });
143
+
128
144
  const setTargetSize = () => {
129
145
  targetSize.value = getTargetSize(app.maps.target);
130
146
  };
@@ -138,7 +154,7 @@
138
154
  });
139
155
 
140
156
  return {
141
- componentIds: ref(componentIds),
157
+ componentIds: componentIdRef,
142
158
  getComponent: (id) => windowManager.get(id).component,
143
159
  getHeaderComponent: (id) =>
144
160
  windowManager.get(id).headerComponent || WindowComponentHeader,
@@ -155,6 +171,7 @@
155
171
  },
156
172
  bringWindowToTop,
157
173
  move,
174
+ addMobileClass,
158
175
  };
159
176
  },
160
177
  };
@@ -1,19 +1,3 @@
1
- :root {
2
- --vcs-primary-logo: url('./assets/logo.svg');
3
- --vcs-mobile-logo: url('./assets/logo-mobile.svg');
4
- }
5
-
6
- .company-logo {
7
- background-image: var(--vcs-primary-logo);
8
- height: 36px;
9
- width: 151px;
10
- }
11
- .company-logo-mobile {
12
- background-image: var(--vcs-mobile-logo);
13
- height: 40px;
14
- width: 70px;
15
- }
16
-
17
1
  .v-application .base {
18
2
  background-color: var(--v-base-base) !important;
19
3
  border-color: var(--v-base-base) !important;
@@ -1 +0,0 @@
1
- import{initAppFromAppConfig as p}from"./ui.6ed89d.js";p("#app","app.config.json");
@@ -1,9 +0,0 @@
1
- <svg id="VCS_Logo_Color_Mobile" data-name="VCS Logo Color Mobile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 39">
2
- <path d="M65.15,6.98l-12.49,12.52L36.06,2.85c-.55-.55-1.29-.86-2.06-.85h29.09c.77,0,1.51,.31,2.06,.85,1.12,1.12,1.14,2.95,.03,4.09l-.03,.03Zm-12.49,12.52l-16.6,16.65c-1.14,1.14-2.97,1.14-4.11,0-.55-.54-.85-1.29-.85-2.06V4.92c0-.78,.31-1.52,.85-2.06,1.14-1.14,2.97-1.14,4.11,0l16.6,16.65ZM31.09,4.92v29.16c0,.78,.31,1.52,.85,2.06L2.85,6.98c-1.12-1.12-1.14-2.95-.03-4.09l.03-.03c.55-.55,1.29-.86,2.06-.85h29.09c-.77,0-1.51,.31-2.06,.85-.55,.54-.86,1.29-.86,2.06Zm34.06,31.23c-.55,.55-1.29,.86-2.06,.85h-29.09c.77,0,1.51-.31,2.06-.85l16.6-16.64,12.49,12.52c1.12,1.12,1.14,2.95,.03,4.09l-.03,.03Z" style="fill: #fff; isolation: isolate; opacity: .9; stroke: #fff; stroke-miterlimit: 10; stroke-width: 4px;"/>
3
- <g>
4
- <path id="Path_274" d="M64.99,7.19l-12.43,12.31L36.05,3.14c-.54-.54-1.28-.84-2.05-.84h28.94c.77,0,1.5,.3,2.05,.84,1.12,1.1,1.13,2.9,.03,4.02l-.03,.03Z" style="fill: #86b110; isolation: isolate; opacity: .9;"/>
5
- <path id="Path_273" d="M52.56,19.5l-16.52,16.36c-1.13,1.12-2.96,1.12-4.09,0-.54-.54-.85-1.27-.85-2.03V5.17c0-.76,.31-1.49,.85-2.03,1.13-1.12,2.96-1.12,4.09,0l16.52,16.36Z" style="fill: #005434; isolation: isolate; opacity: .9;"/>
6
- <path id="Path_272" d="M31.1,5.17v28.66c0,.76,.31,1.49,.85,2.03L3.01,7.19c-1.12-1.1-1.13-2.9-.03-4.02l.03-.03c.55-.54,1.28-.84,2.05-.84h28.94c-.77,0-1.5,.3-2.05,.84-.54,.53-.85,1.26-.85,2.03Z" style="fill: #409d76; isolation: isolate; opacity: .9;"/>
7
- <path id="Path_271" d="M64.99,35.86c-.54,.54-1.28,.84-2.05,.84h-28.94c.77,0,1.5-.3,2.05-.84l16.52-16.36,12.43,12.31c1.12,1.1,1.13,2.9,.03,4.02l-.03,.03Z" style="fill: #00a0ba; isolation: isolate; opacity: .9;"/>
8
- </g>
9
- </svg>
@@ -1,26 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="151" height="35.585" viewBox="0 0 151 35.585">
2
- <g id="VCS_Logo_Color" transform="translate(0)">
3
- <path id="Path_271" d="M245.674,76.716a3,3,0,0,1-2.116.868H213.62a3,3,0,0,0,2.116-.868l17.085-16.924,12.853,12.731A2.943,2.943,0,0,1,245.674,76.716Z" transform="translate(-180.688 -42)" fill="#00a0ba"/>
4
- <path id="Path_272" d="M199.938,38.964V68.618a2.944,2.944,0,0,0,.878,2.1L170.878,41.061a2.943,2.943,0,0,1,0-4.193A3,3,0,0,1,173,36h29.938a3,3,0,0,0-2.117.868A2.943,2.943,0,0,0,199.938,38.964Z" transform="translate(-170 -36)" fill="#409d76"/>
5
- <path id="Path_273" d="M231.848,53.792,214.764,70.717a3.014,3.014,0,0,1-4.233,0,2.948,2.948,0,0,1-.879-2.1V38.964a2.945,2.945,0,0,1,.879-2.1,3.014,3.014,0,0,1,4.233,0Z" transform="translate(-179.715 -36)" fill="#005434"/>
6
- <path id="Path_274" d="M245.674,41.061,232.821,53.792,215.736,36.868A3,3,0,0,0,213.62,36h29.938a3.005,3.005,0,0,1,2.116.868A2.943,2.943,0,0,1,245.674,41.061Z" transform="translate(-180.688 -36)" fill="#86b110"/>
7
- <path id="Path_275" d="M276.469,43.932c.18,0,.23.049.2.259l-1.849,6.874c-.442,1.7-.573,1.914-2.406,1.914-1.7,0-1.85-.2-2.325-1.914l-1.915-6.874c-.033-.211.032-.259.212-.259H270c.131,0,.147.049.214.259l1.7,6.453c.164.568.213.648.492.648.344,0,.409-.081.556-.648l1.653-6.453c.049-.211.082-.259.213-.259Z" transform="translate(-194.05 -38)" fill="#409d76"/>
8
- <path id="Path_276" d="M283.025,42.691a.216.216,0,0,1,.245.243v8.48a.216.216,0,0,1-.245.243h-1.49a.216.216,0,0,1-.245-.243v-8.48a.216.216,0,0,1,.245-.243Zm.442-2.561a1.036,1.036,0,0,1-1.179,1.119,1.121,1.121,0,1,1,0-2.237A1.036,1.036,0,0,1,283.467,40.13Z" transform="translate(-197.219 -36.76)" fill="#409d76"/>
9
- <path id="Path_277" d="M291.515,44c.164.049.262.114.262.292v.989c0,.179-.1.259-.278.244h-1.49c-.982,0-1.277.162-1.277.875v6.226a.216.216,0,0,1-.245.243H287a.216.216,0,0,1-.245-.243V45.9c0-1.929,1.555-2.075,2.766-2.075A10.535,10.535,0,0,1,291.515,44Z" transform="translate(-198.604 -37.973)" fill="#409d76"/>
10
- <path id="Path_278" d="M295.885,40.611c.18-.049.278.049.278.227v2.27h1.62c.164,0,.262.082.262.243v1.022a.232.232,0,0,1-.262.259h-1.62v4.945c0,.713.213.859,1.015.859h.72c.2,0,.278.064.278.227v1.07a.262.262,0,0,1-.245.292,7.384,7.384,0,0,1-1.162.114c-1.277,0-2.6-.032-2.6-1.978V41.243c0-.162.082-.227.229-.259Z" transform="translate(-200.421 -37.159)" fill="#409d76"/>
11
- <path id="Path_279" d="M308.785,43.932a.216.216,0,0,1,.245.243v8.269c0,.211-.082.227-.245.259a19.837,19.837,0,0,1-3.65.276c-3.028,0-3.879-.47-3.879-3.859V44.175c0-.162.115-.243.278-.243h1.474c.164,0,.23.082.23.243v4.589c0,2.4.376,2.513,1.915,2.513h1.882v-7.1a.216.216,0,0,1,.245-.243Z" transform="translate(-202.158 -38)" fill="#409d76"/>
12
- <path id="Path_280" d="M316.88,49.077c-.867,0-1.261.276-1.261,1.087,0,.924.442,1.151,1.653,1.151a8.923,8.923,0,0,0,1.866-.178V49.077Zm4.239-2.593v5.642a.411.411,0,0,1-.328.47,15.409,15.409,0,0,1-3.683.357c-2.291,0-3.454-.357-3.454-2.707,0-2.059,1.1-2.578,3.11-2.578h2.374v-.844c0-.908-.541-1.3-1.851-1.3H314.6c-.2,0-.246-.049-.246-.243v-.989c0-.194.066-.227.229-.259a14.739,14.739,0,0,1,2.7-.211C320.17,43.824,321.12,44.732,321.12,46.483Z" transform="translate(-205.195 -37.973)" fill="#409d76"/>
13
- <path id="Rectangle_510" d="M.325,0h1.33a.325.325,0,0,1,.325.325V12.078a.325.325,0,0,1-.325.325H.326A.326.326,0,0,1,0,12.077V.325A.325.325,0,0,1,.325,0Z" transform="translate(117.969 2.495)" fill="#409d76"/>
14
- <path id="Path_281" d="M342.55,44a.262.262,0,0,1,.245.292v.989c0,.162-.082.243-.262.243h-2.57c-1.752,0-1.98.568-1.98,2.854s.229,2.87,1.98,2.87h2.57c.18,0,.262.081.262.243v.989a.263.263,0,0,1-.245.292,17.086,17.086,0,0,1-2.587.179c-3.323,0-3.977-.909-3.977-4.572s.655-4.556,3.977-4.556A16.987,16.987,0,0,1,342.55,44Z" transform="translate(-210.667 -37.973)" fill="#409d76"/>
15
- <path id="Path_282" d="M348.821,42.691a.216.216,0,0,1,.245.243v8.48a.216.216,0,0,1-.245.243h-1.49a.216.216,0,0,1-.245-.243v-8.48a.216.216,0,0,1,.245-.243Zm.442-2.561a1.036,1.036,0,0,1-1.179,1.119,1.121,1.121,0,1,1,0-2.237A1.036,1.036,0,0,1,349.263,40.13Z" transform="translate(-213.338 -36.76)" fill="#409d76"/>
16
- <path id="Path_283" d="M354.223,40.611c.18-.049.279.049.279.227v2.27h1.62a.228.228,0,0,1,.261.243v1.022a.232.232,0,0,1-.261.259H354.5v4.945c0,.713.212.859,1.015.859h.72c.2,0,.278.064.278.227v1.07a.262.262,0,0,1-.245.292,7.384,7.384,0,0,1-1.162.114c-1.277,0-2.6-.032-2.6-1.978V41.243c0-.162.082-.227.23-.259Z" transform="translate(-214.714 -37.159)" fill="#409d76"/>
17
- <path id="Path_284" d="M367.2,43.932a.217.217,0,0,1,.246.243v8.2c-.017,2.821-.573,3.842-3.9,3.842a17.949,17.949,0,0,1-2.766-.179.236.236,0,0,1-.213-.259v-.956c0-.178.066-.243.229-.243h2.636c1.637,0,2.029-.389,2.029-1.67v-.082a12.48,12.48,0,0,1-2.1.147c-3.028,0-3.8-1.022-3.8-4.3V44.175a.216.216,0,0,1,.245-.243h1.49a.216.216,0,0,1,.245.243v4.232c0,2.318.3,2.854,2.128,2.854a13.514,13.514,0,0,0,1.785-.1V44.175a.216.216,0,0,1,.245-.243Z" transform="translate(-216.445 -38)" fill="#409d76"/>
18
- <path id="Path_285" d="M275.307,63.735c.164.032.245.114.245.259v.956c0,.162-.082.243-.261.243h-3.012c-.687,0-1.08.211-1.08.713V66.1c0,.389.212.7.9.956l2.145.778a2.183,2.183,0,0,1,1.669,2.367v.211c0,1.849-1.243,2.27-3.388,2.27-1.423,0-2.652-.1-3.191-.146-.2-.016-.245-.1-.245-.243V71.29c0-.179.066-.259.262-.259h3.175c1.1,0,1.441-.129,1.441-.7v-.162c0-.389-.2-.648-.934-.924l-2.16-.81a2.324,2.324,0,0,1-1.637-2.384v-.324c0-1.767,1.473-2.173,3.519-2.173A16.941,16.941,0,0,1,275.307,63.735Z" transform="translate(-194.276 -42.949)" fill="#005434"/>
19
- <path id="Path_286" d="M287.859,63.665a.216.216,0,0,1,.245.243v8.2c-.017,2.821-.573,3.842-3.9,3.842a17.956,17.956,0,0,1-2.766-.179.236.236,0,0,1-.213-.259V74.56c0-.178.066-.243.229-.243h2.636c1.637,0,2.03-.389,2.03-1.67v-.081a12.57,12.57,0,0,1-2.1.146c-3.028,0-3.8-1.022-3.8-4.3V63.908a.216.216,0,0,1,.246-.243h1.49a.216.216,0,0,1,.245.243V68.14c0,2.318.294,2.854,2.128,2.854a13.509,13.509,0,0,0,1.784-.1V63.908a.216.216,0,0,1,.246-.243Z" transform="translate(-197.007 -42.977)" fill="#005434"/>
20
- <path id="Path_287" d="M299.154,63.735c.164.032.246.114.246.259v.956c0,.162-.082.243-.262.243h-3.012c-.687,0-1.08.211-1.08.713V66.1c0,.389.213.7.9.956l2.144.778a2.184,2.184,0,0,1,1.67,2.367v.211c0,1.849-1.244,2.27-3.388,2.27-1.424,0-2.652-.1-3.192-.146-.2-.016-.245-.1-.245-.243V71.29c0-.179.065-.259.261-.259h3.176c1.1,0,1.44-.129,1.44-.7v-.162c0-.389-.2-.648-.932-.924l-2.161-.81a2.325,2.325,0,0,1-1.637-2.384v-.324c0-1.767,1.473-2.173,3.519-2.173A16.947,16.947,0,0,1,299.154,63.735Z" transform="translate(-200.119 -42.949)" fill="#005434"/>
21
- <path id="Path_288" d="M305.925,60.343c.18-.049.279.049.279.227v2.27h1.621a.229.229,0,0,1,.262.243V64.1a.233.233,0,0,1-.262.259H306.2v4.945c0,.713.213.859,1.015.859h.72c.2,0,.278.064.278.227v1.07a.263.263,0,0,1-.245.292,7.466,7.466,0,0,1-1.163.113c-1.277,0-2.6-.032-2.6-1.978V60.975c0-.162.082-.227.229-.259Z" transform="translate(-202.881 -42.136)" fill="#005434"/>
22
- <path id="Path_289" d="M312.99,67.463h3.748c-.016-1.751-.376-2.2-1.833-2.2C313.383,65.259,313.006,65.713,312.99,67.463Zm5.746.487v.487c0,.307-.1.437-.557.437H312.99c.049,1.718.442,2.107,2.029,2.107h2.8a.216.216,0,0,1,.245.243v1.006a.246.246,0,0,1-.23.275,20.493,20.493,0,0,1-2.93.178c-3.191,0-3.912-.907-3.912-4.555,0-3.664.72-4.573,3.912-4.573C317.982,63.556,318.7,64.432,318.736,67.95Z" transform="translate(-204.544 -42.949)" fill="#005434"/>
23
- <path id="Path_290" d="M335.8,67.134l-.033,5.221c0,.162-.066.243-.23.243h-1.489c-.164,0-.229-.081-.229-.243v-4.6c0-2.4-.376-2.513-1.8-2.513a10.087,10.087,0,0,0-1.636.129,6.5,6.5,0,0,1,.245,2.027l-.032,4.961c0,.179-.066.244-.213.244h-1.506a.217.217,0,0,1-.246-.244V67.426c0-2.091-.408-2.172-1.8-2.172h-1.391v7.1a.216.216,0,0,1-.246.243H323.7c-.164,0-.23-.081-.245-.243V64.07c0-.194.082-.227.245-.259a16.721,16.721,0,0,1,2.914-.259,7.382,7.382,0,0,1,2.815.486,9.167,9.167,0,0,1,2.75-.5C334.884,63.535,335.817,64.07,335.8,67.134Z" transform="translate(-207.598 -42.943)" fill="#005434"/>
24
- <path id="Path_291" d="M348.214,63.735c.164.032.245.114.245.259v.956c0,.162-.082.243-.262.243h-3.012c-.688,0-1.08.211-1.08.713V66.1c0,.389.213.7.9.956l2.143.778a2.184,2.184,0,0,1,1.67,2.367v.211c0,1.849-1.244,2.27-3.388,2.27-1.424,0-2.652-.1-3.192-.146-.2-.016-.245-.1-.245-.243V71.29c0-.179.066-.259.262-.259h3.176c1.1,0,1.44-.129,1.44-.7v-.162c0-.389-.2-.648-.932-.924l-2.161-.81a2.325,2.325,0,0,1-1.637-2.384v-.324c0-1.767,1.473-2.173,3.519-2.173A16.956,16.956,0,0,1,348.214,63.735Z" transform="translate(-212.139 -42.949)" fill="#005434"/>
25
- </g>
26
- </svg>
File without changes
File without changes
File without changes
File without changes