@licklist/design 0.71.6 → 0.71.7
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/edit-event-modal/hooks/useValidationOptions.d.ts +0 -1
- package/dist/events/edit-event-modal/hooks/useValidationOptions.d.ts.map +1 -1
- package/dist/events/edit-event-modal/hooks/useValidationOptions.js +1 -6
- package/dist/events/event-statistic-modal/utils/index.d.ts.map +1 -1
- package/dist/events/event-statistic-modal/utils/index.js +31 -12
- package/package.json +3 -3
- package/src/events/edit-event-modal/hooks/useValidationOptions.tsx +0 -5
- package/src/events/event-statistic-modal/utils/index.ts +67 -32
- package/yarn.lock +122 -94
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useValidationOptions.d.ts","sourceRoot":"","sources":["../../../../src/events/edit-event-modal/hooks/useValidationOptions.tsx"],"names":[],"mappings":"AAIA,eAAO,MAAM,oBAAoB;;kBASrB,MAAM
|
|
1
|
+
{"version":3,"file":"useValidationOptions.d.ts","sourceRoot":"","sources":["../../../../src/events/edit-event-modal/hooks/useValidationOptions.tsx"],"names":[],"mappings":"AAIA,eAAO,MAAM,oBAAoB;;kBASrB,MAAM;;;kBAMN,MAAM;;;CAWjB,CAAA"}
|
|
@@ -16,12 +16,7 @@ var useValidationOptions = function() {
|
|
|
16
16
|
start: {
|
|
17
17
|
required: t('Validation:fieldRequired', {
|
|
18
18
|
attribute: t('start')
|
|
19
|
-
})
|
|
20
|
-
// TODO: uncomment when event splitting is implemented
|
|
21
|
-
// and extract into plugins
|
|
22
|
-
validate: function(value) {
|
|
23
|
-
return DateTime.fromISO(value).diffNow().toMillis() > 0 || t('Validation:fieldValidEventStart');
|
|
24
|
-
}
|
|
19
|
+
})
|
|
25
20
|
},
|
|
26
21
|
end: {
|
|
27
22
|
required: t('Validation:fieldRequired', {
|
|
@@ -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;
|
|
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,5 +1,6 @@
|
|
|
1
1
|
import { DateTime } from 'luxon';
|
|
2
2
|
import { DATE_FORMAT, DATE_TIME_FULL_FORMAT } from '@licklist/core/dist/Config';
|
|
3
|
+
import { max } from 'lodash';
|
|
3
4
|
|
|
4
5
|
function _array_like_to_array(arr, len) {
|
|
5
6
|
if (len == null || len > arr.length) len = arr.length;
|
|
@@ -48,10 +49,15 @@ var convertEventStatisticToTableData = function(date, eventStatistic) {
|
|
|
48
49
|
return eventStatistic === null || eventStatistic === void 0 ? void 0 : eventStatistic.productCategorySummary[day];
|
|
49
50
|
}).flat().sort(function(prev, next) {
|
|
50
51
|
return prev.categoryName === next.categoryName ? 0 : prev.categoryName > next.categoryName ? 1 : -1;
|
|
51
|
-
}).forEach(function(param) {
|
|
52
|
+
}).forEach(function(param, _, selfCategory) {
|
|
52
53
|
var totalPerCategory = param.totalPerCategory, _param_productsSummary = param.productsSummary, productsSummary = _param_productsSummary === void 0 ? [] : _param_productsSummary, categoryName = param.categoryName, eventId = param.eventId;
|
|
53
54
|
var quantity = 0;
|
|
54
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
|
+
});
|
|
55
61
|
if (!summaryMap.has("".concat(categoryName))) {
|
|
56
62
|
summaryMap.set("".concat(categoryName), {
|
|
57
63
|
name: categoryName,
|
|
@@ -62,24 +68,37 @@ var convertEventStatisticToTableData = function(date, eventStatistic) {
|
|
|
62
68
|
total: TRANSLATION_KEYS.total
|
|
63
69
|
});
|
|
64
70
|
}
|
|
65
|
-
productsSummary === null || productsSummary === void 0 ? void 0 : productsSummary.forEach(function(
|
|
66
|
-
|
|
67
|
-
quantity += productsSold;
|
|
71
|
+
productsSummary === null || productsSummary === void 0 ? void 0 : productsSummary.forEach(function(productSummary, productIndex) {
|
|
72
|
+
quantity += productSummary.productsSold;
|
|
68
73
|
var _summaryMap_get;
|
|
69
|
-
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 : {
|
|
70
75
|
metadata: {
|
|
71
76
|
_productsSold: 0,
|
|
72
77
|
_total: 0
|
|
73
78
|
}
|
|
74
79
|
};
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
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),
|
|
80
99
|
metadata: {
|
|
81
|
-
_productsSold: existingProduct.metadata._productsSold + productsSold,
|
|
82
|
-
_total: existingProduct.metadata._total + total
|
|
100
|
+
_productsSold: existingProduct.metadata._productsSold + productSummary.productsSold,
|
|
101
|
+
_total: existingProduct.metadata._total + productSummary.total
|
|
83
102
|
}
|
|
84
103
|
});
|
|
85
104
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@licklist/design",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.7",
|
|
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.3",
|
|
46
46
|
"@licklist/eslint-config": "0.5.6",
|
|
47
47
|
"@licklist/plugins": "0.35.1",
|
|
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.3",
|
|
65
65
|
"@licklist/eslint-config": "0.5.6",
|
|
66
66
|
"@licklist/plugins": "0.35.1",
|
|
67
67
|
"@mantine/core": "6.0.22",
|
|
@@ -12,11 +12,6 @@ export const useValidationOptions = () => {
|
|
|
12
12
|
required: t('Validation:fieldRequired', {
|
|
13
13
|
attribute: t('start'),
|
|
14
14
|
}) as string,
|
|
15
|
-
// TODO: uncomment when event splitting is implemented
|
|
16
|
-
// and extract into plugins
|
|
17
|
-
validate: (value) =>
|
|
18
|
-
DateTime.fromISO(value).diffNow().toMillis() > 0 ||
|
|
19
|
-
(t('Validation:fieldValidEventStart') as string),
|
|
20
15
|
},
|
|
21
16
|
|
|
22
17
|
end: {
|
|
@@ -1,6 +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 { max } from 'lodash'
|
|
4
5
|
|
|
5
6
|
export const TRANSLATION_KEYS = {
|
|
6
7
|
shortQuantity: 'shortQuantity',
|
|
@@ -57,11 +58,18 @@ export const convertEventStatisticToTableData = (
|
|
|
57
58
|
: -1,
|
|
58
59
|
)
|
|
59
60
|
.forEach(
|
|
60
|
-
(
|
|
61
|
+
(
|
|
62
|
+
{ totalPerCategory, productsSummary = [], categoryName, eventId },
|
|
63
|
+
_,
|
|
64
|
+
selfCategory,
|
|
65
|
+
) => {
|
|
61
66
|
let quantity = 0
|
|
62
|
-
|
|
63
67
|
totalAmount += totalPerCategory || 0
|
|
64
68
|
|
|
69
|
+
const allProductSummaryAtCategory = selfCategory
|
|
70
|
+
.filter((category) => category.categoryName === categoryName)
|
|
71
|
+
.flatMap((categorySummary) => categorySummary.productsSummary)
|
|
72
|
+
|
|
65
73
|
if (!summaryMap.has(`${categoryName}`)) {
|
|
66
74
|
summaryMap.set(`${categoryName}`, {
|
|
67
75
|
name: categoryName,
|
|
@@ -73,36 +81,63 @@ export const convertEventStatisticToTableData = (
|
|
|
73
81
|
})
|
|
74
82
|
}
|
|
75
83
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
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
|
+
})
|
|
106
141
|
|
|
107
142
|
const prevTotalPerCategory = summaryMap.get(
|
|
108
143
|
`${categoryName}.${TRANSLATION_KEYS.totalPerCategory}`,
|
package/yarn.lock
CHANGED
|
@@ -2494,6 +2494,34 @@ __metadata:
|
|
|
2494
2494
|
languageName: node
|
|
2495
2495
|
linkType: hard
|
|
2496
2496
|
|
|
2497
|
+
"@licklist/core@npm:0.32.3":
|
|
2498
|
+
version: 0.32.3
|
|
2499
|
+
resolution: "@licklist/core@npm:0.32.3"
|
|
2500
|
+
dependencies:
|
|
2501
|
+
"@sentry/browser": "npm:6.2.0"
|
|
2502
|
+
axios: "npm:0.26.0"
|
|
2503
|
+
i18next: "npm:19.4.5"
|
|
2504
|
+
luxon: "npm:3.5.0"
|
|
2505
|
+
react: "npm:17.0.2"
|
|
2506
|
+
react-dom: "npm:17.0.2"
|
|
2507
|
+
react-i18next: "npm:11.8.8"
|
|
2508
|
+
react-intl: "npm:6.6.8"
|
|
2509
|
+
uuid: "npm:9.0.0"
|
|
2510
|
+
wait-for-expect: "npm:3.0.2"
|
|
2511
|
+
zustand: "npm:3.7.2"
|
|
2512
|
+
peerDependencies:
|
|
2513
|
+
"@licklist/eslint-config": 0.5.6
|
|
2514
|
+
axios: 0.26.0
|
|
2515
|
+
luxon: 3.5.0
|
|
2516
|
+
react: 17.0.2
|
|
2517
|
+
react-dom: 17.0.2
|
|
2518
|
+
react-i18next: 11.8.8
|
|
2519
|
+
react-intl: 6.6.8
|
|
2520
|
+
zustand: 3.7.2
|
|
2521
|
+
checksum: 10c0/e9909079b6a63df734c9dbf63f47bbb556c469d570e1ec1982b9552b4060068e31cb3f93677597fda7a1ce7b224710f909be399d6b40c23a68de5436907167e7
|
|
2522
|
+
languageName: node
|
|
2523
|
+
linkType: hard
|
|
2524
|
+
|
|
2497
2525
|
"@licklist/design@workspace:.":
|
|
2498
2526
|
version: 0.0.0-use.local
|
|
2499
2527
|
resolution: "@licklist/design@workspace:."
|
|
@@ -2505,7 +2533,7 @@ __metadata:
|
|
|
2505
2533
|
"@dnd-kit/utilities": "npm:2.0.0"
|
|
2506
2534
|
"@fortawesome/fontawesome-svg-core": "npm:1.2.34"
|
|
2507
2535
|
"@fortawesome/free-solid-svg-icons": "npm:5.15.2"
|
|
2508
|
-
"@licklist/core": "npm:0.32.
|
|
2536
|
+
"@licklist/core": "npm:0.32.3"
|
|
2509
2537
|
"@licklist/eslint-config": "npm:0.5.6"
|
|
2510
2538
|
"@licklist/plugins": "npm:0.35.1"
|
|
2511
2539
|
"@mantine/core": "npm:6.0.22"
|
|
@@ -2636,7 +2664,7 @@ __metadata:
|
|
|
2636
2664
|
vite-plugin-svgr: "npm:4.2.0"
|
|
2637
2665
|
vite-tsconfig-paths: "npm:5.0.1"
|
|
2638
2666
|
peerDependencies:
|
|
2639
|
-
"@licklist/core": 0.32.
|
|
2667
|
+
"@licklist/core": 0.32.3
|
|
2640
2668
|
"@licklist/eslint-config": 0.5.6
|
|
2641
2669
|
"@licklist/plugins": 0.35.1
|
|
2642
2670
|
lodash: 4.17.21
|
|
@@ -3288,128 +3316,128 @@ __metadata:
|
|
|
3288
3316
|
languageName: node
|
|
3289
3317
|
linkType: hard
|
|
3290
3318
|
|
|
3291
|
-
"@rollup/rollup-android-arm-eabi@npm:4.27.
|
|
3292
|
-
version: 4.27.
|
|
3293
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.27.
|
|
3319
|
+
"@rollup/rollup-android-arm-eabi@npm:4.27.3":
|
|
3320
|
+
version: 4.27.3
|
|
3321
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.27.3"
|
|
3294
3322
|
conditions: os=android & cpu=arm
|
|
3295
3323
|
languageName: node
|
|
3296
3324
|
linkType: hard
|
|
3297
3325
|
|
|
3298
|
-
"@rollup/rollup-android-arm64@npm:4.27.
|
|
3299
|
-
version: 4.27.
|
|
3300
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.27.
|
|
3326
|
+
"@rollup/rollup-android-arm64@npm:4.27.3":
|
|
3327
|
+
version: 4.27.3
|
|
3328
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.27.3"
|
|
3301
3329
|
conditions: os=android & cpu=arm64
|
|
3302
3330
|
languageName: node
|
|
3303
3331
|
linkType: hard
|
|
3304
3332
|
|
|
3305
|
-
"@rollup/rollup-darwin-arm64@npm:4.27.
|
|
3306
|
-
version: 4.27.
|
|
3307
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.27.
|
|
3333
|
+
"@rollup/rollup-darwin-arm64@npm:4.27.3":
|
|
3334
|
+
version: 4.27.3
|
|
3335
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.27.3"
|
|
3308
3336
|
conditions: os=darwin & cpu=arm64
|
|
3309
3337
|
languageName: node
|
|
3310
3338
|
linkType: hard
|
|
3311
3339
|
|
|
3312
|
-
"@rollup/rollup-darwin-x64@npm:4.27.
|
|
3313
|
-
version: 4.27.
|
|
3314
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.27.
|
|
3340
|
+
"@rollup/rollup-darwin-x64@npm:4.27.3":
|
|
3341
|
+
version: 4.27.3
|
|
3342
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.27.3"
|
|
3315
3343
|
conditions: os=darwin & cpu=x64
|
|
3316
3344
|
languageName: node
|
|
3317
3345
|
linkType: hard
|
|
3318
3346
|
|
|
3319
|
-
"@rollup/rollup-freebsd-arm64@npm:4.27.
|
|
3320
|
-
version: 4.27.
|
|
3321
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.27.
|
|
3347
|
+
"@rollup/rollup-freebsd-arm64@npm:4.27.3":
|
|
3348
|
+
version: 4.27.3
|
|
3349
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.27.3"
|
|
3322
3350
|
conditions: os=freebsd & cpu=arm64
|
|
3323
3351
|
languageName: node
|
|
3324
3352
|
linkType: hard
|
|
3325
3353
|
|
|
3326
|
-
"@rollup/rollup-freebsd-x64@npm:4.27.
|
|
3327
|
-
version: 4.27.
|
|
3328
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.27.
|
|
3354
|
+
"@rollup/rollup-freebsd-x64@npm:4.27.3":
|
|
3355
|
+
version: 4.27.3
|
|
3356
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.27.3"
|
|
3329
3357
|
conditions: os=freebsd & cpu=x64
|
|
3330
3358
|
languageName: node
|
|
3331
3359
|
linkType: hard
|
|
3332
3360
|
|
|
3333
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.27.
|
|
3334
|
-
version: 4.27.
|
|
3335
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.27.
|
|
3361
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.27.3":
|
|
3362
|
+
version: 4.27.3
|
|
3363
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.27.3"
|
|
3336
3364
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3337
3365
|
languageName: node
|
|
3338
3366
|
linkType: hard
|
|
3339
3367
|
|
|
3340
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.27.
|
|
3341
|
-
version: 4.27.
|
|
3342
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.27.
|
|
3368
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.27.3":
|
|
3369
|
+
version: 4.27.3
|
|
3370
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.27.3"
|
|
3343
3371
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3344
3372
|
languageName: node
|
|
3345
3373
|
linkType: hard
|
|
3346
3374
|
|
|
3347
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.27.
|
|
3348
|
-
version: 4.27.
|
|
3349
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.27.
|
|
3375
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.27.3":
|
|
3376
|
+
version: 4.27.3
|
|
3377
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.27.3"
|
|
3350
3378
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3351
3379
|
languageName: node
|
|
3352
3380
|
linkType: hard
|
|
3353
3381
|
|
|
3354
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.27.
|
|
3355
|
-
version: 4.27.
|
|
3356
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.27.
|
|
3382
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.27.3":
|
|
3383
|
+
version: 4.27.3
|
|
3384
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.27.3"
|
|
3357
3385
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3358
3386
|
languageName: node
|
|
3359
3387
|
linkType: hard
|
|
3360
3388
|
|
|
3361
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.
|
|
3362
|
-
version: 4.27.
|
|
3363
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.
|
|
3389
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.3":
|
|
3390
|
+
version: 4.27.3
|
|
3391
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.3"
|
|
3364
3392
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3365
3393
|
languageName: node
|
|
3366
3394
|
linkType: hard
|
|
3367
3395
|
|
|
3368
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.27.
|
|
3369
|
-
version: 4.27.
|
|
3370
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.27.
|
|
3396
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.27.3":
|
|
3397
|
+
version: 4.27.3
|
|
3398
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.27.3"
|
|
3371
3399
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3372
3400
|
languageName: node
|
|
3373
3401
|
linkType: hard
|
|
3374
3402
|
|
|
3375
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.27.
|
|
3376
|
-
version: 4.27.
|
|
3377
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.27.
|
|
3403
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.27.3":
|
|
3404
|
+
version: 4.27.3
|
|
3405
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.27.3"
|
|
3378
3406
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3379
3407
|
languageName: node
|
|
3380
3408
|
linkType: hard
|
|
3381
3409
|
|
|
3382
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.27.
|
|
3383
|
-
version: 4.27.
|
|
3384
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.27.
|
|
3410
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.27.3":
|
|
3411
|
+
version: 4.27.3
|
|
3412
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.27.3"
|
|
3385
3413
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3386
3414
|
languageName: node
|
|
3387
3415
|
linkType: hard
|
|
3388
3416
|
|
|
3389
|
-
"@rollup/rollup-linux-x64-musl@npm:4.27.
|
|
3390
|
-
version: 4.27.
|
|
3391
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.27.
|
|
3417
|
+
"@rollup/rollup-linux-x64-musl@npm:4.27.3":
|
|
3418
|
+
version: 4.27.3
|
|
3419
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.27.3"
|
|
3392
3420
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3393
3421
|
languageName: node
|
|
3394
3422
|
linkType: hard
|
|
3395
3423
|
|
|
3396
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.27.
|
|
3397
|
-
version: 4.27.
|
|
3398
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.27.
|
|
3424
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.27.3":
|
|
3425
|
+
version: 4.27.3
|
|
3426
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.27.3"
|
|
3399
3427
|
conditions: os=win32 & cpu=arm64
|
|
3400
3428
|
languageName: node
|
|
3401
3429
|
linkType: hard
|
|
3402
3430
|
|
|
3403
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.27.
|
|
3404
|
-
version: 4.27.
|
|
3405
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.27.
|
|
3431
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.27.3":
|
|
3432
|
+
version: 4.27.3
|
|
3433
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.27.3"
|
|
3406
3434
|
conditions: os=win32 & cpu=ia32
|
|
3407
3435
|
languageName: node
|
|
3408
3436
|
linkType: hard
|
|
3409
3437
|
|
|
3410
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.27.
|
|
3411
|
-
version: 4.27.
|
|
3412
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.27.
|
|
3438
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.27.3":
|
|
3439
|
+
version: 4.27.3
|
|
3440
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.27.3"
|
|
3413
3441
|
conditions: os=win32 & cpu=x64
|
|
3414
3442
|
languageName: node
|
|
3415
3443
|
linkType: hard
|
|
@@ -9816,9 +9844,9 @@ __metadata:
|
|
|
9816
9844
|
linkType: hard
|
|
9817
9845
|
|
|
9818
9846
|
"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/
|
|
9847
|
+
version: 1.5.63
|
|
9848
|
+
resolution: "electron-to-chromium@npm:1.5.63"
|
|
9849
|
+
checksum: 10c0/fe1b175805309b04e5a2242c3168f22543e5369aed01fceedfe0f0eafe3931e8609d8a140e527394b314cfe64d581913aba6f1d3c72c23069c7d8241e5dfa4ef
|
|
9822
9850
|
languageName: node
|
|
9823
9851
|
linkType: hard
|
|
9824
9852
|
|
|
@@ -13847,12 +13875,12 @@ __metadata:
|
|
|
13847
13875
|
linkType: hard
|
|
13848
13876
|
|
|
13849
13877
|
"local-pkg@npm:^0.5.0":
|
|
13850
|
-
version: 0.5.
|
|
13851
|
-
resolution: "local-pkg@npm:0.5.
|
|
13878
|
+
version: 0.5.1
|
|
13879
|
+
resolution: "local-pkg@npm:0.5.1"
|
|
13852
13880
|
dependencies:
|
|
13853
|
-
mlly: "npm:^1.
|
|
13854
|
-
pkg-types: "npm:^1.
|
|
13855
|
-
checksum: 10c0/
|
|
13881
|
+
mlly: "npm:^1.7.3"
|
|
13882
|
+
pkg-types: "npm:^1.2.1"
|
|
13883
|
+
checksum: 10c0/ade8346f1dc04875921461adee3c40774b00d4b74095261222ebd4d5fd0a444676e36e325f76760f21af6a60bc82480e154909b54d2d9f7173671e36dacf1808
|
|
13856
13884
|
languageName: node
|
|
13857
13885
|
linkType: hard
|
|
13858
13886
|
|
|
@@ -14025,11 +14053,11 @@ __metadata:
|
|
|
14025
14053
|
linkType: hard
|
|
14026
14054
|
|
|
14027
14055
|
"magic-string@npm:^0.30.11, magic-string@npm:^0.30.5":
|
|
14028
|
-
version: 0.30.
|
|
14029
|
-
resolution: "magic-string@npm:0.30.
|
|
14056
|
+
version: 0.30.13
|
|
14057
|
+
resolution: "magic-string@npm:0.30.13"
|
|
14030
14058
|
dependencies:
|
|
14031
14059
|
"@jridgewell/sourcemap-codec": "npm:^1.5.0"
|
|
14032
|
-
checksum: 10c0/
|
|
14060
|
+
checksum: 10c0/a275faeca1564c545019b4742c38a42ca80226c8c9e0805c32d1a1cc58b0e6ff7bbd914ed885fd10043858a7da0f732cb8f49c8975c3ecebde9cad4b57db5115
|
|
14033
14061
|
languageName: node
|
|
14034
14062
|
linkType: hard
|
|
14035
14063
|
|
|
@@ -14715,7 +14743,7 @@ __metadata:
|
|
|
14715
14743
|
languageName: node
|
|
14716
14744
|
linkType: hard
|
|
14717
14745
|
|
|
14718
|
-
"mlly@npm:^1.
|
|
14746
|
+
"mlly@npm:^1.7.2, mlly@npm:^1.7.3":
|
|
14719
14747
|
version: 1.7.3
|
|
14720
14748
|
resolution: "mlly@npm:1.7.3"
|
|
14721
14749
|
dependencies:
|
|
@@ -15853,7 +15881,7 @@ __metadata:
|
|
|
15853
15881
|
languageName: node
|
|
15854
15882
|
linkType: hard
|
|
15855
15883
|
|
|
15856
|
-
"pkg-types@npm:^1.
|
|
15884
|
+
"pkg-types@npm:^1.2.1":
|
|
15857
15885
|
version: 1.2.1
|
|
15858
15886
|
resolution: "pkg-types@npm:1.2.1"
|
|
15859
15887
|
dependencies:
|
|
@@ -18755,27 +18783,27 @@ __metadata:
|
|
|
18755
18783
|
linkType: hard
|
|
18756
18784
|
|
|
18757
18785
|
"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.
|
|
18786
|
+
version: 4.27.3
|
|
18787
|
+
resolution: "rollup@npm:4.27.3"
|
|
18788
|
+
dependencies:
|
|
18789
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.27.3"
|
|
18790
|
+
"@rollup/rollup-android-arm64": "npm:4.27.3"
|
|
18791
|
+
"@rollup/rollup-darwin-arm64": "npm:4.27.3"
|
|
18792
|
+
"@rollup/rollup-darwin-x64": "npm:4.27.3"
|
|
18793
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.27.3"
|
|
18794
|
+
"@rollup/rollup-freebsd-x64": "npm:4.27.3"
|
|
18795
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.27.3"
|
|
18796
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.27.3"
|
|
18797
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.27.3"
|
|
18798
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.27.3"
|
|
18799
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.27.3"
|
|
18800
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.27.3"
|
|
18801
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.27.3"
|
|
18802
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.27.3"
|
|
18803
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.27.3"
|
|
18804
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.27.3"
|
|
18805
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.27.3"
|
|
18806
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.27.3"
|
|
18779
18807
|
"@types/estree": "npm:1.0.6"
|
|
18780
18808
|
fsevents: "npm:~2.3.2"
|
|
18781
18809
|
dependenciesMeta:
|
|
@@ -18819,7 +18847,7 @@ __metadata:
|
|
|
18819
18847
|
optional: true
|
|
18820
18848
|
bin:
|
|
18821
18849
|
rollup: dist/bin/rollup
|
|
18822
|
-
checksum: 10c0/
|
|
18850
|
+
checksum: 10c0/789885d3f852ed7ca45bed14194a2ac7a2cf16b6b62b54f691c79e27d5557d31a2d612d3680c26c527a1957e0bd6811806ddd765e0dae589404cf24544ff2838
|
|
18823
18851
|
languageName: node
|
|
18824
18852
|
linkType: hard
|
|
18825
18853
|
|
|
@@ -21938,11 +21966,11 @@ __metadata:
|
|
|
21938
21966
|
linkType: hard
|
|
21939
21967
|
|
|
21940
21968
|
"yaml@npm:^2.3.4":
|
|
21941
|
-
version: 2.6.
|
|
21942
|
-
resolution: "yaml@npm:2.6.
|
|
21969
|
+
version: 2.6.1
|
|
21970
|
+
resolution: "yaml@npm:2.6.1"
|
|
21943
21971
|
bin:
|
|
21944
21972
|
yaml: bin.mjs
|
|
21945
|
-
checksum: 10c0/
|
|
21973
|
+
checksum: 10c0/aebf07f61c72b38c74d2b60c3a3ccf89ee4da45bcd94b2bfb7899ba07a5257625a7c9f717c65a6fc511563d48001e01deb1d9e55f0133f3e2edf86039c8c1be7
|
|
21946
21974
|
languageName: node
|
|
21947
21975
|
linkType: hard
|
|
21948
21976
|
|