@licklist/design 0.78.10 → 0.78.12
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useTableData.d.ts","sourceRoot":"","sources":["../../../../../src/iframe/payment/order-items-table/hooks/useTableData.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useTableData.d.ts","sourceRoot":"","sources":["../../../../../src/iframe/payment/order-items-table/hooks/useTableData.tsx"],"names":[],"mappings":"AAYA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAEnD,OAAO,EAAE,oBAAoB,EAAe,MAAM,UAAU,CAAA;AAK5D,eAAO,MAAM,2BAA2B;;;;CAIvC,CAAA;AAED,eAAO,MAAM,YAAY,oEAKtB,oBAAoB;;;;;IA2KtB,CAAA"}
|
|
@@ -65,55 +65,52 @@ var useTableData = function(param) {
|
|
|
65
65
|
});
|
|
66
66
|
};
|
|
67
67
|
var renderCategoryItem = function(products) {
|
|
68
|
-
var _products__productCategory;
|
|
69
|
-
var _products__productCategory_name;
|
|
68
|
+
var _products__productCategory, _products_;
|
|
69
|
+
var _products__productCategory_name, _order_orderProducts;
|
|
70
70
|
return {
|
|
71
71
|
key: uniqueId('category-id-'),
|
|
72
|
-
name: wrapLabelContent((_products__productCategory_name = (
|
|
72
|
+
name: wrapLabelContent((_products__productCategory_name = (_products_ = products[0]) === null || _products_ === void 0 ? void 0 : (_products__productCategory = _products_.productCategory) === null || _products__productCategory === void 0 ? void 0 : _products__productCategory.name) !== null && _products__productCategory_name !== void 0 ? _products__productCategory_name : ''),
|
|
73
73
|
quantity: '',
|
|
74
|
-
price: wrapLabelContent("".concat(t('total'), ": ").concat(formatPrice(getTotalSumByCategory(order.orderProducts, products))))
|
|
74
|
+
price: wrapLabelContent("".concat(t('total'), ": ").concat(formatPrice(getTotalSumByCategory((_order_orderProducts = order.orderProducts) !== null && _order_orderProducts !== void 0 ? _order_orderProducts : [], products))))
|
|
75
75
|
};
|
|
76
76
|
};
|
|
77
77
|
var reworkProductStructure = function(order) {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
78
|
+
if (!order) return [];
|
|
79
|
+
var _order_orderProductModifiersGroups;
|
|
80
|
+
var groups = (_order_orderProductModifiersGroups = order === null || order === void 0 ? void 0 : order.orderProductModifiersGroups) !== null && _order_orderProductModifiersGroups !== void 0 ? _order_orderProductModifiersGroups : [];
|
|
81
|
+
if (!Array.isArray(groups) || !groups.length) return [
|
|
82
|
+
order
|
|
83
|
+
];
|
|
84
|
+
return groups.flatMap(function(modGroup, idx) {
|
|
85
|
+
var _order_deletedAt, _order_orderId, _order_price, _order_productId, _modGroup_productQuantity, _order_deposit, _modGroup_modifiers, _map;
|
|
86
|
+
return {
|
|
87
|
+
deletedAt: (_order_deletedAt = order.deletedAt) !== null && _order_deletedAt !== void 0 ? _order_deletedAt : null,
|
|
88
|
+
id: "".concat(order.id, "-").concat(idx + 1),
|
|
89
|
+
orderId: (_order_orderId = order.orderId) !== null && _order_orderId !== void 0 ? _order_orderId : null,
|
|
90
|
+
price: (_order_price = order.price) !== null && _order_price !== void 0 ? _order_price : 0,
|
|
91
|
+
productId: (_order_productId = order.productId) !== null && _order_productId !== void 0 ? _order_productId : '',
|
|
92
|
+
quantity: (_modGroup_productQuantity = modGroup === null || modGroup === void 0 ? void 0 : modGroup.productQuantity) !== null && _modGroup_productQuantity !== void 0 ? _modGroup_productQuantity : 1,
|
|
93
|
+
deposit: (_order_deposit = order.deposit) !== null && _order_deposit !== void 0 ? _order_deposit : 0,
|
|
94
|
+
orderProductModifiers: (_map = ((_modGroup_modifiers = modGroup === null || modGroup === void 0 ? void 0 : modGroup.modifiers) !== null && _modGroup_modifiers !== void 0 ? _modGroup_modifiers : []).map(function(mod) {
|
|
95
|
+
var _mod_modifierId, _mod_price, _mod_productId, _mod_quantity, _mod_modifierSetId, _mod_modifier;
|
|
96
|
+
return {
|
|
97
|
+
modifierId: (_mod_modifierId = mod === null || mod === void 0 ? void 0 : mod.modifierId) !== null && _mod_modifierId !== void 0 ? _mod_modifierId : '',
|
|
98
|
+
price: (_mod_price = mod === null || mod === void 0 ? void 0 : mod.price) !== null && _mod_price !== void 0 ? _mod_price : 0,
|
|
99
|
+
productId: (_mod_productId = mod === null || mod === void 0 ? void 0 : mod.productId) !== null && _mod_productId !== void 0 ? _mod_productId : '',
|
|
100
|
+
quantity: (_mod_quantity = mod === null || mod === void 0 ? void 0 : mod.quantity) !== null && _mod_quantity !== void 0 ? _mod_quantity : 1,
|
|
101
|
+
modifierSetId: (_mod_modifierSetId = mod === null || mod === void 0 ? void 0 : mod.modifierSetId) !== null && _mod_modifierSetId !== void 0 ? _mod_modifierSetId : '',
|
|
102
|
+
modifier: (_mod_modifier = mod === null || mod === void 0 ? void 0 : mod.modifier) !== null && _mod_modifier !== void 0 ? _mod_modifier : null
|
|
103
|
+
};
|
|
104
|
+
})) !== null && _map !== void 0 ? _map : []
|
|
105
|
+
};
|
|
106
|
+
});
|
|
104
107
|
};
|
|
105
|
-
var
|
|
106
|
-
|
|
107
|
-
var
|
|
108
|
-
if (product.quantity === 0) {
|
|
109
|
-
return null;
|
|
110
|
-
}
|
|
111
|
-
var name = ((_productsForCategory_find = productsForCategory.find(function(item) {
|
|
112
|
-
return item.id === product.productId;
|
|
113
|
-
})) === null || _productsForCategory_find === void 0 ? void 0 : _productsForCategory_find.name) || '';
|
|
108
|
+
var renderModifierItem = function(orderModifier) {
|
|
109
|
+
if (!orderModifier || orderModifier.quantity === 0) return null;
|
|
110
|
+
var quantity = orderModifier.quantity, modifier = orderModifier.modifier, modifierId = orderModifier.modifierId, price = orderModifier.price;
|
|
114
111
|
return {
|
|
115
|
-
key:
|
|
116
|
-
name: name,
|
|
112
|
+
key: modifierId,
|
|
113
|
+
name: " - ".concat((modifier === null || modifier === void 0 ? void 0 : modifier.name) || ''),
|
|
117
114
|
quantity: /*#__PURE__*/ jsxs("div", {
|
|
118
115
|
className: "quantity",
|
|
119
116
|
children: [
|
|
@@ -121,21 +118,23 @@ var useTableData = function(param) {
|
|
|
121
118
|
className: "multiplier",
|
|
122
119
|
children: "x"
|
|
123
120
|
}),
|
|
124
|
-
|
|
121
|
+
quantity
|
|
125
122
|
]
|
|
126
123
|
}),
|
|
127
|
-
price: formatPrice(
|
|
128
|
-
modifier: (product === null || product === void 0 ? void 0 : (_product_orderProductModifiers = product.orderProductModifiers) === null || _product_orderProductModifiers === void 0 ? void 0 : _product_orderProductModifiers.map(renderModifierItem)) || []
|
|
124
|
+
price: formatPrice(price !== null && price !== void 0 ? price : 0)
|
|
129
125
|
};
|
|
130
126
|
};
|
|
131
|
-
var
|
|
132
|
-
var
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
127
|
+
var renderProductItem = function(param) {
|
|
128
|
+
var product = param.product, productsForCategory = param.productsForCategory;
|
|
129
|
+
var _productsForCategory_find, _product_orderProductModifiers;
|
|
130
|
+
if (!product || product.quantity === 0) return null;
|
|
131
|
+
var name = ((_productsForCategory_find = productsForCategory.find(function(item) {
|
|
132
|
+
return item.id === product.productId;
|
|
133
|
+
})) === null || _productsForCategory_find === void 0 ? void 0 : _productsForCategory_find.name) || '';
|
|
134
|
+
var _product_price, _product_orderProductModifiers_map;
|
|
136
135
|
return {
|
|
137
|
-
key:
|
|
138
|
-
name:
|
|
136
|
+
key: product.id,
|
|
137
|
+
name: name,
|
|
139
138
|
quantity: /*#__PURE__*/ jsxs("div", {
|
|
140
139
|
className: "quantity",
|
|
141
140
|
children: [
|
|
@@ -143,47 +142,51 @@ var useTableData = function(param) {
|
|
|
143
142
|
className: "multiplier",
|
|
144
143
|
children: "x"
|
|
145
144
|
}),
|
|
146
|
-
quantity
|
|
145
|
+
product.quantity
|
|
147
146
|
]
|
|
148
147
|
}),
|
|
149
|
-
price: formatPrice(price)
|
|
148
|
+
price: formatPrice((_product_price = product.price) !== null && _product_price !== void 0 ? _product_price : 0),
|
|
149
|
+
modifier: ((_product_orderProductModifiers_map = product === null || product === void 0 ? void 0 : (_product_orderProductModifiers = product.orderProductModifiers) === null || _product_orderProductModifiers === void 0 ? void 0 : _product_orderProductModifiers.map(renderModifierItem)) !== null && _product_orderProductModifiers_map !== void 0 ? _product_orderProductModifiers_map : []).filter(Boolean)
|
|
150
150
|
};
|
|
151
151
|
};
|
|
152
152
|
var renderProductsContent = function() {
|
|
153
153
|
var productCategories = _to_consumable_array(new Set(order.products.map(function(product) {
|
|
154
154
|
return product.productCategoryId;
|
|
155
155
|
})));
|
|
156
|
-
return productCategories.reduce(function(
|
|
157
|
-
var
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
156
|
+
return productCategories.reduce(function(acc, categoryId) {
|
|
157
|
+
var _order_orderProducts;
|
|
158
|
+
var _order_products_filter;
|
|
159
|
+
var productsForCategory = (_order_products_filter = order === null || order === void 0 ? void 0 : order.products.filter(function(p) {
|
|
160
|
+
return p.productCategoryId === categoryId;
|
|
161
|
+
})) !== null && _order_products_filter !== void 0 ? _order_products_filter : [];
|
|
162
|
+
var _order_orderProducts_filter;
|
|
163
|
+
var products = (_order_orderProducts_filter = order === null || order === void 0 ? void 0 : (_order_orderProducts = order.orderProducts) === null || _order_orderProducts === void 0 ? void 0 : _order_orderProducts.filter(function(el) {
|
|
164
|
+
return productsForCategory.map(function(p) {
|
|
165
|
+
return p.id;
|
|
163
166
|
}).includes(el.productId);
|
|
164
|
-
});
|
|
165
|
-
if (!products.length)
|
|
166
|
-
return previousValues;
|
|
167
|
-
}
|
|
167
|
+
})) !== null && _order_orderProducts_filter !== void 0 ? _order_orderProducts_filter : [];
|
|
168
|
+
if (!products.length) return acc;
|
|
168
169
|
var productsWithReworkedModifier = products.map(function(product) {
|
|
169
|
-
|
|
170
|
+
var _product_orderProductModifiers;
|
|
171
|
+
if (!(product === null || product === void 0 ? void 0 : (_product_orderProductModifiers = product.orderProductModifiers) === null || _product_orderProductModifiers === void 0 ? void 0 : _product_orderProductModifiers.length)) return product;
|
|
170
172
|
return reworkProductStructure(product);
|
|
171
173
|
});
|
|
172
|
-
var filteredProducts = flatten(productsWithReworkedModifier).map(function(
|
|
174
|
+
var filteredProducts = flatten(productsWithReworkedModifier).map(function(p) {
|
|
173
175
|
return renderProductItem({
|
|
174
|
-
product:
|
|
176
|
+
product: p,
|
|
175
177
|
productsForCategory: productsForCategory
|
|
176
178
|
});
|
|
179
|
+
}).filter(function(row) {
|
|
180
|
+
return Boolean(row);
|
|
177
181
|
});
|
|
178
|
-
|
|
182
|
+
if (!filteredProducts.length) return acc;
|
|
183
|
+
var productWithModifier = flatMap(filteredProducts, function(row) {
|
|
184
|
+
var _row_modifier;
|
|
179
185
|
return [
|
|
180
|
-
|
|
181
|
-
].concat(_to_consumable_array(
|
|
186
|
+
row
|
|
187
|
+
].concat(_to_consumable_array((_row_modifier = row.modifier) !== null && _row_modifier !== void 0 ? _row_modifier : []));
|
|
182
188
|
});
|
|
183
|
-
|
|
184
|
-
return previousValues;
|
|
185
|
-
}
|
|
186
|
-
return _to_consumable_array(previousValues).concat([
|
|
189
|
+
return _to_consumable_array(acc).concat([
|
|
187
190
|
renderCategoryItem(productsForCategory)
|
|
188
191
|
], _to_consumable_array(productWithModifier));
|
|
189
192
|
}, []);
|
|
@@ -200,20 +203,18 @@ var useTableData = function(param) {
|
|
|
200
203
|
});
|
|
201
204
|
};
|
|
202
205
|
var data = useMemo(function() {
|
|
203
|
-
if (!order)
|
|
204
|
-
return [];
|
|
205
|
-
}
|
|
206
|
+
if (!order) return [];
|
|
206
207
|
return _to_consumable_array(renderProductsContent()).concat(_to_consumable_array(renderSummaryItems(getOrderSummaryItems({
|
|
207
208
|
order: order,
|
|
208
209
|
paymentDetail: paymentDetail,
|
|
209
210
|
isPaymentProcessed: isPaymentProcessed,
|
|
210
211
|
externalDiscount: externalDiscount
|
|
211
212
|
}))));
|
|
212
|
-
},
|
|
213
|
-
[
|
|
213
|
+
}, [
|
|
214
214
|
order,
|
|
215
215
|
externalDiscount,
|
|
216
|
-
isPaymentProcessed
|
|
216
|
+
isPaymentProcessed,
|
|
217
|
+
paymentDetail
|
|
217
218
|
]);
|
|
218
219
|
return data;
|
|
219
220
|
};
|
package/package.json
CHANGED
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
import { useMemo } from 'react'
|
|
2
|
-
import { uniqueId, flatMap, flatten
|
|
2
|
+
import { uniqueId, flatMap, flatten } from 'lodash'
|
|
3
3
|
import { useIntl } from 'react-intl'
|
|
4
4
|
import { useTranslation } from 'react-i18next'
|
|
5
5
|
import { Product } from '@licklist/core/dist/DataMapper/Product/ProductDataMapper'
|
|
6
6
|
import { OrderModifier } from '@licklist/core/dist/DataMapper/Order/OrderModifierDataMapper'
|
|
7
|
+
import { OrderProduct } from '@licklist/core/dist/DataMapper/Order/OrderProductDataMapper'
|
|
7
8
|
import {
|
|
8
9
|
PAYMENT_TYPE_VAT,
|
|
9
10
|
PAYMENT_TYPE_FEE,
|
|
10
11
|
PAYMENT_TYPE_NET_PROFIT,
|
|
11
12
|
} from '@licklist/core/dist/DataMapper/Order/PaymentDataMapper'
|
|
12
13
|
import { StaticTableData } from '../../../../table'
|
|
13
|
-
import {
|
|
14
|
+
import { getTotalSumByCategory } from '../utils'
|
|
14
15
|
import { OrderItemsTableProps, SummaryItem } from '../types'
|
|
15
16
|
import { getOrderSummaryItems } from '../utils/paymentSummary'
|
|
16
|
-
import { Order } from '@licklist/core/dist/DataMapper'
|
|
17
|
-
import { OrderPayment } from '@licklist/core/dist/DataMapper/Order/OrderPaymentDataMapper'
|
|
18
|
-
import { OrderProduct } from '@licklist/core/dist/DataMapper/Order/OrderProductDataMapper'
|
|
19
|
-
import { OrderModifierByProduct } from '@licklist/core/dist/DataMapper/Order/OrderModifiierByProduct'
|
|
20
17
|
|
|
21
18
|
const CURRENCY_DEFAULT = 'GBP'
|
|
19
|
+
|
|
22
20
|
export const PAYMENT_TYPE_TRANSLATE_KEYS = {
|
|
23
21
|
[PAYMENT_TYPE_NET_PROFIT]: 'netAmount',
|
|
24
22
|
[PAYMENT_TYPE_FEE]: 'bookeditFee',
|
|
@@ -41,43 +39,62 @@ export const useTableData = ({
|
|
|
41
39
|
})
|
|
42
40
|
|
|
43
41
|
const wrapLabelContent = (string: string) => (
|
|
44
|
-
<div className=
|
|
42
|
+
<div className="label">{string}</div>
|
|
45
43
|
)
|
|
46
44
|
|
|
47
45
|
const renderCategoryItem = (products: Product[]) => ({
|
|
48
46
|
key: uniqueId('category-id-'),
|
|
49
|
-
name: wrapLabelContent(products[0]
|
|
47
|
+
name: wrapLabelContent(products[0]?.productCategory?.name ?? ''),
|
|
50
48
|
quantity: '',
|
|
51
49
|
price: wrapLabelContent(
|
|
52
50
|
`${t('total')}: ${formatPrice(
|
|
53
|
-
getTotalSumByCategory(order.orderProducts, products),
|
|
51
|
+
getTotalSumByCategory(order.orderProducts ?? [], products),
|
|
54
52
|
)}`,
|
|
55
53
|
),
|
|
56
54
|
})
|
|
57
55
|
|
|
58
|
-
const reworkProductStructure = (order: OrderProduct) =>
|
|
59
|
-
order
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
56
|
+
const reworkProductStructure = (order: OrderProduct) => {
|
|
57
|
+
if (!order) return []
|
|
58
|
+
|
|
59
|
+
const groups: any[] = (order as any)?.orderProductModifiersGroups ?? []
|
|
60
|
+
if (!Array.isArray(groups) || !groups.length) return [order]
|
|
61
|
+
|
|
62
|
+
return groups.flatMap((modGroup, idx) => ({
|
|
63
|
+
deletedAt: order.deletedAt ?? null,
|
|
64
|
+
id: `${order.id}-${idx + 1}`,
|
|
65
|
+
orderId: order.orderId ?? null,
|
|
66
|
+
price: order.price ?? 0,
|
|
67
|
+
productId: order.productId ?? '',
|
|
68
|
+
quantity: modGroup?.productQuantity ?? 1,
|
|
69
|
+
deposit: order.deposit ?? 0,
|
|
70
|
+
orderProductModifiers:
|
|
71
|
+
(modGroup?.modifiers ?? []).map((mod: any) => ({
|
|
72
|
+
modifierId: mod?.modifierId ?? '',
|
|
73
|
+
price: mod?.price ?? 0,
|
|
74
|
+
productId: mod?.productId ?? '',
|
|
75
|
+
quantity: mod?.quantity ?? 1,
|
|
76
|
+
modifierSetId: mod?.modifierSetId ?? '',
|
|
77
|
+
modifier: mod?.modifier ?? null,
|
|
78
|
+
})) ?? [],
|
|
79
|
+
}))
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
const renderModifierItem = (orderModifier: OrderModifier) => {
|
|
83
|
+
if (!orderModifier || orderModifier.quantity === 0) return null
|
|
84
|
+
const { quantity, modifier, modifierId, price } = orderModifier
|
|
85
|
+
|
|
86
|
+
return {
|
|
87
|
+
key: modifierId,
|
|
88
|
+
name: ` - ${modifier?.name || ''}`,
|
|
89
|
+
quantity: (
|
|
90
|
+
<div className="quantity">
|
|
91
|
+
<div className="multiplier">x</div>
|
|
92
|
+
{quantity}
|
|
93
|
+
</div>
|
|
94
|
+
),
|
|
95
|
+
price: formatPrice(price ?? 0),
|
|
96
|
+
}
|
|
97
|
+
}
|
|
81
98
|
|
|
82
99
|
const renderProductItem = ({
|
|
83
100
|
product,
|
|
@@ -86,43 +103,26 @@ export const useTableData = ({
|
|
|
86
103
|
product: OrderProduct
|
|
87
104
|
productsForCategory: Product[]
|
|
88
105
|
}) => {
|
|
89
|
-
if (product.quantity === 0)
|
|
90
|
-
|
|
91
|
-
}
|
|
92
|
-
|
|
106
|
+
if (!product || product.quantity === 0) return null
|
|
107
|
+
|
|
93
108
|
const name =
|
|
94
|
-
productsForCategory.find((item) => item.id === product.productId)?.name ||
|
|
109
|
+
productsForCategory.find((item) => item.id === product.productId)?.name ||
|
|
110
|
+
''
|
|
95
111
|
|
|
96
112
|
return {
|
|
97
113
|
key: product.id,
|
|
98
114
|
name,
|
|
99
115
|
quantity: (
|
|
100
|
-
<div className=
|
|
101
|
-
<div className=
|
|
116
|
+
<div className="quantity">
|
|
117
|
+
<div className="multiplier">x</div>
|
|
102
118
|
{product.quantity}
|
|
103
119
|
</div>
|
|
104
120
|
),
|
|
105
|
-
price: formatPrice(product.price),
|
|
106
|
-
modifier:
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
const renderModifierItem = (orderModifier: OrderModifier) => {
|
|
111
|
-
const { quantity, modifier, modifierId, price } = orderModifier
|
|
112
|
-
if (quantity === 0) {
|
|
113
|
-
return null
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
return {
|
|
117
|
-
key: modifierId,
|
|
118
|
-
name: ` - ${modifier?.name || ''}`,
|
|
119
|
-
quantity: (
|
|
120
|
-
<div className='quantity'>
|
|
121
|
-
<div className='multiplier'>x</div>
|
|
122
|
-
{quantity}
|
|
123
|
-
</div>
|
|
124
|
-
),
|
|
125
|
-
price: formatPrice(price),
|
|
121
|
+
price: formatPrice(product.price ?? 0),
|
|
122
|
+
modifier:
|
|
123
|
+
(product?.orderProductModifiers?.map(renderModifierItem) ?? []).filter(
|
|
124
|
+
Boolean,
|
|
125
|
+
),
|
|
126
126
|
}
|
|
127
127
|
}
|
|
128
128
|
|
|
@@ -132,41 +132,40 @@ export const useTableData = ({
|
|
|
132
132
|
]
|
|
133
133
|
|
|
134
134
|
return productCategories.reduce(
|
|
135
|
-
(
|
|
136
|
-
const productsForCategory =
|
|
137
|
-
(
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
)
|
|
145
|
-
|
|
146
|
-
if (!products.length) {
|
|
147
|
-
return previousValues
|
|
148
|
-
}
|
|
135
|
+
(acc: StaticTableData[], categoryId) => {
|
|
136
|
+
const productsForCategory =
|
|
137
|
+
order?.products.filter((p) => p.productCategoryId === categoryId) ?? []
|
|
138
|
+
|
|
139
|
+
const products =
|
|
140
|
+
order?.orderProducts?.filter((el) =>
|
|
141
|
+
productsForCategory.map((p) => p.id).includes(el.productId),
|
|
142
|
+
) ?? []
|
|
143
|
+
|
|
144
|
+
if (!products.length) return acc
|
|
145
|
+
|
|
149
146
|
const productsWithReworkedModifier = products.map((product) => {
|
|
150
|
-
if (!product
|
|
147
|
+
if (!product?.orderProductModifiers?.length) return product
|
|
151
148
|
return reworkProductStructure(product)
|
|
152
149
|
})
|
|
153
150
|
|
|
154
|
-
const filteredProducts =
|
|
155
|
-
(
|
|
156
|
-
renderProductItem({
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
151
|
+
const filteredProducts = flatten(productsWithReworkedModifier)
|
|
152
|
+
.map((p) =>
|
|
153
|
+
renderProductItem({
|
|
154
|
+
product: p as OrderProduct,
|
|
155
|
+
productsForCategory,
|
|
156
|
+
}),
|
|
157
|
+
)
|
|
158
|
+
.filter((row): row is NonNullable<typeof row> => Boolean(row))
|
|
159
|
+
|
|
160
|
+
if (!filteredProducts.length) return acc
|
|
163
161
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
162
|
+
const productWithModifier = flatMap(filteredProducts, (row) => [
|
|
163
|
+
row,
|
|
164
|
+
...(row.modifier ?? []),
|
|
165
|
+
])
|
|
167
166
|
|
|
168
167
|
return [
|
|
169
|
-
...
|
|
168
|
+
...acc,
|
|
170
169
|
renderCategoryItem(productsForCategory),
|
|
171
170
|
...productWithModifier,
|
|
172
171
|
]
|
|
@@ -183,26 +182,21 @@ export const useTableData = ({
|
|
|
183
182
|
price: wrapLabelContent(formatPrice(price)),
|
|
184
183
|
}))
|
|
185
184
|
|
|
186
|
-
const data = useMemo(
|
|
187
|
-
()
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
]
|
|
203
|
-
},
|
|
204
|
-
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
205
|
-
[order, externalDiscount, isPaymentProcessed],
|
|
206
|
-
)
|
|
185
|
+
const data = useMemo(() => {
|
|
186
|
+
if (!order) return []
|
|
187
|
+
|
|
188
|
+
return [
|
|
189
|
+
...renderProductsContent(),
|
|
190
|
+
...renderSummaryItems(
|
|
191
|
+
getOrderSummaryItems({
|
|
192
|
+
order,
|
|
193
|
+
paymentDetail,
|
|
194
|
+
isPaymentProcessed,
|
|
195
|
+
externalDiscount,
|
|
196
|
+
}),
|
|
197
|
+
),
|
|
198
|
+
]
|
|
199
|
+
}, [order, externalDiscount, isPaymentProcessed, paymentDetail])
|
|
200
|
+
|
|
207
201
|
return data
|
|
208
202
|
}
|
package/yarn.lock
CHANGED
|
@@ -12,16 +12,6 @@ __metadata:
|
|
|
12
12
|
languageName: node
|
|
13
13
|
linkType: hard
|
|
14
14
|
|
|
15
|
-
"@ampproject/remapping@npm:^2.2.0":
|
|
16
|
-
version: 2.3.0
|
|
17
|
-
resolution: "@ampproject/remapping@npm:2.3.0"
|
|
18
|
-
dependencies:
|
|
19
|
-
"@jridgewell/gen-mapping": "npm:^0.3.5"
|
|
20
|
-
"@jridgewell/trace-mapping": "npm:^0.3.24"
|
|
21
|
-
checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
|
|
22
|
-
languageName: node
|
|
23
|
-
linkType: hard
|
|
24
|
-
|
|
25
15
|
"@babel/code-frame@npm:7.10.4":
|
|
26
16
|
version: 7.10.4
|
|
27
17
|
resolution: "@babel/code-frame@npm:7.10.4"
|
|
@@ -52,9 +42,9 @@ __metadata:
|
|
|
52
42
|
linkType: hard
|
|
53
43
|
|
|
54
44
|
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.27.2, @babel/compat-data@npm:^7.27.7, @babel/compat-data@npm:^7.28.0":
|
|
55
|
-
version: 7.28.
|
|
56
|
-
resolution: "@babel/compat-data@npm:7.28.
|
|
57
|
-
checksum: 10c0/
|
|
45
|
+
version: 7.28.4
|
|
46
|
+
resolution: "@babel/compat-data@npm:7.28.4"
|
|
47
|
+
checksum: 10c0/9d346471e0a016641df9a325f42ad1e8324bbdc0243ce4af4dd2b10b974128590da9eb179eea2c36647b9bb987343119105e96773c1f6981732cd4f87e5a03b9
|
|
58
48
|
languageName: node
|
|
59
49
|
linkType: hard
|
|
60
50
|
|
|
@@ -83,25 +73,25 @@ __metadata:
|
|
|
83
73
|
linkType: hard
|
|
84
74
|
|
|
85
75
|
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.12.10, @babel/core@npm:^7.12.3, @babel/core@npm:^7.21.3, @babel/core@npm:^7.24.5, @babel/core@npm:^7.7.5":
|
|
86
|
-
version: 7.28.
|
|
87
|
-
resolution: "@babel/core@npm:7.28.
|
|
76
|
+
version: 7.28.4
|
|
77
|
+
resolution: "@babel/core@npm:7.28.4"
|
|
88
78
|
dependencies:
|
|
89
|
-
"@ampproject/remapping": "npm:^2.2.0"
|
|
90
79
|
"@babel/code-frame": "npm:^7.27.1"
|
|
91
80
|
"@babel/generator": "npm:^7.28.3"
|
|
92
81
|
"@babel/helper-compilation-targets": "npm:^7.27.2"
|
|
93
82
|
"@babel/helper-module-transforms": "npm:^7.28.3"
|
|
94
|
-
"@babel/helpers": "npm:^7.28.
|
|
95
|
-
"@babel/parser": "npm:^7.28.
|
|
83
|
+
"@babel/helpers": "npm:^7.28.4"
|
|
84
|
+
"@babel/parser": "npm:^7.28.4"
|
|
96
85
|
"@babel/template": "npm:^7.27.2"
|
|
97
|
-
"@babel/traverse": "npm:^7.28.
|
|
98
|
-
"@babel/types": "npm:^7.28.
|
|
86
|
+
"@babel/traverse": "npm:^7.28.4"
|
|
87
|
+
"@babel/types": "npm:^7.28.4"
|
|
88
|
+
"@jridgewell/remapping": "npm:^2.3.5"
|
|
99
89
|
convert-source-map: "npm:^2.0.0"
|
|
100
90
|
debug: "npm:^4.1.0"
|
|
101
91
|
gensync: "npm:^1.0.0-beta.2"
|
|
102
92
|
json5: "npm:^2.2.3"
|
|
103
93
|
semver: "npm:^6.3.1"
|
|
104
|
-
checksum: 10c0/
|
|
94
|
+
checksum: 10c0/ef5a6c3c6bf40d3589b5593f8118cfe2602ce737412629fb6e26d595be2fcbaae0807b43027a5c42ec4fba5b895ff65891f2503b5918c8a3ea3542ab44d4c278
|
|
105
95
|
languageName: node
|
|
106
96
|
linkType: hard
|
|
107
97
|
|
|
@@ -334,13 +324,13 @@ __metadata:
|
|
|
334
324
|
languageName: node
|
|
335
325
|
linkType: hard
|
|
336
326
|
|
|
337
|
-
"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.28.
|
|
338
|
-
version: 7.28.
|
|
339
|
-
resolution: "@babel/helpers@npm:7.28.
|
|
327
|
+
"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.28.4":
|
|
328
|
+
version: 7.28.4
|
|
329
|
+
resolution: "@babel/helpers@npm:7.28.4"
|
|
340
330
|
dependencies:
|
|
341
331
|
"@babel/template": "npm:^7.27.2"
|
|
342
|
-
"@babel/types": "npm:^7.28.
|
|
343
|
-
checksum: 10c0/
|
|
332
|
+
"@babel/types": "npm:^7.28.4"
|
|
333
|
+
checksum: 10c0/aaa5fb8098926dfed5f223adf2c5e4c7fbba4b911b73dfec2d7d3083f8ba694d201a206db673da2d9b3ae8c01793e795767654558c450c8c14b4c2175b4fcb44
|
|
344
334
|
languageName: node
|
|
345
335
|
linkType: hard
|
|
346
336
|
|
|
@@ -356,14 +346,14 @@ __metadata:
|
|
|
356
346
|
languageName: node
|
|
357
347
|
linkType: hard
|
|
358
348
|
|
|
359
|
-
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.11, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.27.2, @babel/parser@npm:^7.28.3":
|
|
360
|
-
version: 7.28.
|
|
361
|
-
resolution: "@babel/parser@npm:7.28.
|
|
349
|
+
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.11, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.27.2, @babel/parser@npm:^7.28.3, @babel/parser@npm:^7.28.4":
|
|
350
|
+
version: 7.28.4
|
|
351
|
+
resolution: "@babel/parser@npm:7.28.4"
|
|
362
352
|
dependencies:
|
|
363
|
-
"@babel/types": "npm:^7.28.
|
|
353
|
+
"@babel/types": "npm:^7.28.4"
|
|
364
354
|
bin:
|
|
365
355
|
parser: ./bin/babel-parser.js
|
|
366
|
-
checksum: 10c0/
|
|
356
|
+
checksum: 10c0/58b239a5b1477ac7ed7e29d86d675cc81075ca055424eba6485872626db2dc556ce63c45043e5a679cd925e999471dba8a3ed4864e7ab1dbf64306ab72c52707
|
|
367
357
|
languageName: node
|
|
368
358
|
linkType: hard
|
|
369
359
|
|
|
@@ -718,13 +708,13 @@ __metadata:
|
|
|
718
708
|
linkType: hard
|
|
719
709
|
|
|
720
710
|
"@babel/plugin-transform-block-scoping@npm:^7.12.12, @babel/plugin-transform-block-scoping@npm:^7.28.0":
|
|
721
|
-
version: 7.28.
|
|
722
|
-
resolution: "@babel/plugin-transform-block-scoping@npm:7.28.
|
|
711
|
+
version: 7.28.4
|
|
712
|
+
resolution: "@babel/plugin-transform-block-scoping@npm:7.28.4"
|
|
723
713
|
dependencies:
|
|
724
714
|
"@babel/helper-plugin-utils": "npm:^7.27.1"
|
|
725
715
|
peerDependencies:
|
|
726
716
|
"@babel/core": ^7.0.0-0
|
|
727
|
-
checksum: 10c0/
|
|
717
|
+
checksum: 10c0/5b9a4e90f957742021fa8bad239cde28ec67b95d36b0e1fcf9f3f9cab6120671ab5e7ee6eacbcd51d0815ddea6978abc9a99a0bd493c43e3e27ec3ae1cb4de23
|
|
728
718
|
languageName: node
|
|
729
719
|
linkType: hard
|
|
730
720
|
|
|
@@ -753,18 +743,18 @@ __metadata:
|
|
|
753
743
|
linkType: hard
|
|
754
744
|
|
|
755
745
|
"@babel/plugin-transform-classes@npm:^7.12.1, @babel/plugin-transform-classes@npm:^7.28.3":
|
|
756
|
-
version: 7.28.
|
|
757
|
-
resolution: "@babel/plugin-transform-classes@npm:7.28.
|
|
746
|
+
version: 7.28.4
|
|
747
|
+
resolution: "@babel/plugin-transform-classes@npm:7.28.4"
|
|
758
748
|
dependencies:
|
|
759
749
|
"@babel/helper-annotate-as-pure": "npm:^7.27.3"
|
|
760
750
|
"@babel/helper-compilation-targets": "npm:^7.27.2"
|
|
761
751
|
"@babel/helper-globals": "npm:^7.28.0"
|
|
762
752
|
"@babel/helper-plugin-utils": "npm:^7.27.1"
|
|
763
753
|
"@babel/helper-replace-supers": "npm:^7.27.1"
|
|
764
|
-
"@babel/traverse": "npm:^7.28.
|
|
754
|
+
"@babel/traverse": "npm:^7.28.4"
|
|
765
755
|
peerDependencies:
|
|
766
756
|
"@babel/core": ^7.0.0-0
|
|
767
|
-
checksum: 10c0/
|
|
757
|
+
checksum: 10c0/76687ed37216ff012c599870dc00183fb716f22e1a02fe9481943664c0e4d0d88c3da347dc3fe290d4728f4d47cd594ffa621d23845e2bb8ab446e586308e066
|
|
768
758
|
languageName: node
|
|
769
759
|
linkType: hard
|
|
770
760
|
|
|
@@ -1049,17 +1039,17 @@ __metadata:
|
|
|
1049
1039
|
linkType: hard
|
|
1050
1040
|
|
|
1051
1041
|
"@babel/plugin-transform-object-rest-spread@npm:^7.28.0":
|
|
1052
|
-
version: 7.28.
|
|
1053
|
-
resolution: "@babel/plugin-transform-object-rest-spread@npm:7.28.
|
|
1042
|
+
version: 7.28.4
|
|
1043
|
+
resolution: "@babel/plugin-transform-object-rest-spread@npm:7.28.4"
|
|
1054
1044
|
dependencies:
|
|
1055
1045
|
"@babel/helper-compilation-targets": "npm:^7.27.2"
|
|
1056
1046
|
"@babel/helper-plugin-utils": "npm:^7.27.1"
|
|
1057
1047
|
"@babel/plugin-transform-destructuring": "npm:^7.28.0"
|
|
1058
1048
|
"@babel/plugin-transform-parameters": "npm:^7.27.7"
|
|
1059
|
-
"@babel/traverse": "npm:^7.28.
|
|
1049
|
+
"@babel/traverse": "npm:^7.28.4"
|
|
1060
1050
|
peerDependencies:
|
|
1061
1051
|
"@babel/core": ^7.0.0-0
|
|
1062
|
-
checksum: 10c0/
|
|
1052
|
+
checksum: 10c0/81725c8d6349957899975f3f789b1d4fb050ee8b04468ebfaccd5b59e0bda15cbfdef09aee8b4359f322b6715149d680361f11c1a420c4bdbac095537ecf7a90
|
|
1063
1053
|
languageName: node
|
|
1064
1054
|
linkType: hard
|
|
1065
1055
|
|
|
@@ -1228,13 +1218,13 @@ __metadata:
|
|
|
1228
1218
|
linkType: hard
|
|
1229
1219
|
|
|
1230
1220
|
"@babel/plugin-transform-regenerator@npm:^7.28.3":
|
|
1231
|
-
version: 7.28.
|
|
1232
|
-
resolution: "@babel/plugin-transform-regenerator@npm:7.28.
|
|
1221
|
+
version: 7.28.4
|
|
1222
|
+
resolution: "@babel/plugin-transform-regenerator@npm:7.28.4"
|
|
1233
1223
|
dependencies:
|
|
1234
1224
|
"@babel/helper-plugin-utils": "npm:^7.27.1"
|
|
1235
1225
|
peerDependencies:
|
|
1236
1226
|
"@babel/core": ^7.0.0-0
|
|
1237
|
-
checksum: 10c0/
|
|
1227
|
+
checksum: 10c0/5ad14647ffaac63c920e28df1b580ee2e932586bbdc71f61ec264398f68a5406c71a7f921de397a41b954a69316c5ab90e5d789ffa2bb34c5e6feb3727cfefb8
|
|
1238
1228
|
languageName: node
|
|
1239
1229
|
linkType: hard
|
|
1240
1230
|
|
|
@@ -1532,18 +1522,18 @@ __metadata:
|
|
|
1532
1522
|
linkType: hard
|
|
1533
1523
|
|
|
1534
1524
|
"@babel/runtime-corejs3@npm:^7.10.2":
|
|
1535
|
-
version: 7.28.
|
|
1536
|
-
resolution: "@babel/runtime-corejs3@npm:7.28.
|
|
1525
|
+
version: 7.28.4
|
|
1526
|
+
resolution: "@babel/runtime-corejs3@npm:7.28.4"
|
|
1537
1527
|
dependencies:
|
|
1538
1528
|
core-js-pure: "npm:^3.43.0"
|
|
1539
|
-
checksum: 10c0/
|
|
1529
|
+
checksum: 10c0/0a7fe2d4e36d345acf090dd685b5c6ed55af3ead69a84e2cfca56631815dd757f3a362031b376cc746f63f0fd856e7a5280807833f7fa9a5b7f1febd97f8c0da
|
|
1540
1530
|
languageName: node
|
|
1541
1531
|
linkType: hard
|
|
1542
1532
|
|
|
1543
1533
|
"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.10.2, @babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.13.10, @babel/runtime@npm:^7.13.8, @babel/runtime@npm:^7.14.0, @babel/runtime@npm:^7.14.8, @babel/runtime@npm:^7.16.3, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.8, @babel/runtime@npm:^7.27.6, @babel/runtime@npm:^7.3.1, @babel/runtime@npm:^7.4.4, @babel/runtime@npm:^7.5.0, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.6.2, @babel/runtime@npm:^7.6.3, @babel/runtime@npm:^7.7.2, @babel/runtime@npm:^7.7.6, @babel/runtime@npm:^7.8.7":
|
|
1544
|
-
version: 7.28.
|
|
1545
|
-
resolution: "@babel/runtime@npm:7.28.
|
|
1546
|
-
checksum: 10c0/
|
|
1534
|
+
version: 7.28.4
|
|
1535
|
+
resolution: "@babel/runtime@npm:7.28.4"
|
|
1536
|
+
checksum: 10c0/792ce7af9750fb9b93879cc9d1db175701c4689da890e6ced242ea0207c9da411ccf16dc04e689cc01158b28d7898c40d75598f4559109f761c12ce01e959bf7
|
|
1547
1537
|
languageName: node
|
|
1548
1538
|
linkType: hard
|
|
1549
1539
|
|
|
@@ -1558,28 +1548,28 @@ __metadata:
|
|
|
1558
1548
|
languageName: node
|
|
1559
1549
|
linkType: hard
|
|
1560
1550
|
|
|
1561
|
-
"@babel/traverse@npm:^7.1.6, @babel/traverse@npm:^7.12.11, @babel/traverse@npm:^7.12.9, @babel/traverse@npm:^7.13.0, @babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.0, @babel/traverse@npm:^7.28.3":
|
|
1562
|
-
version: 7.28.
|
|
1563
|
-
resolution: "@babel/traverse@npm:7.28.
|
|
1551
|
+
"@babel/traverse@npm:^7.1.6, @babel/traverse@npm:^7.12.11, @babel/traverse@npm:^7.12.9, @babel/traverse@npm:^7.13.0, @babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.0, @babel/traverse@npm:^7.28.3, @babel/traverse@npm:^7.28.4":
|
|
1552
|
+
version: 7.28.4
|
|
1553
|
+
resolution: "@babel/traverse@npm:7.28.4"
|
|
1564
1554
|
dependencies:
|
|
1565
1555
|
"@babel/code-frame": "npm:^7.27.1"
|
|
1566
1556
|
"@babel/generator": "npm:^7.28.3"
|
|
1567
1557
|
"@babel/helper-globals": "npm:^7.28.0"
|
|
1568
|
-
"@babel/parser": "npm:^7.28.
|
|
1558
|
+
"@babel/parser": "npm:^7.28.4"
|
|
1569
1559
|
"@babel/template": "npm:^7.27.2"
|
|
1570
|
-
"@babel/types": "npm:^7.28.
|
|
1560
|
+
"@babel/types": "npm:^7.28.4"
|
|
1571
1561
|
debug: "npm:^4.3.1"
|
|
1572
|
-
checksum: 10c0/
|
|
1562
|
+
checksum: 10c0/ee678fdd49c9f54a32e07e8455242390d43ce44887cea6567b233fe13907b89240c377e7633478a32c6cf1be0e17c2f7f3b0c59f0666e39c5074cc47b968489c
|
|
1573
1563
|
languageName: node
|
|
1574
1564
|
linkType: hard
|
|
1575
1565
|
|
|
1576
|
-
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.11, @babel/types@npm:^7.12.7, @babel/types@npm:^7.2.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.2, @babel/types@npm:^7.4.4":
|
|
1577
|
-
version: 7.28.
|
|
1578
|
-
resolution: "@babel/types@npm:7.28.
|
|
1566
|
+
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.11, @babel/types@npm:^7.12.7, @babel/types@npm:^7.2.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.2, @babel/types@npm:^7.28.4, @babel/types@npm:^7.4.4":
|
|
1567
|
+
version: 7.28.4
|
|
1568
|
+
resolution: "@babel/types@npm:7.28.4"
|
|
1579
1569
|
dependencies:
|
|
1580
1570
|
"@babel/helper-string-parser": "npm:^7.27.1"
|
|
1581
1571
|
"@babel/helper-validator-identifier": "npm:^7.27.1"
|
|
1582
|
-
checksum: 10c0/
|
|
1572
|
+
checksum: 10c0/ac6f909d6191319e08c80efbfac7bd9a25f80cc83b43cd6d82e7233f7a6b9d6e7b90236f3af7400a3f83b576895bcab9188a22b584eb0f224e80e6d4e95f4517
|
|
1583
1573
|
languageName: node
|
|
1584
1574
|
linkType: hard
|
|
1585
1575
|
|
|
@@ -2408,6 +2398,16 @@ __metadata:
|
|
|
2408
2398
|
languageName: node
|
|
2409
2399
|
linkType: hard
|
|
2410
2400
|
|
|
2401
|
+
"@jridgewell/remapping@npm:^2.3.5":
|
|
2402
|
+
version: 2.3.5
|
|
2403
|
+
resolution: "@jridgewell/remapping@npm:2.3.5"
|
|
2404
|
+
dependencies:
|
|
2405
|
+
"@jridgewell/gen-mapping": "npm:^0.3.5"
|
|
2406
|
+
"@jridgewell/trace-mapping": "npm:^0.3.24"
|
|
2407
|
+
checksum: 10c0/3de494219ffeb2c5c38711d0d7bb128097edf91893090a2dbc8ee0b55d092bb7347b1fd0f478486c5eab010e855c73927b1666f2107516d472d24a73017d1194
|
|
2408
|
+
languageName: node
|
|
2409
|
+
linkType: hard
|
|
2410
|
+
|
|
2411
2411
|
"@jridgewell/resolve-uri@npm:^3.1.0":
|
|
2412
2412
|
version: 3.1.2
|
|
2413
2413
|
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
|
|
@@ -3265,8 +3265,8 @@ __metadata:
|
|
|
3265
3265
|
linkType: hard
|
|
3266
3266
|
|
|
3267
3267
|
"@rollup/pluginutils@npm:^5.0.1, @rollup/pluginutils@npm:^5.0.2, @rollup/pluginutils@npm:^5.0.5, @rollup/pluginutils@npm:^5.1.0":
|
|
3268
|
-
version: 5.
|
|
3269
|
-
resolution: "@rollup/pluginutils@npm:5.
|
|
3268
|
+
version: 5.3.0
|
|
3269
|
+
resolution: "@rollup/pluginutils@npm:5.3.0"
|
|
3270
3270
|
dependencies:
|
|
3271
3271
|
"@types/estree": "npm:^1.0.0"
|
|
3272
3272
|
estree-walker: "npm:^2.0.2"
|
|
@@ -3276,153 +3276,153 @@ __metadata:
|
|
|
3276
3276
|
peerDependenciesMeta:
|
|
3277
3277
|
rollup:
|
|
3278
3278
|
optional: true
|
|
3279
|
-
checksum: 10c0/
|
|
3279
|
+
checksum: 10c0/001834bf62d7cf5bac424d2617c113f7f7d3b2bf3c1778cbcccb72cdc957b68989f8e7747c782c2b911f1dde8257f56f8ac1e779e29e74e638e3f1e2cac2bcd0
|
|
3280
3280
|
languageName: node
|
|
3281
3281
|
linkType: hard
|
|
3282
3282
|
|
|
3283
|
-
"@rollup/rollup-android-arm-eabi@npm:4.50.
|
|
3284
|
-
version: 4.50.
|
|
3285
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.50.
|
|
3283
|
+
"@rollup/rollup-android-arm-eabi@npm:4.50.1":
|
|
3284
|
+
version: 4.50.1
|
|
3285
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.50.1"
|
|
3286
3286
|
conditions: os=android & cpu=arm
|
|
3287
3287
|
languageName: node
|
|
3288
3288
|
linkType: hard
|
|
3289
3289
|
|
|
3290
|
-
"@rollup/rollup-android-arm64@npm:4.50.
|
|
3291
|
-
version: 4.50.
|
|
3292
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.50.
|
|
3290
|
+
"@rollup/rollup-android-arm64@npm:4.50.1":
|
|
3291
|
+
version: 4.50.1
|
|
3292
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.50.1"
|
|
3293
3293
|
conditions: os=android & cpu=arm64
|
|
3294
3294
|
languageName: node
|
|
3295
3295
|
linkType: hard
|
|
3296
3296
|
|
|
3297
|
-
"@rollup/rollup-darwin-arm64@npm:4.50.
|
|
3298
|
-
version: 4.50.
|
|
3299
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.50.
|
|
3297
|
+
"@rollup/rollup-darwin-arm64@npm:4.50.1":
|
|
3298
|
+
version: 4.50.1
|
|
3299
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.50.1"
|
|
3300
3300
|
conditions: os=darwin & cpu=arm64
|
|
3301
3301
|
languageName: node
|
|
3302
3302
|
linkType: hard
|
|
3303
3303
|
|
|
3304
|
-
"@rollup/rollup-darwin-x64@npm:4.50.
|
|
3305
|
-
version: 4.50.
|
|
3306
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.50.
|
|
3304
|
+
"@rollup/rollup-darwin-x64@npm:4.50.1":
|
|
3305
|
+
version: 4.50.1
|
|
3306
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.50.1"
|
|
3307
3307
|
conditions: os=darwin & cpu=x64
|
|
3308
3308
|
languageName: node
|
|
3309
3309
|
linkType: hard
|
|
3310
3310
|
|
|
3311
|
-
"@rollup/rollup-freebsd-arm64@npm:4.50.
|
|
3312
|
-
version: 4.50.
|
|
3313
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.50.
|
|
3311
|
+
"@rollup/rollup-freebsd-arm64@npm:4.50.1":
|
|
3312
|
+
version: 4.50.1
|
|
3313
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.50.1"
|
|
3314
3314
|
conditions: os=freebsd & cpu=arm64
|
|
3315
3315
|
languageName: node
|
|
3316
3316
|
linkType: hard
|
|
3317
3317
|
|
|
3318
|
-
"@rollup/rollup-freebsd-x64@npm:4.50.
|
|
3319
|
-
version: 4.50.
|
|
3320
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.50.
|
|
3318
|
+
"@rollup/rollup-freebsd-x64@npm:4.50.1":
|
|
3319
|
+
version: 4.50.1
|
|
3320
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.50.1"
|
|
3321
3321
|
conditions: os=freebsd & cpu=x64
|
|
3322
3322
|
languageName: node
|
|
3323
3323
|
linkType: hard
|
|
3324
3324
|
|
|
3325
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.50.
|
|
3326
|
-
version: 4.50.
|
|
3327
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.50.
|
|
3325
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.50.1":
|
|
3326
|
+
version: 4.50.1
|
|
3327
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.50.1"
|
|
3328
3328
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3329
3329
|
languageName: node
|
|
3330
3330
|
linkType: hard
|
|
3331
3331
|
|
|
3332
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.50.
|
|
3333
|
-
version: 4.50.
|
|
3334
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.50.
|
|
3332
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.50.1":
|
|
3333
|
+
version: 4.50.1
|
|
3334
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.50.1"
|
|
3335
3335
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3336
3336
|
languageName: node
|
|
3337
3337
|
linkType: hard
|
|
3338
3338
|
|
|
3339
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.50.
|
|
3340
|
-
version: 4.50.
|
|
3341
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.50.
|
|
3339
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.50.1":
|
|
3340
|
+
version: 4.50.1
|
|
3341
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.50.1"
|
|
3342
3342
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3343
3343
|
languageName: node
|
|
3344
3344
|
linkType: hard
|
|
3345
3345
|
|
|
3346
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.50.
|
|
3347
|
-
version: 4.50.
|
|
3348
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.50.
|
|
3346
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.50.1":
|
|
3347
|
+
version: 4.50.1
|
|
3348
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.50.1"
|
|
3349
3349
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3350
3350
|
languageName: node
|
|
3351
3351
|
linkType: hard
|
|
3352
3352
|
|
|
3353
|
-
"@rollup/rollup-linux-loongarch64-gnu@npm:4.50.
|
|
3354
|
-
version: 4.50.
|
|
3355
|
-
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.50.
|
|
3353
|
+
"@rollup/rollup-linux-loongarch64-gnu@npm:4.50.1":
|
|
3354
|
+
version: 4.50.1
|
|
3355
|
+
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.50.1"
|
|
3356
3356
|
conditions: os=linux & cpu=loong64 & libc=glibc
|
|
3357
3357
|
languageName: node
|
|
3358
3358
|
linkType: hard
|
|
3359
3359
|
|
|
3360
|
-
"@rollup/rollup-linux-ppc64-gnu@npm:4.50.
|
|
3361
|
-
version: 4.50.
|
|
3362
|
-
resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.50.
|
|
3360
|
+
"@rollup/rollup-linux-ppc64-gnu@npm:4.50.1":
|
|
3361
|
+
version: 4.50.1
|
|
3362
|
+
resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.50.1"
|
|
3363
3363
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3364
3364
|
languageName: node
|
|
3365
3365
|
linkType: hard
|
|
3366
3366
|
|
|
3367
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.50.
|
|
3368
|
-
version: 4.50.
|
|
3369
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.50.
|
|
3367
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.50.1":
|
|
3368
|
+
version: 4.50.1
|
|
3369
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.50.1"
|
|
3370
3370
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3371
3371
|
languageName: node
|
|
3372
3372
|
linkType: hard
|
|
3373
3373
|
|
|
3374
|
-
"@rollup/rollup-linux-riscv64-musl@npm:4.50.
|
|
3375
|
-
version: 4.50.
|
|
3376
|
-
resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.50.
|
|
3374
|
+
"@rollup/rollup-linux-riscv64-musl@npm:4.50.1":
|
|
3375
|
+
version: 4.50.1
|
|
3376
|
+
resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.50.1"
|
|
3377
3377
|
conditions: os=linux & cpu=riscv64 & libc=musl
|
|
3378
3378
|
languageName: node
|
|
3379
3379
|
linkType: hard
|
|
3380
3380
|
|
|
3381
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.50.
|
|
3382
|
-
version: 4.50.
|
|
3383
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.50.
|
|
3381
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.50.1":
|
|
3382
|
+
version: 4.50.1
|
|
3383
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.50.1"
|
|
3384
3384
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3385
3385
|
languageName: node
|
|
3386
3386
|
linkType: hard
|
|
3387
3387
|
|
|
3388
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.50.
|
|
3389
|
-
version: 4.50.
|
|
3390
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.50.
|
|
3388
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.50.1":
|
|
3389
|
+
version: 4.50.1
|
|
3390
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.50.1"
|
|
3391
3391
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3392
3392
|
languageName: node
|
|
3393
3393
|
linkType: hard
|
|
3394
3394
|
|
|
3395
|
-
"@rollup/rollup-linux-x64-musl@npm:4.50.
|
|
3396
|
-
version: 4.50.
|
|
3397
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.50.
|
|
3395
|
+
"@rollup/rollup-linux-x64-musl@npm:4.50.1":
|
|
3396
|
+
version: 4.50.1
|
|
3397
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.50.1"
|
|
3398
3398
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3399
3399
|
languageName: node
|
|
3400
3400
|
linkType: hard
|
|
3401
3401
|
|
|
3402
|
-
"@rollup/rollup-openharmony-arm64@npm:4.50.
|
|
3403
|
-
version: 4.50.
|
|
3404
|
-
resolution: "@rollup/rollup-openharmony-arm64@npm:4.50.
|
|
3402
|
+
"@rollup/rollup-openharmony-arm64@npm:4.50.1":
|
|
3403
|
+
version: 4.50.1
|
|
3404
|
+
resolution: "@rollup/rollup-openharmony-arm64@npm:4.50.1"
|
|
3405
3405
|
conditions: os=openharmony & cpu=arm64
|
|
3406
3406
|
languageName: node
|
|
3407
3407
|
linkType: hard
|
|
3408
3408
|
|
|
3409
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.50.
|
|
3410
|
-
version: 4.50.
|
|
3411
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.50.
|
|
3409
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.50.1":
|
|
3410
|
+
version: 4.50.1
|
|
3411
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.50.1"
|
|
3412
3412
|
conditions: os=win32 & cpu=arm64
|
|
3413
3413
|
languageName: node
|
|
3414
3414
|
linkType: hard
|
|
3415
3415
|
|
|
3416
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.50.
|
|
3417
|
-
version: 4.50.
|
|
3418
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.50.
|
|
3416
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.50.1":
|
|
3417
|
+
version: 4.50.1
|
|
3418
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.50.1"
|
|
3419
3419
|
conditions: os=win32 & cpu=ia32
|
|
3420
3420
|
languageName: node
|
|
3421
3421
|
linkType: hard
|
|
3422
3422
|
|
|
3423
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.50.
|
|
3424
|
-
version: 4.50.
|
|
3425
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.50.
|
|
3423
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.50.1":
|
|
3424
|
+
version: 4.50.1
|
|
3425
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.50.1"
|
|
3426
3426
|
conditions: os=win32 & cpu=x64
|
|
3427
3427
|
languageName: node
|
|
3428
3428
|
linkType: hard
|
|
@@ -5085,11 +5085,11 @@ __metadata:
|
|
|
5085
5085
|
linkType: hard
|
|
5086
5086
|
|
|
5087
5087
|
"@swc/types@npm:^0.1.9":
|
|
5088
|
-
version: 0.1.
|
|
5089
|
-
resolution: "@swc/types@npm:0.1.
|
|
5088
|
+
version: 0.1.25
|
|
5089
|
+
resolution: "@swc/types@npm:0.1.25"
|
|
5090
5090
|
dependencies:
|
|
5091
5091
|
"@swc/counter": "npm:^0.1.3"
|
|
5092
|
-
checksum: 10c0/
|
|
5092
|
+
checksum: 10c0/847a5b20b131281f89d640a7ed4887fb65724807d53d334b230e84b98c21097aa10cd28a074f9ed287a6ce109e443dd4bafbe7dcfb62333d7806c4ea3e7f8aca
|
|
5093
5093
|
languageName: node
|
|
5094
5094
|
linkType: hard
|
|
5095
5095
|
|
|
@@ -5684,11 +5684,11 @@ __metadata:
|
|
|
5684
5684
|
linkType: hard
|
|
5685
5685
|
|
|
5686
5686
|
"@types/node@npm:*":
|
|
5687
|
-
version: 24.3.
|
|
5688
|
-
resolution: "@types/node@npm:24.3.
|
|
5687
|
+
version: 24.3.1
|
|
5688
|
+
resolution: "@types/node@npm:24.3.1"
|
|
5689
5689
|
dependencies:
|
|
5690
5690
|
undici-types: "npm:~7.10.0"
|
|
5691
|
-
checksum: 10c0/
|
|
5691
|
+
checksum: 10c0/99b86fc32294fcd61136ca1f771026443a1e370e9f284f75e243b29299dd878e18c193deba1ce29a374932db4e30eb80826e1049b9aad02d36f5c30b94b6f928
|
|
5692
5692
|
languageName: node
|
|
5693
5693
|
linkType: hard
|
|
5694
5694
|
|
|
@@ -6779,9 +6779,9 @@ __metadata:
|
|
|
6779
6779
|
linkType: hard
|
|
6780
6780
|
|
|
6781
6781
|
"ansi-regex@npm:^6.0.1":
|
|
6782
|
-
version: 6.2.
|
|
6783
|
-
resolution: "ansi-regex@npm:6.2.
|
|
6784
|
-
checksum: 10c0/
|
|
6782
|
+
version: 6.2.2
|
|
6783
|
+
resolution: "ansi-regex@npm:6.2.2"
|
|
6784
|
+
checksum: 10c0/05d4acb1d2f59ab2cf4b794339c7b168890d44dda4bf0ce01152a8da0213aca207802f930442ce8cd22d7a92f44907664aac6508904e75e038fa944d2601b30f
|
|
6785
6785
|
languageName: node
|
|
6786
6786
|
linkType: hard
|
|
6787
6787
|
|
|
@@ -6804,9 +6804,9 @@ __metadata:
|
|
|
6804
6804
|
linkType: hard
|
|
6805
6805
|
|
|
6806
6806
|
"ansi-styles@npm:^6.0.0, ansi-styles@npm:^6.1.0":
|
|
6807
|
-
version: 6.2.
|
|
6808
|
-
resolution: "ansi-styles@npm:6.2.
|
|
6809
|
-
checksum: 10c0/
|
|
6807
|
+
version: 6.2.3
|
|
6808
|
+
resolution: "ansi-styles@npm:6.2.3"
|
|
6809
|
+
checksum: 10c0/23b8a4ce14e18fb854693b95351e286b771d23d8844057ed2e7d083cd3e708376c3323707ec6a24365f7d7eda3ca00327fe04092e29e551499ec4c8b7bfac868
|
|
6810
6810
|
languageName: node
|
|
6811
6811
|
linkType: hard
|
|
6812
6812
|
|
|
@@ -8057,9 +8057,9 @@ __metadata:
|
|
|
8057
8057
|
linkType: hard
|
|
8058
8058
|
|
|
8059
8059
|
"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.30001737":
|
|
8060
|
-
version: 1.0.
|
|
8061
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8062
|
-
checksum: 10c0/
|
|
8060
|
+
version: 1.0.30001741
|
|
8061
|
+
resolution: "caniuse-lite@npm:1.0.30001741"
|
|
8062
|
+
checksum: 10c0/45746f896205a61a8eeb85a32aeca243ebce640cd6eb80d04949d9389a13f4659c737860300d7b988057599f0958c55eeab74ec02ce9ef137feb7d006e75fec1
|
|
8063
8063
|
languageName: node
|
|
8064
8064
|
linkType: hard
|
|
8065
8065
|
|
|
@@ -9882,9 +9882,9 @@ __metadata:
|
|
|
9882
9882
|
linkType: hard
|
|
9883
9883
|
|
|
9884
9884
|
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.211":
|
|
9885
|
-
version: 1.5.
|
|
9886
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9887
|
-
checksum: 10c0/
|
|
9885
|
+
version: 1.5.215
|
|
9886
|
+
resolution: "electron-to-chromium@npm:1.5.215"
|
|
9887
|
+
checksum: 10c0/3a45976d1193e57284533096b3bbec218a5d4d85af4f7c133522aae35b14bbf22734f48ccc3f0e43a451441ebc375fa2f4350390fd729dcedb97543692133e39
|
|
9888
9888
|
languageName: node
|
|
9889
9889
|
linkType: hard
|
|
9890
9890
|
|
|
@@ -11025,7 +11025,7 @@ __metadata:
|
|
|
11025
11025
|
languageName: node
|
|
11026
11026
|
linkType: hard
|
|
11027
11027
|
|
|
11028
|
-
"fdir@npm:^6.
|
|
11028
|
+
"fdir@npm:^6.5.0":
|
|
11029
11029
|
version: 6.5.0
|
|
11030
11030
|
resolution: "fdir@npm:6.5.0"
|
|
11031
11031
|
peerDependencies:
|
|
@@ -14151,11 +14151,11 @@ __metadata:
|
|
|
14151
14151
|
linkType: hard
|
|
14152
14152
|
|
|
14153
14153
|
"magic-string@npm:^0.30.11, magic-string@npm:^0.30.5":
|
|
14154
|
-
version: 0.30.
|
|
14155
|
-
resolution: "magic-string@npm:0.30.
|
|
14154
|
+
version: 0.30.19
|
|
14155
|
+
resolution: "magic-string@npm:0.30.19"
|
|
14156
14156
|
dependencies:
|
|
14157
14157
|
"@jridgewell/sourcemap-codec": "npm:^1.5.5"
|
|
14158
|
-
checksum: 10c0/
|
|
14158
|
+
checksum: 10c0/db23fd2e2ee98a1aeb88a4cdb2353137fcf05819b883c856dd79e4c7dfb25151e2a5a4d5dbd88add5e30ed8ae5c51bcf4accbc6becb75249d924ec7b4fbcae27
|
|
14159
14159
|
languageName: node
|
|
14160
14160
|
linkType: hard
|
|
14161
14161
|
|
|
@@ -15153,9 +15153,9 @@ __metadata:
|
|
|
15153
15153
|
linkType: hard
|
|
15154
15154
|
|
|
15155
15155
|
"node-releases@npm:^2.0.19":
|
|
15156
|
-
version: 2.0.
|
|
15157
|
-
resolution: "node-releases@npm:2.0.
|
|
15158
|
-
checksum: 10c0/
|
|
15156
|
+
version: 2.0.20
|
|
15157
|
+
resolution: "node-releases@npm:2.0.20"
|
|
15158
|
+
checksum: 10c0/24c5b1f5aa16d042c47a651ca2e022ca27320f95e4d2b76b9e543cc470eadd01032646383212ec373f1a3dd15cccce83d77c318ee99585366dbd25db4366abd8
|
|
15159
15159
|
languageName: node
|
|
15160
15160
|
linkType: hard
|
|
15161
15161
|
|
|
@@ -15949,7 +15949,7 @@ __metadata:
|
|
|
15949
15949
|
languageName: node
|
|
15950
15950
|
linkType: hard
|
|
15951
15951
|
|
|
15952
|
-
"picomatch@npm:^4.0.2":
|
|
15952
|
+
"picomatch@npm:^4.0.2, picomatch@npm:^4.0.3":
|
|
15953
15953
|
version: 4.0.3
|
|
15954
15954
|
resolution: "picomatch@npm:4.0.3"
|
|
15955
15955
|
checksum: 10c0/9582c951e95eebee5434f59e426cddd228a7b97a0161a375aed4be244bd3fe8e3a31b846808ea14ef2c8a2527a6eeab7b3946a67d5979e81694654f939473ae2
|
|
@@ -17068,13 +17068,13 @@ __metadata:
|
|
|
17068
17068
|
linkType: hard
|
|
17069
17069
|
|
|
17070
17070
|
"prosemirror-view@npm:^1.0.0, prosemirror-view@npm:^1.1.0, prosemirror-view@npm:^1.23.6, prosemirror-view@npm:^1.27.0, prosemirror-view@npm:^1.28.2, prosemirror-view@npm:^1.31.0, prosemirror-view@npm:^1.39.1":
|
|
17071
|
-
version: 1.
|
|
17072
|
-
resolution: "prosemirror-view@npm:1.
|
|
17071
|
+
version: 1.41.0
|
|
17072
|
+
resolution: "prosemirror-view@npm:1.41.0"
|
|
17073
17073
|
dependencies:
|
|
17074
17074
|
prosemirror-model: "npm:^1.20.0"
|
|
17075
17075
|
prosemirror-state: "npm:^1.0.0"
|
|
17076
17076
|
prosemirror-transform: "npm:^1.1.0"
|
|
17077
|
-
checksum: 10c0/
|
|
17077
|
+
checksum: 10c0/32aa615cd6eea24d956ea399a91b21ad7af589c5ba047c30f5be698d377fb345a0b1c16d89409cedf715dacc75bfeb39f3e509f6510626645fb8cf33e7cfd451
|
|
17078
17078
|
languageName: node
|
|
17079
17079
|
linkType: hard
|
|
17080
17080
|
|
|
@@ -18898,30 +18898,30 @@ __metadata:
|
|
|
18898
18898
|
linkType: hard
|
|
18899
18899
|
|
|
18900
18900
|
"rollup@npm:^4.13.0":
|
|
18901
|
-
version: 4.50.
|
|
18902
|
-
resolution: "rollup@npm:4.50.
|
|
18903
|
-
dependencies:
|
|
18904
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.50.
|
|
18905
|
-
"@rollup/rollup-android-arm64": "npm:4.50.
|
|
18906
|
-
"@rollup/rollup-darwin-arm64": "npm:4.50.
|
|
18907
|
-
"@rollup/rollup-darwin-x64": "npm:4.50.
|
|
18908
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.50.
|
|
18909
|
-
"@rollup/rollup-freebsd-x64": "npm:4.50.
|
|
18910
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.50.
|
|
18911
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.50.
|
|
18912
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.50.
|
|
18913
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.50.
|
|
18914
|
-
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.50.
|
|
18915
|
-
"@rollup/rollup-linux-ppc64-gnu": "npm:4.50.
|
|
18916
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.50.
|
|
18917
|
-
"@rollup/rollup-linux-riscv64-musl": "npm:4.50.
|
|
18918
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.50.
|
|
18919
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.50.
|
|
18920
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.50.
|
|
18921
|
-
"@rollup/rollup-openharmony-arm64": "npm:4.50.
|
|
18922
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.50.
|
|
18923
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.50.
|
|
18924
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.50.
|
|
18901
|
+
version: 4.50.1
|
|
18902
|
+
resolution: "rollup@npm:4.50.1"
|
|
18903
|
+
dependencies:
|
|
18904
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.50.1"
|
|
18905
|
+
"@rollup/rollup-android-arm64": "npm:4.50.1"
|
|
18906
|
+
"@rollup/rollup-darwin-arm64": "npm:4.50.1"
|
|
18907
|
+
"@rollup/rollup-darwin-x64": "npm:4.50.1"
|
|
18908
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.50.1"
|
|
18909
|
+
"@rollup/rollup-freebsd-x64": "npm:4.50.1"
|
|
18910
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.50.1"
|
|
18911
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.50.1"
|
|
18912
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.50.1"
|
|
18913
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.50.1"
|
|
18914
|
+
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.50.1"
|
|
18915
|
+
"@rollup/rollup-linux-ppc64-gnu": "npm:4.50.1"
|
|
18916
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.50.1"
|
|
18917
|
+
"@rollup/rollup-linux-riscv64-musl": "npm:4.50.1"
|
|
18918
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.50.1"
|
|
18919
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.50.1"
|
|
18920
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.50.1"
|
|
18921
|
+
"@rollup/rollup-openharmony-arm64": "npm:4.50.1"
|
|
18922
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.50.1"
|
|
18923
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.50.1"
|
|
18924
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.50.1"
|
|
18925
18925
|
"@types/estree": "npm:1.0.8"
|
|
18926
18926
|
fsevents: "npm:~2.3.2"
|
|
18927
18927
|
dependenciesMeta:
|
|
@@ -18971,7 +18971,7 @@ __metadata:
|
|
|
18971
18971
|
optional: true
|
|
18972
18972
|
bin:
|
|
18973
18973
|
rollup: dist/bin/rollup
|
|
18974
|
-
checksum: 10c0/
|
|
18974
|
+
checksum: 10c0/2029282826d5fb4e308be261b2c28329a4d2bd34304cc3960da69fd21d5acccd0267d6770b1656ffc8f166203ef7e865b4583d5f842a519c8ef059ac71854205
|
|
18975
18975
|
languageName: node
|
|
18976
18976
|
linkType: hard
|
|
18977
18977
|
|
|
@@ -20160,11 +20160,11 @@ __metadata:
|
|
|
20160
20160
|
linkType: hard
|
|
20161
20161
|
|
|
20162
20162
|
"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0":
|
|
20163
|
-
version: 7.1.
|
|
20164
|
-
resolution: "strip-ansi@npm:7.1.
|
|
20163
|
+
version: 7.1.2
|
|
20164
|
+
resolution: "strip-ansi@npm:7.1.2"
|
|
20165
20165
|
dependencies:
|
|
20166
20166
|
ansi-regex: "npm:^6.0.1"
|
|
20167
|
-
checksum: 10c0/
|
|
20167
|
+
checksum: 10c0/0d6d7a023de33368fd042aab0bf48f4f4077abdfd60e5393e73c7c411e85e1b3a83507c11af2e656188511475776215df9ca589b4da2295c9455cc399ce1858b
|
|
20168
20168
|
languageName: node
|
|
20169
20169
|
linkType: hard
|
|
20170
20170
|
|
|
@@ -20672,12 +20672,12 @@ __metadata:
|
|
|
20672
20672
|
linkType: hard
|
|
20673
20673
|
|
|
20674
20674
|
"tinyglobby@npm:^0.2.12":
|
|
20675
|
-
version: 0.2.
|
|
20676
|
-
resolution: "tinyglobby@npm:0.2.
|
|
20675
|
+
version: 0.2.15
|
|
20676
|
+
resolution: "tinyglobby@npm:0.2.15"
|
|
20677
20677
|
dependencies:
|
|
20678
|
-
fdir: "npm:^6.
|
|
20679
|
-
picomatch: "npm:^4.0.
|
|
20680
|
-
checksum: 10c0/
|
|
20678
|
+
fdir: "npm:^6.5.0"
|
|
20679
|
+
picomatch: "npm:^4.0.3"
|
|
20680
|
+
checksum: 10c0/869c31490d0d88eedb8305d178d4c75e7463e820df5a9b9d388291daf93e8b1eb5de1dad1c1e139767e4269fe75f3b10d5009b2cc14db96ff98986920a186844
|
|
20681
20681
|
languageName: node
|
|
20682
20682
|
linkType: hard
|
|
20683
20683
|
|