adminforth 2.27.0-next.7 → 2.27.0-next.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/commands/callTsProxy.js +10 -5
- package/commands/createApp/templates/api.ts.hbs +28 -9
- package/commands/createApp/templates/package.json.hbs +2 -1
- package/commands/proxy.ts +18 -10
- package/dist/basePlugin.js +1 -1
- package/dist/basePlugin.js.map +1 -1
- package/dist/commands/proxy.js +14 -10
- package/dist/commands/proxy.js.map +1 -1
- package/dist/dataConnectors/baseConnector.d.ts +10 -4
- package/dist/dataConnectors/baseConnector.d.ts.map +1 -1
- package/dist/dataConnectors/baseConnector.js +76 -54
- package/dist/dataConnectors/baseConnector.js.map +1 -1
- package/dist/dataConnectors/clickhouse.d.ts +5 -2
- package/dist/dataConnectors/clickhouse.d.ts.map +1 -1
- package/dist/dataConnectors/clickhouse.js +76 -10
- package/dist/dataConnectors/clickhouse.js.map +1 -1
- package/dist/dataConnectors/mongo.d.ts.map +1 -1
- package/dist/dataConnectors/mongo.js +3 -1
- package/dist/dataConnectors/mongo.js.map +1 -1
- package/dist/dataConnectors/mysql.d.ts.map +1 -1
- package/dist/dataConnectors/mysql.js +3 -1
- package/dist/dataConnectors/mysql.js.map +1 -1
- package/dist/dataConnectors/postgres.d.ts.map +1 -1
- package/dist/dataConnectors/postgres.js +3 -1
- package/dist/dataConnectors/postgres.js.map +1 -1
- package/dist/dataConnectors/sqlite.d.ts.map +1 -1
- package/dist/dataConnectors/sqlite.js +4 -2
- package/dist/dataConnectors/sqlite.js.map +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -1
- package/dist/modules/configValidator.d.ts.map +1 -1
- package/dist/modules/configValidator.js +16 -9
- package/dist/modules/configValidator.js.map +1 -1
- package/dist/modules/restApi.d.ts.map +1 -1
- package/dist/modules/restApi.js +598 -15
- package/dist/modules/restApi.js.map +1 -1
- package/dist/modules/styles.js +1 -1
- package/dist/modules/utils.d.ts +1 -1
- package/dist/modules/utils.d.ts.map +1 -1
- package/dist/modules/utils.js +3 -5
- package/dist/modules/utils.js.map +1 -1
- package/dist/servers/express.d.ts +18 -7
- package/dist/servers/express.d.ts.map +1 -1
- package/dist/servers/express.js +141 -1
- package/dist/servers/express.js.map +1 -1
- package/dist/servers/openapi.d.ts +25 -0
- package/dist/servers/openapi.d.ts.map +1 -0
- package/dist/servers/openapi.js +92 -0
- package/dist/servers/openapi.js.map +1 -0
- package/dist/servers/openapiDocument.d.ts +12 -0
- package/dist/servers/openapiDocument.d.ts.map +1 -0
- package/dist/servers/openapiDocument.js +313 -0
- package/dist/servers/openapiDocument.js.map +1 -0
- package/dist/spa/package-lock.json +41 -0
- package/dist/spa/package.json +4 -0
- package/dist/spa/pnpm-lock.yaml +384 -310
- package/dist/spa/pnpm-workspace.yaml +4 -0
- package/dist/spa/src/App.vue +78 -76
- package/dist/spa/src/afcl/Button.vue +2 -3
- package/dist/spa/src/afcl/Dialog.vue +1 -1
- package/dist/spa/src/afcl/Input.vue +1 -1
- package/dist/spa/src/afcl/Select.vue +8 -2
- package/dist/spa/src/afcl/Skeleton.vue +5 -0
- package/dist/spa/src/afcl/Spinner.vue +1 -1
- package/dist/spa/src/components/CallActionWrapper.vue +1 -1
- package/dist/spa/src/components/ColumnValueInput.vue +16 -3
- package/dist/spa/src/components/ColumnValueInputWrapper.vue +25 -2
- package/dist/spa/src/components/CustomRangePicker.vue +10 -14
- package/dist/spa/src/components/Filters.vue +95 -63
- package/dist/spa/src/components/GroupsTable.vue +9 -6
- package/dist/spa/src/components/MenuLink.vue +2 -2
- package/dist/spa/src/components/ResourceForm.vue +103 -9
- package/dist/spa/src/components/ResourceListTable.vue +16 -10
- package/dist/spa/src/components/ShowTable.vue +3 -3
- package/dist/spa/src/components/Sidebar.vue +29 -8
- package/dist/spa/src/components/ThreeDotsMenu.vue +25 -9
- package/dist/spa/src/components/ValueRenderer.vue +1 -0
- package/dist/spa/src/controls/BoolToggle.vue +2 -2
- package/dist/spa/src/renderers/RichText.vue +2 -2
- package/dist/spa/src/renderers/ZeroStylesRichText.vue +2 -2
- package/dist/spa/src/spa_types/core.ts +32 -0
- package/dist/spa/src/stores/core.ts +16 -2
- package/dist/spa/src/stores/filters.ts +16 -12
- package/dist/spa/src/types/Back.ts +137 -26
- package/dist/spa/src/types/Common.ts +25 -6
- package/dist/spa/src/types/adapters/CompletionAdapter.ts +27 -5
- package/dist/spa/src/types/adapters/index.ts +2 -2
- package/dist/spa/src/utils/createEditUtils.ts +65 -0
- package/dist/spa/src/utils/index.ts +2 -1
- package/dist/spa/src/utils/listUtils.ts +3 -3
- package/dist/spa/src/utils/utils.ts +42 -7
- package/dist/spa/src/utils.ts +2 -1
- package/dist/spa/src/views/CreateEditSkeleton.vue +74 -0
- package/dist/spa/src/views/CreateView.vue +24 -50
- package/dist/spa/src/views/EditView.vue +23 -40
- package/dist/spa/src/views/ListView.vue +22 -32
- package/dist/spa/src/views/ShowView.vue +66 -24
- package/dist/types/Back.d.ts +140 -32
- package/dist/types/Back.d.ts.map +1 -1
- package/dist/types/Back.js.map +1 -1
- package/dist/types/Common.d.ts +32 -6
- package/dist/types/Common.d.ts.map +1 -1
- package/dist/types/Common.js.map +1 -1
- package/dist/types/adapters/CompletionAdapter.d.ts +18 -3
- package/dist/types/adapters/CompletionAdapter.d.ts.map +1 -1
- package/dist/types/adapters/index.d.ts +1 -1
- package/dist/types/adapters/index.d.ts.map +1 -1
- package/package.json +11 -6
package/dist/spa/pnpm-lock.yaml
CHANGED
|
@@ -10,25 +10,28 @@ importers:
|
|
|
10
10
|
dependencies:
|
|
11
11
|
'@iconify-prerendered/vue-flag':
|
|
12
12
|
specifier: ^0.28.1748584105
|
|
13
|
-
version: 0.28.1754899047(vue@3.5.
|
|
13
|
+
version: 0.28.1754899047(vue@3.5.32(typescript@5.4.5))
|
|
14
14
|
'@iconify-prerendered/vue-flowbite':
|
|
15
15
|
specifier: ^0.28.1754899090
|
|
16
|
-
version: 0.28.1754899090(vue@3.5.
|
|
16
|
+
version: 0.28.1754899090(vue@3.5.32(typescript@5.4.5))
|
|
17
17
|
'@iconify-prerendered/vue-heroicons':
|
|
18
18
|
specifier: ^0.28.1721921294
|
|
19
|
-
version: 0.28.1721921294(vue@3.5.
|
|
19
|
+
version: 0.28.1721921294(vue@3.5.32(typescript@5.4.5))
|
|
20
20
|
'@iconify-prerendered/vue-humbleicons':
|
|
21
21
|
specifier: ^0.28.1754108846
|
|
22
|
-
version: 0.28.1754108846(vue@3.5.
|
|
22
|
+
version: 0.28.1754108846(vue@3.5.32(typescript@5.4.5))
|
|
23
23
|
'@unhead/vue':
|
|
24
24
|
specifier: ^1.9.12
|
|
25
|
-
version: 1.11.20(vue@3.5.
|
|
25
|
+
version: 1.11.20(vue@3.5.32(typescript@5.4.5))
|
|
26
26
|
'@vueuse/core':
|
|
27
27
|
specifier: ^10.10.0
|
|
28
|
-
version: 10.11.1(vue@3.5.
|
|
28
|
+
version: 10.11.1(vue@3.5.32(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
37
|
version: 1.11.20
|
|
@@ -37,13 +40,16 @@ importers:
|
|
|
37
40
|
version: 2.2.0
|
|
38
41
|
flowbite-datepicker:
|
|
39
42
|
specifier: ^1.2.6
|
|
40
|
-
version: 1.3.2(rollup@4.60.
|
|
43
|
+
version: 1.3.2(rollup@4.60.1)
|
|
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.
|
|
52
|
+
version: 2.3.1(typescript@5.4.5)(vue@3.5.32(typescript@5.4.5))
|
|
47
53
|
sanitize-html:
|
|
48
54
|
specifier: ^2.13.0
|
|
49
55
|
version: 2.17.2
|
|
@@ -52,19 +58,19 @@ importers:
|
|
|
52
58
|
version: 1.11.20
|
|
53
59
|
vue:
|
|
54
60
|
specifier: ^3.5.12
|
|
55
|
-
version: 3.5.
|
|
61
|
+
version: 3.5.32(typescript@5.4.5)
|
|
56
62
|
vue-diff:
|
|
57
63
|
specifier: ^1.2.4
|
|
58
|
-
version: 1.2.4(vue@3.5.
|
|
64
|
+
version: 1.2.4(vue@3.5.32(typescript@5.4.5))
|
|
59
65
|
vue-i18n:
|
|
60
66
|
specifier: ^10.0.5
|
|
61
|
-
version: 10.0.8(vue@3.5.
|
|
67
|
+
version: 10.0.8(vue@3.5.32(typescript@5.4.5))
|
|
62
68
|
vue-router:
|
|
63
69
|
specifier: ^4.3.0
|
|
64
|
-
version: 4.6.4(vue@3.5.
|
|
70
|
+
version: 4.6.4(vue@3.5.32(typescript@5.4.5))
|
|
65
71
|
vue3-json-viewer:
|
|
66
72
|
specifier: ^2.2.2
|
|
67
|
-
version: 2.4.1(vue@3.5.
|
|
73
|
+
version: 2.4.1(vue@3.5.32(typescript@5.4.5))
|
|
68
74
|
devDependencies:
|
|
69
75
|
'@rushstack/eslint-patch':
|
|
70
76
|
specifier: ^1.8.0
|
|
@@ -75,24 +81,30 @@ importers:
|
|
|
75
81
|
'@tsconfig/node20':
|
|
76
82
|
specifier: ^20.1.4
|
|
77
83
|
version: 20.1.9
|
|
84
|
+
'@types/lodash.debounce':
|
|
85
|
+
specifier: ^4.0.9
|
|
86
|
+
version: 4.0.9
|
|
78
87
|
'@types/node':
|
|
79
88
|
specifier: ^20.12.5
|
|
80
|
-
version: 20.19.
|
|
89
|
+
version: 20.19.39
|
|
81
90
|
'@types/sanitize-html':
|
|
82
91
|
specifier: ^2.16.1
|
|
83
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.
|
|
95
|
+
version: 5.2.4(vite@5.4.21(@types/node@20.19.39)(sass@1.99.0))(vue@3.5.32(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)
|
|
90
99
|
'@vue/tsconfig':
|
|
91
100
|
specifier: ^0.5.1
|
|
92
101
|
version: 0.5.1
|
|
102
|
+
ajv:
|
|
103
|
+
specifier: ^8.18.0
|
|
104
|
+
version: 8.18.0
|
|
93
105
|
autoprefixer:
|
|
94
106
|
specifier: ^10.4.19
|
|
95
|
-
version: 10.
|
|
107
|
+
version: 10.5.0(postcss@8.5.9)
|
|
96
108
|
eslint:
|
|
97
109
|
specifier: ^8.57.0
|
|
98
110
|
version: 8.57.1
|
|
@@ -104,7 +116,7 @@ importers:
|
|
|
104
116
|
version: 7.5.0
|
|
105
117
|
flowbite:
|
|
106
118
|
specifier: ^3.1.2
|
|
107
|
-
version: 3.1.2(rollup@4.60.
|
|
119
|
+
version: 3.1.2(rollup@4.60.1)
|
|
108
120
|
i18n-iso-countries:
|
|
109
121
|
specifier: ^7.12.0
|
|
110
122
|
version: 7.14.0
|
|
@@ -116,10 +128,10 @@ importers:
|
|
|
116
128
|
version: 1.0.38
|
|
117
129
|
postcss:
|
|
118
130
|
specifier: ^8.4.38
|
|
119
|
-
version: 8.5.
|
|
131
|
+
version: 8.5.9
|
|
120
132
|
sass:
|
|
121
133
|
specifier: ^1.77.2
|
|
122
|
-
version: 1.
|
|
134
|
+
version: 1.99.0
|
|
123
135
|
tailwindcss:
|
|
124
136
|
specifier: ^3.4.17
|
|
125
137
|
version: 3.4.19
|
|
@@ -128,7 +140,7 @@ importers:
|
|
|
128
140
|
version: 5.4.5
|
|
129
141
|
vite:
|
|
130
142
|
specifier: ^5.2.13
|
|
131
|
-
version: 5.4.21(@types/node@20.19.
|
|
143
|
+
version: 5.4.21(@types/node@20.19.39)(sass@1.99.0)
|
|
132
144
|
vue-i18n-extract:
|
|
133
145
|
specifier: ^2.0.7
|
|
134
146
|
version: 2.0.7
|
|
@@ -494,141 +506,141 @@ packages:
|
|
|
494
506
|
rollup:
|
|
495
507
|
optional: true
|
|
496
508
|
|
|
497
|
-
'@rollup/rollup-android-arm-eabi@4.60.
|
|
498
|
-
resolution: {integrity: sha512-
|
|
509
|
+
'@rollup/rollup-android-arm-eabi@4.60.1':
|
|
510
|
+
resolution: {integrity: sha512-d6FinEBLdIiK+1uACUttJKfgZREXrF0Qc2SmLII7W2AD8FfiZ9Wjd+rD/iRuf5s5dWrr1GgwXCvPqOuDquOowA==}
|
|
499
511
|
cpu: [arm]
|
|
500
512
|
os: [android]
|
|
501
513
|
|
|
502
|
-
'@rollup/rollup-android-arm64@4.60.
|
|
503
|
-
resolution: {integrity: sha512-
|
|
514
|
+
'@rollup/rollup-android-arm64@4.60.1':
|
|
515
|
+
resolution: {integrity: sha512-YjG/EwIDvvYI1YvYbHvDz/BYHtkY4ygUIXHnTdLhG+hKIQFBiosfWiACWortsKPKU/+dUwQQCKQM3qrDe8c9BA==}
|
|
504
516
|
cpu: [arm64]
|
|
505
517
|
os: [android]
|
|
506
518
|
|
|
507
|
-
'@rollup/rollup-darwin-arm64@4.60.
|
|
508
|
-
resolution: {integrity: sha512-
|
|
519
|
+
'@rollup/rollup-darwin-arm64@4.60.1':
|
|
520
|
+
resolution: {integrity: sha512-mjCpF7GmkRtSJwon+Rq1N8+pI+8l7w5g9Z3vWj4T7abguC4Czwi3Yu/pFaLvA3TTeMVjnu3ctigusqWUfjZzvw==}
|
|
509
521
|
cpu: [arm64]
|
|
510
522
|
os: [darwin]
|
|
511
523
|
|
|
512
|
-
'@rollup/rollup-darwin-x64@4.60.
|
|
513
|
-
resolution: {integrity: sha512-
|
|
524
|
+
'@rollup/rollup-darwin-x64@4.60.1':
|
|
525
|
+
resolution: {integrity: sha512-haZ7hJ1JT4e9hqkoT9R/19XW2QKqjfJVv+i5AGg57S+nLk9lQnJ1F/eZloRO3o9Scy9CM3wQ9l+dkXtcBgN5Ew==}
|
|
514
526
|
cpu: [x64]
|
|
515
527
|
os: [darwin]
|
|
516
528
|
|
|
517
|
-
'@rollup/rollup-freebsd-arm64@4.60.
|
|
518
|
-
resolution: {integrity: sha512-
|
|
529
|
+
'@rollup/rollup-freebsd-arm64@4.60.1':
|
|
530
|
+
resolution: {integrity: sha512-czw90wpQq3ZsAVBlinZjAYTKduOjTywlG7fEeWKUA7oCmpA8xdTkxZZlwNJKWqILlq0wehoZcJYfBvOyhPTQ6w==}
|
|
519
531
|
cpu: [arm64]
|
|
520
532
|
os: [freebsd]
|
|
521
533
|
|
|
522
|
-
'@rollup/rollup-freebsd-x64@4.60.
|
|
523
|
-
resolution: {integrity: sha512-
|
|
534
|
+
'@rollup/rollup-freebsd-x64@4.60.1':
|
|
535
|
+
resolution: {integrity: sha512-KVB2rqsxTHuBtfOeySEyzEOB7ltlB/ux38iu2rBQzkjbwRVlkhAGIEDiiYnO2kFOkJp+Z7pUXKyrRRFuFUKt+g==}
|
|
524
536
|
cpu: [x64]
|
|
525
537
|
os: [freebsd]
|
|
526
538
|
|
|
527
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.60.
|
|
528
|
-
resolution: {integrity: sha512-
|
|
539
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.60.1':
|
|
540
|
+
resolution: {integrity: sha512-L+34Qqil+v5uC0zEubW7uByo78WOCIrBvci69E7sFASRl0X7b/MB6Cqd1lky/CtcSVTydWa2WZwFuWexjS5o6g==}
|
|
529
541
|
cpu: [arm]
|
|
530
542
|
os: [linux]
|
|
531
543
|
libc: [glibc]
|
|
532
544
|
|
|
533
|
-
'@rollup/rollup-linux-arm-musleabihf@4.60.
|
|
534
|
-
resolution: {integrity: sha512-
|
|
545
|
+
'@rollup/rollup-linux-arm-musleabihf@4.60.1':
|
|
546
|
+
resolution: {integrity: sha512-n83O8rt4v34hgFzlkb1ycniJh7IR5RCIqt6mz1VRJD6pmhRi0CXdmfnLu9dIUS6buzh60IvACM842Ffb3xd6Gg==}
|
|
535
547
|
cpu: [arm]
|
|
536
548
|
os: [linux]
|
|
537
549
|
libc: [musl]
|
|
538
550
|
|
|
539
|
-
'@rollup/rollup-linux-arm64-gnu@4.60.
|
|
540
|
-
resolution: {integrity: sha512-
|
|
551
|
+
'@rollup/rollup-linux-arm64-gnu@4.60.1':
|
|
552
|
+
resolution: {integrity: sha512-Nql7sTeAzhTAja3QXeAI48+/+GjBJ+QmAH13snn0AJSNL50JsDqotyudHyMbO2RbJkskbMbFJfIJKWA6R1LCJQ==}
|
|
541
553
|
cpu: [arm64]
|
|
542
554
|
os: [linux]
|
|
543
555
|
libc: [glibc]
|
|
544
556
|
|
|
545
|
-
'@rollup/rollup-linux-arm64-musl@4.60.
|
|
546
|
-
resolution: {integrity: sha512
|
|
557
|
+
'@rollup/rollup-linux-arm64-musl@4.60.1':
|
|
558
|
+
resolution: {integrity: sha512-+pUymDhd0ys9GcKZPPWlFiZ67sTWV5UU6zOJat02M1+PiuSGDziyRuI/pPue3hoUwm2uGfxdL+trT6Z9rxnlMA==}
|
|
547
559
|
cpu: [arm64]
|
|
548
560
|
os: [linux]
|
|
549
561
|
libc: [musl]
|
|
550
562
|
|
|
551
|
-
'@rollup/rollup-linux-loong64-gnu@4.60.
|
|
552
|
-
resolution: {integrity: sha512-
|
|
563
|
+
'@rollup/rollup-linux-loong64-gnu@4.60.1':
|
|
564
|
+
resolution: {integrity: sha512-VSvgvQeIcsEvY4bKDHEDWcpW4Yw7BtlKG1GUT4FzBUlEKQK0rWHYBqQt6Fm2taXS+1bXvJT6kICu5ZwqKCnvlQ==}
|
|
553
565
|
cpu: [loong64]
|
|
554
566
|
os: [linux]
|
|
555
567
|
libc: [glibc]
|
|
556
568
|
|
|
557
|
-
'@rollup/rollup-linux-loong64-musl@4.60.
|
|
558
|
-
resolution: {integrity: sha512-
|
|
569
|
+
'@rollup/rollup-linux-loong64-musl@4.60.1':
|
|
570
|
+
resolution: {integrity: sha512-4LqhUomJqwe641gsPp6xLfhqWMbQV04KtPp7/dIp0nzPxAkNY1AbwL5W0MQpcalLYk07vaW9Kp1PBhdpZYYcEw==}
|
|
559
571
|
cpu: [loong64]
|
|
560
572
|
os: [linux]
|
|
561
573
|
libc: [musl]
|
|
562
574
|
|
|
563
|
-
'@rollup/rollup-linux-ppc64-gnu@4.60.
|
|
564
|
-
resolution: {integrity: sha512-
|
|
575
|
+
'@rollup/rollup-linux-ppc64-gnu@4.60.1':
|
|
576
|
+
resolution: {integrity: sha512-tLQQ9aPvkBxOc/EUT6j3pyeMD6Hb8QF2BTBnCQWP/uu1lhc9AIrIjKnLYMEroIz/JvtGYgI9dF3AxHZNaEH0rw==}
|
|
565
577
|
cpu: [ppc64]
|
|
566
578
|
os: [linux]
|
|
567
579
|
libc: [glibc]
|
|
568
580
|
|
|
569
|
-
'@rollup/rollup-linux-ppc64-musl@4.60.
|
|
570
|
-
resolution: {integrity: sha512-
|
|
581
|
+
'@rollup/rollup-linux-ppc64-musl@4.60.1':
|
|
582
|
+
resolution: {integrity: sha512-RMxFhJwc9fSXP6PqmAz4cbv3kAyvD1etJFjTx4ONqFP9DkTkXsAMU4v3Vyc5BgzC+anz7nS/9tp4obsKfqkDHg==}
|
|
571
583
|
cpu: [ppc64]
|
|
572
584
|
os: [linux]
|
|
573
585
|
libc: [musl]
|
|
574
586
|
|
|
575
|
-
'@rollup/rollup-linux-riscv64-gnu@4.60.
|
|
576
|
-
resolution: {integrity: sha512-
|
|
587
|
+
'@rollup/rollup-linux-riscv64-gnu@4.60.1':
|
|
588
|
+
resolution: {integrity: sha512-QKgFl+Yc1eEk6MmOBfRHYF6lTxiiiV3/z/BRrbSiW2I7AFTXoBFvdMEyglohPj//2mZS4hDOqeB0H1ACh3sBbg==}
|
|
577
589
|
cpu: [riscv64]
|
|
578
590
|
os: [linux]
|
|
579
591
|
libc: [glibc]
|
|
580
592
|
|
|
581
|
-
'@rollup/rollup-linux-riscv64-musl@4.60.
|
|
582
|
-
resolution: {integrity: sha512-
|
|
593
|
+
'@rollup/rollup-linux-riscv64-musl@4.60.1':
|
|
594
|
+
resolution: {integrity: sha512-RAjXjP/8c6ZtzatZcA1RaQr6O1TRhzC+adn8YZDnChliZHviqIjmvFwHcxi4JKPSDAt6Uhf/7vqcBzQJy0PDJg==}
|
|
583
595
|
cpu: [riscv64]
|
|
584
596
|
os: [linux]
|
|
585
597
|
libc: [musl]
|
|
586
598
|
|
|
587
|
-
'@rollup/rollup-linux-s390x-gnu@4.60.
|
|
588
|
-
resolution: {integrity: sha512-
|
|
599
|
+
'@rollup/rollup-linux-s390x-gnu@4.60.1':
|
|
600
|
+
resolution: {integrity: sha512-wcuocpaOlaL1COBYiA89O6yfjlp3RwKDeTIA0hM7OpmhR1Bjo9j31G1uQVpDlTvwxGn2nQs65fBFL5UFd76FcQ==}
|
|
589
601
|
cpu: [s390x]
|
|
590
602
|
os: [linux]
|
|
591
603
|
libc: [glibc]
|
|
592
604
|
|
|
593
|
-
'@rollup/rollup-linux-x64-gnu@4.60.
|
|
594
|
-
resolution: {integrity: sha512-
|
|
605
|
+
'@rollup/rollup-linux-x64-gnu@4.60.1':
|
|
606
|
+
resolution: {integrity: sha512-77PpsFQUCOiZR9+LQEFg9GClyfkNXj1MP6wRnzYs0EeWbPcHs02AXu4xuUbM1zhwn3wqaizle3AEYg5aeoohhg==}
|
|
595
607
|
cpu: [x64]
|
|
596
608
|
os: [linux]
|
|
597
609
|
libc: [glibc]
|
|
598
610
|
|
|
599
|
-
'@rollup/rollup-linux-x64-musl@4.60.
|
|
600
|
-
resolution: {integrity: sha512-
|
|
611
|
+
'@rollup/rollup-linux-x64-musl@4.60.1':
|
|
612
|
+
resolution: {integrity: sha512-5cIATbk5vynAjqqmyBjlciMJl1+R/CwX9oLk/EyiFXDWd95KpHdrOJT//rnUl4cUcskrd0jCCw3wpZnhIHdD9w==}
|
|
601
613
|
cpu: [x64]
|
|
602
614
|
os: [linux]
|
|
603
615
|
libc: [musl]
|
|
604
616
|
|
|
605
|
-
'@rollup/rollup-openbsd-x64@4.60.
|
|
606
|
-
resolution: {integrity: sha512-
|
|
617
|
+
'@rollup/rollup-openbsd-x64@4.60.1':
|
|
618
|
+
resolution: {integrity: sha512-cl0w09WsCi17mcmWqqglez9Gk8isgeWvoUZ3WiJFYSR3zjBQc2J5/ihSjpl+VLjPqjQ/1hJRcqBfLjssREQILw==}
|
|
607
619
|
cpu: [x64]
|
|
608
620
|
os: [openbsd]
|
|
609
621
|
|
|
610
|
-
'@rollup/rollup-openharmony-arm64@4.60.
|
|
611
|
-
resolution: {integrity: sha512-
|
|
622
|
+
'@rollup/rollup-openharmony-arm64@4.60.1':
|
|
623
|
+
resolution: {integrity: sha512-4Cv23ZrONRbNtbZa37mLSueXUCtN7MXccChtKpUnQNgF010rjrjfHx3QxkS2PI7LqGT5xXyYs1a7LbzAwT0iCA==}
|
|
612
624
|
cpu: [arm64]
|
|
613
625
|
os: [openharmony]
|
|
614
626
|
|
|
615
|
-
'@rollup/rollup-win32-arm64-msvc@4.60.
|
|
616
|
-
resolution: {integrity: sha512-
|
|
627
|
+
'@rollup/rollup-win32-arm64-msvc@4.60.1':
|
|
628
|
+
resolution: {integrity: sha512-i1okWYkA4FJICtr7KpYzFpRTHgy5jdDbZiWfvny21iIKky5YExiDXP+zbXzm3dUcFpkEeYNHgQ5fuG236JPq0g==}
|
|
617
629
|
cpu: [arm64]
|
|
618
630
|
os: [win32]
|
|
619
631
|
|
|
620
|
-
'@rollup/rollup-win32-ia32-msvc@4.60.
|
|
621
|
-
resolution: {integrity: sha512-
|
|
632
|
+
'@rollup/rollup-win32-ia32-msvc@4.60.1':
|
|
633
|
+
resolution: {integrity: sha512-u09m3CuwLzShA0EYKMNiFgcjjzwqtUMLmuCJLeZWjjOYA3IT2Di09KaxGBTP9xVztWyIWjVdsB2E9goMjZvTQg==}
|
|
622
634
|
cpu: [ia32]
|
|
623
635
|
os: [win32]
|
|
624
636
|
|
|
625
|
-
'@rollup/rollup-win32-x64-gnu@4.60.
|
|
626
|
-
resolution: {integrity: sha512-
|
|
637
|
+
'@rollup/rollup-win32-x64-gnu@4.60.1':
|
|
638
|
+
resolution: {integrity: sha512-k+600V9Zl1CM7eZxJgMyTUzmrmhB/0XZnF4pRypKAlAgxmedUA+1v9R+XOFv56W4SlHEzfeMtzujLJD22Uz5zg==}
|
|
627
639
|
cpu: [x64]
|
|
628
640
|
os: [win32]
|
|
629
641
|
|
|
630
|
-
'@rollup/rollup-win32-x64-msvc@4.60.
|
|
631
|
-
resolution: {integrity: sha512-
|
|
642
|
+
'@rollup/rollup-win32-x64-msvc@4.60.1':
|
|
643
|
+
resolution: {integrity: sha512-lWMnixq/QzxyhTV6NjQJ4SFo1J6PvOX8vUx5Wb4bBPsEb+8xZ89Bz6kOXpfXj9ak9AHTQVQzlgzBEc1SyM27xQ==}
|
|
632
644
|
cpu: [x64]
|
|
633
645
|
os: [win32]
|
|
634
646
|
|
|
@@ -671,8 +683,14 @@ packages:
|
|
|
671
683
|
'@types/estree@1.0.8':
|
|
672
684
|
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
673
685
|
|
|
674
|
-
'@types/
|
|
675
|
-
resolution: {integrity: sha512-
|
|
686
|
+
'@types/lodash.debounce@4.0.9':
|
|
687
|
+
resolution: {integrity: sha512-Ma5JcgTREwpLRwMM+XwBR7DaWe96nC38uCBDFKZWbNKD+osjVzdpnUSwBcqCptrp16sSOLBAUb50Car5I0TCsQ==}
|
|
688
|
+
|
|
689
|
+
'@types/lodash@4.17.24':
|
|
690
|
+
resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==}
|
|
691
|
+
|
|
692
|
+
'@types/node@20.19.39':
|
|
693
|
+
resolution: {integrity: sha512-orrrD74MBUyK8jOAD/r0+lfa1I2MO6I+vAkmAWzMYbCcgrN4lCrmK52gRFQq/JRxfYPfonkr4b0jcY7Olqdqbw==}
|
|
676
694
|
|
|
677
695
|
'@types/resolve@1.20.2':
|
|
678
696
|
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
|
|
@@ -777,17 +795,17 @@ packages:
|
|
|
777
795
|
'@volar/typescript@2.4.15':
|
|
778
796
|
resolution: {integrity: sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==}
|
|
779
797
|
|
|
780
|
-
'@vue/compiler-core@3.5.
|
|
781
|
-
resolution: {integrity: sha512-
|
|
798
|
+
'@vue/compiler-core@3.5.32':
|
|
799
|
+
resolution: {integrity: sha512-4x74Tbtqnda8s/NSD6e1Dr5p1c8HdMU5RWSjMSUzb8RTcUQqevDCxVAitcLBKT+ie3o0Dl9crc/S/opJM7qBGQ==}
|
|
782
800
|
|
|
783
|
-
'@vue/compiler-dom@3.5.
|
|
784
|
-
resolution: {integrity: sha512-
|
|
801
|
+
'@vue/compiler-dom@3.5.32':
|
|
802
|
+
resolution: {integrity: sha512-ybHAu70NtiEI1fvAUz3oXZqkUYEe5J98GjMDpTGl5iHb0T15wQYLR4wE3h9xfuTNA+Cm2f4czfe8B4s+CCH57Q==}
|
|
785
803
|
|
|
786
|
-
'@vue/compiler-sfc@3.5.
|
|
787
|
-
resolution: {integrity: sha512-
|
|
804
|
+
'@vue/compiler-sfc@3.5.32':
|
|
805
|
+
resolution: {integrity: sha512-8UYUYo71cP/0YHMO814TRZlPuUUw3oifHuMR7Wp9SNoRSrxRQnhMLNlCeaODNn6kNTJsjFoQ/kqIj4qGvya4Xg==}
|
|
788
806
|
|
|
789
|
-
'@vue/compiler-ssr@3.5.
|
|
790
|
-
resolution: {integrity: sha512-
|
|
807
|
+
'@vue/compiler-ssr@3.5.32':
|
|
808
|
+
resolution: {integrity: sha512-Gp4gTs22T3DgRotZ8aA/6m2jMR+GMztvBXUBEUOYOcST+giyGWJ4WvFd7QLHBkzTxkfOt8IELKNdpzITLbA2rw==}
|
|
791
809
|
|
|
792
810
|
'@vue/compiler-vue2@2.7.16':
|
|
793
811
|
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
|
|
@@ -814,22 +832,22 @@ packages:
|
|
|
814
832
|
typescript:
|
|
815
833
|
optional: true
|
|
816
834
|
|
|
817
|
-
'@vue/reactivity@3.5.
|
|
818
|
-
resolution: {integrity: sha512
|
|
835
|
+
'@vue/reactivity@3.5.32':
|
|
836
|
+
resolution: {integrity: sha512-/ORasxSGvZ6MN5gc+uE364SxFdJ0+WqVG0CENXaGW58TOCdrAW76WWaplDtECeS1qphvtBZtR+3/o1g1zL4xPQ==}
|
|
819
837
|
|
|
820
|
-
'@vue/runtime-core@3.5.
|
|
821
|
-
resolution: {integrity: sha512-
|
|
838
|
+
'@vue/runtime-core@3.5.32':
|
|
839
|
+
resolution: {integrity: sha512-pDrXCejn4UpFDFmMd27AcJEbHaLemaE5o4pbb7sLk79SRIhc6/t34BQA7SGNgYtbMnvbF/HHOftYBgFJtUoJUQ==}
|
|
822
840
|
|
|
823
|
-
'@vue/runtime-dom@3.5.
|
|
824
|
-
resolution: {integrity: sha512-
|
|
841
|
+
'@vue/runtime-dom@3.5.32':
|
|
842
|
+
resolution: {integrity: sha512-1CDVv7tv/IV13V8Nip1k/aaObVbWqRlVCVezTwx3K07p7Vxossp5JU1dcPNhJk3w347gonIUT9jQOGutyJrSVQ==}
|
|
825
843
|
|
|
826
|
-
'@vue/server-renderer@3.5.
|
|
827
|
-
resolution: {integrity: sha512-
|
|
844
|
+
'@vue/server-renderer@3.5.32':
|
|
845
|
+
resolution: {integrity: sha512-IOjm2+JQwRFS7W28HNuJeXQle9KdZbODFY7hFGVtnnghF51ta20EWAZJHX+zLGtsHhaU6uC9BGPV52KVpYryMQ==}
|
|
828
846
|
peerDependencies:
|
|
829
|
-
vue: 3.5.
|
|
847
|
+
vue: 3.5.32
|
|
830
848
|
|
|
831
|
-
'@vue/shared@3.5.
|
|
832
|
-
resolution: {integrity: sha512-
|
|
849
|
+
'@vue/shared@3.5.32':
|
|
850
|
+
resolution: {integrity: sha512-ksNyrmRQzWJJ8n3cRDuSF7zNNontuJg1YHnmWRJd2AMu8Ij2bqwiiri2lH5rHtYPZjj4STkNcgcmiQqlOjiYGg==}
|
|
833
851
|
|
|
834
852
|
'@vue/tsconfig@0.5.1':
|
|
835
853
|
resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==}
|
|
@@ -884,6 +902,9 @@ packages:
|
|
|
884
902
|
ajv@6.14.0:
|
|
885
903
|
resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
|
|
886
904
|
|
|
905
|
+
ajv@8.18.0:
|
|
906
|
+
resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
|
|
907
|
+
|
|
887
908
|
alien-signals@1.0.13:
|
|
888
909
|
resolution: {integrity: sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==}
|
|
889
910
|
|
|
@@ -919,11 +940,14 @@ packages:
|
|
|
919
940
|
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
|
|
920
941
|
engines: {node: '>=8'}
|
|
921
942
|
|
|
943
|
+
async-mutex@0.5.0:
|
|
944
|
+
resolution: {integrity: sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==}
|
|
945
|
+
|
|
922
946
|
async@3.2.6:
|
|
923
947
|
resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
|
|
924
948
|
|
|
925
|
-
autoprefixer@10.
|
|
926
|
-
resolution: {integrity: sha512-
|
|
949
|
+
autoprefixer@10.5.0:
|
|
950
|
+
resolution: {integrity: sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==}
|
|
927
951
|
engines: {node: ^10 || ^12 || >=14}
|
|
928
952
|
hasBin: true
|
|
929
953
|
peerDependencies:
|
|
@@ -932,8 +956,8 @@ packages:
|
|
|
932
956
|
balanced-match@1.0.2:
|
|
933
957
|
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
|
934
958
|
|
|
935
|
-
baseline-browser-mapping@2.10.
|
|
936
|
-
resolution: {integrity: sha512-
|
|
959
|
+
baseline-browser-mapping@2.10.19:
|
|
960
|
+
resolution: {integrity: sha512-qCkNLi2sfBOn8XhZQ0FXsT1Ki/Yo5P90hrkRamVFRS7/KV9hpfA4HkoWNU152+8w0zPjnxo5psx5NL3PSGgv5g==}
|
|
937
961
|
engines: {node: '>=6.0.0'}
|
|
938
962
|
hasBin: true
|
|
939
963
|
|
|
@@ -944,18 +968,18 @@ packages:
|
|
|
944
968
|
boolbase@1.0.0:
|
|
945
969
|
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
|
|
946
970
|
|
|
947
|
-
brace-expansion@1.1.
|
|
948
|
-
resolution: {integrity: sha512-
|
|
971
|
+
brace-expansion@1.1.14:
|
|
972
|
+
resolution: {integrity: sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==}
|
|
949
973
|
|
|
950
|
-
brace-expansion@2.0
|
|
951
|
-
resolution: {integrity: sha512-
|
|
974
|
+
brace-expansion@2.1.0:
|
|
975
|
+
resolution: {integrity: sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==}
|
|
952
976
|
|
|
953
977
|
braces@3.0.3:
|
|
954
978
|
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
|
955
979
|
engines: {node: '>=8'}
|
|
956
980
|
|
|
957
|
-
browserslist@4.28.
|
|
958
|
-
resolution: {integrity: sha512-
|
|
981
|
+
browserslist@4.28.2:
|
|
982
|
+
resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
|
|
959
983
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
960
984
|
hasBin: true
|
|
961
985
|
|
|
@@ -971,8 +995,8 @@ packages:
|
|
|
971
995
|
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
|
|
972
996
|
engines: {node: '>= 6'}
|
|
973
997
|
|
|
974
|
-
caniuse-lite@1.0.
|
|
975
|
-
resolution: {integrity: sha512-
|
|
998
|
+
caniuse-lite@1.0.30001788:
|
|
999
|
+
resolution: {integrity: sha512-6q8HFp+lOQtcf7wBK+uEenxymVWkGKkjFpCvw5W25cmMwEDU45p1xQFBQv8JDlMMry7eNxyBaR+qxgmTUZkIRQ==}
|
|
976
1000
|
|
|
977
1001
|
chalk@4.1.2:
|
|
978
1002
|
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
@@ -1089,8 +1113,8 @@ packages:
|
|
|
1089
1113
|
resolution: {integrity: sha512-xHF8EP4XH/Ba9fvAF2LDd5O3IITVolerVV6xvkxoM8zlGEiCUrggpAnHyOoKJKCrhvPcGATFAUwIujj7bRG5UA==}
|
|
1090
1114
|
hasBin: true
|
|
1091
1115
|
|
|
1092
|
-
electron-to-chromium@1.5.
|
|
1093
|
-
resolution: {integrity: sha512-
|
|
1116
|
+
electron-to-chromium@1.5.336:
|
|
1117
|
+
resolution: {integrity: sha512-AbH9q9J455r/nLmdNZes0G0ZKcRX73FicwowalLs6ijwOmCJSRRrLX63lcAlzy9ux3dWK1w1+1nsBJEWN11hcQ==}
|
|
1094
1118
|
|
|
1095
1119
|
entities@4.5.0:
|
|
1096
1120
|
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
|
|
@@ -1100,6 +1124,10 @@ packages:
|
|
|
1100
1124
|
resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
|
|
1101
1125
|
engines: {node: '>=0.12'}
|
|
1102
1126
|
|
|
1127
|
+
es-errors@1.3.0:
|
|
1128
|
+
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
|
1129
|
+
engines: {node: '>= 0.4'}
|
|
1130
|
+
|
|
1103
1131
|
esbuild@0.21.5:
|
|
1104
1132
|
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
|
|
1105
1133
|
engines: {node: '>=12'}
|
|
@@ -1169,6 +1197,9 @@ packages:
|
|
|
1169
1197
|
fast-levenshtein@2.0.6:
|
|
1170
1198
|
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
|
1171
1199
|
|
|
1200
|
+
fast-uri@3.1.0:
|
|
1201
|
+
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
|
|
1202
|
+
|
|
1172
1203
|
fastq@1.20.1:
|
|
1173
1204
|
resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
|
|
1174
1205
|
|
|
@@ -1364,6 +1395,9 @@ packages:
|
|
|
1364
1395
|
json-schema-traverse@0.4.1:
|
|
1365
1396
|
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
|
1366
1397
|
|
|
1398
|
+
json-schema-traverse@1.0.0:
|
|
1399
|
+
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
|
|
1400
|
+
|
|
1367
1401
|
json-stable-stringify-without-jsonify@1.0.1:
|
|
1368
1402
|
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
|
1369
1403
|
|
|
@@ -1385,11 +1419,14 @@ packages:
|
|
|
1385
1419
|
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
1386
1420
|
engines: {node: '>=10'}
|
|
1387
1421
|
|
|
1422
|
+
lodash.debounce@4.0.8:
|
|
1423
|
+
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
|
|
1424
|
+
|
|
1388
1425
|
lodash.merge@4.6.2:
|
|
1389
1426
|
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
1390
1427
|
|
|
1391
|
-
lodash@4.
|
|
1392
|
-
resolution: {integrity: sha512-
|
|
1428
|
+
lodash@4.18.1:
|
|
1429
|
+
resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==}
|
|
1393
1430
|
|
|
1394
1431
|
magic-string@0.30.21:
|
|
1395
1432
|
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
@@ -1441,8 +1478,8 @@ packages:
|
|
|
1441
1478
|
node-addon-api@7.1.1:
|
|
1442
1479
|
resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
|
|
1443
1480
|
|
|
1444
|
-
node-releases@2.0.
|
|
1445
|
-
resolution: {integrity: sha512-
|
|
1481
|
+
node-releases@2.0.37:
|
|
1482
|
+
resolution: {integrity: sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==}
|
|
1446
1483
|
|
|
1447
1484
|
normalize-path@3.0.0:
|
|
1448
1485
|
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
|
|
@@ -1599,8 +1636,8 @@ packages:
|
|
|
1599
1636
|
postcss-value-parser@4.2.0:
|
|
1600
1637
|
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
|
1601
1638
|
|
|
1602
|
-
postcss@8.5.
|
|
1603
|
-
resolution: {integrity: sha512-
|
|
1639
|
+
postcss@8.5.9:
|
|
1640
|
+
resolution: {integrity: sha512-7a70Nsot+EMX9fFU3064K/kdHWZqGVY+BADLyXc8Dfv+mTLLVl6JzJpPaCZ2kQL9gIJvKXSLMHhqdRRjwQeFtw==}
|
|
1604
1641
|
engines: {node: ^10 || ^12 || >=14}
|
|
1605
1642
|
|
|
1606
1643
|
prelude-ls@1.2.1:
|
|
@@ -1632,12 +1669,16 @@ packages:
|
|
|
1632
1669
|
relative-time-format@1.1.12:
|
|
1633
1670
|
resolution: {integrity: sha512-qaZBjmRIuXLfuLnzgqpFdBPa5W0euSX1tMnoMUHGPphLwJmrt8xbNiOIHrlvYOD6oNJ0M5owPCZyPibI8de5pQ==}
|
|
1634
1671
|
|
|
1672
|
+
require-from-string@2.0.2:
|
|
1673
|
+
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
|
|
1674
|
+
engines: {node: '>=0.10.0'}
|
|
1675
|
+
|
|
1635
1676
|
resolve-from@4.0.0:
|
|
1636
1677
|
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
1637
1678
|
engines: {node: '>=4'}
|
|
1638
1679
|
|
|
1639
|
-
resolve@1.22.
|
|
1640
|
-
resolution: {integrity: sha512-
|
|
1680
|
+
resolve@1.22.12:
|
|
1681
|
+
resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==}
|
|
1641
1682
|
engines: {node: '>= 0.4'}
|
|
1642
1683
|
hasBin: true
|
|
1643
1684
|
|
|
@@ -1650,8 +1691,8 @@ packages:
|
|
|
1650
1691
|
deprecated: Rimraf versions prior to v4 are no longer supported
|
|
1651
1692
|
hasBin: true
|
|
1652
1693
|
|
|
1653
|
-
rollup@4.60.
|
|
1654
|
-
resolution: {integrity: sha512-
|
|
1694
|
+
rollup@4.60.1:
|
|
1695
|
+
resolution: {integrity: sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==}
|
|
1655
1696
|
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
1656
1697
|
hasBin: true
|
|
1657
1698
|
|
|
@@ -1661,8 +1702,8 @@ packages:
|
|
|
1661
1702
|
sanitize-html@2.17.2:
|
|
1662
1703
|
resolution: {integrity: sha512-EnffJUl46VE9uvZ0XeWzObHLurClLlT12gsOk1cHyP2Ol1P0BnBnsXmShlBmWVJM+dKieQI68R0tsPY5m/B+Jg==}
|
|
1663
1704
|
|
|
1664
|
-
sass@1.
|
|
1665
|
-
resolution: {integrity: sha512
|
|
1705
|
+
sass@1.99.0:
|
|
1706
|
+
resolution: {integrity: sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q==}
|
|
1666
1707
|
engines: {node: '>=14.0.0'}
|
|
1667
1708
|
hasBin: true
|
|
1668
1709
|
|
|
@@ -1733,8 +1774,8 @@ packages:
|
|
|
1733
1774
|
tiny-emitter@2.1.0:
|
|
1734
1775
|
resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
|
|
1735
1776
|
|
|
1736
|
-
tinyglobby@0.2.
|
|
1737
|
-
resolution: {integrity: sha512-
|
|
1777
|
+
tinyglobby@0.2.16:
|
|
1778
|
+
resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
|
|
1738
1779
|
engines: {node: '>=12.0.0'}
|
|
1739
1780
|
|
|
1740
1781
|
to-regex-range@5.0.1:
|
|
@@ -1750,6 +1791,9 @@ packages:
|
|
|
1750
1791
|
ts-interface-checker@0.1.13:
|
|
1751
1792
|
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
|
|
1752
1793
|
|
|
1794
|
+
tslib@2.8.1:
|
|
1795
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
1796
|
+
|
|
1753
1797
|
type-check@0.4.0:
|
|
1754
1798
|
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
1755
1799
|
engines: {node: '>= 0.8.0'}
|
|
@@ -1862,8 +1906,8 @@ packages:
|
|
|
1862
1906
|
peerDependencies:
|
|
1863
1907
|
vue: ^3.5.16
|
|
1864
1908
|
|
|
1865
|
-
vue@3.5.
|
|
1866
|
-
resolution: {integrity: sha512-
|
|
1909
|
+
vue@3.5.32:
|
|
1910
|
+
resolution: {integrity: sha512-vM4z4Q9tTafVfMAK7IVzmxg34rSzTFMyIe0UUEijUCkn9+23lj0WRfA83dg7eQZIUlgOSGrkViIaCfqSAUXsMw==}
|
|
1867
1911
|
peerDependencies:
|
|
1868
1912
|
typescript: '*'
|
|
1869
1913
|
peerDependenciesMeta:
|
|
@@ -2019,21 +2063,21 @@ snapshots:
|
|
|
2019
2063
|
|
|
2020
2064
|
'@humanwhocodes/object-schema@2.0.3': {}
|
|
2021
2065
|
|
|
2022
|
-
'@iconify-prerendered/vue-flag@0.28.1754899047(vue@3.5.
|
|
2066
|
+
'@iconify-prerendered/vue-flag@0.28.1754899047(vue@3.5.32(typescript@5.4.5))':
|
|
2023
2067
|
dependencies:
|
|
2024
|
-
vue: 3.5.
|
|
2068
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
2025
2069
|
|
|
2026
|
-
'@iconify-prerendered/vue-flowbite@0.28.1754899090(vue@3.5.
|
|
2070
|
+
'@iconify-prerendered/vue-flowbite@0.28.1754899090(vue@3.5.32(typescript@5.4.5))':
|
|
2027
2071
|
dependencies:
|
|
2028
|
-
vue: 3.5.
|
|
2072
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
2029
2073
|
|
|
2030
|
-
'@iconify-prerendered/vue-heroicons@0.28.1721921294(vue@3.5.
|
|
2074
|
+
'@iconify-prerendered/vue-heroicons@0.28.1721921294(vue@3.5.32(typescript@5.4.5))':
|
|
2031
2075
|
dependencies:
|
|
2032
|
-
vue: 3.5.
|
|
2076
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
2033
2077
|
|
|
2034
|
-
'@iconify-prerendered/vue-humbleicons@0.28.1754108846(vue@3.5.
|
|
2078
|
+
'@iconify-prerendered/vue-humbleicons@0.28.1754108846(vue@3.5.32(typescript@5.4.5))':
|
|
2035
2079
|
dependencies:
|
|
2036
|
-
vue: 3.5.
|
|
2080
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
2037
2081
|
|
|
2038
2082
|
'@intlify/core-base@10.0.8':
|
|
2039
2083
|
dependencies:
|
|
@@ -2136,97 +2180,97 @@ snapshots:
|
|
|
2136
2180
|
|
|
2137
2181
|
'@popperjs/core@2.11.8': {}
|
|
2138
2182
|
|
|
2139
|
-
'@rollup/plugin-node-resolve@15.3.1(rollup@4.60.
|
|
2183
|
+
'@rollup/plugin-node-resolve@15.3.1(rollup@4.60.1)':
|
|
2140
2184
|
dependencies:
|
|
2141
|
-
'@rollup/pluginutils': 5.3.0(rollup@4.60.
|
|
2185
|
+
'@rollup/pluginutils': 5.3.0(rollup@4.60.1)
|
|
2142
2186
|
'@types/resolve': 1.20.2
|
|
2143
2187
|
deepmerge: 4.3.1
|
|
2144
2188
|
is-module: 1.0.0
|
|
2145
|
-
resolve: 1.22.
|
|
2189
|
+
resolve: 1.22.12
|
|
2146
2190
|
optionalDependencies:
|
|
2147
|
-
rollup: 4.60.
|
|
2191
|
+
rollup: 4.60.1
|
|
2148
2192
|
|
|
2149
|
-
'@rollup/pluginutils@5.3.0(rollup@4.60.
|
|
2193
|
+
'@rollup/pluginutils@5.3.0(rollup@4.60.1)':
|
|
2150
2194
|
dependencies:
|
|
2151
2195
|
'@types/estree': 1.0.8
|
|
2152
2196
|
estree-walker: 2.0.2
|
|
2153
2197
|
picomatch: 4.0.4
|
|
2154
2198
|
optionalDependencies:
|
|
2155
|
-
rollup: 4.60.
|
|
2199
|
+
rollup: 4.60.1
|
|
2156
2200
|
|
|
2157
|
-
'@rollup/rollup-android-arm-eabi@4.60.
|
|
2201
|
+
'@rollup/rollup-android-arm-eabi@4.60.1':
|
|
2158
2202
|
optional: true
|
|
2159
2203
|
|
|
2160
|
-
'@rollup/rollup-android-arm64@4.60.
|
|
2204
|
+
'@rollup/rollup-android-arm64@4.60.1':
|
|
2161
2205
|
optional: true
|
|
2162
2206
|
|
|
2163
|
-
'@rollup/rollup-darwin-arm64@4.60.
|
|
2207
|
+
'@rollup/rollup-darwin-arm64@4.60.1':
|
|
2164
2208
|
optional: true
|
|
2165
2209
|
|
|
2166
|
-
'@rollup/rollup-darwin-x64@4.60.
|
|
2210
|
+
'@rollup/rollup-darwin-x64@4.60.1':
|
|
2167
2211
|
optional: true
|
|
2168
2212
|
|
|
2169
|
-
'@rollup/rollup-freebsd-arm64@4.60.
|
|
2213
|
+
'@rollup/rollup-freebsd-arm64@4.60.1':
|
|
2170
2214
|
optional: true
|
|
2171
2215
|
|
|
2172
|
-
'@rollup/rollup-freebsd-x64@4.60.
|
|
2216
|
+
'@rollup/rollup-freebsd-x64@4.60.1':
|
|
2173
2217
|
optional: true
|
|
2174
2218
|
|
|
2175
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.60.
|
|
2219
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.60.1':
|
|
2176
2220
|
optional: true
|
|
2177
2221
|
|
|
2178
|
-
'@rollup/rollup-linux-arm-musleabihf@4.60.
|
|
2222
|
+
'@rollup/rollup-linux-arm-musleabihf@4.60.1':
|
|
2179
2223
|
optional: true
|
|
2180
2224
|
|
|
2181
|
-
'@rollup/rollup-linux-arm64-gnu@4.60.
|
|
2225
|
+
'@rollup/rollup-linux-arm64-gnu@4.60.1':
|
|
2182
2226
|
optional: true
|
|
2183
2227
|
|
|
2184
|
-
'@rollup/rollup-linux-arm64-musl@4.60.
|
|
2228
|
+
'@rollup/rollup-linux-arm64-musl@4.60.1':
|
|
2185
2229
|
optional: true
|
|
2186
2230
|
|
|
2187
|
-
'@rollup/rollup-linux-loong64-gnu@4.60.
|
|
2231
|
+
'@rollup/rollup-linux-loong64-gnu@4.60.1':
|
|
2188
2232
|
optional: true
|
|
2189
2233
|
|
|
2190
|
-
'@rollup/rollup-linux-loong64-musl@4.60.
|
|
2234
|
+
'@rollup/rollup-linux-loong64-musl@4.60.1':
|
|
2191
2235
|
optional: true
|
|
2192
2236
|
|
|
2193
|
-
'@rollup/rollup-linux-ppc64-gnu@4.60.
|
|
2237
|
+
'@rollup/rollup-linux-ppc64-gnu@4.60.1':
|
|
2194
2238
|
optional: true
|
|
2195
2239
|
|
|
2196
|
-
'@rollup/rollup-linux-ppc64-musl@4.60.
|
|
2240
|
+
'@rollup/rollup-linux-ppc64-musl@4.60.1':
|
|
2197
2241
|
optional: true
|
|
2198
2242
|
|
|
2199
|
-
'@rollup/rollup-linux-riscv64-gnu@4.60.
|
|
2243
|
+
'@rollup/rollup-linux-riscv64-gnu@4.60.1':
|
|
2200
2244
|
optional: true
|
|
2201
2245
|
|
|
2202
|
-
'@rollup/rollup-linux-riscv64-musl@4.60.
|
|
2246
|
+
'@rollup/rollup-linux-riscv64-musl@4.60.1':
|
|
2203
2247
|
optional: true
|
|
2204
2248
|
|
|
2205
|
-
'@rollup/rollup-linux-s390x-gnu@4.60.
|
|
2249
|
+
'@rollup/rollup-linux-s390x-gnu@4.60.1':
|
|
2206
2250
|
optional: true
|
|
2207
2251
|
|
|
2208
|
-
'@rollup/rollup-linux-x64-gnu@4.60.
|
|
2252
|
+
'@rollup/rollup-linux-x64-gnu@4.60.1':
|
|
2209
2253
|
optional: true
|
|
2210
2254
|
|
|
2211
|
-
'@rollup/rollup-linux-x64-musl@4.60.
|
|
2255
|
+
'@rollup/rollup-linux-x64-musl@4.60.1':
|
|
2212
2256
|
optional: true
|
|
2213
2257
|
|
|
2214
|
-
'@rollup/rollup-openbsd-x64@4.60.
|
|
2258
|
+
'@rollup/rollup-openbsd-x64@4.60.1':
|
|
2215
2259
|
optional: true
|
|
2216
2260
|
|
|
2217
|
-
'@rollup/rollup-openharmony-arm64@4.60.
|
|
2261
|
+
'@rollup/rollup-openharmony-arm64@4.60.1':
|
|
2218
2262
|
optional: true
|
|
2219
2263
|
|
|
2220
|
-
'@rollup/rollup-win32-arm64-msvc@4.60.
|
|
2264
|
+
'@rollup/rollup-win32-arm64-msvc@4.60.1':
|
|
2221
2265
|
optional: true
|
|
2222
2266
|
|
|
2223
|
-
'@rollup/rollup-win32-ia32-msvc@4.60.
|
|
2267
|
+
'@rollup/rollup-win32-ia32-msvc@4.60.1':
|
|
2224
2268
|
optional: true
|
|
2225
2269
|
|
|
2226
|
-
'@rollup/rollup-win32-x64-gnu@4.60.
|
|
2270
|
+
'@rollup/rollup-win32-x64-gnu@4.60.1':
|
|
2227
2271
|
optional: true
|
|
2228
2272
|
|
|
2229
|
-
'@rollup/rollup-win32-x64-msvc@4.60.
|
|
2273
|
+
'@rollup/rollup-win32-x64-msvc@4.60.1':
|
|
2230
2274
|
optional: true
|
|
2231
2275
|
|
|
2232
2276
|
'@rushstack/eslint-patch@1.16.1': {}
|
|
@@ -2259,7 +2303,13 @@ snapshots:
|
|
|
2259
2303
|
|
|
2260
2304
|
'@types/estree@1.0.8': {}
|
|
2261
2305
|
|
|
2262
|
-
'@types/
|
|
2306
|
+
'@types/lodash.debounce@4.0.9':
|
|
2307
|
+
dependencies:
|
|
2308
|
+
'@types/lodash': 4.17.24
|
|
2309
|
+
|
|
2310
|
+
'@types/lodash@4.17.24': {}
|
|
2311
|
+
|
|
2312
|
+
'@types/node@20.19.39':
|
|
2263
2313
|
dependencies:
|
|
2264
2314
|
undici-types: 6.21.0
|
|
2265
2315
|
|
|
@@ -2371,18 +2421,18 @@ snapshots:
|
|
|
2371
2421
|
'@unhead/schema': 1.11.20
|
|
2372
2422
|
packrup: 0.1.2
|
|
2373
2423
|
|
|
2374
|
-
'@unhead/vue@1.11.20(vue@3.5.
|
|
2424
|
+
'@unhead/vue@1.11.20(vue@3.5.32(typescript@5.4.5))':
|
|
2375
2425
|
dependencies:
|
|
2376
2426
|
'@unhead/schema': 1.11.20
|
|
2377
2427
|
'@unhead/shared': 1.11.20
|
|
2378
2428
|
hookable: 5.5.3
|
|
2379
2429
|
unhead: 1.11.20
|
|
2380
|
-
vue: 3.5.
|
|
2430
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
2381
2431
|
|
|
2382
|
-
'@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@20.19.
|
|
2432
|
+
'@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@20.19.39)(sass@1.99.0))(vue@3.5.32(typescript@5.4.5))':
|
|
2383
2433
|
dependencies:
|
|
2384
|
-
vite: 5.4.21(@types/node@20.19.
|
|
2385
|
-
vue: 3.5.
|
|
2434
|
+
vite: 5.4.21(@types/node@20.19.39)(sass@1.99.0)
|
|
2435
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
2386
2436
|
|
|
2387
2437
|
'@volar/language-core@2.4.15':
|
|
2388
2438
|
dependencies:
|
|
@@ -2396,35 +2446,35 @@ snapshots:
|
|
|
2396
2446
|
path-browserify: 1.0.1
|
|
2397
2447
|
vscode-uri: 3.1.0
|
|
2398
2448
|
|
|
2399
|
-
'@vue/compiler-core@3.5.
|
|
2449
|
+
'@vue/compiler-core@3.5.32':
|
|
2400
2450
|
dependencies:
|
|
2401
2451
|
'@babel/parser': 7.29.2
|
|
2402
|
-
'@vue/shared': 3.5.
|
|
2452
|
+
'@vue/shared': 3.5.32
|
|
2403
2453
|
entities: 7.0.1
|
|
2404
2454
|
estree-walker: 2.0.2
|
|
2405
2455
|
source-map-js: 1.2.1
|
|
2406
2456
|
|
|
2407
|
-
'@vue/compiler-dom@3.5.
|
|
2457
|
+
'@vue/compiler-dom@3.5.32':
|
|
2408
2458
|
dependencies:
|
|
2409
|
-
'@vue/compiler-core': 3.5.
|
|
2410
|
-
'@vue/shared': 3.5.
|
|
2459
|
+
'@vue/compiler-core': 3.5.32
|
|
2460
|
+
'@vue/shared': 3.5.32
|
|
2411
2461
|
|
|
2412
|
-
'@vue/compiler-sfc@3.5.
|
|
2462
|
+
'@vue/compiler-sfc@3.5.32':
|
|
2413
2463
|
dependencies:
|
|
2414
2464
|
'@babel/parser': 7.29.2
|
|
2415
|
-
'@vue/compiler-core': 3.5.
|
|
2416
|
-
'@vue/compiler-dom': 3.5.
|
|
2417
|
-
'@vue/compiler-ssr': 3.5.
|
|
2418
|
-
'@vue/shared': 3.5.
|
|
2465
|
+
'@vue/compiler-core': 3.5.32
|
|
2466
|
+
'@vue/compiler-dom': 3.5.32
|
|
2467
|
+
'@vue/compiler-ssr': 3.5.32
|
|
2468
|
+
'@vue/shared': 3.5.32
|
|
2419
2469
|
estree-walker: 2.0.2
|
|
2420
2470
|
magic-string: 0.30.21
|
|
2421
|
-
postcss: 8.5.
|
|
2471
|
+
postcss: 8.5.9
|
|
2422
2472
|
source-map-js: 1.2.1
|
|
2423
2473
|
|
|
2424
|
-
'@vue/compiler-ssr@3.5.
|
|
2474
|
+
'@vue/compiler-ssr@3.5.32':
|
|
2425
2475
|
dependencies:
|
|
2426
|
-
'@vue/compiler-dom': 3.5.
|
|
2427
|
-
'@vue/shared': 3.5.
|
|
2476
|
+
'@vue/compiler-dom': 3.5.32
|
|
2477
|
+
'@vue/shared': 3.5.32
|
|
2428
2478
|
|
|
2429
2479
|
'@vue/compiler-vue2@2.7.16':
|
|
2430
2480
|
dependencies:
|
|
@@ -2448,9 +2498,9 @@ snapshots:
|
|
|
2448
2498
|
'@vue/language-core@2.2.12(typescript@5.4.5)':
|
|
2449
2499
|
dependencies:
|
|
2450
2500
|
'@volar/language-core': 2.4.15
|
|
2451
|
-
'@vue/compiler-dom': 3.5.
|
|
2501
|
+
'@vue/compiler-dom': 3.5.32
|
|
2452
2502
|
'@vue/compiler-vue2': 2.7.16
|
|
2453
|
-
'@vue/shared': 3.5.
|
|
2503
|
+
'@vue/shared': 3.5.32
|
|
2454
2504
|
alien-signals: 1.0.13
|
|
2455
2505
|
minimatch: 9.0.9
|
|
2456
2506
|
muggle-string: 0.4.1
|
|
@@ -2458,67 +2508,67 @@ snapshots:
|
|
|
2458
2508
|
optionalDependencies:
|
|
2459
2509
|
typescript: 5.4.5
|
|
2460
2510
|
|
|
2461
|
-
'@vue/reactivity@3.5.
|
|
2511
|
+
'@vue/reactivity@3.5.32':
|
|
2462
2512
|
dependencies:
|
|
2463
|
-
'@vue/shared': 3.5.
|
|
2513
|
+
'@vue/shared': 3.5.32
|
|
2464
2514
|
|
|
2465
|
-
'@vue/runtime-core@3.5.
|
|
2515
|
+
'@vue/runtime-core@3.5.32':
|
|
2466
2516
|
dependencies:
|
|
2467
|
-
'@vue/reactivity': 3.5.
|
|
2468
|
-
'@vue/shared': 3.5.
|
|
2517
|
+
'@vue/reactivity': 3.5.32
|
|
2518
|
+
'@vue/shared': 3.5.32
|
|
2469
2519
|
|
|
2470
|
-
'@vue/runtime-dom@3.5.
|
|
2520
|
+
'@vue/runtime-dom@3.5.32':
|
|
2471
2521
|
dependencies:
|
|
2472
|
-
'@vue/reactivity': 3.5.
|
|
2473
|
-
'@vue/runtime-core': 3.5.
|
|
2474
|
-
'@vue/shared': 3.5.
|
|
2522
|
+
'@vue/reactivity': 3.5.32
|
|
2523
|
+
'@vue/runtime-core': 3.5.32
|
|
2524
|
+
'@vue/shared': 3.5.32
|
|
2475
2525
|
csstype: 3.2.3
|
|
2476
2526
|
|
|
2477
|
-
'@vue/server-renderer@3.5.
|
|
2527
|
+
'@vue/server-renderer@3.5.32(vue@3.5.32(typescript@5.4.5))':
|
|
2478
2528
|
dependencies:
|
|
2479
|
-
'@vue/compiler-ssr': 3.5.
|
|
2480
|
-
'@vue/shared': 3.5.
|
|
2481
|
-
vue: 3.5.
|
|
2529
|
+
'@vue/compiler-ssr': 3.5.32
|
|
2530
|
+
'@vue/shared': 3.5.32
|
|
2531
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
2482
2532
|
|
|
2483
|
-
'@vue/shared@3.5.
|
|
2533
|
+
'@vue/shared@3.5.32': {}
|
|
2484
2534
|
|
|
2485
2535
|
'@vue/tsconfig@0.5.1': {}
|
|
2486
2536
|
|
|
2487
|
-
'@vueuse/core@10.11.1(vue@3.5.
|
|
2537
|
+
'@vueuse/core@10.11.1(vue@3.5.32(typescript@5.4.5))':
|
|
2488
2538
|
dependencies:
|
|
2489
2539
|
'@types/web-bluetooth': 0.0.20
|
|
2490
2540
|
'@vueuse/metadata': 10.11.1
|
|
2491
|
-
'@vueuse/shared': 10.11.1(vue@3.5.
|
|
2492
|
-
vue-demi: 0.14.10(vue@3.5.
|
|
2541
|
+
'@vueuse/shared': 10.11.1(vue@3.5.32(typescript@5.4.5))
|
|
2542
|
+
vue-demi: 0.14.10(vue@3.5.32(typescript@5.4.5))
|
|
2493
2543
|
transitivePeerDependencies:
|
|
2494
2544
|
- '@vue/composition-api'
|
|
2495
2545
|
- vue
|
|
2496
2546
|
|
|
2497
|
-
'@vueuse/core@8.9.4(vue@3.5.
|
|
2547
|
+
'@vueuse/core@8.9.4(vue@3.5.32(typescript@5.4.5))':
|
|
2498
2548
|
dependencies:
|
|
2499
2549
|
'@types/web-bluetooth': 0.0.14
|
|
2500
2550
|
'@vueuse/metadata': 8.9.4
|
|
2501
|
-
'@vueuse/shared': 8.9.4(vue@3.5.
|
|
2502
|
-
vue-demi: 0.14.10(vue@3.5.
|
|
2551
|
+
'@vueuse/shared': 8.9.4(vue@3.5.32(typescript@5.4.5))
|
|
2552
|
+
vue-demi: 0.14.10(vue@3.5.32(typescript@5.4.5))
|
|
2503
2553
|
optionalDependencies:
|
|
2504
|
-
vue: 3.5.
|
|
2554
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
2505
2555
|
|
|
2506
2556
|
'@vueuse/metadata@10.11.1': {}
|
|
2507
2557
|
|
|
2508
2558
|
'@vueuse/metadata@8.9.4': {}
|
|
2509
2559
|
|
|
2510
|
-
'@vueuse/shared@10.11.1(vue@3.5.
|
|
2560
|
+
'@vueuse/shared@10.11.1(vue@3.5.32(typescript@5.4.5))':
|
|
2511
2561
|
dependencies:
|
|
2512
|
-
vue-demi: 0.14.10(vue@3.5.
|
|
2562
|
+
vue-demi: 0.14.10(vue@3.5.32(typescript@5.4.5))
|
|
2513
2563
|
transitivePeerDependencies:
|
|
2514
2564
|
- '@vue/composition-api'
|
|
2515
2565
|
- vue
|
|
2516
2566
|
|
|
2517
|
-
'@vueuse/shared@8.9.4(vue@3.5.
|
|
2567
|
+
'@vueuse/shared@8.9.4(vue@3.5.32(typescript@5.4.5))':
|
|
2518
2568
|
dependencies:
|
|
2519
|
-
vue-demi: 0.14.10(vue@3.5.
|
|
2569
|
+
vue-demi: 0.14.10(vue@3.5.32(typescript@5.4.5))
|
|
2520
2570
|
optionalDependencies:
|
|
2521
|
-
vue: 3.5.
|
|
2571
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
2522
2572
|
|
|
2523
2573
|
'@yr/monotone-cubic-spline@1.0.3': {}
|
|
2524
2574
|
|
|
@@ -2535,6 +2585,13 @@ snapshots:
|
|
|
2535
2585
|
json-schema-traverse: 0.4.1
|
|
2536
2586
|
uri-js: 4.4.1
|
|
2537
2587
|
|
|
2588
|
+
ajv@8.18.0:
|
|
2589
|
+
dependencies:
|
|
2590
|
+
fast-deep-equal: 3.1.3
|
|
2591
|
+
fast-uri: 3.1.0
|
|
2592
|
+
json-schema-traverse: 1.0.0
|
|
2593
|
+
require-from-string: 2.0.2
|
|
2594
|
+
|
|
2538
2595
|
alien-signals@1.0.13: {}
|
|
2539
2596
|
|
|
2540
2597
|
ansi-regex@5.0.1: {}
|
|
@@ -2567,31 +2624,35 @@ snapshots:
|
|
|
2567
2624
|
|
|
2568
2625
|
array-union@2.1.0: {}
|
|
2569
2626
|
|
|
2627
|
+
async-mutex@0.5.0:
|
|
2628
|
+
dependencies:
|
|
2629
|
+
tslib: 2.8.1
|
|
2630
|
+
|
|
2570
2631
|
async@3.2.6: {}
|
|
2571
2632
|
|
|
2572
|
-
autoprefixer@10.
|
|
2633
|
+
autoprefixer@10.5.0(postcss@8.5.9):
|
|
2573
2634
|
dependencies:
|
|
2574
|
-
browserslist: 4.28.
|
|
2575
|
-
caniuse-lite: 1.0.
|
|
2635
|
+
browserslist: 4.28.2
|
|
2636
|
+
caniuse-lite: 1.0.30001788
|
|
2576
2637
|
fraction.js: 5.3.4
|
|
2577
2638
|
picocolors: 1.1.1
|
|
2578
|
-
postcss: 8.5.
|
|
2639
|
+
postcss: 8.5.9
|
|
2579
2640
|
postcss-value-parser: 4.2.0
|
|
2580
2641
|
|
|
2581
2642
|
balanced-match@1.0.2: {}
|
|
2582
2643
|
|
|
2583
|
-
baseline-browser-mapping@2.10.
|
|
2644
|
+
baseline-browser-mapping@2.10.19: {}
|
|
2584
2645
|
|
|
2585
2646
|
binary-extensions@2.3.0: {}
|
|
2586
2647
|
|
|
2587
2648
|
boolbase@1.0.0: {}
|
|
2588
2649
|
|
|
2589
|
-
brace-expansion@1.1.
|
|
2650
|
+
brace-expansion@1.1.14:
|
|
2590
2651
|
dependencies:
|
|
2591
2652
|
balanced-match: 1.0.2
|
|
2592
2653
|
concat-map: 0.0.1
|
|
2593
2654
|
|
|
2594
|
-
brace-expansion@2.0
|
|
2655
|
+
brace-expansion@2.1.0:
|
|
2595
2656
|
dependencies:
|
|
2596
2657
|
balanced-match: 1.0.2
|
|
2597
2658
|
|
|
@@ -2599,13 +2660,13 @@ snapshots:
|
|
|
2599
2660
|
dependencies:
|
|
2600
2661
|
fill-range: 7.1.1
|
|
2601
2662
|
|
|
2602
|
-
browserslist@4.28.
|
|
2663
|
+
browserslist@4.28.2:
|
|
2603
2664
|
dependencies:
|
|
2604
|
-
baseline-browser-mapping: 2.10.
|
|
2605
|
-
caniuse-lite: 1.0.
|
|
2606
|
-
electron-to-chromium: 1.5.
|
|
2607
|
-
node-releases: 2.0.
|
|
2608
|
-
update-browserslist-db: 1.2.3(browserslist@4.28.
|
|
2665
|
+
baseline-browser-mapping: 2.10.19
|
|
2666
|
+
caniuse-lite: 1.0.30001788
|
|
2667
|
+
electron-to-chromium: 1.5.336
|
|
2668
|
+
node-releases: 2.0.37
|
|
2669
|
+
update-browserslist-db: 1.2.3(browserslist@4.28.2)
|
|
2609
2670
|
|
|
2610
2671
|
cac@6.7.14: {}
|
|
2611
2672
|
|
|
@@ -2613,7 +2674,7 @@ snapshots:
|
|
|
2613
2674
|
|
|
2614
2675
|
camelcase-css@2.0.1: {}
|
|
2615
2676
|
|
|
2616
|
-
caniuse-lite@1.0.
|
|
2677
|
+
caniuse-lite@1.0.30001788: {}
|
|
2617
2678
|
|
|
2618
2679
|
chalk@4.1.2:
|
|
2619
2680
|
dependencies:
|
|
@@ -2722,12 +2783,14 @@ snapshots:
|
|
|
2722
2783
|
commander: 6.2.1
|
|
2723
2784
|
glob: 7.2.3
|
|
2724
2785
|
|
|
2725
|
-
electron-to-chromium@1.5.
|
|
2786
|
+
electron-to-chromium@1.5.336: {}
|
|
2726
2787
|
|
|
2727
2788
|
entities@4.5.0: {}
|
|
2728
2789
|
|
|
2729
2790
|
entities@7.0.1: {}
|
|
2730
2791
|
|
|
2792
|
+
es-errors@1.3.0: {}
|
|
2793
|
+
|
|
2731
2794
|
esbuild@0.21.5:
|
|
2732
2795
|
optionalDependencies:
|
|
2733
2796
|
'@esbuild/aix-ppc64': 0.21.5
|
|
@@ -2856,6 +2919,8 @@ snapshots:
|
|
|
2856
2919
|
|
|
2857
2920
|
fast-levenshtein@2.0.6: {}
|
|
2858
2921
|
|
|
2922
|
+
fast-uri@3.1.0: {}
|
|
2923
|
+
|
|
2859
2924
|
fastq@1.20.1:
|
|
2860
2925
|
dependencies:
|
|
2861
2926
|
reusify: 1.1.0
|
|
@@ -2887,27 +2952,27 @@ snapshots:
|
|
|
2887
2952
|
|
|
2888
2953
|
flatted@3.4.2: {}
|
|
2889
2954
|
|
|
2890
|
-
flowbite-datepicker@1.3.2(rollup@4.60.
|
|
2955
|
+
flowbite-datepicker@1.3.2(rollup@4.60.1):
|
|
2891
2956
|
dependencies:
|
|
2892
|
-
'@rollup/plugin-node-resolve': 15.3.1(rollup@4.60.
|
|
2893
|
-
flowbite: 2.5.2(rollup@4.60.
|
|
2957
|
+
'@rollup/plugin-node-resolve': 15.3.1(rollup@4.60.1)
|
|
2958
|
+
flowbite: 2.5.2(rollup@4.60.1)
|
|
2894
2959
|
transitivePeerDependencies:
|
|
2895
2960
|
- rollup
|
|
2896
2961
|
|
|
2897
|
-
flowbite@2.5.2(rollup@4.60.
|
|
2962
|
+
flowbite@2.5.2(rollup@4.60.1):
|
|
2898
2963
|
dependencies:
|
|
2899
2964
|
'@popperjs/core': 2.11.8
|
|
2900
|
-
flowbite-datepicker: 1.3.2(rollup@4.60.
|
|
2965
|
+
flowbite-datepicker: 1.3.2(rollup@4.60.1)
|
|
2901
2966
|
mini-svg-data-uri: 1.4.4
|
|
2902
2967
|
transitivePeerDependencies:
|
|
2903
2968
|
- rollup
|
|
2904
2969
|
|
|
2905
|
-
flowbite@3.1.2(rollup@4.60.
|
|
2970
|
+
flowbite@3.1.2(rollup@4.60.1):
|
|
2906
2971
|
dependencies:
|
|
2907
2972
|
'@popperjs/core': 2.11.8
|
|
2908
|
-
flowbite-datepicker: 1.3.2(rollup@4.60.
|
|
2973
|
+
flowbite-datepicker: 1.3.2(rollup@4.60.1)
|
|
2909
2974
|
mini-svg-data-uri: 1.4.4
|
|
2910
|
-
postcss: 8.5.
|
|
2975
|
+
postcss: 8.5.9
|
|
2911
2976
|
transitivePeerDependencies:
|
|
2912
2977
|
- rollup
|
|
2913
2978
|
|
|
@@ -3047,6 +3112,8 @@ snapshots:
|
|
|
3047
3112
|
|
|
3048
3113
|
json-schema-traverse@0.4.1: {}
|
|
3049
3114
|
|
|
3115
|
+
json-schema-traverse@1.0.0: {}
|
|
3116
|
+
|
|
3050
3117
|
json-stable-stringify-without-jsonify@1.0.1: {}
|
|
3051
3118
|
|
|
3052
3119
|
keyv@4.5.4:
|
|
@@ -3066,9 +3133,11 @@ snapshots:
|
|
|
3066
3133
|
dependencies:
|
|
3067
3134
|
p-locate: 5.0.0
|
|
3068
3135
|
|
|
3136
|
+
lodash.debounce@4.0.8: {}
|
|
3137
|
+
|
|
3069
3138
|
lodash.merge@4.6.2: {}
|
|
3070
3139
|
|
|
3071
|
-
lodash@4.
|
|
3140
|
+
lodash@4.18.1: {}
|
|
3072
3141
|
|
|
3073
3142
|
magic-string@0.30.21:
|
|
3074
3143
|
dependencies:
|
|
@@ -3087,15 +3156,15 @@ snapshots:
|
|
|
3087
3156
|
|
|
3088
3157
|
minimatch@3.1.5:
|
|
3089
3158
|
dependencies:
|
|
3090
|
-
brace-expansion: 1.1.
|
|
3159
|
+
brace-expansion: 1.1.14
|
|
3091
3160
|
|
|
3092
3161
|
minimatch@5.1.9:
|
|
3093
3162
|
dependencies:
|
|
3094
|
-
brace-expansion: 2.0
|
|
3163
|
+
brace-expansion: 2.1.0
|
|
3095
3164
|
|
|
3096
3165
|
minimatch@9.0.9:
|
|
3097
3166
|
dependencies:
|
|
3098
|
-
brace-expansion: 2.0
|
|
3167
|
+
brace-expansion: 2.1.0
|
|
3099
3168
|
|
|
3100
3169
|
ms@2.1.3: {}
|
|
3101
3170
|
|
|
@@ -3114,7 +3183,7 @@ snapshots:
|
|
|
3114
3183
|
node-addon-api@7.1.1:
|
|
3115
3184
|
optional: true
|
|
3116
3185
|
|
|
3117
|
-
node-releases@2.0.
|
|
3186
|
+
node-releases@2.0.37: {}
|
|
3118
3187
|
|
|
3119
3188
|
normalize-path@3.0.0: {}
|
|
3120
3189
|
|
|
@@ -3190,11 +3259,11 @@ snapshots:
|
|
|
3190
3259
|
|
|
3191
3260
|
pify@2.3.0: {}
|
|
3192
3261
|
|
|
3193
|
-
pinia@2.3.1(typescript@5.4.5)(vue@3.5.
|
|
3262
|
+
pinia@2.3.1(typescript@5.4.5)(vue@3.5.32(typescript@5.4.5)):
|
|
3194
3263
|
dependencies:
|
|
3195
3264
|
'@vue/devtools-api': 6.6.4
|
|
3196
|
-
vue: 3.5.
|
|
3197
|
-
vue-demi: 0.14.10(vue@3.5.
|
|
3265
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
3266
|
+
vue-demi: 0.14.10(vue@3.5.32(typescript@5.4.5))
|
|
3198
3267
|
optionalDependencies:
|
|
3199
3268
|
typescript: 5.4.5
|
|
3200
3269
|
transitivePeerDependencies:
|
|
@@ -3209,28 +3278,28 @@ snapshots:
|
|
|
3209
3278
|
transitivePeerDependencies:
|
|
3210
3279
|
- supports-color
|
|
3211
3280
|
|
|
3212
|
-
postcss-import@15.1.0(postcss@8.5.
|
|
3281
|
+
postcss-import@15.1.0(postcss@8.5.9):
|
|
3213
3282
|
dependencies:
|
|
3214
|
-
postcss: 8.5.
|
|
3283
|
+
postcss: 8.5.9
|
|
3215
3284
|
postcss-value-parser: 4.2.0
|
|
3216
3285
|
read-cache: 1.0.0
|
|
3217
|
-
resolve: 1.22.
|
|
3286
|
+
resolve: 1.22.12
|
|
3218
3287
|
|
|
3219
|
-
postcss-js@4.1.0(postcss@8.5.
|
|
3288
|
+
postcss-js@4.1.0(postcss@8.5.9):
|
|
3220
3289
|
dependencies:
|
|
3221
3290
|
camelcase-css: 2.0.1
|
|
3222
|
-
postcss: 8.5.
|
|
3291
|
+
postcss: 8.5.9
|
|
3223
3292
|
|
|
3224
|
-
postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.
|
|
3293
|
+
postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.9):
|
|
3225
3294
|
dependencies:
|
|
3226
3295
|
lilconfig: 3.1.3
|
|
3227
3296
|
optionalDependencies:
|
|
3228
3297
|
jiti: 1.21.7
|
|
3229
|
-
postcss: 8.5.
|
|
3298
|
+
postcss: 8.5.9
|
|
3230
3299
|
|
|
3231
|
-
postcss-nested@6.2.0(postcss@8.5.
|
|
3300
|
+
postcss-nested@6.2.0(postcss@8.5.9):
|
|
3232
3301
|
dependencies:
|
|
3233
|
-
postcss: 8.5.
|
|
3302
|
+
postcss: 8.5.9
|
|
3234
3303
|
postcss-selector-parser: 6.1.2
|
|
3235
3304
|
|
|
3236
3305
|
postcss-selector-parser@6.0.10:
|
|
@@ -3245,7 +3314,7 @@ snapshots:
|
|
|
3245
3314
|
|
|
3246
3315
|
postcss-value-parser@4.2.0: {}
|
|
3247
3316
|
|
|
3248
|
-
postcss@8.5.
|
|
3317
|
+
postcss@8.5.9:
|
|
3249
3318
|
dependencies:
|
|
3250
3319
|
nanoid: 3.3.11
|
|
3251
3320
|
picocolors: 1.1.1
|
|
@@ -3274,10 +3343,13 @@ snapshots:
|
|
|
3274
3343
|
|
|
3275
3344
|
relative-time-format@1.1.12: {}
|
|
3276
3345
|
|
|
3346
|
+
require-from-string@2.0.2: {}
|
|
3347
|
+
|
|
3277
3348
|
resolve-from@4.0.0: {}
|
|
3278
3349
|
|
|
3279
|
-
resolve@1.22.
|
|
3350
|
+
resolve@1.22.12:
|
|
3280
3351
|
dependencies:
|
|
3352
|
+
es-errors: 1.3.0
|
|
3281
3353
|
is-core-module: 2.16.1
|
|
3282
3354
|
path-parse: 1.0.7
|
|
3283
3355
|
supports-preserve-symlinks-flag: 1.0.0
|
|
@@ -3288,35 +3360,35 @@ snapshots:
|
|
|
3288
3360
|
dependencies:
|
|
3289
3361
|
glob: 7.2.3
|
|
3290
3362
|
|
|
3291
|
-
rollup@4.60.
|
|
3363
|
+
rollup@4.60.1:
|
|
3292
3364
|
dependencies:
|
|
3293
3365
|
'@types/estree': 1.0.8
|
|
3294
3366
|
optionalDependencies:
|
|
3295
|
-
'@rollup/rollup-android-arm-eabi': 4.60.
|
|
3296
|
-
'@rollup/rollup-android-arm64': 4.60.
|
|
3297
|
-
'@rollup/rollup-darwin-arm64': 4.60.
|
|
3298
|
-
'@rollup/rollup-darwin-x64': 4.60.
|
|
3299
|
-
'@rollup/rollup-freebsd-arm64': 4.60.
|
|
3300
|
-
'@rollup/rollup-freebsd-x64': 4.60.
|
|
3301
|
-
'@rollup/rollup-linux-arm-gnueabihf': 4.60.
|
|
3302
|
-
'@rollup/rollup-linux-arm-musleabihf': 4.60.
|
|
3303
|
-
'@rollup/rollup-linux-arm64-gnu': 4.60.
|
|
3304
|
-
'@rollup/rollup-linux-arm64-musl': 4.60.
|
|
3305
|
-
'@rollup/rollup-linux-loong64-gnu': 4.60.
|
|
3306
|
-
'@rollup/rollup-linux-loong64-musl': 4.60.
|
|
3307
|
-
'@rollup/rollup-linux-ppc64-gnu': 4.60.
|
|
3308
|
-
'@rollup/rollup-linux-ppc64-musl': 4.60.
|
|
3309
|
-
'@rollup/rollup-linux-riscv64-gnu': 4.60.
|
|
3310
|
-
'@rollup/rollup-linux-riscv64-musl': 4.60.
|
|
3311
|
-
'@rollup/rollup-linux-s390x-gnu': 4.60.
|
|
3312
|
-
'@rollup/rollup-linux-x64-gnu': 4.60.
|
|
3313
|
-
'@rollup/rollup-linux-x64-musl': 4.60.
|
|
3314
|
-
'@rollup/rollup-openbsd-x64': 4.60.
|
|
3315
|
-
'@rollup/rollup-openharmony-arm64': 4.60.
|
|
3316
|
-
'@rollup/rollup-win32-arm64-msvc': 4.60.
|
|
3317
|
-
'@rollup/rollup-win32-ia32-msvc': 4.60.
|
|
3318
|
-
'@rollup/rollup-win32-x64-gnu': 4.60.
|
|
3319
|
-
'@rollup/rollup-win32-x64-msvc': 4.60.
|
|
3367
|
+
'@rollup/rollup-android-arm-eabi': 4.60.1
|
|
3368
|
+
'@rollup/rollup-android-arm64': 4.60.1
|
|
3369
|
+
'@rollup/rollup-darwin-arm64': 4.60.1
|
|
3370
|
+
'@rollup/rollup-darwin-x64': 4.60.1
|
|
3371
|
+
'@rollup/rollup-freebsd-arm64': 4.60.1
|
|
3372
|
+
'@rollup/rollup-freebsd-x64': 4.60.1
|
|
3373
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.60.1
|
|
3374
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.60.1
|
|
3375
|
+
'@rollup/rollup-linux-arm64-gnu': 4.60.1
|
|
3376
|
+
'@rollup/rollup-linux-arm64-musl': 4.60.1
|
|
3377
|
+
'@rollup/rollup-linux-loong64-gnu': 4.60.1
|
|
3378
|
+
'@rollup/rollup-linux-loong64-musl': 4.60.1
|
|
3379
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.60.1
|
|
3380
|
+
'@rollup/rollup-linux-ppc64-musl': 4.60.1
|
|
3381
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.60.1
|
|
3382
|
+
'@rollup/rollup-linux-riscv64-musl': 4.60.1
|
|
3383
|
+
'@rollup/rollup-linux-s390x-gnu': 4.60.1
|
|
3384
|
+
'@rollup/rollup-linux-x64-gnu': 4.60.1
|
|
3385
|
+
'@rollup/rollup-linux-x64-musl': 4.60.1
|
|
3386
|
+
'@rollup/rollup-openbsd-x64': 4.60.1
|
|
3387
|
+
'@rollup/rollup-openharmony-arm64': 4.60.1
|
|
3388
|
+
'@rollup/rollup-win32-arm64-msvc': 4.60.1
|
|
3389
|
+
'@rollup/rollup-win32-ia32-msvc': 4.60.1
|
|
3390
|
+
'@rollup/rollup-win32-x64-gnu': 4.60.1
|
|
3391
|
+
'@rollup/rollup-win32-x64-msvc': 4.60.1
|
|
3320
3392
|
fsevents: 2.3.3
|
|
3321
3393
|
|
|
3322
3394
|
run-parallel@1.2.0:
|
|
@@ -3330,9 +3402,9 @@ snapshots:
|
|
|
3330
3402
|
htmlparser2: 10.1.0
|
|
3331
3403
|
is-plain-object: 5.0.0
|
|
3332
3404
|
parse-srcset: 1.0.2
|
|
3333
|
-
postcss: 8.5.
|
|
3405
|
+
postcss: 8.5.9
|
|
3334
3406
|
|
|
3335
|
-
sass@1.
|
|
3407
|
+
sass@1.99.0:
|
|
3336
3408
|
dependencies:
|
|
3337
3409
|
chokidar: 4.0.3
|
|
3338
3410
|
immutable: 5.1.5
|
|
@@ -3369,7 +3441,7 @@ snapshots:
|
|
|
3369
3441
|
lines-and-columns: 1.2.4
|
|
3370
3442
|
mz: 2.7.0
|
|
3371
3443
|
pirates: 4.0.7
|
|
3372
|
-
tinyglobby: 0.2.
|
|
3444
|
+
tinyglobby: 0.2.16
|
|
3373
3445
|
ts-interface-checker: 0.1.13
|
|
3374
3446
|
|
|
3375
3447
|
supports-color@7.2.0:
|
|
@@ -3394,13 +3466,13 @@ snapshots:
|
|
|
3394
3466
|
normalize-path: 3.0.0
|
|
3395
3467
|
object-hash: 3.0.0
|
|
3396
3468
|
picocolors: 1.1.1
|
|
3397
|
-
postcss: 8.5.
|
|
3398
|
-
postcss-import: 15.1.0(postcss@8.5.
|
|
3399
|
-
postcss-js: 4.1.0(postcss@8.5.
|
|
3400
|
-
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.
|
|
3401
|
-
postcss-nested: 6.2.0(postcss@8.5.
|
|
3469
|
+
postcss: 8.5.9
|
|
3470
|
+
postcss-import: 15.1.0(postcss@8.5.9)
|
|
3471
|
+
postcss-js: 4.1.0(postcss@8.5.9)
|
|
3472
|
+
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.9)
|
|
3473
|
+
postcss-nested: 6.2.0(postcss@8.5.9)
|
|
3402
3474
|
postcss-selector-parser: 6.1.2
|
|
3403
|
-
resolve: 1.22.
|
|
3475
|
+
resolve: 1.22.12
|
|
3404
3476
|
sucrase: 3.35.1
|
|
3405
3477
|
transitivePeerDependencies:
|
|
3406
3478
|
- tsx
|
|
@@ -3418,7 +3490,7 @@ snapshots:
|
|
|
3418
3490
|
|
|
3419
3491
|
tiny-emitter@2.1.0: {}
|
|
3420
3492
|
|
|
3421
|
-
tinyglobby@0.2.
|
|
3493
|
+
tinyglobby@0.2.16:
|
|
3422
3494
|
dependencies:
|
|
3423
3495
|
fdir: 6.5.0(picomatch@4.0.4)
|
|
3424
3496
|
picomatch: 4.0.4
|
|
@@ -3433,6 +3505,8 @@ snapshots:
|
|
|
3433
3505
|
|
|
3434
3506
|
ts-interface-checker@0.1.13: {}
|
|
3435
3507
|
|
|
3508
|
+
tslib@2.8.1: {}
|
|
3509
|
+
|
|
3436
3510
|
type-check@0.4.0:
|
|
3437
3511
|
dependencies:
|
|
3438
3512
|
prelude-ls: 1.2.1
|
|
@@ -3450,9 +3524,9 @@ snapshots:
|
|
|
3450
3524
|
'@unhead/shared': 1.11.20
|
|
3451
3525
|
hookable: 5.5.3
|
|
3452
3526
|
|
|
3453
|
-
update-browserslist-db@1.2.3(browserslist@4.28.
|
|
3527
|
+
update-browserslist-db@1.2.3(browserslist@4.28.2):
|
|
3454
3528
|
dependencies:
|
|
3455
|
-
browserslist: 4.28.
|
|
3529
|
+
browserslist: 4.28.2
|
|
3456
3530
|
escalade: 3.2.0
|
|
3457
3531
|
picocolors: 1.1.1
|
|
3458
3532
|
|
|
@@ -3462,25 +3536,25 @@ snapshots:
|
|
|
3462
3536
|
|
|
3463
3537
|
util-deprecate@1.0.2: {}
|
|
3464
3538
|
|
|
3465
|
-
vite@5.4.21(@types/node@20.19.
|
|
3539
|
+
vite@5.4.21(@types/node@20.19.39)(sass@1.99.0):
|
|
3466
3540
|
dependencies:
|
|
3467
3541
|
esbuild: 0.21.5
|
|
3468
|
-
postcss: 8.5.
|
|
3469
|
-
rollup: 4.60.
|
|
3542
|
+
postcss: 8.5.9
|
|
3543
|
+
rollup: 4.60.1
|
|
3470
3544
|
optionalDependencies:
|
|
3471
|
-
'@types/node': 20.19.
|
|
3545
|
+
'@types/node': 20.19.39
|
|
3472
3546
|
fsevents: 2.3.3
|
|
3473
|
-
sass: 1.
|
|
3547
|
+
sass: 1.99.0
|
|
3474
3548
|
|
|
3475
3549
|
vscode-uri@3.1.0: {}
|
|
3476
3550
|
|
|
3477
|
-
vue-demi@0.14.10(vue@3.5.
|
|
3551
|
+
vue-demi@0.14.10(vue@3.5.32(typescript@5.4.5)):
|
|
3478
3552
|
dependencies:
|
|
3479
|
-
vue: 3.5.
|
|
3553
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
3480
3554
|
|
|
3481
|
-
vue-diff@1.2.4(vue@3.5.
|
|
3555
|
+
vue-diff@1.2.4(vue@3.5.32(typescript@5.4.5)):
|
|
3482
3556
|
dependencies:
|
|
3483
|
-
'@vueuse/core': 8.9.4(vue@3.5.
|
|
3557
|
+
'@vueuse/core': 8.9.4(vue@3.5.32(typescript@5.4.5))
|
|
3484
3558
|
diff-match-patch: 1.0.5
|
|
3485
3559
|
highlight.js: 11.11.1
|
|
3486
3560
|
transitivePeerDependencies:
|
|
@@ -3495,7 +3569,7 @@ snapshots:
|
|
|
3495
3569
|
eslint-visitor-keys: 3.4.3
|
|
3496
3570
|
espree: 9.6.1
|
|
3497
3571
|
esquery: 1.7.0
|
|
3498
|
-
lodash: 4.
|
|
3572
|
+
lodash: 4.18.1
|
|
3499
3573
|
semver: 7.7.4
|
|
3500
3574
|
transitivePeerDependencies:
|
|
3501
3575
|
- supports-color
|
|
@@ -3508,17 +3582,17 @@ snapshots:
|
|
|
3508
3582
|
is-valid-glob: 1.0.0
|
|
3509
3583
|
js-yaml: 4.1.1
|
|
3510
3584
|
|
|
3511
|
-
vue-i18n@10.0.8(vue@3.5.
|
|
3585
|
+
vue-i18n@10.0.8(vue@3.5.32(typescript@5.4.5)):
|
|
3512
3586
|
dependencies:
|
|
3513
3587
|
'@intlify/core-base': 10.0.8
|
|
3514
3588
|
'@intlify/shared': 10.0.8
|
|
3515
3589
|
'@vue/devtools-api': 6.6.4
|
|
3516
|
-
vue: 3.5.
|
|
3590
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
3517
3591
|
|
|
3518
|
-
vue-router@4.6.4(vue@3.5.
|
|
3592
|
+
vue-router@4.6.4(vue@3.5.32(typescript@5.4.5)):
|
|
3519
3593
|
dependencies:
|
|
3520
3594
|
'@vue/devtools-api': 6.6.4
|
|
3521
|
-
vue: 3.5.
|
|
3595
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
3522
3596
|
|
|
3523
3597
|
vue-tsc@2.2.12(typescript@5.4.5):
|
|
3524
3598
|
dependencies:
|
|
@@ -3526,18 +3600,18 @@ snapshots:
|
|
|
3526
3600
|
'@vue/language-core': 2.2.12(typescript@5.4.5)
|
|
3527
3601
|
typescript: 5.4.5
|
|
3528
3602
|
|
|
3529
|
-
vue3-json-viewer@2.4.1(vue@3.5.
|
|
3603
|
+
vue3-json-viewer@2.4.1(vue@3.5.32(typescript@5.4.5)):
|
|
3530
3604
|
dependencies:
|
|
3531
3605
|
clipboard: 2.0.11
|
|
3532
|
-
vue: 3.5.
|
|
3606
|
+
vue: 3.5.32(typescript@5.4.5)
|
|
3533
3607
|
|
|
3534
|
-
vue@3.5.
|
|
3608
|
+
vue@3.5.32(typescript@5.4.5):
|
|
3535
3609
|
dependencies:
|
|
3536
|
-
'@vue/compiler-dom': 3.5.
|
|
3537
|
-
'@vue/compiler-sfc': 3.5.
|
|
3538
|
-
'@vue/runtime-dom': 3.5.
|
|
3539
|
-
'@vue/server-renderer': 3.5.
|
|
3540
|
-
'@vue/shared': 3.5.
|
|
3610
|
+
'@vue/compiler-dom': 3.5.32
|
|
3611
|
+
'@vue/compiler-sfc': 3.5.32
|
|
3612
|
+
'@vue/runtime-dom': 3.5.32
|
|
3613
|
+
'@vue/server-renderer': 3.5.32(vue@3.5.32(typescript@5.4.5))
|
|
3614
|
+
'@vue/shared': 3.5.32
|
|
3541
3615
|
optionalDependencies:
|
|
3542
3616
|
typescript: 5.4.5
|
|
3543
3617
|
|