@licklist/design 0.71.23 → 0.71.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/events/event-statistic-modal/utils/index.js +3 -3
- 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 +2 -1
- package/dist/iframe/order-process/components/BookingSummary/types/index.d.ts +1 -0
- package/dist/iframe/order-process/components/BookingSummary/types/index.d.ts.map +1 -1
- package/dist/iframe/payment/payment-page/PaymentPage.d.ts.map +1 -1
- package/dist/iframe/payment/payment-page/PaymentPage.js +4 -1
- package/package.json +3 -3
- package/src/events/event-statistic-modal/utils/index.ts +4 -4
- package/src/iframe/order-process/components/BookingSummary/BookingSummary.tsx +2 -0
- package/src/iframe/order-process/components/BookingSummary/types/index.ts +1 -0
- package/src/iframe/payment/payment-page/PaymentPage.tsx +8 -10
- package/yarn.lock +111 -110
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DateTime } from 'luxon';
|
|
2
|
-
import { DATE_TIME_FULL_FORMAT } from '@licklist/core/dist/Config';
|
|
2
|
+
import { DATE_FORMAT, DATE_TIME_FULL_FORMAT } from '@licklist/core/dist/Config';
|
|
3
3
|
import { maxBy } from 'lodash';
|
|
4
4
|
|
|
5
5
|
function _array_like_to_array(arr, len) {
|
|
@@ -39,10 +39,10 @@ var convertEventStatisticToTableData = function(date, eventStatistic) {
|
|
|
39
39
|
if (!eventStatistic) {
|
|
40
40
|
return [];
|
|
41
41
|
}
|
|
42
|
-
var summaryFormattedDate = DateTime.fromISO(date).toFormat(
|
|
42
|
+
var summaryFormattedDate = DateTime.fromISO(date).toUTC().toFormat(DATE_FORMAT);
|
|
43
43
|
var _Object_keys_filter;
|
|
44
44
|
var summaryDays = (_Object_keys_filter = (_Object_keys = Object.keys(eventStatistic === null || eventStatistic === void 0 ? void 0 : eventStatistic.productCategorySummary)) === null || _Object_keys === void 0 ? void 0 : _Object_keys.filter(function(date) {
|
|
45
|
-
return DateTime.fromFormat(date, DATE_TIME_FULL_FORMAT).toFormat(
|
|
45
|
+
return DateTime.fromFormat(date, DATE_TIME_FULL_FORMAT).toFormat(DATE_FORMAT) === summaryFormattedDate;
|
|
46
46
|
})) !== null && _Object_keys_filter !== void 0 ? _Object_keys_filter : [];
|
|
47
47
|
var summaryMap = new Map();
|
|
48
48
|
summaryDays.map(function(day) {
|
|
@@ -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, peopleAmount, footer, headerComponent, isPaymentPage, }: Omit<BookingSummaryProps, "totallWithDiscount">): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
({ date, time, menuSteps, formValues, shouldHidePeopleAmount, eventName, headerTitle, 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;kNAiBxB,IAAI,CAAC,mBAAmB,EAAE,oBAAoB,CAAC;;;CAiFjD,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, peopleAmount = param.peopleAmount, footer = param.footer, headerComponent = param.headerComponent, // TODO Remove this, when all iframe pages will be ready
|
|
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, headerTitle = param.headerTitle, _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;
|
|
@@ -30,6 +30,7 @@ var BookingSummary = function(param) {
|
|
|
30
30
|
children: /*#__PURE__*/ jsxs(BookingSummaryAccordion, {
|
|
31
31
|
isPaymentPage: isPaymentPage,
|
|
32
32
|
hasPeopleInput: hasPeopleInput,
|
|
33
|
+
title: headerTitle,
|
|
33
34
|
headerComponent: headerComponent,
|
|
34
35
|
children: [
|
|
35
36
|
/*#__PURE__*/ jsx("div", {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/iframe/order-process/components/BookingSummary/types/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,8CAA8C,CAAA;AACvF,OAAO,EAAE,UAAU,EAAE,MAAM,wDAAwD,CAAA;AACnF,OAAO,EAAE,QAAQ,EAAE,MAAM,qDAAqD,CAAA;AAC9E,OAAO,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAEpC,eAAO,MAAM,YAAY,MAAM,CAAA;AAC/B,eAAO,MAAM,aAAa,oBAAoB,CAAA;AAE9C,MAAM,MAAM,mBAAmB,GAAG;IAChC,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAA;IACtB,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,sBAAsB,CAAC,EAAE,OAAO,CAAA;IAChC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,kBAAkB,CAAC,EAAE,wBAAwB,EAAE,CAAA;IAC/C,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,YAAY,EAAE,MAAM,CAAA;IACpB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,eAAe,CAAC,EAAE,YAAY,CAAA;IAC9B,MAAM,CAAC,EAAE,YAAY,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/iframe/order-process/components/BookingSummary/types/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,8CAA8C,CAAA;AACvF,OAAO,EAAE,UAAU,EAAE,MAAM,wDAAwD,CAAA;AACnF,OAAO,EAAE,QAAQ,EAAE,MAAM,qDAAqD,CAAA;AAC9E,OAAO,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAEpC,eAAO,MAAM,YAAY,MAAM,CAAA;AAC/B,eAAO,MAAM,aAAa,oBAAoB,CAAA;AAE9C,MAAM,MAAM,mBAAmB,GAAG;IAChC,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAA;IACtB,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,sBAAsB,CAAC,EAAE,OAAO,CAAA;IAChC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,kBAAkB,CAAC,EAAE,wBAAwB,EAAE,CAAA;IAC/C,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,YAAY,EAAE,MAAM,CAAA;IACpB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,eAAe,CAAC,EAAE,YAAY,CAAA;IAC9B,MAAM,CAAC,EAAE,YAAY,CAAA;IACrB,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PaymentPage.d.ts","sourceRoot":"","sources":["../../../../src/iframe/payment/payment-page/PaymentPage.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,mBAAmB,EAAE,MAAM,gDAAgD,CAAA;AACpF,OAAO,EAAE,mBAAmB,EAAE,MAAM,0DAA0D,CAAA;AAI9F,OAAO,EAEL,oBAAoB,EACrB,MAAM,4BAA4B,CAAA;AAOnC,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;CACb;AAED,UAAU,YAAa,SAAQ,oBAAoB;IACjD,oBAAoB,CAAC,EAAE,MAAM,IAAI,CAAA;IACjC,mBAAmB,CAAC,EAAE,MAAM,IAAI,CAAA;IAChC,IAAI,CAAC,EAAE,mBAAmB,GAAG,IAAI,CAAA;IACjC,SAAS,EAAE,OAAO,CAAA;IAClB,mBAAmB,EAAE,mBAAmB,CAAA;IACxC,eAAe,CAAC,EAAE,eAAe,CAAA;CAClC;AAED,eAAO,MAAM,WAAW,kIAQrB,YAAY,
|
|
1
|
+
{"version":3,"file":"PaymentPage.d.ts","sourceRoot":"","sources":["../../../../src/iframe/payment/payment-page/PaymentPage.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,mBAAmB,EAAE,MAAM,gDAAgD,CAAA;AACpF,OAAO,EAAE,mBAAmB,EAAE,MAAM,0DAA0D,CAAA;AAI9F,OAAO,EAEL,oBAAoB,EACrB,MAAM,4BAA4B,CAAA;AAOnC,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;CACb;AAED,UAAU,YAAa,SAAQ,oBAAoB;IACjD,oBAAoB,CAAC,EAAE,MAAM,IAAI,CAAA;IACjC,mBAAmB,CAAC,EAAE,MAAM,IAAI,CAAA;IAChC,IAAI,CAAC,EAAE,mBAAmB,GAAG,IAAI,CAAA;IACjC,SAAS,EAAE,OAAO,CAAA;IAClB,mBAAmB,EAAE,mBAAmB,CAAA;IACxC,eAAe,CAAC,EAAE,eAAe,CAAA;CAClC;AAED,eAAO,MAAM,WAAW,kIAQrB,YAAY,4CA+Md,CAAA"}
|
|
@@ -189,6 +189,8 @@ var PaymentPage = function(_param) {
|
|
|
189
189
|
var isCalculatedAmountGreaterThanOrderAmount = !hasRemaingToPay && orderCartAmountByFormValues > (data === null || data === void 0 ? void 0 : data.amount);
|
|
190
190
|
var isPaymentLinkWithRemainingToPay = (data === null || data === void 0 ? void 0 : data.remaining_to_pay) && !!Number(data === null || data === void 0 ? void 0 : data.remaining_to_pay);
|
|
191
191
|
var totalPaidWithRemainingToPay = (data === null || data === void 0 ? void 0 : data.amount_to_pay) && !!Number(data === null || data === void 0 ? void 0 : data.amount_to_pay);
|
|
192
|
+
var _bookingSummaryProps_transactionFee;
|
|
193
|
+
var totalBooked = paymentMetadata ? paymentMetadata.paid ? paymentMetadata.total - paymentMetadata.paid : paymentMetadata.total : orderTotalAmountByFormValues + ((_bookingSummaryProps_transactionFee = bookingSummaryProps === null || bookingSummaryProps === void 0 ? void 0 : bookingSummaryProps.transactionFee) !== null && _bookingSummaryProps_transactionFee !== void 0 ? _bookingSummaryProps_transactionFee : 0);
|
|
192
194
|
return /*#__PURE__*/ jsx(Page, {
|
|
193
195
|
className: "payment_link",
|
|
194
196
|
children: /*#__PURE__*/ jsx(PageBody, {
|
|
@@ -205,8 +207,9 @@ var PaymentPage = function(_param) {
|
|
|
205
207
|
rightBlock: /*#__PURE__*/ jsx(PageBody.RightBlock, {
|
|
206
208
|
children: /*#__PURE__*/ jsx(BookingSummary, _object_spread_props(_object_spread({}, bookingSummaryProps), {
|
|
207
209
|
isPaymentPage: true,
|
|
210
|
+
headerTitle: t('totalBooking'),
|
|
208
211
|
headerComponent: /*#__PURE__*/ jsx(SummaryTotalBlock, {
|
|
209
|
-
amount:
|
|
212
|
+
amount: totalBooked
|
|
210
213
|
}),
|
|
211
214
|
footer: /*#__PURE__*/ jsx("div", {
|
|
212
215
|
className: "d-flex flex-column justify-content-between",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@licklist/design",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.24",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
]
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@licklist/core": "0.32.
|
|
45
|
+
"@licklist/core": "0.32.9",
|
|
46
46
|
"@licklist/eslint-config": "0.5.6",
|
|
47
47
|
"@licklist/plugins": "0.35.7",
|
|
48
48
|
"lodash": "4.17.21",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@dnd-kit/utilities": "2.0.0",
|
|
62
62
|
"@fortawesome/fontawesome-svg-core": "1.2.34",
|
|
63
63
|
"@fortawesome/free-solid-svg-icons": "5.15.2",
|
|
64
|
-
"@licklist/core": "0.32.
|
|
64
|
+
"@licklist/core": "0.32.9",
|
|
65
65
|
"@licklist/eslint-config": "0.5.6",
|
|
66
66
|
"@licklist/plugins": "0.35.7",
|
|
67
67
|
"@mantine/core": "6.0.22",
|
|
@@ -33,15 +33,15 @@ export const convertEventStatisticToTableData = (
|
|
|
33
33
|
return []
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
const summaryFormattedDate = DateTime.fromISO(date)
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
const summaryFormattedDate = DateTime.fromISO(date)
|
|
37
|
+
.toUTC()
|
|
38
|
+
.toFormat(DATE_FORMAT)
|
|
39
39
|
|
|
40
40
|
const summaryDays =
|
|
41
41
|
Object.keys(eventStatistic?.productCategorySummary)?.filter(
|
|
42
42
|
(date) =>
|
|
43
43
|
DateTime.fromFormat(date, DATE_TIME_FULL_FORMAT).toFormat(
|
|
44
|
-
|
|
44
|
+
DATE_FORMAT,
|
|
45
45
|
) === summaryFormattedDate,
|
|
46
46
|
) ?? []
|
|
47
47
|
|
|
@@ -17,6 +17,7 @@ export const BookingSummary = ({
|
|
|
17
17
|
formValues = {},
|
|
18
18
|
shouldHidePeopleAmount,
|
|
19
19
|
eventName,
|
|
20
|
+
headerTitle,
|
|
20
21
|
transactionFee = 0,
|
|
21
22
|
productsWithErrors = [],
|
|
22
23
|
isLoading,
|
|
@@ -43,6 +44,7 @@ export const BookingSummary = ({
|
|
|
43
44
|
<BookingSummaryAccordion
|
|
44
45
|
isPaymentPage={isPaymentPage}
|
|
45
46
|
hasPeopleInput={hasPeopleInput}
|
|
47
|
+
title={headerTitle}
|
|
46
48
|
headerComponent={headerComponent}
|
|
47
49
|
>
|
|
48
50
|
<div className='event-info'>
|
|
@@ -131,6 +131,12 @@ export const PaymentPage = ({
|
|
|
131
131
|
const totalPaidWithRemainingToPay =
|
|
132
132
|
data?.amount_to_pay && !!Number(data?.amount_to_pay)
|
|
133
133
|
|
|
134
|
+
const totalBooked = paymentMetadata
|
|
135
|
+
? paymentMetadata.paid
|
|
136
|
+
? paymentMetadata.total - paymentMetadata.paid
|
|
137
|
+
: paymentMetadata.total
|
|
138
|
+
: orderTotalAmountByFormValues + (bookingSummaryProps?.transactionFee ?? 0)
|
|
139
|
+
|
|
134
140
|
return (
|
|
135
141
|
<Page className='payment_link'>
|
|
136
142
|
{/* TODO wait for Brad's design for close and go back buttons */}
|
|
@@ -156,16 +162,8 @@ export const PaymentPage = ({
|
|
|
156
162
|
<BookingSummary
|
|
157
163
|
{...bookingSummaryProps}
|
|
158
164
|
isPaymentPage
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
amount={
|
|
162
|
-
paymentMetadata
|
|
163
|
-
? paymentMetadata.total
|
|
164
|
-
: orderTotalAmountByFormValues +
|
|
165
|
-
(bookingSummaryProps?.transactionFee || 0)
|
|
166
|
-
}
|
|
167
|
-
/>
|
|
168
|
-
}
|
|
165
|
+
headerTitle={t('totalBooking')}
|
|
166
|
+
headerComponent={<SummaryTotalBlock amount={totalBooked} />}
|
|
169
167
|
footer={
|
|
170
168
|
<div className='d-flex flex-column justify-content-between'>
|
|
171
169
|
{paymentMetadata ? (
|
package/yarn.lock
CHANGED
|
@@ -2481,9 +2481,9 @@ __metadata:
|
|
|
2481
2481
|
languageName: node
|
|
2482
2482
|
linkType: hard
|
|
2483
2483
|
|
|
2484
|
-
"@licklist/core@npm:0.32.
|
|
2485
|
-
version: 0.32.
|
|
2486
|
-
resolution: "@licklist/core@npm:0.32.
|
|
2484
|
+
"@licklist/core@npm:0.32.9":
|
|
2485
|
+
version: 0.32.9
|
|
2486
|
+
resolution: "@licklist/core@npm:0.32.9"
|
|
2487
2487
|
dependencies:
|
|
2488
2488
|
"@sentry/browser": "npm:6.2.0"
|
|
2489
2489
|
axios: "npm:0.26.0"
|
|
@@ -2505,7 +2505,7 @@ __metadata:
|
|
|
2505
2505
|
react-i18next: 11.8.8
|
|
2506
2506
|
react-intl: 6.6.8
|
|
2507
2507
|
zustand: 3.7.2
|
|
2508
|
-
checksum: 10c0/
|
|
2508
|
+
checksum: 10c0/744b7061213c5146e83d61fbbc072995b52bb263377e175a21c1c6ab1b54964d363368b1ac60496ef9bf6dc6b4a9aa490df3c144c9bf19c008be1ca804fdc43f
|
|
2509
2509
|
languageName: node
|
|
2510
2510
|
linkType: hard
|
|
2511
2511
|
|
|
@@ -2520,7 +2520,7 @@ __metadata:
|
|
|
2520
2520
|
"@dnd-kit/utilities": "npm:2.0.0"
|
|
2521
2521
|
"@fortawesome/fontawesome-svg-core": "npm:1.2.34"
|
|
2522
2522
|
"@fortawesome/free-solid-svg-icons": "npm:5.15.2"
|
|
2523
|
-
"@licklist/core": "npm:0.32.
|
|
2523
|
+
"@licklist/core": "npm:0.32.9"
|
|
2524
2524
|
"@licklist/eslint-config": "npm:0.5.6"
|
|
2525
2525
|
"@licklist/plugins": "npm:0.35.7"
|
|
2526
2526
|
"@mantine/core": "npm:6.0.22"
|
|
@@ -2651,7 +2651,7 @@ __metadata:
|
|
|
2651
2651
|
vite-plugin-svgr: "npm:4.2.0"
|
|
2652
2652
|
vite-tsconfig-paths: "npm:5.0.1"
|
|
2653
2653
|
peerDependencies:
|
|
2654
|
-
"@licklist/core": 0.32.
|
|
2654
|
+
"@licklist/core": 0.32.9
|
|
2655
2655
|
"@licklist/eslint-config": 0.5.6
|
|
2656
2656
|
"@licklist/plugins": 0.35.7
|
|
2657
2657
|
lodash: 4.17.21
|
|
@@ -3303,135 +3303,135 @@ __metadata:
|
|
|
3303
3303
|
languageName: node
|
|
3304
3304
|
linkType: hard
|
|
3305
3305
|
|
|
3306
|
-
"@rollup/rollup-android-arm-eabi@npm:4.34.
|
|
3307
|
-
version: 4.34.
|
|
3308
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.34.
|
|
3306
|
+
"@rollup/rollup-android-arm-eabi@npm:4.34.8":
|
|
3307
|
+
version: 4.34.8
|
|
3308
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.34.8"
|
|
3309
3309
|
conditions: os=android & cpu=arm
|
|
3310
3310
|
languageName: node
|
|
3311
3311
|
linkType: hard
|
|
3312
3312
|
|
|
3313
|
-
"@rollup/rollup-android-arm64@npm:4.34.
|
|
3314
|
-
version: 4.34.
|
|
3315
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.34.
|
|
3313
|
+
"@rollup/rollup-android-arm64@npm:4.34.8":
|
|
3314
|
+
version: 4.34.8
|
|
3315
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.34.8"
|
|
3316
3316
|
conditions: os=android & cpu=arm64
|
|
3317
3317
|
languageName: node
|
|
3318
3318
|
linkType: hard
|
|
3319
3319
|
|
|
3320
|
-
"@rollup/rollup-darwin-arm64@npm:4.34.
|
|
3321
|
-
version: 4.34.
|
|
3322
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.34.
|
|
3320
|
+
"@rollup/rollup-darwin-arm64@npm:4.34.8":
|
|
3321
|
+
version: 4.34.8
|
|
3322
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.34.8"
|
|
3323
3323
|
conditions: os=darwin & cpu=arm64
|
|
3324
3324
|
languageName: node
|
|
3325
3325
|
linkType: hard
|
|
3326
3326
|
|
|
3327
|
-
"@rollup/rollup-darwin-x64@npm:4.34.
|
|
3328
|
-
version: 4.34.
|
|
3329
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.34.
|
|
3327
|
+
"@rollup/rollup-darwin-x64@npm:4.34.8":
|
|
3328
|
+
version: 4.34.8
|
|
3329
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.34.8"
|
|
3330
3330
|
conditions: os=darwin & cpu=x64
|
|
3331
3331
|
languageName: node
|
|
3332
3332
|
linkType: hard
|
|
3333
3333
|
|
|
3334
|
-
"@rollup/rollup-freebsd-arm64@npm:4.34.
|
|
3335
|
-
version: 4.34.
|
|
3336
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.34.
|
|
3334
|
+
"@rollup/rollup-freebsd-arm64@npm:4.34.8":
|
|
3335
|
+
version: 4.34.8
|
|
3336
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.34.8"
|
|
3337
3337
|
conditions: os=freebsd & cpu=arm64
|
|
3338
3338
|
languageName: node
|
|
3339
3339
|
linkType: hard
|
|
3340
3340
|
|
|
3341
|
-
"@rollup/rollup-freebsd-x64@npm:4.34.
|
|
3342
|
-
version: 4.34.
|
|
3343
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.34.
|
|
3341
|
+
"@rollup/rollup-freebsd-x64@npm:4.34.8":
|
|
3342
|
+
version: 4.34.8
|
|
3343
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.34.8"
|
|
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.34.
|
|
3349
|
-
version: 4.34.
|
|
3350
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.
|
|
3348
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8":
|
|
3349
|
+
version: 4.34.8
|
|
3350
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8"
|
|
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.34.
|
|
3356
|
-
version: 4.34.
|
|
3357
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.34.
|
|
3355
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.34.8":
|
|
3356
|
+
version: 4.34.8
|
|
3357
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.34.8"
|
|
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.34.
|
|
3363
|
-
version: 4.34.
|
|
3364
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.34.
|
|
3362
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.34.8":
|
|
3363
|
+
version: 4.34.8
|
|
3364
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.34.8"
|
|
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.34.
|
|
3370
|
-
version: 4.34.
|
|
3371
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.34.
|
|
3369
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.34.8":
|
|
3370
|
+
version: 4.34.8
|
|
3371
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.34.8"
|
|
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.34.
|
|
3377
|
-
version: 4.34.
|
|
3378
|
-
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.
|
|
3376
|
+
"@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8":
|
|
3377
|
+
version: 4.34.8
|
|
3378
|
+
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8"
|
|
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.34.
|
|
3384
|
-
version: 4.34.
|
|
3385
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.
|
|
3383
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.8":
|
|
3384
|
+
version: 4.34.8
|
|
3385
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.8"
|
|
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.34.
|
|
3391
|
-
version: 4.34.
|
|
3392
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.34.
|
|
3390
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.34.8":
|
|
3391
|
+
version: 4.34.8
|
|
3392
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.34.8"
|
|
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.34.
|
|
3398
|
-
version: 4.34.
|
|
3399
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.34.
|
|
3397
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.34.8":
|
|
3398
|
+
version: 4.34.8
|
|
3399
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.34.8"
|
|
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.34.
|
|
3405
|
-
version: 4.34.
|
|
3406
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.34.
|
|
3404
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.34.8":
|
|
3405
|
+
version: 4.34.8
|
|
3406
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.34.8"
|
|
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.34.
|
|
3412
|
-
version: 4.34.
|
|
3413
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.34.
|
|
3411
|
+
"@rollup/rollup-linux-x64-musl@npm:4.34.8":
|
|
3412
|
+
version: 4.34.8
|
|
3413
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.34.8"
|
|
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.34.
|
|
3419
|
-
version: 4.34.
|
|
3420
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.34.
|
|
3418
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.34.8":
|
|
3419
|
+
version: 4.34.8
|
|
3420
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.34.8"
|
|
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.34.
|
|
3426
|
-
version: 4.34.
|
|
3427
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.34.
|
|
3425
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.34.8":
|
|
3426
|
+
version: 4.34.8
|
|
3427
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.34.8"
|
|
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.34.
|
|
3433
|
-
version: 4.34.
|
|
3434
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.34.
|
|
3432
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.34.8":
|
|
3433
|
+
version: 4.34.8
|
|
3434
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.34.8"
|
|
3435
3435
|
conditions: os=win32 & cpu=x64
|
|
3436
3436
|
languageName: node
|
|
3437
3437
|
linkType: hard
|
|
@@ -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.10
|
|
5968
|
+
resolution: "@types/react@npm:19.0.10"
|
|
5969
5969
|
dependencies:
|
|
5970
5970
|
csstype: "npm:^3.0.2"
|
|
5971
|
-
checksum: 10c0/
|
|
5971
|
+
checksum: 10c0/41884cca21850c8b2d6578b172ca0ca4fff6021251a68532b19f2031ac23dc5a9222470208065f8d9985d367376047df2f49ece8d927f7d04cdc94922b1eb34b
|
|
5972
5972
|
languageName: node
|
|
5973
5973
|
linkType: hard
|
|
5974
5974
|
|
|
@@ -8100,9 +8100,9 @@ __metadata:
|
|
|
8100
8100
|
linkType: hard
|
|
8101
8101
|
|
|
8102
8102
|
"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001109, caniuse-lite@npm:^1.0.30001125, caniuse-lite@npm:^1.0.30001646, caniuse-lite@npm:^1.0.30001688":
|
|
8103
|
-
version: 1.0.
|
|
8104
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8105
|
-
checksum: 10c0/
|
|
8103
|
+
version: 1.0.30001700
|
|
8104
|
+
resolution: "caniuse-lite@npm:1.0.30001700"
|
|
8105
|
+
checksum: 10c0/3d391bcdd193208166d3ad759de240b9c18ac3759dbd57195770f0fcd2eedcd47d5e853609aba1eee5a2def44b0a14eee457796bdb3451a27de0c8b27355017c
|
|
8106
8106
|
languageName: node
|
|
8107
8107
|
linkType: hard
|
|
8108
8108
|
|
|
@@ -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.102
|
|
9893
|
+
resolution: "electron-to-chromium@npm:1.5.102"
|
|
9894
|
+
checksum: 10c0/db07dab3ee3b7fbc39ad26203925669ade86b12a62d09fa14ae48a354a0f34d162ac9a2ca9d6f70ceb1b16821b01b155e56467702bcc915da1e1dd147dd034b4
|
|
9895
9895
|
languageName: node
|
|
9896
9896
|
linkType: hard
|
|
9897
9897
|
|
|
@@ -11203,9 +11203,9 @@ __metadata:
|
|
|
11203
11203
|
linkType: hard
|
|
11204
11204
|
|
|
11205
11205
|
"flatted@npm:^3.2.9":
|
|
11206
|
-
version: 3.3.
|
|
11207
|
-
resolution: "flatted@npm:3.3.
|
|
11208
|
-
checksum: 10c0/
|
|
11206
|
+
version: 3.3.3
|
|
11207
|
+
resolution: "flatted@npm:3.3.3"
|
|
11208
|
+
checksum: 10c0/e957a1c6b0254aa15b8cce8533e24165abd98fadc98575db082b786b5da1b7d72062b81bfdcd1da2f4d46b6ed93bec2434e62333e9b4261d79ef2e75a10dd538
|
|
11209
11209
|
languageName: node
|
|
11210
11210
|
linkType: hard
|
|
11211
11211
|
|
|
@@ -11319,13 +11319,14 @@ __metadata:
|
|
|
11319
11319
|
linkType: hard
|
|
11320
11320
|
|
|
11321
11321
|
"form-data@npm:^4.0.0":
|
|
11322
|
-
version: 4.0.
|
|
11323
|
-
resolution: "form-data@npm:4.0.
|
|
11322
|
+
version: 4.0.2
|
|
11323
|
+
resolution: "form-data@npm:4.0.2"
|
|
11324
11324
|
dependencies:
|
|
11325
11325
|
asynckit: "npm:^0.4.0"
|
|
11326
11326
|
combined-stream: "npm:^1.0.8"
|
|
11327
|
+
es-set-tostringtag: "npm:^2.1.0"
|
|
11327
11328
|
mime-types: "npm:^2.1.12"
|
|
11328
|
-
checksum: 10c0/
|
|
11329
|
+
checksum: 10c0/e534b0cf025c831a0929bf4b9bbe1a9a6b03e273a8161f9947286b9b13bf8fb279c6944aae0070c4c311100c6d6dbb815cd955dc217728caf73fad8dc5b8ee9c
|
|
11329
11330
|
languageName: node
|
|
11330
11331
|
linkType: hard
|
|
11331
11332
|
|
|
@@ -13803,9 +13804,9 @@ __metadata:
|
|
|
13803
13804
|
linkType: hard
|
|
13804
13805
|
|
|
13805
13806
|
"libphonenumber-js@npm:^1.9.11":
|
|
13806
|
-
version: 1.11.
|
|
13807
|
-
resolution: "libphonenumber-js@npm:1.11.
|
|
13808
|
-
checksum: 10c0/
|
|
13807
|
+
version: 1.11.20
|
|
13808
|
+
resolution: "libphonenumber-js@npm:1.11.20"
|
|
13809
|
+
checksum: 10c0/fb1010bfa5f8682dadfbd9608f76207510e13c456db96d0d534cf727efa2de005cafbb16d016046965894af0787bf567eb5a1a2688d7bb2d5f8b2eebc42437c6
|
|
13809
13810
|
languageName: node
|
|
13810
13811
|
linkType: hard
|
|
13811
13812
|
|
|
@@ -14272,11 +14273,11 @@ __metadata:
|
|
|
14272
14273
|
linkType: hard
|
|
14273
14274
|
|
|
14274
14275
|
"markdown-to-jsx@npm:^7.1.3":
|
|
14275
|
-
version: 7.7.
|
|
14276
|
-
resolution: "markdown-to-jsx@npm:7.7.
|
|
14276
|
+
version: 7.7.4
|
|
14277
|
+
resolution: "markdown-to-jsx@npm:7.7.4"
|
|
14277
14278
|
peerDependencies:
|
|
14278
14279
|
react: ">= 0.14.0"
|
|
14279
|
-
checksum: 10c0/
|
|
14280
|
+
checksum: 10c0/692323e3cb5573ecce5f1f40c3b1a8d67bca40f2b4907ec266c23e7dffa2dcab466f738ea6569f8a5e6234ddcdccacbfeeb97b5e2f647b94bf29fa441f0083be
|
|
14280
14281
|
languageName: node
|
|
14281
14282
|
linkType: hard
|
|
14282
14283
|
|
|
@@ -17532,9 +17533,9 @@ __metadata:
|
|
|
17532
17533
|
linkType: hard
|
|
17533
17534
|
|
|
17534
17535
|
"react-error-overlay@npm:^6.0.9":
|
|
17535
|
-
version: 6.0
|
|
17536
|
-
resolution: "react-error-overlay@npm:6.0
|
|
17537
|
-
checksum: 10c0/
|
|
17536
|
+
version: 6.1.0
|
|
17537
|
+
resolution: "react-error-overlay@npm:6.1.0"
|
|
17538
|
+
checksum: 10c0/2b52308b9e489dfaa25df85c7ed5c200371bc214245161a0833b729f9c6b1a2e591e1d1e07c3d3859ffa19b84a386c219d93df9ba13d819be34c20f40e71a555
|
|
17538
17539
|
languageName: node
|
|
17539
17540
|
linkType: hard
|
|
17540
17541
|
|
|
@@ -18927,28 +18928,28 @@ __metadata:
|
|
|
18927
18928
|
linkType: hard
|
|
18928
18929
|
|
|
18929
18930
|
"rollup@npm:^4.13.0":
|
|
18930
|
-
version: 4.34.
|
|
18931
|
-
resolution: "rollup@npm:4.34.
|
|
18932
|
-
dependencies:
|
|
18933
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.34.
|
|
18934
|
-
"@rollup/rollup-android-arm64": "npm:4.34.
|
|
18935
|
-
"@rollup/rollup-darwin-arm64": "npm:4.34.
|
|
18936
|
-
"@rollup/rollup-darwin-x64": "npm:4.34.
|
|
18937
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.34.
|
|
18938
|
-
"@rollup/rollup-freebsd-x64": "npm:4.34.
|
|
18939
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.34.
|
|
18940
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.34.
|
|
18941
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.34.
|
|
18942
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.34.
|
|
18943
|
-
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.34.
|
|
18944
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.34.
|
|
18945
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.34.
|
|
18946
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.34.
|
|
18947
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.34.
|
|
18948
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.34.
|
|
18949
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.34.
|
|
18950
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.34.
|
|
18951
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.34.
|
|
18931
|
+
version: 4.34.8
|
|
18932
|
+
resolution: "rollup@npm:4.34.8"
|
|
18933
|
+
dependencies:
|
|
18934
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.34.8"
|
|
18935
|
+
"@rollup/rollup-android-arm64": "npm:4.34.8"
|
|
18936
|
+
"@rollup/rollup-darwin-arm64": "npm:4.34.8"
|
|
18937
|
+
"@rollup/rollup-darwin-x64": "npm:4.34.8"
|
|
18938
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.34.8"
|
|
18939
|
+
"@rollup/rollup-freebsd-x64": "npm:4.34.8"
|
|
18940
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.34.8"
|
|
18941
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.34.8"
|
|
18942
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.34.8"
|
|
18943
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.34.8"
|
|
18944
|
+
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.34.8"
|
|
18945
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.34.8"
|
|
18946
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.34.8"
|
|
18947
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.34.8"
|
|
18948
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.34.8"
|
|
18949
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.34.8"
|
|
18950
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.34.8"
|
|
18951
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.34.8"
|
|
18952
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.34.8"
|
|
18952
18953
|
"@types/estree": "npm:1.0.6"
|
|
18953
18954
|
fsevents: "npm:~2.3.2"
|
|
18954
18955
|
dependenciesMeta:
|
|
@@ -18994,7 +18995,7 @@ __metadata:
|
|
|
18994
18995
|
optional: true
|
|
18995
18996
|
bin:
|
|
18996
18997
|
rollup: dist/bin/rollup
|
|
18997
|
-
checksum: 10c0/
|
|
18998
|
+
checksum: 10c0/b9e711e33413112fbb761107c3fddc4561dfc74335c393542a829a85ccfb2763bfd17bf2422d84a2e9bee7646e5367018973e97005fdf64e49c2e209612f0eb6
|
|
18998
18999
|
languageName: node
|
|
18999
19000
|
linkType: hard
|
|
19000
19001
|
|