@licklist/design 0.71.19 → 0.71.21
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/activity-card/ActivityCard.d.ts +1 -2
- package/dist/iframe/activity-card/ActivityCard.d.ts.map +1 -1
- package/dist/iframe/activity-card/ActivityCard.js +1 -7
- package/dist/index.js +1 -1
- package/dist/report/ReportRunnerModal/ReportRunnerModal.d.ts +1 -1
- package/dist/report/ReportRunnerModal/ReportRunnerModal.d.ts.map +1 -1
- package/dist/sales/modals/refund-modal/RefundModal.d.ts +6 -2
- package/dist/sales/modals/refund-modal/RefundModal.d.ts.map +1 -1
- package/dist/sales/modals/refund-modal/RefundModal.js +8 -4
- package/dist/sales/modals/refund-modal/index.d.ts +2 -2
- package/dist/sales/modals/refund-modal/index.d.ts.map +1 -1
- package/dist/styles/date-time-button/DateTimeButton.scss +3 -1
- package/package.json +2 -2
- package/src/iframe/activity-card/ActivityCard.stories.tsx +0 -2
- package/src/iframe/activity-card/ActivityCard.tsx +0 -4
- package/src/report/ReportRunnerModal/ReportRunnerModal.tsx +1 -1
- package/src/sales/modals/refund-modal/RefundModal.tsx +15 -6
- package/src/sales/modals/refund-modal/index.ts +7 -2
- package/src/styles/date-time-button/DateTimeButton.scss +3 -1
- package/yarn.lock +160 -160
|
@@ -6,7 +6,6 @@ export declare const LAYOUT_GRID = "grid";
|
|
|
6
6
|
export declare const LAYOUT_LIST = "list";
|
|
7
7
|
export type ActivityCardProps = {
|
|
8
8
|
title: ReactNode;
|
|
9
|
-
duration: ReactNode;
|
|
10
9
|
price: ReactNode;
|
|
11
10
|
description?: ReactNode;
|
|
12
11
|
onSelect: () => void;
|
|
@@ -17,5 +16,5 @@ export type ActivityCardProps = {
|
|
|
17
16
|
resources?: ZoneResourcesAvailability;
|
|
18
17
|
availabilityFormat?: AvailabilityFormat | null;
|
|
19
18
|
};
|
|
20
|
-
export declare const ActivityCard: ({ title,
|
|
19
|
+
export declare const ActivityCard: ({ title, price, description, availableTimes, image, onSelect, isSelected, layout, availabilityFormat, resources, }: ActivityCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
21
20
|
//# sourceMappingURL=ActivityCard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ActivityCard.d.ts","sourceRoot":"","sources":["../../../src/iframe/activity-card/ActivityCard.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAEjC,OAAO,EAAE,KAAK,EAAE,MAAM,sDAAsD,CAAA;AAC5E,OAAO,EAAE,yBAAyB,EAAE,MAAM,0EAA0E,CAAA;AACpH,OAAO,EAAE,kBAAkB,EAAE,MAAM,2DAA2D,CAAA;AAG9F,eAAO,MAAM,WAAW,SAAS,CAAA;AACjC,eAAO,MAAM,WAAW,SAAS,CAAA;AAEjC,MAAM,MAAM,iBAAiB,GAAG;IAC9B,KAAK,EAAE,SAAS,CAAA;IAChB,
|
|
1
|
+
{"version":3,"file":"ActivityCard.d.ts","sourceRoot":"","sources":["../../../src/iframe/activity-card/ActivityCard.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAEjC,OAAO,EAAE,KAAK,EAAE,MAAM,sDAAsD,CAAA;AAC5E,OAAO,EAAE,yBAAyB,EAAE,MAAM,0EAA0E,CAAA;AACpH,OAAO,EAAE,kBAAkB,EAAE,MAAM,2DAA2D,CAAA;AAG9F,eAAO,MAAM,WAAW,SAAS,CAAA;AACjC,eAAO,MAAM,WAAW,SAAS,CAAA;AAEjC,MAAM,MAAM,iBAAiB,GAAG;IAC9B,KAAK,EAAE,SAAS,CAAA;IAChB,KAAK,EAAE,SAAS,CAAA;IAChB,WAAW,CAAC,EAAE,SAAS,CAAA;IACvB,QAAQ,EAAE,MAAM,IAAI,CAAA;IACpB,UAAU,EAAE,OAAO,CAAA;IACnB,MAAM,CAAC,EAAE,OAAO,WAAW,GAAG,OAAO,WAAW,CAAA;IAChD,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC9B,KAAK,CAAC,EAAE,KAAK,GAAG,IAAI,CAAA;IACpB,SAAS,CAAC,EAAE,yBAAyB,CAAA;IACrC,kBAAkB,CAAC,EAAE,kBAAkB,GAAG,IAAI,CAAA;CAC/C,CAAA;AAED,eAAO,MAAM,YAAY,uHAWtB,iBAAiB,4CA2DnB,CAAA"}
|
|
@@ -5,7 +5,7 @@ import { AvailabilityIndicator } from '../../availability-indicator/Availability
|
|
|
5
5
|
var LAYOUT_GRID = 'grid';
|
|
6
6
|
var LAYOUT_LIST = 'list';
|
|
7
7
|
var ActivityCard = function(param) {
|
|
8
|
-
var title = param.title,
|
|
8
|
+
var title = param.title, price = param.price, description = param.description, availableTimes = param.availableTimes, image = param.image, onSelect = param.onSelect, isSelected = param.isSelected, _param_layout = param.layout, layout = _param_layout === void 0 ? LAYOUT_GRID : _param_layout, availabilityFormat = param.availabilityFormat, resources = param.resources;
|
|
9
9
|
if (layout === LAYOUT_GRID) {
|
|
10
10
|
return /*#__PURE__*/ jsxs("button", {
|
|
11
11
|
type: "button",
|
|
@@ -24,9 +24,6 @@ var ActivityCard = function(param) {
|
|
|
24
24
|
className: "activity-card-title",
|
|
25
25
|
children: title
|
|
26
26
|
}),
|
|
27
|
-
duration && /*#__PURE__*/ jsx("div", {
|
|
28
|
-
children: duration
|
|
29
|
-
}),
|
|
30
27
|
price && /*#__PURE__*/ jsx("div", {
|
|
31
28
|
children: price
|
|
32
29
|
}),
|
|
@@ -64,9 +61,6 @@ var ActivityCard = function(param) {
|
|
|
64
61
|
availableTimes && /*#__PURE__*/ jsx("div", {
|
|
65
62
|
children: availableTimes
|
|
66
63
|
}),
|
|
67
|
-
duration && /*#__PURE__*/ jsx("div", {
|
|
68
|
-
children: duration
|
|
69
|
-
}),
|
|
70
64
|
price && /*#__PURE__*/ jsx("div", {
|
|
71
65
|
children: price
|
|
72
66
|
}),
|
package/dist/index.js
CHANGED
|
@@ -130,7 +130,7 @@ export { ManualBookingSummary } from './sales/manual-booking/summary/ManualBooki
|
|
|
130
130
|
export { SearchUser } from './sales/manual-booking/search-user/SearchUser.js';
|
|
131
131
|
export { SelectDateTypeControl } from './sales/manual-booking/select-date-type-control/SelectDateTypeControl.js';
|
|
132
132
|
export { SelectMenu } from './sales/manual-booking/select-menu/SelectMenu.js';
|
|
133
|
-
export { RefundModal } from './sales/modals/refund-modal/RefundModal.js';
|
|
133
|
+
export { FULL_REFUND_TYPE, NET_REFUND_TYPE, PARTIAL_REFUND_TYPE, RefundModal } from './sales/modals/refund-modal/RefundModal.js';
|
|
134
134
|
export { PaymentModal } from './sales/modals/payment-modal/PaymentModal.js';
|
|
135
135
|
export { SalePaymentForm } from './sales/payment-form/SalePaymentForm.js';
|
|
136
136
|
export { RyftPayment } from './sales/payment-form/components/RyftPayment/RyftPayment.js';
|
|
@@ -17,6 +17,6 @@ export type ReportRunnerModalProps = {
|
|
|
17
17
|
reports?: Report[] | null;
|
|
18
18
|
providerId?: number;
|
|
19
19
|
};
|
|
20
|
-
export declare const ReportRunnerModal: ({ reportId, show, onHide, useShowReportFields, reports, generate, download, onEdit, providerId }: ReportRunnerModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export declare const ReportRunnerModal: ({ reportId, show, onHide, useShowReportFields, reports, generate, download, onEdit, providerId, }: ReportRunnerModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
21
21
|
export {};
|
|
22
22
|
//# sourceMappingURL=ReportRunnerModal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ReportRunnerModal.d.ts","sourceRoot":"","sources":["../../../src/report/ReportRunnerModal/ReportRunnerModal.tsx"],"names":[],"mappings":"AAAA,OAAO,EAKL,MAAM,EAEN,UAAU,EACX,MAAM,uCAAuC,CAAA;AAM9C,OAAO,EAAE,SAAS,EAAE,MAAM,+CAA+C,CAAA;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,qDAAqD,CAAA;AAG7F,UAAU,WAAW;IACnB,EAAE,EAAE,MAAM,CAAA;IACV,GAAG,EAAE,MAAM,CAAA;IACX,KAAK,EAAE,MAAM,CAAA;CACd;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,QAAQ,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAA;IAC7B,IAAI,EAAE,OAAO,CAAA;IACb,mBAAmB,EAAE,CACnB,UAAU,CAAC,EAAE,UAAU,KACpB,uBAAuB,CAAC,WAAW,EAAE,EAAE,OAAO,CAAC,CAAA;IACpD,QAAQ,CAAC,EAAE,SAAS,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,CAAA;IACrD,QAAQ,CAAC,EAAE,SAAS,CAAC,IAAI,GAAG,IAAI,CAAC,CAAA;IACjC,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,OAAO,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAA;IACzB,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB,CAAA;AASD,eAAO,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"ReportRunnerModal.d.ts","sourceRoot":"","sources":["../../../src/report/ReportRunnerModal/ReportRunnerModal.tsx"],"names":[],"mappings":"AAAA,OAAO,EAKL,MAAM,EAEN,UAAU,EACX,MAAM,uCAAuC,CAAA;AAM9C,OAAO,EAAE,SAAS,EAAE,MAAM,+CAA+C,CAAA;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,qDAAqD,CAAA;AAG7F,UAAU,WAAW;IACnB,EAAE,EAAE,MAAM,CAAA;IACV,GAAG,EAAE,MAAM,CAAA;IACX,KAAK,EAAE,MAAM,CAAA;CACd;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,QAAQ,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAA;IAC7B,IAAI,EAAE,OAAO,CAAA;IACb,mBAAmB,EAAE,CACnB,UAAU,CAAC,EAAE,UAAU,KACpB,uBAAuB,CAAC,WAAW,EAAE,EAAE,OAAO,CAAC,CAAA;IACpD,QAAQ,CAAC,EAAE,SAAS,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,CAAA;IACrD,QAAQ,CAAC,EAAE,SAAS,CAAC,IAAI,GAAG,IAAI,CAAC,CAAA;IACjC,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,OAAO,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAA;IACzB,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB,CAAA;AASD,eAAO,MAAM,iBAAiB,sGAU3B,sBAAsB,4CA8KxB,CAAA"}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { OrderPaymentType } from '@licklist/core/dist/DataMapper/Order/OrderPaymentDataMapper';
|
|
2
|
+
export declare const FULL_REFUND_TYPE = "fullRefund";
|
|
3
|
+
export declare const PARTIAL_REFUND_TYPE = "partialRefund";
|
|
4
|
+
export declare const NET_REFUND_TYPE = "netRefund";
|
|
5
|
+
export type RefundType = typeof FULL_REFUND_TYPE | typeof PARTIAL_REFUND_TYPE | typeof NET_REFUND_TYPE;
|
|
2
6
|
export interface RefundModalProps {
|
|
3
7
|
isVisible: boolean;
|
|
4
|
-
|
|
8
|
+
refundType?: RefundType;
|
|
5
9
|
onHide: () => void;
|
|
6
10
|
onSubmit: (amount?: number) => void;
|
|
7
11
|
isLoading?: boolean;
|
|
@@ -9,5 +13,5 @@ export interface RefundModalProps {
|
|
|
9
13
|
defaultValue?: number;
|
|
10
14
|
maxValue?: number;
|
|
11
15
|
}
|
|
12
|
-
export declare const RefundModal: ({ isVisible, onHide, onSubmit, isLoading,
|
|
16
|
+
export declare const RefundModal: ({ isVisible, onHide, onSubmit, isLoading, refundType, paymentType, defaultValue, maxValue, }: RefundModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
17
|
//# sourceMappingURL=RefundModal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RefundModal.d.ts","sourceRoot":"","sources":["../../../../src/sales/modals/refund-modal/RefundModal.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,gBAAgB,EAAE,MAAM,6DAA6D,CAAA;AAK9F,MAAM,WAAW,gBAAgB;IAC/B,SAAS,EAAE,OAAO,CAAA;IAClB,
|
|
1
|
+
{"version":3,"file":"RefundModal.d.ts","sourceRoot":"","sources":["../../../../src/sales/modals/refund-modal/RefundModal.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,gBAAgB,EAAE,MAAM,6DAA6D,CAAA;AAK9F,eAAO,MAAM,gBAAgB,eAAe,CAAA;AAC5C,eAAO,MAAM,mBAAmB,kBAAkB,CAAA;AAClD,eAAO,MAAM,eAAe,cAAc,CAAA;AAE1C,MAAM,MAAM,UAAU,GAClB,OAAO,gBAAgB,GACvB,OAAO,mBAAmB,GAC1B,OAAO,eAAe,CAAA;AAE1B,MAAM,WAAW,gBAAgB;IAC/B,SAAS,EAAE,OAAO,CAAA;IAClB,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,QAAQ,EAAE,CAAC,MAAM,CAAC,EAAE,MAAM,KAAK,IAAI,CAAA;IACnC,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,WAAW,EAAE,gBAAgB,CAAA;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB;AAMD,eAAO,MAAM,WAAW,iGASrB,gBAAgB,4CAoGlB,CAAA"}
|
|
@@ -61,13 +61,17 @@ function _object_spread_props(target, source) {
|
|
|
61
61
|
}
|
|
62
62
|
return target;
|
|
63
63
|
}
|
|
64
|
+
var FULL_REFUND_TYPE = 'fullRefund';
|
|
65
|
+
var PARTIAL_REFUND_TYPE = 'partialRefund';
|
|
66
|
+
var NET_REFUND_TYPE = 'netRefund';
|
|
64
67
|
var RefundModal = function(param) {
|
|
65
|
-
var isVisible = param.isVisible, onHide = param.onHide, onSubmit = param.onSubmit, _param_isLoading = param.isLoading, isLoading = _param_isLoading === void 0 ? false : _param_isLoading,
|
|
68
|
+
var isVisible = param.isVisible, onHide = param.onHide, onSubmit = param.onSubmit, _param_isLoading = param.isLoading, isLoading = _param_isLoading === void 0 ? false : _param_isLoading, _param_refundType = param.refundType, refundType = _param_refundType === void 0 ? PARTIAL_REFUND_TYPE : _param_refundType, paymentType = param.paymentType, _param_defaultValue = param.defaultValue, defaultValue = _param_defaultValue === void 0 ? 0 : _param_defaultValue, maxValue = param.maxValue;
|
|
66
69
|
var _errors_amount;
|
|
67
70
|
var t = useTranslation([
|
|
68
71
|
'Design',
|
|
69
72
|
'Validation'
|
|
70
73
|
]).t;
|
|
74
|
+
var isInputDisabled = isLoading || refundType === 'fullRefund' || refundType === 'netRefund';
|
|
71
75
|
var _useForm = useForm(), handleSubmit = _useForm.handleSubmit, register = _useForm.register, errors = _useForm.formState.errors, reset = _useForm.reset;
|
|
72
76
|
var onModalSubmit = function(param) {
|
|
73
77
|
var amount = param.amount;
|
|
@@ -97,7 +101,7 @@ var RefundModal = function(param) {
|
|
|
97
101
|
children: [
|
|
98
102
|
/*#__PURE__*/ jsx(ModalTitle, {
|
|
99
103
|
as: "h5",
|
|
100
|
-
children: t(
|
|
104
|
+
children: t("Design:".concat(refundType))
|
|
101
105
|
}),
|
|
102
106
|
/*#__PURE__*/ jsx(Button, {
|
|
103
107
|
variant: "danger",
|
|
@@ -150,7 +154,7 @@ var RefundModal = function(param) {
|
|
|
150
154
|
}
|
|
151
155
|
})), {
|
|
152
156
|
step: 0.01,
|
|
153
|
-
disabled:
|
|
157
|
+
disabled: isInputDisabled,
|
|
154
158
|
isInvalid: !!errors.amount,
|
|
155
159
|
min: 0
|
|
156
160
|
})),
|
|
@@ -186,4 +190,4 @@ var RefundModal = function(param) {
|
|
|
186
190
|
});
|
|
187
191
|
};
|
|
188
192
|
|
|
189
|
-
export { RefundModal };
|
|
193
|
+
export { FULL_REFUND_TYPE, NET_REFUND_TYPE, PARTIAL_REFUND_TYPE, RefundModal };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { RefundModal } from './RefundModal';
|
|
2
|
-
export type { RefundModalProps } from './RefundModal';
|
|
1
|
+
export { RefundModal, FULL_REFUND_TYPE, NET_REFUND_TYPE, PARTIAL_REFUND_TYPE, } from './RefundModal';
|
|
2
|
+
export type { RefundModalProps, RefundType } from './RefundModal';
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sales/modals/refund-modal/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sales/modals/refund-modal/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,gBAAgB,EAChB,eAAe,EACf,mBAAmB,GACpB,MAAM,eAAe,CAAA;AACtB,YAAY,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA"}
|
|
@@ -33,8 +33,10 @@
|
|
|
33
33
|
|
|
34
34
|
&.disabled {
|
|
35
35
|
border: 2px solid $snippet-calendar-disabled-button-border-color;
|
|
36
|
-
background-color:
|
|
36
|
+
background-color: transparent;
|
|
37
|
+
border: none;
|
|
37
38
|
color: $snippet-calendar-disabled-button-font-color;
|
|
39
|
+
cursor: not-allowed;
|
|
38
40
|
|
|
39
41
|
.weekday-info {
|
|
40
42
|
div:last-child {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@licklist/design",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.21",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
|
|
@@ -206,4 +206,4 @@
|
|
|
206
206
|
"node": "20.9.0",
|
|
207
207
|
"yarn": "4.4.0"
|
|
208
208
|
}
|
|
209
|
-
}
|
|
209
|
+
}
|
|
@@ -27,7 +27,6 @@ export const GridView: Story<ActivityCardProps> = (props) => {
|
|
|
27
27
|
GridView.args = {
|
|
28
28
|
layout: LAYOUT_GRID,
|
|
29
29
|
title: 'Clay Pigeons & Axe Thowing',
|
|
30
|
-
duration: '60 mins',
|
|
31
30
|
price: 'from £20',
|
|
32
31
|
}
|
|
33
32
|
|
|
@@ -46,6 +45,5 @@ export const ListView: Story<ActivityCardProps> = (props) => {
|
|
|
46
45
|
ListView.args = {
|
|
47
46
|
layout: LAYOUT_LIST,
|
|
48
47
|
title: 'Clay Pigeons & Axe Thowing',
|
|
49
|
-
duration: '60 mins',
|
|
50
48
|
price: 'from £20',
|
|
51
49
|
}
|
|
@@ -10,7 +10,6 @@ export const LAYOUT_LIST = 'list'
|
|
|
10
10
|
|
|
11
11
|
export type ActivityCardProps = {
|
|
12
12
|
title: ReactNode
|
|
13
|
-
duration: ReactNode
|
|
14
13
|
price: ReactNode
|
|
15
14
|
description?: ReactNode
|
|
16
15
|
onSelect: () => void
|
|
@@ -24,7 +23,6 @@ export type ActivityCardProps = {
|
|
|
24
23
|
|
|
25
24
|
export const ActivityCard = ({
|
|
26
25
|
title,
|
|
27
|
-
duration,
|
|
28
26
|
price,
|
|
29
27
|
description,
|
|
30
28
|
availableTimes,
|
|
@@ -48,7 +46,6 @@ export const ActivityCard = ({
|
|
|
48
46
|
|
|
49
47
|
<div>
|
|
50
48
|
<div className='activity-card-title'>{title}</div>
|
|
51
|
-
{duration && <div>{duration}</div>}
|
|
52
49
|
{price && <div>{price}</div>}
|
|
53
50
|
{description && (
|
|
54
51
|
<div className='mt-2 activity-card-description'>{description}</div>
|
|
@@ -79,7 +76,6 @@ export const ActivityCard = ({
|
|
|
79
76
|
<div className='activity-card-info'>
|
|
80
77
|
<div className='activity-card-title mb-2'>{title}</div>
|
|
81
78
|
{availableTimes && <div>{availableTimes}</div>}
|
|
82
|
-
{duration && <div>{duration}</div>}
|
|
83
79
|
{price && <div>{price}</div>}
|
|
84
80
|
{description && (
|
|
85
81
|
<div className='mt-2 activity-card-description'>{description}</div>
|
|
@@ -9,9 +9,18 @@ import { FaTimes } from 'react-icons/fa'
|
|
|
9
9
|
import { EXTENDED_PAYMENT_TYPE_TRANSLATION_KEYS } from '../../constants'
|
|
10
10
|
import { CurrencyNumberInput } from '../../../static/CurrencyNumberInput'
|
|
11
11
|
|
|
12
|
+
export const FULL_REFUND_TYPE = 'fullRefund'
|
|
13
|
+
export const PARTIAL_REFUND_TYPE = 'partialRefund'
|
|
14
|
+
export const NET_REFUND_TYPE = 'netRefund'
|
|
15
|
+
|
|
16
|
+
export type RefundType =
|
|
17
|
+
| typeof FULL_REFUND_TYPE
|
|
18
|
+
| typeof PARTIAL_REFUND_TYPE
|
|
19
|
+
| typeof NET_REFUND_TYPE
|
|
20
|
+
|
|
12
21
|
export interface RefundModalProps {
|
|
13
22
|
isVisible: boolean
|
|
14
|
-
|
|
23
|
+
refundType?: RefundType
|
|
15
24
|
onHide: () => void
|
|
16
25
|
onSubmit: (amount?: number) => void
|
|
17
26
|
isLoading?: boolean
|
|
@@ -29,12 +38,14 @@ export const RefundModal = ({
|
|
|
29
38
|
onHide,
|
|
30
39
|
onSubmit,
|
|
31
40
|
isLoading = false,
|
|
32
|
-
|
|
41
|
+
refundType = PARTIAL_REFUND_TYPE,
|
|
33
42
|
paymentType,
|
|
34
43
|
defaultValue = 0,
|
|
35
44
|
maxValue,
|
|
36
45
|
}: RefundModalProps) => {
|
|
37
46
|
const { t } = useTranslation(['Design', 'Validation'])
|
|
47
|
+
const isInputDisabled =
|
|
48
|
+
isLoading || refundType === 'fullRefund' || refundType === 'netRefund'
|
|
38
49
|
|
|
39
50
|
const {
|
|
40
51
|
handleSubmit,
|
|
@@ -64,9 +75,7 @@ export const RefundModal = ({
|
|
|
64
75
|
>
|
|
65
76
|
<Form onSubmit={handleSubmit(onModalSubmit)}>
|
|
66
77
|
<ModalHeader className='align-items-center border-0'>
|
|
67
|
-
<ModalTitle as='h5'>
|
|
68
|
-
{t(isFullRefund ? 'Design:fullRefund' : 'Design:partialRefund')}
|
|
69
|
-
</ModalTitle>
|
|
78
|
+
<ModalTitle as='h5'>{t(`Design:${refundType}`)}</ModalTitle>
|
|
70
79
|
|
|
71
80
|
<Button variant='danger' className='btn-sm rounded' onClick={onHide}>
|
|
72
81
|
<FaTimes size={20} />
|
|
@@ -111,7 +120,7 @@ export const RefundModal = ({
|
|
|
111
120
|
},
|
|
112
121
|
})}
|
|
113
122
|
step={0.01}
|
|
114
|
-
disabled={
|
|
123
|
+
disabled={isInputDisabled}
|
|
115
124
|
isInvalid={!!errors.amount}
|
|
116
125
|
min={0}
|
|
117
126
|
/>
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
export {
|
|
2
|
-
|
|
1
|
+
export {
|
|
2
|
+
RefundModal,
|
|
3
|
+
FULL_REFUND_TYPE,
|
|
4
|
+
NET_REFUND_TYPE,
|
|
5
|
+
PARTIAL_REFUND_TYPE,
|
|
6
|
+
} from './RefundModal'
|
|
7
|
+
export type { RefundModalProps, RefundType } from './RefundModal'
|
|
@@ -33,8 +33,10 @@
|
|
|
33
33
|
|
|
34
34
|
&.disabled {
|
|
35
35
|
border: 2px solid $snippet-calendar-disabled-button-border-color;
|
|
36
|
-
background-color:
|
|
36
|
+
background-color: transparent;
|
|
37
|
+
border: none;
|
|
37
38
|
color: $snippet-calendar-disabled-button-font-color;
|
|
39
|
+
cursor: not-allowed;
|
|
38
40
|
|
|
39
41
|
.weekday-info {
|
|
40
42
|
div:last-child {
|
package/yarn.lock
CHANGED
|
@@ -40,7 +40,7 @@ __metadata:
|
|
|
40
40
|
languageName: node
|
|
41
41
|
linkType: hard
|
|
42
42
|
|
|
43
|
-
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.
|
|
43
|
+
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.2, @babel/code-frame@npm:^7.5.5, @babel/code-frame@npm:^7.8.3":
|
|
44
44
|
version: 7.26.2
|
|
45
45
|
resolution: "@babel/code-frame@npm:7.26.2"
|
|
46
46
|
dependencies:
|
|
@@ -51,7 +51,7 @@ __metadata:
|
|
|
51
51
|
languageName: node
|
|
52
52
|
linkType: hard
|
|
53
53
|
|
|
54
|
-
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.
|
|
54
|
+
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.5":
|
|
55
55
|
version: 7.26.5
|
|
56
56
|
resolution: "@babel/compat-data@npm:7.26.5"
|
|
57
57
|
checksum: 10c0/9d2b41f0948c3dfc5de44d9f789d2208c2ea1fd7eb896dfbb297fe955e696728d6f363c600cd211e7f58ccbc2d834fe516bb1e4cf883bbabed8a32b038afc1a0
|
|
@@ -83,29 +83,29 @@ __metadata:
|
|
|
83
83
|
linkType: hard
|
|
84
84
|
|
|
85
85
|
"@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.26.
|
|
87
|
-
resolution: "@babel/core@npm:7.26.
|
|
86
|
+
version: 7.26.7
|
|
87
|
+
resolution: "@babel/core@npm:7.26.7"
|
|
88
88
|
dependencies:
|
|
89
89
|
"@ampproject/remapping": "npm:^2.2.0"
|
|
90
|
-
"@babel/code-frame": "npm:^7.26.
|
|
91
|
-
"@babel/generator": "npm:^7.26.
|
|
92
|
-
"@babel/helper-compilation-targets": "npm:^7.
|
|
90
|
+
"@babel/code-frame": "npm:^7.26.2"
|
|
91
|
+
"@babel/generator": "npm:^7.26.5"
|
|
92
|
+
"@babel/helper-compilation-targets": "npm:^7.26.5"
|
|
93
93
|
"@babel/helper-module-transforms": "npm:^7.26.0"
|
|
94
|
-
"@babel/helpers": "npm:^7.26.
|
|
95
|
-
"@babel/parser": "npm:^7.26.
|
|
94
|
+
"@babel/helpers": "npm:^7.26.7"
|
|
95
|
+
"@babel/parser": "npm:^7.26.7"
|
|
96
96
|
"@babel/template": "npm:^7.25.9"
|
|
97
|
-
"@babel/traverse": "npm:^7.
|
|
98
|
-
"@babel/types": "npm:^7.26.
|
|
97
|
+
"@babel/traverse": "npm:^7.26.7"
|
|
98
|
+
"@babel/types": "npm:^7.26.7"
|
|
99
99
|
convert-source-map: "npm:^2.0.0"
|
|
100
100
|
debug: "npm:^4.1.0"
|
|
101
101
|
gensync: "npm:^1.0.0-beta.2"
|
|
102
102
|
json5: "npm:^2.2.3"
|
|
103
103
|
semver: "npm:^6.3.1"
|
|
104
|
-
checksum: 10c0/
|
|
104
|
+
checksum: 10c0/fbd2cd9fc23280bdcaca556e558f715c0a42d940b9913c52582e8e3d24e391d269cb8a9cd6589172593983569021c379e28bba6b19ea2ee08674f6068c210a9d
|
|
105
105
|
languageName: node
|
|
106
106
|
linkType: hard
|
|
107
107
|
|
|
108
|
-
"@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.26.
|
|
108
|
+
"@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.26.5":
|
|
109
109
|
version: 7.26.5
|
|
110
110
|
resolution: "@babel/generator@npm:7.26.5"
|
|
111
111
|
dependencies:
|
|
@@ -127,7 +127,7 @@ __metadata:
|
|
|
127
127
|
languageName: node
|
|
128
128
|
linkType: hard
|
|
129
129
|
|
|
130
|
-
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.9":
|
|
130
|
+
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.9, @babel/helper-compilation-targets@npm:^7.26.5":
|
|
131
131
|
version: 7.26.5
|
|
132
132
|
resolution: "@babel/helper-compilation-targets@npm:7.26.5"
|
|
133
133
|
dependencies:
|
|
@@ -327,13 +327,13 @@ __metadata:
|
|
|
327
327
|
languageName: node
|
|
328
328
|
linkType: hard
|
|
329
329
|
|
|
330
|
-
"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.26.
|
|
331
|
-
version: 7.26.
|
|
332
|
-
resolution: "@babel/helpers@npm:7.26.
|
|
330
|
+
"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.26.7":
|
|
331
|
+
version: 7.26.7
|
|
332
|
+
resolution: "@babel/helpers@npm:7.26.7"
|
|
333
333
|
dependencies:
|
|
334
334
|
"@babel/template": "npm:^7.25.9"
|
|
335
|
-
"@babel/types": "npm:^7.26.
|
|
336
|
-
checksum: 10c0/
|
|
335
|
+
"@babel/types": "npm:^7.26.7"
|
|
336
|
+
checksum: 10c0/37fec398e53a2dbbf24bc2a025c4d571b2556cef18d8116d05d04b153f13ef659cdfbaab96c8eed875e629d39bdf9b3ea5d099ccf80544537de224e2d94f9b11
|
|
337
337
|
languageName: node
|
|
338
338
|
linkType: hard
|
|
339
339
|
|
|
@@ -349,14 +349,14 @@ __metadata:
|
|
|
349
349
|
languageName: node
|
|
350
350
|
linkType: hard
|
|
351
351
|
|
|
352
|
-
"@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.25.3, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.
|
|
353
|
-
version: 7.26.
|
|
354
|
-
resolution: "@babel/parser@npm:7.26.
|
|
352
|
+
"@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.25.3, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.5, @babel/parser@npm:^7.26.7":
|
|
353
|
+
version: 7.26.7
|
|
354
|
+
resolution: "@babel/parser@npm:7.26.7"
|
|
355
355
|
dependencies:
|
|
356
|
-
"@babel/types": "npm:^7.26.
|
|
356
|
+
"@babel/types": "npm:^7.26.7"
|
|
357
357
|
bin:
|
|
358
358
|
parser: ./bin/babel-parser.js
|
|
359
|
-
checksum: 10c0/
|
|
359
|
+
checksum: 10c0/dcb08a4f2878ece33caffefe43b71488d753324bae7ca58d64bca3bc4af34dcfa1b58abdf9972516d76af760fceb25bb9294ca33461d56b31c5059ccfe32001f
|
|
360
360
|
languageName: node
|
|
361
361
|
linkType: hard
|
|
362
362
|
|
|
@@ -699,7 +699,7 @@ __metadata:
|
|
|
699
699
|
languageName: node
|
|
700
700
|
linkType: hard
|
|
701
701
|
|
|
702
|
-
"@babel/plugin-transform-block-scoped-functions@npm:^7.
|
|
702
|
+
"@babel/plugin-transform-block-scoped-functions@npm:^7.26.5":
|
|
703
703
|
version: 7.26.5
|
|
704
704
|
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.26.5"
|
|
705
705
|
dependencies:
|
|
@@ -830,7 +830,7 @@ __metadata:
|
|
|
830
830
|
languageName: node
|
|
831
831
|
linkType: hard
|
|
832
832
|
|
|
833
|
-
"@babel/plugin-transform-exponentiation-operator@npm:^7.
|
|
833
|
+
"@babel/plugin-transform-exponentiation-operator@npm:^7.26.3":
|
|
834
834
|
version: 7.26.3
|
|
835
835
|
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.26.3"
|
|
836
836
|
dependencies:
|
|
@@ -945,7 +945,7 @@ __metadata:
|
|
|
945
945
|
languageName: node
|
|
946
946
|
linkType: hard
|
|
947
947
|
|
|
948
|
-
"@babel/plugin-transform-modules-commonjs@npm:^7.25.9":
|
|
948
|
+
"@babel/plugin-transform-modules-commonjs@npm:^7.25.9, @babel/plugin-transform-modules-commonjs@npm:^7.26.3":
|
|
949
949
|
version: 7.26.3
|
|
950
950
|
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.26.3"
|
|
951
951
|
dependencies:
|
|
@@ -1006,7 +1006,7 @@ __metadata:
|
|
|
1006
1006
|
languageName: node
|
|
1007
1007
|
linkType: hard
|
|
1008
1008
|
|
|
1009
|
-
"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.
|
|
1009
|
+
"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.26.6":
|
|
1010
1010
|
version: 7.26.6
|
|
1011
1011
|
resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.26.6"
|
|
1012
1012
|
dependencies:
|
|
@@ -1285,20 +1285,20 @@ __metadata:
|
|
|
1285
1285
|
languageName: node
|
|
1286
1286
|
linkType: hard
|
|
1287
1287
|
|
|
1288
|
-
"@babel/plugin-transform-typeof-symbol@npm:^7.
|
|
1289
|
-
version: 7.
|
|
1290
|
-
resolution: "@babel/plugin-transform-typeof-symbol@npm:7.
|
|
1288
|
+
"@babel/plugin-transform-typeof-symbol@npm:^7.26.7":
|
|
1289
|
+
version: 7.26.7
|
|
1290
|
+
resolution: "@babel/plugin-transform-typeof-symbol@npm:7.26.7"
|
|
1291
1291
|
dependencies:
|
|
1292
|
-
"@babel/helper-plugin-utils": "npm:^7.
|
|
1292
|
+
"@babel/helper-plugin-utils": "npm:^7.26.5"
|
|
1293
1293
|
peerDependencies:
|
|
1294
1294
|
"@babel/core": ^7.0.0-0
|
|
1295
|
-
checksum: 10c0/
|
|
1295
|
+
checksum: 10c0/d5640e3457637e6eee1d7205d255602ccca124ed30e4de10ec75ba179d167e0a826ceeab424e119921f5c995dfddf39ef1f2c91efd2dcbf3f0dc1e7931dfd1d1
|
|
1296
1296
|
languageName: node
|
|
1297
1297
|
linkType: hard
|
|
1298
1298
|
|
|
1299
1299
|
"@babel/plugin-transform-typescript@npm:^7.25.9":
|
|
1300
|
-
version: 7.26.
|
|
1301
|
-
resolution: "@babel/plugin-transform-typescript@npm:7.26.
|
|
1300
|
+
version: 7.26.7
|
|
1301
|
+
resolution: "@babel/plugin-transform-typescript@npm:7.26.7"
|
|
1302
1302
|
dependencies:
|
|
1303
1303
|
"@babel/helper-annotate-as-pure": "npm:^7.25.9"
|
|
1304
1304
|
"@babel/helper-create-class-features-plugin": "npm:^7.25.9"
|
|
@@ -1307,7 +1307,7 @@ __metadata:
|
|
|
1307
1307
|
"@babel/plugin-syntax-typescript": "npm:^7.25.9"
|
|
1308
1308
|
peerDependencies:
|
|
1309
1309
|
"@babel/core": ^7.0.0-0
|
|
1310
|
-
checksum: 10c0/
|
|
1310
|
+
checksum: 10c0/4cb3a1939cd585563f56b7860f88c3154869189bcf555840486bd0402bf2bddac40d8fa897321295a911f4b8ec71b690b09eaa241e69fc5f8f7f4718a3d971fd
|
|
1311
1311
|
languageName: node
|
|
1312
1312
|
linkType: hard
|
|
1313
1313
|
|
|
@@ -1359,12 +1359,12 @@ __metadata:
|
|
|
1359
1359
|
linkType: hard
|
|
1360
1360
|
|
|
1361
1361
|
"@babel/preset-env@npm:^7.12.11, @babel/preset-env@npm:^7.20.2":
|
|
1362
|
-
version: 7.26.
|
|
1363
|
-
resolution: "@babel/preset-env@npm:7.26.
|
|
1362
|
+
version: 7.26.7
|
|
1363
|
+
resolution: "@babel/preset-env@npm:7.26.7"
|
|
1364
1364
|
dependencies:
|
|
1365
|
-
"@babel/compat-data": "npm:^7.26.
|
|
1366
|
-
"@babel/helper-compilation-targets": "npm:^7.
|
|
1367
|
-
"@babel/helper-plugin-utils": "npm:^7.
|
|
1365
|
+
"@babel/compat-data": "npm:^7.26.5"
|
|
1366
|
+
"@babel/helper-compilation-targets": "npm:^7.26.5"
|
|
1367
|
+
"@babel/helper-plugin-utils": "npm:^7.26.5"
|
|
1368
1368
|
"@babel/helper-validator-option": "npm:^7.25.9"
|
|
1369
1369
|
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": "npm:^7.25.9"
|
|
1370
1370
|
"@babel/plugin-bugfix-safari-class-field-initializer-scope": "npm:^7.25.9"
|
|
@@ -1378,7 +1378,7 @@ __metadata:
|
|
|
1378
1378
|
"@babel/plugin-transform-arrow-functions": "npm:^7.25.9"
|
|
1379
1379
|
"@babel/plugin-transform-async-generator-functions": "npm:^7.25.9"
|
|
1380
1380
|
"@babel/plugin-transform-async-to-generator": "npm:^7.25.9"
|
|
1381
|
-
"@babel/plugin-transform-block-scoped-functions": "npm:^7.
|
|
1381
|
+
"@babel/plugin-transform-block-scoped-functions": "npm:^7.26.5"
|
|
1382
1382
|
"@babel/plugin-transform-block-scoping": "npm:^7.25.9"
|
|
1383
1383
|
"@babel/plugin-transform-class-properties": "npm:^7.25.9"
|
|
1384
1384
|
"@babel/plugin-transform-class-static-block": "npm:^7.26.0"
|
|
@@ -1389,7 +1389,7 @@ __metadata:
|
|
|
1389
1389
|
"@babel/plugin-transform-duplicate-keys": "npm:^7.25.9"
|
|
1390
1390
|
"@babel/plugin-transform-duplicate-named-capturing-groups-regex": "npm:^7.25.9"
|
|
1391
1391
|
"@babel/plugin-transform-dynamic-import": "npm:^7.25.9"
|
|
1392
|
-
"@babel/plugin-transform-exponentiation-operator": "npm:^7.
|
|
1392
|
+
"@babel/plugin-transform-exponentiation-operator": "npm:^7.26.3"
|
|
1393
1393
|
"@babel/plugin-transform-export-namespace-from": "npm:^7.25.9"
|
|
1394
1394
|
"@babel/plugin-transform-for-of": "npm:^7.25.9"
|
|
1395
1395
|
"@babel/plugin-transform-function-name": "npm:^7.25.9"
|
|
@@ -1398,12 +1398,12 @@ __metadata:
|
|
|
1398
1398
|
"@babel/plugin-transform-logical-assignment-operators": "npm:^7.25.9"
|
|
1399
1399
|
"@babel/plugin-transform-member-expression-literals": "npm:^7.25.9"
|
|
1400
1400
|
"@babel/plugin-transform-modules-amd": "npm:^7.25.9"
|
|
1401
|
-
"@babel/plugin-transform-modules-commonjs": "npm:^7.
|
|
1401
|
+
"@babel/plugin-transform-modules-commonjs": "npm:^7.26.3"
|
|
1402
1402
|
"@babel/plugin-transform-modules-systemjs": "npm:^7.25.9"
|
|
1403
1403
|
"@babel/plugin-transform-modules-umd": "npm:^7.25.9"
|
|
1404
1404
|
"@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.25.9"
|
|
1405
1405
|
"@babel/plugin-transform-new-target": "npm:^7.25.9"
|
|
1406
|
-
"@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.
|
|
1406
|
+
"@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.26.6"
|
|
1407
1407
|
"@babel/plugin-transform-numeric-separator": "npm:^7.25.9"
|
|
1408
1408
|
"@babel/plugin-transform-object-rest-spread": "npm:^7.25.9"
|
|
1409
1409
|
"@babel/plugin-transform-object-super": "npm:^7.25.9"
|
|
@@ -1420,7 +1420,7 @@ __metadata:
|
|
|
1420
1420
|
"@babel/plugin-transform-spread": "npm:^7.25.9"
|
|
1421
1421
|
"@babel/plugin-transform-sticky-regex": "npm:^7.25.9"
|
|
1422
1422
|
"@babel/plugin-transform-template-literals": "npm:^7.25.9"
|
|
1423
|
-
"@babel/plugin-transform-typeof-symbol": "npm:^7.
|
|
1423
|
+
"@babel/plugin-transform-typeof-symbol": "npm:^7.26.7"
|
|
1424
1424
|
"@babel/plugin-transform-unicode-escapes": "npm:^7.25.9"
|
|
1425
1425
|
"@babel/plugin-transform-unicode-property-regex": "npm:^7.25.9"
|
|
1426
1426
|
"@babel/plugin-transform-unicode-regex": "npm:^7.25.9"
|
|
@@ -1433,7 +1433,7 @@ __metadata:
|
|
|
1433
1433
|
semver: "npm:^6.3.1"
|
|
1434
1434
|
peerDependencies:
|
|
1435
1435
|
"@babel/core": ^7.0.0-0
|
|
1436
|
-
checksum: 10c0/
|
|
1436
|
+
checksum: 10c0/77d2e46a4f133768c5c8a6b3fec49a7c85c6baec601991e63458921e889ff93911f447723c3a99a6a471ca654ea6dc2aaa7ed690f3e518ee80cea7820ab80ce3
|
|
1437
1437
|
languageName: node
|
|
1438
1438
|
linkType: hard
|
|
1439
1439
|
|
|
@@ -1510,21 +1510,21 @@ __metadata:
|
|
|
1510
1510
|
linkType: hard
|
|
1511
1511
|
|
|
1512
1512
|
"@babel/runtime-corejs3@npm:^7.10.2":
|
|
1513
|
-
version: 7.26.
|
|
1514
|
-
resolution: "@babel/runtime-corejs3@npm:7.26.
|
|
1513
|
+
version: 7.26.7
|
|
1514
|
+
resolution: "@babel/runtime-corejs3@npm:7.26.7"
|
|
1515
1515
|
dependencies:
|
|
1516
1516
|
core-js-pure: "npm:^3.30.2"
|
|
1517
1517
|
regenerator-runtime: "npm:^0.14.0"
|
|
1518
|
-
checksum: 10c0/
|
|
1518
|
+
checksum: 10c0/399855ab2a1ef21364683a1a40a3280be71dbfee587c90fb57fce4508a783a846f925b7d5509bba3521674f44f76b4f8d31eb8a32e13dc333cdacd34c31f5119
|
|
1519
1519
|
languageName: node
|
|
1520
1520
|
linkType: hard
|
|
1521
1521
|
|
|
1522
1522
|
"@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.6, @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.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.4, @babel/runtime@npm:^7.8.7":
|
|
1523
|
-
version: 7.26.
|
|
1524
|
-
resolution: "@babel/runtime@npm:7.26.
|
|
1523
|
+
version: 7.26.7
|
|
1524
|
+
resolution: "@babel/runtime@npm:7.26.7"
|
|
1525
1525
|
dependencies:
|
|
1526
1526
|
regenerator-runtime: "npm:^0.14.0"
|
|
1527
|
-
checksum: 10c0/
|
|
1527
|
+
checksum: 10c0/60199c049f90e5e41c687687430052a370aca60bac7859ff4ee761c5c1739b8ba1604d391d01588c22dc0e93828cbadb8ada742578ad1b1df240746bce98729a
|
|
1528
1528
|
languageName: node
|
|
1529
1529
|
linkType: hard
|
|
1530
1530
|
|
|
@@ -1539,28 +1539,28 @@ __metadata:
|
|
|
1539
1539
|
languageName: node
|
|
1540
1540
|
linkType: hard
|
|
1541
1541
|
|
|
1542
|
-
"@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.25.9, @babel/traverse@npm:^7.26.5":
|
|
1543
|
-
version: 7.26.
|
|
1544
|
-
resolution: "@babel/traverse@npm:7.26.
|
|
1542
|
+
"@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.25.9, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.26.7":
|
|
1543
|
+
version: 7.26.7
|
|
1544
|
+
resolution: "@babel/traverse@npm:7.26.7"
|
|
1545
1545
|
dependencies:
|
|
1546
1546
|
"@babel/code-frame": "npm:^7.26.2"
|
|
1547
1547
|
"@babel/generator": "npm:^7.26.5"
|
|
1548
|
-
"@babel/parser": "npm:^7.26.
|
|
1548
|
+
"@babel/parser": "npm:^7.26.7"
|
|
1549
1549
|
"@babel/template": "npm:^7.25.9"
|
|
1550
|
-
"@babel/types": "npm:^7.26.
|
|
1550
|
+
"@babel/types": "npm:^7.26.7"
|
|
1551
1551
|
debug: "npm:^4.3.1"
|
|
1552
1552
|
globals: "npm:^11.1.0"
|
|
1553
|
-
checksum: 10c0/
|
|
1553
|
+
checksum: 10c0/b23a36ce40d2e4970741431c45d4f92e3f4c2895c0a421456516b2729bd9e17278846e01ee3d9039b0adf5fc5a071768061c17fcad040e74a5c3e39517449d5b
|
|
1554
1554
|
languageName: node
|
|
1555
1555
|
linkType: hard
|
|
1556
1556
|
|
|
1557
|
-
"@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.25.9, @babel/types@npm:^7.26.
|
|
1558
|
-
version: 7.26.
|
|
1559
|
-
resolution: "@babel/types@npm:7.26.
|
|
1557
|
+
"@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.25.9, @babel/types@npm:^7.26.5, @babel/types@npm:^7.26.7, @babel/types@npm:^7.4.4":
|
|
1558
|
+
version: 7.26.7
|
|
1559
|
+
resolution: "@babel/types@npm:7.26.7"
|
|
1560
1560
|
dependencies:
|
|
1561
1561
|
"@babel/helper-string-parser": "npm:^7.25.9"
|
|
1562
1562
|
"@babel/helper-validator-identifier": "npm:^7.25.9"
|
|
1563
|
-
checksum: 10c0/
|
|
1563
|
+
checksum: 10c0/7810a2bca97b13c253f07a0863a628d33dbe76ee3c163367f24be93bfaf4c8c0a325f73208abaaa050a6b36059efc2950c2e4b71fb109c0f07fa62221d8473d4
|
|
1564
1564
|
languageName: node
|
|
1565
1565
|
linkType: hard
|
|
1566
1566
|
|
|
@@ -3303,135 +3303,135 @@ __metadata:
|
|
|
3303
3303
|
languageName: node
|
|
3304
3304
|
linkType: hard
|
|
3305
3305
|
|
|
3306
|
-
"@rollup/rollup-android-arm-eabi@npm:4.
|
|
3307
|
-
version: 4.
|
|
3308
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.
|
|
3306
|
+
"@rollup/rollup-android-arm-eabi@npm:4.32.1":
|
|
3307
|
+
version: 4.32.1
|
|
3308
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.32.1"
|
|
3309
3309
|
conditions: os=android & cpu=arm
|
|
3310
3310
|
languageName: node
|
|
3311
3311
|
linkType: hard
|
|
3312
3312
|
|
|
3313
|
-
"@rollup/rollup-android-arm64@npm:4.
|
|
3314
|
-
version: 4.
|
|
3315
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.
|
|
3313
|
+
"@rollup/rollup-android-arm64@npm:4.32.1":
|
|
3314
|
+
version: 4.32.1
|
|
3315
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.32.1"
|
|
3316
3316
|
conditions: os=android & cpu=arm64
|
|
3317
3317
|
languageName: node
|
|
3318
3318
|
linkType: hard
|
|
3319
3319
|
|
|
3320
|
-
"@rollup/rollup-darwin-arm64@npm:4.
|
|
3321
|
-
version: 4.
|
|
3322
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.
|
|
3320
|
+
"@rollup/rollup-darwin-arm64@npm:4.32.1":
|
|
3321
|
+
version: 4.32.1
|
|
3322
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.32.1"
|
|
3323
3323
|
conditions: os=darwin & cpu=arm64
|
|
3324
3324
|
languageName: node
|
|
3325
3325
|
linkType: hard
|
|
3326
3326
|
|
|
3327
|
-
"@rollup/rollup-darwin-x64@npm:4.
|
|
3328
|
-
version: 4.
|
|
3329
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.
|
|
3327
|
+
"@rollup/rollup-darwin-x64@npm:4.32.1":
|
|
3328
|
+
version: 4.32.1
|
|
3329
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.32.1"
|
|
3330
3330
|
conditions: os=darwin & cpu=x64
|
|
3331
3331
|
languageName: node
|
|
3332
3332
|
linkType: hard
|
|
3333
3333
|
|
|
3334
|
-
"@rollup/rollup-freebsd-arm64@npm:4.
|
|
3335
|
-
version: 4.
|
|
3336
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.
|
|
3334
|
+
"@rollup/rollup-freebsd-arm64@npm:4.32.1":
|
|
3335
|
+
version: 4.32.1
|
|
3336
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.32.1"
|
|
3337
3337
|
conditions: os=freebsd & cpu=arm64
|
|
3338
3338
|
languageName: node
|
|
3339
3339
|
linkType: hard
|
|
3340
3340
|
|
|
3341
|
-
"@rollup/rollup-freebsd-x64@npm:4.
|
|
3342
|
-
version: 4.
|
|
3343
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.
|
|
3341
|
+
"@rollup/rollup-freebsd-x64@npm:4.32.1":
|
|
3342
|
+
version: 4.32.1
|
|
3343
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.32.1"
|
|
3344
3344
|
conditions: os=freebsd & cpu=x64
|
|
3345
3345
|
languageName: node
|
|
3346
3346
|
linkType: hard
|
|
3347
3347
|
|
|
3348
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.
|
|
3349
|
-
version: 4.
|
|
3350
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.
|
|
3348
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.32.1":
|
|
3349
|
+
version: 4.32.1
|
|
3350
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.32.1"
|
|
3351
3351
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3352
3352
|
languageName: node
|
|
3353
3353
|
linkType: hard
|
|
3354
3354
|
|
|
3355
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.
|
|
3356
|
-
version: 4.
|
|
3357
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.
|
|
3355
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.32.1":
|
|
3356
|
+
version: 4.32.1
|
|
3357
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.32.1"
|
|
3358
3358
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3359
3359
|
languageName: node
|
|
3360
3360
|
linkType: hard
|
|
3361
3361
|
|
|
3362
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.
|
|
3363
|
-
version: 4.
|
|
3364
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.
|
|
3362
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.32.1":
|
|
3363
|
+
version: 4.32.1
|
|
3364
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.32.1"
|
|
3365
3365
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3366
3366
|
languageName: node
|
|
3367
3367
|
linkType: hard
|
|
3368
3368
|
|
|
3369
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.
|
|
3370
|
-
version: 4.
|
|
3371
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.
|
|
3369
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.32.1":
|
|
3370
|
+
version: 4.32.1
|
|
3371
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.32.1"
|
|
3372
3372
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3373
3373
|
languageName: node
|
|
3374
3374
|
linkType: hard
|
|
3375
3375
|
|
|
3376
|
-
"@rollup/rollup-linux-loongarch64-gnu@npm:4.
|
|
3377
|
-
version: 4.
|
|
3378
|
-
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.
|
|
3376
|
+
"@rollup/rollup-linux-loongarch64-gnu@npm:4.32.1":
|
|
3377
|
+
version: 4.32.1
|
|
3378
|
+
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.32.1"
|
|
3379
3379
|
conditions: os=linux & cpu=loong64 & libc=glibc
|
|
3380
3380
|
languageName: node
|
|
3381
3381
|
linkType: hard
|
|
3382
3382
|
|
|
3383
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.
|
|
3384
|
-
version: 4.
|
|
3385
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.
|
|
3383
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.32.1":
|
|
3384
|
+
version: 4.32.1
|
|
3385
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.32.1"
|
|
3386
3386
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3387
3387
|
languageName: node
|
|
3388
3388
|
linkType: hard
|
|
3389
3389
|
|
|
3390
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.
|
|
3391
|
-
version: 4.
|
|
3392
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.
|
|
3390
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.32.1":
|
|
3391
|
+
version: 4.32.1
|
|
3392
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.32.1"
|
|
3393
3393
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3394
3394
|
languageName: node
|
|
3395
3395
|
linkType: hard
|
|
3396
3396
|
|
|
3397
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.
|
|
3398
|
-
version: 4.
|
|
3399
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.
|
|
3397
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.32.1":
|
|
3398
|
+
version: 4.32.1
|
|
3399
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.32.1"
|
|
3400
3400
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3401
3401
|
languageName: node
|
|
3402
3402
|
linkType: hard
|
|
3403
3403
|
|
|
3404
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.
|
|
3405
|
-
version: 4.
|
|
3406
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.
|
|
3404
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.32.1":
|
|
3405
|
+
version: 4.32.1
|
|
3406
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.32.1"
|
|
3407
3407
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3408
3408
|
languageName: node
|
|
3409
3409
|
linkType: hard
|
|
3410
3410
|
|
|
3411
|
-
"@rollup/rollup-linux-x64-musl@npm:4.
|
|
3412
|
-
version: 4.
|
|
3413
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.
|
|
3411
|
+
"@rollup/rollup-linux-x64-musl@npm:4.32.1":
|
|
3412
|
+
version: 4.32.1
|
|
3413
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.32.1"
|
|
3414
3414
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3415
3415
|
languageName: node
|
|
3416
3416
|
linkType: hard
|
|
3417
3417
|
|
|
3418
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.
|
|
3419
|
-
version: 4.
|
|
3420
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.
|
|
3418
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.32.1":
|
|
3419
|
+
version: 4.32.1
|
|
3420
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.32.1"
|
|
3421
3421
|
conditions: os=win32 & cpu=arm64
|
|
3422
3422
|
languageName: node
|
|
3423
3423
|
linkType: hard
|
|
3424
3424
|
|
|
3425
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.
|
|
3426
|
-
version: 4.
|
|
3427
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.
|
|
3425
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.32.1":
|
|
3426
|
+
version: 4.32.1
|
|
3427
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.32.1"
|
|
3428
3428
|
conditions: os=win32 & cpu=ia32
|
|
3429
3429
|
languageName: node
|
|
3430
3430
|
linkType: hard
|
|
3431
3431
|
|
|
3432
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.
|
|
3433
|
-
version: 4.
|
|
3434
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.
|
|
3432
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.32.1":
|
|
3433
|
+
version: 4.32.1
|
|
3434
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.32.1"
|
|
3435
3435
|
conditions: os=win32 & cpu=x64
|
|
3436
3436
|
languageName: node
|
|
3437
3437
|
linkType: hard
|
|
@@ -5692,11 +5692,11 @@ __metadata:
|
|
|
5692
5692
|
linkType: hard
|
|
5693
5693
|
|
|
5694
5694
|
"@types/node@npm:*":
|
|
5695
|
-
version: 22.
|
|
5696
|
-
resolution: "@types/node@npm:22.
|
|
5695
|
+
version: 22.12.0
|
|
5696
|
+
resolution: "@types/node@npm:22.12.0"
|
|
5697
5697
|
dependencies:
|
|
5698
5698
|
undici-types: "npm:~6.20.0"
|
|
5699
|
-
checksum: 10c0/
|
|
5699
|
+
checksum: 10c0/be220706732d95db2ed1c441c1e64cab90bf9a47519ce6f4c79cc5a9ec9d5c517131a149a9ac30afac1a30103e67e3a00d453ba7c1b0141608a3a7ba6397c303
|
|
5700
5700
|
languageName: node
|
|
5701
5701
|
linkType: hard
|
|
5702
5702
|
|
|
@@ -5964,11 +5964,11 @@ __metadata:
|
|
|
5964
5964
|
linkType: hard
|
|
5965
5965
|
|
|
5966
5966
|
"@types/react@npm:*, @types/react@npm:>=16.14.8, @types/react@npm:>=16.9.11":
|
|
5967
|
-
version: 19.0.
|
|
5968
|
-
resolution: "@types/react@npm:19.0.
|
|
5967
|
+
version: 19.0.8
|
|
5968
|
+
resolution: "@types/react@npm:19.0.8"
|
|
5969
5969
|
dependencies:
|
|
5970
5970
|
csstype: "npm:^3.0.2"
|
|
5971
|
-
checksum: 10c0/
|
|
5971
|
+
checksum: 10c0/5fa7236356b1476de03519c66ef65d4fd904826956105619e2ad60cb0b55ae7b251dd5fff02234076225b5e15333d0d936bf9dbe1d461406f8a2ba01c197ddcd
|
|
5972
5972
|
languageName: node
|
|
5973
5973
|
linkType: hard
|
|
5974
5974
|
|
|
@@ -6065,9 +6065,9 @@ __metadata:
|
|
|
6065
6065
|
linkType: hard
|
|
6066
6066
|
|
|
6067
6067
|
"@types/webpack-env@npm:^1.16.0":
|
|
6068
|
-
version: 1.18.
|
|
6069
|
-
resolution: "@types/webpack-env@npm:1.18.
|
|
6070
|
-
checksum: 10c0/
|
|
6068
|
+
version: 1.18.7
|
|
6069
|
+
resolution: "@types/webpack-env@npm:1.18.7"
|
|
6070
|
+
checksum: 10c0/9e5736d2ae5848482e4d6406557eb17883bb8d112dccf45d54204110534d6331e53975b8eafe090b5da683eecd9f2b35f9814938e19c8f2c6d63c6e5dd640a92
|
|
6071
6071
|
languageName: node
|
|
6072
6072
|
linkType: hard
|
|
6073
6073
|
|
|
@@ -9889,9 +9889,9 @@ __metadata:
|
|
|
9889
9889
|
linkType: hard
|
|
9890
9890
|
|
|
9891
9891
|
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.73":
|
|
9892
|
-
version: 1.5.
|
|
9893
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9894
|
-
checksum: 10c0/
|
|
9892
|
+
version: 1.5.88
|
|
9893
|
+
resolution: "electron-to-chromium@npm:1.5.88"
|
|
9894
|
+
checksum: 10c0/25946ef310f8e14c763fcf0e62094e7eae2273d9ffe908969ddd97492c3df0198739295ba76388dc210c4503ab6b540130779cd83036f80520cb8efee53be8e4
|
|
9895
9895
|
languageName: node
|
|
9896
9896
|
linkType: hard
|
|
9897
9897
|
|
|
@@ -11237,11 +11237,11 @@ __metadata:
|
|
|
11237
11237
|
linkType: hard
|
|
11238
11238
|
|
|
11239
11239
|
"for-each@npm:^0.3.3":
|
|
11240
|
-
version: 0.3.
|
|
11241
|
-
resolution: "for-each@npm:0.3.
|
|
11240
|
+
version: 0.3.4
|
|
11241
|
+
resolution: "for-each@npm:0.3.4"
|
|
11242
11242
|
dependencies:
|
|
11243
|
-
is-callable: "npm:^1.
|
|
11244
|
-
checksum: 10c0/
|
|
11243
|
+
is-callable: "npm:^1.2.7"
|
|
11244
|
+
checksum: 10c0/6b2016c0a0fe3107c70a233923cac74f07bedb5a1847636039fa6bcc3df09aefa554cfec23c3342ad365acac1f95e799d9f8e220cb82a4c7b8a84f969234302f
|
|
11245
11245
|
languageName: node
|
|
11246
11246
|
linkType: hard
|
|
11247
11247
|
|
|
@@ -12828,7 +12828,7 @@ __metadata:
|
|
|
12828
12828
|
languageName: node
|
|
12829
12829
|
linkType: hard
|
|
12830
12830
|
|
|
12831
|
-
"is-callable@npm:^1.
|
|
12831
|
+
"is-callable@npm:^1.2.7":
|
|
12832
12832
|
version: 1.2.7
|
|
12833
12833
|
resolution: "is-callable@npm:1.2.7"
|
|
12834
12834
|
checksum: 10c0/ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f
|
|
@@ -18927,28 +18927,28 @@ __metadata:
|
|
|
18927
18927
|
linkType: hard
|
|
18928
18928
|
|
|
18929
18929
|
"rollup@npm:^4.13.0":
|
|
18930
|
-
version: 4.
|
|
18931
|
-
resolution: "rollup@npm:4.
|
|
18932
|
-
dependencies:
|
|
18933
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.
|
|
18934
|
-
"@rollup/rollup-android-arm64": "npm:4.
|
|
18935
|
-
"@rollup/rollup-darwin-arm64": "npm:4.
|
|
18936
|
-
"@rollup/rollup-darwin-x64": "npm:4.
|
|
18937
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.
|
|
18938
|
-
"@rollup/rollup-freebsd-x64": "npm:4.
|
|
18939
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.
|
|
18940
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.
|
|
18941
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.
|
|
18942
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.
|
|
18943
|
-
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.
|
|
18944
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.
|
|
18945
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.
|
|
18946
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.
|
|
18947
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.
|
|
18948
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.
|
|
18949
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.
|
|
18950
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.
|
|
18951
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.
|
|
18930
|
+
version: 4.32.1
|
|
18931
|
+
resolution: "rollup@npm:4.32.1"
|
|
18932
|
+
dependencies:
|
|
18933
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.32.1"
|
|
18934
|
+
"@rollup/rollup-android-arm64": "npm:4.32.1"
|
|
18935
|
+
"@rollup/rollup-darwin-arm64": "npm:4.32.1"
|
|
18936
|
+
"@rollup/rollup-darwin-x64": "npm:4.32.1"
|
|
18937
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.32.1"
|
|
18938
|
+
"@rollup/rollup-freebsd-x64": "npm:4.32.1"
|
|
18939
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.32.1"
|
|
18940
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.32.1"
|
|
18941
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.32.1"
|
|
18942
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.32.1"
|
|
18943
|
+
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.32.1"
|
|
18944
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.32.1"
|
|
18945
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.32.1"
|
|
18946
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.32.1"
|
|
18947
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.32.1"
|
|
18948
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.32.1"
|
|
18949
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.32.1"
|
|
18950
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.32.1"
|
|
18951
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.32.1"
|
|
18952
18952
|
"@types/estree": "npm:1.0.6"
|
|
18953
18953
|
fsevents: "npm:~2.3.2"
|
|
18954
18954
|
dependenciesMeta:
|
|
@@ -18994,7 +18994,7 @@ __metadata:
|
|
|
18994
18994
|
optional: true
|
|
18995
18995
|
bin:
|
|
18996
18996
|
rollup: dist/bin/rollup
|
|
18997
|
-
checksum: 10c0/
|
|
18997
|
+
checksum: 10c0/b40339d207ee873d5cb78456381d11be367ed44bf02506bb7b1e70ad24537b4e2f06f7b24a1d9dff054c34330e032cfbedecf217228dfdc850d421b49d640144
|
|
18998
18998
|
languageName: node
|
|
18999
18999
|
linkType: hard
|
|
19000
19000
|
|