@licklist/design 0.71.5-dev.2 → 0.71.5-dev.4
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.d.ts.map +1 -1
- package/dist/events/event-statistic-modal/utils/index.js +31 -18
- package/dist/iframe/page/components/PageBody/constants.d.ts +1 -0
- package/dist/iframe/page/components/PageBody/constants.d.ts.map +1 -1
- package/dist/iframe/page/components/PageBody/constants.js +2 -1
- package/dist/iframe/page/components/PageBody/hooks/useResizePageBody.d.ts.map +1 -1
- package/dist/iframe/page/components/PageBody/hooks/useResizePageBody.js +4 -1
- package/package.json +2 -2
- package/src/events/event-statistic-modal/utils/index.ts +67 -42
- package/src/iframe/page/components/PageBody/constants.ts +1 -0
- package/src/iframe/page/components/PageBody/hooks/useResizePageBody.ts +9 -2
- package/yarn.lock +95 -95
|
@@ -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,sBA8I/B,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DateTime } from 'luxon';
|
|
2
2
|
import { DATE_FORMAT, DATE_TIME_FULL_FORMAT } from '@licklist/core/dist/Config';
|
|
3
|
-
import {
|
|
3
|
+
import { max } from 'lodash';
|
|
4
4
|
|
|
5
5
|
function _array_like_to_array(arr, len) {
|
|
6
6
|
if (len == null || len > arr.length) len = arr.length;
|
|
@@ -45,19 +45,19 @@ var convertEventStatisticToTableData = function(date, eventStatistic) {
|
|
|
45
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
|
-
var maxTotalQuantity = values(eventStatistic === null || eventStatistic === void 0 ? void 0 : eventStatistic.productCategorySummary).flat().flatMap(function(categorySummary) {
|
|
49
|
-
return categorySummary.productsSummary;
|
|
50
|
-
}).reduce(function(acc, productSummary) {
|
|
51
|
-
return productSummary.totalQuantity > acc ? productSummary.totalQuantity : acc;
|
|
52
|
-
}, 0);
|
|
53
48
|
summaryDays.map(function(day) {
|
|
54
49
|
return eventStatistic === null || eventStatistic === void 0 ? void 0 : eventStatistic.productCategorySummary[day];
|
|
55
50
|
}).flat().sort(function(prev, next) {
|
|
56
51
|
return prev.categoryName === next.categoryName ? 0 : prev.categoryName > next.categoryName ? 1 : -1;
|
|
57
|
-
}).forEach(function(param) {
|
|
52
|
+
}).forEach(function(param, _, selfCategory) {
|
|
58
53
|
var totalPerCategory = param.totalPerCategory, _param_productsSummary = param.productsSummary, productsSummary = _param_productsSummary === void 0 ? [] : _param_productsSummary, categoryName = param.categoryName, eventId = param.eventId;
|
|
59
54
|
var quantity = 0;
|
|
60
55
|
totalAmount += totalPerCategory || 0;
|
|
56
|
+
var allProductSummaryAtCategory = selfCategory.filter(function(category) {
|
|
57
|
+
return category.categoryName === categoryName;
|
|
58
|
+
}).flatMap(function(categorySummary) {
|
|
59
|
+
return categorySummary.productsSummary;
|
|
60
|
+
});
|
|
61
61
|
if (!summaryMap.has("".concat(categoryName))) {
|
|
62
62
|
summaryMap.set("".concat(categoryName), {
|
|
63
63
|
name: categoryName,
|
|
@@ -68,24 +68,37 @@ var convertEventStatisticToTableData = function(date, eventStatistic) {
|
|
|
68
68
|
total: TRANSLATION_KEYS.total
|
|
69
69
|
});
|
|
70
70
|
}
|
|
71
|
-
productsSummary === null || productsSummary === void 0 ? void 0 : productsSummary.forEach(function(
|
|
72
|
-
|
|
73
|
-
quantity += productsSold;
|
|
71
|
+
productsSummary === null || productsSummary === void 0 ? void 0 : productsSummary.forEach(function(productSummary, productIndex) {
|
|
72
|
+
quantity += productSummary.productsSold;
|
|
74
73
|
var _summaryMap_get;
|
|
75
|
-
var existingProduct = (_summaryMap_get = summaryMap.get("".concat(categoryName, ".").concat(name))) !== null && _summaryMap_get !== void 0 ? _summaryMap_get : {
|
|
74
|
+
var existingProduct = (_summaryMap_get = summaryMap.get("".concat(categoryName, ".").concat(productSummary.name))) !== null && _summaryMap_get !== void 0 ? _summaryMap_get : {
|
|
76
75
|
metadata: {
|
|
77
76
|
_productsSold: 0,
|
|
78
77
|
_total: 0
|
|
79
78
|
}
|
|
80
79
|
};
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
80
|
+
var overrides = allProductSummaryAtCategory.filter(function(summary) {
|
|
81
|
+
return summary.originalProductId === productSummary.id;
|
|
82
|
+
});
|
|
83
|
+
var highestOverrideTotalQuantity = overrides.reduce(function(acc, override) {
|
|
84
|
+
if (!override.totalQuantity) return acc;
|
|
85
|
+
if (override.totalQuantity > (acc || 0)) {
|
|
86
|
+
return override.totalQuantity;
|
|
87
|
+
}
|
|
88
|
+
return acc;
|
|
89
|
+
}, null);
|
|
90
|
+
var totalQuantity = (productSummary.totalQuantity || highestOverrideTotalQuantity) && max([
|
|
91
|
+
productSummary.totalQuantity,
|
|
92
|
+
highestOverrideTotalQuantity
|
|
93
|
+
]);
|
|
94
|
+
summaryMap.set("".concat(categoryName, ".").concat(productSummary.name), {
|
|
95
|
+
name: productSummary.name,
|
|
96
|
+
key: "".concat(eventId, ".").concat(categoryName).concat(productIndex).concat(productSummary.name),
|
|
97
|
+
quantity: totalQuantity ? "".concat(existingProduct.metadata._productsSold + productSummary.productsSold, " / ").concat(totalQuantity) : String(existingProduct.metadata._productsSold + productSummary.productsSold),
|
|
98
|
+
total: String(existingProduct.metadata._total + productSummary.total),
|
|
86
99
|
metadata: {
|
|
87
|
-
_productsSold: existingProduct.metadata._productsSold + productsSold,
|
|
88
|
-
_total: existingProduct.metadata._total + total
|
|
100
|
+
_productsSold: existingProduct.metadata._productsSold + productSummary.productsSold,
|
|
101
|
+
_total: existingProduct.metadata._total + productSummary.total
|
|
89
102
|
}
|
|
90
103
|
});
|
|
91
104
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../src/iframe/page/components/PageBody/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,MAAM,CAAA;AAC5B,eAAO,MAAM,yBAAyB,8BAA8B,CAAA;AAEpE,eAAO,MAAM,qBAAqB,QAAU,CAAA;AAE5C,eAAO,MAAM,2BAA2B,KAAK,CAAA;AAG7C,eAAO,MAAM,0BAA0B,MAAM,CAAA;AAI7C,eAAO,MAAM,0CAA0C,KAAK,CAAA;AAE5D,eAAO,MAAM,kBAAkB,+BAA+B,CAAA;AAC9D,eAAO,MAAM,oBAAoB,yBAAyB,CAAA;AAC1D,eAAO,MAAM,oBAAoB,iCAAiC,CAAA;AAClE,eAAO,MAAM,qBAAqB,0BAA0B,CAAA;AAE5D,eAAO,MAAM,mBAAmB,qBAAqB,CAAA;AACrD,eAAO,MAAM,4BAA4B,oCAAoC,CAAA;AAC7E,eAAO,MAAM,0BAA0B,kCAAkC,CAAA;AACzE,eAAO,MAAM,uBAAuB,IAAI,CAAA;AACxC,eAAO,MAAM,eAAe,KAAK,CAAA;AAEjC,eAAO,MAAM,4BAA4B,8BAA8B,CAAA;AACvE,eAAO,MAAM,4BAA4B,4BAA4B,CAAA;AACrE,eAAO,MAAM,qBAAqB,0BAA0B,CAAA;AAE5D,eAAO,MAAM,gCAAgC,MAAM,CAAA"}
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../src/iframe/page/components/PageBody/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,MAAM,CAAA;AAC5B,eAAO,MAAM,YAAY,MAAM,CAAA;AAC/B,eAAO,MAAM,yBAAyB,8BAA8B,CAAA;AAEpE,eAAO,MAAM,qBAAqB,QAAU,CAAA;AAE5C,eAAO,MAAM,2BAA2B,KAAK,CAAA;AAG7C,eAAO,MAAM,0BAA0B,MAAM,CAAA;AAI7C,eAAO,MAAM,0CAA0C,KAAK,CAAA;AAE5D,eAAO,MAAM,kBAAkB,+BAA+B,CAAA;AAC9D,eAAO,MAAM,oBAAoB,yBAAyB,CAAA;AAC1D,eAAO,MAAM,oBAAoB,iCAAiC,CAAA;AAClE,eAAO,MAAM,qBAAqB,0BAA0B,CAAA;AAE5D,eAAO,MAAM,mBAAmB,qBAAqB,CAAA;AACrD,eAAO,MAAM,4BAA4B,oCAAoC,CAAA;AAC7E,eAAO,MAAM,0BAA0B,kCAAkC,CAAA;AACzE,eAAO,MAAM,uBAAuB,IAAI,CAAA;AACxC,eAAO,MAAM,eAAe,KAAK,CAAA;AAEjC,eAAO,MAAM,4BAA4B,8BAA8B,CAAA;AACvE,eAAO,MAAM,4BAA4B,4BAA4B,CAAA;AACrE,eAAO,MAAM,qBAAqB,0BAA0B,CAAA;AAE5D,eAAO,MAAM,gCAAgC,MAAM,CAAA"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
var TAB_WIDTH = 768;
|
|
2
|
+
var MOBILE_WIDTH = 480;
|
|
2
3
|
var RIGHT_BLOCK_RESIZED_EVENT = 'RIGHT_BLOCK_RESIZED_EVENT';
|
|
3
4
|
// The sum of paddings in PageBody + header for first block
|
|
4
5
|
var STANDARD_BODY_PADDING = 48 + 49;
|
|
@@ -20,4 +21,4 @@ var PAGE_CALENDAR_SELECT_WRAPPER = 'calendar-select-wrapper';
|
|
|
20
21
|
var PAGE_BODY_WITH_SCROLL = 'page-body-with-scroll';
|
|
21
22
|
var PAGE_LEFT_BLOCK_MAP_DEFAULT_SIZE = 300;
|
|
22
23
|
|
|
23
|
-
export { COLLAPSE_MARGIN, DEFAULT_RIGHT_BLOCK_HEIGHT, PAGE_BODY_WITH_SCROLL, PAGE_CALENDAR_SELECT_WRAPPER, PAGE_LEFT_BLOCK_CONTAINER_ID, PAGE_LEFT_BLOCK_MAP_DEFAULT_SIZE, PAGE_RIGHT_BLOCK_BOTTOM_ID, PAGE_RIGHT_BLOCK_CHILDREN_ID, PAGE_RIGHT_BLOCK_ID, RIGHT_BLOCK_COLLAPSE, RIGHT_BLOCK_COLLAPSED, RIGHT_BLOCK_EXPAND, RIGHT_BLOCK_EXPANDED, RIGHT_BLOCK_RESIZED_EVENT, SEPARATOR_DEFAULT_WIDTH, STANDARD_BODY_PADDING, STANDARD_HEADER_FOOTER_SIZE, TAB_WIDTH };
|
|
24
|
+
export { COLLAPSE_MARGIN, DEFAULT_RIGHT_BLOCK_HEIGHT, MOBILE_WIDTH, PAGE_BODY_WITH_SCROLL, PAGE_CALENDAR_SELECT_WRAPPER, PAGE_LEFT_BLOCK_CONTAINER_ID, PAGE_LEFT_BLOCK_MAP_DEFAULT_SIZE, PAGE_RIGHT_BLOCK_BOTTOM_ID, PAGE_RIGHT_BLOCK_CHILDREN_ID, PAGE_RIGHT_BLOCK_ID, RIGHT_BLOCK_COLLAPSE, RIGHT_BLOCK_COLLAPSED, RIGHT_BLOCK_EXPAND, RIGHT_BLOCK_EXPANDED, RIGHT_BLOCK_RESIZED_EVENT, SEPARATOR_DEFAULT_WIDTH, STANDARD_BODY_PADDING, STANDARD_HEADER_FOOTER_SIZE, TAB_WIDTH };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useResizePageBody.d.ts","sourceRoot":"","sources":["../../../../../../src/iframe/page/components/PageBody/hooks/useResizePageBody.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useResizePageBody.d.ts","sourceRoot":"","sources":["../../../../../../src/iframe/page/components/PageBody/hooks/useResizePageBody.ts"],"names":[],"mappings":"AAuBA,eAAO,MAAM,iBAAiB;;;;;;;;;;;;eAMnB,MAAM;gBACL,MAAM;;CAiPjB,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useState, useRef, useMemo, useEffect } from 'react';
|
|
2
2
|
import { useWindowDimensions } from '@licklist/plugins/dist/hooks/Media/useWindowDimensions';
|
|
3
|
-
import { DEFAULT_RIGHT_BLOCK_HEIGHT, PAGE_LEFT_BLOCK_MAP_DEFAULT_SIZE, TAB_WIDTH, PAGE_CALENDAR_SELECT_WRAPPER, PAGE_BODY_WITH_SCROLL, STANDARD_BODY_PADDING, STANDARD_HEADER_FOOTER_SIZE, PAGE_LEFT_BLOCK_CONTAINER_ID, PAGE_RIGHT_BLOCK_BOTTOM_ID, SEPARATOR_DEFAULT_WIDTH, COLLAPSE_MARGIN, RIGHT_BLOCK_RESIZED_EVENT, RIGHT_BLOCK_EXPAND, RIGHT_BLOCK_EXPANDED, RIGHT_BLOCK_COLLAPSE, RIGHT_BLOCK_COLLAPSED } from '../constants.js';
|
|
3
|
+
import { DEFAULT_RIGHT_BLOCK_HEIGHT, PAGE_LEFT_BLOCK_MAP_DEFAULT_SIZE, TAB_WIDTH, PAGE_CALENDAR_SELECT_WRAPPER, PAGE_BODY_WITH_SCROLL, MOBILE_WIDTH, STANDARD_BODY_PADDING, STANDARD_HEADER_FOOTER_SIZE, PAGE_LEFT_BLOCK_CONTAINER_ID, PAGE_RIGHT_BLOCK_BOTTOM_ID, SEPARATOR_DEFAULT_WIDTH, COLLAPSE_MARGIN, RIGHT_BLOCK_RESIZED_EVENT, RIGHT_BLOCK_EXPAND, RIGHT_BLOCK_EXPANDED, RIGHT_BLOCK_COLLAPSE, RIGHT_BLOCK_COLLAPSED } from '../constants.js';
|
|
4
4
|
|
|
5
5
|
function _array_like_to_array(arr, len) {
|
|
6
6
|
if (len == null || len > arr.length) len = arr.length;
|
|
@@ -73,6 +73,9 @@ var useResizePageBody = function() {
|
|
|
73
73
|
behavior: 'smooth'
|
|
74
74
|
});
|
|
75
75
|
}
|
|
76
|
+
if (width <= MOBILE_WIDTH) return {
|
|
77
|
+
maxHeight: height - STANDARD_BODY_PADDING - rightBlockHeight - CALENDAR_WRAPPER_HEIGHT
|
|
78
|
+
};
|
|
76
79
|
return {
|
|
77
80
|
maxHeight: height - STANDARD_BODY_PADDING - rightBlockHeight - STANDARD_HEADER_FOOTER_SIZE - CALENDAR_WRAPPER_HEIGHT
|
|
78
81
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@licklist/design",
|
|
3
|
-
"version": "0.71.5-dev.
|
|
3
|
+
"version": "0.71.5-dev.4",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
|
|
@@ -208,4 +208,4 @@
|
|
|
208
208
|
"yarn": "4.4.0"
|
|
209
209
|
},
|
|
210
210
|
"stableVersion": "0.71.4-dev.1"
|
|
211
|
-
}
|
|
211
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventStatistic } from '@licklist/core/dist/DataMapper/Provider/EventStatisticDataMapper'
|
|
2
2
|
import { DateTime } from 'luxon'
|
|
3
3
|
import { DATE_FORMAT, DATE_TIME_FULL_FORMAT } from '@licklist/core/dist/Config'
|
|
4
|
-
import {
|
|
4
|
+
import { max } from 'lodash'
|
|
5
5
|
|
|
6
6
|
export const TRANSLATION_KEYS = {
|
|
7
7
|
shortQuantity: 'shortQuantity',
|
|
@@ -47,15 +47,6 @@ export const convertEventStatisticToTableData = (
|
|
|
47
47
|
|
|
48
48
|
const summaryMap = new Map<string, TableDataRecord>()
|
|
49
49
|
|
|
50
|
-
const maxTotalQuantity = values(eventStatistic?.productCategorySummary)
|
|
51
|
-
.flat()
|
|
52
|
-
.flatMap((categorySummary) => categorySummary.productsSummary)
|
|
53
|
-
.reduce(
|
|
54
|
-
(acc, productSummary) =>
|
|
55
|
-
productSummary.totalQuantity > acc ? productSummary.totalQuantity : acc,
|
|
56
|
-
0,
|
|
57
|
-
)
|
|
58
|
-
|
|
59
50
|
summaryDays
|
|
60
51
|
.map((day) => eventStatistic?.productCategorySummary[day])
|
|
61
52
|
.flat()
|
|
@@ -67,11 +58,18 @@ export const convertEventStatisticToTableData = (
|
|
|
67
58
|
: -1,
|
|
68
59
|
)
|
|
69
60
|
.forEach(
|
|
70
|
-
(
|
|
61
|
+
(
|
|
62
|
+
{ totalPerCategory, productsSummary = [], categoryName, eventId },
|
|
63
|
+
_,
|
|
64
|
+
selfCategory,
|
|
65
|
+
) => {
|
|
71
66
|
let quantity = 0
|
|
72
|
-
|
|
73
67
|
totalAmount += totalPerCategory || 0
|
|
74
68
|
|
|
69
|
+
const allProductSummaryAtCategory = selfCategory
|
|
70
|
+
.filter((category) => category.categoryName === categoryName)
|
|
71
|
+
.flatMap((categorySummary) => categorySummary.productsSummary)
|
|
72
|
+
|
|
75
73
|
if (!summaryMap.has(`${categoryName}`)) {
|
|
76
74
|
summaryMap.set(`${categoryName}`, {
|
|
77
75
|
name: categoryName,
|
|
@@ -83,36 +81,63 @@ export const convertEventStatisticToTableData = (
|
|
|
83
81
|
})
|
|
84
82
|
}
|
|
85
83
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
84
|
+
|
|
85
|
+
productsSummary?.forEach((productSummary, productIndex) => {
|
|
86
|
+
quantity += productSummary.productsSold
|
|
87
|
+
|
|
88
|
+
const existingProduct = summaryMap.get(
|
|
89
|
+
`${categoryName}.${productSummary.name}`,
|
|
90
|
+
) ?? {
|
|
91
|
+
metadata: {
|
|
92
|
+
_productsSold: 0,
|
|
93
|
+
_total: 0,
|
|
94
|
+
},
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
const overrides = allProductSummaryAtCategory.filter(
|
|
98
|
+
(summary) => summary.originalProductId === productSummary.id,
|
|
99
|
+
)
|
|
100
|
+
|
|
101
|
+
const highestOverrideTotalQuantity = overrides.reduce<number | null>(
|
|
102
|
+
(acc, override) => {
|
|
103
|
+
if (!override.totalQuantity) return acc
|
|
104
|
+
|
|
105
|
+
if (override.totalQuantity > (acc || 0)) {
|
|
106
|
+
return override.totalQuantity
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
return acc
|
|
110
|
+
},
|
|
111
|
+
null,
|
|
112
|
+
)
|
|
113
|
+
|
|
114
|
+
const totalQuantity =
|
|
115
|
+
(productSummary.totalQuantity || highestOverrideTotalQuantity) &&
|
|
116
|
+
max([productSummary.totalQuantity, highestOverrideTotalQuantity])
|
|
117
|
+
|
|
118
|
+
summaryMap.set(`${categoryName}.${productSummary.name}`, {
|
|
119
|
+
name: productSummary.name,
|
|
120
|
+
key: `${eventId}.${categoryName}${productIndex}${productSummary.name}`,
|
|
121
|
+
quantity: totalQuantity
|
|
122
|
+
? `${
|
|
123
|
+
existingProduct.metadata._productsSold +
|
|
124
|
+
productSummary.productsSold
|
|
125
|
+
} / ${totalQuantity}`
|
|
126
|
+
: String(
|
|
127
|
+
existingProduct.metadata._productsSold +
|
|
128
|
+
productSummary.productsSold,
|
|
129
|
+
),
|
|
130
|
+
total: String(
|
|
131
|
+
existingProduct.metadata._total + productSummary.total,
|
|
132
|
+
),
|
|
133
|
+
metadata: {
|
|
134
|
+
_productsSold:
|
|
135
|
+
existingProduct.metadata._productsSold +
|
|
136
|
+
productSummary.productsSold,
|
|
137
|
+
_total: existingProduct.metadata._total + productSummary.total,
|
|
138
|
+
},
|
|
139
|
+
})
|
|
140
|
+
})
|
|
116
141
|
|
|
117
142
|
const prevTotalPerCategory = summaryMap.get(
|
|
118
143
|
`${categoryName}.${TRANSLATION_KEYS.totalPerCategory}`,
|
|
@@ -2,6 +2,7 @@ import { useEffect, useMemo, useState, useRef } from 'react'
|
|
|
2
2
|
import { useWindowDimensions } from '@licklist/plugins/dist/hooks/Media/useWindowDimensions'
|
|
3
3
|
import {
|
|
4
4
|
TAB_WIDTH,
|
|
5
|
+
MOBILE_WIDTH,
|
|
5
6
|
STANDARD_BODY_PADDING,
|
|
6
7
|
STANDARD_HEADER_FOOTER_SIZE,
|
|
7
8
|
RIGHT_BLOCK_RESIZED_EVENT,
|
|
@@ -60,6 +61,14 @@ export const useResizePageBody = () => {
|
|
|
60
61
|
})
|
|
61
62
|
}
|
|
62
63
|
|
|
64
|
+
if (width <= MOBILE_WIDTH) return {
|
|
65
|
+
maxHeight:
|
|
66
|
+
height -
|
|
67
|
+
STANDARD_BODY_PADDING -
|
|
68
|
+
rightBlockHeight -
|
|
69
|
+
CALENDAR_WRAPPER_HEIGHT,
|
|
70
|
+
}
|
|
71
|
+
|
|
63
72
|
return {
|
|
64
73
|
maxHeight:
|
|
65
74
|
height -
|
|
@@ -87,7 +96,6 @@ export const useResizePageBody = () => {
|
|
|
87
96
|
|
|
88
97
|
if (width >= TAB_WIDTH && !isContainerSizeApplied) {
|
|
89
98
|
isContainerSizeApplied.current = true
|
|
90
|
-
|
|
91
99
|
setLeftBlockContainerSizes({
|
|
92
100
|
width: leftBlockContainer.clientWidth,
|
|
93
101
|
height: leftBlockContainer.clientHeight,
|
|
@@ -117,7 +125,6 @@ export const useResizePageBody = () => {
|
|
|
117
125
|
) {
|
|
118
126
|
minimalMapSize.current = calculatedMinimalMapSize
|
|
119
127
|
}
|
|
120
|
-
|
|
121
128
|
return {
|
|
122
129
|
width: leftBlockContainer.clientWidth,
|
|
123
130
|
height: minimalMapSize.current,
|
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.27.
|
|
3292
|
-
version: 4.27.
|
|
3293
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.27.
|
|
3291
|
+
"@rollup/rollup-android-arm-eabi@npm:4.27.3":
|
|
3292
|
+
version: 4.27.3
|
|
3293
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.27.3"
|
|
3294
3294
|
conditions: os=android & cpu=arm
|
|
3295
3295
|
languageName: node
|
|
3296
3296
|
linkType: hard
|
|
3297
3297
|
|
|
3298
|
-
"@rollup/rollup-android-arm64@npm:4.27.
|
|
3299
|
-
version: 4.27.
|
|
3300
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.27.
|
|
3298
|
+
"@rollup/rollup-android-arm64@npm:4.27.3":
|
|
3299
|
+
version: 4.27.3
|
|
3300
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.27.3"
|
|
3301
3301
|
conditions: os=android & cpu=arm64
|
|
3302
3302
|
languageName: node
|
|
3303
3303
|
linkType: hard
|
|
3304
3304
|
|
|
3305
|
-
"@rollup/rollup-darwin-arm64@npm:4.27.
|
|
3306
|
-
version: 4.27.
|
|
3307
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.27.
|
|
3305
|
+
"@rollup/rollup-darwin-arm64@npm:4.27.3":
|
|
3306
|
+
version: 4.27.3
|
|
3307
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.27.3"
|
|
3308
3308
|
conditions: os=darwin & cpu=arm64
|
|
3309
3309
|
languageName: node
|
|
3310
3310
|
linkType: hard
|
|
3311
3311
|
|
|
3312
|
-
"@rollup/rollup-darwin-x64@npm:4.27.
|
|
3313
|
-
version: 4.27.
|
|
3314
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.27.
|
|
3312
|
+
"@rollup/rollup-darwin-x64@npm:4.27.3":
|
|
3313
|
+
version: 4.27.3
|
|
3314
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.27.3"
|
|
3315
3315
|
conditions: os=darwin & cpu=x64
|
|
3316
3316
|
languageName: node
|
|
3317
3317
|
linkType: hard
|
|
3318
3318
|
|
|
3319
|
-
"@rollup/rollup-freebsd-arm64@npm:4.27.
|
|
3320
|
-
version: 4.27.
|
|
3321
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.27.
|
|
3319
|
+
"@rollup/rollup-freebsd-arm64@npm:4.27.3":
|
|
3320
|
+
version: 4.27.3
|
|
3321
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.27.3"
|
|
3322
3322
|
conditions: os=freebsd & cpu=arm64
|
|
3323
3323
|
languageName: node
|
|
3324
3324
|
linkType: hard
|
|
3325
3325
|
|
|
3326
|
-
"@rollup/rollup-freebsd-x64@npm:4.27.
|
|
3327
|
-
version: 4.27.
|
|
3328
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.27.
|
|
3326
|
+
"@rollup/rollup-freebsd-x64@npm:4.27.3":
|
|
3327
|
+
version: 4.27.3
|
|
3328
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.27.3"
|
|
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.27.
|
|
3334
|
-
version: 4.27.
|
|
3335
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.27.
|
|
3333
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.27.3":
|
|
3334
|
+
version: 4.27.3
|
|
3335
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.27.3"
|
|
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.27.
|
|
3341
|
-
version: 4.27.
|
|
3342
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.27.
|
|
3340
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.27.3":
|
|
3341
|
+
version: 4.27.3
|
|
3342
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.27.3"
|
|
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.27.
|
|
3348
|
-
version: 4.27.
|
|
3349
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.27.
|
|
3347
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.27.3":
|
|
3348
|
+
version: 4.27.3
|
|
3349
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.27.3"
|
|
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.27.
|
|
3355
|
-
version: 4.27.
|
|
3356
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.27.
|
|
3354
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.27.3":
|
|
3355
|
+
version: 4.27.3
|
|
3356
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.27.3"
|
|
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.27.
|
|
3362
|
-
version: 4.27.
|
|
3363
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.
|
|
3361
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.3":
|
|
3362
|
+
version: 4.27.3
|
|
3363
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.3"
|
|
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.27.
|
|
3369
|
-
version: 4.27.
|
|
3370
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.27.
|
|
3368
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.27.3":
|
|
3369
|
+
version: 4.27.3
|
|
3370
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.27.3"
|
|
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.27.
|
|
3376
|
-
version: 4.27.
|
|
3377
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.27.
|
|
3375
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.27.3":
|
|
3376
|
+
version: 4.27.3
|
|
3377
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.27.3"
|
|
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.27.
|
|
3383
|
-
version: 4.27.
|
|
3384
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.27.
|
|
3382
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.27.3":
|
|
3383
|
+
version: 4.27.3
|
|
3384
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.27.3"
|
|
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.27.
|
|
3390
|
-
version: 4.27.
|
|
3391
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.27.
|
|
3389
|
+
"@rollup/rollup-linux-x64-musl@npm:4.27.3":
|
|
3390
|
+
version: 4.27.3
|
|
3391
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.27.3"
|
|
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.27.
|
|
3397
|
-
version: 4.27.
|
|
3398
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.27.
|
|
3396
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.27.3":
|
|
3397
|
+
version: 4.27.3
|
|
3398
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.27.3"
|
|
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.27.
|
|
3404
|
-
version: 4.27.
|
|
3405
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.27.
|
|
3403
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.27.3":
|
|
3404
|
+
version: 4.27.3
|
|
3405
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.27.3"
|
|
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.27.
|
|
3411
|
-
version: 4.27.
|
|
3412
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.27.
|
|
3410
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.27.3":
|
|
3411
|
+
version: 4.27.3
|
|
3412
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.27.3"
|
|
3413
3413
|
conditions: os=win32 & cpu=x64
|
|
3414
3414
|
languageName: node
|
|
3415
3415
|
linkType: hard
|
|
@@ -8870,15 +8870,15 @@ __metadata:
|
|
|
8870
8870
|
linkType: hard
|
|
8871
8871
|
|
|
8872
8872
|
"cross-spawn@npm:^6.0.0":
|
|
8873
|
-
version: 6.0.
|
|
8874
|
-
resolution: "cross-spawn@npm:6.0.
|
|
8873
|
+
version: 6.0.6
|
|
8874
|
+
resolution: "cross-spawn@npm:6.0.6"
|
|
8875
8875
|
dependencies:
|
|
8876
8876
|
nice-try: "npm:^1.0.4"
|
|
8877
8877
|
path-key: "npm:^2.0.1"
|
|
8878
8878
|
semver: "npm:^5.5.0"
|
|
8879
8879
|
shebang-command: "npm:^1.2.0"
|
|
8880
8880
|
which: "npm:^1.2.9"
|
|
8881
|
-
checksum: 10c0/
|
|
8881
|
+
checksum: 10c0/bf61fb890e8635102ea9bce050515cf915ff6a50ccaa0b37a17dc82fded0fb3ed7af5478b9367b86baee19127ad86af4be51d209f64fd6638c0862dca185fe1d
|
|
8882
8882
|
languageName: node
|
|
8883
8883
|
linkType: hard
|
|
8884
8884
|
|
|
@@ -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.63
|
|
9820
|
+
resolution: "electron-to-chromium@npm:1.5.63"
|
|
9821
|
+
checksum: 10c0/fe1b175805309b04e5a2242c3168f22543e5369aed01fceedfe0f0eafe3931e8609d8a140e527394b314cfe64d581913aba6f1d3c72c23069c7d8241e5dfa4ef
|
|
9822
9822
|
languageName: node
|
|
9823
9823
|
linkType: hard
|
|
9824
9824
|
|
|
@@ -11125,9 +11125,9 @@ __metadata:
|
|
|
11125
11125
|
linkType: hard
|
|
11126
11126
|
|
|
11127
11127
|
"flatted@npm:^3.2.9":
|
|
11128
|
-
version: 3.3.
|
|
11129
|
-
resolution: "flatted@npm:3.3.
|
|
11130
|
-
checksum: 10c0/
|
|
11128
|
+
version: 3.3.2
|
|
11129
|
+
resolution: "flatted@npm:3.3.2"
|
|
11130
|
+
checksum: 10c0/24cc735e74d593b6c767fe04f2ef369abe15b62f6906158079b9874bdb3ee5ae7110bb75042e70cd3f99d409d766f357caf78d5ecee9780206f5fdc5edbad334
|
|
11131
11131
|
languageName: node
|
|
11132
11132
|
linkType: hard
|
|
11133
11133
|
|
|
@@ -13847,12 +13847,12 @@ __metadata:
|
|
|
13847
13847
|
linkType: hard
|
|
13848
13848
|
|
|
13849
13849
|
"local-pkg@npm:^0.5.0":
|
|
13850
|
-
version: 0.5.
|
|
13851
|
-
resolution: "local-pkg@npm:0.5.
|
|
13850
|
+
version: 0.5.1
|
|
13851
|
+
resolution: "local-pkg@npm:0.5.1"
|
|
13852
13852
|
dependencies:
|
|
13853
|
-
mlly: "npm:^1.
|
|
13854
|
-
pkg-types: "npm:^1.
|
|
13855
|
-
checksum: 10c0/
|
|
13853
|
+
mlly: "npm:^1.7.3"
|
|
13854
|
+
pkg-types: "npm:^1.2.1"
|
|
13855
|
+
checksum: 10c0/ade8346f1dc04875921461adee3c40774b00d4b74095261222ebd4d5fd0a444676e36e325f76760f21af6a60bc82480e154909b54d2d9f7173671e36dacf1808
|
|
13856
13856
|
languageName: node
|
|
13857
13857
|
linkType: hard
|
|
13858
13858
|
|
|
@@ -14025,11 +14025,11 @@ __metadata:
|
|
|
14025
14025
|
linkType: hard
|
|
14026
14026
|
|
|
14027
14027
|
"magic-string@npm:^0.30.11, magic-string@npm:^0.30.5":
|
|
14028
|
-
version: 0.30.
|
|
14029
|
-
resolution: "magic-string@npm:0.30.
|
|
14028
|
+
version: 0.30.13
|
|
14029
|
+
resolution: "magic-string@npm:0.30.13"
|
|
14030
14030
|
dependencies:
|
|
14031
14031
|
"@jridgewell/sourcemap-codec": "npm:^1.5.0"
|
|
14032
|
-
checksum: 10c0/
|
|
14032
|
+
checksum: 10c0/a275faeca1564c545019b4742c38a42ca80226c8c9e0805c32d1a1cc58b0e6ff7bbd914ed885fd10043858a7da0f732cb8f49c8975c3ecebde9cad4b57db5115
|
|
14033
14033
|
languageName: node
|
|
14034
14034
|
linkType: hard
|
|
14035
14035
|
|
|
@@ -14715,7 +14715,7 @@ __metadata:
|
|
|
14715
14715
|
languageName: node
|
|
14716
14716
|
linkType: hard
|
|
14717
14717
|
|
|
14718
|
-
"mlly@npm:^1.
|
|
14718
|
+
"mlly@npm:^1.7.2, mlly@npm:^1.7.3":
|
|
14719
14719
|
version: 1.7.3
|
|
14720
14720
|
resolution: "mlly@npm:1.7.3"
|
|
14721
14721
|
dependencies:
|
|
@@ -15853,7 +15853,7 @@ __metadata:
|
|
|
15853
15853
|
languageName: node
|
|
15854
15854
|
linkType: hard
|
|
15855
15855
|
|
|
15856
|
-
"pkg-types@npm:^1.
|
|
15856
|
+
"pkg-types@npm:^1.2.1":
|
|
15857
15857
|
version: 1.2.1
|
|
15858
15858
|
resolution: "pkg-types@npm:1.2.1"
|
|
15859
15859
|
dependencies:
|
|
@@ -18755,27 +18755,27 @@ __metadata:
|
|
|
18755
18755
|
linkType: hard
|
|
18756
18756
|
|
|
18757
18757
|
"rollup@npm:^4.13.0":
|
|
18758
|
-
version: 4.27.
|
|
18759
|
-
resolution: "rollup@npm:4.27.
|
|
18760
|
-
dependencies:
|
|
18761
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.27.
|
|
18762
|
-
"@rollup/rollup-android-arm64": "npm:4.27.
|
|
18763
|
-
"@rollup/rollup-darwin-arm64": "npm:4.27.
|
|
18764
|
-
"@rollup/rollup-darwin-x64": "npm:4.27.
|
|
18765
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.27.
|
|
18766
|
-
"@rollup/rollup-freebsd-x64": "npm:4.27.
|
|
18767
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.27.
|
|
18768
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.27.
|
|
18769
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.27.
|
|
18770
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.27.
|
|
18771
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.27.
|
|
18772
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.27.
|
|
18773
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.27.
|
|
18774
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.27.
|
|
18775
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.27.
|
|
18776
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.27.
|
|
18777
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.27.
|
|
18778
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.27.
|
|
18758
|
+
version: 4.27.3
|
|
18759
|
+
resolution: "rollup@npm:4.27.3"
|
|
18760
|
+
dependencies:
|
|
18761
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.27.3"
|
|
18762
|
+
"@rollup/rollup-android-arm64": "npm:4.27.3"
|
|
18763
|
+
"@rollup/rollup-darwin-arm64": "npm:4.27.3"
|
|
18764
|
+
"@rollup/rollup-darwin-x64": "npm:4.27.3"
|
|
18765
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.27.3"
|
|
18766
|
+
"@rollup/rollup-freebsd-x64": "npm:4.27.3"
|
|
18767
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.27.3"
|
|
18768
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.27.3"
|
|
18769
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.27.3"
|
|
18770
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.27.3"
|
|
18771
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.27.3"
|
|
18772
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.27.3"
|
|
18773
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.27.3"
|
|
18774
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.27.3"
|
|
18775
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.27.3"
|
|
18776
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.27.3"
|
|
18777
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.27.3"
|
|
18778
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.27.3"
|
|
18779
18779
|
"@types/estree": "npm:1.0.6"
|
|
18780
18780
|
fsevents: "npm:~2.3.2"
|
|
18781
18781
|
dependenciesMeta:
|
|
@@ -18819,7 +18819,7 @@ __metadata:
|
|
|
18819
18819
|
optional: true
|
|
18820
18820
|
bin:
|
|
18821
18821
|
rollup: dist/bin/rollup
|
|
18822
|
-
checksum: 10c0/
|
|
18822
|
+
checksum: 10c0/789885d3f852ed7ca45bed14194a2ac7a2cf16b6b62b54f691c79e27d5557d31a2d612d3680c26c527a1957e0bd6811806ddd765e0dae589404cf24544ff2838
|
|
18823
18823
|
languageName: node
|
|
18824
18824
|
linkType: hard
|
|
18825
18825
|
|