@licklist/design 0.71.18-dev.4 → 0.71.18-dev.6
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/iframe/ProductWithModifierModal/ModifierSetModal/ProductWithModifierSetForm.js +3 -3
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/controll/ModifierSetControll.d.ts +1 -3
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/controll/ModifierSetControll.d.ts.map +1 -1
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/controll/ModifierSetControll.js +171 -219
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/controll/ProductControll.d.ts +1 -3
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/controll/ProductControll.d.ts.map +1 -1
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/controll/ProductControll.js +77 -35
- package/dist/iframe/ProductWithModifierModal/utils.d.ts +5 -0
- package/dist/iframe/ProductWithModifierModal/utils.d.ts.map +1 -0
- package/dist/iframe/ProductWithModifierModal/utils.js +19 -0
- package/dist/product-set/form/ProductsControl.d.ts.map +1 -1
- package/dist/product-set/form/ProductsControl.js +10 -3
- package/dist/styles/product-set/EditProductSetElement.scss +1 -0
- package/dist/styles/product-set/ProductSetForm.scss +1 -0
- package/dist/styles/themes/bookedit/index.scss +5 -0
- package/package.json +3 -3
- package/src/iframe/ProductWithModifierModal/ModifierSetModal/ProductWithModifierSetForm.tsx +3 -3
- package/src/iframe/ProductWithModifierModal/ModifierSetModal/controll/ModifierSetControll.tsx +47 -131
- package/src/iframe/ProductWithModifierModal/ModifierSetModal/controll/ProductControll.tsx +76 -35
- package/src/iframe/ProductWithModifierModal/utils.ts +28 -0
- package/src/product-set/form/ProductsControl.tsx +13 -4
- package/src/styles/product-set/EditProductSetElement.scss +1 -0
- package/src/styles/product-set/ProductSetForm.scss +1 -0
- package/src/styles/themes/bookedit/index.scss +5 -0
- package/yarn.lock +60 -32
|
@@ -1,55 +1,96 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
Controller,
|
|
4
|
-
FieldErrors,
|
|
5
|
-
FieldValues,
|
|
6
|
-
} from 'react-hook-form'
|
|
1
|
+
import { useEffect } from 'react'
|
|
2
|
+
import { useFormContext, Controller } from 'react-hook-form'
|
|
7
3
|
import { OrderModifierByProduct } from '@licklist/core/dist/DataMapper/Order/OrderModifiierByProduct'
|
|
8
4
|
import { Product } from '@licklist/plugins/dist/types/context/sale/menuSteps'
|
|
5
|
+
import { useTranslation } from 'react-i18next' // Added translation hook
|
|
9
6
|
import { ModifiersSetControl } from './ModifierSetControll'
|
|
7
|
+
import { orderProductModifiersQuantity } from '../../utils'
|
|
10
8
|
|
|
11
9
|
interface ProductControlProps {
|
|
12
10
|
product: Product
|
|
13
11
|
isLoading?: boolean
|
|
14
12
|
editOrderModifier?: OrderModifierByProduct
|
|
15
|
-
errors?: FieldErrors<FieldValues>
|
|
16
13
|
}
|
|
17
14
|
|
|
18
15
|
export const ProductControl = ({
|
|
19
16
|
product,
|
|
20
17
|
isLoading = false,
|
|
21
18
|
editOrderModifier,
|
|
22
|
-
errors,
|
|
23
19
|
}: ProductControlProps) => {
|
|
24
|
-
const {
|
|
20
|
+
const { t } = useTranslation() // Added translation hook
|
|
21
|
+
const {
|
|
22
|
+
control,
|
|
23
|
+
watch,
|
|
24
|
+
formState: { isValid },
|
|
25
|
+
clearErrors,
|
|
26
|
+
} = useFormContext()
|
|
25
27
|
const modifiersSet = product?.modifiersSet || []
|
|
28
|
+
const orderModifiersSets = watch(`${product.id}.orderProductModifiers`)
|
|
29
|
+
|
|
30
|
+
useEffect(() => {
|
|
31
|
+
if (!isValid) return
|
|
32
|
+
clearErrors()
|
|
33
|
+
}, [isValid, clearErrors])
|
|
26
34
|
|
|
27
35
|
return (
|
|
28
|
-
<
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
36
|
+
<div className='mb-8 pt-4'>
|
|
37
|
+
<div className='d-flex flex-column'>
|
|
38
|
+
{modifiersSet.map((modifierSet) => {
|
|
39
|
+
const orderProductModifiersMaxQuantity =
|
|
40
|
+
orderProductModifiersQuantity(orderModifiersSets, modifierSet)
|
|
41
|
+
|
|
42
|
+
return (
|
|
43
|
+
<div className='modifier-set-container' key={modifierSet.id}>
|
|
44
|
+
<div className='modifier-header'>
|
|
45
|
+
<div className='title'>{modifierSet.name}</div>
|
|
46
|
+
</div>
|
|
47
|
+
<Controller
|
|
48
|
+
control={control}
|
|
49
|
+
name={`${product.id}.${modifierSet.id}`}
|
|
50
|
+
rules={{
|
|
51
|
+
validate: () => {
|
|
52
|
+
const { maxItems, minItems } = modifierSet
|
|
53
|
+
|
|
54
|
+
if (
|
|
55
|
+
!!minItems &&
|
|
56
|
+
orderProductModifiersMaxQuantity < minItems
|
|
57
|
+
) {
|
|
58
|
+
return t('Validation:quantityMinNumberModifier', {
|
|
59
|
+
min: minItems,
|
|
60
|
+
}) as string
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (orderProductModifiersMaxQuantity > maxItems) {
|
|
64
|
+
return t('Validation:quantityMaxNumberModifier', {
|
|
65
|
+
max: maxItems,
|
|
66
|
+
}) as string
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return true
|
|
70
|
+
},
|
|
71
|
+
}}
|
|
72
|
+
render={({ fieldState: { error } }) => (
|
|
73
|
+
<>
|
|
74
|
+
<ModifiersSetControl
|
|
75
|
+
modifierSet={modifierSet}
|
|
76
|
+
productId={product.id}
|
|
77
|
+
modifiers={modifierSet.modifiers}
|
|
78
|
+
isEditMode={!!editOrderModifier?.modifiers}
|
|
79
|
+
orderProductModifierSets={editOrderModifier?.modifiers}
|
|
80
|
+
isLoading={isLoading}
|
|
81
|
+
/>
|
|
82
|
+
{error?.message && (
|
|
83
|
+
<div className='invalid-feedback d-flex pl-4'>
|
|
84
|
+
{error?.message}!
|
|
85
|
+
</div>
|
|
86
|
+
)}
|
|
87
|
+
</>
|
|
88
|
+
)}
|
|
89
|
+
/>
|
|
90
|
+
</div>
|
|
91
|
+
)
|
|
92
|
+
})}
|
|
93
|
+
</div>
|
|
94
|
+
</div>
|
|
54
95
|
)
|
|
55
96
|
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { OrderModifier } from "@licklist/core/dist/DataMapper/Order/OrderModifierDataMapper"
|
|
2
|
+
import { uniqBy } from "lodash"
|
|
3
|
+
|
|
4
|
+
export type selectModifierType = 'radio' | 'checkbox' | 'selector'
|
|
5
|
+
|
|
6
|
+
export const filteredOrderModifierSets = (
|
|
7
|
+
modifiersSet: OrderModifier[],
|
|
8
|
+
): OrderModifier[] => {
|
|
9
|
+
if (!modifiersSet) return []
|
|
10
|
+
const orderModifier = modifiersSet
|
|
11
|
+
.flat()
|
|
12
|
+
.filter((modifier) => !!modifier?.quantity)
|
|
13
|
+
|
|
14
|
+
return uniqBy(
|
|
15
|
+
orderModifier,
|
|
16
|
+
(item) => `${item.modifierId}-${item.modifierSetId}`,
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export const orderProductModifiersQuantity = (
|
|
21
|
+
orderModifiersSets: OrderModifier[],
|
|
22
|
+
modifierSet,
|
|
23
|
+
) => {
|
|
24
|
+
const filteredOrderModifier = filteredOrderModifierSets(orderModifiersSets)
|
|
25
|
+
return filteredOrderModifier.filter(
|
|
26
|
+
(item) => item?.modifierSetId === modifierSet.id,
|
|
27
|
+
).length
|
|
28
|
+
}
|
|
@@ -141,6 +141,16 @@ export function ProductsControl({
|
|
|
141
141
|
],
|
|
142
142
|
})
|
|
143
143
|
|
|
144
|
+
const modifierSets = useWatch({
|
|
145
|
+
control,
|
|
146
|
+
name: [
|
|
147
|
+
...fields.map(
|
|
148
|
+
(_, index) =>
|
|
149
|
+
`${productControlFieldName}.${index}.modifiersSet` as const,
|
|
150
|
+
),
|
|
151
|
+
],
|
|
152
|
+
})
|
|
153
|
+
|
|
144
154
|
const categoryProductErrors =
|
|
145
155
|
errors?.steps?.[stepIndex]?.productCategories?.[productCategoryIndex]
|
|
146
156
|
?.products
|
|
@@ -200,9 +210,8 @@ export function ProductsControl({
|
|
|
200
210
|
? !!product.id
|
|
201
211
|
: isOverrides && !!product.originalProductId
|
|
202
212
|
|
|
203
|
-
const modifierSets = product?.modifiersSet.length || 0
|
|
204
|
-
|
|
205
213
|
const isNewProductOverrides = isCreateNewOverrides && !!product.id
|
|
214
|
+
const modifiersSets = modifierSets[index]?.length || 0
|
|
206
215
|
|
|
207
216
|
return (
|
|
208
217
|
<Controller
|
|
@@ -247,8 +256,8 @@ export function ProductsControl({
|
|
|
247
256
|
} `}
|
|
248
257
|
</span>
|
|
249
258
|
</div>
|
|
250
|
-
{!!
|
|
251
|
-
<Badge className='modifier-badge'>{`${
|
|
259
|
+
{!!modifiersSets && (
|
|
260
|
+
<Badge className='modifier-badge'>{`${modifiersSets} ${t('modifiersSets')}`}</Badge>
|
|
252
261
|
)}
|
|
253
262
|
</div>
|
|
254
263
|
}
|
package/yarn.lock
CHANGED
|
@@ -2481,6 +2481,34 @@ __metadata:
|
|
|
2481
2481
|
languageName: node
|
|
2482
2482
|
linkType: hard
|
|
2483
2483
|
|
|
2484
|
+
"@licklist/core@npm:0.31.2-dev.11":
|
|
2485
|
+
version: 0.31.2-dev.11
|
|
2486
|
+
resolution: "@licklist/core@npm:0.31.2-dev.11"
|
|
2487
|
+
dependencies:
|
|
2488
|
+
"@sentry/browser": "npm:6.2.0"
|
|
2489
|
+
axios: "npm:0.26.0"
|
|
2490
|
+
i18next: "npm:19.4.5"
|
|
2491
|
+
luxon: "npm:3.5.0"
|
|
2492
|
+
react: "npm:17.0.2"
|
|
2493
|
+
react-dom: "npm:17.0.2"
|
|
2494
|
+
react-i18next: "npm:11.8.8"
|
|
2495
|
+
react-intl: "npm:6.6.8"
|
|
2496
|
+
uuid: "npm:9.0.0"
|
|
2497
|
+
wait-for-expect: "npm:3.0.2"
|
|
2498
|
+
zustand: "npm:3.7.2"
|
|
2499
|
+
peerDependencies:
|
|
2500
|
+
"@licklist/eslint-config": 0.5.6
|
|
2501
|
+
axios: 0.26.0
|
|
2502
|
+
luxon: 3.5.0
|
|
2503
|
+
react: 17.0.2
|
|
2504
|
+
react-dom: 17.0.2
|
|
2505
|
+
react-i18next: 11.8.8
|
|
2506
|
+
react-intl: 6.6.8
|
|
2507
|
+
zustand: 3.7.2
|
|
2508
|
+
checksum: 10c0/eabcc95fb4a12a60c00c5b15060a89495f7c6980a53d27fc3dc7325eccb4a5d604e49aa148b68ae0bcb98f5e78f0dc2695833342756a3d5d9d2640bbd93dfaaf
|
|
2509
|
+
languageName: node
|
|
2510
|
+
linkType: hard
|
|
2511
|
+
|
|
2484
2512
|
"@licklist/design@workspace:.":
|
|
2485
2513
|
version: 0.0.0-use.local
|
|
2486
2514
|
resolution: "@licklist/design@workspace:."
|
|
@@ -2492,7 +2520,7 @@ __metadata:
|
|
|
2492
2520
|
"@dnd-kit/utilities": "npm:2.0.0"
|
|
2493
2521
|
"@fortawesome/fontawesome-svg-core": "npm:1.2.34"
|
|
2494
2522
|
"@fortawesome/free-solid-svg-icons": "npm:5.15.2"
|
|
2495
|
-
"@licklist/core": "npm:0.31.2-dev.
|
|
2523
|
+
"@licklist/core": "npm:0.31.2-dev.11"
|
|
2496
2524
|
"@licklist/eslint-config": "npm:0.5.6"
|
|
2497
2525
|
"@licklist/plugins": "npm:0.35.1-dev.8"
|
|
2498
2526
|
"@mantine/core": "npm:6.0.22"
|
|
@@ -2623,7 +2651,7 @@ __metadata:
|
|
|
2623
2651
|
vite-plugin-svgr: "npm:4.2.0"
|
|
2624
2652
|
vite-tsconfig-paths: "npm:5.0.1"
|
|
2625
2653
|
peerDependencies:
|
|
2626
|
-
"@licklist/core": 0.31.2-dev.
|
|
2654
|
+
"@licklist/core": 0.31.2-dev.11
|
|
2627
2655
|
"@licklist/eslint-config": 0.5.6
|
|
2628
2656
|
"@licklist/plugins": 0.35.1-dev.8
|
|
2629
2657
|
lodash: 4.17.21
|
|
@@ -5147,14 +5175,14 @@ __metadata:
|
|
|
5147
5175
|
linkType: hard
|
|
5148
5176
|
|
|
5149
5177
|
"@tiptap/extension-bubble-menu@npm:^2.0.0-beta.56":
|
|
5150
|
-
version: 2.11.
|
|
5151
|
-
resolution: "@tiptap/extension-bubble-menu@npm:2.11.
|
|
5178
|
+
version: 2.11.5
|
|
5179
|
+
resolution: "@tiptap/extension-bubble-menu@npm:2.11.5"
|
|
5152
5180
|
dependencies:
|
|
5153
5181
|
tippy.js: "npm:^6.3.7"
|
|
5154
5182
|
peerDependencies:
|
|
5155
5183
|
"@tiptap/core": ^2.7.0
|
|
5156
5184
|
"@tiptap/pm": ^2.7.0
|
|
5157
|
-
checksum: 10c0/
|
|
5185
|
+
checksum: 10c0/a9112df35a19c875085c4065cee36228aec68c2336ddcff25a4e741e25625397325762abce045ede53c18b58df9235216ef909a099f9ac8f5783d137615e3252
|
|
5158
5186
|
languageName: node
|
|
5159
5187
|
linkType: hard
|
|
5160
5188
|
|
|
@@ -5177,14 +5205,14 @@ __metadata:
|
|
|
5177
5205
|
linkType: hard
|
|
5178
5206
|
|
|
5179
5207
|
"@tiptap/extension-floating-menu@npm:^2.0.0-beta.51":
|
|
5180
|
-
version: 2.11.
|
|
5181
|
-
resolution: "@tiptap/extension-floating-menu@npm:2.11.
|
|
5208
|
+
version: 2.11.5
|
|
5209
|
+
resolution: "@tiptap/extension-floating-menu@npm:2.11.5"
|
|
5182
5210
|
dependencies:
|
|
5183
5211
|
tippy.js: "npm:^6.3.7"
|
|
5184
5212
|
peerDependencies:
|
|
5185
5213
|
"@tiptap/core": ^2.7.0
|
|
5186
5214
|
"@tiptap/pm": ^2.7.0
|
|
5187
|
-
checksum: 10c0/
|
|
5215
|
+
checksum: 10c0/45013b8e7ea13950a76bf62498d48b0d681aeaa88e49b3027f45ec42a42b5006e9f8af25251712cb6ed73a732989e2f95d293b905ba83aa82e2c17aabcfed0b0
|
|
5188
5216
|
languageName: node
|
|
5189
5217
|
linkType: hard
|
|
5190
5218
|
|
|
@@ -6037,9 +6065,9 @@ __metadata:
|
|
|
6037
6065
|
linkType: hard
|
|
6038
6066
|
|
|
6039
6067
|
"@types/webpack-env@npm:^1.16.0":
|
|
6040
|
-
version: 1.18.
|
|
6041
|
-
resolution: "@types/webpack-env@npm:1.18.
|
|
6042
|
-
checksum: 10c0/
|
|
6068
|
+
version: 1.18.8
|
|
6069
|
+
resolution: "@types/webpack-env@npm:1.18.8"
|
|
6070
|
+
checksum: 10c0/527a5d1eb75c5243e4f3665d956c7c340f899955dd25d16c9fd9750406f32e95a3a17d207640295038e8235c0c2a2daf084f420e088e58b965d82fc74f6012d7
|
|
6043
6071
|
languageName: node
|
|
6044
6072
|
linkType: hard
|
|
6045
6073
|
|
|
@@ -8072,9 +8100,9 @@ __metadata:
|
|
|
8072
8100
|
linkType: hard
|
|
8073
8101
|
|
|
8074
8102
|
"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001109, caniuse-lite@npm:^1.0.30001125, caniuse-lite@npm:^1.0.30001646, caniuse-lite@npm:^1.0.30001688":
|
|
8075
|
-
version: 1.0.
|
|
8076
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8077
|
-
checksum: 10c0/
|
|
8103
|
+
version: 1.0.30001696
|
|
8104
|
+
resolution: "caniuse-lite@npm:1.0.30001696"
|
|
8105
|
+
checksum: 10c0/8060584c612b2bc232995a6e31153432de7946b5417d3b3505a3ab76e632e5568ccc7bae38f1a977f21d4fc214f9e64be829213f810694172c9109e258cb5be8
|
|
8078
8106
|
languageName: node
|
|
8079
8107
|
linkType: hard
|
|
8080
8108
|
|
|
@@ -8217,8 +8245,8 @@ __metadata:
|
|
|
8217
8245
|
linkType: hard
|
|
8218
8246
|
|
|
8219
8247
|
"chromatic@npm:^11.4.0":
|
|
8220
|
-
version: 11.25.
|
|
8221
|
-
resolution: "chromatic@npm:11.25.
|
|
8248
|
+
version: 11.25.2
|
|
8249
|
+
resolution: "chromatic@npm:11.25.2"
|
|
8222
8250
|
peerDependencies:
|
|
8223
8251
|
"@chromatic-com/cypress": ^0.*.* || ^1.0.0
|
|
8224
8252
|
"@chromatic-com/playwright": ^0.*.* || ^1.0.0
|
|
@@ -8231,7 +8259,7 @@ __metadata:
|
|
|
8231
8259
|
chroma: dist/bin.js
|
|
8232
8260
|
chromatic: dist/bin.js
|
|
8233
8261
|
chromatic-cli: dist/bin.js
|
|
8234
|
-
checksum: 10c0/
|
|
8262
|
+
checksum: 10c0/2cb4bb40a062005292a4cd606321f6c9bdaa31e255e66bae12c780bca9b72e883c017ebe48c5a9228db88a010f5977571ef7dfdcdd4195ad0e7b955f9966d7df
|
|
8235
8263
|
languageName: node
|
|
8236
8264
|
linkType: hard
|
|
8237
8265
|
|
|
@@ -9861,9 +9889,9 @@ __metadata:
|
|
|
9861
9889
|
linkType: hard
|
|
9862
9890
|
|
|
9863
9891
|
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.73":
|
|
9864
|
-
version: 1.5.
|
|
9865
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9866
|
-
checksum: 10c0/
|
|
9892
|
+
version: 1.5.90
|
|
9893
|
+
resolution: "electron-to-chromium@npm:1.5.90"
|
|
9894
|
+
checksum: 10c0/864715adfebb5932a78f776c99f28a50942884302b42ee6de0ab64ca135891a5a43af3a7c719a7335687c0ee201561011e37d4994558a795f67b9e44f20fc6ee
|
|
9867
9895
|
languageName: node
|
|
9868
9896
|
linkType: hard
|
|
9869
9897
|
|
|
@@ -10975,11 +11003,11 @@ __metadata:
|
|
|
10975
11003
|
linkType: hard
|
|
10976
11004
|
|
|
10977
11005
|
"fastq@npm:^1.6.0":
|
|
10978
|
-
version: 1.
|
|
10979
|
-
resolution: "fastq@npm:1.
|
|
11006
|
+
version: 1.19.0
|
|
11007
|
+
resolution: "fastq@npm:1.19.0"
|
|
10980
11008
|
dependencies:
|
|
10981
11009
|
reusify: "npm:^1.0.4"
|
|
10982
|
-
checksum: 10c0/
|
|
11010
|
+
checksum: 10c0/d6a001638f1574a696660fcbba5300d017760432372c801632c325ca7c16819604841c92fd3ccadcdacec0966ca336363a5ff57bc5f0be335d8ea7ac6087b98f
|
|
10983
11011
|
languageName: node
|
|
10984
11012
|
linkType: hard
|
|
10985
11013
|
|
|
@@ -13775,9 +13803,9 @@ __metadata:
|
|
|
13775
13803
|
linkType: hard
|
|
13776
13804
|
|
|
13777
13805
|
"libphonenumber-js@npm:^1.9.11":
|
|
13778
|
-
version: 1.11.
|
|
13779
|
-
resolution: "libphonenumber-js@npm:1.11.
|
|
13780
|
-
checksum: 10c0/
|
|
13806
|
+
version: 1.11.19
|
|
13807
|
+
resolution: "libphonenumber-js@npm:1.11.19"
|
|
13808
|
+
checksum: 10c0/cf02204746dd89cacbd5830c32e6ea4a7e4593efa84b0707207900d79bb0bbd19bd38eb6da7544f49638d609b8c4b9dcbd7e50ea6506e957cd149f6a3c2c7b2b
|
|
13781
13809
|
languageName: node
|
|
13782
13810
|
linkType: hard
|
|
13783
13811
|
|
|
@@ -17007,15 +17035,15 @@ __metadata:
|
|
|
17007
17035
|
linkType: hard
|
|
17008
17036
|
|
|
17009
17037
|
"prosemirror-tables@npm:^1.3.0":
|
|
17010
|
-
version: 1.6.
|
|
17011
|
-
resolution: "prosemirror-tables@npm:1.6.
|
|
17038
|
+
version: 1.6.3
|
|
17039
|
+
resolution: "prosemirror-tables@npm:1.6.3"
|
|
17012
17040
|
dependencies:
|
|
17013
17041
|
prosemirror-keymap: "npm:^1.2.2"
|
|
17014
17042
|
prosemirror-model: "npm:^1.24.1"
|
|
17015
17043
|
prosemirror-state: "npm:^1.4.3"
|
|
17016
17044
|
prosemirror-transform: "npm:^1.10.2"
|
|
17017
17045
|
prosemirror-view: "npm:^1.37.1"
|
|
17018
|
-
checksum: 10c0/
|
|
17046
|
+
checksum: 10c0/09ded9ffae5c2a9e274cf89c2ff1ba6400bd3d0ad9e68a0de9a4154c9b9210239c90db50e3081487615899eae3b2c7228e097df73acd42150d9cc91076da239b
|
|
17019
17047
|
languageName: node
|
|
17020
17048
|
linkType: hard
|
|
17021
17049
|
|
|
@@ -19248,11 +19276,11 @@ __metadata:
|
|
|
19248
19276
|
linkType: hard
|
|
19249
19277
|
|
|
19250
19278
|
"semver@npm:^7.2.1, semver@npm:^7.3.2, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4":
|
|
19251
|
-
version: 7.
|
|
19252
|
-
resolution: "semver@npm:7.
|
|
19279
|
+
version: 7.7.0
|
|
19280
|
+
resolution: "semver@npm:7.7.0"
|
|
19253
19281
|
bin:
|
|
19254
19282
|
semver: bin/semver.js
|
|
19255
|
-
checksum: 10c0/
|
|
19283
|
+
checksum: 10c0/bcd1c03209b4be7d8ca86c976a0410beba7d4ec1d49d846a4be154b958db1ff5eaee50760c1d4f4070b19dee3236b8672d3e09642c53ea23740398bba2538a2d
|
|
19256
19284
|
languageName: node
|
|
19257
19285
|
linkType: hard
|
|
19258
19286
|
|