@licklist/design 0.72.0-dev.2 → 0.72.0-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/date-time-button/DateTimeButton.js +1 -4
- package/dist/iframe/payment/payment-page/PaymentPage.js +1 -1
- package/dist/product-set/control/ProductSetControl.js +1 -2
- package/package.json +2 -2
- package/src/date-time-button/DateTimeButton.tsx +1 -3
- package/src/iframe/payment/payment-page/PaymentPage.tsx +1 -1
- package/src/product-set/control/ProductSetControl.tsx +1 -1
- package/yarn.lock +177 -174
|
@@ -14,7 +14,7 @@ var DateTimeButton = function(param) {
|
|
|
14
14
|
var date = param.date, _isDisabled = param.isDisabled, isSelected = param.isSelected, _isSoldOut = param.isSoldOut, onSelect = param.onSelect, price = param.price, resources = param.resources, showResources = param.showResources, _param_variant = param.variant, variant = _param_variant === void 0 ? "week" : _param_variant, availabilityFormat = param.availabilityFormat;
|
|
15
15
|
var isSoldOut = _isSoldOut || resources && resources.bookedResources >= resources.totalResources;
|
|
16
16
|
var isTimeVariant = variant === "time";
|
|
17
|
-
var isPast =
|
|
17
|
+
var isPast = isPastDate(date);
|
|
18
18
|
var isDisabled = _isDisabled || isSoldOut || isPast;
|
|
19
19
|
var isUnavailable = _isDisabled || isPast;
|
|
20
20
|
return /*#__PURE__*/ jsxs("button", {
|
|
@@ -45,9 +45,6 @@ var DateTimeButton = function(param) {
|
|
|
45
45
|
]
|
|
46
46
|
});
|
|
47
47
|
};
|
|
48
|
-
var isPastTime = function(date) {
|
|
49
|
-
return DateTime.now() > date;
|
|
50
|
-
};
|
|
51
48
|
var isPastDate = function(date) {
|
|
52
49
|
return DateTime.now() > date.set({
|
|
53
50
|
hour: 23,
|
|
@@ -207,7 +207,7 @@ var PaymentPage = function(_param) {
|
|
|
207
207
|
rightBlock: /*#__PURE__*/ jsx(PageBody.RightBlock, {
|
|
208
208
|
children: /*#__PURE__*/ jsx(BookingSummary, _object_spread_props(_object_spread({}, bookingSummaryProps), {
|
|
209
209
|
isPaymentPage: true,
|
|
210
|
-
headerTitle: t('
|
|
210
|
+
headerTitle: t('remainingBalance'),
|
|
211
211
|
headerComponent: /*#__PURE__*/ jsx(SummaryTotalBlock, {
|
|
212
212
|
amount: totalBooked
|
|
213
213
|
}),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@licklist/design",
|
|
3
|
-
"version": "0.72.0-dev.
|
|
3
|
+
"version": "0.72.0-dev.4",
|
|
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.31.2-dev.
|
|
45
|
+
"@licklist/core": "0.31.2-dev.16",
|
|
46
46
|
"@licklist/eslint-config": "0.5.6",
|
|
47
47
|
"@licklist/plugins": "0.35.1-dev.8",
|
|
48
48
|
"lodash": "4.17.21",
|
|
@@ -43,7 +43,7 @@ export const DateTimeButton = ({
|
|
|
43
43
|
|
|
44
44
|
const isTimeVariant = variant === Variant.time
|
|
45
45
|
|
|
46
|
-
const isPast =
|
|
46
|
+
const isPast = isPastDate(date)
|
|
47
47
|
|
|
48
48
|
const isDisabled = _isDisabled || isSoldOut || isPast
|
|
49
49
|
const isUnavailable = _isDisabled || isPast
|
|
@@ -82,7 +82,5 @@ export const DateTimeButton = ({
|
|
|
82
82
|
)
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
-
const isPastTime = (date: DateTime): boolean => DateTime.now() > date
|
|
86
|
-
|
|
87
85
|
const isPastDate = (date: DateTime): boolean =>
|
|
88
86
|
DateTime.now() > date.set({ hour: 23, minute: 59, second: 59 })
|
|
@@ -162,7 +162,7 @@ export const PaymentPage = ({
|
|
|
162
162
|
<BookingSummary
|
|
163
163
|
{...bookingSummaryProps}
|
|
164
164
|
isPaymentPage
|
|
165
|
-
headerTitle={t('
|
|
165
|
+
headerTitle={t('remainingBalance')}
|
|
166
166
|
headerComponent={<SummaryTotalBlock amount={totalBooked} />}
|
|
167
167
|
footer={
|
|
168
168
|
<div className='d-flex flex-column justify-content-between'>
|
package/yarn.lock
CHANGED
|
@@ -83,38 +83,38 @@ __metadata:
|
|
|
83
83
|
linkType: hard
|
|
84
84
|
|
|
85
85
|
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.12.10, @babel/core@npm:^7.12.3, @babel/core@npm:^7.21.3, @babel/core@npm:^7.24.5, @babel/core@npm:^7.7.5":
|
|
86
|
-
version: 7.26.
|
|
87
|
-
resolution: "@babel/core@npm:7.26.
|
|
86
|
+
version: 7.26.10
|
|
87
|
+
resolution: "@babel/core@npm:7.26.10"
|
|
88
88
|
dependencies:
|
|
89
89
|
"@ampproject/remapping": "npm:^2.2.0"
|
|
90
90
|
"@babel/code-frame": "npm:^7.26.2"
|
|
91
|
-
"@babel/generator": "npm:^7.26.
|
|
91
|
+
"@babel/generator": "npm:^7.26.10"
|
|
92
92
|
"@babel/helper-compilation-targets": "npm:^7.26.5"
|
|
93
93
|
"@babel/helper-module-transforms": "npm:^7.26.0"
|
|
94
|
-
"@babel/helpers": "npm:^7.26.
|
|
95
|
-
"@babel/parser": "npm:^7.26.
|
|
94
|
+
"@babel/helpers": "npm:^7.26.10"
|
|
95
|
+
"@babel/parser": "npm:^7.26.10"
|
|
96
96
|
"@babel/template": "npm:^7.26.9"
|
|
97
|
-
"@babel/traverse": "npm:^7.26.
|
|
98
|
-
"@babel/types": "npm:^7.26.
|
|
97
|
+
"@babel/traverse": "npm:^7.26.10"
|
|
98
|
+
"@babel/types": "npm:^7.26.10"
|
|
99
99
|
convert-source-map: "npm:^2.0.0"
|
|
100
100
|
debug: "npm:^4.1.0"
|
|
101
101
|
gensync: "npm:^1.0.0-beta.2"
|
|
102
102
|
json5: "npm:^2.2.3"
|
|
103
103
|
semver: "npm:^6.3.1"
|
|
104
|
-
checksum: 10c0/
|
|
104
|
+
checksum: 10c0/e046e0e988ab53841b512ee9d263ca409f6c46e2a999fe53024688b92db394346fa3aeae5ea0866331f62133982eee05a675d22922a4603c3f603aa09a581d62
|
|
105
105
|
languageName: node
|
|
106
106
|
linkType: hard
|
|
107
107
|
|
|
108
|
-
"@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.26.
|
|
109
|
-
version: 7.26.
|
|
110
|
-
resolution: "@babel/generator@npm:7.26.
|
|
108
|
+
"@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.26.10":
|
|
109
|
+
version: 7.26.10
|
|
110
|
+
resolution: "@babel/generator@npm:7.26.10"
|
|
111
111
|
dependencies:
|
|
112
|
-
"@babel/parser": "npm:^7.26.
|
|
113
|
-
"@babel/types": "npm:^7.26.
|
|
112
|
+
"@babel/parser": "npm:^7.26.10"
|
|
113
|
+
"@babel/types": "npm:^7.26.10"
|
|
114
114
|
"@jridgewell/gen-mapping": "npm:^0.3.5"
|
|
115
115
|
"@jridgewell/trace-mapping": "npm:^0.3.25"
|
|
116
116
|
jsesc: "npm:^3.0.2"
|
|
117
|
-
checksum: 10c0/
|
|
117
|
+
checksum: 10c0/88b3b3ea80592fc89349c4e1a145e1386e4042866d2507298adf452bf972f68d13bf699a845e6ab8c028bd52c2247013eb1221b86e1db5c9779faacba9c4b10e
|
|
118
118
|
languageName: node
|
|
119
119
|
linkType: hard
|
|
120
120
|
|
|
@@ -327,13 +327,13 @@ __metadata:
|
|
|
327
327
|
languageName: node
|
|
328
328
|
linkType: hard
|
|
329
329
|
|
|
330
|
-
"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.26.
|
|
331
|
-
version: 7.26.
|
|
332
|
-
resolution: "@babel/helpers@npm:7.26.
|
|
330
|
+
"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.26.10":
|
|
331
|
+
version: 7.26.10
|
|
332
|
+
resolution: "@babel/helpers@npm:7.26.10"
|
|
333
333
|
dependencies:
|
|
334
334
|
"@babel/template": "npm:^7.26.9"
|
|
335
|
-
"@babel/types": "npm:^7.26.
|
|
336
|
-
checksum: 10c0/
|
|
335
|
+
"@babel/types": "npm:^7.26.10"
|
|
336
|
+
checksum: 10c0/f99e1836bcffce96db43158518bb4a24cf266820021f6461092a776cba2dc01d9fc8b1b90979d7643c5c2ab7facc438149064463a52dd528b21c6ab32509784f
|
|
337
337
|
languageName: node
|
|
338
338
|
linkType: hard
|
|
339
339
|
|
|
@@ -349,14 +349,14 @@ __metadata:
|
|
|
349
349
|
languageName: node
|
|
350
350
|
linkType: hard
|
|
351
351
|
|
|
352
|
-
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.11, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.26.9":
|
|
353
|
-
version: 7.26.
|
|
354
|
-
resolution: "@babel/parser@npm:7.26.
|
|
352
|
+
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.11, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.26.10, @babel/parser@npm:^7.26.9":
|
|
353
|
+
version: 7.26.10
|
|
354
|
+
resolution: "@babel/parser@npm:7.26.10"
|
|
355
355
|
dependencies:
|
|
356
|
-
"@babel/types": "npm:^7.26.
|
|
356
|
+
"@babel/types": "npm:^7.26.10"
|
|
357
357
|
bin:
|
|
358
358
|
parser: ./bin/babel-parser.js
|
|
359
|
-
checksum: 10c0/
|
|
359
|
+
checksum: 10c0/c47f5c0f63cd12a663e9dc94a635f9efbb5059d98086a92286d7764357c66bceba18ccbe79333e01e9be3bfb8caba34b3aaebfd8e62c3d5921c8cf907267be75
|
|
360
360
|
languageName: node
|
|
361
361
|
linkType: hard
|
|
362
362
|
|
|
@@ -1510,21 +1510,21 @@ __metadata:
|
|
|
1510
1510
|
linkType: hard
|
|
1511
1511
|
|
|
1512
1512
|
"@babel/runtime-corejs3@npm:^7.10.2":
|
|
1513
|
-
version: 7.26.
|
|
1514
|
-
resolution: "@babel/runtime-corejs3@npm:7.26.
|
|
1513
|
+
version: 7.26.10
|
|
1514
|
+
resolution: "@babel/runtime-corejs3@npm:7.26.10"
|
|
1515
1515
|
dependencies:
|
|
1516
1516
|
core-js-pure: "npm:^3.30.2"
|
|
1517
1517
|
regenerator-runtime: "npm:^0.14.0"
|
|
1518
|
-
checksum: 10c0/
|
|
1518
|
+
checksum: 10c0/897b61d84809d6e63e08566d436cd08a3a78f218283641bb53533948d4bcd5524c6a1f83613e20485cf7fa8d054da20dd9039d17e06c92cf282f25d4d4f57250
|
|
1519
1519
|
languageName: node
|
|
1520
1520
|
linkType: hard
|
|
1521
1521
|
|
|
1522
1522
|
"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.10.2, @babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.13.10, @babel/runtime@npm:^7.13.6, @babel/runtime@npm:^7.13.8, @babel/runtime@npm:^7.14.0, @babel/runtime@npm:^7.14.8, @babel/runtime@npm:^7.16.3, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.8, @babel/runtime@npm:^7.3.1, @babel/runtime@npm:^7.4.4, @babel/runtime@npm:^7.5.0, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.6.2, @babel/runtime@npm:^7.6.3, @babel/runtime@npm:^7.7.2, @babel/runtime@npm:^7.7.6, @babel/runtime@npm:^7.8.4, @babel/runtime@npm:^7.8.7":
|
|
1523
|
-
version: 7.26.
|
|
1524
|
-
resolution: "@babel/runtime@npm:7.26.
|
|
1523
|
+
version: 7.26.10
|
|
1524
|
+
resolution: "@babel/runtime@npm:7.26.10"
|
|
1525
1525
|
dependencies:
|
|
1526
1526
|
regenerator-runtime: "npm:^0.14.0"
|
|
1527
|
-
checksum: 10c0/
|
|
1527
|
+
checksum: 10c0/6dc6d88c7908f505c4f7770fb4677dfa61f68f659b943c2be1f2a99cb6680343462867abf2d49822adc435932919b36c77ac60125793e719ea8745f2073d3745
|
|
1528
1528
|
languageName: node
|
|
1529
1529
|
linkType: hard
|
|
1530
1530
|
|
|
@@ -1539,28 +1539,28 @@ __metadata:
|
|
|
1539
1539
|
languageName: node
|
|
1540
1540
|
linkType: hard
|
|
1541
1541
|
|
|
1542
|
-
"@babel/traverse@npm:^7.1.6, @babel/traverse@npm:^7.12.11, @babel/traverse@npm:^7.12.9, @babel/traverse@npm:^7.13.0, @babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.26.8, @babel/traverse@npm:^7.26.9":
|
|
1543
|
-
version: 7.26.
|
|
1544
|
-
resolution: "@babel/traverse@npm:7.26.
|
|
1542
|
+
"@babel/traverse@npm:^7.1.6, @babel/traverse@npm:^7.12.11, @babel/traverse@npm:^7.12.9, @babel/traverse@npm:^7.13.0, @babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.26.10, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.26.8, @babel/traverse@npm:^7.26.9":
|
|
1543
|
+
version: 7.26.10
|
|
1544
|
+
resolution: "@babel/traverse@npm:7.26.10"
|
|
1545
1545
|
dependencies:
|
|
1546
1546
|
"@babel/code-frame": "npm:^7.26.2"
|
|
1547
|
-
"@babel/generator": "npm:^7.26.
|
|
1548
|
-
"@babel/parser": "npm:^7.26.
|
|
1547
|
+
"@babel/generator": "npm:^7.26.10"
|
|
1548
|
+
"@babel/parser": "npm:^7.26.10"
|
|
1549
1549
|
"@babel/template": "npm:^7.26.9"
|
|
1550
|
-
"@babel/types": "npm:^7.26.
|
|
1550
|
+
"@babel/types": "npm:^7.26.10"
|
|
1551
1551
|
debug: "npm:^4.3.1"
|
|
1552
1552
|
globals: "npm:^11.1.0"
|
|
1553
|
-
checksum: 10c0/
|
|
1553
|
+
checksum: 10c0/4e86bb4e3c30a6162bb91df86329df79d96566c3e2d9ccba04f108c30473a3a4fd360d9990531493d90f6a12004f10f616bf9b9229ca30c816b708615e9de2ac
|
|
1554
1554
|
languageName: node
|
|
1555
1555
|
linkType: hard
|
|
1556
1556
|
|
|
1557
|
-
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.11, @babel/types@npm:^7.12.7, @babel/types@npm:^7.2.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.9, @babel/types@npm:^7.4.4":
|
|
1558
|
-
version: 7.26.
|
|
1559
|
-
resolution: "@babel/types@npm:7.26.
|
|
1557
|
+
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.11, @babel/types@npm:^7.12.7, @babel/types@npm:^7.2.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.10, @babel/types@npm:^7.26.9, @babel/types@npm:^7.4.4":
|
|
1558
|
+
version: 7.26.10
|
|
1559
|
+
resolution: "@babel/types@npm:7.26.10"
|
|
1560
1560
|
dependencies:
|
|
1561
1561
|
"@babel/helper-string-parser": "npm:^7.25.9"
|
|
1562
1562
|
"@babel/helper-validator-identifier": "npm:^7.25.9"
|
|
1563
|
-
checksum: 10c0/
|
|
1563
|
+
checksum: 10c0/7a7f83f568bfc3dfabfaf9ae3a97ab5c061726c0afa7dcd94226d4f84a81559da368ed79671e3a8039d16f12476cf110381a377ebdea07587925f69628200dac
|
|
1564
1564
|
languageName: node
|
|
1565
1565
|
linkType: hard
|
|
1566
1566
|
|
|
@@ -2651,7 +2651,7 @@ __metadata:
|
|
|
2651
2651
|
vite-plugin-svgr: "npm:4.2.0"
|
|
2652
2652
|
vite-tsconfig-paths: "npm:5.0.1"
|
|
2653
2653
|
peerDependencies:
|
|
2654
|
-
"@licklist/core": 0.31.2-dev.
|
|
2654
|
+
"@licklist/core": 0.31.2-dev.16
|
|
2655
2655
|
"@licklist/eslint-config": 0.5.6
|
|
2656
2656
|
"@licklist/plugins": 0.35.1-dev.8
|
|
2657
2657
|
lodash: 4.17.21
|
|
@@ -3303,135 +3303,135 @@ __metadata:
|
|
|
3303
3303
|
languageName: node
|
|
3304
3304
|
linkType: hard
|
|
3305
3305
|
|
|
3306
|
-
"@rollup/rollup-android-arm-eabi@npm:4.
|
|
3307
|
-
version: 4.
|
|
3308
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.
|
|
3306
|
+
"@rollup/rollup-android-arm-eabi@npm:4.36.0":
|
|
3307
|
+
version: 4.36.0
|
|
3308
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.36.0"
|
|
3309
3309
|
conditions: os=android & cpu=arm
|
|
3310
3310
|
languageName: node
|
|
3311
3311
|
linkType: hard
|
|
3312
3312
|
|
|
3313
|
-
"@rollup/rollup-android-arm64@npm:4.
|
|
3314
|
-
version: 4.
|
|
3315
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.
|
|
3313
|
+
"@rollup/rollup-android-arm64@npm:4.36.0":
|
|
3314
|
+
version: 4.36.0
|
|
3315
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.36.0"
|
|
3316
3316
|
conditions: os=android & cpu=arm64
|
|
3317
3317
|
languageName: node
|
|
3318
3318
|
linkType: hard
|
|
3319
3319
|
|
|
3320
|
-
"@rollup/rollup-darwin-arm64@npm:4.
|
|
3321
|
-
version: 4.
|
|
3322
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.
|
|
3320
|
+
"@rollup/rollup-darwin-arm64@npm:4.36.0":
|
|
3321
|
+
version: 4.36.0
|
|
3322
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.36.0"
|
|
3323
3323
|
conditions: os=darwin & cpu=arm64
|
|
3324
3324
|
languageName: node
|
|
3325
3325
|
linkType: hard
|
|
3326
3326
|
|
|
3327
|
-
"@rollup/rollup-darwin-x64@npm:4.
|
|
3328
|
-
version: 4.
|
|
3329
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.
|
|
3327
|
+
"@rollup/rollup-darwin-x64@npm:4.36.0":
|
|
3328
|
+
version: 4.36.0
|
|
3329
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.36.0"
|
|
3330
3330
|
conditions: os=darwin & cpu=x64
|
|
3331
3331
|
languageName: node
|
|
3332
3332
|
linkType: hard
|
|
3333
3333
|
|
|
3334
|
-
"@rollup/rollup-freebsd-arm64@npm:4.
|
|
3335
|
-
version: 4.
|
|
3336
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.
|
|
3334
|
+
"@rollup/rollup-freebsd-arm64@npm:4.36.0":
|
|
3335
|
+
version: 4.36.0
|
|
3336
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.36.0"
|
|
3337
3337
|
conditions: os=freebsd & cpu=arm64
|
|
3338
3338
|
languageName: node
|
|
3339
3339
|
linkType: hard
|
|
3340
3340
|
|
|
3341
|
-
"@rollup/rollup-freebsd-x64@npm:4.
|
|
3342
|
-
version: 4.
|
|
3343
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.
|
|
3341
|
+
"@rollup/rollup-freebsd-x64@npm:4.36.0":
|
|
3342
|
+
version: 4.36.0
|
|
3343
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.36.0"
|
|
3344
3344
|
conditions: os=freebsd & cpu=x64
|
|
3345
3345
|
languageName: node
|
|
3346
3346
|
linkType: hard
|
|
3347
3347
|
|
|
3348
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.
|
|
3349
|
-
version: 4.
|
|
3350
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.
|
|
3348
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.36.0":
|
|
3349
|
+
version: 4.36.0
|
|
3350
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.36.0"
|
|
3351
3351
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3352
3352
|
languageName: node
|
|
3353
3353
|
linkType: hard
|
|
3354
3354
|
|
|
3355
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.
|
|
3356
|
-
version: 4.
|
|
3357
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.
|
|
3355
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.36.0":
|
|
3356
|
+
version: 4.36.0
|
|
3357
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.36.0"
|
|
3358
3358
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3359
3359
|
languageName: node
|
|
3360
3360
|
linkType: hard
|
|
3361
3361
|
|
|
3362
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.
|
|
3363
|
-
version: 4.
|
|
3364
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.
|
|
3362
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.36.0":
|
|
3363
|
+
version: 4.36.0
|
|
3364
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.36.0"
|
|
3365
3365
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3366
3366
|
languageName: node
|
|
3367
3367
|
linkType: hard
|
|
3368
3368
|
|
|
3369
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.
|
|
3370
|
-
version: 4.
|
|
3371
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.
|
|
3369
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.36.0":
|
|
3370
|
+
version: 4.36.0
|
|
3371
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.36.0"
|
|
3372
3372
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3373
3373
|
languageName: node
|
|
3374
3374
|
linkType: hard
|
|
3375
3375
|
|
|
3376
|
-
"@rollup/rollup-linux-loongarch64-gnu@npm:4.
|
|
3377
|
-
version: 4.
|
|
3378
|
-
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.
|
|
3376
|
+
"@rollup/rollup-linux-loongarch64-gnu@npm:4.36.0":
|
|
3377
|
+
version: 4.36.0
|
|
3378
|
+
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.36.0"
|
|
3379
3379
|
conditions: os=linux & cpu=loong64 & libc=glibc
|
|
3380
3380
|
languageName: node
|
|
3381
3381
|
linkType: hard
|
|
3382
3382
|
|
|
3383
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.
|
|
3384
|
-
version: 4.
|
|
3385
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.
|
|
3383
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.36.0":
|
|
3384
|
+
version: 4.36.0
|
|
3385
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.36.0"
|
|
3386
3386
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3387
3387
|
languageName: node
|
|
3388
3388
|
linkType: hard
|
|
3389
3389
|
|
|
3390
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.
|
|
3391
|
-
version: 4.
|
|
3392
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.
|
|
3390
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.36.0":
|
|
3391
|
+
version: 4.36.0
|
|
3392
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.36.0"
|
|
3393
3393
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3394
3394
|
languageName: node
|
|
3395
3395
|
linkType: hard
|
|
3396
3396
|
|
|
3397
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.
|
|
3398
|
-
version: 4.
|
|
3399
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.
|
|
3397
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.36.0":
|
|
3398
|
+
version: 4.36.0
|
|
3399
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.36.0"
|
|
3400
3400
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3401
3401
|
languageName: node
|
|
3402
3402
|
linkType: hard
|
|
3403
3403
|
|
|
3404
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.
|
|
3405
|
-
version: 4.
|
|
3406
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.
|
|
3404
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.36.0":
|
|
3405
|
+
version: 4.36.0
|
|
3406
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.36.0"
|
|
3407
3407
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3408
3408
|
languageName: node
|
|
3409
3409
|
linkType: hard
|
|
3410
3410
|
|
|
3411
|
-
"@rollup/rollup-linux-x64-musl@npm:4.
|
|
3412
|
-
version: 4.
|
|
3413
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.
|
|
3411
|
+
"@rollup/rollup-linux-x64-musl@npm:4.36.0":
|
|
3412
|
+
version: 4.36.0
|
|
3413
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.36.0"
|
|
3414
3414
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3415
3415
|
languageName: node
|
|
3416
3416
|
linkType: hard
|
|
3417
3417
|
|
|
3418
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.
|
|
3419
|
-
version: 4.
|
|
3420
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.
|
|
3418
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.36.0":
|
|
3419
|
+
version: 4.36.0
|
|
3420
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.36.0"
|
|
3421
3421
|
conditions: os=win32 & cpu=arm64
|
|
3422
3422
|
languageName: node
|
|
3423
3423
|
linkType: hard
|
|
3424
3424
|
|
|
3425
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.
|
|
3426
|
-
version: 4.
|
|
3427
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.
|
|
3425
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.36.0":
|
|
3426
|
+
version: 4.36.0
|
|
3427
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.36.0"
|
|
3428
3428
|
conditions: os=win32 & cpu=ia32
|
|
3429
3429
|
languageName: node
|
|
3430
3430
|
linkType: hard
|
|
3431
3431
|
|
|
3432
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.
|
|
3433
|
-
version: 4.
|
|
3434
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.
|
|
3432
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.36.0":
|
|
3433
|
+
version: 4.36.0
|
|
3434
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.36.0"
|
|
3435
3435
|
conditions: os=win32 & cpu=x64
|
|
3436
3436
|
languageName: node
|
|
3437
3437
|
linkType: hard
|
|
@@ -5964,11 +5964,11 @@ __metadata:
|
|
|
5964
5964
|
linkType: hard
|
|
5965
5965
|
|
|
5966
5966
|
"@types/react@npm:*, @types/react@npm:>=16.14.8, @types/react@npm:>=16.9.11":
|
|
5967
|
-
version: 19.0.
|
|
5968
|
-
resolution: "@types/react@npm:19.0.
|
|
5967
|
+
version: 19.0.11
|
|
5968
|
+
resolution: "@types/react@npm:19.0.11"
|
|
5969
5969
|
dependencies:
|
|
5970
5970
|
csstype: "npm:^3.0.2"
|
|
5971
|
-
checksum: 10c0/
|
|
5971
|
+
checksum: 10c0/386cdde579b60e22160d6894a985655742703346bdc71fed9809f8f90ca87e2dd0252e86b81f92621a2c1de8d0fbf35e3963996db8c451cc670570061ed62f29
|
|
5972
5972
|
languageName: node
|
|
5973
5973
|
linkType: hard
|
|
5974
5974
|
|
|
@@ -7096,17 +7096,18 @@ __metadata:
|
|
|
7096
7096
|
linkType: hard
|
|
7097
7097
|
|
|
7098
7098
|
"array.prototype.reduce@npm:^1.0.6":
|
|
7099
|
-
version: 1.0.
|
|
7100
|
-
resolution: "array.prototype.reduce@npm:1.0.
|
|
7099
|
+
version: 1.0.8
|
|
7100
|
+
resolution: "array.prototype.reduce@npm:1.0.8"
|
|
7101
7101
|
dependencies:
|
|
7102
|
-
call-bind: "npm:^1.0.
|
|
7102
|
+
call-bind: "npm:^1.0.8"
|
|
7103
|
+
call-bound: "npm:^1.0.4"
|
|
7103
7104
|
define-properties: "npm:^1.2.1"
|
|
7104
|
-
es-abstract: "npm:^1.23.
|
|
7105
|
+
es-abstract: "npm:^1.23.9"
|
|
7105
7106
|
es-array-method-boxes-properly: "npm:^1.0.0"
|
|
7106
7107
|
es-errors: "npm:^1.3.0"
|
|
7107
|
-
es-object-atoms: "npm:^1.
|
|
7108
|
-
is-string: "npm:^1.
|
|
7109
|
-
checksum: 10c0/
|
|
7108
|
+
es-object-atoms: "npm:^1.1.1"
|
|
7109
|
+
is-string: "npm:^1.1.1"
|
|
7110
|
+
checksum: 10c0/0a4635f468e9161f51c4a87f80057b8b3c27b0ccc3e40ad7ea77cd1e147f1119f46977b0452f3fa325f543126200f2caf8c1390bd5303edf90d9c1dcd7d5a8a0
|
|
7110
7111
|
languageName: node
|
|
7111
7112
|
linkType: hard
|
|
7112
7113
|
|
|
@@ -8100,9 +8101,9 @@ __metadata:
|
|
|
8100
8101
|
linkType: hard
|
|
8101
8102
|
|
|
8102
8103
|
"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001109, caniuse-lite@npm:^1.0.30001125, caniuse-lite@npm:^1.0.30001646, caniuse-lite@npm:^1.0.30001688":
|
|
8103
|
-
version: 1.0.
|
|
8104
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8105
|
-
checksum: 10c0/
|
|
8104
|
+
version: 1.0.30001706
|
|
8105
|
+
resolution: "caniuse-lite@npm:1.0.30001706"
|
|
8106
|
+
checksum: 10c0/b502d0a509611fd5b009e1123d482e983696984b6b749c3f485fd8d02cc58376c59cf0bb15f22fa2d337da104970edd27dd525d4663cebc728e26ac4adedff0d
|
|
8106
8107
|
languageName: node
|
|
8107
8108
|
linkType: hard
|
|
8108
8109
|
|
|
@@ -9889,9 +9890,9 @@ __metadata:
|
|
|
9889
9890
|
linkType: hard
|
|
9890
9891
|
|
|
9891
9892
|
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.73":
|
|
9892
|
-
version: 1.5.
|
|
9893
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9894
|
-
checksum: 10c0/
|
|
9893
|
+
version: 1.5.120
|
|
9894
|
+
resolution: "electron-to-chromium@npm:1.5.120"
|
|
9895
|
+
checksum: 10c0/807c88e912748665a1eacd356672df88ce1ee4e6476c2bef084ee9e7ba184d7a94512a5f98218ab6deab920e78cbaec40f6cba75277c381fcc294e538a25d06d
|
|
9895
9896
|
languageName: node
|
|
9896
9897
|
linkType: hard
|
|
9897
9898
|
|
|
@@ -10098,7 +10099,7 @@ __metadata:
|
|
|
10098
10099
|
languageName: node
|
|
10099
10100
|
linkType: hard
|
|
10100
10101
|
|
|
10101
|
-
"es-abstract@npm:^1.17.5, es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.
|
|
10102
|
+
"es-abstract@npm:^1.17.5, es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6, es-abstract@npm:^1.23.9":
|
|
10102
10103
|
version: 1.23.9
|
|
10103
10104
|
resolution: "es-abstract@npm:1.23.9"
|
|
10104
10105
|
dependencies:
|
|
@@ -13804,9 +13805,9 @@ __metadata:
|
|
|
13804
13805
|
linkType: hard
|
|
13805
13806
|
|
|
13806
13807
|
"libphonenumber-js@npm:^1.9.11":
|
|
13807
|
-
version: 1.12.
|
|
13808
|
-
resolution: "libphonenumber-js@npm:1.12.
|
|
13809
|
-
checksum: 10c0/
|
|
13808
|
+
version: 1.12.6
|
|
13809
|
+
resolution: "libphonenumber-js@npm:1.12.6"
|
|
13810
|
+
checksum: 10c0/7218d8ce96a19c76c677a89da41c6b55c89c07f64999b464b5fde605d2abfcbefe2afc5bbb13f08be0f5a3dfa9ac27ac9b7ab7b65450563467fa82fb91579389
|
|
13810
13811
|
languageName: node
|
|
13811
13812
|
linkType: hard
|
|
13812
13813
|
|
|
@@ -14966,11 +14967,11 @@ __metadata:
|
|
|
14966
14967
|
linkType: hard
|
|
14967
14968
|
|
|
14968
14969
|
"nanoid@npm:^3.3.7, nanoid@npm:^3.3.8":
|
|
14969
|
-
version: 3.3.
|
|
14970
|
-
resolution: "nanoid@npm:3.3.
|
|
14970
|
+
version: 3.3.10
|
|
14971
|
+
resolution: "nanoid@npm:3.3.10"
|
|
14971
14972
|
bin:
|
|
14972
14973
|
nanoid: bin/nanoid.cjs
|
|
14973
|
-
checksum: 10c0/
|
|
14974
|
+
checksum: 10c0/34eca53d4d95cb538b05a9fa07e4b2ab941906852202edb00824c8004d71d34592704e40b0ae608bf756b1ffd91ff9359d2ea59f8d92e1a7b769e0ca46368e84
|
|
14974
14975
|
languageName: node
|
|
14975
14976
|
linkType: hard
|
|
14976
14977
|
|
|
@@ -15318,13 +15319,14 @@ __metadata:
|
|
|
15318
15319
|
linkType: hard
|
|
15319
15320
|
|
|
15320
15321
|
"object.entries@npm:^1.1.0, object.entries@npm:^1.1.2, object.entries@npm:^1.1.8":
|
|
15321
|
-
version: 1.1.
|
|
15322
|
-
resolution: "object.entries@npm:1.1.
|
|
15322
|
+
version: 1.1.9
|
|
15323
|
+
resolution: "object.entries@npm:1.1.9"
|
|
15323
15324
|
dependencies:
|
|
15324
|
-
call-bind: "npm:^1.0.
|
|
15325
|
+
call-bind: "npm:^1.0.8"
|
|
15326
|
+
call-bound: "npm:^1.0.4"
|
|
15325
15327
|
define-properties: "npm:^1.2.1"
|
|
15326
|
-
es-object-atoms: "npm:^1.
|
|
15327
|
-
checksum: 10c0/
|
|
15328
|
+
es-object-atoms: "npm:^1.1.1"
|
|
15329
|
+
checksum: 10c0/d4b8c1e586650407da03370845f029aa14076caca4e4d4afadbc69cfb5b78035fd3ee7be417141abdb0258fa142e59b11923b4c44d8b1255b28f5ffcc50da7db
|
|
15328
15330
|
languageName: node
|
|
15329
15331
|
linkType: hard
|
|
15330
15332
|
|
|
@@ -16953,12 +16955,12 @@ __metadata:
|
|
|
16953
16955
|
linkType: hard
|
|
16954
16956
|
|
|
16955
16957
|
"prosemirror-inputrules@npm:^1.2.0":
|
|
16956
|
-
version: 1.
|
|
16957
|
-
resolution: "prosemirror-inputrules@npm:1.
|
|
16958
|
+
version: 1.5.0
|
|
16959
|
+
resolution: "prosemirror-inputrules@npm:1.5.0"
|
|
16958
16960
|
dependencies:
|
|
16959
16961
|
prosemirror-state: "npm:^1.0.0"
|
|
16960
16962
|
prosemirror-transform: "npm:^1.0.0"
|
|
16961
|
-
checksum: 10c0/
|
|
16963
|
+
checksum: 10c0/5d69b8b148c530ddcf5b99d448e8e8fd60c088da2de222838d2a0b63c7c92476ad09a434859e42b96291130f6fda48fa9a0824534c9b6fc6d15bb302f6359730
|
|
16962
16964
|
languageName: node
|
|
16963
16965
|
linkType: hard
|
|
16964
16966
|
|
|
@@ -16973,13 +16975,13 @@ __metadata:
|
|
|
16973
16975
|
linkType: hard
|
|
16974
16976
|
|
|
16975
16977
|
"prosemirror-markdown@npm:^1.10.1":
|
|
16976
|
-
version: 1.13.
|
|
16977
|
-
resolution: "prosemirror-markdown@npm:1.13.
|
|
16978
|
+
version: 1.13.2
|
|
16979
|
+
resolution: "prosemirror-markdown@npm:1.13.2"
|
|
16978
16980
|
dependencies:
|
|
16979
16981
|
"@types/markdown-it": "npm:^14.0.0"
|
|
16980
16982
|
markdown-it: "npm:^14.0.0"
|
|
16981
|
-
prosemirror-model: "npm:^1.
|
|
16982
|
-
checksum: 10c0/
|
|
16983
|
+
prosemirror-model: "npm:^1.25.0"
|
|
16984
|
+
checksum: 10c0/53c48ef0d0d18ca0a7c39bdb18485508bfe10582f9b1d04d7114e6f6e9678a4481b318f310b19d4e95f65d947fbe6348affddcb909ad9b8c9f865cc07ceff22b
|
|
16983
16985
|
languageName: node
|
|
16984
16986
|
linkType: hard
|
|
16985
16987
|
|
|
@@ -16995,21 +16997,21 @@ __metadata:
|
|
|
16995
16997
|
languageName: node
|
|
16996
16998
|
linkType: hard
|
|
16997
16999
|
|
|
16998
|
-
"prosemirror-model@npm:^1.0.0, prosemirror-model@npm:^1.16.1, prosemirror-model@npm:^1.18.1, prosemirror-model@npm:^1.
|
|
16999
|
-
version: 1.
|
|
17000
|
-
resolution: "prosemirror-model@npm:1.
|
|
17000
|
+
"prosemirror-model@npm:^1.0.0, prosemirror-model@npm:^1.16.1, prosemirror-model@npm:^1.18.1, prosemirror-model@npm:^1.20.0, prosemirror-model@npm:^1.21.0, prosemirror-model@npm:^1.24.1, prosemirror-model@npm:^1.25.0":
|
|
17001
|
+
version: 1.25.0
|
|
17002
|
+
resolution: "prosemirror-model@npm:1.25.0"
|
|
17001
17003
|
dependencies:
|
|
17002
17004
|
orderedmap: "npm:^2.0.0"
|
|
17003
|
-
checksum: 10c0/
|
|
17005
|
+
checksum: 10c0/5845436dfa4da6334622942d3487a6b48c1fb1be0379432733d804a6889c3fcdaf9737eb7b625c7041df56664580fad6c153d4e698778051f19e7f73afcef7b8
|
|
17004
17006
|
languageName: node
|
|
17005
17007
|
linkType: hard
|
|
17006
17008
|
|
|
17007
17009
|
"prosemirror-schema-basic@npm:^1.2.0":
|
|
17008
|
-
version: 1.2.
|
|
17009
|
-
resolution: "prosemirror-schema-basic@npm:1.2.
|
|
17010
|
+
version: 1.2.4
|
|
17011
|
+
resolution: "prosemirror-schema-basic@npm:1.2.4"
|
|
17010
17012
|
dependencies:
|
|
17011
|
-
prosemirror-model: "npm:^1.
|
|
17012
|
-
checksum: 10c0/
|
|
17013
|
+
prosemirror-model: "npm:^1.25.0"
|
|
17014
|
+
checksum: 10c0/cd86f88a5eb51ab5459aa91e6824e73ec15b0f1546fee89be7826663663ef11eefaacacda5a14c43b4c8d8477fd653642418b9c7d485bb92e323f9b8e7607a78
|
|
17013
17015
|
languageName: node
|
|
17014
17016
|
linkType: hard
|
|
17015
17017
|
|
|
@@ -18087,15 +18089,15 @@ __metadata:
|
|
|
18087
18089
|
linkType: hard
|
|
18088
18090
|
|
|
18089
18091
|
"react-textarea-autosize@npm:^8.3.0":
|
|
18090
|
-
version: 8.5.
|
|
18091
|
-
resolution: "react-textarea-autosize@npm:8.5.
|
|
18092
|
+
version: 8.5.8
|
|
18093
|
+
resolution: "react-textarea-autosize@npm:8.5.8"
|
|
18092
18094
|
dependencies:
|
|
18093
18095
|
"@babel/runtime": "npm:^7.20.13"
|
|
18094
18096
|
use-composed-ref: "npm:^1.3.0"
|
|
18095
18097
|
use-latest: "npm:^1.2.1"
|
|
18096
18098
|
peerDependencies:
|
|
18097
18099
|
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
18098
|
-
checksum: 10c0/
|
|
18100
|
+
checksum: 10c0/3d7add9773fd3dc189a6668efb82c1d2d5238ee5b7e933204f5f7da9df8daef81df50b36ca573a57beaa31b2727c6176ea806422790ad23be6cf7f5a5f71bbb9
|
|
18099
18101
|
languageName: node
|
|
18100
18102
|
linkType: hard
|
|
18101
18103
|
|
|
@@ -18928,28 +18930,28 @@ __metadata:
|
|
|
18928
18930
|
linkType: hard
|
|
18929
18931
|
|
|
18930
18932
|
"rollup@npm:^4.13.0":
|
|
18931
|
-
version: 4.
|
|
18932
|
-
resolution: "rollup@npm:4.
|
|
18933
|
-
dependencies:
|
|
18934
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.
|
|
18935
|
-
"@rollup/rollup-android-arm64": "npm:4.
|
|
18936
|
-
"@rollup/rollup-darwin-arm64": "npm:4.
|
|
18937
|
-
"@rollup/rollup-darwin-x64": "npm:4.
|
|
18938
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.
|
|
18939
|
-
"@rollup/rollup-freebsd-x64": "npm:4.
|
|
18940
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.
|
|
18941
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.
|
|
18942
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.
|
|
18943
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.
|
|
18944
|
-
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.
|
|
18945
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.
|
|
18946
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.
|
|
18947
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.
|
|
18948
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.
|
|
18949
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.
|
|
18950
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.
|
|
18951
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.
|
|
18952
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.
|
|
18933
|
+
version: 4.36.0
|
|
18934
|
+
resolution: "rollup@npm:4.36.0"
|
|
18935
|
+
dependencies:
|
|
18936
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.36.0"
|
|
18937
|
+
"@rollup/rollup-android-arm64": "npm:4.36.0"
|
|
18938
|
+
"@rollup/rollup-darwin-arm64": "npm:4.36.0"
|
|
18939
|
+
"@rollup/rollup-darwin-x64": "npm:4.36.0"
|
|
18940
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.36.0"
|
|
18941
|
+
"@rollup/rollup-freebsd-x64": "npm:4.36.0"
|
|
18942
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.36.0"
|
|
18943
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.36.0"
|
|
18944
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.36.0"
|
|
18945
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.36.0"
|
|
18946
|
+
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.36.0"
|
|
18947
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.36.0"
|
|
18948
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.36.0"
|
|
18949
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.36.0"
|
|
18950
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.36.0"
|
|
18951
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.36.0"
|
|
18952
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.36.0"
|
|
18953
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.36.0"
|
|
18954
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.36.0"
|
|
18953
18955
|
"@types/estree": "npm:1.0.6"
|
|
18954
18956
|
fsevents: "npm:~2.3.2"
|
|
18955
18957
|
dependenciesMeta:
|
|
@@ -18995,7 +18997,7 @@ __metadata:
|
|
|
18995
18997
|
optional: true
|
|
18996
18998
|
bin:
|
|
18997
18999
|
rollup: dist/bin/rollup
|
|
18998
|
-
checksum: 10c0/
|
|
19000
|
+
checksum: 10c0/52ad34ba18edb3613253ecbc7db5c8d6067ed103d8786051e96d42bcb383f7473bbda91b25297435b8a531fe308726cf1bb978456b9fcce044e4885510d73252
|
|
18999
19001
|
languageName: node
|
|
19000
19002
|
linkType: hard
|
|
19001
19003
|
|
|
@@ -20085,14 +20087,15 @@ __metadata:
|
|
|
20085
20087
|
linkType: hard
|
|
20086
20088
|
|
|
20087
20089
|
"string.prototype.padstart@npm:^3.0.0":
|
|
20088
|
-
version: 3.1.
|
|
20089
|
-
resolution: "string.prototype.padstart@npm:3.1.
|
|
20090
|
+
version: 3.1.7
|
|
20091
|
+
resolution: "string.prototype.padstart@npm:3.1.7"
|
|
20090
20092
|
dependencies:
|
|
20091
|
-
call-bind: "npm:^1.0.
|
|
20093
|
+
call-bind: "npm:^1.0.8"
|
|
20094
|
+
call-bound: "npm:^1.0.4"
|
|
20092
20095
|
define-properties: "npm:^1.2.1"
|
|
20093
|
-
es-abstract: "npm:^1.23.
|
|
20094
|
-
es-object-atoms: "npm:^1.
|
|
20095
|
-
checksum: 10c0/
|
|
20096
|
+
es-abstract: "npm:^1.23.9"
|
|
20097
|
+
es-object-atoms: "npm:^1.1.1"
|
|
20098
|
+
checksum: 10c0/b554810e1b65c68c3a1b5bf38d0b17830116491b7ddeeaa4504588cb79e6c614beebe71f4047c5f3ca8fdf5502ef6a0c3770f4374ce5144b1660b81462014e4e
|
|
20096
20099
|
languageName: node
|
|
20097
20100
|
linkType: hard
|
|
20098
20101
|
|