@licklist/design 0.67.3-dev.0 → 0.67.3-dev.2
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/dist/events/edit-event-modal/component/EditEventForm/EditEventForm.d.ts +2 -1
- package/dist/events/edit-event-modal/component/EditEventForm/EditEventForm.d.ts.map +1 -1
- package/dist/events/edit-event-modal/component/EditEventForm/EditEventForm.js +2 -3
- package/dist/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.d.ts +2 -2
- package/dist/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.d.ts.map +1 -1
- package/dist/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.js +27 -26
- package/dist/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.d.ts +2 -2
- package/dist/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.d.ts.map +1 -1
- package/dist/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.js +3 -3
- package/dist/index.js +1 -0
- package/dist/modals/confirmation/ConfirmModal.d.ts +3 -1
- package/dist/modals/confirmation/ConfirmModal.d.ts.map +1 -1
- package/dist/modals/confirmation/ConfirmModal.js +172 -8
- package/dist/product-set/card/ProductSetCard.d.ts +6 -2
- package/dist/product-set/card/ProductSetCard.d.ts.map +1 -1
- package/dist/product-set/card/ProductSetCard.js +30 -11
- package/dist/product-set/control/DateAndRecurrenceInput.d.ts +2 -1
- package/dist/product-set/control/DateAndRecurrenceInput.d.ts.map +1 -1
- package/dist/product-set/control/DateAndRecurrenceInput.js +2 -1
- package/dist/product-set/control/ProductSetControl.d.ts +1 -2
- package/dist/product-set/control/ProductSetControl.d.ts.map +1 -1
- package/dist/product-set/control/ProductSetControl.js +4 -16
- package/dist/product-set/form/ProductSetForm.d.ts +2 -1
- package/dist/product-set/form/ProductSetForm.d.ts.map +1 -1
- package/dist/product-set/form/ProductSetForm.js +5 -3
- package/dist/product-set/form/ProductSetNameControl.d.ts +6 -0
- package/dist/product-set/form/ProductSetNameControl.d.ts.map +1 -0
- package/dist/product-set/form/ProductSetNameControl.js +35 -0
- package/dist/product-set/form/index.d.ts +1 -0
- package/dist/product-set/form/index.d.ts.map +1 -1
- package/dist/product-set/utils/index.d.ts +7 -0
- package/dist/product-set/utils/index.d.ts.map +1 -1
- package/dist/product-set/utils/index.js +10 -1
- package/dist/recurring-date-picker-input/RecurrenceIntervalAndFrequencyInput.d.ts +2 -1
- package/dist/recurring-date-picker-input/RecurrenceIntervalAndFrequencyInput.d.ts.map +1 -1
- package/dist/recurring-date-picker-input/RecurrenceIntervalAndFrequencyInput.js +7 -13
- package/dist/recurring-date-picker-input/RecurringDatePickerInput.d.ts +2 -1
- package/dist/recurring-date-picker-input/RecurringDatePickerInput.d.ts.map +1 -1
- package/dist/recurring-date-picker-input/RecurringDatePickerInput.js +4 -3
- package/dist/recurring-date-picker-input/utils.d.ts +1 -1
- package/dist/recurring-date-picker-input/utils.d.ts.map +1 -1
- package/dist/recurring-date-picker-input/utils.js +7 -10
- package/dist/typeahead/Typeahead.d.ts +5 -1
- package/dist/typeahead/Typeahead.d.ts.map +1 -1
- package/dist/typeahead/Typeahead.js +9 -2
- package/dist/zone/form/ZoneForm.d.ts +2 -1
- package/dist/zone/form/ZoneForm.d.ts.map +1 -1
- package/dist/zone/form/ZoneForm.js +3 -2
- package/dist/zone/form/components/ZoneControl.d.ts +2 -1
- package/dist/zone/form/components/ZoneControl.d.ts.map +1 -1
- package/dist/zone/form/components/ZoneControl.js +3 -2
- package/dist/zone/form/components/ZoneRecurrencesControl.d.ts +2 -1
- package/dist/zone/form/components/ZoneRecurrencesControl.d.ts.map +1 -1
- package/dist/zone/form/components/ZoneRecurrencesControl.js +3 -2
- package/package.json +4 -4
- package/src/events/edit-event-modal/component/EditEventForm/EditEventForm.tsx +3 -2
- package/src/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.tsx +35 -37
- package/src/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.tsx +3 -3
- package/src/modals/confirmation/ConfirmModal.tsx +19 -3
- package/src/product-set/card/ProductSetCard.tsx +47 -8
- package/src/product-set/control/DateAndRecurrenceInput.tsx +3 -0
- package/src/product-set/control/ProductSetControl.tsx +1 -14
- package/src/product-set/form/ProductSetForm.tsx +3 -0
- package/src/product-set/form/ProductSetNameControl.tsx +27 -0
- package/src/product-set/form/index.ts +1 -0
- package/src/product-set/utils/index.ts +11 -0
- package/src/recurring-date-picker-input/RecurrenceIntervalAndFrequencyInput.tsx +8 -22
- package/src/recurring-date-picker-input/RecurringDatePickerInput.tsx +6 -3
- package/src/recurring-date-picker-input/utils.ts +7 -12
- package/src/typeahead/Typeahead.tsx +15 -1
- package/src/zone/form/ZoneForm.tsx +7 -1
- package/src/zone/form/components/ZoneControl.tsx +7 -2
- package/src/zone/form/components/ZoneRecurrencesControl.tsx +3 -0
- package/yarn.lock +161 -141
package/yarn.lock
CHANGED
|
@@ -2587,6 +2587,32 @@ __metadata:
|
|
|
2587
2587
|
languageName: node
|
|
2588
2588
|
linkType: hard
|
|
2589
2589
|
|
|
2590
|
+
"@licklist/core@npm:0.29.1-dev.3":
|
|
2591
|
+
version: 0.29.1-dev.3
|
|
2592
|
+
resolution: "@licklist/core@npm:0.29.1-dev.3"
|
|
2593
|
+
dependencies:
|
|
2594
|
+
"@sentry/browser": "npm:6.2.0"
|
|
2595
|
+
axios: "npm:0.26.0"
|
|
2596
|
+
i18next: "npm:19.4.5"
|
|
2597
|
+
luxon: "npm:3.5.0"
|
|
2598
|
+
react: "npm:17.0.2"
|
|
2599
|
+
react-dom: "npm:17.0.2"
|
|
2600
|
+
react-i18next: "npm:11.8.8"
|
|
2601
|
+
react-intl: "npm:6.6.8"
|
|
2602
|
+
uuid: "npm:9.0.0"
|
|
2603
|
+
wait-for-expect: "npm:3.0.2"
|
|
2604
|
+
peerDependencies:
|
|
2605
|
+
"@licklist/eslint-config": 0.5.5
|
|
2606
|
+
axios: 0.26.0
|
|
2607
|
+
luxon: 3.5.0
|
|
2608
|
+
react: 17.0.2
|
|
2609
|
+
react-dom: 17.0.2
|
|
2610
|
+
react-i18next: 11.8.8
|
|
2611
|
+
react-intl: 6.6.8
|
|
2612
|
+
checksum: 10c0/8a31309e88f15d193557a93c875d1fceeedde7be0e6a870b3a4d80a25dca7a445b23e1dd7878ca6ffd5b65cc71aa8a53127131e719bd4f37178833c83fc3b22e
|
|
2613
|
+
languageName: node
|
|
2614
|
+
linkType: hard
|
|
2615
|
+
|
|
2590
2616
|
"@licklist/design@workspace:.":
|
|
2591
2617
|
version: 0.0.0-use.local
|
|
2592
2618
|
resolution: "@licklist/design@workspace:."
|
|
@@ -2598,7 +2624,7 @@ __metadata:
|
|
|
2598
2624
|
"@dnd-kit/utilities": "npm:2.0.0"
|
|
2599
2625
|
"@fortawesome/fontawesome-svg-core": "npm:1.2.34"
|
|
2600
2626
|
"@fortawesome/free-solid-svg-icons": "npm:5.15.2"
|
|
2601
|
-
"@licklist/core": "npm:0.29.1-dev.
|
|
2627
|
+
"@licklist/core": "npm:0.29.1-dev.3"
|
|
2602
2628
|
"@licklist/eslint-config": "npm:0.5.5"
|
|
2603
2629
|
"@licklist/plugins": "npm:0.32.0-dev.3"
|
|
2604
2630
|
"@mdx-js/react": "npm:1.6.22"
|
|
@@ -2722,7 +2748,7 @@ __metadata:
|
|
|
2722
2748
|
vite-plugin-svgr: "npm:4.2.0"
|
|
2723
2749
|
vite-tsconfig-paths: "npm:5.0.1"
|
|
2724
2750
|
peerDependencies:
|
|
2725
|
-
"@licklist/core": 0.29.1-dev.
|
|
2751
|
+
"@licklist/core": 0.29.1-dev.3
|
|
2726
2752
|
"@licklist/eslint-config": 0.5.5
|
|
2727
2753
|
"@licklist/plugins": 0.32.0-dev.3
|
|
2728
2754
|
lodash: 4.17.21
|
|
@@ -3200,114 +3226,114 @@ __metadata:
|
|
|
3200
3226
|
languageName: node
|
|
3201
3227
|
linkType: hard
|
|
3202
3228
|
|
|
3203
|
-
"@rollup/rollup-android-arm-eabi@npm:4.22.
|
|
3204
|
-
version: 4.22.
|
|
3205
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.22.
|
|
3229
|
+
"@rollup/rollup-android-arm-eabi@npm:4.22.5":
|
|
3230
|
+
version: 4.22.5
|
|
3231
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.22.5"
|
|
3206
3232
|
conditions: os=android & cpu=arm
|
|
3207
3233
|
languageName: node
|
|
3208
3234
|
linkType: hard
|
|
3209
3235
|
|
|
3210
|
-
"@rollup/rollup-android-arm64@npm:4.22.
|
|
3211
|
-
version: 4.22.
|
|
3212
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.22.
|
|
3236
|
+
"@rollup/rollup-android-arm64@npm:4.22.5":
|
|
3237
|
+
version: 4.22.5
|
|
3238
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.22.5"
|
|
3213
3239
|
conditions: os=android & cpu=arm64
|
|
3214
3240
|
languageName: node
|
|
3215
3241
|
linkType: hard
|
|
3216
3242
|
|
|
3217
|
-
"@rollup/rollup-darwin-arm64@npm:4.22.
|
|
3218
|
-
version: 4.22.
|
|
3219
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.22.
|
|
3243
|
+
"@rollup/rollup-darwin-arm64@npm:4.22.5":
|
|
3244
|
+
version: 4.22.5
|
|
3245
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.22.5"
|
|
3220
3246
|
conditions: os=darwin & cpu=arm64
|
|
3221
3247
|
languageName: node
|
|
3222
3248
|
linkType: hard
|
|
3223
3249
|
|
|
3224
|
-
"@rollup/rollup-darwin-x64@npm:4.22.
|
|
3225
|
-
version: 4.22.
|
|
3226
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.22.
|
|
3250
|
+
"@rollup/rollup-darwin-x64@npm:4.22.5":
|
|
3251
|
+
version: 4.22.5
|
|
3252
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.22.5"
|
|
3227
3253
|
conditions: os=darwin & cpu=x64
|
|
3228
3254
|
languageName: node
|
|
3229
3255
|
linkType: hard
|
|
3230
3256
|
|
|
3231
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.22.
|
|
3232
|
-
version: 4.22.
|
|
3233
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.22.
|
|
3257
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.22.5":
|
|
3258
|
+
version: 4.22.5
|
|
3259
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.22.5"
|
|
3234
3260
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3235
3261
|
languageName: node
|
|
3236
3262
|
linkType: hard
|
|
3237
3263
|
|
|
3238
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.22.
|
|
3239
|
-
version: 4.22.
|
|
3240
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.22.
|
|
3264
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.22.5":
|
|
3265
|
+
version: 4.22.5
|
|
3266
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.22.5"
|
|
3241
3267
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3242
3268
|
languageName: node
|
|
3243
3269
|
linkType: hard
|
|
3244
3270
|
|
|
3245
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.22.
|
|
3246
|
-
version: 4.22.
|
|
3247
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.22.
|
|
3271
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.22.5":
|
|
3272
|
+
version: 4.22.5
|
|
3273
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.22.5"
|
|
3248
3274
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3249
3275
|
languageName: node
|
|
3250
3276
|
linkType: hard
|
|
3251
3277
|
|
|
3252
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.22.
|
|
3253
|
-
version: 4.22.
|
|
3254
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.22.
|
|
3278
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.22.5":
|
|
3279
|
+
version: 4.22.5
|
|
3280
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.22.5"
|
|
3255
3281
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3256
3282
|
languageName: node
|
|
3257
3283
|
linkType: hard
|
|
3258
3284
|
|
|
3259
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.22.
|
|
3260
|
-
version: 4.22.
|
|
3261
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.22.
|
|
3285
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.22.5":
|
|
3286
|
+
version: 4.22.5
|
|
3287
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.22.5"
|
|
3262
3288
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3263
3289
|
languageName: node
|
|
3264
3290
|
linkType: hard
|
|
3265
3291
|
|
|
3266
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.22.
|
|
3267
|
-
version: 4.22.
|
|
3268
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.22.
|
|
3292
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.22.5":
|
|
3293
|
+
version: 4.22.5
|
|
3294
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.22.5"
|
|
3269
3295
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3270
3296
|
languageName: node
|
|
3271
3297
|
linkType: hard
|
|
3272
3298
|
|
|
3273
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.22.
|
|
3274
|
-
version: 4.22.
|
|
3275
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.22.
|
|
3299
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.22.5":
|
|
3300
|
+
version: 4.22.5
|
|
3301
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.22.5"
|
|
3276
3302
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3277
3303
|
languageName: node
|
|
3278
3304
|
linkType: hard
|
|
3279
3305
|
|
|
3280
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.22.
|
|
3281
|
-
version: 4.22.
|
|
3282
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.22.
|
|
3306
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.22.5":
|
|
3307
|
+
version: 4.22.5
|
|
3308
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.22.5"
|
|
3283
3309
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3284
3310
|
languageName: node
|
|
3285
3311
|
linkType: hard
|
|
3286
3312
|
|
|
3287
|
-
"@rollup/rollup-linux-x64-musl@npm:4.22.
|
|
3288
|
-
version: 4.22.
|
|
3289
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.22.
|
|
3313
|
+
"@rollup/rollup-linux-x64-musl@npm:4.22.5":
|
|
3314
|
+
version: 4.22.5
|
|
3315
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.22.5"
|
|
3290
3316
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3291
3317
|
languageName: node
|
|
3292
3318
|
linkType: hard
|
|
3293
3319
|
|
|
3294
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.22.
|
|
3295
|
-
version: 4.22.
|
|
3296
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.22.
|
|
3320
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.22.5":
|
|
3321
|
+
version: 4.22.5
|
|
3322
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.22.5"
|
|
3297
3323
|
conditions: os=win32 & cpu=arm64
|
|
3298
3324
|
languageName: node
|
|
3299
3325
|
linkType: hard
|
|
3300
3326
|
|
|
3301
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.22.
|
|
3302
|
-
version: 4.22.
|
|
3303
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.22.
|
|
3327
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.22.5":
|
|
3328
|
+
version: 4.22.5
|
|
3329
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.22.5"
|
|
3304
3330
|
conditions: os=win32 & cpu=ia32
|
|
3305
3331
|
languageName: node
|
|
3306
3332
|
linkType: hard
|
|
3307
3333
|
|
|
3308
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.22.
|
|
3309
|
-
version: 4.22.
|
|
3310
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.22.
|
|
3334
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.22.5":
|
|
3335
|
+
version: 4.22.5
|
|
3336
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.22.5"
|
|
3311
3337
|
conditions: os=win32 & cpu=x64
|
|
3312
3338
|
languageName: node
|
|
3313
3339
|
linkType: hard
|
|
@@ -5051,14 +5077,14 @@ __metadata:
|
|
|
5051
5077
|
linkType: hard
|
|
5052
5078
|
|
|
5053
5079
|
"@tiptap/extension-bubble-menu@npm:^2.0.0-beta.56":
|
|
5054
|
-
version: 2.7.
|
|
5055
|
-
resolution: "@tiptap/extension-bubble-menu@npm:2.7.
|
|
5080
|
+
version: 2.7.4
|
|
5081
|
+
resolution: "@tiptap/extension-bubble-menu@npm:2.7.4"
|
|
5056
5082
|
dependencies:
|
|
5057
5083
|
tippy.js: "npm:^6.3.7"
|
|
5058
5084
|
peerDependencies:
|
|
5059
5085
|
"@tiptap/core": ^2.7.0
|
|
5060
5086
|
"@tiptap/pm": ^2.7.0
|
|
5061
|
-
checksum: 10c0/
|
|
5087
|
+
checksum: 10c0/210578d8e8be63b0e2eaeeba47310a427f673d8d5b40fbca34b23536e3fb88c7e2da38af502e468e4f0eb89390263793305114873457486c38101947ed0c0e04
|
|
5062
5088
|
languageName: node
|
|
5063
5089
|
linkType: hard
|
|
5064
5090
|
|
|
@@ -5081,14 +5107,14 @@ __metadata:
|
|
|
5081
5107
|
linkType: hard
|
|
5082
5108
|
|
|
5083
5109
|
"@tiptap/extension-floating-menu@npm:^2.0.0-beta.51":
|
|
5084
|
-
version: 2.7.
|
|
5085
|
-
resolution: "@tiptap/extension-floating-menu@npm:2.7.
|
|
5110
|
+
version: 2.7.4
|
|
5111
|
+
resolution: "@tiptap/extension-floating-menu@npm:2.7.4"
|
|
5086
5112
|
dependencies:
|
|
5087
5113
|
tippy.js: "npm:^6.3.7"
|
|
5088
5114
|
peerDependencies:
|
|
5089
5115
|
"@tiptap/core": ^2.7.0
|
|
5090
5116
|
"@tiptap/pm": ^2.7.0
|
|
5091
|
-
checksum: 10c0/
|
|
5117
|
+
checksum: 10c0/2fc36071b16830a2e2423d151b73333eb4146d907151d6c55baa1551ad3351a680437fe0cf42ec4543a25fc6c24445dfe2c189463db04ef4fbed97935627120d
|
|
5092
5118
|
languageName: node
|
|
5093
5119
|
linkType: hard
|
|
5094
5120
|
|
|
@@ -5323,29 +5349,22 @@ __metadata:
|
|
|
5323
5349
|
linkType: hard
|
|
5324
5350
|
|
|
5325
5351
|
"@types/color-convert@npm:^2.0.0":
|
|
5326
|
-
version: 2.0.
|
|
5327
|
-
resolution: "@types/color-convert@npm:2.0.
|
|
5352
|
+
version: 2.0.4
|
|
5353
|
+
resolution: "@types/color-convert@npm:2.0.4"
|
|
5328
5354
|
dependencies:
|
|
5329
|
-
"@types/color-name": "npm
|
|
5330
|
-
checksum: 10c0/
|
|
5331
|
-
languageName: node
|
|
5332
|
-
linkType: hard
|
|
5333
|
-
|
|
5334
|
-
"@types/color-name@npm:*":
|
|
5335
|
-
version: 1.1.4
|
|
5336
|
-
resolution: "@types/color-name@npm:1.1.4"
|
|
5337
|
-
checksum: 10c0/11a5b67408a53a972fa98e4bbe2b0ff4cb74a3b3abb5f250cb5ec7b055a45aa8e00ddaf39b8327ef683ede9b2ff9b3ee9d25cd708d12b1b6a9aee5e8e6002920
|
|
5355
|
+
"@types/color-name": "npm:^1.1.0"
|
|
5356
|
+
checksum: 10c0/fdd2cea0ccf593055c8d952760286a4c114ed72a9940798d13f159823bf71d40a6b124009865e2e066f062d6d5611b677ddb61fd0ed05f6494170454cc6457c2
|
|
5338
5357
|
languageName: node
|
|
5339
5358
|
linkType: hard
|
|
5340
5359
|
|
|
5341
|
-
"@types/
|
|
5342
|
-
version: 1.
|
|
5343
|
-
resolution: "@types/
|
|
5344
|
-
checksum: 10c0/
|
|
5360
|
+
"@types/color-name@npm:^1.1.0":
|
|
5361
|
+
version: 1.1.5
|
|
5362
|
+
resolution: "@types/color-name@npm:1.1.5"
|
|
5363
|
+
checksum: 10c0/ce566d98ab1c2622a2e9d9d1d5cbde403e731a4fc084e8b0f56e89901cd3c46981feafb797d4505918d5eb5a7fd897fce2332d489f450ddf1c58bc4986bd9d76
|
|
5345
5364
|
languageName: node
|
|
5346
5365
|
linkType: hard
|
|
5347
5366
|
|
|
5348
|
-
"@types/estree@npm:^1.0.0":
|
|
5367
|
+
"@types/estree@npm:1.0.6, @types/estree@npm:^1.0.0":
|
|
5349
5368
|
version: 1.0.6
|
|
5350
5369
|
resolution: "@types/estree@npm:1.0.6"
|
|
5351
5370
|
checksum: 10c0/cdfd751f6f9065442cd40957c07fd80361c962869aa853c1c2fd03e101af8b9389d8ff4955a43a6fcfa223dd387a089937f95be0f3eec21ca527039fd2d9859a
|
|
@@ -5575,11 +5594,11 @@ __metadata:
|
|
|
5575
5594
|
linkType: hard
|
|
5576
5595
|
|
|
5577
5596
|
"@types/node@npm:*":
|
|
5578
|
-
version: 22.7.
|
|
5579
|
-
resolution: "@types/node@npm:22.7.
|
|
5597
|
+
version: 22.7.4
|
|
5598
|
+
resolution: "@types/node@npm:22.7.4"
|
|
5580
5599
|
dependencies:
|
|
5581
5600
|
undici-types: "npm:~6.19.2"
|
|
5582
|
-
checksum: 10c0/
|
|
5601
|
+
checksum: 10c0/c22bf54515c78ff3170142c1e718b90e2a0003419dc2d55f79c9c9362edd590a6ab1450deb09ff6e1b32d1b4698da407930b16285e8be3a009ea6cd2695cac01
|
|
5583
5602
|
languageName: node
|
|
5584
5603
|
linkType: hard
|
|
5585
5604
|
|
|
@@ -5847,12 +5866,12 @@ __metadata:
|
|
|
5847
5866
|
linkType: hard
|
|
5848
5867
|
|
|
5849
5868
|
"@types/react@npm:*, @types/react@npm:16 || 17 || 18, @types/react@npm:>=16.14.8, @types/react@npm:>=16.9.11":
|
|
5850
|
-
version: 18.3.
|
|
5851
|
-
resolution: "@types/react@npm:18.3.
|
|
5869
|
+
version: 18.3.10
|
|
5870
|
+
resolution: "@types/react@npm:18.3.10"
|
|
5852
5871
|
dependencies:
|
|
5853
5872
|
"@types/prop-types": "npm:*"
|
|
5854
5873
|
csstype: "npm:^3.0.2"
|
|
5855
|
-
checksum: 10c0/
|
|
5874
|
+
checksum: 10c0/f5be1de1b0331c1fdb33d577f4cf7f1b949d4bded5347b2351a537f03c51dade5be115e21b161dcf1b37061954d320f6a0bdf8d7b70e24eda51071fdd614383d
|
|
5856
5875
|
languageName: node
|
|
5857
5876
|
linkType: hard
|
|
5858
5877
|
|
|
@@ -5868,13 +5887,13 @@ __metadata:
|
|
|
5868
5887
|
linkType: hard
|
|
5869
5888
|
|
|
5870
5889
|
"@types/react@npm:^17":
|
|
5871
|
-
version: 17.0.
|
|
5872
|
-
resolution: "@types/react@npm:17.0.
|
|
5890
|
+
version: 17.0.83
|
|
5891
|
+
resolution: "@types/react@npm:17.0.83"
|
|
5873
5892
|
dependencies:
|
|
5874
5893
|
"@types/prop-types": "npm:*"
|
|
5875
5894
|
"@types/scheduler": "npm:^0.16"
|
|
5876
5895
|
csstype: "npm:^3.0.2"
|
|
5877
|
-
checksum: 10c0/
|
|
5896
|
+
checksum: 10c0/c8f76790190a9df42099f5f78d08dd4095f2da3bd97ff7cce0001d5a97ff3ffb31f703575acf2c457606e0d0b229ca8d1ba0ff459b77a4e44c5ea5154fe3fb4b
|
|
5878
5897
|
languageName: node
|
|
5879
5898
|
linkType: hard
|
|
5880
5899
|
|
|
@@ -6135,26 +6154,26 @@ __metadata:
|
|
|
6135
6154
|
languageName: node
|
|
6136
6155
|
linkType: hard
|
|
6137
6156
|
|
|
6138
|
-
"@vue/compiler-core@npm:3.5.
|
|
6139
|
-
version: 3.5.
|
|
6140
|
-
resolution: "@vue/compiler-core@npm:3.5.
|
|
6157
|
+
"@vue/compiler-core@npm:3.5.10":
|
|
6158
|
+
version: 3.5.10
|
|
6159
|
+
resolution: "@vue/compiler-core@npm:3.5.10"
|
|
6141
6160
|
dependencies:
|
|
6142
6161
|
"@babel/parser": "npm:^7.25.3"
|
|
6143
|
-
"@vue/shared": "npm:3.5.
|
|
6162
|
+
"@vue/shared": "npm:3.5.10"
|
|
6144
6163
|
entities: "npm:^4.5.0"
|
|
6145
6164
|
estree-walker: "npm:^2.0.2"
|
|
6146
6165
|
source-map-js: "npm:^1.2.0"
|
|
6147
|
-
checksum: 10c0/
|
|
6166
|
+
checksum: 10c0/fb84f4cca8d9890289ac2e880edab8bd07231b0255cbc5578d99a6c07c299ae80a328eb0be1f1ab1d211d80d7d5fe156e573c81b3b30956257eb78f1ac7ecf8c
|
|
6148
6167
|
languageName: node
|
|
6149
6168
|
linkType: hard
|
|
6150
6169
|
|
|
6151
6170
|
"@vue/compiler-dom@npm:^3.4.0":
|
|
6152
|
-
version: 3.5.
|
|
6153
|
-
resolution: "@vue/compiler-dom@npm:3.5.
|
|
6171
|
+
version: 3.5.10
|
|
6172
|
+
resolution: "@vue/compiler-dom@npm:3.5.10"
|
|
6154
6173
|
dependencies:
|
|
6155
|
-
"@vue/compiler-core": "npm:3.5.
|
|
6156
|
-
"@vue/shared": "npm:3.5.
|
|
6157
|
-
checksum: 10c0/
|
|
6174
|
+
"@vue/compiler-core": "npm:3.5.10"
|
|
6175
|
+
"@vue/shared": "npm:3.5.10"
|
|
6176
|
+
checksum: 10c0/30c9a0ee414b5d77d8479a17f7cf2e613a351e322edf039ffa827bb93d97750a1002089747f85cf93a9155748df898287417f52473cab17caf6507716cff570e
|
|
6158
6177
|
languageName: node
|
|
6159
6178
|
linkType: hard
|
|
6160
6179
|
|
|
@@ -6189,10 +6208,10 @@ __metadata:
|
|
|
6189
6208
|
languageName: node
|
|
6190
6209
|
linkType: hard
|
|
6191
6210
|
|
|
6192
|
-
"@vue/shared@npm:3.5.
|
|
6193
|
-
version: 3.5.
|
|
6194
|
-
resolution: "@vue/shared@npm:3.5.
|
|
6195
|
-
checksum: 10c0/
|
|
6211
|
+
"@vue/shared@npm:3.5.10, @vue/shared@npm:^3.4.0":
|
|
6212
|
+
version: 3.5.10
|
|
6213
|
+
resolution: "@vue/shared@npm:3.5.10"
|
|
6214
|
+
checksum: 10c0/cb3d06b6ba2026b6baa57a1f60110546cb1530e81d970fc770901c6a61adfe8a705d43cafb317f3b9b7c8f8f152b640a1a7a56e964bee7777c646c69b15e1e3f
|
|
6196
6215
|
languageName: node
|
|
6197
6216
|
linkType: hard
|
|
6198
6217
|
|
|
@@ -7431,7 +7450,7 @@ __metadata:
|
|
|
7431
7450
|
languageName: node
|
|
7432
7451
|
linkType: hard
|
|
7433
7452
|
|
|
7434
|
-
"bn.js@npm:^5.
|
|
7453
|
+
"bn.js@npm:^5.2.1":
|
|
7435
7454
|
version: 5.2.1
|
|
7436
7455
|
resolution: "bn.js@npm:5.2.1"
|
|
7437
7456
|
checksum: 10c0/bed3d8bd34ec89dbcf9f20f88bd7d4a49c160fda3b561c7bb227501f974d3e435a48fb9b61bc3de304acab9215a3bda0803f7017ffb4d0016a0c3a740a283caa
|
|
@@ -7615,12 +7634,13 @@ __metadata:
|
|
|
7615
7634
|
linkType: hard
|
|
7616
7635
|
|
|
7617
7636
|
"browserify-rsa@npm:^4.0.0, browserify-rsa@npm:^4.1.0":
|
|
7618
|
-
version: 4.1.
|
|
7619
|
-
resolution: "browserify-rsa@npm:4.1.
|
|
7637
|
+
version: 4.1.1
|
|
7638
|
+
resolution: "browserify-rsa@npm:4.1.1"
|
|
7620
7639
|
dependencies:
|
|
7621
|
-
bn.js: "npm:^5.
|
|
7622
|
-
randombytes: "npm:^2.0
|
|
7623
|
-
|
|
7640
|
+
bn.js: "npm:^5.2.1"
|
|
7641
|
+
randombytes: "npm:^2.1.0"
|
|
7642
|
+
safe-buffer: "npm:^5.2.1"
|
|
7643
|
+
checksum: 10c0/b650ee1192e3d7f3d779edc06dd96ed8720362e72ac310c367b9d7fe35f7e8dbb983c1829142b2b3215458be8bf17c38adc7224920843024ed8cf39e19c513c0
|
|
7624
7644
|
languageName: node
|
|
7625
7645
|
linkType: hard
|
|
7626
7646
|
|
|
@@ -10023,7 +10043,7 @@ __metadata:
|
|
|
10023
10043
|
languageName: node
|
|
10024
10044
|
linkType: hard
|
|
10025
10045
|
|
|
10026
|
-
"escalade@npm:^3.0.2, escalade@npm:^3.1.1, escalade@npm:^3.
|
|
10046
|
+
"escalade@npm:^3.0.2, escalade@npm:^3.1.1, escalade@npm:^3.2.0":
|
|
10027
10047
|
version: 3.2.0
|
|
10028
10048
|
resolution: "escalade@npm:3.2.0"
|
|
10029
10049
|
checksum: 10c0/ced4dd3a78e15897ed3be74e635110bbf3b08877b0a41be50dcb325ee0e0b5f65fc2d50e9845194d7c4633f327e2e1c6cce00a71b617c5673df0374201d67f65
|
|
@@ -10130,14 +10150,14 @@ __metadata:
|
|
|
10130
10150
|
linkType: hard
|
|
10131
10151
|
|
|
10132
10152
|
"eslint-module-utils@npm:^2.6.0":
|
|
10133
|
-
version: 2.
|
|
10134
|
-
resolution: "eslint-module-utils@npm:2.
|
|
10153
|
+
version: 2.12.0
|
|
10154
|
+
resolution: "eslint-module-utils@npm:2.12.0"
|
|
10135
10155
|
dependencies:
|
|
10136
10156
|
debug: "npm:^3.2.7"
|
|
10137
10157
|
peerDependenciesMeta:
|
|
10138
10158
|
eslint:
|
|
10139
10159
|
optional: true
|
|
10140
|
-
checksum: 10c0/
|
|
10160
|
+
checksum: 10c0/4d8b46dcd525d71276f9be9ffac1d2be61c9d54cc53c992e6333cf957840dee09381842b1acbbb15fc6b255ebab99cd481c5007ab438e5455a14abe1a0468558
|
|
10141
10161
|
languageName: node
|
|
10142
10162
|
linkType: hard
|
|
10143
10163
|
|
|
@@ -10685,9 +10705,9 @@ __metadata:
|
|
|
10685
10705
|
linkType: hard
|
|
10686
10706
|
|
|
10687
10707
|
"fast-uri@npm:^3.0.1":
|
|
10688
|
-
version: 3.0.
|
|
10689
|
-
resolution: "fast-uri@npm:3.0.
|
|
10690
|
-
checksum: 10c0/
|
|
10708
|
+
version: 3.0.2
|
|
10709
|
+
resolution: "fast-uri@npm:3.0.2"
|
|
10710
|
+
checksum: 10c0/8cdd3da7b4022a037d348d587d55caff74b7e4f862bbdd2cc35c1e6e3f97d0aedb567894d44c57ee8798d3192cceb97dcf41dbdabfa07dd2842a0474a6c6eeef
|
|
10691
10711
|
languageName: node
|
|
10692
10712
|
linkType: hard
|
|
10693
10713
|
|
|
@@ -15182,9 +15202,9 @@ __metadata:
|
|
|
15182
15202
|
linkType: hard
|
|
15183
15203
|
|
|
15184
15204
|
"package-json-from-dist@npm:^1.0.0":
|
|
15185
|
-
version: 1.0.
|
|
15186
|
-
resolution: "package-json-from-dist@npm:1.0.
|
|
15187
|
-
checksum: 10c0/
|
|
15205
|
+
version: 1.0.1
|
|
15206
|
+
resolution: "package-json-from-dist@npm:1.0.1"
|
|
15207
|
+
checksum: 10c0/62ba2785eb655fec084a257af34dbe24292ab74516d6aecef97ef72d4897310bc6898f6c85b5cd22770eaa1ce60d55a0230e150fb6a966e3ecd6c511e23d164b
|
|
15188
15208
|
languageName: node
|
|
15189
15209
|
linkType: hard
|
|
15190
15210
|
|
|
@@ -15481,7 +15501,7 @@ __metadata:
|
|
|
15481
15501
|
languageName: node
|
|
15482
15502
|
linkType: hard
|
|
15483
15503
|
|
|
15484
|
-
"picocolors@npm:^1.0.0, picocolors@npm:^1.
|
|
15504
|
+
"picocolors@npm:^1.0.0, picocolors@npm:^1.1.0":
|
|
15485
15505
|
version: 1.1.0
|
|
15486
15506
|
resolution: "picocolors@npm:1.1.0"
|
|
15487
15507
|
checksum: 10c0/86946f6032148801ef09c051c6fb13b5cf942eaf147e30ea79edb91dd32d700934edebe782a1078ff859fb2b816792e97ef4dab03d7f0b804f6b01a0df35e023
|
|
@@ -17897,26 +17917,26 @@ __metadata:
|
|
|
17897
17917
|
linkType: hard
|
|
17898
17918
|
|
|
17899
17919
|
"rollup@npm:^4.13.0":
|
|
17900
|
-
version: 4.22.
|
|
17901
|
-
resolution: "rollup@npm:4.22.
|
|
17902
|
-
dependencies:
|
|
17903
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.22.
|
|
17904
|
-
"@rollup/rollup-android-arm64": "npm:4.22.
|
|
17905
|
-
"@rollup/rollup-darwin-arm64": "npm:4.22.
|
|
17906
|
-
"@rollup/rollup-darwin-x64": "npm:4.22.
|
|
17907
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.22.
|
|
17908
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.22.
|
|
17909
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.22.
|
|
17910
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.22.
|
|
17911
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.22.
|
|
17912
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.22.
|
|
17913
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.22.
|
|
17914
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.22.
|
|
17915
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.22.
|
|
17916
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.22.
|
|
17917
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.22.
|
|
17918
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.22.
|
|
17919
|
-
"@types/estree": "npm:1.0.
|
|
17920
|
+
version: 4.22.5
|
|
17921
|
+
resolution: "rollup@npm:4.22.5"
|
|
17922
|
+
dependencies:
|
|
17923
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.22.5"
|
|
17924
|
+
"@rollup/rollup-android-arm64": "npm:4.22.5"
|
|
17925
|
+
"@rollup/rollup-darwin-arm64": "npm:4.22.5"
|
|
17926
|
+
"@rollup/rollup-darwin-x64": "npm:4.22.5"
|
|
17927
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.22.5"
|
|
17928
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.22.5"
|
|
17929
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.22.5"
|
|
17930
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.22.5"
|
|
17931
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.22.5"
|
|
17932
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.22.5"
|
|
17933
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.22.5"
|
|
17934
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.22.5"
|
|
17935
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.22.5"
|
|
17936
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.22.5"
|
|
17937
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.22.5"
|
|
17938
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.22.5"
|
|
17939
|
+
"@types/estree": "npm:1.0.6"
|
|
17920
17940
|
fsevents: "npm:~2.3.2"
|
|
17921
17941
|
dependenciesMeta:
|
|
17922
17942
|
"@rollup/rollup-android-arm-eabi":
|
|
@@ -17955,7 +17975,7 @@ __metadata:
|
|
|
17955
17975
|
optional: true
|
|
17956
17976
|
bin:
|
|
17957
17977
|
rollup: dist/bin/rollup
|
|
17958
|
-
checksum: 10c0/
|
|
17978
|
+
checksum: 10c0/9b9432206ecc2f68edca965f8cf119eccd5346c86c392f733a8062b7c6a309b70c35e8448024146bd0e3444d8b3797758c8e29248b273d1433de94a4ea265246
|
|
17959
17979
|
languageName: node
|
|
17960
17980
|
linkType: hard
|
|
17961
17981
|
|
|
@@ -19385,8 +19405,8 @@ __metadata:
|
|
|
19385
19405
|
linkType: hard
|
|
19386
19406
|
|
|
19387
19407
|
"terser@npm:^5.3.4":
|
|
19388
|
-
version: 5.
|
|
19389
|
-
resolution: "terser@npm:5.
|
|
19408
|
+
version: 5.34.1
|
|
19409
|
+
resolution: "terser@npm:5.34.1"
|
|
19390
19410
|
dependencies:
|
|
19391
19411
|
"@jridgewell/source-map": "npm:^0.3.3"
|
|
19392
19412
|
acorn: "npm:^8.8.2"
|
|
@@ -19394,7 +19414,7 @@ __metadata:
|
|
|
19394
19414
|
source-map-support: "npm:~0.5.20"
|
|
19395
19415
|
bin:
|
|
19396
19416
|
terser: bin/terser
|
|
19397
|
-
checksum: 10c0/
|
|
19417
|
+
checksum: 10c0/51c7d704c5c4ae88bf937124112c9972aed4e1fd29d805cc2d86e0f54cd631ecd4e69db5bb3c1e3b450c741c86e2313328bea0fde925329e8a31a07a7941723c
|
|
19398
19418
|
languageName: node
|
|
19399
19419
|
linkType: hard
|
|
19400
19420
|
|
|
@@ -20155,16 +20175,16 @@ __metadata:
|
|
|
20155
20175
|
linkType: hard
|
|
20156
20176
|
|
|
20157
20177
|
"update-browserslist-db@npm:^1.1.0":
|
|
20158
|
-
version: 1.1.
|
|
20159
|
-
resolution: "update-browserslist-db@npm:1.1.
|
|
20178
|
+
version: 1.1.1
|
|
20179
|
+
resolution: "update-browserslist-db@npm:1.1.1"
|
|
20160
20180
|
dependencies:
|
|
20161
|
-
escalade: "npm:^3.
|
|
20162
|
-
picocolors: "npm:^1.0
|
|
20181
|
+
escalade: "npm:^3.2.0"
|
|
20182
|
+
picocolors: "npm:^1.1.0"
|
|
20163
20183
|
peerDependencies:
|
|
20164
20184
|
browserslist: ">= 4.21.0"
|
|
20165
20185
|
bin:
|
|
20166
20186
|
update-browserslist-db: cli.js
|
|
20167
|
-
checksum: 10c0/
|
|
20187
|
+
checksum: 10c0/536a2979adda2b4be81b07e311bd2f3ad5e978690987956bc5f514130ad50cac87cd22c710b686d79731e00fbee8ef43efe5fcd72baa241045209195d43dcc80
|
|
20168
20188
|
languageName: node
|
|
20169
20189
|
linkType: hard
|
|
20170
20190
|
|