@licklist/design 0.71.6-dev.7 → 0.71.6-dev.8
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/order-process/components/BookingSummary/BookingSummary.d.ts +1 -1
- package/dist/iframe/order-process/components/BookingSummary/BookingSummary.d.ts.map +1 -1
- package/dist/iframe/order-process/components/BookingSummary/BookingSummary.js +1 -2
- package/dist/iframe/order-process/components/BookingSummary/components/ProductSummary/ProductSummary.d.ts +1 -2
- package/dist/iframe/order-process/components/BookingSummary/components/ProductSummary/ProductSummary.d.ts.map +1 -1
- package/dist/iframe/order-process/components/BookingSummary/components/ProductSummary/ProductSummary.js +2 -2
- package/dist/iframe/order-process/components/BookingSummary/components/ProductsByMenuStep/ProductsByMenuStep.d.ts +1 -2
- package/dist/iframe/order-process/components/BookingSummary/components/ProductsByMenuStep/ProductsByMenuStep.d.ts.map +1 -1
- package/dist/iframe/order-process/components/BookingSummary/components/ProductsByMenuStep/ProductsByMenuStep.js +1 -2
- package/package.json +2 -2
- package/src/iframe/order-process/components/BookingSummary/BookingSummary.tsx +0 -2
- package/src/iframe/order-process/components/BookingSummary/components/ProductSummary/ProductSummary.tsx +1 -6
- package/src/iframe/order-process/components/BookingSummary/components/ProductsByMenuStep/ProductsByMenuStep.tsx +0 -3
- package/yarn.lock +47 -24
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BookingSummaryProps } from './types';
|
|
2
2
|
export declare const BookingSummary: {
|
|
3
|
-
({ date, time, menuSteps, formValues, shouldHidePeopleAmount, eventName, transactionFee, productsWithErrors, isLoading, hasPeopleInput,
|
|
3
|
+
({ date, time, menuSteps, formValues, shouldHidePeopleAmount, eventName, transactionFee, productsWithErrors, isLoading, hasPeopleInput, peopleAmount, footer, headerComponent, isPaymentPage, }: Omit<BookingSummaryProps, "totallWithDiscount">): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
SummaryTotal: ({ formValues, totalWithDiscount, transactionFee, isFreePayment, }: Pick<BookingSummaryProps, "formValues" | "totalWithDiscount" | "transactionFee" | "isFreePayment">) => import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
Accordion: ({ children, title, showTitleOnlyOnMobile, hasPeopleInput, isPaymentPage, headerComponent, }: import("./components/BookingSummaryAccordion").BookingSummaryAccordionProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BookingSummary.d.ts","sourceRoot":"","sources":["../../../../../src/iframe/order-process/components/BookingSummary/BookingSummary.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAM7C,eAAO,MAAM,cAAc;
|
|
1
|
+
{"version":3,"file":"BookingSummary.d.ts","sourceRoot":"","sources":["../../../../../src/iframe/order-process/components/BookingSummary/BookingSummary.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAM7C,eAAO,MAAM,cAAc;qMAgBxB,IAAI,CAAC,mBAAmB,EAAE,oBAAoB,CAAC;;;CAgFjD,CAAA"}
|
|
@@ -12,7 +12,7 @@ import { ReactComponent as SvgCalendar } from '../../../../assets/iframe/calenda
|
|
|
12
12
|
import { LoaderIndicator } from '../../../../static/loader/LoaderIndicator.js';
|
|
13
13
|
|
|
14
14
|
var BookingSummary = function(param) {
|
|
15
|
-
var date = param.date, time = param.time, menuSteps = param.menuSteps, _param_formValues = param.formValues, formValues = _param_formValues === void 0 ? {} : _param_formValues, shouldHidePeopleAmount = param.shouldHidePeopleAmount, eventName = param.eventName, _param_transactionFee = param.transactionFee, transactionFee = _param_transactionFee === void 0 ? 0 : _param_transactionFee, _param_productsWithErrors = param.productsWithErrors, productsWithErrors = _param_productsWithErrors === void 0 ? [] : _param_productsWithErrors, isLoading = param.isLoading, hasPeopleInput = param.hasPeopleInput,
|
|
15
|
+
var date = param.date, time = param.time, menuSteps = param.menuSteps, _param_formValues = param.formValues, formValues = _param_formValues === void 0 ? {} : _param_formValues, shouldHidePeopleAmount = param.shouldHidePeopleAmount, eventName = param.eventName, _param_transactionFee = param.transactionFee, transactionFee = _param_transactionFee === void 0 ? 0 : _param_transactionFee, _param_productsWithErrors = param.productsWithErrors, productsWithErrors = _param_productsWithErrors === void 0 ? [] : _param_productsWithErrors, isLoading = param.isLoading, hasPeopleInput = param.hasPeopleInput, peopleAmount = param.peopleAmount, footer = param.footer, headerComponent = param.headerComponent, // TODO Remove this, when all iframe pages will be ready
|
|
16
16
|
isPaymentPage = param.isPaymentPage;
|
|
17
17
|
var _values;
|
|
18
18
|
var t = useTranslation('Design').t;
|
|
@@ -51,7 +51,6 @@ var BookingSummary = function(param) {
|
|
|
51
51
|
className: "products-by-menu-step",
|
|
52
52
|
children: menuSteps.map(function(menuStep) {
|
|
53
53
|
return /*#__PURE__*/ jsx(ProductsByMenuStep, {
|
|
54
|
-
isPaymentLink: isPaymentLink,
|
|
55
54
|
orderItems: formValues,
|
|
56
55
|
step: menuStep,
|
|
57
56
|
productsWithErrors: productsWithErrors
|
|
@@ -3,8 +3,7 @@ type ProductSummaryProps = {
|
|
|
3
3
|
name?: string;
|
|
4
4
|
productQuantityError?: string;
|
|
5
5
|
orderProduct: OrderItem;
|
|
6
|
-
isPaymentLink?: boolean;
|
|
7
6
|
};
|
|
8
|
-
export declare const ProductSummary: ({ name, productQuantityError, orderProduct,
|
|
7
|
+
export declare const ProductSummary: ({ name, productQuantityError, orderProduct, }: ProductSummaryProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
8
|
export {};
|
|
10
9
|
//# sourceMappingURL=ProductSummary.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProductSummary.d.ts","sourceRoot":"","sources":["../../../../../../src/iframe/order-process/components/BookingSummary/components/ProductSummary/ProductSummary.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,SAAS,EAAE,MAAM,wDAAwD,CAAA;AAElF,KAAK,mBAAmB,GAAG;IACzB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAC7B,YAAY,EAAE,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"ProductSummary.d.ts","sourceRoot":"","sources":["../../../../../../src/iframe/order-process/components/BookingSummary/components/ProductSummary/ProductSummary.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,SAAS,EAAE,MAAM,wDAAwD,CAAA;AAElF,KAAK,mBAAmB,GAAG;IACzB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAC7B,YAAY,EAAE,SAAS,CAAA;CACxB,CAAA;AAED,eAAO,MAAM,cAAc,kDAIxB,mBAAmB,4CA2BrB,CAAA"}
|
|
@@ -4,10 +4,10 @@ import { useIntl } from 'react-intl';
|
|
|
4
4
|
import * as Config from '@licklist/core/dist/Config';
|
|
5
5
|
|
|
6
6
|
var ProductSummary = function(param) {
|
|
7
|
-
var name = param.name, productQuantityError = param.productQuantityError, orderProduct = param.orderProduct
|
|
7
|
+
var name = param.name, productQuantityError = param.productQuantityError, orderProduct = param.orderProduct;
|
|
8
8
|
var t = useTranslation('Design').t;
|
|
9
9
|
var formatNumber = useIntl().formatNumber;
|
|
10
|
-
var priceForOneProduct =
|
|
10
|
+
var priceForOneProduct = orderProduct === null || orderProduct === void 0 ? void 0 : orderProduct.price;
|
|
11
11
|
var fullPrice = formatNumber(priceForOneProduct * (orderProduct === null || orderProduct === void 0 ? void 0 : orderProduct.quantity), {
|
|
12
12
|
style: 'currency',
|
|
13
13
|
currency: Config.Currency.GBP
|
|
@@ -5,7 +5,6 @@ export type ProductsByMenuStepsProps = {
|
|
|
5
5
|
orderItems: OrderItems;
|
|
6
6
|
step: MenuStep;
|
|
7
7
|
productsWithErrors?: QuantityCheckProductInfo[];
|
|
8
|
-
isPaymentLink?: boolean;
|
|
9
8
|
};
|
|
10
|
-
export declare const ProductsByMenuStep: ({ orderItems, step, productsWithErrors,
|
|
9
|
+
export declare const ProductsByMenuStep: ({ orderItems, step, productsWithErrors, }: ProductsByMenuStepsProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
10
|
//# sourceMappingURL=ProductsByMenuStep.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProductsByMenuStep.d.ts","sourceRoot":"","sources":["../../../../../../src/iframe/order-process/components/BookingSummary/components/ProductsByMenuStep/ProductsByMenuStep.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,8CAA8C,CAAA;AACvF,OAAO,EAEL,UAAU,EACX,MAAM,wDAAwD,CAAA;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,qDAAqD,CAAA;AAqB9E,MAAM,MAAM,wBAAwB,GAAG;IACrC,UAAU,EAAE,UAAU,CAAA;IACtB,IAAI,EAAE,QAAQ,CAAA;IACd,kBAAkB,CAAC,EAAE,wBAAwB,EAAE,CAAA;
|
|
1
|
+
{"version":3,"file":"ProductsByMenuStep.d.ts","sourceRoot":"","sources":["../../../../../../src/iframe/order-process/components/BookingSummary/components/ProductsByMenuStep/ProductsByMenuStep.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,8CAA8C,CAAA;AACvF,OAAO,EAEL,UAAU,EACX,MAAM,wDAAwD,CAAA;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,qDAAqD,CAAA;AAqB9E,MAAM,MAAM,wBAAwB,GAAG;IACrC,UAAU,EAAE,UAAU,CAAA;IACtB,IAAI,EAAE,QAAQ,CAAA;IACd,kBAAkB,CAAC,EAAE,wBAAwB,EAAE,CAAA;CAChD,CAAA;AAED,eAAO,MAAM,kBAAkB,8CAI5B,wBAAwB,4CAuC1B,CAAA"}
|
|
@@ -18,7 +18,7 @@ var getOrderItemsForCategory = function(orderItems, categoryId) {
|
|
|
18
18
|
});
|
|
19
19
|
};
|
|
20
20
|
var ProductsByMenuStep = function(param) {
|
|
21
|
-
var orderItems = param.orderItems, step = param.step, _param_productsWithErrors = param.productsWithErrors, productsWithErrors = _param_productsWithErrors === void 0 ? [] : _param_productsWithErrors
|
|
21
|
+
var orderItems = param.orderItems, step = param.step, _param_productsWithErrors = param.productsWithErrors, productsWithErrors = _param_productsWithErrors === void 0 ? [] : _param_productsWithErrors;
|
|
22
22
|
var productCategories = step.productCategories;
|
|
23
23
|
if (!doesStepHaveItems(orderItems, step)) return null;
|
|
24
24
|
return /*#__PURE__*/ jsx("div", {
|
|
@@ -36,7 +36,6 @@ var ProductsByMenuStep = function(param) {
|
|
|
36
36
|
categoryOrderItems.map(function(orderItem) {
|
|
37
37
|
var productQuantityError = getProductError(productsWithErrors, orderItem.id);
|
|
38
38
|
return /*#__PURE__*/ jsx(ProductSummary, {
|
|
39
|
-
isPaymentLink: isPaymentLink,
|
|
40
39
|
name: orderItem.name,
|
|
41
40
|
productQuantityError: productQuantityError,
|
|
42
41
|
orderProduct: orderItem
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@licklist/design",
|
|
3
|
-
"version": "0.71.6-dev.
|
|
3
|
+
"version": "0.71.6-dev.8",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
|
|
@@ -208,4 +208,4 @@
|
|
|
208
208
|
"yarn": "4.4.0"
|
|
209
209
|
},
|
|
210
210
|
"stableVersion": "0.71.4-dev.1"
|
|
211
|
-
}
|
|
211
|
+
}
|
|
@@ -21,7 +21,6 @@ export const BookingSummary = ({
|
|
|
21
21
|
productsWithErrors = [],
|
|
22
22
|
isLoading,
|
|
23
23
|
hasPeopleInput,
|
|
24
|
-
isPaymentLink,
|
|
25
24
|
peopleAmount,
|
|
26
25
|
footer,
|
|
27
26
|
headerComponent,
|
|
@@ -62,7 +61,6 @@ export const BookingSummary = ({
|
|
|
62
61
|
<div className='products-by-menu-step'>
|
|
63
62
|
{menuSteps.map((menuStep) => (
|
|
64
63
|
<ProductsByMenuStep
|
|
65
|
-
isPaymentLink={isPaymentLink}
|
|
66
64
|
key={menuStep.id}
|
|
67
65
|
orderItems={formValues}
|
|
68
66
|
step={menuStep}
|
|
@@ -7,22 +7,17 @@ type ProductSummaryProps = {
|
|
|
7
7
|
name?: string
|
|
8
8
|
productQuantityError?: string
|
|
9
9
|
orderProduct: OrderItem
|
|
10
|
-
isPaymentLink?: boolean
|
|
11
10
|
}
|
|
12
11
|
|
|
13
12
|
export const ProductSummary = ({
|
|
14
13
|
name,
|
|
15
14
|
productQuantityError,
|
|
16
15
|
orderProduct,
|
|
17
|
-
isPaymentLink,
|
|
18
16
|
}: ProductSummaryProps) => {
|
|
19
17
|
const { t } = useTranslation('Design')
|
|
20
18
|
const { formatNumber } = useIntl()
|
|
21
19
|
|
|
22
|
-
const priceForOneProduct =
|
|
23
|
-
!isPaymentLink && orderProduct?.hasDeposit
|
|
24
|
-
? orderProduct?.deposit
|
|
25
|
-
: orderProduct?.price
|
|
20
|
+
const priceForOneProduct = orderProduct?.price
|
|
26
21
|
|
|
27
22
|
const fullPrice = formatNumber(priceForOneProduct * orderProduct?.quantity, {
|
|
28
23
|
style: 'currency',
|
|
@@ -28,14 +28,12 @@ export type ProductsByMenuStepsProps = {
|
|
|
28
28
|
orderItems: OrderItems
|
|
29
29
|
step: MenuStep
|
|
30
30
|
productsWithErrors?: QuantityCheckProductInfo[]
|
|
31
|
-
isPaymentLink?: boolean
|
|
32
31
|
}
|
|
33
32
|
|
|
34
33
|
export const ProductsByMenuStep = ({
|
|
35
34
|
orderItems,
|
|
36
35
|
step,
|
|
37
36
|
productsWithErrors = [],
|
|
38
|
-
isPaymentLink,
|
|
39
37
|
}: ProductsByMenuStepsProps) => {
|
|
40
38
|
const { productCategories } = step
|
|
41
39
|
|
|
@@ -63,7 +61,6 @@ export const ProductsByMenuStep = ({
|
|
|
63
61
|
|
|
64
62
|
return (
|
|
65
63
|
<ProductSummary
|
|
66
|
-
isPaymentLink={isPaymentLink}
|
|
67
64
|
key={orderItem.id}
|
|
68
65
|
name={orderItem.name}
|
|
69
66
|
productQuantityError={productQuantityError}
|
package/yarn.lock
CHANGED
|
@@ -5175,14 +5175,14 @@ __metadata:
|
|
|
5175
5175
|
linkType: hard
|
|
5176
5176
|
|
|
5177
5177
|
"@tiptap/extension-bubble-menu@npm:^2.0.0-beta.56":
|
|
5178
|
-
version: 2.
|
|
5179
|
-
resolution: "@tiptap/extension-bubble-menu@npm:2.
|
|
5178
|
+
version: 2.11.0
|
|
5179
|
+
resolution: "@tiptap/extension-bubble-menu@npm:2.11.0"
|
|
5180
5180
|
dependencies:
|
|
5181
5181
|
tippy.js: "npm:^6.3.7"
|
|
5182
5182
|
peerDependencies:
|
|
5183
5183
|
"@tiptap/core": ^2.7.0
|
|
5184
5184
|
"@tiptap/pm": ^2.7.0
|
|
5185
|
-
checksum: 10c0/
|
|
5185
|
+
checksum: 10c0/2766729accb284cbe1adfb224bdeb8597f6279a8197b5f7f74e5be4f2cac03732ac8422af90d81490eabd5b5cca13a3077817ca4acb229ea278785c21a595ee3
|
|
5186
5186
|
languageName: node
|
|
5187
5187
|
linkType: hard
|
|
5188
5188
|
|
|
@@ -5205,14 +5205,14 @@ __metadata:
|
|
|
5205
5205
|
linkType: hard
|
|
5206
5206
|
|
|
5207
5207
|
"@tiptap/extension-floating-menu@npm:^2.0.0-beta.51":
|
|
5208
|
-
version: 2.
|
|
5209
|
-
resolution: "@tiptap/extension-floating-menu@npm:2.
|
|
5208
|
+
version: 2.11.0
|
|
5209
|
+
resolution: "@tiptap/extension-floating-menu@npm:2.11.0"
|
|
5210
5210
|
dependencies:
|
|
5211
5211
|
tippy.js: "npm:^6.3.7"
|
|
5212
5212
|
peerDependencies:
|
|
5213
5213
|
"@tiptap/core": ^2.7.0
|
|
5214
5214
|
"@tiptap/pm": ^2.7.0
|
|
5215
|
-
checksum: 10c0/
|
|
5215
|
+
checksum: 10c0/aae10844745b61624f48fefaf2b65546b15517bcbed40765d653cae190d325c87c890354c5ab869cecf1c8387646d96527040520f337f318dc22b674e5da4ec9
|
|
5216
5216
|
languageName: node
|
|
5217
5217
|
linkType: hard
|
|
5218
5218
|
|
|
@@ -10092,8 +10092,8 @@ __metadata:
|
|
|
10092
10092
|
linkType: hard
|
|
10093
10093
|
|
|
10094
10094
|
"es-abstract@npm:^1.17.5, es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.0, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6":
|
|
10095
|
-
version: 1.23.
|
|
10096
|
-
resolution: "es-abstract@npm:1.23.
|
|
10095
|
+
version: 1.23.8
|
|
10096
|
+
resolution: "es-abstract@npm:1.23.8"
|
|
10097
10097
|
dependencies:
|
|
10098
10098
|
array-buffer-byte-length: "npm:^1.0.2"
|
|
10099
10099
|
arraybuffer.prototype.slice: "npm:^1.0.4"
|
|
@@ -10130,8 +10130,10 @@ __metadata:
|
|
|
10130
10130
|
object-inspect: "npm:^1.13.3"
|
|
10131
10131
|
object-keys: "npm:^1.1.1"
|
|
10132
10132
|
object.assign: "npm:^4.1.7"
|
|
10133
|
+
own-keys: "npm:^1.0.0"
|
|
10133
10134
|
regexp.prototype.flags: "npm:^1.5.3"
|
|
10134
10135
|
safe-array-concat: "npm:^1.1.3"
|
|
10136
|
+
safe-push-apply: "npm:^1.0.0"
|
|
10135
10137
|
safe-regex-test: "npm:^1.1.0"
|
|
10136
10138
|
string.prototype.trim: "npm:^1.2.10"
|
|
10137
10139
|
string.prototype.trimend: "npm:^1.0.9"
|
|
@@ -10142,7 +10144,7 @@ __metadata:
|
|
|
10142
10144
|
typed-array-length: "npm:^1.0.7"
|
|
10143
10145
|
unbox-primitive: "npm:^1.1.0"
|
|
10144
10146
|
which-typed-array: "npm:^1.1.18"
|
|
10145
|
-
checksum: 10c0/
|
|
10147
|
+
checksum: 10c0/5e3afb94ff8ad70801625e3d262a0384cc75e42574b6c2e89b33d255c03e15e1af72ca9fd459511b717ec25b79812520481c3b4d1f9bea6038bae1421225907b
|
|
10146
10148
|
languageName: node
|
|
10147
10149
|
linkType: hard
|
|
10148
10150
|
|
|
@@ -14819,7 +14821,7 @@ __metadata:
|
|
|
14819
14821
|
languageName: node
|
|
14820
14822
|
linkType: hard
|
|
14821
14823
|
|
|
14822
|
-
"mlly@npm:^1.7.
|
|
14824
|
+
"mlly@npm:^1.7.3":
|
|
14823
14825
|
version: 1.7.3
|
|
14824
14826
|
resolution: "mlly@npm:1.7.3"
|
|
14825
14827
|
dependencies:
|
|
@@ -15439,6 +15441,17 @@ __metadata:
|
|
|
15439
15441
|
languageName: node
|
|
15440
15442
|
linkType: hard
|
|
15441
15443
|
|
|
15444
|
+
"own-keys@npm:^1.0.0":
|
|
15445
|
+
version: 1.0.1
|
|
15446
|
+
resolution: "own-keys@npm:1.0.1"
|
|
15447
|
+
dependencies:
|
|
15448
|
+
get-intrinsic: "npm:^1.2.6"
|
|
15449
|
+
object-keys: "npm:^1.1.1"
|
|
15450
|
+
safe-push-apply: "npm:^1.0.0"
|
|
15451
|
+
checksum: 10c0/6dfeb3455bff92ec3f16a982d4e3e65676345f6902d9f5ded1d8265a6318d0200ce461956d6d1c70053c7fe9f9fe65e552faac03f8140d37ef0fdd108e67013a
|
|
15452
|
+
languageName: node
|
|
15453
|
+
linkType: hard
|
|
15454
|
+
|
|
15442
15455
|
"p-all@npm:^2.1.0":
|
|
15443
15456
|
version: 2.1.0
|
|
15444
15457
|
resolution: "p-all@npm:2.1.0"
|
|
@@ -15975,13 +15988,13 @@ __metadata:
|
|
|
15975
15988
|
linkType: hard
|
|
15976
15989
|
|
|
15977
15990
|
"pkg-types@npm:^1.2.1":
|
|
15978
|
-
version: 1.
|
|
15979
|
-
resolution: "pkg-types@npm:1.
|
|
15991
|
+
version: 1.3.0
|
|
15992
|
+
resolution: "pkg-types@npm:1.3.0"
|
|
15980
15993
|
dependencies:
|
|
15981
15994
|
confbox: "npm:^0.1.8"
|
|
15982
|
-
mlly: "npm:^1.7.
|
|
15995
|
+
mlly: "npm:^1.7.3"
|
|
15983
15996
|
pathe: "npm:^1.1.2"
|
|
15984
|
-
checksum: 10c0/
|
|
15997
|
+
checksum: 10c0/76c3a49f9106f648b7fad4b5aa18ce84e27c4eafc297e41cbd00e252a9ac1d2625907a05319b0fbcce3c43438d59a677f8306b88daa61c15c6d837a236ce7e2c
|
|
15985
15998
|
languageName: node
|
|
15986
15999
|
linkType: hard
|
|
15987
16000
|
|
|
@@ -17336,13 +17349,13 @@ __metadata:
|
|
|
17336
17349
|
linkType: hard
|
|
17337
17350
|
|
|
17338
17351
|
"react-confetti@npm:^6.1.0":
|
|
17339
|
-
version: 6.
|
|
17340
|
-
resolution: "react-confetti@npm:6.
|
|
17352
|
+
version: 6.2.2
|
|
17353
|
+
resolution: "react-confetti@npm:6.2.2"
|
|
17341
17354
|
dependencies:
|
|
17342
17355
|
tween-functions: "npm:^1.2.0"
|
|
17343
17356
|
peerDependencies:
|
|
17344
|
-
react: ^16.3.0 || ^17.0.1 || ^18.0.0
|
|
17345
|
-
checksum: 10c0/
|
|
17357
|
+
react: ^16.3.0 || ^17.0.1 || ^18.0.0 || ^19.0.0
|
|
17358
|
+
checksum: 10c0/c25250acc18a7e66a2a41aa429fee70a1e56346a73dced7aa64d8c8e87b96b478eb90933b530d1857832785eeb4a5978c5cb30080d187d32bbc68c3c0ef7f0a9
|
|
17346
17359
|
languageName: node
|
|
17347
17360
|
linkType: hard
|
|
17348
17361
|
|
|
@@ -19053,6 +19066,16 @@ __metadata:
|
|
|
19053
19066
|
languageName: node
|
|
19054
19067
|
linkType: hard
|
|
19055
19068
|
|
|
19069
|
+
"safe-push-apply@npm:^1.0.0":
|
|
19070
|
+
version: 1.0.0
|
|
19071
|
+
resolution: "safe-push-apply@npm:1.0.0"
|
|
19072
|
+
dependencies:
|
|
19073
|
+
es-errors: "npm:^1.3.0"
|
|
19074
|
+
isarray: "npm:^2.0.5"
|
|
19075
|
+
checksum: 10c0/831f1c9aae7436429e7862c7e46f847dfe490afac20d0ee61bae06108dbf5c745a0de3568ada30ccdd3eeb0864ca8331b2eef703abd69bfea0745b21fd320750
|
|
19076
|
+
languageName: node
|
|
19077
|
+
linkType: hard
|
|
19078
|
+
|
|
19056
19079
|
"safe-regex-test@npm:^1.1.0":
|
|
19057
19080
|
version: 1.1.0
|
|
19058
19081
|
resolution: "safe-regex-test@npm:1.1.0"
|
|
@@ -19885,9 +19908,9 @@ __metadata:
|
|
|
19885
19908
|
linkType: hard
|
|
19886
19909
|
|
|
19887
19910
|
"store2@npm:^2.12.0":
|
|
19888
|
-
version: 2.14.
|
|
19889
|
-
resolution: "store2@npm:2.14.
|
|
19890
|
-
checksum: 10c0/
|
|
19911
|
+
version: 2.14.4
|
|
19912
|
+
resolution: "store2@npm:2.14.4"
|
|
19913
|
+
checksum: 10c0/3453c9c8c153c760e6290395a7bc23669df5dc8a6e8a49f9b3187dbb9f86d14b58705aa4f17fad6b536d4b04fe3e66ea5bde12c1352abd52c6b303bbf5757ab6
|
|
19891
19914
|
languageName: node
|
|
19892
19915
|
linkType: hard
|
|
19893
19916
|
|
|
@@ -22143,11 +22166,11 @@ __metadata:
|
|
|
22143
22166
|
linkType: hard
|
|
22144
22167
|
|
|
22145
22168
|
"yaml@npm:^2.3.4":
|
|
22146
|
-
version: 2.
|
|
22147
|
-
resolution: "yaml@npm:2.
|
|
22169
|
+
version: 2.7.0
|
|
22170
|
+
resolution: "yaml@npm:2.7.0"
|
|
22148
22171
|
bin:
|
|
22149
22172
|
yaml: bin.mjs
|
|
22150
|
-
checksum: 10c0/
|
|
22173
|
+
checksum: 10c0/886a7d2abbd70704b79f1d2d05fe9fb0aa63aefb86e1cb9991837dced65193d300f5554747a872b4b10ae9a12bc5d5327e4d04205f70336e863e35e89d8f4ea9
|
|
22151
22174
|
languageName: node
|
|
22152
22175
|
linkType: hard
|
|
22153
22176
|
|