@licklist/design 0.75.1-dev.2 → 0.75.1-dev.3
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/fullscreen-loader/FullscreenLoader.d.ts +4 -0
- package/dist/fullscreen-loader/FullscreenLoader.d.ts.map +1 -0
- package/dist/fullscreen-loader/FullscreenLoader.js +73 -0
- package/dist/fullscreen-loader/context.d.ts +3 -0
- package/dist/fullscreen-loader/context.d.ts.map +1 -0
- package/dist/fullscreen-loader/context.js +10 -0
- package/dist/fullscreen-loader/index.d.ts +4 -0
- package/dist/fullscreen-loader/index.d.ts.map +1 -0
- package/dist/fullscreen-loader/useFullscreenLoader.d.ts +2 -0
- package/dist/fullscreen-loader/useFullscreenLoader.d.ts.map +1 -0
- package/dist/fullscreen-loader/useFullscreenLoader.js +8 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/package.json +1 -1
- package/src/fullscreen-loader/FullscreenLoader.tsx +19 -0
- package/src/fullscreen-loader/context.ts +5 -0
- package/src/fullscreen-loader/index.ts +3 -0
- package/src/fullscreen-loader/useFullscreenLoader.ts +4 -0
- package/src/index.ts +1 -0
- package/yarn.lock +246 -234
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FullscreenLoader.d.ts","sourceRoot":"","sources":["../../src/fullscreen-loader/FullscreenLoader.tsx"],"names":[],"mappings":"AAIA,eAAO,MAAM,wBAAwB;;6CAcpC,CAAA"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { LoadingOverlay } from '@mantine/core';
|
|
3
|
+
import { useState } from 'react';
|
|
4
|
+
import { FullscreenLoaderContext } from './context.js';
|
|
5
|
+
|
|
6
|
+
function _array_like_to_array(arr, len) {
|
|
7
|
+
if (len == null || len > arr.length) len = arr.length;
|
|
8
|
+
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
9
|
+
return arr2;
|
|
10
|
+
}
|
|
11
|
+
function _array_with_holes(arr) {
|
|
12
|
+
if (Array.isArray(arr)) return arr;
|
|
13
|
+
}
|
|
14
|
+
function _iterable_to_array_limit(arr, i) {
|
|
15
|
+
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
16
|
+
if (_i == null) return;
|
|
17
|
+
var _arr = [];
|
|
18
|
+
var _n = true;
|
|
19
|
+
var _d = false;
|
|
20
|
+
var _s, _e;
|
|
21
|
+
try {
|
|
22
|
+
for(_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true){
|
|
23
|
+
_arr.push(_s.value);
|
|
24
|
+
if (i && _arr.length === i) break;
|
|
25
|
+
}
|
|
26
|
+
} catch (err) {
|
|
27
|
+
_d = true;
|
|
28
|
+
_e = err;
|
|
29
|
+
} finally{
|
|
30
|
+
try {
|
|
31
|
+
if (!_n && _i["return"] != null) _i["return"]();
|
|
32
|
+
} finally{
|
|
33
|
+
if (_d) throw _e;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
return _arr;
|
|
37
|
+
}
|
|
38
|
+
function _non_iterable_rest() {
|
|
39
|
+
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
40
|
+
}
|
|
41
|
+
function _sliced_to_array(arr, i) {
|
|
42
|
+
return _array_with_holes(arr) || _iterable_to_array_limit(arr, i) || _unsupported_iterable_to_array(arr, i) || _non_iterable_rest();
|
|
43
|
+
}
|
|
44
|
+
function _unsupported_iterable_to_array(o, minLen) {
|
|
45
|
+
if (!o) return;
|
|
46
|
+
if (typeof o === "string") return _array_like_to_array(o, minLen);
|
|
47
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
48
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
49
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
50
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
51
|
+
}
|
|
52
|
+
var FullscreenLoaderProvider = function(param) {
|
|
53
|
+
var children = param.children;
|
|
54
|
+
var _useState = _sliced_to_array(useState(false), 2), visible = _useState[0], setVisible = _useState[1];
|
|
55
|
+
return /*#__PURE__*/ jsxs(FullscreenLoaderContext.Provider, {
|
|
56
|
+
value: [
|
|
57
|
+
visible,
|
|
58
|
+
setVisible
|
|
59
|
+
],
|
|
60
|
+
children: [
|
|
61
|
+
children,
|
|
62
|
+
/*#__PURE__*/ jsx(LoadingOverlay, {
|
|
63
|
+
visible: visible,
|
|
64
|
+
className: "!tw-z-[1050]",
|
|
65
|
+
loaderProps: {
|
|
66
|
+
size: 50
|
|
67
|
+
}
|
|
68
|
+
})
|
|
69
|
+
]
|
|
70
|
+
});
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
export { FullscreenLoaderProvider };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../src/fullscreen-loader/context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,QAAQ,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAE/D,eAAO,MAAM,uBAAuB,uEAEb,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/fullscreen-loader/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAA;AAClC,cAAc,uBAAuB,CAAA;AACrC,cAAc,WAAW,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useFullscreenLoader.d.ts","sourceRoot":"","sources":["../../src/fullscreen-loader/useFullscreenLoader.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,mBAAmB,oFAA4C,CAAA"}
|
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,2BAA2B,CAAA;AACzC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA;AACxB,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,SAAS,CAAA;AACvB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,UAAU,CAAA;AACxB,cAAc,kBAAkB,CAAA;AAChC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,QAAQ,CAAA;AACtB,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,wBAAwB,CAAA;AACtC,cAAc,cAAc,CAAA;AAC5B,cAAc,qBAAqB,CAAA;AACnC,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,0BAA0B,CAAA;AACxC,cAAc,0BAA0B,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,2BAA2B,CAAA;AACzC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA;AACxB,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,SAAS,CAAA;AACvB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,UAAU,CAAA;AACxB,cAAc,kBAAkB,CAAA;AAChC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,QAAQ,CAAA;AACtB,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,wBAAwB,CAAA;AACtC,cAAc,cAAc,CAAA;AAC5B,cAAc,qBAAqB,CAAA;AACnC,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,0BAA0B,CAAA;AACxC,cAAc,0BAA0B,CAAA;AACxC,cAAc,qBAAqB,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -200,6 +200,9 @@ export { getMonthCalendarDates, getWeekCalendarDates } from './calendar/utils/in
|
|
|
200
200
|
export { AvailabilityIndicator } from './availability-indicator/AvailabilityIndicator.js';
|
|
201
201
|
export { NumberOfPeopleInput } from './number-of-people-input/NumberOfPeopleInput.js';
|
|
202
202
|
export { RenderNumberOfPeopleInputComponent } from './number-of-people-input/components/RenderNumberOfPeopleInputComponent.js';
|
|
203
|
+
export { FullscreenLoaderProvider } from './fullscreen-loader/FullscreenLoader.js';
|
|
204
|
+
export { useFullscreenLoader } from './fullscreen-loader/useFullscreenLoader.js';
|
|
205
|
+
export { FullscreenLoaderContext } from './fullscreen-loader/context.js';
|
|
203
206
|
export { default as CountrySelect } from './static/CountrySelect.js';
|
|
204
207
|
export { default as FormCard } from './static/FormCard.js';
|
|
205
208
|
export { default as Image } from './static/Image.js';
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { LoadingOverlay } from '@mantine/core'
|
|
2
|
+
import { useState } from 'react'
|
|
3
|
+
import { FullscreenLoaderContext } from './context'
|
|
4
|
+
|
|
5
|
+
export const FullscreenLoaderProvider = ({ children }) => {
|
|
6
|
+
const [visible, setVisible] = useState(false)
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<FullscreenLoaderContext.Provider value={[visible, setVisible]}>
|
|
10
|
+
{children}
|
|
11
|
+
|
|
12
|
+
<LoadingOverlay
|
|
13
|
+
visible={visible}
|
|
14
|
+
className='!tw-z-[1050]'
|
|
15
|
+
loaderProps={{ size: 50 }}
|
|
16
|
+
/>
|
|
17
|
+
</FullscreenLoaderContext.Provider>
|
|
18
|
+
)
|
|
19
|
+
}
|
package/src/index.ts
CHANGED
package/yarn.lock
CHANGED
|
@@ -52,9 +52,9 @@ __metadata:
|
|
|
52
52
|
linkType: hard
|
|
53
53
|
|
|
54
54
|
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.27.2":
|
|
55
|
-
version: 7.27.
|
|
56
|
-
resolution: "@babel/compat-data@npm:7.27.
|
|
57
|
-
checksum: 10c0/
|
|
55
|
+
version: 7.27.5
|
|
56
|
+
resolution: "@babel/compat-data@npm:7.27.5"
|
|
57
|
+
checksum: 10c0/da2751fcd0b58eea958f2b2f7ff7d6de1280712b709fa1ad054b73dc7d31f589e353bb50479b9dc96007935f3ed3cada68ac5b45ce93086b7122ddc32e60dc00
|
|
58
58
|
languageName: node
|
|
59
59
|
linkType: hard
|
|
60
60
|
|
|
@@ -83,47 +83,47 @@ __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.27.
|
|
87
|
-
resolution: "@babel/core@npm:7.27.
|
|
86
|
+
version: 7.27.4
|
|
87
|
+
resolution: "@babel/core@npm:7.27.4"
|
|
88
88
|
dependencies:
|
|
89
89
|
"@ampproject/remapping": "npm:^2.2.0"
|
|
90
90
|
"@babel/code-frame": "npm:^7.27.1"
|
|
91
|
-
"@babel/generator": "npm:^7.27.
|
|
92
|
-
"@babel/helper-compilation-targets": "npm:^7.27.
|
|
93
|
-
"@babel/helper-module-transforms": "npm:^7.27.
|
|
94
|
-
"@babel/helpers": "npm:^7.27.
|
|
95
|
-
"@babel/parser": "npm:^7.27.
|
|
96
|
-
"@babel/template": "npm:^7.27.
|
|
97
|
-
"@babel/traverse": "npm:^7.27.
|
|
98
|
-
"@babel/types": "npm:^7.27.
|
|
91
|
+
"@babel/generator": "npm:^7.27.3"
|
|
92
|
+
"@babel/helper-compilation-targets": "npm:^7.27.2"
|
|
93
|
+
"@babel/helper-module-transforms": "npm:^7.27.3"
|
|
94
|
+
"@babel/helpers": "npm:^7.27.4"
|
|
95
|
+
"@babel/parser": "npm:^7.27.4"
|
|
96
|
+
"@babel/template": "npm:^7.27.2"
|
|
97
|
+
"@babel/traverse": "npm:^7.27.4"
|
|
98
|
+
"@babel/types": "npm:^7.27.3"
|
|
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/d2d17b106a8d91d3eda754bb3f26b53a12eb7646df73c2b2d2e9b08d90529186bc69e3823f70a96ec6e5719dc2372fb54e14ad499da47ceeb172d2f7008787b5
|
|
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.27.
|
|
109
|
-
version: 7.27.
|
|
110
|
-
resolution: "@babel/generator@npm:7.27.
|
|
108
|
+
"@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.27.3":
|
|
109
|
+
version: 7.27.5
|
|
110
|
+
resolution: "@babel/generator@npm:7.27.5"
|
|
111
111
|
dependencies:
|
|
112
|
-
"@babel/parser": "npm:^7.27.
|
|
113
|
-
"@babel/types": "npm:^7.27.
|
|
112
|
+
"@babel/parser": "npm:^7.27.5"
|
|
113
|
+
"@babel/types": "npm:^7.27.3"
|
|
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/8f649ef4cd81765c832bb11de4d6064b035ffebdecde668ba7abee68a7b0bce5c9feabb5dc5bb8aeba5bd9e5c2afa3899d852d2bd9ca77a711ba8c8379f416f0
|
|
118
118
|
languageName: node
|
|
119
119
|
linkType: hard
|
|
120
120
|
|
|
121
121
|
"@babel/helper-annotate-as-pure@npm:^7.27.1":
|
|
122
|
-
version: 7.27.
|
|
123
|
-
resolution: "@babel/helper-annotate-as-pure@npm:7.27.
|
|
122
|
+
version: 7.27.3
|
|
123
|
+
resolution: "@babel/helper-annotate-as-pure@npm:7.27.3"
|
|
124
124
|
dependencies:
|
|
125
|
-
"@babel/types": "npm:^7.27.
|
|
126
|
-
checksum: 10c0/
|
|
125
|
+
"@babel/types": "npm:^7.27.3"
|
|
126
|
+
checksum: 10c0/94996ce0a05b7229f956033e6dcd69393db2b0886d0db6aff41e704390402b8cdcca11f61449cb4f86cfd9e61b5ad3a73e4fa661eeed7846b125bd1c33dbc633
|
|
127
127
|
languageName: node
|
|
128
128
|
linkType: hard
|
|
129
129
|
|
|
@@ -223,16 +223,16 @@ __metadata:
|
|
|
223
223
|
languageName: node
|
|
224
224
|
linkType: hard
|
|
225
225
|
|
|
226
|
-
"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.27.1":
|
|
227
|
-
version: 7.27.
|
|
228
|
-
resolution: "@babel/helper-module-transforms@npm:7.27.
|
|
226
|
+
"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.27.1, @babel/helper-module-transforms@npm:^7.27.3":
|
|
227
|
+
version: 7.27.3
|
|
228
|
+
resolution: "@babel/helper-module-transforms@npm:7.27.3"
|
|
229
229
|
dependencies:
|
|
230
230
|
"@babel/helper-module-imports": "npm:^7.27.1"
|
|
231
231
|
"@babel/helper-validator-identifier": "npm:^7.27.1"
|
|
232
|
-
"@babel/traverse": "npm:^7.27.
|
|
232
|
+
"@babel/traverse": "npm:^7.27.3"
|
|
233
233
|
peerDependencies:
|
|
234
234
|
"@babel/core": ^7.0.0
|
|
235
|
-
checksum: 10c0/
|
|
235
|
+
checksum: 10c0/fccb4f512a13b4c069af51e1b56b20f54024bcf1591e31e978a30f3502567f34f90a80da6a19a6148c249216292a8074a0121f9e52602510ef0f32dbce95ca01
|
|
236
236
|
languageName: node
|
|
237
237
|
linkType: hard
|
|
238
238
|
|
|
@@ -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.27.
|
|
331
|
-
version: 7.27.
|
|
332
|
-
resolution: "@babel/helpers@npm:7.27.
|
|
330
|
+
"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.27.4":
|
|
331
|
+
version: 7.27.4
|
|
332
|
+
resolution: "@babel/helpers@npm:7.27.4"
|
|
333
333
|
dependencies:
|
|
334
|
-
"@babel/template": "npm:^7.27.
|
|
335
|
-
"@babel/types": "npm:^7.27.
|
|
336
|
-
checksum: 10c0/
|
|
334
|
+
"@babel/template": "npm:^7.27.2"
|
|
335
|
+
"@babel/types": "npm:^7.27.3"
|
|
336
|
+
checksum: 10c0/3463551420926b3f403c1a30d66ac67bba5c4f73539a8ccb71544da129c4709ac37c57fac740ed8a261b3e6bbbf353b05e03b36ea1a6bf1081604b2a94ca43c1
|
|
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.27.
|
|
353
|
-
version: 7.27.
|
|
354
|
-
resolution: "@babel/parser@npm:7.27.
|
|
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.27.2, @babel/parser@npm:^7.27.4, @babel/parser@npm:^7.27.5":
|
|
353
|
+
version: 7.27.5
|
|
354
|
+
resolution: "@babel/parser@npm:7.27.5"
|
|
355
355
|
dependencies:
|
|
356
|
-
"@babel/types": "npm:^7.27.
|
|
356
|
+
"@babel/types": "npm:^7.27.3"
|
|
357
357
|
bin:
|
|
358
358
|
parser: ./bin/babel-parser.js
|
|
359
|
-
checksum: 10c0/
|
|
359
|
+
checksum: 10c0/f7faaebf21cc1f25d9ca8ac02c447ed38ef3460ea95be7ea760916dcf529476340d72a5a6010c6641d9ed9d12ad827c8424840277ec2295c5b082ba0f291220a
|
|
360
360
|
languageName: node
|
|
361
361
|
linkType: hard
|
|
362
362
|
|
|
@@ -711,13 +711,13 @@ __metadata:
|
|
|
711
711
|
linkType: hard
|
|
712
712
|
|
|
713
713
|
"@babel/plugin-transform-block-scoping@npm:^7.12.12, @babel/plugin-transform-block-scoping@npm:^7.27.1":
|
|
714
|
-
version: 7.27.
|
|
715
|
-
resolution: "@babel/plugin-transform-block-scoping@npm:7.27.
|
|
714
|
+
version: 7.27.5
|
|
715
|
+
resolution: "@babel/plugin-transform-block-scoping@npm:7.27.5"
|
|
716
716
|
dependencies:
|
|
717
717
|
"@babel/helper-plugin-utils": "npm:^7.27.1"
|
|
718
718
|
peerDependencies:
|
|
719
719
|
"@babel/core": ^7.0.0-0
|
|
720
|
-
checksum: 10c0/
|
|
720
|
+
checksum: 10c0/5c1a61f312f18d3807c4df25868161301a7bd0807092b86951fa6b9918e07ee382d58d61a204c3f9ad0b72b8f6f1d18586f8e485c355a3e959c26a070397e95e
|
|
721
721
|
languageName: node
|
|
722
722
|
linkType: hard
|
|
723
723
|
|
|
@@ -773,14 +773,14 @@ __metadata:
|
|
|
773
773
|
languageName: node
|
|
774
774
|
linkType: hard
|
|
775
775
|
|
|
776
|
-
"@babel/plugin-transform-destructuring@npm:^7.12.1, @babel/plugin-transform-destructuring@npm:^7.27.1":
|
|
777
|
-
version: 7.27.
|
|
778
|
-
resolution: "@babel/plugin-transform-destructuring@npm:7.27.
|
|
776
|
+
"@babel/plugin-transform-destructuring@npm:^7.12.1, @babel/plugin-transform-destructuring@npm:^7.27.1, @babel/plugin-transform-destructuring@npm:^7.27.3":
|
|
777
|
+
version: 7.27.3
|
|
778
|
+
resolution: "@babel/plugin-transform-destructuring@npm:7.27.3"
|
|
779
779
|
dependencies:
|
|
780
780
|
"@babel/helper-plugin-utils": "npm:^7.27.1"
|
|
781
781
|
peerDependencies:
|
|
782
782
|
"@babel/core": ^7.0.0-0
|
|
783
|
-
checksum: 10c0/
|
|
783
|
+
checksum: 10c0/f8ac96deef6f9a4cb1dff148dfa2a43116ca1c48434bba433964498c4ef5cef5557693b47463e64a71ffaaf10191c7fab0270844e8dbdc47dc4d120435025df5
|
|
784
784
|
languageName: node
|
|
785
785
|
linkType: hard
|
|
786
786
|
|
|
@@ -1029,16 +1029,16 @@ __metadata:
|
|
|
1029
1029
|
linkType: hard
|
|
1030
1030
|
|
|
1031
1031
|
"@babel/plugin-transform-object-rest-spread@npm:^7.27.2":
|
|
1032
|
-
version: 7.27.
|
|
1033
|
-
resolution: "@babel/plugin-transform-object-rest-spread@npm:7.27.
|
|
1032
|
+
version: 7.27.3
|
|
1033
|
+
resolution: "@babel/plugin-transform-object-rest-spread@npm:7.27.3"
|
|
1034
1034
|
dependencies:
|
|
1035
1035
|
"@babel/helper-compilation-targets": "npm:^7.27.2"
|
|
1036
1036
|
"@babel/helper-plugin-utils": "npm:^7.27.1"
|
|
1037
|
-
"@babel/plugin-transform-destructuring": "npm:^7.27.
|
|
1037
|
+
"@babel/plugin-transform-destructuring": "npm:^7.27.3"
|
|
1038
1038
|
"@babel/plugin-transform-parameters": "npm:^7.27.1"
|
|
1039
1039
|
peerDependencies:
|
|
1040
1040
|
"@babel/core": ^7.0.0-0
|
|
1041
|
-
checksum: 10c0/
|
|
1041
|
+
checksum: 10c0/f2d04f59f773a9480bbaabd082fecdb5fb2b6ae5e77147ae8df34a8b773b6148d0c4260d2beaa4755eb5f548a105f2069124b9cea96f9387128656cbb0730ee4
|
|
1042
1042
|
languageName: node
|
|
1043
1043
|
linkType: hard
|
|
1044
1044
|
|
|
@@ -1207,13 +1207,13 @@ __metadata:
|
|
|
1207
1207
|
linkType: hard
|
|
1208
1208
|
|
|
1209
1209
|
"@babel/plugin-transform-regenerator@npm:^7.27.1":
|
|
1210
|
-
version: 7.27.
|
|
1211
|
-
resolution: "@babel/plugin-transform-regenerator@npm:7.27.
|
|
1210
|
+
version: 7.27.5
|
|
1211
|
+
resolution: "@babel/plugin-transform-regenerator@npm:7.27.5"
|
|
1212
1212
|
dependencies:
|
|
1213
1213
|
"@babel/helper-plugin-utils": "npm:^7.27.1"
|
|
1214
1214
|
peerDependencies:
|
|
1215
1215
|
"@babel/core": ^7.0.0-0
|
|
1216
|
-
checksum: 10c0/
|
|
1216
|
+
checksum: 10c0/4ace8ced76b421cd44dd9fa08bebc2f3fd76ec84e532cd1027738f411afdbc239789edd6c96dd1db412fc4a42cead5c1ac98a8aef94f35102f5de1049e64c07a
|
|
1217
1217
|
languageName: node
|
|
1218
1218
|
linkType: hard
|
|
1219
1219
|
|
|
@@ -1510,22 +1510,22 @@ __metadata:
|
|
|
1510
1510
|
linkType: hard
|
|
1511
1511
|
|
|
1512
1512
|
"@babel/runtime-corejs3@npm:^7.10.2":
|
|
1513
|
-
version: 7.27.
|
|
1514
|
-
resolution: "@babel/runtime-corejs3@npm:7.27.
|
|
1513
|
+
version: 7.27.4
|
|
1514
|
+
resolution: "@babel/runtime-corejs3@npm:7.27.4"
|
|
1515
1515
|
dependencies:
|
|
1516
1516
|
core-js-pure: "npm:^3.30.2"
|
|
1517
|
-
checksum: 10c0/
|
|
1517
|
+
checksum: 10c0/77c3f71e00d6c4caee76bdbc5063984c80353529ee638cab447e55140b97403bff9fb992e0d9de62982821db7f848bcd53ed1f386cfffee8be2e2316b4aef566
|
|
1518
1518
|
languageName: node
|
|
1519
1519
|
linkType: hard
|
|
1520
1520
|
|
|
1521
1521
|
"@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.7":
|
|
1522
|
-
version: 7.27.
|
|
1523
|
-
resolution: "@babel/runtime@npm:7.27.
|
|
1524
|
-
checksum: 10c0/
|
|
1522
|
+
version: 7.27.4
|
|
1523
|
+
resolution: "@babel/runtime@npm:7.27.4"
|
|
1524
|
+
checksum: 10c0/ca99e964179c31615e1352e058cc9024df7111c829631c90eec84caba6703cc32acc81503771847c306b3c70b815609fe82dde8682936debe295b0b283b2dc6e
|
|
1525
1525
|
languageName: node
|
|
1526
1526
|
linkType: hard
|
|
1527
1527
|
|
|
1528
|
-
"@babel/template@npm:^7.12.7, @babel/template@npm:^7.27.1":
|
|
1528
|
+
"@babel/template@npm:^7.12.7, @babel/template@npm:^7.27.1, @babel/template@npm:^7.27.2":
|
|
1529
1529
|
version: 7.27.2
|
|
1530
1530
|
resolution: "@babel/template@npm:7.27.2"
|
|
1531
1531
|
dependencies:
|
|
@@ -1536,28 +1536,28 @@ __metadata:
|
|
|
1536
1536
|
languageName: node
|
|
1537
1537
|
linkType: hard
|
|
1538
1538
|
|
|
1539
|
-
"@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.27.1":
|
|
1540
|
-
version: 7.27.
|
|
1541
|
-
resolution: "@babel/traverse@npm:7.27.
|
|
1539
|
+
"@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.27.1, @babel/traverse@npm:^7.27.3, @babel/traverse@npm:^7.27.4":
|
|
1540
|
+
version: 7.27.4
|
|
1541
|
+
resolution: "@babel/traverse@npm:7.27.4"
|
|
1542
1542
|
dependencies:
|
|
1543
1543
|
"@babel/code-frame": "npm:^7.27.1"
|
|
1544
|
-
"@babel/generator": "npm:^7.27.
|
|
1545
|
-
"@babel/parser": "npm:^7.27.
|
|
1546
|
-
"@babel/template": "npm:^7.27.
|
|
1547
|
-
"@babel/types": "npm:^7.27.
|
|
1544
|
+
"@babel/generator": "npm:^7.27.3"
|
|
1545
|
+
"@babel/parser": "npm:^7.27.4"
|
|
1546
|
+
"@babel/template": "npm:^7.27.2"
|
|
1547
|
+
"@babel/types": "npm:^7.27.3"
|
|
1548
1548
|
debug: "npm:^4.3.1"
|
|
1549
1549
|
globals: "npm:^11.1.0"
|
|
1550
|
-
checksum: 10c0/
|
|
1550
|
+
checksum: 10c0/6de8aa2a0637a6ee6d205bf48b9e923928a02415771fdec60085ed754dcdf605e450bb3315c2552fa51c31a4662275b45d5ae4ad527ce55a7db9acebdbbbb8ed
|
|
1551
1551
|
languageName: node
|
|
1552
1552
|
linkType: hard
|
|
1553
1553
|
|
|
1554
|
-
"@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.27.1, @babel/types@npm:^7.4.4":
|
|
1555
|
-
version: 7.27.
|
|
1556
|
-
resolution: "@babel/types@npm:7.27.
|
|
1554
|
+
"@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.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.4.4":
|
|
1555
|
+
version: 7.27.3
|
|
1556
|
+
resolution: "@babel/types@npm:7.27.3"
|
|
1557
1557
|
dependencies:
|
|
1558
1558
|
"@babel/helper-string-parser": "npm:^7.27.1"
|
|
1559
1559
|
"@babel/helper-validator-identifier": "npm:^7.27.1"
|
|
1560
|
-
checksum: 10c0/
|
|
1560
|
+
checksum: 10c0/bafdfc98e722a6b91a783b6f24388f478fd775f0c0652e92220e08be2cc33e02d42088542f1953ac5e5ece2ac052172b3dadedf12bec9aae57899e92fb9a9757
|
|
1561
1561
|
languageName: node
|
|
1562
1562
|
linkType: hard
|
|
1563
1563
|
|
|
@@ -2117,22 +2117,22 @@ __metadata:
|
|
|
2117
2117
|
languageName: node
|
|
2118
2118
|
linkType: hard
|
|
2119
2119
|
|
|
2120
|
-
"@floating-ui/core@npm:^1.7.
|
|
2121
|
-
version: 1.7.
|
|
2122
|
-
resolution: "@floating-ui/core@npm:1.7.
|
|
2120
|
+
"@floating-ui/core@npm:^1.7.1":
|
|
2121
|
+
version: 1.7.1
|
|
2122
|
+
resolution: "@floating-ui/core@npm:1.7.1"
|
|
2123
2123
|
dependencies:
|
|
2124
2124
|
"@floating-ui/utils": "npm:^0.2.9"
|
|
2125
|
-
checksum: 10c0/
|
|
2125
|
+
checksum: 10c0/40df1e1dd8a2bad6f70c1ee163f0e151c456f52b9b98a38488d88720b2be72ccd631501a66f8369f96d2e8ad1c4250936b6fd4243e3a99833f2d008ee6afec18
|
|
2126
2126
|
languageName: node
|
|
2127
2127
|
linkType: hard
|
|
2128
2128
|
|
|
2129
2129
|
"@floating-ui/dom@npm:^1.2.1":
|
|
2130
|
-
version: 1.7.
|
|
2131
|
-
resolution: "@floating-ui/dom@npm:1.7.
|
|
2130
|
+
version: 1.7.1
|
|
2131
|
+
resolution: "@floating-ui/dom@npm:1.7.1"
|
|
2132
2132
|
dependencies:
|
|
2133
|
-
"@floating-ui/core": "npm:^1.7.
|
|
2133
|
+
"@floating-ui/core": "npm:^1.7.1"
|
|
2134
2134
|
"@floating-ui/utils": "npm:^0.2.9"
|
|
2135
|
-
checksum: 10c0/
|
|
2135
|
+
checksum: 10c0/33b0e892f4c50ce568169cd58793ff5e3bc1e72ee007237d73b9458d4475e1e5f5a4b3f9e6752422d5f5ac902bc0c135ca7dc0a23c6df187fd9d28dc34cdceed
|
|
2136
2136
|
languageName: node
|
|
2137
2137
|
linkType: hard
|
|
2138
2138
|
|
|
@@ -3302,142 +3302,142 @@ __metadata:
|
|
|
3302
3302
|
languageName: node
|
|
3303
3303
|
linkType: hard
|
|
3304
3304
|
|
|
3305
|
-
"@rollup/rollup-android-arm-eabi@npm:4.41.
|
|
3306
|
-
version: 4.41.
|
|
3307
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.41.
|
|
3305
|
+
"@rollup/rollup-android-arm-eabi@npm:4.41.1":
|
|
3306
|
+
version: 4.41.1
|
|
3307
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.41.1"
|
|
3308
3308
|
conditions: os=android & cpu=arm
|
|
3309
3309
|
languageName: node
|
|
3310
3310
|
linkType: hard
|
|
3311
3311
|
|
|
3312
|
-
"@rollup/rollup-android-arm64@npm:4.41.
|
|
3313
|
-
version: 4.41.
|
|
3314
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.41.
|
|
3312
|
+
"@rollup/rollup-android-arm64@npm:4.41.1":
|
|
3313
|
+
version: 4.41.1
|
|
3314
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.41.1"
|
|
3315
3315
|
conditions: os=android & cpu=arm64
|
|
3316
3316
|
languageName: node
|
|
3317
3317
|
linkType: hard
|
|
3318
3318
|
|
|
3319
|
-
"@rollup/rollup-darwin-arm64@npm:4.41.
|
|
3320
|
-
version: 4.41.
|
|
3321
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.41.
|
|
3319
|
+
"@rollup/rollup-darwin-arm64@npm:4.41.1":
|
|
3320
|
+
version: 4.41.1
|
|
3321
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.41.1"
|
|
3322
3322
|
conditions: os=darwin & cpu=arm64
|
|
3323
3323
|
languageName: node
|
|
3324
3324
|
linkType: hard
|
|
3325
3325
|
|
|
3326
|
-
"@rollup/rollup-darwin-x64@npm:4.41.
|
|
3327
|
-
version: 4.41.
|
|
3328
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.41.
|
|
3326
|
+
"@rollup/rollup-darwin-x64@npm:4.41.1":
|
|
3327
|
+
version: 4.41.1
|
|
3328
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.41.1"
|
|
3329
3329
|
conditions: os=darwin & cpu=x64
|
|
3330
3330
|
languageName: node
|
|
3331
3331
|
linkType: hard
|
|
3332
3332
|
|
|
3333
|
-
"@rollup/rollup-freebsd-arm64@npm:4.41.
|
|
3334
|
-
version: 4.41.
|
|
3335
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.41.
|
|
3333
|
+
"@rollup/rollup-freebsd-arm64@npm:4.41.1":
|
|
3334
|
+
version: 4.41.1
|
|
3335
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.41.1"
|
|
3336
3336
|
conditions: os=freebsd & cpu=arm64
|
|
3337
3337
|
languageName: node
|
|
3338
3338
|
linkType: hard
|
|
3339
3339
|
|
|
3340
|
-
"@rollup/rollup-freebsd-x64@npm:4.41.
|
|
3341
|
-
version: 4.41.
|
|
3342
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.41.
|
|
3340
|
+
"@rollup/rollup-freebsd-x64@npm:4.41.1":
|
|
3341
|
+
version: 4.41.1
|
|
3342
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.41.1"
|
|
3343
3343
|
conditions: os=freebsd & cpu=x64
|
|
3344
3344
|
languageName: node
|
|
3345
3345
|
linkType: hard
|
|
3346
3346
|
|
|
3347
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.41.
|
|
3348
|
-
version: 4.41.
|
|
3349
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.41.
|
|
3347
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.41.1":
|
|
3348
|
+
version: 4.41.1
|
|
3349
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.41.1"
|
|
3350
3350
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3351
3351
|
languageName: node
|
|
3352
3352
|
linkType: hard
|
|
3353
3353
|
|
|
3354
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.41.
|
|
3355
|
-
version: 4.41.
|
|
3356
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.41.
|
|
3354
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.41.1":
|
|
3355
|
+
version: 4.41.1
|
|
3356
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.41.1"
|
|
3357
3357
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3358
3358
|
languageName: node
|
|
3359
3359
|
linkType: hard
|
|
3360
3360
|
|
|
3361
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.41.
|
|
3362
|
-
version: 4.41.
|
|
3363
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.41.
|
|
3361
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.41.1":
|
|
3362
|
+
version: 4.41.1
|
|
3363
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.41.1"
|
|
3364
3364
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3365
3365
|
languageName: node
|
|
3366
3366
|
linkType: hard
|
|
3367
3367
|
|
|
3368
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.41.
|
|
3369
|
-
version: 4.41.
|
|
3370
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.41.
|
|
3368
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.41.1":
|
|
3369
|
+
version: 4.41.1
|
|
3370
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.41.1"
|
|
3371
3371
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3372
3372
|
languageName: node
|
|
3373
3373
|
linkType: hard
|
|
3374
3374
|
|
|
3375
|
-
"@rollup/rollup-linux-loongarch64-gnu@npm:4.41.
|
|
3376
|
-
version: 4.41.
|
|
3377
|
-
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.41.
|
|
3375
|
+
"@rollup/rollup-linux-loongarch64-gnu@npm:4.41.1":
|
|
3376
|
+
version: 4.41.1
|
|
3377
|
+
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.41.1"
|
|
3378
3378
|
conditions: os=linux & cpu=loong64 & libc=glibc
|
|
3379
3379
|
languageName: node
|
|
3380
3380
|
linkType: hard
|
|
3381
3381
|
|
|
3382
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.41.
|
|
3383
|
-
version: 4.41.
|
|
3384
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.41.
|
|
3382
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.41.1":
|
|
3383
|
+
version: 4.41.1
|
|
3384
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.41.1"
|
|
3385
3385
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3386
3386
|
languageName: node
|
|
3387
3387
|
linkType: hard
|
|
3388
3388
|
|
|
3389
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.41.
|
|
3390
|
-
version: 4.41.
|
|
3391
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.41.
|
|
3389
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.41.1":
|
|
3390
|
+
version: 4.41.1
|
|
3391
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.41.1"
|
|
3392
3392
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3393
3393
|
languageName: node
|
|
3394
3394
|
linkType: hard
|
|
3395
3395
|
|
|
3396
|
-
"@rollup/rollup-linux-riscv64-musl@npm:4.41.
|
|
3397
|
-
version: 4.41.
|
|
3398
|
-
resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.41.
|
|
3396
|
+
"@rollup/rollup-linux-riscv64-musl@npm:4.41.1":
|
|
3397
|
+
version: 4.41.1
|
|
3398
|
+
resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.41.1"
|
|
3399
3399
|
conditions: os=linux & cpu=riscv64 & libc=musl
|
|
3400
3400
|
languageName: node
|
|
3401
3401
|
linkType: hard
|
|
3402
3402
|
|
|
3403
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.41.
|
|
3404
|
-
version: 4.41.
|
|
3405
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.41.
|
|
3403
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.41.1":
|
|
3404
|
+
version: 4.41.1
|
|
3405
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.41.1"
|
|
3406
3406
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3407
3407
|
languageName: node
|
|
3408
3408
|
linkType: hard
|
|
3409
3409
|
|
|
3410
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.41.
|
|
3411
|
-
version: 4.41.
|
|
3412
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.41.
|
|
3410
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.41.1":
|
|
3411
|
+
version: 4.41.1
|
|
3412
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.41.1"
|
|
3413
3413
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3414
3414
|
languageName: node
|
|
3415
3415
|
linkType: hard
|
|
3416
3416
|
|
|
3417
|
-
"@rollup/rollup-linux-x64-musl@npm:4.41.
|
|
3418
|
-
version: 4.41.
|
|
3419
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.41.
|
|
3417
|
+
"@rollup/rollup-linux-x64-musl@npm:4.41.1":
|
|
3418
|
+
version: 4.41.1
|
|
3419
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.41.1"
|
|
3420
3420
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3421
3421
|
languageName: node
|
|
3422
3422
|
linkType: hard
|
|
3423
3423
|
|
|
3424
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.41.
|
|
3425
|
-
version: 4.41.
|
|
3426
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.41.
|
|
3424
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.41.1":
|
|
3425
|
+
version: 4.41.1
|
|
3426
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.41.1"
|
|
3427
3427
|
conditions: os=win32 & cpu=arm64
|
|
3428
3428
|
languageName: node
|
|
3429
3429
|
linkType: hard
|
|
3430
3430
|
|
|
3431
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.41.
|
|
3432
|
-
version: 4.41.
|
|
3433
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.41.
|
|
3431
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.41.1":
|
|
3432
|
+
version: 4.41.1
|
|
3433
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.41.1"
|
|
3434
3434
|
conditions: os=win32 & cpu=ia32
|
|
3435
3435
|
languageName: node
|
|
3436
3436
|
linkType: hard
|
|
3437
3437
|
|
|
3438
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.41.
|
|
3439
|
-
version: 4.41.
|
|
3440
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.41.
|
|
3438
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.41.1":
|
|
3439
|
+
version: 4.41.1
|
|
3440
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.41.1"
|
|
3441
3441
|
conditions: os=win32 & cpu=x64
|
|
3442
3442
|
languageName: node
|
|
3443
3443
|
linkType: hard
|
|
@@ -5698,11 +5698,11 @@ __metadata:
|
|
|
5698
5698
|
linkType: hard
|
|
5699
5699
|
|
|
5700
5700
|
"@types/node@npm:*":
|
|
5701
|
-
version: 22.15.
|
|
5702
|
-
resolution: "@types/node@npm:22.15.
|
|
5701
|
+
version: 22.15.29
|
|
5702
|
+
resolution: "@types/node@npm:22.15.29"
|
|
5703
5703
|
dependencies:
|
|
5704
5704
|
undici-types: "npm:~6.21.0"
|
|
5705
|
-
checksum: 10c0/
|
|
5705
|
+
checksum: 10c0/602cc88c6150780cd9b5b44604754e0ce13983ae876a538861d6ecfb1511dff289e5576fffd26c841cde2142418d4bb76e2a72a382b81c04557ccb17cff29e1d
|
|
5706
5706
|
languageName: node
|
|
5707
5707
|
linkType: hard
|
|
5708
5708
|
|
|
@@ -6230,26 +6230,26 @@ __metadata:
|
|
|
6230
6230
|
languageName: node
|
|
6231
6231
|
linkType: hard
|
|
6232
6232
|
|
|
6233
|
-
"@vue/compiler-core@npm:3.5.
|
|
6234
|
-
version: 3.5.
|
|
6235
|
-
resolution: "@vue/compiler-core@npm:3.5.
|
|
6233
|
+
"@vue/compiler-core@npm:3.5.16":
|
|
6234
|
+
version: 3.5.16
|
|
6235
|
+
resolution: "@vue/compiler-core@npm:3.5.16"
|
|
6236
6236
|
dependencies:
|
|
6237
6237
|
"@babel/parser": "npm:^7.27.2"
|
|
6238
|
-
"@vue/shared": "npm:3.5.
|
|
6238
|
+
"@vue/shared": "npm:3.5.16"
|
|
6239
6239
|
entities: "npm:^4.5.0"
|
|
6240
6240
|
estree-walker: "npm:^2.0.2"
|
|
6241
6241
|
source-map-js: "npm:^1.2.1"
|
|
6242
|
-
checksum: 10c0/
|
|
6242
|
+
checksum: 10c0/1a6f1446320467eac382c9ee567bd6017a61d374eebe48cbf948badb13e14beb0f96645e2cb8c4bfff565aa4948f1d836352bea511e5f3322c51cc5921caf42a
|
|
6243
6243
|
languageName: node
|
|
6244
6244
|
linkType: hard
|
|
6245
6245
|
|
|
6246
6246
|
"@vue/compiler-dom@npm:^3.4.0":
|
|
6247
|
-
version: 3.5.
|
|
6248
|
-
resolution: "@vue/compiler-dom@npm:3.5.
|
|
6247
|
+
version: 3.5.16
|
|
6248
|
+
resolution: "@vue/compiler-dom@npm:3.5.16"
|
|
6249
6249
|
dependencies:
|
|
6250
|
-
"@vue/compiler-core": "npm:3.5.
|
|
6251
|
-
"@vue/shared": "npm:3.5.
|
|
6252
|
-
checksum: 10c0/
|
|
6250
|
+
"@vue/compiler-core": "npm:3.5.16"
|
|
6251
|
+
"@vue/shared": "npm:3.5.16"
|
|
6252
|
+
checksum: 10c0/e3ed5b50977cbb240abc2b8a71497254810e433a2e4a5eb254900c46abc6494b99df7e69ae79d7122c29c2e1cc4605c5b4925bf280e83e4f918098194b2894cf
|
|
6253
6253
|
languageName: node
|
|
6254
6254
|
linkType: hard
|
|
6255
6255
|
|
|
@@ -6284,10 +6284,10 @@ __metadata:
|
|
|
6284
6284
|
languageName: node
|
|
6285
6285
|
linkType: hard
|
|
6286
6286
|
|
|
6287
|
-
"@vue/shared@npm:3.5.
|
|
6288
|
-
version: 3.5.
|
|
6289
|
-
resolution: "@vue/shared@npm:3.5.
|
|
6290
|
-
checksum: 10c0/
|
|
6287
|
+
"@vue/shared@npm:3.5.16, @vue/shared@npm:^3.4.0":
|
|
6288
|
+
version: 3.5.16
|
|
6289
|
+
resolution: "@vue/shared@npm:3.5.16"
|
|
6290
|
+
checksum: 10c0/242ecc41f4c4e8f7f5d8714d715f4a78e31ead988da47cb369b88bd2f53aacc0f1db8c15dfac726e2a3ebe1104689bddd65c5c349ca5097e6657b2af2098c2f7
|
|
6291
6291
|
languageName: node
|
|
6292
6292
|
linkType: hard
|
|
6293
6293
|
|
|
@@ -6975,16 +6975,18 @@ __metadata:
|
|
|
6975
6975
|
linkType: hard
|
|
6976
6976
|
|
|
6977
6977
|
"array-includes@npm:^3.0.3, array-includes@npm:^3.1.1, array-includes@npm:^3.1.4, array-includes@npm:^3.1.6, array-includes@npm:^3.1.8":
|
|
6978
|
-
version: 3.1.
|
|
6979
|
-
resolution: "array-includes@npm:3.1.
|
|
6978
|
+
version: 3.1.9
|
|
6979
|
+
resolution: "array-includes@npm:3.1.9"
|
|
6980
6980
|
dependencies:
|
|
6981
|
-
call-bind: "npm:^1.0.
|
|
6981
|
+
call-bind: "npm:^1.0.8"
|
|
6982
|
+
call-bound: "npm:^1.0.4"
|
|
6982
6983
|
define-properties: "npm:^1.2.1"
|
|
6983
|
-
es-abstract: "npm:^1.
|
|
6984
|
-
es-object-atoms: "npm:^1.
|
|
6985
|
-
get-intrinsic: "npm:^1.
|
|
6986
|
-
is-string: "npm:^1.
|
|
6987
|
-
|
|
6984
|
+
es-abstract: "npm:^1.24.0"
|
|
6985
|
+
es-object-atoms: "npm:^1.1.1"
|
|
6986
|
+
get-intrinsic: "npm:^1.3.0"
|
|
6987
|
+
is-string: "npm:^1.1.1"
|
|
6988
|
+
math-intrinsics: "npm:^1.1.0"
|
|
6989
|
+
checksum: 10c0/0235fa69078abeac05ac4250699c44996bc6f774a9cbe45db48674ce6bd142f09b327d31482ff75cf03344db4ea03eae23edb862d59378b484b47ed842574856
|
|
6988
6990
|
languageName: node
|
|
6989
6991
|
linkType: hard
|
|
6990
6992
|
|
|
@@ -7809,16 +7811,16 @@ __metadata:
|
|
|
7809
7811
|
linkType: hard
|
|
7810
7812
|
|
|
7811
7813
|
"browserslist@npm:^4.0.0, browserslist@npm:^4.12.0, browserslist@npm:^4.23.3, browserslist@npm:^4.24.0, browserslist@npm:^4.24.4, browserslist@npm:^4.24.5":
|
|
7812
|
-
version: 4.
|
|
7813
|
-
resolution: "browserslist@npm:4.
|
|
7814
|
+
version: 4.25.0
|
|
7815
|
+
resolution: "browserslist@npm:4.25.0"
|
|
7814
7816
|
dependencies:
|
|
7815
|
-
caniuse-lite: "npm:^1.0.
|
|
7816
|
-
electron-to-chromium: "npm:^1.5.
|
|
7817
|
+
caniuse-lite: "npm:^1.0.30001718"
|
|
7818
|
+
electron-to-chromium: "npm:^1.5.160"
|
|
7817
7819
|
node-releases: "npm:^2.0.19"
|
|
7818
7820
|
update-browserslist-db: "npm:^1.1.3"
|
|
7819
7821
|
bin:
|
|
7820
7822
|
browserslist: cli.js
|
|
7821
|
-
checksum: 10c0/
|
|
7823
|
+
checksum: 10c0/cc16c55b4468b18684a0e1ca303592b38635b1155d6724f172407192737a2f405b8030d87a05813729592793445b3d15e737b0055f901cdecccb29b1e580a1c5
|
|
7822
7824
|
languageName: node
|
|
7823
7825
|
linkType: hard
|
|
7824
7826
|
|
|
@@ -8076,10 +8078,10 @@ __metadata:
|
|
|
8076
8078
|
languageName: node
|
|
8077
8079
|
linkType: hard
|
|
8078
8080
|
|
|
8079
|
-
"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.
|
|
8080
|
-
version: 1.0.
|
|
8081
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8082
|
-
checksum: 10c0/
|
|
8081
|
+
"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.30001718":
|
|
8082
|
+
version: 1.0.30001721
|
|
8083
|
+
resolution: "caniuse-lite@npm:1.0.30001721"
|
|
8084
|
+
checksum: 10c0/fa3a8926899824b385279f1f886fe34c5efb1321c9ece1b9df25c8d567a2706db8450cc5b4d969e769e641593e08ea644909324aba93636a43e4949a75f81c4c
|
|
8083
8085
|
languageName: node
|
|
8084
8086
|
linkType: hard
|
|
8085
8087
|
|
|
@@ -8222,8 +8224,8 @@ __metadata:
|
|
|
8222
8224
|
linkType: hard
|
|
8223
8225
|
|
|
8224
8226
|
"chromatic@npm:^11.4.0":
|
|
8225
|
-
version: 11.
|
|
8226
|
-
resolution: "chromatic@npm:11.
|
|
8227
|
+
version: 11.29.0
|
|
8228
|
+
resolution: "chromatic@npm:11.29.0"
|
|
8227
8229
|
peerDependencies:
|
|
8228
8230
|
"@chromatic-com/cypress": ^0.*.* || ^1.0.0
|
|
8229
8231
|
"@chromatic-com/playwright": ^0.*.* || ^1.0.0
|
|
@@ -8236,7 +8238,7 @@ __metadata:
|
|
|
8236
8238
|
chroma: dist/bin.js
|
|
8237
8239
|
chromatic: dist/bin.js
|
|
8238
8240
|
chromatic-cli: dist/bin.js
|
|
8239
|
-
checksum: 10c0/
|
|
8241
|
+
checksum: 10c0/4c26e00a170cb40b38f837358fbcab51ab0bdf3644a396b166074cd167696be6a34eeb5583e65425f4392845c8a3052f6d538ea9fb0d09a903100c52d858b4f9
|
|
8240
8242
|
languageName: node
|
|
8241
8243
|
linkType: hard
|
|
8242
8244
|
|
|
@@ -9865,10 +9867,10 @@ __metadata:
|
|
|
9865
9867
|
languageName: node
|
|
9866
9868
|
linkType: hard
|
|
9867
9869
|
|
|
9868
|
-
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.
|
|
9869
|
-
version: 1.5.
|
|
9870
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9871
|
-
checksum: 10c0/
|
|
9870
|
+
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.160":
|
|
9871
|
+
version: 1.5.164
|
|
9872
|
+
resolution: "electron-to-chromium@npm:1.5.164"
|
|
9873
|
+
checksum: 10c0/ddd0ce93d68a32b074a82d361f00ac5222d4960aa1bb5bfa4fb1da56a629724be8ff296e38979041753f2eda729514995096e3519f3f20147020978f55e73f97
|
|
9872
9874
|
languageName: node
|
|
9873
9875
|
linkType: hard
|
|
9874
9876
|
|
|
@@ -10075,9 +10077,9 @@ __metadata:
|
|
|
10075
10077
|
languageName: node
|
|
10076
10078
|
linkType: hard
|
|
10077
10079
|
|
|
10078
|
-
"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":
|
|
10079
|
-
version: 1.
|
|
10080
|
-
resolution: "es-abstract@npm:1.
|
|
10080
|
+
"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, es-abstract@npm:^1.24.0":
|
|
10081
|
+
version: 1.24.0
|
|
10082
|
+
resolution: "es-abstract@npm:1.24.0"
|
|
10081
10083
|
dependencies:
|
|
10082
10084
|
array-buffer-byte-length: "npm:^1.0.2"
|
|
10083
10085
|
arraybuffer.prototype.slice: "npm:^1.0.4"
|
|
@@ -10106,7 +10108,9 @@ __metadata:
|
|
|
10106
10108
|
is-array-buffer: "npm:^3.0.5"
|
|
10107
10109
|
is-callable: "npm:^1.2.7"
|
|
10108
10110
|
is-data-view: "npm:^1.0.2"
|
|
10111
|
+
is-negative-zero: "npm:^2.0.3"
|
|
10109
10112
|
is-regex: "npm:^1.2.1"
|
|
10113
|
+
is-set: "npm:^2.0.3"
|
|
10110
10114
|
is-shared-array-buffer: "npm:^1.0.4"
|
|
10111
10115
|
is-string: "npm:^1.1.1"
|
|
10112
10116
|
is-typed-array: "npm:^1.1.15"
|
|
@@ -10121,6 +10125,7 @@ __metadata:
|
|
|
10121
10125
|
safe-push-apply: "npm:^1.0.0"
|
|
10122
10126
|
safe-regex-test: "npm:^1.1.0"
|
|
10123
10127
|
set-proto: "npm:^1.0.0"
|
|
10128
|
+
stop-iteration-iterator: "npm:^1.1.0"
|
|
10124
10129
|
string.prototype.trim: "npm:^1.2.10"
|
|
10125
10130
|
string.prototype.trimend: "npm:^1.0.9"
|
|
10126
10131
|
string.prototype.trimstart: "npm:^1.0.8"
|
|
@@ -10130,7 +10135,7 @@ __metadata:
|
|
|
10130
10135
|
typed-array-length: "npm:^1.0.7"
|
|
10131
10136
|
unbox-primitive: "npm:^1.1.0"
|
|
10132
10137
|
which-typed-array: "npm:^1.1.19"
|
|
10133
|
-
checksum: 10c0/
|
|
10138
|
+
checksum: 10c0/b256e897be32df5d382786ce8cce29a1dd8c97efbab77a26609bd70f2ed29fbcfc7a31758cb07488d532e7ccccdfca76c1118f2afe5a424cdc05ca007867c318
|
|
10134
10139
|
languageName: node
|
|
10135
10140
|
linkType: hard
|
|
10136
10141
|
|
|
@@ -11007,14 +11012,14 @@ __metadata:
|
|
|
11007
11012
|
linkType: hard
|
|
11008
11013
|
|
|
11009
11014
|
"fdir@npm:^6.4.4":
|
|
11010
|
-
version: 6.4.
|
|
11011
|
-
resolution: "fdir@npm:6.4.
|
|
11015
|
+
version: 6.4.5
|
|
11016
|
+
resolution: "fdir@npm:6.4.5"
|
|
11012
11017
|
peerDependencies:
|
|
11013
11018
|
picomatch: ^3 || ^4
|
|
11014
11019
|
peerDependenciesMeta:
|
|
11015
11020
|
picomatch:
|
|
11016
11021
|
optional: true
|
|
11017
|
-
checksum: 10c0/
|
|
11022
|
+
checksum: 10c0/5d63330a1b97165e9b0fb20369fafc7cf826bc4b3e374efcb650bc77d7145ac01193b5da1a7591eab89ae6fd6b15cdd414085910b2a2b42296b1480c9f2677af
|
|
11018
11023
|
languageName: node
|
|
11019
11024
|
linkType: hard
|
|
11020
11025
|
|
|
@@ -13043,6 +13048,13 @@ __metadata:
|
|
|
13043
13048
|
languageName: node
|
|
13044
13049
|
linkType: hard
|
|
13045
13050
|
|
|
13051
|
+
"is-negative-zero@npm:^2.0.3":
|
|
13052
|
+
version: 2.0.3
|
|
13053
|
+
resolution: "is-negative-zero@npm:2.0.3"
|
|
13054
|
+
checksum: 10c0/bcdcf6b8b9714063ffcfa9929c575ac69bfdabb8f4574ff557dfc086df2836cf07e3906f5bbc4f2a5c12f8f3ba56af640c843cdfc74da8caed86c7c7d66fd08e
|
|
13055
|
+
languageName: node
|
|
13056
|
+
linkType: hard
|
|
13057
|
+
|
|
13046
13058
|
"is-number-object@npm:^1.1.1":
|
|
13047
13059
|
version: 1.1.1
|
|
13048
13060
|
resolution: "is-number-object@npm:1.1.1"
|
|
@@ -14953,7 +14965,7 @@ __metadata:
|
|
|
14953
14965
|
languageName: node
|
|
14954
14966
|
linkType: hard
|
|
14955
14967
|
|
|
14956
|
-
"nanoid@npm:^3.3.
|
|
14968
|
+
"nanoid@npm:^3.3.11, nanoid@npm:^3.3.7":
|
|
14957
14969
|
version: 3.3.11
|
|
14958
14970
|
resolution: "nanoid@npm:3.3.11"
|
|
14959
14971
|
bin:
|
|
@@ -16629,13 +16641,13 @@ __metadata:
|
|
|
16629
16641
|
linkType: hard
|
|
16630
16642
|
|
|
16631
16643
|
"postcss@npm:^8.2.6, postcss@npm:^8.4.23, postcss@npm:^8.4.39":
|
|
16632
|
-
version: 8.5.
|
|
16633
|
-
resolution: "postcss@npm:8.5.
|
|
16644
|
+
version: 8.5.4
|
|
16645
|
+
resolution: "postcss@npm:8.5.4"
|
|
16634
16646
|
dependencies:
|
|
16635
|
-
nanoid: "npm:^3.3.
|
|
16647
|
+
nanoid: "npm:^3.3.11"
|
|
16636
16648
|
picocolors: "npm:^1.1.1"
|
|
16637
16649
|
source-map-js: "npm:^1.2.1"
|
|
16638
|
-
checksum: 10c0/
|
|
16650
|
+
checksum: 10c0/0feff648614a834f7cd5396ea6b05b658ca0507e10a4eaad03b56c348f6aec93f42a885fc1b30522630c6a7e49ae53b38a061e3cba526f2d9857afbe095a22bb
|
|
16639
16651
|
languageName: node
|
|
16640
16652
|
linkType: hard
|
|
16641
16653
|
|
|
@@ -16878,11 +16890,11 @@ __metadata:
|
|
|
16878
16890
|
linkType: hard
|
|
16879
16891
|
|
|
16880
16892
|
"prosemirror-changeset@npm:^2.2.0":
|
|
16881
|
-
version: 2.3.
|
|
16882
|
-
resolution: "prosemirror-changeset@npm:2.3.
|
|
16893
|
+
version: 2.3.1
|
|
16894
|
+
resolution: "prosemirror-changeset@npm:2.3.1"
|
|
16883
16895
|
dependencies:
|
|
16884
16896
|
prosemirror-transform: "npm:^1.0.0"
|
|
16885
|
-
checksum: 10c0/
|
|
16897
|
+
checksum: 10c0/efd6578ee4535d72d11c032b49921f14b3f7ccae680eb14c8d9f6cc1fbec00299c598475af0ab432864976bdbb7f94f011193278b2d19eadda83b754fe6d8a35
|
|
16886
16898
|
languageName: node
|
|
16887
16899
|
linkType: hard
|
|
16888
16900
|
|
|
@@ -17061,13 +17073,13 @@ __metadata:
|
|
|
17061
17073
|
linkType: hard
|
|
17062
17074
|
|
|
17063
17075
|
"prosemirror-view@npm:^1.0.0, prosemirror-view@npm:^1.1.0, prosemirror-view@npm:^1.23.6, prosemirror-view@npm:^1.27.0, prosemirror-view@npm:^1.28.2, prosemirror-view@npm:^1.31.0, prosemirror-view@npm:^1.39.1":
|
|
17064
|
-
version: 1.
|
|
17065
|
-
resolution: "prosemirror-view@npm:1.
|
|
17076
|
+
version: 1.40.0
|
|
17077
|
+
resolution: "prosemirror-view@npm:1.40.0"
|
|
17066
17078
|
dependencies:
|
|
17067
17079
|
prosemirror-model: "npm:^1.20.0"
|
|
17068
17080
|
prosemirror-state: "npm:^1.0.0"
|
|
17069
17081
|
prosemirror-transform: "npm:^1.1.0"
|
|
17070
|
-
checksum: 10c0/
|
|
17082
|
+
checksum: 10c0/9fde9b415b9beeeda823acc170871f420f8e8646be83d9af5b9b5c124419d9a4b5c1293d9536dd06910b6154a001401d79cdc57a902fb7a0ea19501966f8dfdd
|
|
17071
17083
|
languageName: node
|
|
17072
17084
|
linkType: hard
|
|
17073
17085
|
|
|
@@ -17888,8 +17900,8 @@ __metadata:
|
|
|
17888
17900
|
linkType: hard
|
|
17889
17901
|
|
|
17890
17902
|
"react-remove-scroll@npm:^2.5.5":
|
|
17891
|
-
version: 2.7.
|
|
17892
|
-
resolution: "react-remove-scroll@npm:2.7.
|
|
17903
|
+
version: 2.7.1
|
|
17904
|
+
resolution: "react-remove-scroll@npm:2.7.1"
|
|
17893
17905
|
dependencies:
|
|
17894
17906
|
react-remove-scroll-bar: "npm:^2.3.7"
|
|
17895
17907
|
react-style-singleton: "npm:^2.2.3"
|
|
@@ -17902,7 +17914,7 @@ __metadata:
|
|
|
17902
17914
|
peerDependenciesMeta:
|
|
17903
17915
|
"@types/react":
|
|
17904
17916
|
optional: true
|
|
17905
|
-
checksum: 10c0/
|
|
17917
|
+
checksum: 10c0/7ad8f6ffd3e2aedf9b3d79f0c9088a9a3d7c5332d80c923427a6d97fe0626fb4cb33a6d9174d19fad57d860be69c96f68497a0619c3a8af0e8a5332e49bdde31
|
|
17906
17918
|
languageName: node
|
|
17907
17919
|
linkType: hard
|
|
17908
17920
|
|
|
@@ -18890,29 +18902,29 @@ __metadata:
|
|
|
18890
18902
|
linkType: hard
|
|
18891
18903
|
|
|
18892
18904
|
"rollup@npm:^4.13.0":
|
|
18893
|
-
version: 4.41.
|
|
18894
|
-
resolution: "rollup@npm:4.41.
|
|
18895
|
-
dependencies:
|
|
18896
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.41.
|
|
18897
|
-
"@rollup/rollup-android-arm64": "npm:4.41.
|
|
18898
|
-
"@rollup/rollup-darwin-arm64": "npm:4.41.
|
|
18899
|
-
"@rollup/rollup-darwin-x64": "npm:4.41.
|
|
18900
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.41.
|
|
18901
|
-
"@rollup/rollup-freebsd-x64": "npm:4.41.
|
|
18902
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.41.
|
|
18903
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.41.
|
|
18904
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.41.
|
|
18905
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.41.
|
|
18906
|
-
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.41.
|
|
18907
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.41.
|
|
18908
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.41.
|
|
18909
|
-
"@rollup/rollup-linux-riscv64-musl": "npm:4.41.
|
|
18910
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.41.
|
|
18911
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.41.
|
|
18912
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.41.
|
|
18913
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.41.
|
|
18914
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.41.
|
|
18915
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.41.
|
|
18905
|
+
version: 4.41.1
|
|
18906
|
+
resolution: "rollup@npm:4.41.1"
|
|
18907
|
+
dependencies:
|
|
18908
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.41.1"
|
|
18909
|
+
"@rollup/rollup-android-arm64": "npm:4.41.1"
|
|
18910
|
+
"@rollup/rollup-darwin-arm64": "npm:4.41.1"
|
|
18911
|
+
"@rollup/rollup-darwin-x64": "npm:4.41.1"
|
|
18912
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.41.1"
|
|
18913
|
+
"@rollup/rollup-freebsd-x64": "npm:4.41.1"
|
|
18914
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.41.1"
|
|
18915
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.41.1"
|
|
18916
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.41.1"
|
|
18917
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.41.1"
|
|
18918
|
+
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.41.1"
|
|
18919
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.41.1"
|
|
18920
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.41.1"
|
|
18921
|
+
"@rollup/rollup-linux-riscv64-musl": "npm:4.41.1"
|
|
18922
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.41.1"
|
|
18923
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.41.1"
|
|
18924
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.41.1"
|
|
18925
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.41.1"
|
|
18926
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.41.1"
|
|
18927
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.41.1"
|
|
18916
18928
|
"@types/estree": "npm:1.0.7"
|
|
18917
18929
|
fsevents: "npm:~2.3.2"
|
|
18918
18930
|
dependenciesMeta:
|
|
@@ -18960,7 +18972,7 @@ __metadata:
|
|
|
18960
18972
|
optional: true
|
|
18961
18973
|
bin:
|
|
18962
18974
|
rollup: dist/bin/rollup
|
|
18963
|
-
checksum: 10c0/
|
|
18975
|
+
checksum: 10c0/c4d5f2257320b50dc0e035e31d8d2f78d36b7015aef2f87cc984c0a1c97ffebf14337dddeb488b4b11ae798fea6486189b77e7cf677617dcf611d97db41ebfda
|
|
18964
18976
|
languageName: node
|
|
18965
18977
|
linkType: hard
|
|
18966
18978
|
|
|
@@ -19903,7 +19915,7 @@ __metadata:
|
|
|
19903
19915
|
languageName: node
|
|
19904
19916
|
linkType: hard
|
|
19905
19917
|
|
|
19906
|
-
"stop-iteration-iterator@npm:^1.0.0":
|
|
19918
|
+
"stop-iteration-iterator@npm:^1.0.0, stop-iteration-iterator@npm:^1.1.0":
|
|
19907
19919
|
version: 1.1.0
|
|
19908
19920
|
resolution: "stop-iteration-iterator@npm:1.1.0"
|
|
19909
19921
|
dependencies:
|
|
@@ -20547,8 +20559,8 @@ __metadata:
|
|
|
20547
20559
|
linkType: hard
|
|
20548
20560
|
|
|
20549
20561
|
"terser@npm:^5.3.4":
|
|
20550
|
-
version: 5.
|
|
20551
|
-
resolution: "terser@npm:5.
|
|
20562
|
+
version: 5.40.0
|
|
20563
|
+
resolution: "terser@npm:5.40.0"
|
|
20552
20564
|
dependencies:
|
|
20553
20565
|
"@jridgewell/source-map": "npm:^0.3.3"
|
|
20554
20566
|
acorn: "npm:^8.14.0"
|
|
@@ -20556,7 +20568,7 @@ __metadata:
|
|
|
20556
20568
|
source-map-support: "npm:~0.5.20"
|
|
20557
20569
|
bin:
|
|
20558
20570
|
terser: bin/terser
|
|
20559
|
-
checksum: 10c0/
|
|
20571
|
+
checksum: 10c0/0a6f35085217299b2e93c4c97533267f0d3a151fa771d7903bba3466345511c1ada2c474c668fc27f67b52906abac12fcf65b537dc5c177a1be9230aaa159b7f
|
|
20560
20572
|
languageName: node
|
|
20561
20573
|
linkType: hard
|
|
20562
20574
|
|
|
@@ -20651,12 +20663,12 @@ __metadata:
|
|
|
20651
20663
|
linkType: hard
|
|
20652
20664
|
|
|
20653
20665
|
"tinyglobby@npm:^0.2.12":
|
|
20654
|
-
version: 0.2.
|
|
20655
|
-
resolution: "tinyglobby@npm:0.2.
|
|
20666
|
+
version: 0.2.14
|
|
20667
|
+
resolution: "tinyglobby@npm:0.2.14"
|
|
20656
20668
|
dependencies:
|
|
20657
20669
|
fdir: "npm:^6.4.4"
|
|
20658
20670
|
picomatch: "npm:^4.0.2"
|
|
20659
|
-
checksum: 10c0/
|
|
20671
|
+
checksum: 10c0/f789ed6c924287a9b7d3612056ed0cda67306cd2c80c249fd280cf1504742b12583a2089b61f4abbd24605f390809017240e250241f09938054c9b363e51c0a6
|
|
20660
20672
|
languageName: node
|
|
20661
20673
|
linkType: hard
|
|
20662
20674
|
|