@cnamts/synapse 0.0.0-alpha.0 → 0.0.2-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 (55) hide show
  1. package/README.md +72 -2
  2. package/dist/design-system-v3.d.ts +234 -2
  3. package/dist/design-system-v3.js +3020 -2142
  4. package/dist/design-system-v3.umd.cjs +2 -2
  5. package/dist/style.css +1 -1
  6. package/package.json +11 -10
  7. package/src/components/CollapsibleList/CollapsibleList.mdx +47 -0
  8. package/src/components/CollapsibleList/CollapsibleList.stories.ts +52 -0
  9. package/src/components/CollapsibleList/CollapsibleList.vue +157 -0
  10. package/src/components/CollapsibleList/tests/CollapsibleList.spec.ts +60 -0
  11. package/src/components/CollapsibleList/types.d.ts +5 -0
  12. package/src/components/Customs/CustomInputSelect/CustomInputSelect.mdx +42 -0
  13. package/src/components/Customs/CustomInputSelect/CustomInputSelect.stories.ts +154 -0
  14. package/src/components/Customs/CustomInputSelect/CustomInputSelect.vue +185 -0
  15. package/src/components/Customs/CustomInputSelect/tests/CustomInputSelect.spec.ts +216 -0
  16. package/src/components/Customs/CustomSelect/CustomSelect.mdx +47 -0
  17. package/src/components/Customs/CustomSelect/CustomSelect.stories.ts +182 -0
  18. package/src/components/Customs/CustomSelect/CustomSelect.vue +188 -0
  19. package/src/components/Customs/CustomSelect/tests/CustomSelect.spec.ts +236 -0
  20. package/src/components/FooterBar/A11yCompliance.ts +9 -0
  21. package/src/components/FooterBar/FooterBar.mdx +115 -0
  22. package/src/components/FooterBar/FooterBar.stories.ts +632 -0
  23. package/src/components/FooterBar/FooterBar.vue +330 -0
  24. package/src/components/FooterBar/config.ts +20 -0
  25. package/src/components/FooterBar/defaultSocialMediaLinks.ts +21 -0
  26. package/src/components/FooterBar/locales.ts +16 -0
  27. package/src/components/FooterBar/tests/FooterBar.spec.ts +167 -0
  28. package/src/components/FooterBar/tests/FooterBarConfig.spec.ts +36 -0
  29. package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +27 -0
  30. package/src/components/FooterBar/types.d.ts +10 -0
  31. package/src/components/LangBtn/LangBtn.mdx +2 -1
  32. package/src/components/LangBtn/LangBtn.vue +3 -3
  33. package/src/components/Logo/Logo.mdx +26 -0
  34. package/src/components/Logo/Logo.stories.ts +217 -0
  35. package/src/components/Logo/Logo.vue +397 -0
  36. package/src/components/Logo/LogoSize.ts +7 -0
  37. package/src/components/Logo/locales.ts +6 -0
  38. package/src/components/Logo/logoDimensionsMapping.ts +16 -0
  39. package/src/components/Logo/tests/Logo.spec.ts +75 -0
  40. package/src/components/Logo/types.d.ts +8 -0
  41. package/src/components/SocialMediaLinks/DefaultSocialMediaLinks.ts +21 -0
  42. package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +15 -0
  43. package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +72 -0
  44. package/src/components/SocialMediaLinks/SocialMediaLinks.vue +92 -0
  45. package/src/components/SocialMediaLinks/locales.ts +3 -0
  46. package/src/components/SocialMediaLinks/tests/DefaultSocialMediaLinks.spec.ts +21 -0
  47. package/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.ts +89 -0
  48. package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +24 -0
  49. package/src/components/SocialMediaLinks/types.d.ts +5 -0
  50. package/src/components/index.ts +6 -0
  51. package/src/directives/clickOutside.ts +24 -0
  52. package/src/temp/TestDTComponent.vue +6 -10
  53. package/src/temp/gridsTests.vue +0 -4
  54. package/src/utils/propValidator/index.ts +20 -0
  55. package/src/utils/propValidator/tests/propValidator.spec.ts +40 -0
@@ -0,0 +1,217 @@
1
+ import type { StoryObj, Meta } from '@storybook/vue3'
2
+ import Logo from './Logo.vue'
3
+ import { VSheet } from 'vuetify/components'
4
+
5
+ const meta = {
6
+ title: 'Components/Logo',
7
+ component: Logo,
8
+ parameters: {
9
+ layout: 'fullscreen',
10
+ },
11
+ argTypes: {
12
+ hideSignature: { control: 'boolean' },
13
+ hideOrganism: { control: 'boolean' },
14
+ risquePro: { control: 'boolean' },
15
+ ariaLabel: { control: 'text' },
16
+ avatar: { control: 'boolean' },
17
+ dark: { control: 'boolean' },
18
+ size: {
19
+ options: ['normal', 'small', 'x-small'],
20
+ control: { type: 'select' },
21
+ default: 'normal',
22
+ },
23
+ },
24
+ } satisfies Meta<typeof Logo>
25
+
26
+ export default meta
27
+
28
+ type Story = StoryObj<typeof meta>
29
+
30
+ export const Default: Story = {
31
+ args: {
32
+ hideSignature: false,
33
+ hideOrganism: false,
34
+ risquePro: false,
35
+ ariaLabel: '',
36
+ avatar: false,
37
+ dark: false,
38
+ size: 'normal',
39
+ },
40
+ render: args => ({
41
+ components: { Logo, VSheet },
42
+ setup() {
43
+ return { args }
44
+ },
45
+ template: `
46
+ <div class="d-flex flex-wrap align-center pa-4">
47
+ <VSheet v-if="args.dark" color="primary" class="pa-0">
48
+ <Logo v-bind="args" />
49
+ </VSheet>
50
+ <Logo v-else v-bind="args" />
51
+ </div>
52
+ `,
53
+ }),
54
+ }
55
+
56
+ export const small: Story = {
57
+ args: {
58
+ hideSignature: false,
59
+ hideOrganism: false,
60
+ risquePro: false,
61
+ ariaLabel: '',
62
+ avatar: false,
63
+ dark: false,
64
+ size: 'small',
65
+ },
66
+ render: args => ({
67
+ components: { Logo },
68
+ setup() {
69
+ return { args }
70
+ },
71
+ template: `
72
+ <div class="d-flex flex-wrap align-center pa-4">
73
+ <Logo v-bind="args" />
74
+ </div>
75
+ `,
76
+ }),
77
+ }
78
+
79
+ export const xSmall: Story = {
80
+ args: {
81
+ hideSignature: false,
82
+ hideOrganism: false,
83
+ risquePro: false,
84
+ ariaLabel: '',
85
+ avatar: false,
86
+ dark: false,
87
+ size: 'x-small',
88
+ },
89
+ render: args => ({
90
+ components: { Logo },
91
+ setup() {
92
+ return { args }
93
+ },
94
+ template: `
95
+ <div class="d-flex flex-wrap align-center pa-4">
96
+ <Logo v-bind="args" />
97
+ </div>
98
+ `,
99
+ }),
100
+ }
101
+
102
+ export const hideSignature: Story = {
103
+ args: {
104
+ hideSignature: true,
105
+ hideOrganism: false,
106
+ risquePro: false,
107
+ ariaLabel: '',
108
+ avatar: false,
109
+ dark: false,
110
+ size: 'normal',
111
+ },
112
+ render: args => ({
113
+ components: { Logo },
114
+ setup() {
115
+ return { args }
116
+ },
117
+ template: `
118
+ <div class="d-flex flex-wrap align-center pa-4">
119
+ <Logo v-bind="args" />
120
+ </div>
121
+ `,
122
+ }),
123
+ }
124
+
125
+ export const hideOrganism: Story = {
126
+ args: {
127
+ hideSignature: false,
128
+ hideOrganism: true,
129
+ risquePro: false,
130
+ ariaLabel: '',
131
+ avatar: false,
132
+ dark: false,
133
+ size: 'normal',
134
+ },
135
+ render: args => ({
136
+ components: { Logo },
137
+ setup() {
138
+ return { args }
139
+ },
140
+ template: `
141
+ <div class="d-flex flex-wrap align-center pa-4">
142
+ <Logo v-bind="args" />
143
+ </div>
144
+ `,
145
+ }),
146
+ }
147
+
148
+ export const risquePro: Story = {
149
+ args: {
150
+ hideSignature: false,
151
+ hideOrganism: false,
152
+ risquePro: true,
153
+ ariaLabel: '',
154
+ avatar: false,
155
+ dark: false,
156
+ size: 'normal',
157
+ },
158
+ render: args => ({
159
+ components: { Logo },
160
+ setup() {
161
+ return { args }
162
+ },
163
+ template: `
164
+ <div class="d-flex flex-wrap align-center pa-4">
165
+ <Logo v-bind="args" />
166
+ </div>
167
+ `,
168
+ }),
169
+ }
170
+
171
+ export const avatar: Story = {
172
+ args: {
173
+ hideSignature: false,
174
+ hideOrganism: false,
175
+ risquePro: true,
176
+ ariaLabel: '',
177
+ avatar: true,
178
+ dark: false,
179
+ size: 'normal',
180
+ },
181
+ render: args => ({
182
+ components: { Logo },
183
+ setup() {
184
+ return { args }
185
+ },
186
+ template: `
187
+ <div class="d-flex flex-wrap align-center pa-4">
188
+ <Logo v-bind="args" />
189
+ </div>
190
+ `,
191
+ }),
192
+ }
193
+
194
+ export const dark: Story = {
195
+ args: {
196
+ hideSignature: false,
197
+ hideOrganism: false,
198
+ risquePro: false,
199
+ ariaLabel: '',
200
+ avatar: false,
201
+ dark: true,
202
+ size: 'normal',
203
+ },
204
+ render: args => ({
205
+ components: { Logo, VSheet },
206
+ setup() {
207
+ return { args }
208
+ },
209
+ template: `
210
+ <div class="d-flex flex-wrap align-center pa-4">
211
+ <VSheet v-if="args.dark" color="primary" class="pa-4">
212
+ <Logo v-bind="args" />
213
+ </VSheet>
214
+ </div>
215
+ `,
216
+ }),
217
+ }
@@ -0,0 +1,397 @@
1
+ <script setup lang="ts">
2
+ import { type PropType, ref, computed } from 'vue'
3
+
4
+ import { locales } from './locales'
5
+
6
+ import { LogoSize, LOGO_SIZE_VALUES } from './LogoSize'
7
+
8
+ import { cnamLightTheme } from '@/designTokens/tokens/cnam/cnamLightTheme'
9
+
10
+ import {
11
+ logoDimensionsMapping,
12
+ logoAvatarDimensionsMapping,
13
+ } from './logoDimensionsMapping'
14
+
15
+ import { propValidator } from '@/utils/propValidator'
16
+
17
+ const props = defineProps({
18
+ hideSignature: {
19
+ type: Boolean,
20
+ default: false,
21
+ },
22
+ hideOrganism: {
23
+ type: Boolean,
24
+ default: false,
25
+ },
26
+ risquePro: {
27
+ type: Boolean,
28
+ default: false,
29
+ },
30
+ ariaLabel: {
31
+ type: String,
32
+ default: undefined,
33
+ },
34
+ avatar: {
35
+ type: Boolean,
36
+ default: false,
37
+ },
38
+ dark: {
39
+ type: Boolean,
40
+ default: false,
41
+ },
42
+ size: {
43
+ type: String as PropType<typeof LogoSize[keyof typeof LogoSize]>,
44
+ default: LogoSize.NORMAL,
45
+ validator: (value: string) => propValidator('size', LOGO_SIZE_VALUES, value),
46
+ },
47
+ })
48
+
49
+ const risqueProColor = ref(cnamLightTheme.risquePro)
50
+
51
+ const fillColor = computed(() => {
52
+ return props.dark ? '#fff' : cnamLightTheme.primary
53
+ })
54
+
55
+ const dimensions = computed(() => {
56
+ return props.avatar
57
+ ? logoAvatarDimensionsMapping[props.size]
58
+ : logoDimensionsMapping[props.size]
59
+ })
60
+
61
+ const viewBox = computed(() => {
62
+ if (props.avatar) {
63
+ return '0 0 64 64'
64
+ }
65
+
66
+ if (props.hideSignature) {
67
+ return '0 0 206 64'
68
+ }
69
+
70
+ return '0 0 211 64'
71
+ })
72
+
73
+ const label = computed(() => {
74
+ if (props.ariaLabel) {
75
+ return props.ariaLabel
76
+ }
77
+
78
+ if (props.avatar) {
79
+ // Return an empty string since there is no text,
80
+ // this is an illustration image
81
+ return ''
82
+ }
83
+
84
+ const COLON_SEPARATOR = ' : '
85
+ const COMMA_SEPARATOR = ', '
86
+
87
+ let label = `${locales.assuranceMaladie}`
88
+
89
+ if (!props.hideOrganism) {
90
+ label = locales.organism.concat(COMMA_SEPARATOR, label)
91
+ }
92
+
93
+ if (!props.hideSignature) {
94
+ label = label.concat(COLON_SEPARATOR, locales.signature)
95
+ }
96
+
97
+ if (props.risquePro) {
98
+ label = locales.assuranceMaladie + ': ' + locales.risquePro
99
+ }
100
+
101
+ return label
102
+ })
103
+ </script>
104
+
105
+ <template>
106
+ <svg
107
+ :fill="fillColor"
108
+ :aria-label="label"
109
+ :width="dimensions.width"
110
+ :height="dimensions.height"
111
+ :viewBox="viewBox"
112
+ role="img"
113
+ focusable="false"
114
+ xmlns="http://www.w3.org/2000/svg"
115
+ :aria-hidden="avatar ? 'true' : 'false'"
116
+ >
117
+ <path
118
+ v-if="risquePro && !avatar"
119
+ :fill="risqueProColor"
120
+ 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"
121
+ />
122
+
123
+ <g
124
+ v-else-if="!hideSignature && !avatar"
125
+ aria-hidden="true"
126
+ role="presentation"
127
+ >
128
+ <path
129
+ d="M69.2 55.3h1.3l2.1 6.5h-1.2l-1-3.4-.6-2.1-.6 2-1 3.5H67l2.2-6.5Zm-.9 3.9h3v.9h-3v-1Z"
130
+ />
131
+
132
+ <path
133
+ d="M73.3 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.7-.7-.7-1.3 0-1.1 1-1.7 2-1.7h2.4v1H77c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.2.7.8 0 1.4-.4 1.4-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z"
134
+ />
135
+
136
+ <path
137
+ d="M79 55.5c0-.4.3-.7.7-.7.4 0 .8.3.8.7 0 .3-.3.6-.8.6-.4 0-.7-.2-.7-.6Zm.2 1.5h1.1v4.9h-1.1v-5Z"
138
+ />
139
+
140
+ <path
141
+ d="M82.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"
142
+ />
143
+
144
+ <path
145
+ d="M88.1 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1 .5-1.1 1.2h2.1Z"
146
+ />
147
+
148
+ <path
149
+ d="M93.8 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.2V59c0-.8-.2-1-.8-1-.4 0-.7.1-1 .5v3.4h-1.2V57Z"
150
+ />
151
+
152
+ <path
153
+ d="m99.3 61.3.5-.7c.4.3.9.5 1.3.5.6 0 .8-.2.8-.6 0-.4-.5-.6-1-.8-.7-.2-1.4-.6-1.4-1.4 0-.8.7-1.4 1.8-1.4.7 0 1.2.3 1.6.5l-.5.7c-.3-.2-.7-.4-1-.4-.6 0-.8.2-.8.5 0 .4.5.6 1 .8.7.2 1.4.5 1.4 1.5 0 .8-.6 1.5-1.9 1.5a3 3 0 0 1-1.8-.7Z"
154
+ />
155
+
156
+ <path
157
+ d="M104 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"
158
+ />
159
+
160
+ <path
161
+ d="M109.7 57h1v.6c.5-.4 1-.8 1.6-.8.7 0 1 .4 1.3.9.5-.5 1-.9 1.5-.9 1 0 1.6.8 1.6 2v3h-1.2V59c0-.8-.2-1-.7-1-.4 0-.7 0-1 .5v3.4h-1.2V59c0-.8-.3-1-.8-1-.3 0-.6 0-1 .5v3.4h-1.2V57h.1Z"
162
+ />
163
+
164
+ <path
165
+ d="m119.5 61.4-.2.5h-.9v-7h1.2v2.5c.3-.3.8-.6 1.3-.6 1.3 0 2 1 2 2.5 0 1.7-1 2.6-2.1 2.6-.4 0-1-.1-1.3-.5Zm2.2-2c0-1-.3-1.6-1-1.6-.4 0-.7.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1.1-.5 1.1-1.6Z"
166
+ />
167
+
168
+ <path
169
+ d="M124.3 60.6v-5.8h1.2v5.9c0 .3.1.4.2.4h.2l.1.8-.6.1c-.8 0-1-.6-1-1.4Z"
170
+ />
171
+
172
+ <path
173
+ d="M127 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6H128c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"
174
+ />
175
+
176
+ <path
177
+ d="M133.4 60.4c-.4 0-.8.3-.8.7 0 .5.4.7.8.7 0 .5-.3 1-1 1.2l.3.6c1-.3 1.5-1 1.5-2 0-.7-.3-1.2-.8-1.2Z"
178
+ />
179
+
180
+ <path
181
+ d="M138.2 57h1v.5c.5-.4 1-.7 1.5-.7 1.3 0 2 1 2 2.5 0 1.7-1 2.7-2.1 2.7-.5 0-1-.2-1.3-.6v2.3h-1.1V57Zm3.3 2.4c0-1-.4-1.6-1-1.6-.4 0-.8.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1-.5 1-1.6Z"
182
+ />
183
+
184
+ <path
185
+ d="M144.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"
186
+ />
187
+
188
+ <path
189
+ d="M147.5 59.4c0-1.6 1.2-2.6 2.4-2.6s2.3 1 2.3 2.6-1.1 2.6-2.3 2.6c-1.2 0-2.4-1-2.4-2.6Zm3.5 0c0-1-.4-1.6-1.2-1.6-.7 0-1.1.6-1.1 1.6s.4 1.6 1.1 1.6c.8 0 1.2-.6 1.2-1.6Z"
190
+ />
191
+
192
+ <path
193
+ d="M153.6 60.2v-2.3h-.7V57h.8l.1-1.4h1V57h1.2v.9h-1.2v2.3c0 .6.2.9.7.9l.5-.1.2.8-1 .2c-1.1 0-1.6-.8-1.6-1.8Z"
194
+ />
195
+
196
+ <path
197
+ d="M157 59.4c0-1.6 1-2.6 2.2-2.6 1.3 0 2 1 2 2.3v.6H158c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.2-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Zm-1.6-3.3 1.4-1.7.8.7-1.7 1.5-.5-.5Z"
198
+ />
199
+
200
+ <path
201
+ d="M162.2 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.6-.7-.6-1.3 0-1.1.9-1.7 1.9-1.7h2.4v1h-.9c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.3.7.7 0 1.3-.4 1.3-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z"
202
+ />
203
+
204
+ <path
205
+ d="M167.5 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"
206
+ />
207
+
208
+ <path
209
+ d="M173.2 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"
210
+ />
211
+
212
+ <path
213
+ d="M179.3 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.6.6-1.3 0-2.3-1-2.3-2.6Z"
214
+ />
215
+
216
+ <path
217
+ d="M184.5 54.8h1.1v2.8c.4-.4.9-.7 1.5-.7 1.1 0 1.5.7 1.5 2v3h-1.1v-3c0-.7-.2-1-.8-1-.4 0-.7.2-1.1.6v3.4h-1.2v-7Z"
218
+ />
219
+
220
+ <path
221
+ d="M190 60.5c0-1 .9-1.6 2.9-1.8 0-.5-.2-1-.9-1-.5 0-1 .3-1.4.5l-.4-.8a4 4 0 0 1 2-.6c1.2 0 1.8.8 1.8 2.1v2.9h-1v-.6c-.5.4-1 .7-1.5.7-1 0-1.5-.5-1.5-1.4Zm2.9 0v-1c-1.4.2-1.8.5-1.8 1 0 .4.3.6.7.6.4 0 .7-.2 1-.5Z"
222
+ />
223
+
224
+ <path
225
+ d="M195.4 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.5.6-1.4 0-2.4-1-2.4-2.6Z"
226
+ />
227
+
228
+ <path
229
+ d="M200.5 60v-3h1.2v2.9c0 .8.2 1.1.7 1.1.5 0 .7-.2 1.1-.7V57h1.2v4.9h-1V61h-.1c-.5.5-1 .9-1.6.9-1 0-1.5-.8-1.5-2Z"
230
+ />
231
+
232
+ <path
233
+ d="M206.3 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.1V59c0-.8-.2-1-.8-1-.4 0-.7.1-1.1.5v3.4h-1.2V57Z"
234
+ />
235
+ </g>
236
+
237
+ <g
238
+ v-if="!hideOrganism && !avatar"
239
+ role="presentation"
240
+ aria-hidden="true"
241
+ >
242
+ <path
243
+ 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"
244
+ />
245
+
246
+ <path
247
+ 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"
248
+ />
249
+
250
+ <path
251
+ 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"
252
+ />
253
+
254
+ <path
255
+ 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"
256
+ />
257
+
258
+ <path
259
+ 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"
260
+ />
261
+
262
+ <path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z" />
263
+
264
+ <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" />
265
+
266
+ <path
267
+ 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"
268
+ />
269
+
270
+ <path
271
+ 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"
272
+ />
273
+
274
+ <path
275
+ 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"
276
+ />
277
+
278
+ <path
279
+ 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"
280
+ />
281
+
282
+ <path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z" />
283
+
284
+ <path
285
+ 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"
286
+ />
287
+
288
+ <path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z" />
289
+
290
+ <path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z" />
291
+ </g>
292
+
293
+ <g v-if="!avatar">
294
+ <path
295
+ 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"
296
+ />
297
+
298
+ <path
299
+ d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z"
300
+ />
301
+
302
+ <path
303
+ 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"
304
+ />
305
+
306
+ <path
307
+ 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"
308
+ />
309
+
310
+ <path
311
+ 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"
312
+ />
313
+
314
+ <path
315
+ 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"
316
+ />
317
+
318
+ <path
319
+ 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"
320
+ />
321
+
322
+ <path
323
+ 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"
324
+ />
325
+
326
+ <path
327
+ 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"
328
+ />
329
+
330
+ <path
331
+ 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"
332
+ />
333
+
334
+ <path
335
+ 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"
336
+ />
337
+
338
+ <path
339
+ 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"
340
+ />
341
+
342
+ <path
343
+ 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"
344
+ />
345
+
346
+ <path
347
+ 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"
348
+ />
349
+
350
+ <path
351
+ 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"
352
+ />
353
+
354
+ <path
355
+ 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"
356
+ />
357
+
358
+ <path
359
+ 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"
360
+ />
361
+
362
+ <path
363
+ 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"
364
+ />
365
+ </g>
366
+
367
+ <path
368
+ 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"
369
+ />
370
+
371
+ <path
372
+ fill-rule="evenodd"
373
+ clip-rule="evenodd"
374
+ 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"
375
+ />
376
+
377
+ <path
378
+ 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"
379
+ />
380
+
381
+ <path
382
+ 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"
383
+ />
384
+
385
+ <path
386
+ 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"
387
+ />
388
+
389
+ <path
390
+ 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"
391
+ />
392
+
393
+ <path
394
+ 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"
395
+ />
396
+ </svg>
397
+ </template>
@@ -0,0 +1,7 @@
1
+ export const LogoSize = {
2
+ X_SMALL: 'x-small',
3
+ SMALL: 'small',
4
+ NORMAL: 'normal',
5
+ } as const
6
+
7
+ export const LOGO_SIZE_VALUES = Object.values(LogoSize)
@@ -0,0 +1,6 @@
1
+ export const locales = {
2
+ organism: 'Sécurité sociale',
3
+ assuranceMaladie: 'l’Assurance Maladie',
4
+ signature: 'Agir ensemble, protéger chacun',
5
+ risquePro: 'Risques Professionnels',
6
+ }
@@ -0,0 +1,16 @@
1
+ import type { IndexedObject, Dimensions } from './types'
2
+ import { LogoSize } from './LogoSize'
3
+
4
+ const createDimensions = (width: string, height: string): Dimensions => ({ width, height })
5
+
6
+ export const logoDimensionsMapping: IndexedObject<Dimensions> = {
7
+ [LogoSize.X_SMALL]: createDimensions('105', '32'),
8
+ [LogoSize.SMALL]: createDimensions('131', '40'),
9
+ [LogoSize.NORMAL]: createDimensions('211', '64'),
10
+ }
11
+
12
+ export const logoAvatarDimensionsMapping: IndexedObject<Dimensions> = {
13
+ [LogoSize.X_SMALL]: createDimensions('32', '32'),
14
+ [LogoSize.SMALL]: createDimensions('40', '40'),
15
+ [LogoSize.NORMAL]: createDimensions('64', '64'),
16
+ }