adminforth 2.26.4 → 2.27.0-next.10

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 (58) hide show
  1. package/commands/createApp/templates/package.json.hbs +1 -1
  2. package/dist/modules/restApi.d.ts +1 -0
  3. package/dist/modules/restApi.d.ts.map +1 -1
  4. package/dist/modules/restApi.js +65 -3
  5. package/dist/modules/restApi.js.map +1 -1
  6. package/dist/modules/styles.js +2 -2
  7. package/dist/modules/styles.js.map +1 -1
  8. package/dist/servers/express.d.ts.map +1 -1
  9. package/dist/servers/express.js +7 -1
  10. package/dist/servers/express.js.map +1 -1
  11. package/dist/spa/package-lock.json +85 -7
  12. package/dist/spa/package.json +4 -1
  13. package/dist/spa/pnpm-lock.yaml +339 -299
  14. package/dist/spa/src/App.vue +1 -1
  15. package/dist/spa/src/adminforth.ts +17 -29
  16. package/dist/spa/src/afcl/Input.vue +1 -1
  17. package/dist/spa/src/afcl/Modal.vue +12 -1
  18. package/dist/spa/src/afcl/Select.vue +4 -2
  19. package/dist/spa/src/afcl/Table.vue +27 -13
  20. package/dist/spa/src/components/AcceptModal.vue +2 -0
  21. package/dist/spa/src/components/ColumnValueInputWrapper.vue +35 -4
  22. package/dist/spa/src/components/CustomRangePicker.vue +22 -67
  23. package/dist/spa/src/components/GroupsTable.vue +7 -4
  24. package/dist/spa/src/components/ListActionsThreeDots.vue +9 -8
  25. package/dist/spa/src/components/RangePicker.vue +236 -0
  26. package/dist/spa/src/components/ResourceForm.vue +100 -6
  27. package/dist/spa/src/components/ResourceListTable.vue +45 -70
  28. package/dist/spa/src/components/Sidebar.vue +1 -1
  29. package/dist/spa/src/components/ThreeDotsMenu.vue +54 -57
  30. package/dist/spa/src/i18n.ts +1 -1
  31. package/dist/spa/src/stores/core.ts +4 -2
  32. package/dist/spa/src/types/Back.ts +10 -3
  33. package/dist/spa/src/types/Common.ts +43 -8
  34. package/dist/spa/src/types/FrontendAPI.ts +6 -1
  35. package/dist/spa/src/types/adapters/StorageAdapter.ts +12 -0
  36. package/dist/spa/src/utils/createEditUtils.ts +65 -0
  37. package/dist/spa/src/utils/index.ts +2 -1
  38. package/dist/spa/src/utils/listUtils.ts +8 -2
  39. package/dist/spa/src/utils/utils.ts +192 -12
  40. package/dist/spa/src/utils.ts +2 -1
  41. package/dist/spa/src/views/CreateView.vue +32 -59
  42. package/dist/spa/src/views/EditView.vue +30 -47
  43. package/dist/spa/src/views/ListView.vue +119 -18
  44. package/dist/spa/src/views/LoginView.vue +13 -13
  45. package/dist/spa/src/views/ShowView.vue +67 -61
  46. package/dist/spa/tsconfig.app.json +1 -1
  47. package/dist/types/Back.d.ts +7 -4
  48. package/dist/types/Back.d.ts.map +1 -1
  49. package/dist/types/Back.js.map +1 -1
  50. package/dist/types/Common.d.ts +43 -8
  51. package/dist/types/Common.d.ts.map +1 -1
  52. package/dist/types/Common.js.map +1 -1
  53. package/dist/types/FrontendAPI.d.ts +13 -1
  54. package/dist/types/FrontendAPI.d.ts.map +1 -1
  55. package/dist/types/FrontendAPI.js.map +1 -1
  56. package/dist/types/adapters/StorageAdapter.d.ts +11 -0
  57. package/dist/types/adapters/StorageAdapter.d.ts.map +1 -1
  58. package/package.json +1 -1
@@ -10,64 +10,67 @@ importers:
10
10
  dependencies:
11
11
  '@iconify-prerendered/vue-flag':
12
12
  specifier: ^0.28.1748584105
13
- version: 0.28.1754899047(vue@3.5.29(typescript@5.4.5))
13
+ version: 0.28.1754899047(vue@3.5.31(typescript@5.4.5))
14
14
  '@iconify-prerendered/vue-flowbite':
15
15
  specifier: ^0.28.1754899090
16
- version: 0.28.1754899090(vue@3.5.29(typescript@5.4.5))
16
+ version: 0.28.1754899090(vue@3.5.31(typescript@5.4.5))
17
17
  '@iconify-prerendered/vue-heroicons':
18
18
  specifier: ^0.28.1721921294
19
- version: 0.28.1721921294(vue@3.5.29(typescript@5.4.5))
19
+ version: 0.28.1721921294(vue@3.5.31(typescript@5.4.5))
20
20
  '@iconify-prerendered/vue-humbleicons':
21
21
  specifier: ^0.28.1754108846
22
- version: 0.28.1754108846(vue@3.5.29(typescript@5.4.5))
22
+ version: 0.28.1754108846(vue@3.5.31(typescript@5.4.5))
23
23
  '@unhead/vue':
24
24
  specifier: ^1.9.12
25
- version: 1.11.20(vue@3.5.29(typescript@5.4.5))
25
+ version: 1.11.20(vue@3.5.31(typescript@5.4.5))
26
26
  '@vueuse/core':
27
27
  specifier: ^10.10.0
28
- version: 10.11.1(vue@3.5.29(typescript@5.4.5))
28
+ version: 10.11.1(vue@3.5.31(typescript@5.4.5))
29
29
  apexcharts:
30
30
  specifier: ^4.7.0
31
31
  version: 4.7.0
32
+ async-mutex:
33
+ specifier: ^0.5.0
34
+ version: 0.5.0
32
35
  dayjs:
33
36
  specifier: ^1.11.11
34
- version: 1.11.19
37
+ version: 1.11.20
35
38
  debounce:
36
39
  specifier: ^2.1.0
37
40
  version: 2.2.0
38
41
  flowbite-datepicker:
39
42
  specifier: ^1.2.6
40
- version: 1.3.2(rollup@4.59.0)
43
+ version: 1.3.2(rollup@4.60.0)
41
44
  javascript-time-ago:
42
45
  specifier: ^2.5.11
43
46
  version: 2.6.4
47
+ lodash.debounce:
48
+ specifier: ^4.0.8
49
+ version: 4.0.8
44
50
  pinia:
45
51
  specifier: ^2.1.7
46
- version: 2.3.1(typescript@5.4.5)(vue@3.5.29(typescript@5.4.5))
52
+ version: 2.3.1(typescript@5.4.5)(vue@3.5.31(typescript@5.4.5))
47
53
  sanitize-html:
48
54
  specifier: ^2.13.0
49
- version: 2.17.1
55
+ version: 2.17.2
50
56
  unhead:
51
57
  specifier: ^1.9.12
52
58
  version: 1.11.20
53
59
  vue:
54
60
  specifier: ^3.5.12
55
- version: 3.5.29(typescript@5.4.5)
61
+ version: 3.5.31(typescript@5.4.5)
56
62
  vue-diff:
57
63
  specifier: ^1.2.4
58
- version: 1.2.4(vue@3.5.29(typescript@5.4.5))
64
+ version: 1.2.4(vue@3.5.31(typescript@5.4.5))
59
65
  vue-i18n:
60
66
  specifier: ^10.0.5
61
- version: 10.0.8(vue@3.5.29(typescript@5.4.5))
67
+ version: 10.0.8(vue@3.5.31(typescript@5.4.5))
62
68
  vue-router:
63
69
  specifier: ^4.3.0
64
- version: 4.6.4(vue@3.5.29(typescript@5.4.5))
65
- vue-slider-component:
66
- specifier: ^4.1.0-beta.7
67
- version: 4.1.0-beta.7
70
+ version: 4.6.4(vue@3.5.31(typescript@5.4.5))
68
71
  vue3-json-viewer:
69
72
  specifier: ^2.2.2
70
- version: 2.4.1(vue@3.5.29(typescript@5.4.5))
73
+ version: 2.4.1(vue@3.5.31(typescript@5.4.5))
71
74
  devDependencies:
72
75
  '@rushstack/eslint-patch':
73
76
  specifier: ^1.8.0
@@ -78,12 +81,18 @@ importers:
78
81
  '@tsconfig/node20':
79
82
  specifier: ^20.1.4
80
83
  version: 20.1.9
84
+ '@types/lodash.debounce':
85
+ specifier: ^4.0.9
86
+ version: 4.0.9
81
87
  '@types/node':
82
88
  specifier: ^20.12.5
83
89
  version: 20.19.37
90
+ '@types/sanitize-html':
91
+ specifier: ^2.16.1
92
+ version: 2.16.1
84
93
  '@vitejs/plugin-vue':
85
94
  specifier: ^5.0.4
86
- version: 5.2.4(vite@5.4.21(@types/node@20.19.37)(sass@1.97.3))(vue@3.5.29(typescript@5.4.5))
95
+ version: 5.2.4(vite@5.4.21(@types/node@20.19.37)(sass@1.98.0))(vue@3.5.31(typescript@5.4.5))
87
96
  '@vue/eslint-config-typescript':
88
97
  specifier: ^13.0.0
89
98
  version: 13.0.0(eslint-plugin-vue@9.33.0(eslint@8.57.1))(eslint@8.57.1)(typescript@5.4.5)
@@ -104,7 +113,7 @@ importers:
104
113
  version: 7.5.0
105
114
  flowbite:
106
115
  specifier: ^3.1.2
107
- version: 3.1.2(rollup@4.59.0)
116
+ version: 3.1.2(rollup@4.60.0)
108
117
  i18n-iso-countries:
109
118
  specifier: ^7.12.0
110
119
  version: 7.14.0
@@ -119,7 +128,7 @@ importers:
119
128
  version: 8.5.8
120
129
  sass:
121
130
  specifier: ^1.77.2
122
- version: 1.97.3
131
+ version: 1.98.0
123
132
  tailwindcss:
124
133
  specifier: ^3.4.17
125
134
  version: 3.4.19
@@ -128,7 +137,7 @@ importers:
128
137
  version: 5.4.5
129
138
  vite:
130
139
  specifier: ^5.2.13
131
- version: 5.4.21(@types/node@20.19.37)(sass@1.97.3)
140
+ version: 5.4.21(@types/node@20.19.37)(sass@1.98.0)
132
141
  vue-i18n-extract:
133
142
  specifier: ^2.0.7
134
143
  version: 2.0.7
@@ -150,8 +159,8 @@ packages:
150
159
  resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
151
160
  engines: {node: '>=6.9.0'}
152
161
 
153
- '@babel/parser@7.29.0':
154
- resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
162
+ '@babel/parser@7.29.2':
163
+ resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==}
155
164
  engines: {node: '>=6.0.0'}
156
165
  hasBin: true
157
166
 
@@ -494,141 +503,141 @@ packages:
494
503
  rollup:
495
504
  optional: true
496
505
 
497
- '@rollup/rollup-android-arm-eabi@4.59.0':
498
- resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==}
506
+ '@rollup/rollup-android-arm-eabi@4.60.0':
507
+ resolution: {integrity: sha512-WOhNW9K8bR3kf4zLxbfg6Pxu2ybOUbB2AjMDHSQx86LIF4rH4Ft7vmMwNt0loO0eonglSNy4cpD3MKXXKQu0/A==}
499
508
  cpu: [arm]
500
509
  os: [android]
501
510
 
502
- '@rollup/rollup-android-arm64@4.59.0':
503
- resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==}
511
+ '@rollup/rollup-android-arm64@4.60.0':
512
+ resolution: {integrity: sha512-u6JHLll5QKRvjciE78bQXDmqRqNs5M/3GVqZeMwvmjaNODJih/WIrJlFVEihvV0MiYFmd+ZyPr9wxOVbPAG2Iw==}
504
513
  cpu: [arm64]
505
514
  os: [android]
506
515
 
507
- '@rollup/rollup-darwin-arm64@4.59.0':
508
- resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==}
516
+ '@rollup/rollup-darwin-arm64@4.60.0':
517
+ resolution: {integrity: sha512-qEF7CsKKzSRc20Ciu2Zw1wRrBz4g56F7r/vRwY430UPp/nt1x21Q/fpJ9N5l47WWvJlkNCPJz3QRVw008fi7yA==}
509
518
  cpu: [arm64]
510
519
  os: [darwin]
511
520
 
512
- '@rollup/rollup-darwin-x64@4.59.0':
513
- resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==}
521
+ '@rollup/rollup-darwin-x64@4.60.0':
522
+ resolution: {integrity: sha512-WADYozJ4QCnXCH4wPB+3FuGmDPoFseVCUrANmA5LWwGmC6FL14BWC7pcq+FstOZv3baGX65tZ378uT6WG8ynTw==}
514
523
  cpu: [x64]
515
524
  os: [darwin]
516
525
 
517
- '@rollup/rollup-freebsd-arm64@4.59.0':
518
- resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==}
526
+ '@rollup/rollup-freebsd-arm64@4.60.0':
527
+ resolution: {integrity: sha512-6b8wGHJlDrGeSE3aH5mGNHBjA0TTkxdoNHik5EkvPHCt351XnigA4pS7Wsj/Eo9Y8RBU6f35cjN9SYmCFBtzxw==}
519
528
  cpu: [arm64]
520
529
  os: [freebsd]
521
530
 
522
- '@rollup/rollup-freebsd-x64@4.59.0':
523
- resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==}
531
+ '@rollup/rollup-freebsd-x64@4.60.0':
532
+ resolution: {integrity: sha512-h25Ga0t4jaylMB8M/JKAyrvvfxGRjnPQIR8lnCayyzEjEOx2EJIlIiMbhpWxDRKGKF8jbNH01NnN663dH638mA==}
524
533
  cpu: [x64]
525
534
  os: [freebsd]
526
535
 
527
- '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
528
- resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
536
+ '@rollup/rollup-linux-arm-gnueabihf@4.60.0':
537
+ resolution: {integrity: sha512-RzeBwv0B3qtVBWtcuABtSuCzToo2IEAIQrcyB/b2zMvBWVbjo8bZDjACUpnaafaxhTw2W+imQbP2BD1usasK4g==}
529
538
  cpu: [arm]
530
539
  os: [linux]
531
540
  libc: [glibc]
532
541
 
533
- '@rollup/rollup-linux-arm-musleabihf@4.59.0':
534
- resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
542
+ '@rollup/rollup-linux-arm-musleabihf@4.60.0':
543
+ resolution: {integrity: sha512-Sf7zusNI2CIU1HLzuu9Tc5YGAHEZs5Lu7N1ssJG4Tkw6e0MEsN7NdjUDDfGNHy2IU+ENyWT+L2obgWiguWibWQ==}
535
544
  cpu: [arm]
536
545
  os: [linux]
537
546
  libc: [musl]
538
547
 
539
- '@rollup/rollup-linux-arm64-gnu@4.59.0':
540
- resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
548
+ '@rollup/rollup-linux-arm64-gnu@4.60.0':
549
+ resolution: {integrity: sha512-DX2x7CMcrJzsE91q7/O02IJQ5/aLkVtYFryqCjduJhUfGKG6yJV8hxaw8pZa93lLEpPTP/ohdN4wFz7yp/ry9A==}
541
550
  cpu: [arm64]
542
551
  os: [linux]
543
552
  libc: [glibc]
544
553
 
545
- '@rollup/rollup-linux-arm64-musl@4.59.0':
546
- resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
554
+ '@rollup/rollup-linux-arm64-musl@4.60.0':
555
+ resolution: {integrity: sha512-09EL+yFVbJZlhcQfShpswwRZ0Rg+z/CsSELFCnPt3iK+iqwGsI4zht3secj5vLEs957QvFFXnzAT0FFPIxSrkQ==}
547
556
  cpu: [arm64]
548
557
  os: [linux]
549
558
  libc: [musl]
550
559
 
551
- '@rollup/rollup-linux-loong64-gnu@4.59.0':
552
- resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
560
+ '@rollup/rollup-linux-loong64-gnu@4.60.0':
561
+ resolution: {integrity: sha512-i9IcCMPr3EXm8EQg5jnja0Zyc1iFxJjZWlb4wr7U2Wx/GrddOuEafxRdMPRYVaXjgbhvqalp6np07hN1w9kAKw==}
553
562
  cpu: [loong64]
554
563
  os: [linux]
555
564
  libc: [glibc]
556
565
 
557
- '@rollup/rollup-linux-loong64-musl@4.59.0':
558
- resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
566
+ '@rollup/rollup-linux-loong64-musl@4.60.0':
567
+ resolution: {integrity: sha512-DGzdJK9kyJ+B78MCkWeGnpXJ91tK/iKA6HwHxF4TAlPIY7GXEvMe8hBFRgdrR9Ly4qebR/7gfUs9y2IoaVEyog==}
559
568
  cpu: [loong64]
560
569
  os: [linux]
561
570
  libc: [musl]
562
571
 
563
- '@rollup/rollup-linux-ppc64-gnu@4.59.0':
564
- resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
572
+ '@rollup/rollup-linux-ppc64-gnu@4.60.0':
573
+ resolution: {integrity: sha512-RwpnLsqC8qbS8z1H1AxBA1H6qknR4YpPR9w2XX0vo2Sz10miu57PkNcnHVaZkbqyw/kUWfKMI73jhmfi9BRMUQ==}
565
574
  cpu: [ppc64]
566
575
  os: [linux]
567
576
  libc: [glibc]
568
577
 
569
- '@rollup/rollup-linux-ppc64-musl@4.59.0':
570
- resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
578
+ '@rollup/rollup-linux-ppc64-musl@4.60.0':
579
+ resolution: {integrity: sha512-Z8pPf54Ly3aqtdWC3G4rFigZgNvd+qJlOE52fmko3KST9SoGfAdSRCwyoyG05q1HrrAblLbk1/PSIV+80/pxLg==}
571
580
  cpu: [ppc64]
572
581
  os: [linux]
573
582
  libc: [musl]
574
583
 
575
- '@rollup/rollup-linux-riscv64-gnu@4.59.0':
576
- resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
584
+ '@rollup/rollup-linux-riscv64-gnu@4.60.0':
585
+ resolution: {integrity: sha512-3a3qQustp3COCGvnP4SvrMHnPQ9d1vzCakQVRTliaz8cIp/wULGjiGpbcqrkv0WrHTEp8bQD/B3HBjzujVWLOA==}
577
586
  cpu: [riscv64]
578
587
  os: [linux]
579
588
  libc: [glibc]
580
589
 
581
- '@rollup/rollup-linux-riscv64-musl@4.59.0':
582
- resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
590
+ '@rollup/rollup-linux-riscv64-musl@4.60.0':
591
+ resolution: {integrity: sha512-pjZDsVH/1VsghMJ2/kAaxt6dL0psT6ZexQVrijczOf+PeP2BUqTHYejk3l6TlPRydggINOeNRhvpLa0AYpCWSQ==}
583
592
  cpu: [riscv64]
584
593
  os: [linux]
585
594
  libc: [musl]
586
595
 
587
- '@rollup/rollup-linux-s390x-gnu@4.59.0':
588
- resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
596
+ '@rollup/rollup-linux-s390x-gnu@4.60.0':
597
+ resolution: {integrity: sha512-3ObQs0BhvPgiUVZrN7gqCSvmFuMWvWvsjG5ayJ3Lraqv+2KhOsp+pUbigqbeWqueGIsnn+09HBw27rJ+gYK4VQ==}
589
598
  cpu: [s390x]
590
599
  os: [linux]
591
600
  libc: [glibc]
592
601
 
593
- '@rollup/rollup-linux-x64-gnu@4.59.0':
594
- resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
602
+ '@rollup/rollup-linux-x64-gnu@4.60.0':
603
+ resolution: {integrity: sha512-EtylprDtQPdS5rXvAayrNDYoJhIz1/vzN2fEubo3yLE7tfAw+948dO0g4M0vkTVFhKojnF+n6C8bDNe+gDRdTg==}
595
604
  cpu: [x64]
596
605
  os: [linux]
597
606
  libc: [glibc]
598
607
 
599
- '@rollup/rollup-linux-x64-musl@4.59.0':
600
- resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
608
+ '@rollup/rollup-linux-x64-musl@4.60.0':
609
+ resolution: {integrity: sha512-k09oiRCi/bHU9UVFqD17r3eJR9bn03TyKraCrlz5ULFJGdJGi7VOmm9jl44vOJvRJ6P7WuBi/s2A97LxxHGIdw==}
601
610
  cpu: [x64]
602
611
  os: [linux]
603
612
  libc: [musl]
604
613
 
605
- '@rollup/rollup-openbsd-x64@4.59.0':
606
- resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
614
+ '@rollup/rollup-openbsd-x64@4.60.0':
615
+ resolution: {integrity: sha512-1o/0/pIhozoSaDJoDcec+IVLbnRtQmHwPV730+AOD29lHEEo4F5BEUB24H0OBdhbBBDwIOSuf7vgg0Ywxdfiiw==}
607
616
  cpu: [x64]
608
617
  os: [openbsd]
609
618
 
610
- '@rollup/rollup-openharmony-arm64@4.59.0':
611
- resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==}
619
+ '@rollup/rollup-openharmony-arm64@4.60.0':
620
+ resolution: {integrity: sha512-pESDkos/PDzYwtyzB5p/UoNU/8fJo68vcXM9ZW2V0kjYayj1KaaUfi1NmTUTUpMn4UhU4gTuK8gIaFO4UGuMbA==}
612
621
  cpu: [arm64]
613
622
  os: [openharmony]
614
623
 
615
- '@rollup/rollup-win32-arm64-msvc@4.59.0':
616
- resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==}
624
+ '@rollup/rollup-win32-arm64-msvc@4.60.0':
625
+ resolution: {integrity: sha512-hj1wFStD7B1YBeYmvY+lWXZ7ey73YGPcViMShYikqKT1GtstIKQAtfUI6yrzPjAy/O7pO0VLXGmUVWXQMaYgTQ==}
617
626
  cpu: [arm64]
618
627
  os: [win32]
619
628
 
620
- '@rollup/rollup-win32-ia32-msvc@4.59.0':
621
- resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==}
629
+ '@rollup/rollup-win32-ia32-msvc@4.60.0':
630
+ resolution: {integrity: sha512-SyaIPFoxmUPlNDq5EHkTbiKzmSEmq/gOYFI/3HHJ8iS/v1mbugVa7dXUzcJGQfoytp9DJFLhHH4U3/eTy2Bq4w==}
622
631
  cpu: [ia32]
623
632
  os: [win32]
624
633
 
625
- '@rollup/rollup-win32-x64-gnu@4.59.0':
626
- resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==}
634
+ '@rollup/rollup-win32-x64-gnu@4.60.0':
635
+ resolution: {integrity: sha512-RdcryEfzZr+lAr5kRm2ucN9aVlCCa2QNq4hXelZxb8GG0NJSazq44Z3PCCc8wISRuCVnGs0lQJVX5Vp6fKA+IA==}
627
636
  cpu: [x64]
628
637
  os: [win32]
629
638
 
630
- '@rollup/rollup-win32-x64-msvc@4.59.0':
631
- resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==}
639
+ '@rollup/rollup-win32-x64-msvc@4.60.0':
640
+ resolution: {integrity: sha512-PrsWNQ8BuE00O3Xsx3ALh2Df8fAj9+cvvX9AIA6o4KpATR98c9mud4XtDWVvsEuyia5U4tVSTKygawyJkjm60w==}
632
641
  cpu: [x64]
633
642
  os: [win32]
634
643
 
@@ -671,12 +680,21 @@ packages:
671
680
  '@types/estree@1.0.8':
672
681
  resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
673
682
 
683
+ '@types/lodash.debounce@4.0.9':
684
+ resolution: {integrity: sha512-Ma5JcgTREwpLRwMM+XwBR7DaWe96nC38uCBDFKZWbNKD+osjVzdpnUSwBcqCptrp16sSOLBAUb50Car5I0TCsQ==}
685
+
686
+ '@types/lodash@4.17.24':
687
+ resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==}
688
+
674
689
  '@types/node@20.19.37':
675
690
  resolution: {integrity: sha512-8kzdPJ3FsNsVIurqBs7oodNnCEVbni9yUEkaHbgptDACOPW04jimGagZ51E6+lXUwJjgnBw+hyko/lkFWCldqw==}
676
691
 
677
692
  '@types/resolve@1.20.2':
678
693
  resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
679
694
 
695
+ '@types/sanitize-html@2.16.1':
696
+ resolution: {integrity: sha512-n9wjs8bCOTyN/ynwD8s/nTcTreIHB1vf31vhLMGqUPNHaweKC4/fAl4Dj+hUlCTKYgm4P3k83fmiFfzkZ6sgMA==}
697
+
680
698
  '@types/web-bluetooth@0.0.14':
681
699
  resolution: {integrity: sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A==}
682
700
 
@@ -774,17 +792,17 @@ packages:
774
792
  '@volar/typescript@2.4.15':
775
793
  resolution: {integrity: sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==}
776
794
 
777
- '@vue/compiler-core@3.5.29':
778
- resolution: {integrity: sha512-cuzPhD8fwRHk8IGfmYaR4eEe4cAyJEL66Ove/WZL7yWNL134nqLddSLwNRIsFlnnW1kK+p8Ck3viFnC0chXCXw==}
795
+ '@vue/compiler-core@3.5.31':
796
+ resolution: {integrity: sha512-k/ueL14aNIEy5Onf0OVzR8kiqF/WThgLdFhxwa4e/KF/0qe38IwIdofoSWBTvvxQOesaz6riAFAUaYjoF9fLLQ==}
779
797
 
780
- '@vue/compiler-dom@3.5.29':
781
- resolution: {integrity: sha512-n0G5o7R3uBVmVxjTIYcz7ovr8sy7QObFG8OQJ3xGCDNhbG60biP/P5KnyY8NLd81OuT1WJflG7N4KWYHaeeaIg==}
798
+ '@vue/compiler-dom@3.5.31':
799
+ resolution: {integrity: sha512-BMY/ozS/xxjYqRFL+tKdRpATJYDTTgWSo0+AJvJNg4ig+Hgb0dOsHPXvloHQ5hmlivUqw1Yt2pPIqp4e0v1GUw==}
782
800
 
783
- '@vue/compiler-sfc@3.5.29':
784
- resolution: {integrity: sha512-oJZhN5XJs35Gzr50E82jg2cYdZQ78wEwvRO6Y63TvLVTc+6xICzJHP1UIecdSPPYIbkautNBanDiWYa64QSFIA==}
801
+ '@vue/compiler-sfc@3.5.31':
802
+ resolution: {integrity: sha512-M8wpPgR9UJ8MiRGjppvx9uWJfLV7A/T+/rL8s/y3QG3u0c2/YZgff3d6SuimKRIhcYnWg5fTfDMlz2E6seUW8Q==}
785
803
 
786
- '@vue/compiler-ssr@3.5.29':
787
- resolution: {integrity: sha512-Y/ARJZE6fpjzL5GH/phJmsFwx3g6t2KmHKHx5q+MLl2kencADKIrhH5MLF6HHpRMmlRAYBRSvv347Mepf1zVNw==}
804
+ '@vue/compiler-ssr@3.5.31':
805
+ resolution: {integrity: sha512-h0xIMxrt/LHOvJKMri+vdYT92BrK3HFLtDqq9Pr/lVVfE4IyKZKvWf0vJFW10Yr6nX02OR4MkJwI0c1HDa1hog==}
788
806
 
789
807
  '@vue/compiler-vue2@2.7.16':
790
808
  resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -811,22 +829,22 @@ packages:
811
829
  typescript:
812
830
  optional: true
813
831
 
814
- '@vue/reactivity@3.5.29':
815
- resolution: {integrity: sha512-zcrANcrRdcLtmGZETBxWqIkoQei8HaFpZWx/GHKxx79JZsiZ8j1du0VUJtu4eJjgFvU/iKL5lRXFXksVmI+5DA==}
832
+ '@vue/reactivity@3.5.31':
833
+ resolution: {integrity: sha512-DtKXxk9E/KuVvt8VxWu+6Luc9I9ETNcqR1T1oW1gf02nXaZ1kuAx58oVu7uX9XxJR0iJCro6fqBLw9oSBELo5g==}
816
834
 
817
- '@vue/runtime-core@3.5.29':
818
- resolution: {integrity: sha512-8DpW2QfdwIWOLqtsNcds4s+QgwSaHSJY/SUe04LptianUQ/0xi6KVsu/pYVh+HO3NTVvVJjIPL2t6GdeKbS4Lg==}
835
+ '@vue/runtime-core@3.5.31':
836
+ resolution: {integrity: sha512-AZPmIHXEAyhpkmN7aWlqjSfYynmkWlluDNPHMCZKFHH+lLtxP/30UJmoVhXmbDoP1Ng0jG0fyY2zCj1PnSSA6Q==}
819
837
 
820
- '@vue/runtime-dom@3.5.29':
821
- resolution: {integrity: sha512-AHvvJEtcY9tw/uk+s/YRLSlxxQnqnAkjqvK25ZiM4CllCZWzElRAoQnCM42m9AHRLNJ6oe2kC5DCgD4AUdlvXg==}
838
+ '@vue/runtime-dom@3.5.31':
839
+ resolution: {integrity: sha512-xQJsNRmGPeDCJq/u813tyonNgWBFjzfVkBwDREdEWndBnGdHLHgkwNBQxLtg4zDrzKTEcnikUy1UUNecb3lJ6g==}
822
840
 
823
- '@vue/server-renderer@3.5.29':
824
- resolution: {integrity: sha512-G/1k6WK5MusLlbxSE2YTcqAAezS+VuwHhOvLx2KnQU7G2zCH6KIb+5Wyt6UjMq7a3qPzNEjJXs1hvAxDclQH+g==}
841
+ '@vue/server-renderer@3.5.31':
842
+ resolution: {integrity: sha512-GJuwRvMcdZX/CriUnyIIOGkx3rMV3H6sOu0JhdKbduaeCji6zb60iOGMY7tFoN24NfsUYoFBhshZtGxGpxO4iA==}
825
843
  peerDependencies:
826
- vue: 3.5.29
844
+ vue: 3.5.31
827
845
 
828
- '@vue/shared@3.5.29':
829
- resolution: {integrity: sha512-w7SR0A5zyRByL9XUkCfdLs7t9XOHUyJ67qPGQjOou3p6GvBeBW+AVjUUmlxtZ4PIYaRvE+1LmK44O4uajlZwcg==}
846
+ '@vue/shared@3.5.31':
847
+ resolution: {integrity: sha512-nBxuiuS9Lj5bPkPbWogPUnjxxWpkRniX7e5UBQDWl6Fsf4roq9wwV+cR7ezQ4zXswNvPIlsdj1slcLB7XCsRAw==}
830
848
 
831
849
  '@vue/tsconfig@0.5.1':
832
850
  resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==}
@@ -916,6 +934,9 @@ packages:
916
934
  resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
917
935
  engines: {node: '>=8'}
918
936
 
937
+ async-mutex@0.5.0:
938
+ resolution: {integrity: sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==}
939
+
919
940
  async@3.2.6:
920
941
  resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
921
942
 
@@ -929,8 +950,8 @@ packages:
929
950
  balanced-match@1.0.2:
930
951
  resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
931
952
 
932
- baseline-browser-mapping@2.10.0:
933
- resolution: {integrity: sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==}
953
+ baseline-browser-mapping@2.10.11:
954
+ resolution: {integrity: sha512-DAKrHphkJyiGuau/cFieRYhcTFeK/lBuD++C7cZ6KZHbMhBrisoi+EvhQ5RZrIfV5qwsW8kgQ07JIC+MDJRAhg==}
934
955
  engines: {node: '>=6.0.0'}
935
956
  hasBin: true
936
957
 
@@ -941,11 +962,11 @@ packages:
941
962
  boolbase@1.0.0:
942
963
  resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
943
964
 
944
- brace-expansion@1.1.12:
945
- resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
965
+ brace-expansion@1.1.13:
966
+ resolution: {integrity: sha512-9ZLprWS6EENmhEOpjCYW2c8VkmOvckIJZfkr7rBW6dObmfgJ/L1GpSYW5Hpo9lDz4D1+n0Ckz8rU7FwHDQiG/w==}
946
967
 
947
- brace-expansion@2.0.2:
948
- resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
968
+ brace-expansion@2.0.3:
969
+ resolution: {integrity: sha512-MCV/fYJEbqx68aE58kv2cA/kiky1G8vux3OR6/jbS+jIMe/6fJWa0DTzJU7dqijOWYwHi1t29FlfYI9uytqlpA==}
949
970
 
950
971
  braces@3.0.3:
951
972
  resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
@@ -968,8 +989,8 @@ packages:
968
989
  resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
969
990
  engines: {node: '>= 6'}
970
991
 
971
- caniuse-lite@1.0.30001777:
972
- resolution: {integrity: sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==}
992
+ caniuse-lite@1.0.30001781:
993
+ resolution: {integrity: sha512-RdwNCyMsNBftLjW6w01z8bKEvT6e/5tpPVEgtn22TiLGlstHOVecsX2KHFkD5e/vRnIE4EGzpuIODb3mtswtkw==}
973
994
 
974
995
  chalk@4.1.2:
975
996
  resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
@@ -1016,8 +1037,8 @@ packages:
1016
1037
  csstype@3.2.3:
1017
1038
  resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
1018
1039
 
1019
- dayjs@1.11.19:
1020
- resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==}
1040
+ dayjs@1.11.20:
1041
+ resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==}
1021
1042
 
1022
1043
  de-indent@1.0.2:
1023
1044
  resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
@@ -1086,8 +1107,8 @@ packages:
1086
1107
  resolution: {integrity: sha512-xHF8EP4XH/Ba9fvAF2LDd5O3IITVolerVV6xvkxoM8zlGEiCUrggpAnHyOoKJKCrhvPcGATFAUwIujj7bRG5UA==}
1087
1108
  hasBin: true
1088
1109
 
1089
- electron-to-chromium@1.5.307:
1090
- resolution: {integrity: sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==}
1110
+ electron-to-chromium@1.5.328:
1111
+ resolution: {integrity: sha512-QNQ5l45DzYytThO21403XN3FvK0hOkWDG8viNf6jqS42msJ8I4tGDSpBCgvDRRPnkffafiwAym2X2eHeGD2V0w==}
1091
1112
 
1092
1113
  entities@4.5.0:
1093
1114
  resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
@@ -1197,8 +1218,8 @@ packages:
1197
1218
  resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
1198
1219
  engines: {node: ^10.12.0 || >=12.0.0}
1199
1220
 
1200
- flatted@3.3.4:
1201
- resolution: {integrity: sha512-3+mMldrTAPdta5kjX2G2J7iX4zxtnwpdA8Tr2ZSjkyPSanvbZAcy6flmtnXbEybHrDcU9641lxrMfFuUxVz9vA==}
1221
+ flatted@3.4.2:
1222
+ resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==}
1202
1223
 
1203
1224
  flowbite-datepicker@1.3.2:
1204
1225
  resolution: {integrity: sha512-6Nfm0MCVX3mpaR7YSCjmEO2GO8CDt6CX8ZpQnGdeu03WUCWtEPQ/uy0PUiNtIJjJZWnX0Cm3H55MOhbD1g+E/g==}
@@ -1273,8 +1294,8 @@ packages:
1273
1294
  hookable@5.5.3:
1274
1295
  resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
1275
1296
 
1276
- htmlparser2@8.0.2:
1277
- resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
1297
+ htmlparser2@10.1.0:
1298
+ resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==}
1278
1299
 
1279
1300
  i18n-iso-countries@7.14.0:
1280
1301
  resolution: {integrity: sha512-nXHJZYtNrfsi1UQbyRqm3Gou431elgLjKl//CYlnBGt5aTWdRPH1PiS2T/p/n8Q8LnqYqzQJik3Q7mkwvLokeg==}
@@ -1382,6 +1403,9 @@ packages:
1382
1403
  resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1383
1404
  engines: {node: '>=10'}
1384
1405
 
1406
+ lodash.debounce@4.0.8:
1407
+ resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
1408
+
1385
1409
  lodash.merge@4.6.2:
1386
1410
  resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1387
1411
 
@@ -1515,12 +1539,12 @@ packages:
1515
1539
  picocolors@1.1.1:
1516
1540
  resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1517
1541
 
1518
- picomatch@2.3.1:
1519
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1542
+ picomatch@2.3.2:
1543
+ resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
1520
1544
  engines: {node: '>=8.6'}
1521
1545
 
1522
- picomatch@4.0.3:
1523
- resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
1546
+ picomatch@4.0.4:
1547
+ resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
1524
1548
  engines: {node: '>=12'}
1525
1549
 
1526
1550
  pidtree@0.6.0:
@@ -1647,19 +1671,19 @@ packages:
1647
1671
  deprecated: Rimraf versions prior to v4 are no longer supported
1648
1672
  hasBin: true
1649
1673
 
1650
- rollup@4.59.0:
1651
- resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
1674
+ rollup@4.60.0:
1675
+ resolution: {integrity: sha512-yqjxruMGBQJ2gG4HtjZtAfXArHomazDHoFwFFmZZl0r7Pdo7qCIXKqKHZc8yeoMgzJJ+pO6pEEHa+V7uzWlrAQ==}
1652
1676
  engines: {node: '>=18.0.0', npm: '>=8.0.0'}
1653
1677
  hasBin: true
1654
1678
 
1655
1679
  run-parallel@1.2.0:
1656
1680
  resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1657
1681
 
1658
- sanitize-html@2.17.1:
1659
- resolution: {integrity: sha512-ehFCW+q1a4CSOWRAdX97BX/6/PDEkCqw7/0JXZAGQV57FQB3YOkTa/rrzHPeJ+Aghy4vZAFfWMYyfxIiB7F/gw==}
1682
+ sanitize-html@2.17.2:
1683
+ resolution: {integrity: sha512-EnffJUl46VE9uvZ0XeWzObHLurClLlT12gsOk1cHyP2Ol1P0BnBnsXmShlBmWVJM+dKieQI68R0tsPY5m/B+Jg==}
1660
1684
 
1661
- sass@1.97.3:
1662
- resolution: {integrity: sha512-fDz1zJpd5GycprAbu4Q2PV/RprsRtKC/0z82z0JLgdytmcq0+ujJbJ/09bPGDxCLkKY3Np5cRAOcWiVkLXJURg==}
1685
+ sass@1.98.0:
1686
+ resolution: {integrity: sha512-+4N/u9dZ4PrgzGgPlKnaaRQx64RO0JBKs9sDhQ2pLgN6JQZ25uPQZKQYaBJU48Kd5BxgXoJ4e09Dq7nMcOUW3A==}
1663
1687
  engines: {node: '>=14.0.0'}
1664
1688
  hasBin: true
1665
1689
 
@@ -1747,6 +1771,9 @@ packages:
1747
1771
  ts-interface-checker@0.1.13:
1748
1772
  resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
1749
1773
 
1774
+ tslib@2.8.1:
1775
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
1776
+
1750
1777
  type-check@0.4.0:
1751
1778
  resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1752
1779
  engines: {node: '>= 0.8.0'}
@@ -1848,9 +1875,6 @@ packages:
1848
1875
  peerDependencies:
1849
1876
  vue: ^3.5.0
1850
1877
 
1851
- vue-slider-component@4.1.0-beta.7:
1852
- resolution: {integrity: sha512-Qb7K920ZG7PoQswoF6Ias+i3W2rd3k4fpk04JUl82kEUcN86Yg6et7bVSKWt/7VpQe8a5IT3BqCKSCOZ7AJgCA==}
1853
-
1854
1878
  vue-tsc@2.2.12:
1855
1879
  resolution: {integrity: sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==}
1856
1880
  hasBin: true
@@ -1862,8 +1886,8 @@ packages:
1862
1886
  peerDependencies:
1863
1887
  vue: ^3.5.16
1864
1888
 
1865
- vue@3.5.29:
1866
- resolution: {integrity: sha512-BZqN4Ze6mDQVNAni0IHeMJ5mwr8VAJ3MQC9FmprRhcBYENw+wOAAjRj8jfmN6FLl0j96OXbR+CjWhmAmM+QGnA==}
1889
+ vue@3.5.31:
1890
+ resolution: {integrity: sha512-iV/sU9SzOlmA/0tygSmjkEN6Jbs3nPoIPFhCMLD2STrjgOU8DX7ZtzMhg4ahVwf5Rp9KoFzcXeB1ZrVbLBp5/Q==}
1867
1891
  peerDependencies:
1868
1892
  typescript: '*'
1869
1893
  peerDependenciesMeta:
@@ -1906,7 +1930,7 @@ snapshots:
1906
1930
 
1907
1931
  '@babel/helper-validator-identifier@7.28.5': {}
1908
1932
 
1909
- '@babel/parser@7.29.0':
1933
+ '@babel/parser@7.29.2':
1910
1934
  dependencies:
1911
1935
  '@babel/types': 7.29.0
1912
1936
 
@@ -2019,21 +2043,21 @@ snapshots:
2019
2043
 
2020
2044
  '@humanwhocodes/object-schema@2.0.3': {}
2021
2045
 
2022
- '@iconify-prerendered/vue-flag@0.28.1754899047(vue@3.5.29(typescript@5.4.5))':
2046
+ '@iconify-prerendered/vue-flag@0.28.1754899047(vue@3.5.31(typescript@5.4.5))':
2023
2047
  dependencies:
2024
- vue: 3.5.29(typescript@5.4.5)
2048
+ vue: 3.5.31(typescript@5.4.5)
2025
2049
 
2026
- '@iconify-prerendered/vue-flowbite@0.28.1754899090(vue@3.5.29(typescript@5.4.5))':
2050
+ '@iconify-prerendered/vue-flowbite@0.28.1754899090(vue@3.5.31(typescript@5.4.5))':
2027
2051
  dependencies:
2028
- vue: 3.5.29(typescript@5.4.5)
2052
+ vue: 3.5.31(typescript@5.4.5)
2029
2053
 
2030
- '@iconify-prerendered/vue-heroicons@0.28.1721921294(vue@3.5.29(typescript@5.4.5))':
2054
+ '@iconify-prerendered/vue-heroicons@0.28.1721921294(vue@3.5.31(typescript@5.4.5))':
2031
2055
  dependencies:
2032
- vue: 3.5.29(typescript@5.4.5)
2056
+ vue: 3.5.31(typescript@5.4.5)
2033
2057
 
2034
- '@iconify-prerendered/vue-humbleicons@0.28.1754108846(vue@3.5.29(typescript@5.4.5))':
2058
+ '@iconify-prerendered/vue-humbleicons@0.28.1754108846(vue@3.5.31(typescript@5.4.5))':
2035
2059
  dependencies:
2036
- vue: 3.5.29(typescript@5.4.5)
2060
+ vue: 3.5.31(typescript@5.4.5)
2037
2061
 
2038
2062
  '@intlify/core-base@10.0.8':
2039
2063
  dependencies:
@@ -2117,7 +2141,7 @@ snapshots:
2117
2141
  detect-libc: 2.1.2
2118
2142
  is-glob: 4.0.3
2119
2143
  node-addon-api: 7.1.1
2120
- picomatch: 4.0.3
2144
+ picomatch: 4.0.4
2121
2145
  optionalDependencies:
2122
2146
  '@parcel/watcher-android-arm64': 2.5.6
2123
2147
  '@parcel/watcher-darwin-arm64': 2.5.6
@@ -2136,97 +2160,97 @@ snapshots:
2136
2160
 
2137
2161
  '@popperjs/core@2.11.8': {}
2138
2162
 
2139
- '@rollup/plugin-node-resolve@15.3.1(rollup@4.59.0)':
2163
+ '@rollup/plugin-node-resolve@15.3.1(rollup@4.60.0)':
2140
2164
  dependencies:
2141
- '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
2165
+ '@rollup/pluginutils': 5.3.0(rollup@4.60.0)
2142
2166
  '@types/resolve': 1.20.2
2143
2167
  deepmerge: 4.3.1
2144
2168
  is-module: 1.0.0
2145
2169
  resolve: 1.22.11
2146
2170
  optionalDependencies:
2147
- rollup: 4.59.0
2171
+ rollup: 4.60.0
2148
2172
 
2149
- '@rollup/pluginutils@5.3.0(rollup@4.59.0)':
2173
+ '@rollup/pluginutils@5.3.0(rollup@4.60.0)':
2150
2174
  dependencies:
2151
2175
  '@types/estree': 1.0.8
2152
2176
  estree-walker: 2.0.2
2153
- picomatch: 4.0.3
2177
+ picomatch: 4.0.4
2154
2178
  optionalDependencies:
2155
- rollup: 4.59.0
2179
+ rollup: 4.60.0
2156
2180
 
2157
- '@rollup/rollup-android-arm-eabi@4.59.0':
2181
+ '@rollup/rollup-android-arm-eabi@4.60.0':
2158
2182
  optional: true
2159
2183
 
2160
- '@rollup/rollup-android-arm64@4.59.0':
2184
+ '@rollup/rollup-android-arm64@4.60.0':
2161
2185
  optional: true
2162
2186
 
2163
- '@rollup/rollup-darwin-arm64@4.59.0':
2187
+ '@rollup/rollup-darwin-arm64@4.60.0':
2164
2188
  optional: true
2165
2189
 
2166
- '@rollup/rollup-darwin-x64@4.59.0':
2190
+ '@rollup/rollup-darwin-x64@4.60.0':
2167
2191
  optional: true
2168
2192
 
2169
- '@rollup/rollup-freebsd-arm64@4.59.0':
2193
+ '@rollup/rollup-freebsd-arm64@4.60.0':
2170
2194
  optional: true
2171
2195
 
2172
- '@rollup/rollup-freebsd-x64@4.59.0':
2196
+ '@rollup/rollup-freebsd-x64@4.60.0':
2173
2197
  optional: true
2174
2198
 
2175
- '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
2199
+ '@rollup/rollup-linux-arm-gnueabihf@4.60.0':
2176
2200
  optional: true
2177
2201
 
2178
- '@rollup/rollup-linux-arm-musleabihf@4.59.0':
2202
+ '@rollup/rollup-linux-arm-musleabihf@4.60.0':
2179
2203
  optional: true
2180
2204
 
2181
- '@rollup/rollup-linux-arm64-gnu@4.59.0':
2205
+ '@rollup/rollup-linux-arm64-gnu@4.60.0':
2182
2206
  optional: true
2183
2207
 
2184
- '@rollup/rollup-linux-arm64-musl@4.59.0':
2208
+ '@rollup/rollup-linux-arm64-musl@4.60.0':
2185
2209
  optional: true
2186
2210
 
2187
- '@rollup/rollup-linux-loong64-gnu@4.59.0':
2211
+ '@rollup/rollup-linux-loong64-gnu@4.60.0':
2188
2212
  optional: true
2189
2213
 
2190
- '@rollup/rollup-linux-loong64-musl@4.59.0':
2214
+ '@rollup/rollup-linux-loong64-musl@4.60.0':
2191
2215
  optional: true
2192
2216
 
2193
- '@rollup/rollup-linux-ppc64-gnu@4.59.0':
2217
+ '@rollup/rollup-linux-ppc64-gnu@4.60.0':
2194
2218
  optional: true
2195
2219
 
2196
- '@rollup/rollup-linux-ppc64-musl@4.59.0':
2220
+ '@rollup/rollup-linux-ppc64-musl@4.60.0':
2197
2221
  optional: true
2198
2222
 
2199
- '@rollup/rollup-linux-riscv64-gnu@4.59.0':
2223
+ '@rollup/rollup-linux-riscv64-gnu@4.60.0':
2200
2224
  optional: true
2201
2225
 
2202
- '@rollup/rollup-linux-riscv64-musl@4.59.0':
2226
+ '@rollup/rollup-linux-riscv64-musl@4.60.0':
2203
2227
  optional: true
2204
2228
 
2205
- '@rollup/rollup-linux-s390x-gnu@4.59.0':
2229
+ '@rollup/rollup-linux-s390x-gnu@4.60.0':
2206
2230
  optional: true
2207
2231
 
2208
- '@rollup/rollup-linux-x64-gnu@4.59.0':
2232
+ '@rollup/rollup-linux-x64-gnu@4.60.0':
2209
2233
  optional: true
2210
2234
 
2211
- '@rollup/rollup-linux-x64-musl@4.59.0':
2235
+ '@rollup/rollup-linux-x64-musl@4.60.0':
2212
2236
  optional: true
2213
2237
 
2214
- '@rollup/rollup-openbsd-x64@4.59.0':
2238
+ '@rollup/rollup-openbsd-x64@4.60.0':
2215
2239
  optional: true
2216
2240
 
2217
- '@rollup/rollup-openharmony-arm64@4.59.0':
2241
+ '@rollup/rollup-openharmony-arm64@4.60.0':
2218
2242
  optional: true
2219
2243
 
2220
- '@rollup/rollup-win32-arm64-msvc@4.59.0':
2244
+ '@rollup/rollup-win32-arm64-msvc@4.60.0':
2221
2245
  optional: true
2222
2246
 
2223
- '@rollup/rollup-win32-ia32-msvc@4.59.0':
2247
+ '@rollup/rollup-win32-ia32-msvc@4.60.0':
2224
2248
  optional: true
2225
2249
 
2226
- '@rollup/rollup-win32-x64-gnu@4.59.0':
2250
+ '@rollup/rollup-win32-x64-gnu@4.60.0':
2227
2251
  optional: true
2228
2252
 
2229
- '@rollup/rollup-win32-x64-msvc@4.59.0':
2253
+ '@rollup/rollup-win32-x64-msvc@4.60.0':
2230
2254
  optional: true
2231
2255
 
2232
2256
  '@rushstack/eslint-patch@1.16.1': {}
@@ -2259,12 +2283,22 @@ snapshots:
2259
2283
 
2260
2284
  '@types/estree@1.0.8': {}
2261
2285
 
2286
+ '@types/lodash.debounce@4.0.9':
2287
+ dependencies:
2288
+ '@types/lodash': 4.17.24
2289
+
2290
+ '@types/lodash@4.17.24': {}
2291
+
2262
2292
  '@types/node@20.19.37':
2263
2293
  dependencies:
2264
2294
  undici-types: 6.21.0
2265
2295
 
2266
2296
  '@types/resolve@1.20.2': {}
2267
2297
 
2298
+ '@types/sanitize-html@2.16.1':
2299
+ dependencies:
2300
+ htmlparser2: 10.1.0
2301
+
2268
2302
  '@types/web-bluetooth@0.0.14': {}
2269
2303
 
2270
2304
  '@types/web-bluetooth@0.0.20': {}
@@ -2367,18 +2401,18 @@ snapshots:
2367
2401
  '@unhead/schema': 1.11.20
2368
2402
  packrup: 0.1.2
2369
2403
 
2370
- '@unhead/vue@1.11.20(vue@3.5.29(typescript@5.4.5))':
2404
+ '@unhead/vue@1.11.20(vue@3.5.31(typescript@5.4.5))':
2371
2405
  dependencies:
2372
2406
  '@unhead/schema': 1.11.20
2373
2407
  '@unhead/shared': 1.11.20
2374
2408
  hookable: 5.5.3
2375
2409
  unhead: 1.11.20
2376
- vue: 3.5.29(typescript@5.4.5)
2410
+ vue: 3.5.31(typescript@5.4.5)
2377
2411
 
2378
- '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@20.19.37)(sass@1.97.3))(vue@3.5.29(typescript@5.4.5))':
2412
+ '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@20.19.37)(sass@1.98.0))(vue@3.5.31(typescript@5.4.5))':
2379
2413
  dependencies:
2380
- vite: 5.4.21(@types/node@20.19.37)(sass@1.97.3)
2381
- vue: 3.5.29(typescript@5.4.5)
2414
+ vite: 5.4.21(@types/node@20.19.37)(sass@1.98.0)
2415
+ vue: 3.5.31(typescript@5.4.5)
2382
2416
 
2383
2417
  '@volar/language-core@2.4.15':
2384
2418
  dependencies:
@@ -2392,35 +2426,35 @@ snapshots:
2392
2426
  path-browserify: 1.0.1
2393
2427
  vscode-uri: 3.1.0
2394
2428
 
2395
- '@vue/compiler-core@3.5.29':
2429
+ '@vue/compiler-core@3.5.31':
2396
2430
  dependencies:
2397
- '@babel/parser': 7.29.0
2398
- '@vue/shared': 3.5.29
2431
+ '@babel/parser': 7.29.2
2432
+ '@vue/shared': 3.5.31
2399
2433
  entities: 7.0.1
2400
2434
  estree-walker: 2.0.2
2401
2435
  source-map-js: 1.2.1
2402
2436
 
2403
- '@vue/compiler-dom@3.5.29':
2437
+ '@vue/compiler-dom@3.5.31':
2404
2438
  dependencies:
2405
- '@vue/compiler-core': 3.5.29
2406
- '@vue/shared': 3.5.29
2439
+ '@vue/compiler-core': 3.5.31
2440
+ '@vue/shared': 3.5.31
2407
2441
 
2408
- '@vue/compiler-sfc@3.5.29':
2442
+ '@vue/compiler-sfc@3.5.31':
2409
2443
  dependencies:
2410
- '@babel/parser': 7.29.0
2411
- '@vue/compiler-core': 3.5.29
2412
- '@vue/compiler-dom': 3.5.29
2413
- '@vue/compiler-ssr': 3.5.29
2414
- '@vue/shared': 3.5.29
2444
+ '@babel/parser': 7.29.2
2445
+ '@vue/compiler-core': 3.5.31
2446
+ '@vue/compiler-dom': 3.5.31
2447
+ '@vue/compiler-ssr': 3.5.31
2448
+ '@vue/shared': 3.5.31
2415
2449
  estree-walker: 2.0.2
2416
2450
  magic-string: 0.30.21
2417
2451
  postcss: 8.5.8
2418
2452
  source-map-js: 1.2.1
2419
2453
 
2420
- '@vue/compiler-ssr@3.5.29':
2454
+ '@vue/compiler-ssr@3.5.31':
2421
2455
  dependencies:
2422
- '@vue/compiler-dom': 3.5.29
2423
- '@vue/shared': 3.5.29
2456
+ '@vue/compiler-dom': 3.5.31
2457
+ '@vue/shared': 3.5.31
2424
2458
 
2425
2459
  '@vue/compiler-vue2@2.7.16':
2426
2460
  dependencies:
@@ -2444,9 +2478,9 @@ snapshots:
2444
2478
  '@vue/language-core@2.2.12(typescript@5.4.5)':
2445
2479
  dependencies:
2446
2480
  '@volar/language-core': 2.4.15
2447
- '@vue/compiler-dom': 3.5.29
2481
+ '@vue/compiler-dom': 3.5.31
2448
2482
  '@vue/compiler-vue2': 2.7.16
2449
- '@vue/shared': 3.5.29
2483
+ '@vue/shared': 3.5.31
2450
2484
  alien-signals: 1.0.13
2451
2485
  minimatch: 9.0.9
2452
2486
  muggle-string: 0.4.1
@@ -2454,67 +2488,67 @@ snapshots:
2454
2488
  optionalDependencies:
2455
2489
  typescript: 5.4.5
2456
2490
 
2457
- '@vue/reactivity@3.5.29':
2491
+ '@vue/reactivity@3.5.31':
2458
2492
  dependencies:
2459
- '@vue/shared': 3.5.29
2493
+ '@vue/shared': 3.5.31
2460
2494
 
2461
- '@vue/runtime-core@3.5.29':
2495
+ '@vue/runtime-core@3.5.31':
2462
2496
  dependencies:
2463
- '@vue/reactivity': 3.5.29
2464
- '@vue/shared': 3.5.29
2497
+ '@vue/reactivity': 3.5.31
2498
+ '@vue/shared': 3.5.31
2465
2499
 
2466
- '@vue/runtime-dom@3.5.29':
2500
+ '@vue/runtime-dom@3.5.31':
2467
2501
  dependencies:
2468
- '@vue/reactivity': 3.5.29
2469
- '@vue/runtime-core': 3.5.29
2470
- '@vue/shared': 3.5.29
2502
+ '@vue/reactivity': 3.5.31
2503
+ '@vue/runtime-core': 3.5.31
2504
+ '@vue/shared': 3.5.31
2471
2505
  csstype: 3.2.3
2472
2506
 
2473
- '@vue/server-renderer@3.5.29(vue@3.5.29(typescript@5.4.5))':
2507
+ '@vue/server-renderer@3.5.31(vue@3.5.31(typescript@5.4.5))':
2474
2508
  dependencies:
2475
- '@vue/compiler-ssr': 3.5.29
2476
- '@vue/shared': 3.5.29
2477
- vue: 3.5.29(typescript@5.4.5)
2509
+ '@vue/compiler-ssr': 3.5.31
2510
+ '@vue/shared': 3.5.31
2511
+ vue: 3.5.31(typescript@5.4.5)
2478
2512
 
2479
- '@vue/shared@3.5.29': {}
2513
+ '@vue/shared@3.5.31': {}
2480
2514
 
2481
2515
  '@vue/tsconfig@0.5.1': {}
2482
2516
 
2483
- '@vueuse/core@10.11.1(vue@3.5.29(typescript@5.4.5))':
2517
+ '@vueuse/core@10.11.1(vue@3.5.31(typescript@5.4.5))':
2484
2518
  dependencies:
2485
2519
  '@types/web-bluetooth': 0.0.20
2486
2520
  '@vueuse/metadata': 10.11.1
2487
- '@vueuse/shared': 10.11.1(vue@3.5.29(typescript@5.4.5))
2488
- vue-demi: 0.14.10(vue@3.5.29(typescript@5.4.5))
2521
+ '@vueuse/shared': 10.11.1(vue@3.5.31(typescript@5.4.5))
2522
+ vue-demi: 0.14.10(vue@3.5.31(typescript@5.4.5))
2489
2523
  transitivePeerDependencies:
2490
2524
  - '@vue/composition-api'
2491
2525
  - vue
2492
2526
 
2493
- '@vueuse/core@8.9.4(vue@3.5.29(typescript@5.4.5))':
2527
+ '@vueuse/core@8.9.4(vue@3.5.31(typescript@5.4.5))':
2494
2528
  dependencies:
2495
2529
  '@types/web-bluetooth': 0.0.14
2496
2530
  '@vueuse/metadata': 8.9.4
2497
- '@vueuse/shared': 8.9.4(vue@3.5.29(typescript@5.4.5))
2498
- vue-demi: 0.14.10(vue@3.5.29(typescript@5.4.5))
2531
+ '@vueuse/shared': 8.9.4(vue@3.5.31(typescript@5.4.5))
2532
+ vue-demi: 0.14.10(vue@3.5.31(typescript@5.4.5))
2499
2533
  optionalDependencies:
2500
- vue: 3.5.29(typescript@5.4.5)
2534
+ vue: 3.5.31(typescript@5.4.5)
2501
2535
 
2502
2536
  '@vueuse/metadata@10.11.1': {}
2503
2537
 
2504
2538
  '@vueuse/metadata@8.9.4': {}
2505
2539
 
2506
- '@vueuse/shared@10.11.1(vue@3.5.29(typescript@5.4.5))':
2540
+ '@vueuse/shared@10.11.1(vue@3.5.31(typescript@5.4.5))':
2507
2541
  dependencies:
2508
- vue-demi: 0.14.10(vue@3.5.29(typescript@5.4.5))
2542
+ vue-demi: 0.14.10(vue@3.5.31(typescript@5.4.5))
2509
2543
  transitivePeerDependencies:
2510
2544
  - '@vue/composition-api'
2511
2545
  - vue
2512
2546
 
2513
- '@vueuse/shared@8.9.4(vue@3.5.29(typescript@5.4.5))':
2547
+ '@vueuse/shared@8.9.4(vue@3.5.31(typescript@5.4.5))':
2514
2548
  dependencies:
2515
- vue-demi: 0.14.10(vue@3.5.29(typescript@5.4.5))
2549
+ vue-demi: 0.14.10(vue@3.5.31(typescript@5.4.5))
2516
2550
  optionalDependencies:
2517
- vue: 3.5.29(typescript@5.4.5)
2551
+ vue: 3.5.31(typescript@5.4.5)
2518
2552
 
2519
2553
  '@yr/monotone-cubic-spline@1.0.3': {}
2520
2554
 
@@ -2546,7 +2580,7 @@ snapshots:
2546
2580
  anymatch@3.1.3:
2547
2581
  dependencies:
2548
2582
  normalize-path: 3.0.0
2549
- picomatch: 2.3.1
2583
+ picomatch: 2.3.2
2550
2584
 
2551
2585
  apexcharts@4.7.0:
2552
2586
  dependencies:
@@ -2563,12 +2597,16 @@ snapshots:
2563
2597
 
2564
2598
  array-union@2.1.0: {}
2565
2599
 
2600
+ async-mutex@0.5.0:
2601
+ dependencies:
2602
+ tslib: 2.8.1
2603
+
2566
2604
  async@3.2.6: {}
2567
2605
 
2568
2606
  autoprefixer@10.4.27(postcss@8.5.8):
2569
2607
  dependencies:
2570
2608
  browserslist: 4.28.1
2571
- caniuse-lite: 1.0.30001777
2609
+ caniuse-lite: 1.0.30001781
2572
2610
  fraction.js: 5.3.4
2573
2611
  picocolors: 1.1.1
2574
2612
  postcss: 8.5.8
@@ -2576,18 +2614,18 @@ snapshots:
2576
2614
 
2577
2615
  balanced-match@1.0.2: {}
2578
2616
 
2579
- baseline-browser-mapping@2.10.0: {}
2617
+ baseline-browser-mapping@2.10.11: {}
2580
2618
 
2581
2619
  binary-extensions@2.3.0: {}
2582
2620
 
2583
2621
  boolbase@1.0.0: {}
2584
2622
 
2585
- brace-expansion@1.1.12:
2623
+ brace-expansion@1.1.13:
2586
2624
  dependencies:
2587
2625
  balanced-match: 1.0.2
2588
2626
  concat-map: 0.0.1
2589
2627
 
2590
- brace-expansion@2.0.2:
2628
+ brace-expansion@2.0.3:
2591
2629
  dependencies:
2592
2630
  balanced-match: 1.0.2
2593
2631
 
@@ -2597,9 +2635,9 @@ snapshots:
2597
2635
 
2598
2636
  browserslist@4.28.1:
2599
2637
  dependencies:
2600
- baseline-browser-mapping: 2.10.0
2601
- caniuse-lite: 1.0.30001777
2602
- electron-to-chromium: 1.5.307
2638
+ baseline-browser-mapping: 2.10.11
2639
+ caniuse-lite: 1.0.30001781
2640
+ electron-to-chromium: 1.5.328
2603
2641
  node-releases: 2.0.36
2604
2642
  update-browserslist-db: 1.2.3(browserslist@4.28.1)
2605
2643
 
@@ -2609,7 +2647,7 @@ snapshots:
2609
2647
 
2610
2648
  camelcase-css@2.0.1: {}
2611
2649
 
2612
- caniuse-lite@1.0.30001777: {}
2650
+ caniuse-lite@1.0.30001781: {}
2613
2651
 
2614
2652
  chalk@4.1.2:
2615
2653
  dependencies:
@@ -2660,7 +2698,7 @@ snapshots:
2660
2698
 
2661
2699
  csstype@3.2.3: {}
2662
2700
 
2663
- dayjs@1.11.19: {}
2701
+ dayjs@1.11.20: {}
2664
2702
 
2665
2703
  de-indent@1.0.2: {}
2666
2704
 
@@ -2718,7 +2756,7 @@ snapshots:
2718
2756
  commander: 6.2.1
2719
2757
  glob: 7.2.3
2720
2758
 
2721
- electron-to-chromium@1.5.307: {}
2759
+ electron-to-chromium@1.5.328: {}
2722
2760
 
2723
2761
  entities@4.5.0: {}
2724
2762
 
@@ -2856,9 +2894,9 @@ snapshots:
2856
2894
  dependencies:
2857
2895
  reusify: 1.1.0
2858
2896
 
2859
- fdir@6.5.0(picomatch@4.0.3):
2897
+ fdir@6.5.0(picomatch@4.0.4):
2860
2898
  optionalDependencies:
2861
- picomatch: 4.0.3
2899
+ picomatch: 4.0.4
2862
2900
 
2863
2901
  file-entry-cache@6.0.1:
2864
2902
  dependencies:
@@ -2877,31 +2915,31 @@ snapshots:
2877
2915
 
2878
2916
  flat-cache@3.2.0:
2879
2917
  dependencies:
2880
- flatted: 3.3.4
2918
+ flatted: 3.4.2
2881
2919
  keyv: 4.5.4
2882
2920
  rimraf: 3.0.2
2883
2921
 
2884
- flatted@3.3.4: {}
2922
+ flatted@3.4.2: {}
2885
2923
 
2886
- flowbite-datepicker@1.3.2(rollup@4.59.0):
2924
+ flowbite-datepicker@1.3.2(rollup@4.60.0):
2887
2925
  dependencies:
2888
- '@rollup/plugin-node-resolve': 15.3.1(rollup@4.59.0)
2889
- flowbite: 2.5.2(rollup@4.59.0)
2926
+ '@rollup/plugin-node-resolve': 15.3.1(rollup@4.60.0)
2927
+ flowbite: 2.5.2(rollup@4.60.0)
2890
2928
  transitivePeerDependencies:
2891
2929
  - rollup
2892
2930
 
2893
- flowbite@2.5.2(rollup@4.59.0):
2931
+ flowbite@2.5.2(rollup@4.60.0):
2894
2932
  dependencies:
2895
2933
  '@popperjs/core': 2.11.8
2896
- flowbite-datepicker: 1.3.2(rollup@4.59.0)
2934
+ flowbite-datepicker: 1.3.2(rollup@4.60.0)
2897
2935
  mini-svg-data-uri: 1.4.4
2898
2936
  transitivePeerDependencies:
2899
2937
  - rollup
2900
2938
 
2901
- flowbite@3.1.2(rollup@4.59.0):
2939
+ flowbite@3.1.2(rollup@4.60.0):
2902
2940
  dependencies:
2903
2941
  '@popperjs/core': 2.11.8
2904
- flowbite-datepicker: 1.3.2(rollup@4.59.0)
2942
+ flowbite-datepicker: 1.3.2(rollup@4.60.0)
2905
2943
  mini-svg-data-uri: 1.4.4
2906
2944
  postcss: 8.5.8
2907
2945
  transitivePeerDependencies:
@@ -2972,12 +3010,12 @@ snapshots:
2972
3010
 
2973
3011
  hookable@5.5.3: {}
2974
3012
 
2975
- htmlparser2@8.0.2:
3013
+ htmlparser2@10.1.0:
2976
3014
  dependencies:
2977
3015
  domelementtype: 2.3.0
2978
3016
  domhandler: 5.0.3
2979
3017
  domutils: 3.2.2
2980
- entities: 4.5.0
3018
+ entities: 7.0.1
2981
3019
 
2982
3020
  i18n-iso-countries@7.14.0:
2983
3021
  dependencies:
@@ -3062,6 +3100,8 @@ snapshots:
3062
3100
  dependencies:
3063
3101
  p-locate: 5.0.0
3064
3102
 
3103
+ lodash.debounce@4.0.8: {}
3104
+
3065
3105
  lodash.merge@4.6.2: {}
3066
3106
 
3067
3107
  lodash@4.17.23: {}
@@ -3077,21 +3117,21 @@ snapshots:
3077
3117
  micromatch@4.0.8:
3078
3118
  dependencies:
3079
3119
  braces: 3.0.3
3080
- picomatch: 2.3.1
3120
+ picomatch: 2.3.2
3081
3121
 
3082
3122
  mini-svg-data-uri@1.4.4: {}
3083
3123
 
3084
3124
  minimatch@3.1.5:
3085
3125
  dependencies:
3086
- brace-expansion: 1.1.12
3126
+ brace-expansion: 1.1.13
3087
3127
 
3088
3128
  minimatch@5.1.9:
3089
3129
  dependencies:
3090
- brace-expansion: 2.0.2
3130
+ brace-expansion: 2.0.3
3091
3131
 
3092
3132
  minimatch@9.0.9:
3093
3133
  dependencies:
3094
- brace-expansion: 2.0.2
3134
+ brace-expansion: 2.0.3
3095
3135
 
3096
3136
  ms@2.1.3: {}
3097
3137
 
@@ -3178,19 +3218,19 @@ snapshots:
3178
3218
 
3179
3219
  picocolors@1.1.1: {}
3180
3220
 
3181
- picomatch@2.3.1: {}
3221
+ picomatch@2.3.2: {}
3182
3222
 
3183
- picomatch@4.0.3: {}
3223
+ picomatch@4.0.4: {}
3184
3224
 
3185
3225
  pidtree@0.6.0: {}
3186
3226
 
3187
3227
  pify@2.3.0: {}
3188
3228
 
3189
- pinia@2.3.1(typescript@5.4.5)(vue@3.5.29(typescript@5.4.5)):
3229
+ pinia@2.3.1(typescript@5.4.5)(vue@3.5.31(typescript@5.4.5)):
3190
3230
  dependencies:
3191
3231
  '@vue/devtools-api': 6.6.4
3192
- vue: 3.5.29(typescript@5.4.5)
3193
- vue-demi: 0.14.10(vue@3.5.29(typescript@5.4.5))
3232
+ vue: 3.5.31(typescript@5.4.5)
3233
+ vue-demi: 0.14.10(vue@3.5.31(typescript@5.4.5))
3194
3234
  optionalDependencies:
3195
3235
  typescript: 5.4.5
3196
3236
  transitivePeerDependencies:
@@ -3264,7 +3304,7 @@ snapshots:
3264
3304
 
3265
3305
  readdirp@3.6.0:
3266
3306
  dependencies:
3267
- picomatch: 2.3.1
3307
+ picomatch: 2.3.2
3268
3308
 
3269
3309
  readdirp@4.1.2: {}
3270
3310
 
@@ -3284,51 +3324,51 @@ snapshots:
3284
3324
  dependencies:
3285
3325
  glob: 7.2.3
3286
3326
 
3287
- rollup@4.59.0:
3327
+ rollup@4.60.0:
3288
3328
  dependencies:
3289
3329
  '@types/estree': 1.0.8
3290
3330
  optionalDependencies:
3291
- '@rollup/rollup-android-arm-eabi': 4.59.0
3292
- '@rollup/rollup-android-arm64': 4.59.0
3293
- '@rollup/rollup-darwin-arm64': 4.59.0
3294
- '@rollup/rollup-darwin-x64': 4.59.0
3295
- '@rollup/rollup-freebsd-arm64': 4.59.0
3296
- '@rollup/rollup-freebsd-x64': 4.59.0
3297
- '@rollup/rollup-linux-arm-gnueabihf': 4.59.0
3298
- '@rollup/rollup-linux-arm-musleabihf': 4.59.0
3299
- '@rollup/rollup-linux-arm64-gnu': 4.59.0
3300
- '@rollup/rollup-linux-arm64-musl': 4.59.0
3301
- '@rollup/rollup-linux-loong64-gnu': 4.59.0
3302
- '@rollup/rollup-linux-loong64-musl': 4.59.0
3303
- '@rollup/rollup-linux-ppc64-gnu': 4.59.0
3304
- '@rollup/rollup-linux-ppc64-musl': 4.59.0
3305
- '@rollup/rollup-linux-riscv64-gnu': 4.59.0
3306
- '@rollup/rollup-linux-riscv64-musl': 4.59.0
3307
- '@rollup/rollup-linux-s390x-gnu': 4.59.0
3308
- '@rollup/rollup-linux-x64-gnu': 4.59.0
3309
- '@rollup/rollup-linux-x64-musl': 4.59.0
3310
- '@rollup/rollup-openbsd-x64': 4.59.0
3311
- '@rollup/rollup-openharmony-arm64': 4.59.0
3312
- '@rollup/rollup-win32-arm64-msvc': 4.59.0
3313
- '@rollup/rollup-win32-ia32-msvc': 4.59.0
3314
- '@rollup/rollup-win32-x64-gnu': 4.59.0
3315
- '@rollup/rollup-win32-x64-msvc': 4.59.0
3331
+ '@rollup/rollup-android-arm-eabi': 4.60.0
3332
+ '@rollup/rollup-android-arm64': 4.60.0
3333
+ '@rollup/rollup-darwin-arm64': 4.60.0
3334
+ '@rollup/rollup-darwin-x64': 4.60.0
3335
+ '@rollup/rollup-freebsd-arm64': 4.60.0
3336
+ '@rollup/rollup-freebsd-x64': 4.60.0
3337
+ '@rollup/rollup-linux-arm-gnueabihf': 4.60.0
3338
+ '@rollup/rollup-linux-arm-musleabihf': 4.60.0
3339
+ '@rollup/rollup-linux-arm64-gnu': 4.60.0
3340
+ '@rollup/rollup-linux-arm64-musl': 4.60.0
3341
+ '@rollup/rollup-linux-loong64-gnu': 4.60.0
3342
+ '@rollup/rollup-linux-loong64-musl': 4.60.0
3343
+ '@rollup/rollup-linux-ppc64-gnu': 4.60.0
3344
+ '@rollup/rollup-linux-ppc64-musl': 4.60.0
3345
+ '@rollup/rollup-linux-riscv64-gnu': 4.60.0
3346
+ '@rollup/rollup-linux-riscv64-musl': 4.60.0
3347
+ '@rollup/rollup-linux-s390x-gnu': 4.60.0
3348
+ '@rollup/rollup-linux-x64-gnu': 4.60.0
3349
+ '@rollup/rollup-linux-x64-musl': 4.60.0
3350
+ '@rollup/rollup-openbsd-x64': 4.60.0
3351
+ '@rollup/rollup-openharmony-arm64': 4.60.0
3352
+ '@rollup/rollup-win32-arm64-msvc': 4.60.0
3353
+ '@rollup/rollup-win32-ia32-msvc': 4.60.0
3354
+ '@rollup/rollup-win32-x64-gnu': 4.60.0
3355
+ '@rollup/rollup-win32-x64-msvc': 4.60.0
3316
3356
  fsevents: 2.3.3
3317
3357
 
3318
3358
  run-parallel@1.2.0:
3319
3359
  dependencies:
3320
3360
  queue-microtask: 1.2.3
3321
3361
 
3322
- sanitize-html@2.17.1:
3362
+ sanitize-html@2.17.2:
3323
3363
  dependencies:
3324
3364
  deepmerge: 4.3.1
3325
3365
  escape-string-regexp: 4.0.0
3326
- htmlparser2: 8.0.2
3366
+ htmlparser2: 10.1.0
3327
3367
  is-plain-object: 5.0.0
3328
3368
  parse-srcset: 1.0.2
3329
3369
  postcss: 8.5.8
3330
3370
 
3331
- sass@1.97.3:
3371
+ sass@1.98.0:
3332
3372
  dependencies:
3333
3373
  chokidar: 4.0.3
3334
3374
  immutable: 5.1.5
@@ -3416,8 +3456,8 @@ snapshots:
3416
3456
 
3417
3457
  tinyglobby@0.2.15:
3418
3458
  dependencies:
3419
- fdir: 6.5.0(picomatch@4.0.3)
3420
- picomatch: 4.0.3
3459
+ fdir: 6.5.0(picomatch@4.0.4)
3460
+ picomatch: 4.0.4
3421
3461
 
3422
3462
  to-regex-range@5.0.1:
3423
3463
  dependencies:
@@ -3429,6 +3469,8 @@ snapshots:
3429
3469
 
3430
3470
  ts-interface-checker@0.1.13: {}
3431
3471
 
3472
+ tslib@2.8.1: {}
3473
+
3432
3474
  type-check@0.4.0:
3433
3475
  dependencies:
3434
3476
  prelude-ls: 1.2.1
@@ -3458,25 +3500,25 @@ snapshots:
3458
3500
 
3459
3501
  util-deprecate@1.0.2: {}
3460
3502
 
3461
- vite@5.4.21(@types/node@20.19.37)(sass@1.97.3):
3503
+ vite@5.4.21(@types/node@20.19.37)(sass@1.98.0):
3462
3504
  dependencies:
3463
3505
  esbuild: 0.21.5
3464
3506
  postcss: 8.5.8
3465
- rollup: 4.59.0
3507
+ rollup: 4.60.0
3466
3508
  optionalDependencies:
3467
3509
  '@types/node': 20.19.37
3468
3510
  fsevents: 2.3.3
3469
- sass: 1.97.3
3511
+ sass: 1.98.0
3470
3512
 
3471
3513
  vscode-uri@3.1.0: {}
3472
3514
 
3473
- vue-demi@0.14.10(vue@3.5.29(typescript@5.4.5)):
3515
+ vue-demi@0.14.10(vue@3.5.31(typescript@5.4.5)):
3474
3516
  dependencies:
3475
- vue: 3.5.29(typescript@5.4.5)
3517
+ vue: 3.5.31(typescript@5.4.5)
3476
3518
 
3477
- vue-diff@1.2.4(vue@3.5.29(typescript@5.4.5)):
3519
+ vue-diff@1.2.4(vue@3.5.31(typescript@5.4.5)):
3478
3520
  dependencies:
3479
- '@vueuse/core': 8.9.4(vue@3.5.29(typescript@5.4.5))
3521
+ '@vueuse/core': 8.9.4(vue@3.5.31(typescript@5.4.5))
3480
3522
  diff-match-patch: 1.0.5
3481
3523
  highlight.js: 11.11.1
3482
3524
  transitivePeerDependencies:
@@ -3504,19 +3546,17 @@ snapshots:
3504
3546
  is-valid-glob: 1.0.0
3505
3547
  js-yaml: 4.1.1
3506
3548
 
3507
- vue-i18n@10.0.8(vue@3.5.29(typescript@5.4.5)):
3549
+ vue-i18n@10.0.8(vue@3.5.31(typescript@5.4.5)):
3508
3550
  dependencies:
3509
3551
  '@intlify/core-base': 10.0.8
3510
3552
  '@intlify/shared': 10.0.8
3511
3553
  '@vue/devtools-api': 6.6.4
3512
- vue: 3.5.29(typescript@5.4.5)
3554
+ vue: 3.5.31(typescript@5.4.5)
3513
3555
 
3514
- vue-router@4.6.4(vue@3.5.29(typescript@5.4.5)):
3556
+ vue-router@4.6.4(vue@3.5.31(typescript@5.4.5)):
3515
3557
  dependencies:
3516
3558
  '@vue/devtools-api': 6.6.4
3517
- vue: 3.5.29(typescript@5.4.5)
3518
-
3519
- vue-slider-component@4.1.0-beta.7: {}
3559
+ vue: 3.5.31(typescript@5.4.5)
3520
3560
 
3521
3561
  vue-tsc@2.2.12(typescript@5.4.5):
3522
3562
  dependencies:
@@ -3524,18 +3564,18 @@ snapshots:
3524
3564
  '@vue/language-core': 2.2.12(typescript@5.4.5)
3525
3565
  typescript: 5.4.5
3526
3566
 
3527
- vue3-json-viewer@2.4.1(vue@3.5.29(typescript@5.4.5)):
3567
+ vue3-json-viewer@2.4.1(vue@3.5.31(typescript@5.4.5)):
3528
3568
  dependencies:
3529
3569
  clipboard: 2.0.11
3530
- vue: 3.5.29(typescript@5.4.5)
3570
+ vue: 3.5.31(typescript@5.4.5)
3531
3571
 
3532
- vue@3.5.29(typescript@5.4.5):
3572
+ vue@3.5.31(typescript@5.4.5):
3533
3573
  dependencies:
3534
- '@vue/compiler-dom': 3.5.29
3535
- '@vue/compiler-sfc': 3.5.29
3536
- '@vue/runtime-dom': 3.5.29
3537
- '@vue/server-renderer': 3.5.29(vue@3.5.29(typescript@5.4.5))
3538
- '@vue/shared': 3.5.29
3574
+ '@vue/compiler-dom': 3.5.31
3575
+ '@vue/compiler-sfc': 3.5.31
3576
+ '@vue/runtime-dom': 3.5.31
3577
+ '@vue/server-renderer': 3.5.31(vue@3.5.31(typescript@5.4.5))
3578
+ '@vue/shared': 3.5.31
3539
3579
  optionalDependencies:
3540
3580
  typescript: 5.4.5
3541
3581