@licklist/design 0.67.3-dev.1 → 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.map +1 -1
- package/dist/events/edit-event-modal/component/EditEventForm/EditEventForm.js +0 -2
- package/dist/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.d.ts +1 -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 +25 -25
- package/dist/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.d.ts +1 -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 +1 -2
- 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/ProductSetControl.d.ts +1 -3
- package/dist/product-set/control/ProductSetControl.d.ts.map +1 -1
- package/dist/product-set/control/ProductSetControl.js +2 -16
- 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/typeahead/Typeahead.d.ts +5 -1
- package/dist/typeahead/Typeahead.d.ts.map +1 -1
- package/dist/typeahead/Typeahead.js +9 -2
- package/package.json +2 -2
- package/src/events/edit-event-modal/component/EditEventForm/EditEventForm.tsx +0 -2
- package/src/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.tsx +32 -37
- package/src/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.tsx +0 -3
- package/src/modals/confirmation/ConfirmModal.tsx +19 -3
- package/src/product-set/card/ProductSetCard.tsx +47 -8
- package/src/product-set/control/ProductSetControl.tsx +0 -17
- 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/typeahead/Typeahead.tsx +15 -1
- package/yarn.lock +103 -110
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Form } from "react-bootstrap";
|
|
2
|
+
import { useTranslation } from "react-i18next";
|
|
3
|
+
|
|
4
|
+
export const ProductSetNameControl = ({
|
|
5
|
+
value,
|
|
6
|
+
onChange,
|
|
7
|
+
error,
|
|
8
|
+
}: {
|
|
9
|
+
value: string;
|
|
10
|
+
onChange: (value: string) => void;
|
|
11
|
+
error?: string;
|
|
12
|
+
}) => {
|
|
13
|
+
const { t } = useTranslation(["Design"]);
|
|
14
|
+
return (
|
|
15
|
+
<Form.Group>
|
|
16
|
+
<Form.Label>{t("Design:ProductSetName")}*</Form.Label>
|
|
17
|
+
<Form.Control
|
|
18
|
+
value={value}
|
|
19
|
+
maxLength={255}
|
|
20
|
+
onChange={(e) => onChange(e.target.value)}
|
|
21
|
+
placeholder={t("Design:placeholderProductSetName")}
|
|
22
|
+
isInvalid={Boolean(error)}
|
|
23
|
+
/>
|
|
24
|
+
<Form.Control.Feedback type="invalid">{error}</Form.Control.Feedback>
|
|
25
|
+
</Form.Group>
|
|
26
|
+
);
|
|
27
|
+
};
|
|
@@ -3,6 +3,7 @@ import { SmsTemplate } from "@licklist/core/dist/DataMapper/Notification/SmsTemp
|
|
|
3
3
|
import { TFunction } from "react-i18next";
|
|
4
4
|
import { UseFormSetError } from "react-hook-form";
|
|
5
5
|
import { checkIfZoneCategory } from "@licklist/plugins";
|
|
6
|
+
import { ProductSet } from "@licklist/core/dist/DataMapper/Product/ProductSetDataMapper";
|
|
6
7
|
import { TemplateItem } from "../control/ProductSetControl";
|
|
7
8
|
import { ProductSetFormValues } from "../form/ProductSetForm";
|
|
8
9
|
|
|
@@ -12,6 +13,11 @@ interface CheckAvailableTimesErrors {
|
|
|
12
13
|
t: TFunction;
|
|
13
14
|
}
|
|
14
15
|
|
|
16
|
+
export interface MenuTypeheadItem {
|
|
17
|
+
id: number;
|
|
18
|
+
label: string;
|
|
19
|
+
value: number;
|
|
20
|
+
}
|
|
15
21
|
export const moveArrayElements = <T>(
|
|
16
22
|
array: T[],
|
|
17
23
|
prevIndex: number,
|
|
@@ -84,3 +90,8 @@ export const checkAvailableTimesErrors = ({
|
|
|
84
90
|
});
|
|
85
91
|
return hasError;
|
|
86
92
|
};
|
|
93
|
+
|
|
94
|
+
export const getTypeHeadItemsFromMenus = (
|
|
95
|
+
menus?: (ProductSet | ProductSetFormValues)[],
|
|
96
|
+
): MenuTypeheadItem[] =>
|
|
97
|
+
menus?.map((menu) => ({ id: menu.id, value: menu.id, label: menu.name }));
|
|
@@ -12,10 +12,13 @@ export interface TypeaheadProps {
|
|
|
12
12
|
placeholder: string;
|
|
13
13
|
isRequired?: boolean;
|
|
14
14
|
name: string;
|
|
15
|
+
value?: TypeaheadOptions;
|
|
15
16
|
isMultipleChoise?: boolean;
|
|
16
17
|
noOptionsMessage: string;
|
|
17
18
|
isInvalid?: boolean;
|
|
18
19
|
isCouponForm?: boolean;
|
|
20
|
+
containerStyles?: CSSObjectWithLabel;
|
|
21
|
+
onChangeValue?: (value: TypeaheadOptions) => void;
|
|
19
22
|
}
|
|
20
23
|
|
|
21
24
|
function Typeahead({
|
|
@@ -24,6 +27,9 @@ function Typeahead({
|
|
|
24
27
|
isRequired = false,
|
|
25
28
|
isMultipleChoise,
|
|
26
29
|
name = "",
|
|
30
|
+
value,
|
|
31
|
+
onChangeValue,
|
|
32
|
+
containerStyles,
|
|
27
33
|
isCouponForm = false,
|
|
28
34
|
noOptionsMessage = "",
|
|
29
35
|
isInvalid,
|
|
@@ -53,15 +59,23 @@ function Typeahead({
|
|
|
53
59
|
render={({ field }) => (
|
|
54
60
|
<Select
|
|
55
61
|
placeholder={placeholder}
|
|
56
|
-
value={field.value}
|
|
62
|
+
value={value ?? field.value}
|
|
57
63
|
isMulti={isMultipleChoise}
|
|
58
64
|
styles={{
|
|
65
|
+
container: (base) => ({
|
|
66
|
+
...base,
|
|
67
|
+
...containerStyles,
|
|
68
|
+
}),
|
|
59
69
|
control: (base) => ({
|
|
60
70
|
...base,
|
|
61
71
|
...getStyle(),
|
|
62
72
|
}),
|
|
63
73
|
}}
|
|
64
74
|
onChange={(value) => {
|
|
75
|
+
if (onChangeValue) {
|
|
76
|
+
onChangeValue(value);
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
65
79
|
field.onChange(value);
|
|
66
80
|
}}
|
|
67
81
|
options={options}
|
package/yarn.lock
CHANGED
|
@@ -3226,114 +3226,114 @@ __metadata:
|
|
|
3226
3226
|
languageName: node
|
|
3227
3227
|
linkType: hard
|
|
3228
3228
|
|
|
3229
|
-
"@rollup/rollup-android-arm-eabi@npm:4.22.
|
|
3230
|
-
version: 4.22.
|
|
3231
|
-
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"
|
|
3232
3232
|
conditions: os=android & cpu=arm
|
|
3233
3233
|
languageName: node
|
|
3234
3234
|
linkType: hard
|
|
3235
3235
|
|
|
3236
|
-
"@rollup/rollup-android-arm64@npm:4.22.
|
|
3237
|
-
version: 4.22.
|
|
3238
|
-
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"
|
|
3239
3239
|
conditions: os=android & cpu=arm64
|
|
3240
3240
|
languageName: node
|
|
3241
3241
|
linkType: hard
|
|
3242
3242
|
|
|
3243
|
-
"@rollup/rollup-darwin-arm64@npm:4.22.
|
|
3244
|
-
version: 4.22.
|
|
3245
|
-
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"
|
|
3246
3246
|
conditions: os=darwin & cpu=arm64
|
|
3247
3247
|
languageName: node
|
|
3248
3248
|
linkType: hard
|
|
3249
3249
|
|
|
3250
|
-
"@rollup/rollup-darwin-x64@npm:4.22.
|
|
3251
|
-
version: 4.22.
|
|
3252
|
-
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"
|
|
3253
3253
|
conditions: os=darwin & cpu=x64
|
|
3254
3254
|
languageName: node
|
|
3255
3255
|
linkType: hard
|
|
3256
3256
|
|
|
3257
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.22.
|
|
3258
|
-
version: 4.22.
|
|
3259
|
-
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"
|
|
3260
3260
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3261
3261
|
languageName: node
|
|
3262
3262
|
linkType: hard
|
|
3263
3263
|
|
|
3264
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.22.
|
|
3265
|
-
version: 4.22.
|
|
3266
|
-
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"
|
|
3267
3267
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3268
3268
|
languageName: node
|
|
3269
3269
|
linkType: hard
|
|
3270
3270
|
|
|
3271
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.22.
|
|
3272
|
-
version: 4.22.
|
|
3273
|
-
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"
|
|
3274
3274
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3275
3275
|
languageName: node
|
|
3276
3276
|
linkType: hard
|
|
3277
3277
|
|
|
3278
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.22.
|
|
3279
|
-
version: 4.22.
|
|
3280
|
-
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"
|
|
3281
3281
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3282
3282
|
languageName: node
|
|
3283
3283
|
linkType: hard
|
|
3284
3284
|
|
|
3285
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.22.
|
|
3286
|
-
version: 4.22.
|
|
3287
|
-
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"
|
|
3288
3288
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3289
3289
|
languageName: node
|
|
3290
3290
|
linkType: hard
|
|
3291
3291
|
|
|
3292
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.22.
|
|
3293
|
-
version: 4.22.
|
|
3294
|
-
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"
|
|
3295
3295
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3296
3296
|
languageName: node
|
|
3297
3297
|
linkType: hard
|
|
3298
3298
|
|
|
3299
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.22.
|
|
3300
|
-
version: 4.22.
|
|
3301
|
-
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"
|
|
3302
3302
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3303
3303
|
languageName: node
|
|
3304
3304
|
linkType: hard
|
|
3305
3305
|
|
|
3306
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.22.
|
|
3307
|
-
version: 4.22.
|
|
3308
|
-
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"
|
|
3309
3309
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3310
3310
|
languageName: node
|
|
3311
3311
|
linkType: hard
|
|
3312
3312
|
|
|
3313
|
-
"@rollup/rollup-linux-x64-musl@npm:4.22.
|
|
3314
|
-
version: 4.22.
|
|
3315
|
-
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"
|
|
3316
3316
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3317
3317
|
languageName: node
|
|
3318
3318
|
linkType: hard
|
|
3319
3319
|
|
|
3320
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.22.
|
|
3321
|
-
version: 4.22.
|
|
3322
|
-
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"
|
|
3323
3323
|
conditions: os=win32 & cpu=arm64
|
|
3324
3324
|
languageName: node
|
|
3325
3325
|
linkType: hard
|
|
3326
3326
|
|
|
3327
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.22.
|
|
3328
|
-
version: 4.22.
|
|
3329
|
-
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"
|
|
3330
3330
|
conditions: os=win32 & cpu=ia32
|
|
3331
3331
|
languageName: node
|
|
3332
3332
|
linkType: hard
|
|
3333
3333
|
|
|
3334
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.22.
|
|
3335
|
-
version: 4.22.
|
|
3336
|
-
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"
|
|
3337
3337
|
conditions: os=win32 & cpu=x64
|
|
3338
3338
|
languageName: node
|
|
3339
3339
|
linkType: hard
|
|
@@ -5364,14 +5364,7 @@ __metadata:
|
|
|
5364
5364
|
languageName: node
|
|
5365
5365
|
linkType: hard
|
|
5366
5366
|
|
|
5367
|
-
"@types/estree@npm:1.0.
|
|
5368
|
-
version: 1.0.5
|
|
5369
|
-
resolution: "@types/estree@npm:1.0.5"
|
|
5370
|
-
checksum: 10c0/b3b0e334288ddb407c7b3357ca67dbee75ee22db242ca7c56fe27db4e1a31989cb8af48a84dd401deb787fe10cc6b2ab1ee82dc4783be87ededbe3d53c79c70d
|
|
5371
|
-
languageName: node
|
|
5372
|
-
linkType: hard
|
|
5373
|
-
|
|
5374
|
-
"@types/estree@npm:^1.0.0":
|
|
5367
|
+
"@types/estree@npm:1.0.6, @types/estree@npm:^1.0.0":
|
|
5375
5368
|
version: 1.0.6
|
|
5376
5369
|
resolution: "@types/estree@npm:1.0.6"
|
|
5377
5370
|
checksum: 10c0/cdfd751f6f9065442cd40957c07fd80361c962869aa853c1c2fd03e101af8b9389d8ff4955a43a6fcfa223dd387a089937f95be0f3eec21ca527039fd2d9859a
|
|
@@ -5601,11 +5594,11 @@ __metadata:
|
|
|
5601
5594
|
linkType: hard
|
|
5602
5595
|
|
|
5603
5596
|
"@types/node@npm:*":
|
|
5604
|
-
version: 22.7.
|
|
5605
|
-
resolution: "@types/node@npm:22.7.
|
|
5597
|
+
version: 22.7.4
|
|
5598
|
+
resolution: "@types/node@npm:22.7.4"
|
|
5606
5599
|
dependencies:
|
|
5607
5600
|
undici-types: "npm:~6.19.2"
|
|
5608
|
-
checksum: 10c0/
|
|
5601
|
+
checksum: 10c0/c22bf54515c78ff3170142c1e718b90e2a0003419dc2d55f79c9c9362edd590a6ab1450deb09ff6e1b32d1b4698da407930b16285e8be3a009ea6cd2695cac01
|
|
5609
5602
|
languageName: node
|
|
5610
5603
|
linkType: hard
|
|
5611
5604
|
|
|
@@ -5873,12 +5866,12 @@ __metadata:
|
|
|
5873
5866
|
linkType: hard
|
|
5874
5867
|
|
|
5875
5868
|
"@types/react@npm:*, @types/react@npm:16 || 17 || 18, @types/react@npm:>=16.14.8, @types/react@npm:>=16.9.11":
|
|
5876
|
-
version: 18.3.
|
|
5877
|
-
resolution: "@types/react@npm:18.3.
|
|
5869
|
+
version: 18.3.10
|
|
5870
|
+
resolution: "@types/react@npm:18.3.10"
|
|
5878
5871
|
dependencies:
|
|
5879
5872
|
"@types/prop-types": "npm:*"
|
|
5880
5873
|
csstype: "npm:^3.0.2"
|
|
5881
|
-
checksum: 10c0/
|
|
5874
|
+
checksum: 10c0/f5be1de1b0331c1fdb33d577f4cf7f1b949d4bded5347b2351a537f03c51dade5be115e21b161dcf1b37061954d320f6a0bdf8d7b70e24eda51071fdd614383d
|
|
5882
5875
|
languageName: node
|
|
5883
5876
|
linkType: hard
|
|
5884
5877
|
|
|
@@ -5894,13 +5887,13 @@ __metadata:
|
|
|
5894
5887
|
linkType: hard
|
|
5895
5888
|
|
|
5896
5889
|
"@types/react@npm:^17":
|
|
5897
|
-
version: 17.0.
|
|
5898
|
-
resolution: "@types/react@npm:17.0.
|
|
5890
|
+
version: 17.0.83
|
|
5891
|
+
resolution: "@types/react@npm:17.0.83"
|
|
5899
5892
|
dependencies:
|
|
5900
5893
|
"@types/prop-types": "npm:*"
|
|
5901
5894
|
"@types/scheduler": "npm:^0.16"
|
|
5902
5895
|
csstype: "npm:^3.0.2"
|
|
5903
|
-
checksum: 10c0/
|
|
5896
|
+
checksum: 10c0/c8f76790190a9df42099f5f78d08dd4095f2da3bd97ff7cce0001d5a97ff3ffb31f703575acf2c457606e0d0b229ca8d1ba0ff459b77a4e44c5ea5154fe3fb4b
|
|
5904
5897
|
languageName: node
|
|
5905
5898
|
linkType: hard
|
|
5906
5899
|
|
|
@@ -6161,26 +6154,26 @@ __metadata:
|
|
|
6161
6154
|
languageName: node
|
|
6162
6155
|
linkType: hard
|
|
6163
6156
|
|
|
6164
|
-
"@vue/compiler-core@npm:3.5.
|
|
6165
|
-
version: 3.5.
|
|
6166
|
-
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"
|
|
6167
6160
|
dependencies:
|
|
6168
6161
|
"@babel/parser": "npm:^7.25.3"
|
|
6169
|
-
"@vue/shared": "npm:3.5.
|
|
6162
|
+
"@vue/shared": "npm:3.5.10"
|
|
6170
6163
|
entities: "npm:^4.5.0"
|
|
6171
6164
|
estree-walker: "npm:^2.0.2"
|
|
6172
6165
|
source-map-js: "npm:^1.2.0"
|
|
6173
|
-
checksum: 10c0/
|
|
6166
|
+
checksum: 10c0/fb84f4cca8d9890289ac2e880edab8bd07231b0255cbc5578d99a6c07c299ae80a328eb0be1f1ab1d211d80d7d5fe156e573c81b3b30956257eb78f1ac7ecf8c
|
|
6174
6167
|
languageName: node
|
|
6175
6168
|
linkType: hard
|
|
6176
6169
|
|
|
6177
6170
|
"@vue/compiler-dom@npm:^3.4.0":
|
|
6178
|
-
version: 3.5.
|
|
6179
|
-
resolution: "@vue/compiler-dom@npm:3.5.
|
|
6171
|
+
version: 3.5.10
|
|
6172
|
+
resolution: "@vue/compiler-dom@npm:3.5.10"
|
|
6180
6173
|
dependencies:
|
|
6181
|
-
"@vue/compiler-core": "npm:3.5.
|
|
6182
|
-
"@vue/shared": "npm:3.5.
|
|
6183
|
-
checksum: 10c0/
|
|
6174
|
+
"@vue/compiler-core": "npm:3.5.10"
|
|
6175
|
+
"@vue/shared": "npm:3.5.10"
|
|
6176
|
+
checksum: 10c0/30c9a0ee414b5d77d8479a17f7cf2e613a351e322edf039ffa827bb93d97750a1002089747f85cf93a9155748df898287417f52473cab17caf6507716cff570e
|
|
6184
6177
|
languageName: node
|
|
6185
6178
|
linkType: hard
|
|
6186
6179
|
|
|
@@ -6215,10 +6208,10 @@ __metadata:
|
|
|
6215
6208
|
languageName: node
|
|
6216
6209
|
linkType: hard
|
|
6217
6210
|
|
|
6218
|
-
"@vue/shared@npm:3.5.
|
|
6219
|
-
version: 3.5.
|
|
6220
|
-
resolution: "@vue/shared@npm:3.5.
|
|
6221
|
-
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
|
|
6222
6215
|
languageName: node
|
|
6223
6216
|
linkType: hard
|
|
6224
6217
|
|
|
@@ -10050,7 +10043,7 @@ __metadata:
|
|
|
10050
10043
|
languageName: node
|
|
10051
10044
|
linkType: hard
|
|
10052
10045
|
|
|
10053
|
-
"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":
|
|
10054
10047
|
version: 3.2.0
|
|
10055
10048
|
resolution: "escalade@npm:3.2.0"
|
|
10056
10049
|
checksum: 10c0/ced4dd3a78e15897ed3be74e635110bbf3b08877b0a41be50dcb325ee0e0b5f65fc2d50e9845194d7c4633f327e2e1c6cce00a71b617c5673df0374201d67f65
|
|
@@ -15508,7 +15501,7 @@ __metadata:
|
|
|
15508
15501
|
languageName: node
|
|
15509
15502
|
linkType: hard
|
|
15510
15503
|
|
|
15511
|
-
"picocolors@npm:^1.0.0, picocolors@npm:^1.
|
|
15504
|
+
"picocolors@npm:^1.0.0, picocolors@npm:^1.1.0":
|
|
15512
15505
|
version: 1.1.0
|
|
15513
15506
|
resolution: "picocolors@npm:1.1.0"
|
|
15514
15507
|
checksum: 10c0/86946f6032148801ef09c051c6fb13b5cf942eaf147e30ea79edb91dd32d700934edebe782a1078ff859fb2b816792e97ef4dab03d7f0b804f6b01a0df35e023
|
|
@@ -17924,26 +17917,26 @@ __metadata:
|
|
|
17924
17917
|
linkType: hard
|
|
17925
17918
|
|
|
17926
17919
|
"rollup@npm:^4.13.0":
|
|
17927
|
-
version: 4.22.
|
|
17928
|
-
resolution: "rollup@npm:4.22.
|
|
17929
|
-
dependencies:
|
|
17930
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.22.
|
|
17931
|
-
"@rollup/rollup-android-arm64": "npm:4.22.
|
|
17932
|
-
"@rollup/rollup-darwin-arm64": "npm:4.22.
|
|
17933
|
-
"@rollup/rollup-darwin-x64": "npm:4.22.
|
|
17934
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.22.
|
|
17935
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.22.
|
|
17936
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.22.
|
|
17937
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.22.
|
|
17938
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.22.
|
|
17939
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.22.
|
|
17940
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.22.
|
|
17941
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.22.
|
|
17942
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.22.
|
|
17943
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.22.
|
|
17944
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.22.
|
|
17945
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.22.
|
|
17946
|
-
"@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"
|
|
17947
17940
|
fsevents: "npm:~2.3.2"
|
|
17948
17941
|
dependenciesMeta:
|
|
17949
17942
|
"@rollup/rollup-android-arm-eabi":
|
|
@@ -17982,7 +17975,7 @@ __metadata:
|
|
|
17982
17975
|
optional: true
|
|
17983
17976
|
bin:
|
|
17984
17977
|
rollup: dist/bin/rollup
|
|
17985
|
-
checksum: 10c0/
|
|
17978
|
+
checksum: 10c0/9b9432206ecc2f68edca965f8cf119eccd5346c86c392f733a8062b7c6a309b70c35e8448024146bd0e3444d8b3797758c8e29248b273d1433de94a4ea265246
|
|
17986
17979
|
languageName: node
|
|
17987
17980
|
linkType: hard
|
|
17988
17981
|
|
|
@@ -19412,8 +19405,8 @@ __metadata:
|
|
|
19412
19405
|
linkType: hard
|
|
19413
19406
|
|
|
19414
19407
|
"terser@npm:^5.3.4":
|
|
19415
|
-
version: 5.34.
|
|
19416
|
-
resolution: "terser@npm:5.34.
|
|
19408
|
+
version: 5.34.1
|
|
19409
|
+
resolution: "terser@npm:5.34.1"
|
|
19417
19410
|
dependencies:
|
|
19418
19411
|
"@jridgewell/source-map": "npm:^0.3.3"
|
|
19419
19412
|
acorn: "npm:^8.8.2"
|
|
@@ -19421,7 +19414,7 @@ __metadata:
|
|
|
19421
19414
|
source-map-support: "npm:~0.5.20"
|
|
19422
19415
|
bin:
|
|
19423
19416
|
terser: bin/terser
|
|
19424
|
-
checksum: 10c0/
|
|
19417
|
+
checksum: 10c0/51c7d704c5c4ae88bf937124112c9972aed4e1fd29d805cc2d86e0f54cd631ecd4e69db5bb3c1e3b450c741c86e2313328bea0fde925329e8a31a07a7941723c
|
|
19425
19418
|
languageName: node
|
|
19426
19419
|
linkType: hard
|
|
19427
19420
|
|
|
@@ -20182,16 +20175,16 @@ __metadata:
|
|
|
20182
20175
|
linkType: hard
|
|
20183
20176
|
|
|
20184
20177
|
"update-browserslist-db@npm:^1.1.0":
|
|
20185
|
-
version: 1.1.
|
|
20186
|
-
resolution: "update-browserslist-db@npm:1.1.
|
|
20178
|
+
version: 1.1.1
|
|
20179
|
+
resolution: "update-browserslist-db@npm:1.1.1"
|
|
20187
20180
|
dependencies:
|
|
20188
|
-
escalade: "npm:^3.
|
|
20189
|
-
picocolors: "npm:^1.0
|
|
20181
|
+
escalade: "npm:^3.2.0"
|
|
20182
|
+
picocolors: "npm:^1.1.0"
|
|
20190
20183
|
peerDependencies:
|
|
20191
20184
|
browserslist: ">= 4.21.0"
|
|
20192
20185
|
bin:
|
|
20193
20186
|
update-browserslist-db: cli.js
|
|
20194
|
-
checksum: 10c0/
|
|
20187
|
+
checksum: 10c0/536a2979adda2b4be81b07e311bd2f3ad5e978690987956bc5f514130ad50cac87cd22c710b686d79731e00fbee8ef43efe5fcd72baa241045209195d43dcc80
|
|
20195
20188
|
languageName: node
|
|
20196
20189
|
linkType: hard
|
|
20197
20190
|
|