@cnamts/synapse 0.0.6-alpha → 0.0.8-alpha

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 (122) hide show
  1. package/dist/design-system-v3.d.ts +331 -372
  2. package/dist/design-system-v3.js +2794 -2637
  3. package/dist/design-system-v3.umd.cjs +1 -10
  4. package/dist/style.css +1 -1
  5. package/package.json +10 -2
  6. package/src/assets/settings.scss +2 -2
  7. package/src/assets/tokens.scss +107 -112
  8. package/src/components/BackBtn/BackBtn.stories.ts +4 -1
  9. package/src/components/BackBtn/BackBtn.vue +4 -4
  10. package/src/components/BackToTopBtn/BackToTopBtn.stories.ts +3 -3
  11. package/src/components/BackToTopBtn/BackToTopBtn.vue +1 -0
  12. package/src/components/CollapsibleList/CollapsibleList.mdx +1 -1
  13. package/src/components/CollapsibleList/CollapsibleList.vue +43 -44
  14. package/src/components/ContextualMenu/ContextualMenu.mdx +118 -0
  15. package/src/components/ContextualMenu/ContextualMenu.stories.ts +430 -0
  16. package/src/components/ContextualMenu/ContextualMenu.vue +101 -0
  17. package/src/components/ContextualMenu/tests/ContextualMenu.spec.ts +115 -0
  18. package/src/components/ContextualMenu/tests/__snapshots__/ContextualMenu.spec.ts.snap +10 -0
  19. package/src/components/ContextualMenu/types.ts +5 -0
  20. package/src/components/CookieBanner/CookieBanner.stories.ts +3 -2
  21. package/src/components/CookieBanner/CookieBanner.vue +13 -10
  22. package/src/components/CookieBanner/tests/__snapshots__/CookieBanner.spec.ts.snap +17 -15
  23. package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +6 -1
  24. package/src/components/CookiesSelection/CookiesInformation/locales.ts +1 -0
  25. package/src/components/CookiesSelection/CookiesTable/CookiesTable.vue +1 -0
  26. package/src/components/CookiesSelection/tests/__snapshots__/CookiesSelection.spec.ts.snap +17 -15
  27. package/src/components/CopyBtn/CopyBtn.stories.ts +5 -2
  28. package/src/components/CopyBtn/CopyBtn.vue +7 -7
  29. package/src/components/Customs/SyBtnSelect/SyBtnSelect.stories.ts +11 -51
  30. package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +26 -26
  31. package/src/components/Customs/SyInputSelect/SyInputSelect.mdx +4 -1
  32. package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +19 -7
  33. package/src/components/Customs/SyInputSelect/SyInputSelect.vue +24 -24
  34. package/src/components/Customs/SySelect/SySelect.mdx +1 -2
  35. package/src/components/Customs/SySelect/SySelect.stories.ts +0 -2
  36. package/src/components/Customs/SySelect/SySelect.vue +27 -26
  37. package/src/components/DataList/DataList.stories.ts +3 -2
  38. package/src/components/DataList/DataList.vue +1 -1
  39. package/src/components/DataListGroup/DataListGroup.stories.ts +3 -2
  40. package/src/components/DataListItem/DataListItem.vue +12 -12
  41. package/src/components/DialogBox/DialogBox.mdx +28 -2
  42. package/src/components/DialogBox/DialogBox.stories.ts +1 -1
  43. package/src/components/DialogBox/DialogBox.vue +3 -2
  44. package/src/components/DownloadBtn/DownloadBtn.mdx +3 -4
  45. package/src/components/DownloadBtn/DownloadBtn.stories.ts +20 -21
  46. package/src/components/DownloadBtn/DownloadBtn.vue +2 -1
  47. package/src/components/ErrorPage/ErrorPage.vue +1 -1
  48. package/src/components/ExternalLinks/ExternalLinks.mdx +86 -0
  49. package/src/components/ExternalLinks/ExternalLinks.stories.ts +553 -0
  50. package/src/components/ExternalLinks/ExternalLinks.vue +200 -0
  51. package/src/components/ExternalLinks/config.ts +34 -0
  52. package/src/components/ExternalLinks/locales.ts +4 -0
  53. package/src/components/ExternalLinks/tests/ExternalLinks.spec.ts +154 -0
  54. package/src/components/ExternalLinks/tests/__snapshots__/ExternalLinks.spec.ts.snap +159 -0
  55. package/src/components/FooterBar/FooterBar.vue +111 -82
  56. package/src/components/FranceConnectBtn/FranceConnectBtn.stories.ts +2 -1
  57. package/src/components/FranceConnectBtn/FranceConnectBtn.vue +14 -13
  58. package/src/components/HeaderBar/HeaderBar.stories.ts +19 -12
  59. package/src/components/HeaderBar/HeaderBar.vue +8 -3
  60. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.vue +12 -7
  61. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.vue +5 -5
  62. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.vue +2 -2
  63. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.vue +10 -8
  64. package/src/components/HeaderBar/HeaderLogo/HeaderLogo.vue +2 -2
  65. package/src/components/HeaderBar/HeaderLogo/logos/Logo-mobile.vue +2 -1
  66. package/src/components/HeaderBar/HeaderLogo/logos/Logo.vue +2 -1
  67. package/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.vue +10 -10
  68. package/src/components/HeaderBar/consts.scss +1 -1
  69. package/src/components/HeaderLoading/HeaderLoading.vue +12 -11
  70. package/src/components/HeaderNavigationBar/HeaderNavigationBar.stories.ts +104 -32
  71. package/src/components/HeaderNavigationBar/HeaderNavigationBar.vue +2 -1
  72. package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +9 -9
  73. package/src/components/HeaderToolbar/HeaderToolbar.vue +215 -180
  74. package/src/components/LangBtn/LangBtn.vue +8 -6
  75. package/src/components/LogoBrandSection/LogoBrandSection.stories.ts +2 -2
  76. package/src/components/NirField/NirField.mdx +1 -4
  77. package/src/components/NirField/NirField.stories.ts +71 -18
  78. package/src/components/NirField/NirField.vue +49 -49
  79. package/src/components/NirField/tests/NirField.spec.ts +1 -0
  80. package/src/components/NotFoundPage/NotFoundPage.stories.ts +33 -2
  81. package/src/components/NotFoundPage/NotFoundPage.vue +17 -0
  82. package/src/components/NotificationBar/NotificationBar.mdx +5 -5
  83. package/src/components/NotificationBar/NotificationBar.stories.ts +410 -314
  84. package/src/components/NotificationBar/NotificationBar.vue +43 -41
  85. package/src/components/PageContainer/PageContainer.stories.ts +5 -5
  86. package/src/components/PageContainer/PageContainer.vue +13 -8
  87. package/src/components/PageContainer/tests/PageContainer.spec.ts +1 -1
  88. package/src/components/PasswordField/PasswordField.mdx +70 -0
  89. package/src/components/PasswordField/PasswordField.stories.ts +213 -0
  90. package/src/components/PasswordField/PasswordField.vue +189 -0
  91. package/src/components/PasswordField/config.ts +11 -0
  92. package/src/components/PasswordField/locales.ts +4 -0
  93. package/src/components/PasswordField/tests/PasswordField.spec.ts +96 -0
  94. package/src/components/PhoneField/PhoneField.mdx +0 -2
  95. package/src/components/PhoneField/PhoneField.stories.ts +10 -50
  96. package/src/components/PhoneField/PhoneField.vue +34 -34
  97. package/src/components/SkipLink/SkipLink.vue +10 -10
  98. package/src/components/SocialMediaLinks/SocialMediaLinks.vue +29 -21
  99. package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +2 -2
  100. package/src/components/SubHeader/SubHeader.stories.ts +6 -3
  101. package/src/components/SubHeader/SubHeader.vue +32 -31
  102. package/src/components/SyAlert/SyAlert.vue +15 -8
  103. package/src/components/UserMenuBtn/UserMenuBtn.vue +1 -1
  104. package/src/components/UserMenuBtn/config.ts +1 -1
  105. package/src/components/index.ts +10 -6
  106. package/src/designTokens/index.ts +6 -4
  107. package/src/designTokens/{bootstrapColors.md → paColors.md} +1 -1
  108. package/src/designTokens/tokens/cnam/cnamLightTheme.ts +2 -0
  109. package/src/designTokens/tokens/pa/paColors.ts +171 -0
  110. package/src/designTokens/tokens/pa/paContextual.ts +58 -0
  111. package/src/designTokens/tokens/pa/paDarkTheme.ts +5 -0
  112. package/src/designTokens/tokens/pa/paLightTheme.ts +123 -0
  113. package/src/designTokens/tokens/pa/paSemantic.ts +87 -0
  114. package/src/stories/GuideDuDev/CreerUneIssue.mdx +64 -0
  115. package/src/stories/GuideDuDev/{CommentUtiliserLesRules.mdx → UtiliserLesRules.mdx} +2 -2
  116. package/src/stories/GuideDuDev/components.stories.ts +9 -7
  117. package/src/stories/Guidelines/Vuetify/Vuetify.stories.ts +163 -88
  118. package/src/stories/Guidelines/Vuetify/VuetifyItems.ts +250 -23
  119. package/src/temp/TestDTComponent.vue +5 -6
  120. package/src/designTokens/tokens/bootstrap/bootstrapColors.ts +0 -158
  121. package/src/designTokens/tokens/bootstrap/bootstrapLightTheme.ts +0 -22
  122. package/src/stories/GuideDuDev/CommentContribuer.mdx +0 -22
@@ -79,8 +79,12 @@
79
79
  return typeof complianceLabel === 'string' ? locales.a11yLabel(complianceLabel) : ''
80
80
  })
81
81
 
82
- const extendedMode = computed(() => {
83
- return Boolean(slots.default)
82
+ const extendedMode = computed<boolean>(() => {
83
+ if (slots.default) {
84
+ return true
85
+ }
86
+
87
+ return false
84
88
  })
85
89
 
86
90
  const logoSize = computed(() => {
@@ -236,102 +240,127 @@
236
240
  </template>
237
241
 
238
242
  <style lang="scss" scoped>
239
- @use '@/assets/tokens.scss';
243
+ @use '@/assets/tokens';
244
+
240
245
  $white: #fff;
241
246
 
242
247
  a {
243
- cursor: pointer;
248
+ cursor: pointer;
244
249
  }
250
+
245
251
  .v-btn--icon {
246
- border: 0;
252
+ border: 0;
247
253
  }
254
+
248
255
  // Fix footer bar height in SK
249
256
  .v-footer {
250
- flex-grow: 0 !important;
251
- justify-content: center;
252
- .container {
253
- width: 100%;
254
- max-width: 1712px;
255
- margin: 0 auto;
256
- }
257
+ flex-grow: 0 !important;
258
+ justify-content: center;
259
+
260
+ .container {
261
+ width: 100%;
262
+ max-width: 1712px;
263
+ margin: 0 auto;
264
+ }
257
265
  }
266
+
258
267
  .vd-footer-bar :deep() {
259
- .vd-footer-bar-links a {
260
- color: rgba(0, 0, 0, .87);
261
- }
262
- p,
263
- .text--primary {
264
- color: rgba(0, 0, 0, .87);
265
- }
266
- .text--secondary {
267
- color: rgba(0, 0, 0, .6);
268
- }
269
- .social {
270
- .text--primary {
271
- color: tokens.$primary-base;
272
- }
273
- a.v-btn:hover {
274
- background: rgba(0, 0, 0, 0.05);
275
- }
276
- }
277
- button.v-btn:hover {
278
- background: rgba(0, 0, 0, 0.05);
279
- }
280
- a.text--primary {
281
- color: tokens.$primary-base;
282
- }
283
- .v-divider {
284
- border-color: rgba(tokens.$parma-darken-60, 1);
285
- }
286
- svg.logo {
287
- fill: tokens.$primary-base;
288
- }
289
- .scroll {
290
- color: tokens.$primary-base !important;
291
- }
268
+ .vd-footer-bar-links a {
269
+ color: rgb(0 0 0 / 87%);
270
+ }
271
+
272
+ p,
273
+ .text--primary {
274
+ color: rgb(0 0 0 / 87%);
275
+ }
276
+
277
+ .text--secondary {
278
+ color: rgb(0 0 0 / 60%);
279
+ }
280
+
281
+ .social {
282
+ .text--primary {
283
+ color: rgb(var(--v-theme-primary));
284
+ }
285
+
286
+ a.v-btn:hover {
287
+ background: rgb(0 0 0 / 5%);
288
+ }
289
+ }
290
+
291
+ button.v-btn:hover {
292
+ background: rgb(0 0 0 / 5%);
293
+ }
294
+
295
+ a.text--primary {
296
+ color: rgb(var(--v-theme-primary));
297
+ }
298
+
299
+ .v-divider {
300
+ border-color: rgba(tokens.$parma-darken-60, 1);
301
+ }
302
+
303
+ svg.logo {
304
+ fill: rgb(var(--v-theme-primary));
305
+ }
306
+
307
+ .scroll {
308
+ color: rgb(var(--v-theme-primary)) !important;
309
+ }
292
310
  }
311
+
293
312
  // Use deep selector to style user content as well
294
313
  .vd-footer-bar.v-theme--dark :deep() {
295
- .vd-footer-bar-links a {
296
- color: $white;
297
- }
298
- p,
299
- .text--primary {
300
- color: rgba($white, 0.87);
301
- }
302
- .text--secondary {
303
- color: rgba($white, 0.6);
304
- }
305
- a.text--primary {
306
- color: $white;
307
- }
308
- .v-divider {
309
- border-color: rgba($white, 1);
310
- }
311
- svg {
312
- fill: $white;
313
- }
314
+ .vd-footer-bar-links a {
315
+ color: $white;
316
+ }
317
+
318
+ p,
319
+ .text--primary {
320
+ color: rgba($white, 0.87);
321
+ }
322
+
323
+ .text--secondary {
324
+ color: rgba($white, 0.6);
325
+ }
326
+
327
+ a.text--primary {
328
+ color: $white;
329
+ }
330
+
331
+ .v-divider {
332
+ border-color: rgba($white, 1);
333
+ }
334
+
335
+ svg {
336
+ fill: $white;
337
+ }
314
338
  }
339
+
315
340
  .vd-footer-bar-links :deep() {
316
- li {
317
- list-style: none;
318
- display: flex;
319
- }
320
- a {
321
- transition: 0.15s;
322
- text-decoration: none;
323
- padding-top: 1px; // Add top padding to account for bottom border
324
- border-bottom: 1px solid transparent;
325
- &:hover,
326
- &:focus {
327
- border-color: currentColor;
328
- }
329
- }
330
- p {
331
- padding: 1px 0;
332
- }
341
+ li {
342
+ list-style: none;
343
+ display: flex;
344
+ }
345
+
346
+ a {
347
+ transition: 0.15s;
348
+ text-decoration: none;
349
+ padding-top: 1px; // Add top padding to account for bottom border
350
+ border-bottom: 1px solid transparent;
351
+
352
+ &:hover,
353
+ &:focus {
354
+ border-color: currentcolor;
355
+ }
356
+ }
357
+
358
+ p {
359
+ padding: 1px 0;
360
+ }
333
361
  }
362
+
334
363
  .v-theme--dark button.v-btn:hover :deep() {
335
- background: rgba(white, 0.1);
364
+ background: rgba(white, 0.1);
336
365
  }
337
366
  </style>
@@ -105,7 +105,8 @@ export const DarkTheme: Story = {
105
105
  {
106
106
  name: 'Template',
107
107
  code: `<template>
108
- <FranceConnectBtn
108
+ <FranceConnectBtn
109
+ href="https://app.franceconnect.gouv.fr/"
109
110
  is-connect-plus
110
111
  dark
111
112
  />
@@ -97,13 +97,14 @@
97
97
  .vd-france-connect-btn a {
98
98
  color: #000091;
99
99
 
100
- &:focus {
101
- outline-offset: 3px;
102
- }
100
+ &:focus {
101
+ outline-offset: 3px;
102
+ }
103
103
  }
104
104
 
105
105
  .vd-france-connect-link {
106
106
  background: #000091;
107
+
107
108
  &:hover {
108
109
  background: #1212ff;
109
110
  transition: all 0.2s ease-in-out;
@@ -113,32 +114,32 @@
113
114
  background: #2323ff;
114
115
  }
115
116
 
116
- &:focus {
117
- outline-offset: 3px;
118
- }
117
+ &:focus {
118
+ outline-offset: 3px;
119
+ }
119
120
  }
120
121
 
121
122
  .vd-france-connect-btn--dark {
122
123
  .vd-france-connect-link {
123
- color: #FFFFFF;
124
- background-color: #8585F6;
124
+ color: #fff;
125
+ background-color: #8585f6;
125
126
 
126
127
  &:hover {
127
- background-color: #B1B1F9;
128
+ background-color: #b1b1f9;
128
129
  }
129
130
 
130
131
  &:active {
131
- background-color: #C6C6FB;
132
+ background-color: #c6c6fb;
132
133
  }
133
134
  }
134
135
 
135
136
  .vd-france-connect-info-link {
136
- color: #8585F6;
137
+ color: #8585f6;
137
138
  }
138
139
  }
139
140
 
140
141
  .vd-france-connect-info-link {
141
- background-image: linear-gradient(currentColor, currentColor);
142
+ background-image: linear-gradient(currentcolor, currentcolor);
142
143
  background-position: 0% 100%;
143
144
  background-repeat: no-repeat;
144
145
  background-size: 100% 1px;
@@ -149,6 +150,6 @@
149
150
  }
150
151
 
151
152
  :deep(&:focus) {
152
- border-radius: 0 !important;
153
+ border-radius: 0 !important;
153
154
  }
154
155
  </style>
@@ -237,7 +237,7 @@ export const WithRightMenu: Story = {
237
237
  <div class="d-flex justify-center h-100 ga-4 pr-4">
238
238
  <VBtn
239
239
  variant="text"
240
- :prepend-icon="searchIcon"
240
+ :prepend-icon="mdiMagnify"
241
241
  color="primary"
242
242
  >
243
243
  Rechercher
@@ -344,7 +344,7 @@ export const CustomLogo: Story = {
344
344
  code: `
345
345
  <template>
346
346
  <HeaderBar>
347
- <template #logo-brand-content="{ menuOpen }">
347
+ <template #logo-brand-content>
348
348
  <svg data-v-7f5c1754="" width="22" height="64" fill="#0c419a" role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 64" class="vd-divider"><path data-v-7f5c1754="" d="M14.3 49.3c-.2 0-.4-.2-.4-.4V14.2c0-.2.2-.4.4-.4.3 0 .5.2.5.4v34.7c0 .2-.2.4-.5.4Z"></path></svg>
349
349
  <img
350
350
  src="/ameli.svg"
@@ -354,7 +354,7 @@ export const CustomLogo: Story = {
354
354
  </HeaderBar>
355
355
  <br>
356
356
  <HeaderBar>
357
- <template #logo-brand-content="{ menuOpen }">
357
+ <template #logo-brand-content>
358
358
  <svg data-v-7f5c1754="" width="22" height="64" fill="#0c419a" role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 64" class="vd-divider"><path data-v-7f5c1754="" d="M14.3 49.3c-.2 0-.4-.2-.4-.4V14.2c0-.2.2-.4.4-.4.3 0 .5.2.5.4v34.7c0 .2-.2.4-.5.4Z"></path></svg>
359
359
  <img
360
360
  src="/ameli-pro.svg"
@@ -364,7 +364,7 @@ export const CustomLogo: Story = {
364
364
  </HeaderBar>
365
365
  <br>
366
366
  <HeaderBar>
367
- <template #logo-brand-content="{ menuOpen }">
367
+ <template #logo-brand-content>
368
368
  <svg data-v-7f5c1754="" width="22" height="64" fill="#0c419a" role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 64" class="vd-divider"><path data-v-7f5c1754="" d="M14.3 49.3c-.2 0-.4-.2-.4-.4V14.2c0-.2.2-.4.4-.4.3 0 .5.2.5.4v34.7c0 .2-.2.4-.5.4Z"></path></svg>
369
369
  <img
370
370
  src="/cnam.svg"
@@ -374,7 +374,7 @@ export const CustomLogo: Story = {
374
374
  </HeaderBar>
375
375
  <br>
376
376
  <HeaderBar>
377
- <template #logo-brand-content="{ menuOpen }">
377
+ <template #logo-brand-content">
378
378
  <svg data-v-7f5c1754="" width="22" height="64" fill="#006386" role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 64" class="vd-divider"><path data-v-7f5c1754="" d="M14.3 49.3c-.2 0-.4-.2-.4-.4V14.2c0-.2.2-.4.4-.4.3 0 .5.2.5.4v34.7c0 .2-.2.4-.5.4Z"></path></svg>
379
379
  <img
380
380
  src="/compte-ameli.svg"
@@ -384,7 +384,7 @@ export const CustomLogo: Story = {
384
384
  </HeaderBar>
385
385
  <br>
386
386
  <HeaderBar>
387
- <template #logo="{ menuOpen }">
387
+ <template #logo>
388
388
  <svg data-v-7f5c1754="" fill="#0c419a" aria-label="l’Assurance Maladie: Risques Professionnels" width="211" height="64" viewBox="0 0 211 64" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" aria-hidden="false" class=""><path fill="#cd545b" d="M68 55.8h2.8a3 3 0 0 1 2 .6c.5.4.8 1 .8 1.8 0 .6-.2 1-.4 1.4-.2.4-.6.6-1 .9l1.8 3.3h-1.5l-1.6-3h-1.6v3H68zm2.6 3.8c.5 0 1 0 1.2-.3.2-.3.4-.6.4-1 0-1-.6-1.4-1.6-1.4h-1.3v2.7zm4.5-3.8h1.3v8H75zm5.4 8.2a6.5 6.5 0 0 1-2.7-.6L78 62c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1.1.2c-.2.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm11.7-4.2c0 1-.3 2-.8 2.7l.7.7-.8.8-.7-.7a4 4 0 0 1-2.3.7 4 4 0 0 1-2-.6c-.7-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2zm-4 2.9c.6 0 1-.1 1.4-.4l-1-.9.8-.8 1 .9c.3-.5.4-1 .4-1.7 0-.8-.2-1.5-.7-2-.4-.6-1-.9-1.8-.9s-1.5.3-2 .8c-.4.6-.6 1.3-.6 2.1 0 .9.2 1.6.7 2 .4.6 1 .9 1.9.9zm8.5 1.3c-1 0-1.9-.4-2.4-1-.6-.6-.9-1.5-.9-2.6v-4.6h1.3V60c0 .9.2 1.6.5 2 .2.5.8.7 1.5.7.8 0 1.3-.2 1.6-.7.3-.4.4-1.1.4-2v-4.2h1.3v4.6c0 1.1-.2 2-.8 2.6-.5.6-1.4 1-2.5 1zm5-8.2h5v1.3h-3.6v2h2.9v1.2h-3v2.2h3.9v1.3h-5.2zm8.8 8.2a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.3-.4c-.3-.2-.7-.2-1.1-.2a2 2 0 0 0-1.1.2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm6.9-8.2h2.7c1.9 0 2.8.9 2.8 2.6 0 .9-.2 1.5-.7 2-.5.4-1.2.6-2 .6h-1.5v2.8h-1.3zm2.6 4c.5 0 1 0 1.2-.3.2-.2.4-.6.4-1 0-.6-.2-1-.4-1.2-.3-.2-.7-.4-1.2-.4h-1.3v3zm4-4h2.9a3 3 0 0 1 2 .6c.5.4.7 1 .7 1.8 0 .6-.1 1-.3 1.4l-1 .9 1.7 3.3h-1.5l-1.5-3h-1.6v3h-1.3zm2.6 3.8c.6 0 1 0 1.2-.3.3-.3.4-.6.4-1 0-1-.5-1.4-1.6-1.4h-1.2v2.7zm8 4.4a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.9-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2 0 .8-.2 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h5v1.3h-3.6v2h2.7v1.2h-2.7v3.5h-1.4zm6 0h5v1.3h-3.6v2h2.8v1.2h-2.8v2.2h3.7v1.3h-5zm8.7 8.2a6.5 6.5 0 0 1-2.6-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6l-.6-.4-1.2-.5a7 7 0 0 1-1.2-.5l-.8-.7a2 2 0 0 1-.3-1.1c0-.7.3-1.2.8-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.5.5v1.3l-1.4-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .4.4.7 1 .7 1.6 0 .6-.3 1.2-.8 1.6-.4.4-1.2.7-2.4.7zm6.7 0a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.7-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.5.4-.5.7l.2.6.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm4.3-8.2h1.3v8h-1.3zm6.6 8.2a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.4-1.4-.4-.6-.6-1.4-.6-2.2 0-.8.2-1.6.6-2.2.3-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2 .5c.6.3 1 .8 1.4 1.4.4.6.5 1.4.5 2.2 0 .8-.1 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h1.4l3.6 5.5v-5.5h1.3v8h-1l-4-5.8v5.8h-1.3zm8 0h1.4l3.6 5.5v-5.5h1.4v8h-1.1l-3.9-5.8v5.8h-1.3zm8.2 0h5v1.3h-3.7v2h2.9v1.2h-2.9v2.2h3.8v1.3h-5.1zm6.4 0h1.3v6.8h3.4v1.2H200zm8 8.2a6.5 6.5 0 0 1-2.6-.6l.1-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.2-.5c-.4-.2-.6-.4-.8-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.1 1.3-1.3-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7l.1.6.6.4 1 .3c.9.3 1.5.6 2 1 .4.4.6 1 .6 1.6 0 .6-.2 1.2-.7 1.6-.5.4-1.3.7-2.4.7z"></path><g role="presentation" aria-hidden="true"><path d="m3.3 32.3-.4-.4c.1-.3.3-.5.3-.8 0-.3 0-.4-.2-.4s-.3.1-.4.4l-.2.4c-.1.3-.4.6-.8.6-.5 0-.9-.5-.8-1.1 0-.4.1-.7.4-1l.4.4a1 1 0 0 0-.3.6c0 .2.1.4.3.4.2 0 .2-.2.4-.4l.1-.4c.2-.3.5-.6.9-.5.5 0 .9.5.8 1.2 0 .2-.2.7-.5 1Z"></path><path d="M.5 28 0 27l.5-.2.4.9-.4.2Zm.4.6.3-1.8h.5L1.6 28h.6l.1-1 .6.1-.1 1 .6.2.2-1.3.6.1-.3 2-3-.5Z"></path><path d="M2.8 26c-1-.3-1.4-1-1.2-1.8l.6-.8.3.5c-.1.1-.3.2-.3.5-.1.4.2.8.7.9.6.1 1 0 1.2-.5 0-.2 0-.4-.2-.6l.5-.3c.2.4.3.7.2 1-.1.9-.8 1.3-1.8 1Z"></path><path d="m3.7 22.8-1.5-.5.3-.7 1.6.6c.5.2.8.1.9-.2.1-.3 0-.6-.5-.8l-1.6-.6.2-.6 1.5.6c1 .3 1.2.9 1 1.6-.4.8-1 1-1.9.6Z"></path><path d="m3.7 18.6.5-1c.3-.6.7-1 1.4-.6.6.3.6.9.3 1.5l-.2.3 1 .5-.3.6-2.7-1.3Zm1.7-.3c.2-.3.1-.6-.2-.7-.2-.2-.4 0-.6.3l-.1.3.7.4.2-.3Zm.3.2-.2-.6h2l-.4.6H5.7Z"></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z"></path><path d="m7.3 13.5-.5.7-.4-.4 1.4-1.9.5.4-.6.7 2 1.4-.4.6-2-1.5Z"></path><path d="m8.5 11 1.3-1.3.5.4-.9.8.5.4.7-.7.4.4-.7.7.5.5.9-1 .4.5-1.3 1.4-2.3-2Zm.1-.7v-1h.7l-.2 1h-.5Z"></path><path d="M13.6 9.7v-.6c.3 0 .6 0 .8-.2.2-.2.3-.4.2-.5-.2-.2-.3-.1-.6 0h-.4c-.4.2-.7.1-1-.2-.3-.4-.2-1 .3-1.4.3-.2.6-.3 1-.3v.6a1 1 0 0 0-.7.1c-.1.2-.2.4-.1.5h.6l.4-.1c.4-.1.7-.1 1 .3.2.4.2 1-.4 1.4-.3.3-.7.4-1 .4Z"></path><path d="M15.5 6.8c-.5-.8-.4-1.6.3-2 .7-.5 1.5-.2 2 .6s.3 1.6-.4 2c-.6.5-1.4.2-2-.6Zm1.7-1c-.3-.6-.7-.7-1-.5-.4.2-.5.6-.1 1.1.3.6.7.8 1 .6.4-.3.4-.7.1-1.2Z"></path><path d="M18.7 5c-.5-1 0-1.8.6-2.1.4-.2.7-.1 1 0l-.2.5h-.6c-.3.2-.5.7-.2 1.2.2.6.7.8 1 .6.3-.1.4-.3.5-.5l.5.2c-.1.4-.3.7-.7.8-.7.3-1.5.1-2-.8Z"></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z"></path><path d="M24 1.2 25 1l1.7 2.7-.7.1-.8-1.3-.4-1v2.7l-.7.2V1.2Zm.2 1.8 1.4-.4.2.5-1.4.4-.2-.5Z"></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z"></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z"></path></g><g><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z"></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z"></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z"></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z"></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z"></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z"></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z"></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z"></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z"></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z"></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z"></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z"></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z"></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z"></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z"></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z"></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z"></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z"></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z"></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z"></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z"></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z"></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z"></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z"></path></svg>
389
389
  </template>
390
390
  </HeaderBar>
@@ -396,7 +396,6 @@ export const CustomLogo: Story = {
396
396
  code: `
397
397
  <script setup lang="ts">
398
398
  import { HeaderBar } from '@cnamts/synapse'
399
-
400
399
  </script>
401
400
  `,
402
401
  },
@@ -566,7 +565,7 @@ export const WithSubHeader: Story = {
566
565
  },
567
566
  template: `
568
567
  <HeaderBar v-bind="args">
569
- <template #append="{ menuOpen }">
568
+ <template #append>
570
569
  <SubHeader
571
570
  title-text="Paul Dupont"
572
571
  sub-title-text="1 69 08 75 125 456 75"
@@ -585,8 +584,8 @@ export const WithSubHeader: Story = {
585
584
  name: 'Template',
586
585
  code: `
587
586
  <template>
588
- <HeaderBar v-bind="args">
589
- <template #append="{ menuOpen }">
587
+ <HeaderBar>
588
+ <template #append>
590
589
  <SubHeader
591
590
  title-text="Paul Dupont"
592
591
  sub-title-text="1 69 08 75 125 456 75"
@@ -620,7 +619,11 @@ export const DefaultSlot: Story = {
620
619
  return {
621
620
  components: { HeaderBar, UserMenuBtn, VListItem, VListItemTitle },
622
621
  setup() {
623
- const listItems = ['Item 1', 'Item 2', 'Item 3']
622
+ const listItems = [
623
+ { text: 'Item 1', value: 'item1' },
624
+ { text: 'Item 2', value: 'item2' },
625
+ { text: 'Item 3', value: 'item3' },
626
+ ]
624
627
  return { args, listItems }
625
628
  },
626
629
  template: `
@@ -660,7 +663,11 @@ export const DefaultSlot: Story = {
660
663
  <script setup lang="ts">
661
664
  import { HeaderBar, UserMenuBtn } from '@cnamts/synapse'
662
665
 
663
- const listItems = ['Item 1', 'Item 2', 'Item 3']
666
+ const listItems = [
667
+ { text: 'Item 1', value: 'item1' },
668
+ { text: 'Item 2', value: 'item2' },
669
+ { text: 'Item 3', value: 'item3' },
670
+ ]
664
671
  </script>
665
672
  `,
666
673
  },
@@ -164,7 +164,7 @@
164
164
  :style="headerStickyStyle"
165
165
  >
166
166
  <div
167
- v-if="$slots.prepend"
167
+ v-if="$slots['prepend']"
168
168
  class="header-prepend"
169
169
  >
170
170
  <slot
@@ -177,7 +177,6 @@
177
177
  name="menu"
178
178
  :menu-open
179
179
  />
180
-
181
180
  <div class="header-logo pl-xl-0 pl-md-14 pl-4">
182
181
  <slot
183
182
  name="logo"
@@ -218,7 +217,7 @@
218
217
  </div>
219
218
  </div>
220
219
  <div
221
- v-if="$slots.append"
220
+ v-if="$slots['append']"
222
221
  class="header-append"
223
222
  >
224
223
  <slot
@@ -260,6 +259,12 @@
260
259
  margin-left: auto;
261
260
  }
262
261
 
262
+ .menu + .header-logo {
263
+ @media screen and (width >= 340px) {
264
+ padding-left: 16px !important;
265
+ }
266
+ }
267
+
263
268
  @media screen and (min-width: $header-breakpoint) {
264
269
  .inner-header {
265
270
  height: $header-height-desktop;
@@ -101,6 +101,7 @@
101
101
  role="dialog"
102
102
  aria-modal="true"
103
103
  :aria-label="locals.mainMenu"
104
+ class="menu mr-4"
104
105
  >
105
106
  <div ref="menuBtnWrapper">
106
107
  <HeaderMenuBtn
@@ -152,7 +153,7 @@
152
153
  inset: 0;
153
154
  position: fixed;
154
155
  z-index: 1000;
155
- background-color: rgba(3, 16, 37, .5);
156
+ background-color: rgb(3 16 37 / 50%);
156
157
  backdrop-filter: blur(2px);
157
158
  }
158
159
 
@@ -187,8 +188,7 @@
187
188
 
188
189
  .header-menu {
189
190
  background-color: $neutral-white;
190
- overflow-y : auto;
191
- overflow-x: hidden;
191
+ overflow: hidden auto;
192
192
  height: 100%;
193
193
  }
194
194
  }
@@ -209,12 +209,14 @@
209
209
  }
210
210
  }
211
211
 
212
- .menu-enter-from, .menu-leave-to {
212
+ .menu-enter-from,
213
+ .menu-leave-to {
213
214
  opacity: 0;
214
215
  }
215
216
 
216
217
  @media screen and (min-width: $header-breakpoint) {
217
- .menu-enter-from, .menu-leave-to {
218
+ .menu-enter-from,
219
+ .menu-leave-to {
218
220
  .header-menu-wrapper {
219
221
  transform: translateY(10px);
220
222
  }
@@ -222,10 +224,13 @@
222
224
  }
223
225
 
224
226
  @media (prefers-reduced-motion: reduce) {
225
- .menu-enter-active, .menu-leave-active {
227
+ .menu-enter-active,
228
+ .menu-leave-active {
226
229
  transition: opacity 0s;
227
230
  }
228
- .menu-enter-from, .menu-leave-to {
231
+
232
+ .menu-enter-from,
233
+ .menu-leave-to {
229
234
  .header-menu-wrapper {
230
235
  transform: none;
231
236
  }
@@ -9,10 +9,10 @@
9
9
  </template>
10
10
 
11
11
  <style lang="scss" scoped>
12
- @use "@/assets/tokens.scss" as *;
12
+ @use '@/assets/tokens.scss' as *;
13
13
 
14
14
  .header-menu-item {
15
- color: $primary-base;
15
+ color: rgb(var(--v-theme-primary));
16
16
  list-style-type: none;
17
17
  margin: 0;
18
18
  padding: 0;
@@ -24,14 +24,14 @@
24
24
  flex-direction: column;
25
25
  padding: 16px 50px 16px 20px;
26
26
  text-decoration: none;
27
- color: currentColor;
27
+ color: currentcolor;
28
28
 
29
29
  &:hover {
30
30
  text-decoration: underline;
31
31
  }
32
32
 
33
33
  &:visited {
34
- color: currentColor;
34
+ color: currentcolor;
35
35
  }
36
36
 
37
37
  &::first-letter {
@@ -41,7 +41,7 @@
41
41
  }
42
42
 
43
43
  .header-menu-item:hover {
44
- background-color: $primary-base;
44
+ background-color: rgb(var(--v-theme-primary));
45
45
  color: $neutral-white;
46
46
 
47
47
  > :deep(a > *) {
@@ -30,8 +30,8 @@
30
30
  </template>
31
31
 
32
32
  <style lang="scss" scoped>
33
- @use "@/assets/tokens.scss" as *;
34
- @use "../../consts.scss" as menu;
33
+ @use '@/assets/tokens.scss' as *;
34
+ @use '../../consts.scss' as menu;
35
35
 
36
36
  .header-menu-section {
37
37
  list-style-type: none;
@@ -61,7 +61,7 @@
61
61
  </template>
62
62
 
63
63
  <style lang="scss" scoped>
64
- @use "@/assets/tokens.scss" as *;
64
+ @use '@/assets/tokens.scss' as *;
65
65
  @use '../../consts' as *;
66
66
 
67
67
  .sub-menu-btn {
@@ -71,10 +71,10 @@
71
71
  width: 100%;
72
72
  padding: 16px 50px 16px 20px;
73
73
  text-align: left;
74
- color: $primary-base;
74
+ color: rgb(var(--v-theme-primary));
75
75
 
76
76
  &:hover {
77
- background-color: $primary-base;
77
+ background-color: rgb(var(--v-theme-primary));
78
78
  color: $neutral-white;
79
79
  text-decoration: underline;
80
80
 
@@ -119,6 +119,7 @@
119
119
 
120
120
  &:hover {
121
121
  color: #000;
122
+
122
123
  > :deep(*) {
123
124
  color: #000 !important;
124
125
  }
@@ -137,7 +138,7 @@
137
138
  }
138
139
 
139
140
  .sub-menu--open > .sub-menu-btn {
140
- background-color: $primary-base;
141
+ background-color: rgb(var(--v-theme-primary));
141
142
  color: $neutral-white;
142
143
  transition: color 0.15s linear, background-color 0.15s linear;
143
144
 
@@ -158,8 +159,7 @@
158
159
  height: 100%;
159
160
  background: #f9f9f9;
160
161
  border-left: 1px solid $menu-border-color;
161
- overflow-y: auto;
162
- overflow-x: hidden;
162
+ overflow: hidden auto;
163
163
 
164
164
  > .sub-menu--open .sub-menu-content {
165
165
  left: $menu-width * 2;
@@ -180,13 +180,15 @@
180
180
  transition: opacity 0.08s ease-in, transform 0.08s ease-in;
181
181
  }
182
182
 
183
- .slide-fade-enter-from, .slide-fade-leave-to {
183
+ .slide-fade-enter-from,
184
+ .slide-fade-leave-to {
184
185
  opacity: 0;
185
186
  transform: translateX(-10px);
186
187
  }
187
188
 
188
189
  @media (prefers-reduced-motion) {
189
- .slide-fade-enter-active, .slide-fade-leave-active {
190
+ .slide-fade-enter-active,
191
+ .slide-fade-leave-active {
190
192
  transition: none;
191
193
  }
192
194
  }
@@ -109,9 +109,9 @@
109
109
  display: flex;
110
110
  height: 52px;
111
111
  align-items: center;
112
- color: $primary-base;
112
+ color: rgb(var(--v-theme-primary));
113
113
  line-height: 1.45;
114
- font-family: 'Cabin', 'Arial', 'Helvetica', sans-serif;
114
+ font-family: Cabin, Arial, Helvetica, sans-serif;
115
115
  text-decoration: none;
116
116
  cursor: pointer;
117
117
  }
@@ -114,4 +114,5 @@
114
114
  </svg>
115
115
  </template>
116
116
 
117
- <style scoped>.cls-2{fill:#0c419a}</style>
117
+ <style scoped>.cls-2 { fill: #0c419a; }
118
+ </style>
@@ -276,4 +276,5 @@
276
276
  </svg>
277
277
  </template>
278
278
 
279
- <style scoped>.cls-2{fill:#0c419a}</style>
279
+ <style scoped>.cls-2 { fill: #0c419a; }
280
+ </style>