@cnamts/synapse 1.0.18 → 1.0.19

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 (43) hide show
  1. package/dist/{DateFilter-C0qj2Xp4.js → DateFilter-CeVuSfJ9.js} +1 -1
  2. package/dist/{NumberFilter-DLlqjkwg.js → NumberFilter-C8PAu_sw.js} +1 -1
  3. package/dist/{PeriodFilter-BQCGbydv.js → PeriodFilter-UMUaxx3d.js} +1 -1
  4. package/dist/{SelectFilter-CPnShk0h.js → SelectFilter-CqZl8CYt.js} +1 -1
  5. package/dist/{TextFilter-6N05mkcs.js → TextFilter-D_RhhNOh.js} +1 -1
  6. package/dist/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.d.ts +2 -2
  7. package/dist/components/Amelipro/AmeliproCaptcha/AmeliproCaptcha.d.ts +1 -1
  8. package/dist/components/Amelipro/AmeliproCard/AmeliproCard.d.ts +1 -1
  9. package/dist/components/Amelipro/AmeliproClickableTile/AmeliproClickableTile.d.ts +1 -1
  10. package/dist/components/Amelipro/AmeliproFilters/types.d.ts +6 -0
  11. package/dist/components/Captcha/Captcha.d.ts +1 -1
  12. package/dist/components/{Customs/Selects/SyBtnSelect/SyBtnSelect.d.ts → SyBtnMenu/SyBtnMenu.d.ts} +2 -17
  13. package/dist/components/UserMenuBtn/UserMenuBtn.d.ts +2 -2
  14. package/dist/components/index.d.ts +21 -21
  15. package/dist/design-system-v3.js +10 -10
  16. package/dist/design-system-v3.umd.cjs +16 -16
  17. package/dist/{main-CY1bof-3.js → main-B39UVv5p.js} +9018 -8993
  18. package/dist/style.css +1 -1
  19. package/package.json +2 -2
  20. package/src/components/Accordion/Accessibilite/AccessibilityGuide.mdx +1 -1
  21. package/src/components/Amelipro/AmeliproFilters/AmeliproFilters.mdx +14 -0
  22. package/src/components/Amelipro/AmeliproFilters/AmeliproFilters.stories.ts +106 -0
  23. package/src/components/Amelipro/AmeliproFilters/AmeliproFilters.vue +218 -0
  24. package/src/components/Amelipro/AmeliproFilters/__tests__/AmeliproFilters.spec.ts +180 -0
  25. package/src/components/Amelipro/AmeliproFilters/types.d.ts +6 -0
  26. package/src/components/Customs/Selects/SelectOverview.mdx +0 -68
  27. package/src/components/DatePicker/CalendarMode/tests/DatePicker.spec.ts +19 -6
  28. package/src/components/{Customs/Selects/SyBtnSelect/SyBtnSelect.mdx → SyBtnMenu/SyBtnMenu.mdx} +8 -9
  29. package/src/components/{Customs/Selects/SyBtnSelect/SyBtnSelect.stories.ts → SyBtnMenu/SyBtnMenu.stories.ts} +80 -78
  30. package/src/components/{Customs/Selects/SyBtnSelect/SyBtnSelect.vue → SyBtnMenu/SyBtnMenu.vue} +84 -24
  31. package/src/components/SyBtnMenu/accessibilite/AccessibilityGuide.mdx +77 -0
  32. package/src/components/{Customs/Selects/SyBtnSelect/tests/SyBtnSelect.spec.ts → SyBtnMenu/tests/SyBtnMenu.spec.ts} +38 -11
  33. package/src/components/UserMenuBtn/UserMenuBtn.vue +3 -3
  34. package/src/components/UserMenuBtn/tests/UserMenuBtn.spec.ts +3 -3
  35. package/src/components/index.ts +21 -21
  36. package/src/composables/date/tests/useDateFormatDayjs.spec.ts +19 -0
  37. package/src/composables/date/useDateFormatDayjs.ts +4 -4
  38. package/src/stories/Accessibilite/Avancement/Avancement.stories.ts +1 -1
  39. package/src/stories/Accessibilite/Vuetify/VuetifyItems.ts +0 -4
  40. package/src/stories/Components/Components.stories.ts +2 -2
  41. package/src/stories/GuideDuDev/PortailAgent.stories.ts +0 -1
  42. package/src/components/Customs/Selects/SyBtnSelect/Accessibilite.mdx +0 -13
  43. package/src/components/Customs/Selects/SyBtnSelect/Accessibilite.stories.ts +0 -25
@@ -1,11 +1,12 @@
1
1
  import { mdiAccount } from '@mdi/js'
2
2
  import type { Meta, StoryObj } from '@storybook/vue3'
3
- import SyBtnSelect from './SyBtnSelect.vue'
4
- import { VIcon, VListItem, VListItemTitle } from 'vuetify/components'
3
+ import SyBtnMenu from './SyBtnMenu.vue'
4
+ import { VListItem, VListItemTitle } from 'vuetify/components'
5
+ import SyIcon from '@/components/Customs/SyIcon/SyIcon.vue'
5
6
 
6
- const meta: Meta<typeof SyBtnSelect> = {
7
- title: 'Composants/Formulaires/Selects/SyBtnSelect',
8
- component: SyBtnSelect,
7
+ const meta: Meta<typeof SyBtnMenu> = {
8
+ title: 'Composants/Navigation/SyBtnMenu',
9
+ component: SyBtnMenu,
9
10
  parameters: {
10
11
  layout: 'fullscreen',
11
12
  controls: { exclude: ['modelValue', 'label', 'required', 'isOpen', 'formattedItems', 'selectedItem'] },
@@ -40,7 +41,7 @@ export const Default: Story = {
40
41
  name: 'Template',
41
42
  code: `
42
43
  <template>
43
- <SyBtnSelect
44
+ <SyBtnMenu
44
45
  :primary-info="primaryInfo"
45
46
  :menu-items="items"
46
47
  />
@@ -51,14 +52,13 @@ export const Default: Story = {
51
52
  name: 'Script',
52
53
  code: `
53
54
  <script setup lang="ts">
54
- import { SyBtnSelect } from '@cnamts/synapse'
55
+ import { SyBtnMenu } from '@cnamts/synapse'
55
56
 
56
57
  const primaryInfo = 'Mes options'
57
58
  const items = [
58
59
  { text: 'Administration', value: 'Administration', link: '/admin' },
59
60
  { text: 'Profil', value: 'Profil', link: '/profile' },
60
61
  { text: 'Paramètres', value: 'Paramètres', link: '/settings' },
61
- { text: 'Profil', value: 'Profil', link: '/profile' },
62
62
  ]
63
63
  </script>
64
64
  `,
@@ -71,18 +71,18 @@ const items = [
71
71
  { text: 'Administration', value: 'Administration', link: '/admin' },
72
72
  { text: 'Profil', value: 'Profil', link: '/profile' },
73
73
  { text: 'Paramètres', value: 'Paramètres', link: '/settings' },
74
- { text: 'Profil', value: 'Profil', link: '/profile' },
75
74
  ],
75
+ modelValue: 'Administration',
76
76
  },
77
77
  render: (args) => {
78
78
  return {
79
- components: { SyBtnSelect },
79
+ components: { SyBtnMenu },
80
80
  setup() {
81
81
  return { args }
82
82
  },
83
83
  template: `
84
84
  <div class="d-flex flex-wrap align-center pa-4">
85
- <SyBtnSelect v-bind="args"/>
85
+ <SyBtnMenu v-bind="args"/>
86
86
  </div>
87
87
  `,
88
88
  }
@@ -99,7 +99,7 @@ export const MobileView: Story = {
99
99
  name: 'Template',
100
100
  code: `
101
101
  <template>
102
- <SyBtnSelect
102
+ <SyBtnMenu
103
103
  :primary-info="primaryInfo"
104
104
  :menu-items="items"
105
105
  is-mobile-view
@@ -111,7 +111,7 @@ export const MobileView: Story = {
111
111
  name: 'Script',
112
112
  code: `
113
113
  <script setup lang="ts">
114
- import { SyBtnSelect } from '@cnamts/synapse'
114
+ import { SyBtnMenu } from '@cnamts/synapse'
115
115
 
116
116
  const primaryInfo = 'Mes options'
117
117
  const items = ['Option 1', 'Option 2']
@@ -127,13 +127,13 @@ const items = ['Option 1', 'Option 2']
127
127
  },
128
128
  render: (args) => {
129
129
  return {
130
- components: { SyBtnSelect, VIcon },
130
+ components: { SyBtnMenu, SyIcon },
131
131
  setup() {
132
132
  return { args, mdiAccount }
133
133
  },
134
134
  template: `
135
135
  <div class="d-flex flex-wrap align-center pa-4">
136
- <SyBtnSelect v-bind="args"/>
136
+ <SyBtnMenu v-bind="args"/>
137
137
  </div>
138
138
  `,
139
139
  }
@@ -150,14 +150,14 @@ export const WithSlotPrependIcon: Story = {
150
150
  name: 'Template',
151
151
  code: `
152
152
  <template>
153
- <SyBtnSelect
153
+ <SyBtnMenu
154
154
  :primary-info="primaryInfo"
155
155
  :menu-items="items"
156
156
  >
157
157
  <template #prepend-icon>
158
- <VIcon :icon="mdiAccount" color="secondary" />
158
+ <SyIcon :icon="mdiAccount" color="secondary" decorative />
159
159
  </template>
160
- </SyBtnSelect>
160
+ </SyBtnMenu>
161
161
  </template>
162
162
  `,
163
163
  },
@@ -165,7 +165,7 @@ export const WithSlotPrependIcon: Story = {
165
165
  name: 'Script',
166
166
  code: `
167
167
  <script setup lang="ts">
168
- import { SyBtnSelect } from '@cnamts/synapse'
168
+ import { SyBtnMenu } from '@cnamts/synapse'
169
169
  import { mdiAccount } from '@mdi/js'
170
170
 
171
171
  const primaryInfo = 'Jane Doe'
@@ -184,17 +184,17 @@ const items = ['Option 1', 'Option 2']
184
184
  },
185
185
  render: (args) => {
186
186
  return {
187
- components: { SyBtnSelect, VIcon },
187
+ components: { SyBtnMenu, SyIcon },
188
188
  setup() {
189
189
  return { args, mdiAccount }
190
190
  },
191
191
  template: `
192
192
  <div class="d-flex flex-wrap align-center pa-4">
193
- <SyBtnSelect v-bind="args">
193
+ <SyBtnMenu v-bind="args">
194
194
  <template #prepend-icon>
195
- <VIcon :icon="mdiAccount" color="secondary"/>
195
+ <SyIcon :icon="mdiAccount" color="secondary" decorative/>
196
196
  </template>
197
- </SyBtnSelect>
197
+ </SyBtnMenu>
198
198
  </div>
199
199
  `,
200
200
  }
@@ -211,14 +211,14 @@ export const WithSlotAppendIcon: Story = {
211
211
  name: 'Template',
212
212
  code: `
213
213
  <template>
214
- <SyBtnSelect
214
+ <SyBtnMenu
215
215
  :primary-info="primaryInfo"
216
216
  :menu-items="items"
217
217
  >
218
218
  <template #append-icon>
219
- <VIcon :icon="mdiAccount" color="secondary" />
219
+ <SyIcon :icon="mdiAccount" color="secondary" decorative />
220
220
  </template>
221
- </SyBtnSelect>
221
+ </SyBtnMenu>
222
222
  </template>
223
223
  `,
224
224
  },
@@ -226,7 +226,7 @@ export const WithSlotAppendIcon: Story = {
226
226
  name: 'Script',
227
227
  code: `
228
228
  <script setup lang="ts">
229
- import { SyBtnSelect } from '@cnamts/synapse'
229
+ import { SyBtnMenu } from '@cnamts/synapse'
230
230
  import { mdiAccount } from '@mdi/js'
231
231
 
232
232
  const primaryInfo = 'Jane Doe'
@@ -242,17 +242,17 @@ const items = ['Option 1', 'Option 2']
242
242
  },
243
243
  render: (args) => {
244
244
  return {
245
- components: { SyBtnSelect, VIcon },
245
+ components: { SyBtnMenu, SyIcon },
246
246
  setup() {
247
247
  return { args, mdiAccount }
248
248
  },
249
249
  template: `
250
250
  <div class="d-flex flex-wrap align-center pa-4">
251
- <SyBtnSelect v-bind="args">
251
+ <SyBtnMenu v-bind="args">
252
252
  <template #append-icon>
253
- <VIcon :icon="mdiAccount" color="secondary"/>
253
+ <SyIcon :icon="mdiAccount" color="secondary" decorative />
254
254
  </template>
255
- </SyBtnSelect>
255
+ </SyBtnMenu>
256
256
  </div>
257
257
  `,
258
258
  }
@@ -269,15 +269,15 @@ export const WithIconOnly: Story = {
269
269
  name: 'Template',
270
270
  code: `
271
271
  <template>
272
- <SyBtnSelect
272
+ <SyBtnMenu
273
273
  :primary-info="primaryInfo"
274
274
  :menu-items="items"
275
275
  icon-only
276
276
  >
277
277
  <template #prepend-icon>
278
- <VIcon :icon="mdiAccount" color="secondary" />
278
+ <SyIcon :icon="mdiAccount" color="secondary" decorative />
279
279
  </template>
280
- </SyBtnSelect>
280
+ </SyBtnMenu>
281
281
  </template>
282
282
  `,
283
283
  },
@@ -285,7 +285,7 @@ export const WithIconOnly: Story = {
285
285
  name: 'Script',
286
286
  code: `
287
287
  <script setup lang="ts">
288
- import { SyBtnSelect } from '@cnamts/synapse'
288
+ import { SyBtnMenu } from '@cnamts/synapse'
289
289
  import { mdiAccount } from '@mdi/js'
290
290
 
291
291
  const primaryInfo = 'Jane Doe'
@@ -302,17 +302,17 @@ const items = ['Option 1', 'Option 2']
302
302
  },
303
303
  render: (args) => {
304
304
  return {
305
- components: { SyBtnSelect, VIcon },
305
+ components: { SyBtnMenu, SyIcon },
306
306
  setup() {
307
307
  return { args, mdiAccount }
308
308
  },
309
309
  template: `
310
310
  <div class="d-flex flex-wrap align-center pa-4">
311
- <SyBtnSelect v-bind="args">
311
+ <SyBtnMenu v-bind="args">
312
312
  <template #prepend-icon>
313
- <VIcon :icon="mdiAccount" color="secondary"/>
313
+ <SyIcon :icon="mdiAccount" color="secondary" decorative />
314
314
  </template>
315
- </SyBtnSelect>
315
+ </SyBtnMenu>
316
316
  </div>
317
317
  `,
318
318
  }
@@ -329,7 +329,7 @@ export const WithLogoutItemSlot: Story = {
329
329
  name: 'Template',
330
330
  code: `
331
331
  <template>
332
- <SyBtnSelect
332
+ <SyBtnMenu
333
333
  :primary-info="primaryInfo"
334
334
  :menu-items="items"
335
335
  >
@@ -338,7 +338,7 @@ export const WithLogoutItemSlot: Story = {
338
338
  <VListItemTitle>Logout</VListItemTitle>
339
339
  </VListItem>
340
340
  </template>
341
- </SyBtnSelect>
341
+ </SyBtnMenu>
342
342
  </template>
343
343
  `,
344
344
  },
@@ -346,7 +346,7 @@ export const WithLogoutItemSlot: Story = {
346
346
  name: 'Script',
347
347
  code: `
348
348
  <script setup lang="ts">
349
- import { SyBtnSelect } from '@cnamts/synapse'
349
+ import { SyBtnMenu } from '@cnamts/synapse'
350
350
 
351
351
  const primaryInfo = 'Mes options'
352
352
  const items = ['Option 1', 'Option 2']
@@ -361,19 +361,19 @@ const items = ['Option 1', 'Option 2']
361
361
  },
362
362
  render: (args) => {
363
363
  return {
364
- components: { SyBtnSelect, VListItem, VListItemTitle },
364
+ components: { SyBtnMenu, VListItem, VListItemTitle },
365
365
  setup() {
366
366
  return { args }
367
367
  },
368
368
  template: `
369
369
  <div class="d-flex flex-wrap align-center pa-4">
370
- <SyBtnSelect v-bind="args">
370
+ <SyBtnMenu v-bind="args">
371
371
  <template #footer-list-item>
372
372
  <VListItem @click="console.log('logout')">
373
373
  <VListItemTitle>Logout</VListItemTitle>
374
374
  </VListItem>
375
375
  </template>
376
- </SyBtnSelect>
376
+ </SyBtnMenu>
377
377
  </div>
378
378
  `,
379
379
  }
@@ -390,15 +390,15 @@ export const WithCustomKeys: Story = {
390
390
  name: 'Template',
391
391
  code: `
392
392
  <template>
393
- <SyBtnSelect
393
+ <SyBtnMenu
394
394
  text-key="customText"
395
395
  value-key="customValue"
396
396
  :menu-items="menuItems"
397
397
  >
398
398
  <template #prepend-icon>
399
- <VIcon :icon="mdiAccount" />
399
+ <SyIcon :icon="mdiAccount" decorative />
400
400
  </template>
401
- </SyBtnSelect>
401
+ </SyBtnMenu>
402
402
  </template>
403
403
  `,
404
404
  },
@@ -406,7 +406,7 @@ export const WithCustomKeys: Story = {
406
406
  name: 'Script',
407
407
  code: `
408
408
  <script setup lang="ts">
409
- import { SyBtnSelect } from '@cnamts/synapse'
409
+ import { SyBtnMenu } from '@cnamts/synapse'
410
410
  import { mdiAccount } from '@mdi/js'
411
411
 
412
412
  const primaryInfo = 'Information principale'
@@ -429,19 +429,19 @@ const menuItems = [
429
429
  },
430
430
  render: (args) => {
431
431
  return {
432
- components: { SyBtnSelect, VIcon },
432
+ components: { SyBtnMenu, SyIcon },
433
433
  setup() {
434
434
  return { args, mdiAccount }
435
435
  },
436
436
  template: `
437
437
  <div class="d-flex flex-wrap align-center pa-4">
438
- <SyBtnSelect
438
+ <SyBtnMenu
439
439
  v-bind="args"
440
440
  >
441
441
  <template #prepend-icon>
442
- <VIcon :icon="mdiAccount"/>
442
+ <SyIcon :icon="mdiAccount" decorative />
443
443
  </template>
444
- </SyBtnSelect>
444
+ </SyBtnMenu>
445
445
  </div>
446
446
  `,
447
447
  }
@@ -458,19 +458,19 @@ export const WithMultipleSlots: Story = {
458
458
  name: 'Template',
459
459
  code: `
460
460
  <template>
461
- <SyBtnSelect
461
+ <SyBtnMenu
462
462
  :primary-info="primaryInfo"
463
463
  :menu-items="menuItems"
464
464
  >
465
465
  <template #prepend-icon>
466
- <VIcon :icon="mdiAccount" />
466
+ <SyIcon :icon="mdiAccount" decorative />
467
467
  </template>
468
468
  <template #footer-list-item>
469
469
  <VListItem @click="console.log('logout')">
470
470
  <VListItemTitle>Se déconnecter</VListItemTitle>
471
471
  </VListItem>
472
472
  </template>
473
- </SyBtnSelect>
473
+ </SyBtnMenu>
474
474
  </template>
475
475
  `,
476
476
  },
@@ -478,7 +478,7 @@ export const WithMultipleSlots: Story = {
478
478
  name: 'Script',
479
479
  code: `
480
480
  <script setup lang="ts">
481
- import { SyBtnSelect } from '@cnamts/synapse'
481
+ import { SyBtnMenu } from '@cnamts/synapse'
482
482
  import { mdiAccount } from '@mdi/js'
483
483
 
484
484
  const primaryInfo = 'Information principale'
@@ -493,22 +493,22 @@ const menuItems = ['Option 1', 'Option 2']
493
493
  },
494
494
  render: (args) => {
495
495
  return {
496
- components: { SyBtnSelect, VIcon, VListItem, VListItemTitle },
496
+ components: { SyBtnMenu, SyIcon, VListItem, VListItemTitle },
497
497
  setup() {
498
498
  return { args, mdiAccount }
499
499
  },
500
500
  template: `
501
501
  <div class="d-flex flex-wrap align-center pa-4">
502
- <SyBtnSelect v-bind="args">
502
+ <SyBtnMenu v-bind="args">
503
503
  <template #prepend-icon>
504
- <VIcon :icon="mdiAccount"/>
504
+ <SyIcon :icon="mdiAccount" decorative />
505
505
  </template>
506
506
  <template #footer-list-item>
507
507
  <VListItem @click="console.log('logout')">
508
508
  <VListItemTitle>Se déconnecter</VListItemTitle>
509
509
  </VListItem>
510
510
  </template>
511
- </SyBtnSelect>
511
+ </SyBtnMenu>
512
512
  </div>
513
513
  `,
514
514
  }
@@ -525,18 +525,19 @@ export const WithCustomStyles: Story = {
525
525
  name: 'Template',
526
526
  code: `
527
527
  <template>
528
- <SyBtnSelect
528
+ <SyBtnMenu
529
529
  :primary-info="primaryInfo"
530
530
  :menu-items="items"
531
531
  >
532
532
  <template #prepend-icon>
533
- <VIcon
533
+ <SyIcon
534
534
  :icon="mdiAccount"
535
535
  class="mr-2"
536
- color="secondary"
536
+ color="secondary"
537
+ decorative
537
538
  />
538
539
  </template>
539
- </SyBtnSelect>
540
+ </SyBtnMenu>
540
541
  </template>
541
542
  `,
542
543
  },
@@ -544,7 +545,7 @@ export const WithCustomStyles: Story = {
544
545
  name: 'Script',
545
546
  code: `
546
547
  <script setup lang="ts">
547
- import { SyBtnSelect } from '@cnamts/synapse'
548
+ import { SyBtnMenu } from '@cnamts/synapse'
548
549
  import { mdiAccount } from '@mdi/js'
549
550
 
550
551
  const primaryInfo = 'Jane Doe'
@@ -560,21 +561,22 @@ const items = ['Option 1', 'Option 2']
560
561
  },
561
562
  render: (args) => {
562
563
  return {
563
- components: { SyBtnSelect, VIcon },
564
+ components: { SyBtnMenu, SyIcon },
564
565
  setup() {
565
566
  return { args, mdiAccount }
566
567
  },
567
568
  template: `
568
569
  <div class="d-flex flex-wrap align-center pa-4">
569
- <SyBtnSelect v-bind="args">
570
+ <SyBtnMenu v-bind="args">
570
571
  <template #prepend-icon>
571
- <VIcon
572
+ <SyIcon
572
573
  :icon="mdiAccount"
573
574
  class="mr-2"
574
575
  color="secondary"
576
+ decorative
575
577
  />
576
578
  </template>
577
- </SyBtnSelect>
579
+ </SyBtnMenu>
578
580
  </div>
579
581
  `,
580
582
  }
@@ -591,15 +593,15 @@ export const WithStyledOptions: Story = {
591
593
  name: 'Template',
592
594
  code: `
593
595
  <template>
594
- <SyBtnSelect
596
+ <SyBtnMenu
595
597
  :primary-info="primaryInfo"
596
598
  :menu-items="menuItems"
597
599
  :options="options"
598
600
  >
599
601
  <template #prepend-icon>
600
- <VIcon :icon="mdiAccount" />
602
+ <SyIcon :icon="mdiAccount" decorative />
601
603
  </template>
602
- </SyBtnSelect>
604
+ </SyBtnMenu>
603
605
  </template>
604
606
  `,
605
607
  },
@@ -607,7 +609,7 @@ export const WithStyledOptions: Story = {
607
609
  name: 'Script',
608
610
  code: `
609
611
  <script setup lang="ts">
610
- import { SyBtnSelect } from '@cnamts/synapse'
612
+ import { SyBtnMenu } from '@cnamts/synapse'
611
613
  import { mdiAccount } from '@mdi/js'
612
614
 
613
615
  const primaryInfo = 'Information principale'
@@ -632,19 +634,19 @@ const options = {
632
634
  },
633
635
  render: (args) => {
634
636
  return {
635
- components: { SyBtnSelect, VIcon },
637
+ components: { SyBtnMenu, SyIcon },
636
638
  setup() {
637
639
  return { args, mdiAccount }
638
640
  },
639
641
  template: `
640
642
  <div class="d-flex flex-wrap align-center pa-4">
641
- <SyBtnSelect
643
+ <SyBtnMenu
642
644
  v-bind="args"
643
645
  >
644
646
  <template #prepend-icon>
645
- <VIcon :icon="mdiAccount"/>
647
+ <SyIcon :icon="mdiAccount" decorative />
646
648
  </template>
647
- </SyBtnSelect>
649
+ </SyBtnMenu>
648
650
  </div>
649
651
  `,
650
652
  }