@licklist/design 0.71.5-dev.7 → 0.71.5-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/events/event-statistic-modal/EventStatisticModal.d.ts +2 -1
- package/dist/events/event-statistic-modal/EventStatisticModal.d.ts.map +1 -1
- package/dist/events/event-statistic-modal/EventStatisticModal.js +2 -2
- package/dist/events/event-statistic-modal/hooks/useTableData.d.ts +1 -1
- package/dist/events/event-statistic-modal/hooks/useTableData.d.ts.map +1 -1
- package/dist/events/event-statistic-modal/hooks/useTableData.js +5 -4
- package/dist/events/event-statistic-modal/utils/index.d.ts +1 -1
- package/dist/events/event-statistic-modal/utils/index.d.ts.map +1 -1
- package/dist/events/event-statistic-modal/utils/index.js +3 -1
- package/package.json +1 -1
- package/src/events/event-statistic-modal/EventStatisticModal.tsx +3 -1
- package/src/events/event-statistic-modal/hooks/useTableData.tsx +5 -3
- package/src/events/event-statistic-modal/utils/index.ts +2 -1
- package/yarn.lock +155 -147
|
@@ -6,6 +6,7 @@ export type EventStatisticModalProps = {
|
|
|
6
6
|
date?: Event['startAt'] | null;
|
|
7
7
|
eventStatistic?: EventStatistic | null;
|
|
8
8
|
title?: string;
|
|
9
|
+
eventId?: string;
|
|
9
10
|
};
|
|
10
|
-
export declare const EventStatisticModal: ({ isOpen, setIsOpen, date, eventStatistic, title, }: EventStatisticModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const EventStatisticModal: ({ isOpen, setIsOpen, date, eventStatistic, title, eventId, }: EventStatisticModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
//# sourceMappingURL=EventStatisticModal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EventStatisticModal.d.ts","sourceRoot":"","sources":["../../../src/events/event-statistic-modal/EventStatisticModal.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAA;AACjG,OAAO,EAAE,KAAK,EAAE,MAAM,yDAAyD,CAAA;AAK/E,MAAM,MAAM,wBAAwB,GAAG;IACrC,MAAM,EAAE,OAAO,CAAA;IACf,SAAS,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAA;IACnC,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,GAAG,IAAI,CAAA;IAC9B,cAAc,CAAC,EAAE,cAAc,GAAG,IAAI,CAAA;IACtC,KAAK,CAAC,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"EventStatisticModal.d.ts","sourceRoot":"","sources":["../../../src/events/event-statistic-modal/EventStatisticModal.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAA;AACjG,OAAO,EAAE,KAAK,EAAE,MAAM,yDAAyD,CAAA;AAK/E,MAAM,MAAM,wBAAwB,GAAG;IACrC,MAAM,EAAE,OAAO,CAAA;IACf,SAAS,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAA;IACnC,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,GAAG,IAAI,CAAA;IAC9B,cAAc,CAAC,EAAE,cAAc,GAAG,IAAI,CAAA;IACtC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB,CAAA;AAED,eAAO,MAAM,mBAAmB,iEAO7B,wBAAwB,4CAiD1B,CAAA"}
|
|
@@ -18,9 +18,9 @@ import '@tanstack/react-table';
|
|
|
18
18
|
import { useTableData } from './hooks/useTableData.js';
|
|
19
19
|
|
|
20
20
|
var EventStatisticModal = function(param) {
|
|
21
|
-
var isOpen = param.isOpen, setIsOpen = param.setIsOpen, date = param.date, eventStatistic = param.eventStatistic, title = param.title;
|
|
21
|
+
var isOpen = param.isOpen, setIsOpen = param.setIsOpen, date = param.date, eventStatistic = param.eventStatistic, title = param.title, eventId = param.eventId;
|
|
22
22
|
var t = useTranslation('Design').t;
|
|
23
|
-
var data = useTableData(date, eventStatistic);
|
|
23
|
+
var data = useTableData(date, eventStatistic, eventId);
|
|
24
24
|
var handleClose = function() {
|
|
25
25
|
setIsOpen(false);
|
|
26
26
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventStatistic } from '@licklist/core/dist/DataMapper/Provider/EventStatisticDataMapper';
|
|
2
2
|
import { Event } from '@licklist/core/dist/DataMapper/Provider/EventDataMapper';
|
|
3
3
|
import { StaticTableData } from '../../../table';
|
|
4
|
-
export declare const useTableData: (date: Event["startAt"] | null, eventStatistic: EventStatistic | null) => StaticTableData[];
|
|
4
|
+
export declare const useTableData: (date: Event["startAt"] | null, eventStatistic: EventStatistic | null, eventId: string) => StaticTableData[];
|
|
5
5
|
//# sourceMappingURL=useTableData.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useTableData.d.ts","sourceRoot":"","sources":["../../../../src/events/event-statistic-modal/hooks/useTableData.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAA;AACjG,OAAO,EAAE,KAAK,EAAE,MAAM,yDAAyD,CAAA;AAE/E,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAA;AAEhD,eAAO,MAAM,YAAY,SACjB,KAAK,CAAC,SAAS,CAAC,GAAG,IAAI,kBACb,cAAc,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"useTableData.d.ts","sourceRoot":"","sources":["../../../../src/events/event-statistic-modal/hooks/useTableData.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAA;AACjG,OAAO,EAAE,KAAK,EAAE,MAAM,yDAAyD,CAAA;AAE/E,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAA;AAEhD,eAAO,MAAM,YAAY,SACjB,KAAK,CAAC,SAAS,CAAC,GAAG,IAAI,kBACb,cAAc,GAAG,IAAI,WAC5B,MAAM,sBA8EhB,CAAA"}
|
|
@@ -52,7 +52,7 @@ function _unsupported_iterable_to_array(o, minLen) {
|
|
|
52
52
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
53
53
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
54
54
|
}
|
|
55
|
-
var useTableData = function(date, eventStatistic) {
|
|
55
|
+
var useTableData = function(date, eventStatistic, eventId) {
|
|
56
56
|
var t = useTranslation('Design').t;
|
|
57
57
|
var formatNumber = useIntl().formatNumber;
|
|
58
58
|
var _useState = _sliced_to_array(useState([]), 2), tableRows = _useState[0], setTableRows = _useState[1];
|
|
@@ -70,12 +70,12 @@ var useTableData = function(date, eventStatistic) {
|
|
|
70
70
|
}
|
|
71
71
|
return t(key);
|
|
72
72
|
};
|
|
73
|
-
var transformStatisticToTableRows = function(date, statistic) {
|
|
73
|
+
var transformStatisticToTableRows = function(date, statistic, eventId) {
|
|
74
74
|
if (!statistic) {
|
|
75
75
|
return [];
|
|
76
76
|
}
|
|
77
77
|
var tableDataRows = [];
|
|
78
|
-
convertEventStatisticToTableData(date, statistic).forEach(function(param) {
|
|
78
|
+
convertEventStatisticToTableData(date, statistic, eventId).forEach(function(param) {
|
|
79
79
|
var name = param.name, quantity = param.quantity, total = param.total, isBold = param.isBold, isHeader = param.isHeader, key = param.key;
|
|
80
80
|
var formattedTotal = !Object.keys(TRANSLATION_KEYS).includes(String(total)) ? formatNumber(Number(total), {
|
|
81
81
|
style: 'currency',
|
|
@@ -102,10 +102,11 @@ var useTableData = function(date, eventStatistic) {
|
|
|
102
102
|
return tableDataRows;
|
|
103
103
|
};
|
|
104
104
|
useEffect(function() {
|
|
105
|
-
setTableRows(transformStatisticToTableRows(date, eventStatistic));
|
|
105
|
+
setTableRows(transformStatisticToTableRows(date, eventStatistic, eventId));
|
|
106
106
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
107
107
|
}, [
|
|
108
108
|
date,
|
|
109
|
+
eventId,
|
|
109
110
|
eventStatistic
|
|
110
111
|
]);
|
|
111
112
|
return tableRows;
|
|
@@ -16,6 +16,6 @@ type TableDataRecord = {
|
|
|
16
16
|
_total: number;
|
|
17
17
|
};
|
|
18
18
|
};
|
|
19
|
-
export declare const convertEventStatisticToTableData: (date: string, eventStatistic: EventStatistic) => TableDataRecord[];
|
|
19
|
+
export declare const convertEventStatisticToTableData: (date: string, eventStatistic: EventStatistic, eventId: string) => TableDataRecord[];
|
|
20
20
|
export {};
|
|
21
21
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/events/event-statistic-modal/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAA;AAKjG,eAAO,MAAM,gBAAgB;;;;CAI5B,CAAA;AAED,KAAK,eAAe,GAAG;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE;QACT,aAAa,EAAE,MAAM,CAAA;QACrB,MAAM,EAAE,MAAM,CAAA;KACf,CAAA;CACF,CAAA;AAED,eAAO,MAAM,gCAAgC,SACrC,MAAM,kBACI,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/events/event-statistic-modal/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAA;AAKjG,eAAO,MAAM,gBAAgB;;;;CAI5B,CAAA;AAED,KAAK,eAAe,GAAG;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE;QACT,aAAa,EAAE,MAAM,CAAA;QACrB,MAAM,EAAE,MAAM,CAAA;KACf,CAAA;CACF,CAAA;AAED,eAAO,MAAM,gCAAgC,SACrC,MAAM,kBACI,cAAc,WACrB,MAAM,sBA8IhB,CAAA"}
|
|
@@ -32,7 +32,7 @@ var TRANSLATION_KEYS = {
|
|
|
32
32
|
total: 'total',
|
|
33
33
|
totalPerCategory: 'totalPerCategory'
|
|
34
34
|
};
|
|
35
|
-
var convertEventStatisticToTableData = function(date, eventStatistic) {
|
|
35
|
+
var convertEventStatisticToTableData = function(date, eventStatistic, eventId) {
|
|
36
36
|
var _Object_keys;
|
|
37
37
|
var totalAmount = 0;
|
|
38
38
|
var totalQuantity = 0;
|
|
@@ -49,6 +49,8 @@ var convertEventStatisticToTableData = function(date, eventStatistic) {
|
|
|
49
49
|
return eventStatistic === null || eventStatistic === void 0 ? void 0 : eventStatistic.productCategorySummary[day];
|
|
50
50
|
}).flat().sort(function(prev, next) {
|
|
51
51
|
return prev.categoryName === next.categoryName ? 0 : prev.categoryName > next.categoryName ? 1 : -1;
|
|
52
|
+
}).filter(function(item) {
|
|
53
|
+
return item.eventId === Number(eventId);
|
|
52
54
|
}).forEach(function(param, _, selfCategory) {
|
|
53
55
|
var totalPerCategory = param.totalPerCategory, _param_productsSummary = param.productsSummary, productsSummary = _param_productsSummary === void 0 ? [] : _param_productsSummary, categoryName = param.categoryName, eventId = param.eventId;
|
|
54
56
|
var quantity = 0;
|
package/package.json
CHANGED
|
@@ -12,6 +12,7 @@ export type EventStatisticModalProps = {
|
|
|
12
12
|
date?: Event['startAt'] | null
|
|
13
13
|
eventStatistic?: EventStatistic | null
|
|
14
14
|
title?: string
|
|
15
|
+
eventId?: string
|
|
15
16
|
}
|
|
16
17
|
|
|
17
18
|
export const EventStatisticModal = ({
|
|
@@ -20,10 +21,11 @@ export const EventStatisticModal = ({
|
|
|
20
21
|
date,
|
|
21
22
|
eventStatistic,
|
|
22
23
|
title,
|
|
24
|
+
eventId,
|
|
23
25
|
}: EventStatisticModalProps) => {
|
|
24
26
|
const { t } = useTranslation('Design')
|
|
25
27
|
|
|
26
|
-
const data = useTableData(date, eventStatistic)
|
|
28
|
+
const data = useTableData(date, eventStatistic, eventId )
|
|
27
29
|
const handleClose = () => {
|
|
28
30
|
setIsOpen(false)
|
|
29
31
|
}
|
|
@@ -11,6 +11,7 @@ import { StaticTableData } from '../../../table'
|
|
|
11
11
|
export const useTableData = (
|
|
12
12
|
date: Event['startAt'] | null,
|
|
13
13
|
eventStatistic: EventStatistic | null,
|
|
14
|
+
eventId: string
|
|
14
15
|
) => {
|
|
15
16
|
const { t } = useTranslation('Design')
|
|
16
17
|
const { formatNumber } = useIntl()
|
|
@@ -33,6 +34,7 @@ export const useTableData = (
|
|
|
33
34
|
const transformStatisticToTableRows = (
|
|
34
35
|
date: Event['startAt'],
|
|
35
36
|
statistic: EventStatistic | null,
|
|
37
|
+
eventId: string
|
|
36
38
|
) => {
|
|
37
39
|
if (!statistic) {
|
|
38
40
|
return []
|
|
@@ -40,7 +42,7 @@ export const useTableData = (
|
|
|
40
42
|
|
|
41
43
|
const tableDataRows: StaticTableData[] = []
|
|
42
44
|
|
|
43
|
-
convertEventStatisticToTableData(date, statistic).forEach(
|
|
45
|
+
convertEventStatisticToTableData(date, statistic, eventId).forEach(
|
|
44
46
|
({ name, quantity, total, isBold, isHeader, key }) => {
|
|
45
47
|
const formattedTotal = !Object.keys(TRANSLATION_KEYS).includes(
|
|
46
48
|
String(total),
|
|
@@ -82,9 +84,9 @@ export const useTableData = (
|
|
|
82
84
|
}
|
|
83
85
|
|
|
84
86
|
useEffect(() => {
|
|
85
|
-
setTableRows(transformStatisticToTableRows(date, eventStatistic))
|
|
87
|
+
setTableRows(transformStatisticToTableRows(date, eventStatistic, eventId))
|
|
86
88
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
87
|
-
}, [date, eventStatistic])
|
|
89
|
+
}, [date, eventId, eventStatistic])
|
|
88
90
|
|
|
89
91
|
return tableRows
|
|
90
92
|
}
|
|
@@ -25,6 +25,7 @@ type TableDataRecord = {
|
|
|
25
25
|
export const convertEventStatisticToTableData = (
|
|
26
26
|
date: string,
|
|
27
27
|
eventStatistic: EventStatistic,
|
|
28
|
+
eventId: string,
|
|
28
29
|
) => {
|
|
29
30
|
let totalAmount = 0
|
|
30
31
|
let totalQuantity = 0
|
|
@@ -57,6 +58,7 @@ export const convertEventStatisticToTableData = (
|
|
|
57
58
|
? 1
|
|
58
59
|
: -1,
|
|
59
60
|
)
|
|
61
|
+
.filter((item) => item.eventId === Number(eventId))
|
|
60
62
|
.forEach(
|
|
61
63
|
(
|
|
62
64
|
{ totalPerCategory, productsSummary = [], categoryName, eventId },
|
|
@@ -81,7 +83,6 @@ export const convertEventStatisticToTableData = (
|
|
|
81
83
|
})
|
|
82
84
|
}
|
|
83
85
|
|
|
84
|
-
|
|
85
86
|
productsSummary?.forEach((productSummary, productIndex) => {
|
|
86
87
|
quantity += productSummary.productsSold
|
|
87
88
|
|
package/yarn.lock
CHANGED
|
@@ -3288,128 +3288,128 @@ __metadata:
|
|
|
3288
3288
|
languageName: node
|
|
3289
3289
|
linkType: hard
|
|
3290
3290
|
|
|
3291
|
-
"@rollup/rollup-android-arm-eabi@npm:4.
|
|
3292
|
-
version: 4.
|
|
3293
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.
|
|
3291
|
+
"@rollup/rollup-android-arm-eabi@npm:4.28.0":
|
|
3292
|
+
version: 4.28.0
|
|
3293
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.28.0"
|
|
3294
3294
|
conditions: os=android & cpu=arm
|
|
3295
3295
|
languageName: node
|
|
3296
3296
|
linkType: hard
|
|
3297
3297
|
|
|
3298
|
-
"@rollup/rollup-android-arm64@npm:4.
|
|
3299
|
-
version: 4.
|
|
3300
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.
|
|
3298
|
+
"@rollup/rollup-android-arm64@npm:4.28.0":
|
|
3299
|
+
version: 4.28.0
|
|
3300
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.28.0"
|
|
3301
3301
|
conditions: os=android & cpu=arm64
|
|
3302
3302
|
languageName: node
|
|
3303
3303
|
linkType: hard
|
|
3304
3304
|
|
|
3305
|
-
"@rollup/rollup-darwin-arm64@npm:4.
|
|
3306
|
-
version: 4.
|
|
3307
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.
|
|
3305
|
+
"@rollup/rollup-darwin-arm64@npm:4.28.0":
|
|
3306
|
+
version: 4.28.0
|
|
3307
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.28.0"
|
|
3308
3308
|
conditions: os=darwin & cpu=arm64
|
|
3309
3309
|
languageName: node
|
|
3310
3310
|
linkType: hard
|
|
3311
3311
|
|
|
3312
|
-
"@rollup/rollup-darwin-x64@npm:4.
|
|
3313
|
-
version: 4.
|
|
3314
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.
|
|
3312
|
+
"@rollup/rollup-darwin-x64@npm:4.28.0":
|
|
3313
|
+
version: 4.28.0
|
|
3314
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.28.0"
|
|
3315
3315
|
conditions: os=darwin & cpu=x64
|
|
3316
3316
|
languageName: node
|
|
3317
3317
|
linkType: hard
|
|
3318
3318
|
|
|
3319
|
-
"@rollup/rollup-freebsd-arm64@npm:4.
|
|
3320
|
-
version: 4.
|
|
3321
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.
|
|
3319
|
+
"@rollup/rollup-freebsd-arm64@npm:4.28.0":
|
|
3320
|
+
version: 4.28.0
|
|
3321
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.28.0"
|
|
3322
3322
|
conditions: os=freebsd & cpu=arm64
|
|
3323
3323
|
languageName: node
|
|
3324
3324
|
linkType: hard
|
|
3325
3325
|
|
|
3326
|
-
"@rollup/rollup-freebsd-x64@npm:4.
|
|
3327
|
-
version: 4.
|
|
3328
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.
|
|
3326
|
+
"@rollup/rollup-freebsd-x64@npm:4.28.0":
|
|
3327
|
+
version: 4.28.0
|
|
3328
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.28.0"
|
|
3329
3329
|
conditions: os=freebsd & cpu=x64
|
|
3330
3330
|
languageName: node
|
|
3331
3331
|
linkType: hard
|
|
3332
3332
|
|
|
3333
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.
|
|
3334
|
-
version: 4.
|
|
3335
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.
|
|
3333
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.28.0":
|
|
3334
|
+
version: 4.28.0
|
|
3335
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.28.0"
|
|
3336
3336
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3337
3337
|
languageName: node
|
|
3338
3338
|
linkType: hard
|
|
3339
3339
|
|
|
3340
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.
|
|
3341
|
-
version: 4.
|
|
3342
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.
|
|
3340
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.28.0":
|
|
3341
|
+
version: 4.28.0
|
|
3342
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.28.0"
|
|
3343
3343
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3344
3344
|
languageName: node
|
|
3345
3345
|
linkType: hard
|
|
3346
3346
|
|
|
3347
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.
|
|
3348
|
-
version: 4.
|
|
3349
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.
|
|
3347
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.28.0":
|
|
3348
|
+
version: 4.28.0
|
|
3349
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.28.0"
|
|
3350
3350
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3351
3351
|
languageName: node
|
|
3352
3352
|
linkType: hard
|
|
3353
3353
|
|
|
3354
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.
|
|
3355
|
-
version: 4.
|
|
3356
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.
|
|
3354
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.28.0":
|
|
3355
|
+
version: 4.28.0
|
|
3356
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.28.0"
|
|
3357
3357
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3358
3358
|
languageName: node
|
|
3359
3359
|
linkType: hard
|
|
3360
3360
|
|
|
3361
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.
|
|
3362
|
-
version: 4.
|
|
3363
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.
|
|
3361
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.28.0":
|
|
3362
|
+
version: 4.28.0
|
|
3363
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.28.0"
|
|
3364
3364
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3365
3365
|
languageName: node
|
|
3366
3366
|
linkType: hard
|
|
3367
3367
|
|
|
3368
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.
|
|
3369
|
-
version: 4.
|
|
3370
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.
|
|
3368
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.28.0":
|
|
3369
|
+
version: 4.28.0
|
|
3370
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.28.0"
|
|
3371
3371
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3372
3372
|
languageName: node
|
|
3373
3373
|
linkType: hard
|
|
3374
3374
|
|
|
3375
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.
|
|
3376
|
-
version: 4.
|
|
3377
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.
|
|
3375
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.28.0":
|
|
3376
|
+
version: 4.28.0
|
|
3377
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.28.0"
|
|
3378
3378
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3379
3379
|
languageName: node
|
|
3380
3380
|
linkType: hard
|
|
3381
3381
|
|
|
3382
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.
|
|
3383
|
-
version: 4.
|
|
3384
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.
|
|
3382
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.28.0":
|
|
3383
|
+
version: 4.28.0
|
|
3384
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.28.0"
|
|
3385
3385
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3386
3386
|
languageName: node
|
|
3387
3387
|
linkType: hard
|
|
3388
3388
|
|
|
3389
|
-
"@rollup/rollup-linux-x64-musl@npm:4.
|
|
3390
|
-
version: 4.
|
|
3391
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.
|
|
3389
|
+
"@rollup/rollup-linux-x64-musl@npm:4.28.0":
|
|
3390
|
+
version: 4.28.0
|
|
3391
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.28.0"
|
|
3392
3392
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3393
3393
|
languageName: node
|
|
3394
3394
|
linkType: hard
|
|
3395
3395
|
|
|
3396
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.
|
|
3397
|
-
version: 4.
|
|
3398
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.
|
|
3396
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.28.0":
|
|
3397
|
+
version: 4.28.0
|
|
3398
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.28.0"
|
|
3399
3399
|
conditions: os=win32 & cpu=arm64
|
|
3400
3400
|
languageName: node
|
|
3401
3401
|
linkType: hard
|
|
3402
3402
|
|
|
3403
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.
|
|
3404
|
-
version: 4.
|
|
3405
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.
|
|
3403
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.28.0":
|
|
3404
|
+
version: 4.28.0
|
|
3405
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.28.0"
|
|
3406
3406
|
conditions: os=win32 & cpu=ia32
|
|
3407
3407
|
languageName: node
|
|
3408
3408
|
linkType: hard
|
|
3409
3409
|
|
|
3410
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.
|
|
3411
|
-
version: 4.
|
|
3412
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.
|
|
3410
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.28.0":
|
|
3411
|
+
version: 4.28.0
|
|
3412
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.28.0"
|
|
3413
3413
|
conditions: os=win32 & cpu=x64
|
|
3414
3414
|
languageName: node
|
|
3415
3415
|
linkType: hard
|
|
@@ -8045,9 +8045,9 @@ __metadata:
|
|
|
8045
8045
|
linkType: hard
|
|
8046
8046
|
|
|
8047
8047
|
"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.30001669":
|
|
8048
|
-
version: 1.0.
|
|
8049
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8050
|
-
checksum: 10c0/
|
|
8048
|
+
version: 1.0.30001686
|
|
8049
|
+
resolution: "caniuse-lite@npm:1.0.30001686"
|
|
8050
|
+
checksum: 10c0/41748e81c17c1a6a0fd6e515c93c8620004171fe6706027e45f837fde71e97173e85141b0dc11e07d53b4782f3741a6651cb0f7d395cc1c1860892355eabdfa2
|
|
8051
8051
|
languageName: node
|
|
8052
8052
|
linkType: hard
|
|
8053
8053
|
|
|
@@ -8183,8 +8183,8 @@ __metadata:
|
|
|
8183
8183
|
linkType: hard
|
|
8184
8184
|
|
|
8185
8185
|
"chromatic@npm:^11.4.0":
|
|
8186
|
-
version: 11.
|
|
8187
|
-
resolution: "chromatic@npm:11.
|
|
8186
|
+
version: 11.20.0
|
|
8187
|
+
resolution: "chromatic@npm:11.20.0"
|
|
8188
8188
|
peerDependencies:
|
|
8189
8189
|
"@chromatic-com/cypress": ^0.*.* || ^1.0.0
|
|
8190
8190
|
"@chromatic-com/playwright": ^0.*.* || ^1.0.0
|
|
@@ -8197,7 +8197,7 @@ __metadata:
|
|
|
8197
8197
|
chroma: dist/bin.js
|
|
8198
8198
|
chromatic: dist/bin.js
|
|
8199
8199
|
chromatic-cli: dist/bin.js
|
|
8200
|
-
checksum: 10c0/
|
|
8200
|
+
checksum: 10c0/26e63794b38f3b76ea8b4f2ad2fc47057a049f76a684d44a3b541a774c50d7bed901c885cb60e4baf5df26d37574c20faaea897bc38f8606949456ba6d9eab2a
|
|
8201
8201
|
languageName: node
|
|
8202
8202
|
linkType: hard
|
|
8203
8203
|
|
|
@@ -9816,9 +9816,9 @@ __metadata:
|
|
|
9816
9816
|
linkType: hard
|
|
9817
9817
|
|
|
9818
9818
|
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.41":
|
|
9819
|
-
version: 1.5.
|
|
9820
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9821
|
-
checksum: 10c0/
|
|
9819
|
+
version: 1.5.68
|
|
9820
|
+
resolution: "electron-to-chromium@npm:1.5.68"
|
|
9821
|
+
checksum: 10c0/02cfa3043280e4f8e003724fadee30fa8cdb5f6df1be51627b1ad34f66a8d4fb51b3d3863647620075c02b21c8ff99bc2afe55142a2b4742b1f9d523c11b25a3
|
|
9822
9822
|
languageName: node
|
|
9823
9823
|
linkType: hard
|
|
9824
9824
|
|
|
@@ -11855,12 +11855,12 @@ __metadata:
|
|
|
11855
11855
|
languageName: node
|
|
11856
11856
|
linkType: hard
|
|
11857
11857
|
|
|
11858
|
-
"gopd@npm:^1.0.1":
|
|
11859
|
-
version: 1.0
|
|
11860
|
-
resolution: "gopd@npm:1.0
|
|
11858
|
+
"gopd@npm:^1.0.1, gopd@npm:^1.1.0":
|
|
11859
|
+
version: 1.1.0
|
|
11860
|
+
resolution: "gopd@npm:1.1.0"
|
|
11861
11861
|
dependencies:
|
|
11862
|
-
get-intrinsic: "npm:^1.
|
|
11863
|
-
checksum: 10c0/
|
|
11862
|
+
get-intrinsic: "npm:^1.2.4"
|
|
11863
|
+
checksum: 10c0/acfa9914889700cf42eaf676e1dc2d5a277217580e36119a9a6f5b77197700fd8294b8994f257963845820e7b414c8f06e1b9f8dff6456b0f71f61d175fecf3c
|
|
11864
11864
|
languageName: node
|
|
11865
11865
|
linkType: hard
|
|
11866
11866
|
|
|
@@ -11888,7 +11888,7 @@ __metadata:
|
|
|
11888
11888
|
languageName: node
|
|
11889
11889
|
linkType: hard
|
|
11890
11890
|
|
|
11891
|
-
"has-bigints@npm:^1.0.
|
|
11891
|
+
"has-bigints@npm:^1.0.2":
|
|
11892
11892
|
version: 1.0.2
|
|
11893
11893
|
resolution: "has-bigints@npm:1.0.2"
|
|
11894
11894
|
checksum: 10c0/724eb1485bfa3cdff6f18d95130aa190561f00b3fcf9f19dc640baf8176b5917c143b81ec2123f8cddb6c05164a198c94b13e1377c497705ccc8e1a80306e83b
|
|
@@ -11928,16 +11928,18 @@ __metadata:
|
|
|
11928
11928
|
linkType: hard
|
|
11929
11929
|
|
|
11930
11930
|
"has-proto@npm:^1.0.1, has-proto@npm:^1.0.3":
|
|
11931
|
-
version: 1.0
|
|
11932
|
-
resolution: "has-proto@npm:1.0
|
|
11933
|
-
|
|
11931
|
+
version: 1.1.0
|
|
11932
|
+
resolution: "has-proto@npm:1.1.0"
|
|
11933
|
+
dependencies:
|
|
11934
|
+
call-bind: "npm:^1.0.7"
|
|
11935
|
+
checksum: 10c0/d0aeb83ca76aa265a7629bf973d6338c310b8307cb7fa8b85f8f01a7d95fc3d6ede54eaedeb538a6c1ee4fc8961abfbe89ea88d9a78244fa03097fe5b506c10d
|
|
11934
11936
|
languageName: node
|
|
11935
11937
|
linkType: hard
|
|
11936
11938
|
|
|
11937
|
-
"has-symbols@npm:^1.0.
|
|
11938
|
-
version: 1.0
|
|
11939
|
-
resolution: "has-symbols@npm:1.0
|
|
11940
|
-
checksum: 10c0/
|
|
11939
|
+
"has-symbols@npm:^1.0.3":
|
|
11940
|
+
version: 1.1.0
|
|
11941
|
+
resolution: "has-symbols@npm:1.1.0"
|
|
11942
|
+
checksum: 10c0/dde0a734b17ae51e84b10986e651c664379018d10b91b6b0e9b293eddb32f0f069688c841fb40f19e9611546130153e0a2a48fd7f512891fb000ddfa36f5a20e
|
|
11941
11943
|
languageName: node
|
|
11942
11944
|
linkType: hard
|
|
11943
11945
|
|
|
@@ -12677,12 +12679,12 @@ __metadata:
|
|
|
12677
12679
|
languageName: node
|
|
12678
12680
|
linkType: hard
|
|
12679
12681
|
|
|
12680
|
-
"is-bigint@npm:^1.0
|
|
12681
|
-
version: 1.0
|
|
12682
|
-
resolution: "is-bigint@npm:1.0
|
|
12682
|
+
"is-bigint@npm:^1.1.0":
|
|
12683
|
+
version: 1.1.0
|
|
12684
|
+
resolution: "is-bigint@npm:1.1.0"
|
|
12683
12685
|
dependencies:
|
|
12684
|
-
has-bigints: "npm:^1.0.
|
|
12685
|
-
checksum: 10c0/
|
|
12686
|
+
has-bigints: "npm:^1.0.2"
|
|
12687
|
+
checksum: 10c0/f4f4b905ceb195be90a6ea7f34323bf1c18e3793f18922e3e9a73c684c29eeeeff5175605c3a3a74cc38185fe27758f07efba3dbae812e5c5afbc0d2316b40e4
|
|
12686
12688
|
languageName: node
|
|
12687
12689
|
linkType: hard
|
|
12688
12690
|
|
|
@@ -12704,13 +12706,13 @@ __metadata:
|
|
|
12704
12706
|
languageName: node
|
|
12705
12707
|
linkType: hard
|
|
12706
12708
|
|
|
12707
|
-
"is-boolean-object@npm:^1.
|
|
12708
|
-
version: 1.
|
|
12709
|
-
resolution: "is-boolean-object@npm:1.
|
|
12709
|
+
"is-boolean-object@npm:^1.2.0":
|
|
12710
|
+
version: 1.2.0
|
|
12711
|
+
resolution: "is-boolean-object@npm:1.2.0"
|
|
12710
12712
|
dependencies:
|
|
12711
|
-
call-bind: "npm:^1.0.
|
|
12712
|
-
has-tostringtag: "npm:^1.0.
|
|
12713
|
-
checksum: 10c0/
|
|
12713
|
+
call-bind: "npm:^1.0.7"
|
|
12714
|
+
has-tostringtag: "npm:^1.0.2"
|
|
12715
|
+
checksum: 10c0/166319154c7c1fda06d164d3a25e969032d7929a1e3917ae56f6bd8870b831bbfdc608a3070fb5db94d5a2afc606683d484655777c9b62305383a8b87f1b5aa4
|
|
12714
12716
|
languageName: node
|
|
12715
12717
|
linkType: hard
|
|
12716
12718
|
|
|
@@ -12961,12 +12963,13 @@ __metadata:
|
|
|
12961
12963
|
languageName: node
|
|
12962
12964
|
linkType: hard
|
|
12963
12965
|
|
|
12964
|
-
"is-number-object@npm:^1.0
|
|
12965
|
-
version: 1.0
|
|
12966
|
-
resolution: "is-number-object@npm:1.0
|
|
12966
|
+
"is-number-object@npm:^1.1.0":
|
|
12967
|
+
version: 1.1.0
|
|
12968
|
+
resolution: "is-number-object@npm:1.1.0"
|
|
12967
12969
|
dependencies:
|
|
12968
|
-
|
|
12969
|
-
|
|
12970
|
+
call-bind: "npm:^1.0.7"
|
|
12971
|
+
has-tostringtag: "npm:^1.0.2"
|
|
12972
|
+
checksum: 10c0/29d575b5c54ff13f824858d8f7da4cf27131c59858744ec94e96be7b7d2de81038971c15a2636b38fa9eece3797c14bf8de898e1b30afc2f5c1df5cea9f06a8e
|
|
12970
12973
|
languageName: node
|
|
12971
12974
|
linkType: hard
|
|
12972
12975
|
|
|
@@ -13038,12 +13041,14 @@ __metadata:
|
|
|
13038
13041
|
linkType: hard
|
|
13039
13042
|
|
|
13040
13043
|
"is-regex@npm:^1.1.2, is-regex@npm:^1.1.4":
|
|
13041
|
-
version: 1.
|
|
13042
|
-
resolution: "is-regex@npm:1.
|
|
13044
|
+
version: 1.2.0
|
|
13045
|
+
resolution: "is-regex@npm:1.2.0"
|
|
13043
13046
|
dependencies:
|
|
13044
|
-
call-bind: "npm:^1.0.
|
|
13045
|
-
|
|
13046
|
-
|
|
13047
|
+
call-bind: "npm:^1.0.7"
|
|
13048
|
+
gopd: "npm:^1.1.0"
|
|
13049
|
+
has-tostringtag: "npm:^1.0.2"
|
|
13050
|
+
hasown: "npm:^2.0.2"
|
|
13051
|
+
checksum: 10c0/a407fefb871ceedebe718c35d2f4ba75dc3360c335e99ff2f8bc4488bdcc7b0b3bb78a208d1aa896cf2745630b97752ffd40b501c10bb7afc31d23c2e0092e8d
|
|
13047
13052
|
languageName: node
|
|
13048
13053
|
linkType: hard
|
|
13049
13054
|
|
|
@@ -13084,21 +13089,24 @@ __metadata:
|
|
|
13084
13089
|
languageName: node
|
|
13085
13090
|
linkType: hard
|
|
13086
13091
|
|
|
13087
|
-
"is-string@npm:^1.0.
|
|
13088
|
-
version: 1.0
|
|
13089
|
-
resolution: "is-string@npm:1.0
|
|
13092
|
+
"is-string@npm:^1.0.7, is-string@npm:^1.1.0":
|
|
13093
|
+
version: 1.1.0
|
|
13094
|
+
resolution: "is-string@npm:1.1.0"
|
|
13090
13095
|
dependencies:
|
|
13091
|
-
|
|
13092
|
-
|
|
13096
|
+
call-bind: "npm:^1.0.7"
|
|
13097
|
+
has-tostringtag: "npm:^1.0.2"
|
|
13098
|
+
checksum: 10c0/2781bce7bfdb00276d000a7aafccad8038a7b5cb06abbfc638417a705dd41bca259977af78731dc8a87f170783c94c9f684bc086fc4856b623c1fd942c509b6b
|
|
13093
13099
|
languageName: node
|
|
13094
13100
|
linkType: hard
|
|
13095
13101
|
|
|
13096
|
-
"is-symbol@npm:^1.0.3, is-symbol@npm:^1.0.4":
|
|
13097
|
-
version: 1.0
|
|
13098
|
-
resolution: "is-symbol@npm:1.0
|
|
13102
|
+
"is-symbol@npm:^1.0.3, is-symbol@npm:^1.0.4, is-symbol@npm:^1.1.0":
|
|
13103
|
+
version: 1.1.0
|
|
13104
|
+
resolution: "is-symbol@npm:1.1.0"
|
|
13099
13105
|
dependencies:
|
|
13100
|
-
|
|
13101
|
-
|
|
13106
|
+
call-bind: "npm:^1.0.7"
|
|
13107
|
+
has-symbols: "npm:^1.0.3"
|
|
13108
|
+
safe-regex-test: "npm:^1.0.3"
|
|
13109
|
+
checksum: 10c0/57f63c22e00cc4990680e12035b91ed158de1030924175123b13b2188fb2d10c9a80da9a923dd6ff9e9b084afd3d2e8d7d3ad711fe971e7fb74a44644751cd52
|
|
13102
13110
|
languageName: node
|
|
13103
13111
|
linkType: hard
|
|
13104
13112
|
|
|
@@ -13695,9 +13703,9 @@ __metadata:
|
|
|
13695
13703
|
linkType: hard
|
|
13696
13704
|
|
|
13697
13705
|
"libphonenumber-js@npm:^1.9.11":
|
|
13698
|
-
version: 1.11.
|
|
13699
|
-
resolution: "libphonenumber-js@npm:1.11.
|
|
13700
|
-
checksum: 10c0/
|
|
13706
|
+
version: 1.11.16
|
|
13707
|
+
resolution: "libphonenumber-js@npm:1.11.16"
|
|
13708
|
+
checksum: 10c0/0f09b07202c5feac169973b6c10cb2c0fbcf624a676879ecbcab6953f9df08eacb56f26f30ee63a2e6e1dc029f67898a54d5b4533621add3d75e8ab8baccd6d9
|
|
13701
13709
|
languageName: node
|
|
13702
13710
|
linkType: hard
|
|
13703
13711
|
|
|
@@ -13716,9 +13724,9 @@ __metadata:
|
|
|
13716
13724
|
linkType: hard
|
|
13717
13725
|
|
|
13718
13726
|
"lilconfig@npm:^3.0.0, lilconfig@npm:^3.1.2":
|
|
13719
|
-
version: 3.1.
|
|
13720
|
-
resolution: "lilconfig@npm:3.1.
|
|
13721
|
-
checksum: 10c0/
|
|
13727
|
+
version: 3.1.3
|
|
13728
|
+
resolution: "lilconfig@npm:3.1.3"
|
|
13729
|
+
checksum: 10c0/f5604e7240c5c275743561442fbc5abf2a84ad94da0f5adc71d25e31fa8483048de3dcedcb7a44112a942fed305fd75841cdf6c9681c7f640c63f1049e9a5dcc
|
|
13722
13730
|
languageName: node
|
|
13723
13731
|
linkType: hard
|
|
13724
13732
|
|
|
@@ -14944,8 +14952,8 @@ __metadata:
|
|
|
14944
14952
|
linkType: hard
|
|
14945
14953
|
|
|
14946
14954
|
"node-gyp@npm:latest":
|
|
14947
|
-
version: 10.
|
|
14948
|
-
resolution: "node-gyp@npm:10.
|
|
14955
|
+
version: 10.3.1
|
|
14956
|
+
resolution: "node-gyp@npm:10.3.1"
|
|
14949
14957
|
dependencies:
|
|
14950
14958
|
env-paths: "npm:^2.2.0"
|
|
14951
14959
|
exponential-backoff: "npm:^3.1.1"
|
|
@@ -14959,7 +14967,7 @@ __metadata:
|
|
|
14959
14967
|
which: "npm:^4.0.0"
|
|
14960
14968
|
bin:
|
|
14961
14969
|
node-gyp: bin/node-gyp.js
|
|
14962
|
-
checksum: 10c0/
|
|
14970
|
+
checksum: 10c0/87c3b50e1f6f5256b5d2879a8c064eefa53ed444bad2a20870be43bc189db7cbffe22c30af056046c6d904181d73881b1726fd391d2f6f79f89b991019f195ea
|
|
14963
14971
|
languageName: node
|
|
14964
14972
|
linkType: hard
|
|
14965
14973
|
|
|
@@ -18755,27 +18763,27 @@ __metadata:
|
|
|
18755
18763
|
linkType: hard
|
|
18756
18764
|
|
|
18757
18765
|
"rollup@npm:^4.13.0":
|
|
18758
|
-
version: 4.
|
|
18759
|
-
resolution: "rollup@npm:4.
|
|
18760
|
-
dependencies:
|
|
18761
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.
|
|
18762
|
-
"@rollup/rollup-android-arm64": "npm:4.
|
|
18763
|
-
"@rollup/rollup-darwin-arm64": "npm:4.
|
|
18764
|
-
"@rollup/rollup-darwin-x64": "npm:4.
|
|
18765
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.
|
|
18766
|
-
"@rollup/rollup-freebsd-x64": "npm:4.
|
|
18767
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.
|
|
18768
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.
|
|
18769
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.
|
|
18770
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.
|
|
18771
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.
|
|
18772
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.
|
|
18773
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.
|
|
18774
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.
|
|
18775
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.
|
|
18776
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.
|
|
18777
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.
|
|
18778
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.
|
|
18766
|
+
version: 4.28.0
|
|
18767
|
+
resolution: "rollup@npm:4.28.0"
|
|
18768
|
+
dependencies:
|
|
18769
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.28.0"
|
|
18770
|
+
"@rollup/rollup-android-arm64": "npm:4.28.0"
|
|
18771
|
+
"@rollup/rollup-darwin-arm64": "npm:4.28.0"
|
|
18772
|
+
"@rollup/rollup-darwin-x64": "npm:4.28.0"
|
|
18773
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.28.0"
|
|
18774
|
+
"@rollup/rollup-freebsd-x64": "npm:4.28.0"
|
|
18775
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.28.0"
|
|
18776
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.28.0"
|
|
18777
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.28.0"
|
|
18778
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.28.0"
|
|
18779
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.28.0"
|
|
18780
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.28.0"
|
|
18781
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.28.0"
|
|
18782
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.28.0"
|
|
18783
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.28.0"
|
|
18784
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.28.0"
|
|
18785
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.28.0"
|
|
18786
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.28.0"
|
|
18779
18787
|
"@types/estree": "npm:1.0.6"
|
|
18780
18788
|
fsevents: "npm:~2.3.2"
|
|
18781
18789
|
dependenciesMeta:
|
|
@@ -18819,7 +18827,7 @@ __metadata:
|
|
|
18819
18827
|
optional: true
|
|
18820
18828
|
bin:
|
|
18821
18829
|
rollup: dist/bin/rollup
|
|
18822
|
-
checksum: 10c0/
|
|
18830
|
+
checksum: 10c0/98d3bc2b784eff71b997cfc2be97c00e2f100ee38adc2f8ada7b9b9ecbbc96937f667a6a247a45491807b3f2adef3c73d1f5df40d71771bff0c2d8c0cca9b369
|
|
18823
18831
|
languageName: node
|
|
18824
18832
|
linkType: hard
|
|
18825
18833
|
|
|
@@ -21711,15 +21719,15 @@ __metadata:
|
|
|
21711
21719
|
linkType: hard
|
|
21712
21720
|
|
|
21713
21721
|
"which-boxed-primitive@npm:^1.0.2":
|
|
21714
|
-
version: 1.0
|
|
21715
|
-
resolution: "which-boxed-primitive@npm:1.0
|
|
21716
|
-
dependencies:
|
|
21717
|
-
is-bigint: "npm:^1.0
|
|
21718
|
-
is-boolean-object: "npm:^1.
|
|
21719
|
-
is-number-object: "npm:^1.0
|
|
21720
|
-
is-string: "npm:^1.0
|
|
21721
|
-
is-symbol: "npm:^1.0
|
|
21722
|
-
checksum: 10c0/
|
|
21722
|
+
version: 1.1.0
|
|
21723
|
+
resolution: "which-boxed-primitive@npm:1.1.0"
|
|
21724
|
+
dependencies:
|
|
21725
|
+
is-bigint: "npm:^1.1.0"
|
|
21726
|
+
is-boolean-object: "npm:^1.2.0"
|
|
21727
|
+
is-number-object: "npm:^1.1.0"
|
|
21728
|
+
is-string: "npm:^1.1.0"
|
|
21729
|
+
is-symbol: "npm:^1.1.0"
|
|
21730
|
+
checksum: 10c0/ee4e4bcf0026aeeda1b28d005ddfcf1d8d6025d1cf04b2271f8dbbdd13df9357ba7da657ec2d886520bccf8d93d9535454e44f38f201c5461a2fe7c838b455de
|
|
21723
21731
|
languageName: node
|
|
21724
21732
|
linkType: hard
|
|
21725
21733
|
|