@licklist/design 0.70.5 → 0.70.6
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.
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
.main-filter-section {
|
|
8
8
|
display: flex;
|
|
9
|
+
gap: 1rem;
|
|
9
10
|
justify-content: center;
|
|
10
11
|
|
|
11
12
|
.search {
|
|
@@ -46,7 +47,6 @@
|
|
|
46
47
|
|
|
47
48
|
.buttons {
|
|
48
49
|
display: flex;
|
|
49
|
-
margin-left: 1rem;
|
|
50
50
|
|
|
51
51
|
.btn {
|
|
52
52
|
padding: 0;
|
|
@@ -122,8 +122,6 @@
|
|
|
122
122
|
flex-direction: column;
|
|
123
123
|
|
|
124
124
|
.buttons {
|
|
125
|
-
margin-top: 1rem;
|
|
126
|
-
margin-left: 0;
|
|
127
125
|
justify-content: space-between;
|
|
128
126
|
}
|
|
129
127
|
}
|
|
@@ -174,6 +172,7 @@
|
|
|
174
172
|
|
|
175
173
|
.additional-filter-container {
|
|
176
174
|
flex-wrap: nowrap;
|
|
175
|
+
align-items: baseline;
|
|
177
176
|
|
|
178
177
|
@include media-breakpoint-down(md) {
|
|
179
178
|
flex-wrap: wrap;
|
|
@@ -1,12 +1,19 @@
|
|
|
1
|
-
.booking-tabs-
|
|
1
|
+
.booking-tabs-panel {
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-direction: row;
|
|
4
|
-
justify-content: space-between;
|
|
5
4
|
align-items: center;
|
|
6
|
-
|
|
5
|
+
gap: 1rem;
|
|
7
6
|
background-color: $white;
|
|
8
7
|
|
|
9
8
|
.booking-tabs {
|
|
9
|
+
display: flex;
|
|
10
|
+
gap: 0.5rem;
|
|
11
|
+
|
|
12
|
+
@include media-breakpoint-down(md) {
|
|
13
|
+
flex-direction: column;
|
|
14
|
+
align-self: center;
|
|
15
|
+
}
|
|
16
|
+
|
|
10
17
|
svg {
|
|
11
18
|
g > rect:first-child {
|
|
12
19
|
fill: $white;
|
|
@@ -20,40 +27,29 @@
|
|
|
20
27
|
}
|
|
21
28
|
}
|
|
22
29
|
}
|
|
23
|
-
|
|
24
|
-
@include media-breakpoint-down(sm) {
|
|
25
|
-
width: 4rem;
|
|
26
|
-
}
|
|
27
30
|
}
|
|
28
31
|
|
|
29
32
|
.content {
|
|
30
33
|
display: flex;
|
|
34
|
+
flex-grow: 1;
|
|
35
|
+
gap: 1rem;
|
|
31
36
|
justify-content: space-between;
|
|
32
|
-
|
|
33
|
-
flex-direction: row;
|
|
37
|
+
align-items: center;
|
|
34
38
|
|
|
35
39
|
@include media-breakpoint-down(sm) {
|
|
36
|
-
display: flex;
|
|
37
40
|
flex-direction: column;
|
|
38
41
|
align-items: start;
|
|
39
|
-
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.booking {
|
|
43
|
-
@include media-breakpoint-down(sm) {
|
|
44
|
-
height: 13rem;
|
|
45
|
-
}
|
|
42
|
+
gap: 0.5rem;
|
|
46
43
|
}
|
|
47
44
|
}
|
|
48
45
|
|
|
49
46
|
.separator {
|
|
50
|
-
|
|
47
|
+
align-self: stretch;
|
|
51
48
|
border-right: 2px solid #dcdcdc;
|
|
52
49
|
}
|
|
53
50
|
|
|
54
51
|
.children {
|
|
55
52
|
flex: 1;
|
|
56
|
-
margin-left: 1rem;
|
|
57
53
|
|
|
58
54
|
@include media-breakpoint-down(sm) {
|
|
59
55
|
display: flex;
|
|
@@ -64,12 +60,13 @@
|
|
|
64
60
|
|
|
65
61
|
.buttons {
|
|
66
62
|
display: flex;
|
|
63
|
+
align-items: center;
|
|
67
64
|
|
|
68
65
|
.btn {
|
|
69
66
|
display: flex;
|
|
70
67
|
align-items: center;
|
|
71
|
-
|
|
72
|
-
|
|
68
|
+
padding-top: 0.5rem;
|
|
69
|
+
padding-bottom: 0.5rem;
|
|
73
70
|
}
|
|
74
71
|
|
|
75
72
|
.btn-outline-primary {
|
|
@@ -96,13 +93,19 @@
|
|
|
96
93
|
}
|
|
97
94
|
}
|
|
98
95
|
|
|
99
|
-
@include media-breakpoint-down(
|
|
100
|
-
display: flex;
|
|
96
|
+
@include media-breakpoint-down(lg) {
|
|
101
97
|
flex-direction: column;
|
|
98
|
+
align-items: stretch;
|
|
99
|
+
gap: 0.5rem;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@include media-breakpoint-down(sm) {
|
|
103
|
+
flex-direction: row;
|
|
102
104
|
align-items: start;
|
|
103
105
|
gap: 0.5rem;
|
|
104
106
|
margin-top: 0.5rem;
|
|
105
107
|
white-space: nowrap;
|
|
108
|
+
flex-wrap: wrap;
|
|
106
109
|
}
|
|
107
110
|
}
|
|
108
111
|
|
|
@@ -113,10 +116,4 @@
|
|
|
113
116
|
margin-top: 1rem;
|
|
114
117
|
height: 100%;
|
|
115
118
|
}
|
|
116
|
-
|
|
117
|
-
.booking {
|
|
118
|
-
@include media-breakpoint-down(sm) {
|
|
119
|
-
height: 13rem;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
119
|
}
|
package/package.json
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
.main-filter-section {
|
|
8
8
|
display: flex;
|
|
9
|
+
gap: 1rem;
|
|
9
10
|
justify-content: center;
|
|
10
11
|
|
|
11
12
|
.search {
|
|
@@ -46,7 +47,6 @@
|
|
|
46
47
|
|
|
47
48
|
.buttons {
|
|
48
49
|
display: flex;
|
|
49
|
-
margin-left: 1rem;
|
|
50
50
|
|
|
51
51
|
.btn {
|
|
52
52
|
padding: 0;
|
|
@@ -122,8 +122,6 @@
|
|
|
122
122
|
flex-direction: column;
|
|
123
123
|
|
|
124
124
|
.buttons {
|
|
125
|
-
margin-top: 1rem;
|
|
126
|
-
margin-left: 0;
|
|
127
125
|
justify-content: space-between;
|
|
128
126
|
}
|
|
129
127
|
}
|
|
@@ -174,6 +172,7 @@
|
|
|
174
172
|
|
|
175
173
|
.additional-filter-container {
|
|
176
174
|
flex-wrap: nowrap;
|
|
175
|
+
align-items: baseline;
|
|
177
176
|
|
|
178
177
|
@include media-breakpoint-down(md) {
|
|
179
178
|
flex-wrap: wrap;
|
|
@@ -1,12 +1,19 @@
|
|
|
1
|
-
.booking-tabs-
|
|
1
|
+
.booking-tabs-panel {
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-direction: row;
|
|
4
|
-
justify-content: space-between;
|
|
5
4
|
align-items: center;
|
|
6
|
-
|
|
5
|
+
gap: 1rem;
|
|
7
6
|
background-color: $white;
|
|
8
7
|
|
|
9
8
|
.booking-tabs {
|
|
9
|
+
display: flex;
|
|
10
|
+
gap: 0.5rem;
|
|
11
|
+
|
|
12
|
+
@include media-breakpoint-down(md) {
|
|
13
|
+
flex-direction: column;
|
|
14
|
+
align-self: center;
|
|
15
|
+
}
|
|
16
|
+
|
|
10
17
|
svg {
|
|
11
18
|
g > rect:first-child {
|
|
12
19
|
fill: $white;
|
|
@@ -20,40 +27,29 @@
|
|
|
20
27
|
}
|
|
21
28
|
}
|
|
22
29
|
}
|
|
23
|
-
|
|
24
|
-
@include media-breakpoint-down(sm) {
|
|
25
|
-
width: 4rem;
|
|
26
|
-
}
|
|
27
30
|
}
|
|
28
31
|
|
|
29
32
|
.content {
|
|
30
33
|
display: flex;
|
|
34
|
+
flex-grow: 1;
|
|
35
|
+
gap: 1rem;
|
|
31
36
|
justify-content: space-between;
|
|
32
|
-
|
|
33
|
-
flex-direction: row;
|
|
37
|
+
align-items: center;
|
|
34
38
|
|
|
35
39
|
@include media-breakpoint-down(sm) {
|
|
36
|
-
display: flex;
|
|
37
40
|
flex-direction: column;
|
|
38
41
|
align-items: start;
|
|
39
|
-
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.booking {
|
|
43
|
-
@include media-breakpoint-down(sm) {
|
|
44
|
-
height: 13rem;
|
|
45
|
-
}
|
|
42
|
+
gap: 0.5rem;
|
|
46
43
|
}
|
|
47
44
|
}
|
|
48
45
|
|
|
49
46
|
.separator {
|
|
50
|
-
|
|
47
|
+
align-self: stretch;
|
|
51
48
|
border-right: 2px solid #dcdcdc;
|
|
52
49
|
}
|
|
53
50
|
|
|
54
51
|
.children {
|
|
55
52
|
flex: 1;
|
|
56
|
-
margin-left: 1rem;
|
|
57
53
|
|
|
58
54
|
@include media-breakpoint-down(sm) {
|
|
59
55
|
display: flex;
|
|
@@ -64,12 +60,13 @@
|
|
|
64
60
|
|
|
65
61
|
.buttons {
|
|
66
62
|
display: flex;
|
|
63
|
+
align-items: center;
|
|
67
64
|
|
|
68
65
|
.btn {
|
|
69
66
|
display: flex;
|
|
70
67
|
align-items: center;
|
|
71
|
-
|
|
72
|
-
|
|
68
|
+
padding-top: 0.5rem;
|
|
69
|
+
padding-bottom: 0.5rem;
|
|
73
70
|
}
|
|
74
71
|
|
|
75
72
|
.btn-outline-primary {
|
|
@@ -96,13 +93,19 @@
|
|
|
96
93
|
}
|
|
97
94
|
}
|
|
98
95
|
|
|
99
|
-
@include media-breakpoint-down(
|
|
100
|
-
display: flex;
|
|
96
|
+
@include media-breakpoint-down(lg) {
|
|
101
97
|
flex-direction: column;
|
|
98
|
+
align-items: stretch;
|
|
99
|
+
gap: 0.5rem;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@include media-breakpoint-down(sm) {
|
|
103
|
+
flex-direction: row;
|
|
102
104
|
align-items: start;
|
|
103
105
|
gap: 0.5rem;
|
|
104
106
|
margin-top: 0.5rem;
|
|
105
107
|
white-space: nowrap;
|
|
108
|
+
flex-wrap: wrap;
|
|
106
109
|
}
|
|
107
110
|
}
|
|
108
111
|
|
|
@@ -113,10 +116,4 @@
|
|
|
113
116
|
margin-top: 1rem;
|
|
114
117
|
height: 100%;
|
|
115
118
|
}
|
|
116
|
-
|
|
117
|
-
.booking {
|
|
118
|
-
@include media-breakpoint-down(sm) {
|
|
119
|
-
height: 13rem;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
119
|
}
|
package/yarn.lock
CHANGED
|
@@ -41,20 +41,20 @@ __metadata:
|
|
|
41
41
|
linkType: hard
|
|
42
42
|
|
|
43
43
|
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0, @babel/code-frame@npm:^7.5.5, @babel/code-frame@npm:^7.8.3":
|
|
44
|
-
version: 7.26.
|
|
45
|
-
resolution: "@babel/code-frame@npm:7.26.
|
|
44
|
+
version: 7.26.2
|
|
45
|
+
resolution: "@babel/code-frame@npm:7.26.2"
|
|
46
46
|
dependencies:
|
|
47
47
|
"@babel/helper-validator-identifier": "npm:^7.25.9"
|
|
48
48
|
js-tokens: "npm:^4.0.0"
|
|
49
49
|
picocolors: "npm:^1.0.0"
|
|
50
|
-
checksum: 10c0/
|
|
50
|
+
checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8
|
|
51
51
|
languageName: node
|
|
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.25.9, @babel/compat-data@npm:^7.26.0":
|
|
55
|
-
version: 7.26.
|
|
56
|
-
resolution: "@babel/compat-data@npm:7.26.
|
|
57
|
-
checksum: 10c0/
|
|
55
|
+
version: 7.26.2
|
|
56
|
+
resolution: "@babel/compat-data@npm:7.26.2"
|
|
57
|
+
checksum: 10c0/c9b5f3724828d17f728a778f9d66c19b55c018d0d76de6d731178cca64f182c22b71400a73bf2b65dcc4fcfe52b630088a94d5902911b54206aa90e3ffe07d12
|
|
58
58
|
languageName: node
|
|
59
59
|
linkType: hard
|
|
60
60
|
|
|
@@ -106,15 +106,15 @@ __metadata:
|
|
|
106
106
|
linkType: hard
|
|
107
107
|
|
|
108
108
|
"@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0":
|
|
109
|
-
version: 7.26.
|
|
110
|
-
resolution: "@babel/generator@npm:7.26.
|
|
109
|
+
version: 7.26.2
|
|
110
|
+
resolution: "@babel/generator@npm:7.26.2"
|
|
111
111
|
dependencies:
|
|
112
|
-
"@babel/parser": "npm:^7.26.
|
|
112
|
+
"@babel/parser": "npm:^7.26.2"
|
|
113
113
|
"@babel/types": "npm:^7.26.0"
|
|
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/167ebce8977142f5012fad6bd91da51ac52bcd752f2261a54b7ab605d928aebe57e21636cdd2a9c7757e552652c68d9fcb5d40b06fcb66e02d9ee7526e118a5c
|
|
118
118
|
languageName: node
|
|
119
119
|
linkType: hard
|
|
120
120
|
|
|
@@ -369,14 +369,14 @@ __metadata:
|
|
|
369
369
|
languageName: node
|
|
370
370
|
linkType: hard
|
|
371
371
|
|
|
372
|
-
"@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.25.9, @babel/parser@npm:^7.26.0":
|
|
373
|
-
version: 7.26.
|
|
374
|
-
resolution: "@babel/parser@npm:7.26.
|
|
372
|
+
"@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.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2":
|
|
373
|
+
version: 7.26.2
|
|
374
|
+
resolution: "@babel/parser@npm:7.26.2"
|
|
375
375
|
dependencies:
|
|
376
376
|
"@babel/types": "npm:^7.26.0"
|
|
377
377
|
bin:
|
|
378
378
|
parser: ./bin/babel-parser.js
|
|
379
|
-
checksum: 10c0/
|
|
379
|
+
checksum: 10c0/751a743087b3a9172a7599f1421830d44c38f065ef781588d2bfb1c98f9b461719a226feb13c868d7a284783eee120c88ea522593118f2668f46ebfb1105c4d7
|
|
380
380
|
languageName: node
|
|
381
381
|
linkType: hard
|
|
382
382
|
|
|
@@ -2152,12 +2152,12 @@ __metadata:
|
|
|
2152
2152
|
linkType: hard
|
|
2153
2153
|
|
|
2154
2154
|
"@floating-ui/dom@npm:^1.2.1":
|
|
2155
|
-
version: 1.6.
|
|
2156
|
-
resolution: "@floating-ui/dom@npm:1.6.
|
|
2155
|
+
version: 1.6.12
|
|
2156
|
+
resolution: "@floating-ui/dom@npm:1.6.12"
|
|
2157
2157
|
dependencies:
|
|
2158
2158
|
"@floating-ui/core": "npm:^1.6.0"
|
|
2159
2159
|
"@floating-ui/utils": "npm:^0.2.8"
|
|
2160
|
-
checksum: 10c0/
|
|
2160
|
+
checksum: 10c0/c67b39862175b175c6ac299ea970f17a22c7482cfdf3b1bc79313407bf0880188b022b878953fa69d3ce166ff2bd9ae57c86043e5dd800c262b470d877591b7d
|
|
2161
2161
|
languageName: node
|
|
2162
2162
|
linkType: hard
|
|
2163
2163
|
|
|
@@ -3312,128 +3312,128 @@ __metadata:
|
|
|
3312
3312
|
languageName: node
|
|
3313
3313
|
linkType: hard
|
|
3314
3314
|
|
|
3315
|
-
"@rollup/rollup-android-arm-eabi@npm:4.24.
|
|
3316
|
-
version: 4.24.
|
|
3317
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.24.
|
|
3315
|
+
"@rollup/rollup-android-arm-eabi@npm:4.24.4":
|
|
3316
|
+
version: 4.24.4
|
|
3317
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.24.4"
|
|
3318
3318
|
conditions: os=android & cpu=arm
|
|
3319
3319
|
languageName: node
|
|
3320
3320
|
linkType: hard
|
|
3321
3321
|
|
|
3322
|
-
"@rollup/rollup-android-arm64@npm:4.24.
|
|
3323
|
-
version: 4.24.
|
|
3324
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.24.
|
|
3322
|
+
"@rollup/rollup-android-arm64@npm:4.24.4":
|
|
3323
|
+
version: 4.24.4
|
|
3324
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.24.4"
|
|
3325
3325
|
conditions: os=android & cpu=arm64
|
|
3326
3326
|
languageName: node
|
|
3327
3327
|
linkType: hard
|
|
3328
3328
|
|
|
3329
|
-
"@rollup/rollup-darwin-arm64@npm:4.24.
|
|
3330
|
-
version: 4.24.
|
|
3331
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.24.
|
|
3329
|
+
"@rollup/rollup-darwin-arm64@npm:4.24.4":
|
|
3330
|
+
version: 4.24.4
|
|
3331
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.24.4"
|
|
3332
3332
|
conditions: os=darwin & cpu=arm64
|
|
3333
3333
|
languageName: node
|
|
3334
3334
|
linkType: hard
|
|
3335
3335
|
|
|
3336
|
-
"@rollup/rollup-darwin-x64@npm:4.24.
|
|
3337
|
-
version: 4.24.
|
|
3338
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.24.
|
|
3336
|
+
"@rollup/rollup-darwin-x64@npm:4.24.4":
|
|
3337
|
+
version: 4.24.4
|
|
3338
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.24.4"
|
|
3339
3339
|
conditions: os=darwin & cpu=x64
|
|
3340
3340
|
languageName: node
|
|
3341
3341
|
linkType: hard
|
|
3342
3342
|
|
|
3343
|
-
"@rollup/rollup-freebsd-arm64@npm:4.24.
|
|
3344
|
-
version: 4.24.
|
|
3345
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.24.
|
|
3343
|
+
"@rollup/rollup-freebsd-arm64@npm:4.24.4":
|
|
3344
|
+
version: 4.24.4
|
|
3345
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.24.4"
|
|
3346
3346
|
conditions: os=freebsd & cpu=arm64
|
|
3347
3347
|
languageName: node
|
|
3348
3348
|
linkType: hard
|
|
3349
3349
|
|
|
3350
|
-
"@rollup/rollup-freebsd-x64@npm:4.24.
|
|
3351
|
-
version: 4.24.
|
|
3352
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.24.
|
|
3350
|
+
"@rollup/rollup-freebsd-x64@npm:4.24.4":
|
|
3351
|
+
version: 4.24.4
|
|
3352
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.24.4"
|
|
3353
3353
|
conditions: os=freebsd & cpu=x64
|
|
3354
3354
|
languageName: node
|
|
3355
3355
|
linkType: hard
|
|
3356
3356
|
|
|
3357
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.24.
|
|
3358
|
-
version: 4.24.
|
|
3359
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.24.
|
|
3357
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.24.4":
|
|
3358
|
+
version: 4.24.4
|
|
3359
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.24.4"
|
|
3360
3360
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3361
3361
|
languageName: node
|
|
3362
3362
|
linkType: hard
|
|
3363
3363
|
|
|
3364
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.24.
|
|
3365
|
-
version: 4.24.
|
|
3366
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.24.
|
|
3364
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.24.4":
|
|
3365
|
+
version: 4.24.4
|
|
3366
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.24.4"
|
|
3367
3367
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3368
3368
|
languageName: node
|
|
3369
3369
|
linkType: hard
|
|
3370
3370
|
|
|
3371
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.24.
|
|
3372
|
-
version: 4.24.
|
|
3373
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.24.
|
|
3371
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.24.4":
|
|
3372
|
+
version: 4.24.4
|
|
3373
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.24.4"
|
|
3374
3374
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3375
3375
|
languageName: node
|
|
3376
3376
|
linkType: hard
|
|
3377
3377
|
|
|
3378
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.24.
|
|
3379
|
-
version: 4.24.
|
|
3380
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.24.
|
|
3378
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.24.4":
|
|
3379
|
+
version: 4.24.4
|
|
3380
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.24.4"
|
|
3381
3381
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3382
3382
|
languageName: node
|
|
3383
3383
|
linkType: hard
|
|
3384
3384
|
|
|
3385
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.
|
|
3386
|
-
version: 4.24.
|
|
3387
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.
|
|
3385
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.4":
|
|
3386
|
+
version: 4.24.4
|
|
3387
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.4"
|
|
3388
3388
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3389
3389
|
languageName: node
|
|
3390
3390
|
linkType: hard
|
|
3391
3391
|
|
|
3392
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.24.
|
|
3393
|
-
version: 4.24.
|
|
3394
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.24.
|
|
3392
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.24.4":
|
|
3393
|
+
version: 4.24.4
|
|
3394
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.24.4"
|
|
3395
3395
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3396
3396
|
languageName: node
|
|
3397
3397
|
linkType: hard
|
|
3398
3398
|
|
|
3399
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.24.
|
|
3400
|
-
version: 4.24.
|
|
3401
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.24.
|
|
3399
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.24.4":
|
|
3400
|
+
version: 4.24.4
|
|
3401
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.24.4"
|
|
3402
3402
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3403
3403
|
languageName: node
|
|
3404
3404
|
linkType: hard
|
|
3405
3405
|
|
|
3406
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.24.
|
|
3407
|
-
version: 4.24.
|
|
3408
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.24.
|
|
3406
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.24.4":
|
|
3407
|
+
version: 4.24.4
|
|
3408
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.24.4"
|
|
3409
3409
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3410
3410
|
languageName: node
|
|
3411
3411
|
linkType: hard
|
|
3412
3412
|
|
|
3413
|
-
"@rollup/rollup-linux-x64-musl@npm:4.24.
|
|
3414
|
-
version: 4.24.
|
|
3415
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.24.
|
|
3413
|
+
"@rollup/rollup-linux-x64-musl@npm:4.24.4":
|
|
3414
|
+
version: 4.24.4
|
|
3415
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.24.4"
|
|
3416
3416
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3417
3417
|
languageName: node
|
|
3418
3418
|
linkType: hard
|
|
3419
3419
|
|
|
3420
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.24.
|
|
3421
|
-
version: 4.24.
|
|
3422
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.24.
|
|
3420
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.24.4":
|
|
3421
|
+
version: 4.24.4
|
|
3422
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.24.4"
|
|
3423
3423
|
conditions: os=win32 & cpu=arm64
|
|
3424
3424
|
languageName: node
|
|
3425
3425
|
linkType: hard
|
|
3426
3426
|
|
|
3427
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.24.
|
|
3428
|
-
version: 4.24.
|
|
3429
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.24.
|
|
3427
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.24.4":
|
|
3428
|
+
version: 4.24.4
|
|
3429
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.24.4"
|
|
3430
3430
|
conditions: os=win32 & cpu=ia32
|
|
3431
3431
|
languageName: node
|
|
3432
3432
|
linkType: hard
|
|
3433
3433
|
|
|
3434
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.24.
|
|
3435
|
-
version: 4.24.
|
|
3436
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.24.
|
|
3434
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.24.4":
|
|
3435
|
+
version: 4.24.4
|
|
3436
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.24.4"
|
|
3437
3437
|
conditions: os=win32 & cpu=x64
|
|
3438
3438
|
languageName: node
|
|
3439
3439
|
linkType: hard
|
|
@@ -5096,11 +5096,11 @@ __metadata:
|
|
|
5096
5096
|
linkType: hard
|
|
5097
5097
|
|
|
5098
5098
|
"@swc/types@npm:^0.1.9":
|
|
5099
|
-
version: 0.1.
|
|
5100
|
-
resolution: "@swc/types@npm:0.1.
|
|
5099
|
+
version: 0.1.14
|
|
5100
|
+
resolution: "@swc/types@npm:0.1.14"
|
|
5101
5101
|
dependencies:
|
|
5102
5102
|
"@swc/counter": "npm:^0.1.3"
|
|
5103
|
-
checksum: 10c0/
|
|
5103
|
+
checksum: 10c0/5ab5a213f25fbb038e8b2fa001a20c64363f81c199319373ed0228f316c046a996758fbaf906ba84d297b35e37727082d27974266db320e534da594716626529
|
|
5104
5104
|
languageName: node
|
|
5105
5105
|
linkType: hard
|
|
5106
5106
|
|
|
@@ -5694,11 +5694,11 @@ __metadata:
|
|
|
5694
5694
|
linkType: hard
|
|
5695
5695
|
|
|
5696
5696
|
"@types/node@npm:*":
|
|
5697
|
-
version: 22.8.
|
|
5698
|
-
resolution: "@types/node@npm:22.8.
|
|
5697
|
+
version: 22.8.7
|
|
5698
|
+
resolution: "@types/node@npm:22.8.7"
|
|
5699
5699
|
dependencies:
|
|
5700
5700
|
undici-types: "npm:~6.19.8"
|
|
5701
|
-
checksum: 10c0/
|
|
5701
|
+
checksum: 10c0/14372885db80059ed6e92c320b2bcd8f7dc271698adce11f51aa0f424a3f82aa1749a4f66321b87043791b894346b2458d514cbb65ce70167c2fd8a78a124947
|
|
5702
5702
|
languageName: node
|
|
5703
5703
|
linkType: hard
|
|
5704
5704
|
|
|
@@ -6552,7 +6552,7 @@ __metadata:
|
|
|
6552
6552
|
languageName: node
|
|
6553
6553
|
linkType: hard
|
|
6554
6554
|
|
|
6555
|
-
"accepts@npm:~1.3.
|
|
6555
|
+
"accepts@npm:~1.3.8":
|
|
6556
6556
|
version: 1.3.8
|
|
6557
6557
|
resolution: "accepts@npm:1.3.8"
|
|
6558
6558
|
dependencies:
|
|
@@ -7819,7 +7819,7 @@ __metadata:
|
|
|
7819
7819
|
languageName: node
|
|
7820
7820
|
linkType: hard
|
|
7821
7821
|
|
|
7822
|
-
"browserslist@npm:^4.0.0, browserslist@npm:^4.12.0, browserslist@npm:^4.23.3, browserslist@npm:^4.24.0":
|
|
7822
|
+
"browserslist@npm:^4.0.0, browserslist@npm:^4.12.0, browserslist@npm:^4.23.3, browserslist@npm:^4.24.0, browserslist@npm:^4.24.2":
|
|
7823
7823
|
version: 4.24.2
|
|
7824
7824
|
resolution: "browserslist@npm:4.24.2"
|
|
7825
7825
|
dependencies:
|
|
@@ -7883,13 +7883,6 @@ __metadata:
|
|
|
7883
7883
|
languageName: node
|
|
7884
7884
|
linkType: hard
|
|
7885
7885
|
|
|
7886
|
-
"bytes@npm:3.0.0":
|
|
7887
|
-
version: 3.0.0
|
|
7888
|
-
resolution: "bytes@npm:3.0.0"
|
|
7889
|
-
checksum: 10c0/91d42c38601c76460519ffef88371caacaea483a354c8e4b8808e7b027574436a5713337c003ea3de63ee4991c2a9a637884fdfe7f761760d746929d9e8fec60
|
|
7890
|
-
languageName: node
|
|
7891
|
-
linkType: hard
|
|
7892
|
-
|
|
7893
7886
|
"bytes@npm:3.1.2":
|
|
7894
7887
|
version: 3.1.2
|
|
7895
7888
|
resolution: "bytes@npm:3.1.2"
|
|
@@ -8076,9 +8069,9 @@ __metadata:
|
|
|
8076
8069
|
linkType: hard
|
|
8077
8070
|
|
|
8078
8071
|
"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001109, caniuse-lite@npm:^1.0.30001125, caniuse-lite@npm:^1.0.30001646, caniuse-lite@npm:^1.0.30001669":
|
|
8079
|
-
version: 1.0.
|
|
8080
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8081
|
-
checksum: 10c0/
|
|
8072
|
+
version: 1.0.30001677
|
|
8073
|
+
resolution: "caniuse-lite@npm:1.0.30001677"
|
|
8074
|
+
checksum: 10c0/22b4aa738b213b5d0bc820c26ba23fa265ca90a5c59776e1a686b9ab6fff9120d0825fd920c0a601a4b65056ef40d01548405feb95c8dd6083255f50c71a0864
|
|
8082
8075
|
languageName: node
|
|
8083
8076
|
linkType: hard
|
|
8084
8077
|
|
|
@@ -8214,8 +8207,8 @@ __metadata:
|
|
|
8214
8207
|
linkType: hard
|
|
8215
8208
|
|
|
8216
8209
|
"chromatic@npm:^11.4.0":
|
|
8217
|
-
version: 11.16.
|
|
8218
|
-
resolution: "chromatic@npm:11.16.
|
|
8210
|
+
version: 11.16.3
|
|
8211
|
+
resolution: "chromatic@npm:11.16.3"
|
|
8219
8212
|
peerDependencies:
|
|
8220
8213
|
"@chromatic-com/cypress": ^0.*.* || ^1.0.0
|
|
8221
8214
|
"@chromatic-com/playwright": ^0.*.* || ^1.0.0
|
|
@@ -8228,7 +8221,7 @@ __metadata:
|
|
|
8228
8221
|
chroma: dist/bin.js
|
|
8229
8222
|
chromatic: dist/bin.js
|
|
8230
8223
|
chromatic-cli: dist/bin.js
|
|
8231
|
-
checksum: 10c0/
|
|
8224
|
+
checksum: 10c0/407e8c78ea8cea7a47ea427fe76380d5033dc3be3928b5d3537b81aa0f617db4944d7c1a377705e83900b6bb78ca6d7cbeb55ea4ebf2154f0739c15fc605b3b5
|
|
8232
8225
|
languageName: node
|
|
8233
8226
|
linkType: hard
|
|
8234
8227
|
|
|
@@ -8540,7 +8533,7 @@ __metadata:
|
|
|
8540
8533
|
languageName: node
|
|
8541
8534
|
linkType: hard
|
|
8542
8535
|
|
|
8543
|
-
"compressible@npm:~2.0.
|
|
8536
|
+
"compressible@npm:~2.0.18":
|
|
8544
8537
|
version: 2.0.18
|
|
8545
8538
|
resolution: "compressible@npm:2.0.18"
|
|
8546
8539
|
dependencies:
|
|
@@ -8550,17 +8543,17 @@ __metadata:
|
|
|
8550
8543
|
linkType: hard
|
|
8551
8544
|
|
|
8552
8545
|
"compression@npm:^1.7.4":
|
|
8553
|
-
version: 1.7.
|
|
8554
|
-
resolution: "compression@npm:1.7.
|
|
8546
|
+
version: 1.7.5
|
|
8547
|
+
resolution: "compression@npm:1.7.5"
|
|
8555
8548
|
dependencies:
|
|
8556
|
-
|
|
8557
|
-
|
|
8558
|
-
compressible: "npm:~2.0.16"
|
|
8549
|
+
bytes: "npm:3.1.2"
|
|
8550
|
+
compressible: "npm:~2.0.18"
|
|
8559
8551
|
debug: "npm:2.6.9"
|
|
8552
|
+
negotiator: "npm:~0.6.4"
|
|
8560
8553
|
on-headers: "npm:~1.0.2"
|
|
8561
|
-
safe-buffer: "npm:5.1
|
|
8554
|
+
safe-buffer: "npm:5.2.1"
|
|
8562
8555
|
vary: "npm:~1.1.2"
|
|
8563
|
-
checksum: 10c0/
|
|
8556
|
+
checksum: 10c0/35c9d2d57c86d8107eab5e637f2146fcefec8475a2ff3e162f5eb0982ff856d385fb5d8c9823c3d50e075f2d9304bc622dac3df27bfef0355309c0a5307861c5
|
|
8564
8557
|
languageName: node
|
|
8565
8558
|
linkType: hard
|
|
8566
8559
|
|
|
@@ -8714,25 +8707,25 @@ __metadata:
|
|
|
8714
8707
|
linkType: hard
|
|
8715
8708
|
|
|
8716
8709
|
"core-js-compat@npm:^3.38.0, core-js-compat@npm:^3.38.1, core-js-compat@npm:^3.8.1":
|
|
8717
|
-
version: 3.
|
|
8718
|
-
resolution: "core-js-compat@npm:3.
|
|
8710
|
+
version: 3.39.0
|
|
8711
|
+
resolution: "core-js-compat@npm:3.39.0"
|
|
8719
8712
|
dependencies:
|
|
8720
|
-
browserslist: "npm:^4.
|
|
8721
|
-
checksum: 10c0/
|
|
8713
|
+
browserslist: "npm:^4.24.2"
|
|
8714
|
+
checksum: 10c0/880579a3dab235e3b6350f1e324269c600753b48e891ea859331618d5051e68b7a95db6a03ad2f3cc7df4397318c25a5bc7740562ad39e94f56568638d09d414
|
|
8722
8715
|
languageName: node
|
|
8723
8716
|
linkType: hard
|
|
8724
8717
|
|
|
8725
8718
|
"core-js-pure@npm:^3.30.2, core-js-pure@npm:^3.8.2":
|
|
8726
|
-
version: 3.
|
|
8727
|
-
resolution: "core-js-pure@npm:3.
|
|
8728
|
-
checksum: 10c0/
|
|
8719
|
+
version: 3.39.0
|
|
8720
|
+
resolution: "core-js-pure@npm:3.39.0"
|
|
8721
|
+
checksum: 10c0/5d954e467703ea1e860eb070bd72cf9dc5bfddd7037c09d750f0eba3ffc4066db741a595af86dc833a709929e161a909e48da3cbdd2d9bee7795cb516dc9f7d4
|
|
8729
8722
|
languageName: node
|
|
8730
8723
|
linkType: hard
|
|
8731
8724
|
|
|
8732
8725
|
"core-js@npm:^3.0.4, core-js@npm:^3.6.5, core-js@npm:^3.8.2":
|
|
8733
|
-
version: 3.
|
|
8734
|
-
resolution: "core-js@npm:3.
|
|
8735
|
-
checksum: 10c0/
|
|
8726
|
+
version: 3.39.0
|
|
8727
|
+
resolution: "core-js@npm:3.39.0"
|
|
8728
|
+
checksum: 10c0/f7602069b6afb2e3298eec612a5c1e0c3e6a458930fbfc7a4c5f9ac03426507f49ce395eecdd2d9bae9024f820e44582b67ffe16f2272395af26964f174eeb6b
|
|
8736
8729
|
languageName: node
|
|
8737
8730
|
linkType: hard
|
|
8738
8731
|
|
|
@@ -9836,9 +9829,9 @@ __metadata:
|
|
|
9836
9829
|
linkType: hard
|
|
9837
9830
|
|
|
9838
9831
|
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.41":
|
|
9839
|
-
version: 1.5.
|
|
9840
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9841
|
-
checksum: 10c0/
|
|
9832
|
+
version: 1.5.50
|
|
9833
|
+
resolution: "electron-to-chromium@npm:1.5.50"
|
|
9834
|
+
checksum: 10c0/8b77b18ae833bfe2173e346ac33b8d66b5b5acf0cf5de65df9799f4d482334c938aa0950e4d01391d5fab8994f46c0e9059f4517843e7b8d861f9b0c49eb4c5d
|
|
9842
9835
|
languageName: node
|
|
9843
9836
|
linkType: hard
|
|
9844
9837
|
|
|
@@ -14893,7 +14886,7 @@ __metadata:
|
|
|
14893
14886
|
languageName: node
|
|
14894
14887
|
linkType: hard
|
|
14895
14888
|
|
|
14896
|
-
"negotiator@npm:^0.6.3":
|
|
14889
|
+
"negotiator@npm:^0.6.3, negotiator@npm:~0.6.4":
|
|
14897
14890
|
version: 0.6.4
|
|
14898
14891
|
resolution: "negotiator@npm:0.6.4"
|
|
14899
14892
|
checksum: 10c0/3e677139c7fb7628a6f36335bf11a885a62c21d5390204590a1a214a5631fcbe5ea74ef6a610b60afe84b4d975cbe0566a23f20ee17c77c73e74b80032108dea
|
|
@@ -16864,15 +16857,15 @@ __metadata:
|
|
|
16864
16857
|
linkType: hard
|
|
16865
16858
|
|
|
16866
16859
|
"prosemirror-tables@npm:^1.3.0":
|
|
16867
|
-
version: 1.6.
|
|
16868
|
-
resolution: "prosemirror-tables@npm:1.6.
|
|
16860
|
+
version: 1.6.1
|
|
16861
|
+
resolution: "prosemirror-tables@npm:1.6.1"
|
|
16869
16862
|
dependencies:
|
|
16870
16863
|
prosemirror-keymap: "npm:^1.1.2"
|
|
16871
16864
|
prosemirror-model: "npm:^1.8.1"
|
|
16872
16865
|
prosemirror-state: "npm:^1.3.1"
|
|
16873
16866
|
prosemirror-transform: "npm:^1.2.1"
|
|
16874
16867
|
prosemirror-view: "npm:^1.13.3"
|
|
16875
|
-
checksum: 10c0/
|
|
16868
|
+
checksum: 10c0/a42e33a30f39fdaf546c078bdaa1dfe91d3d2a28d24caca381fb79b6fe4762347d913e2a1d042b9e125d89ce9cabdecf2399e7eb555a63743860f88c537cff22
|
|
16876
16869
|
languageName: node
|
|
16877
16870
|
linkType: hard
|
|
16878
16871
|
|
|
@@ -18736,27 +18729,27 @@ __metadata:
|
|
|
18736
18729
|
linkType: hard
|
|
18737
18730
|
|
|
18738
18731
|
"rollup@npm:^4.13.0":
|
|
18739
|
-
version: 4.24.
|
|
18740
|
-
resolution: "rollup@npm:4.24.
|
|
18741
|
-
dependencies:
|
|
18742
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.24.
|
|
18743
|
-
"@rollup/rollup-android-arm64": "npm:4.24.
|
|
18744
|
-
"@rollup/rollup-darwin-arm64": "npm:4.24.
|
|
18745
|
-
"@rollup/rollup-darwin-x64": "npm:4.24.
|
|
18746
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.24.
|
|
18747
|
-
"@rollup/rollup-freebsd-x64": "npm:4.24.
|
|
18748
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.24.
|
|
18749
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.24.
|
|
18750
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.24.
|
|
18751
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.24.
|
|
18752
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.24.
|
|
18753
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.24.
|
|
18754
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.24.
|
|
18755
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.24.
|
|
18756
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.24.
|
|
18757
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.24.
|
|
18758
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.24.
|
|
18759
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.24.
|
|
18732
|
+
version: 4.24.4
|
|
18733
|
+
resolution: "rollup@npm:4.24.4"
|
|
18734
|
+
dependencies:
|
|
18735
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.24.4"
|
|
18736
|
+
"@rollup/rollup-android-arm64": "npm:4.24.4"
|
|
18737
|
+
"@rollup/rollup-darwin-arm64": "npm:4.24.4"
|
|
18738
|
+
"@rollup/rollup-darwin-x64": "npm:4.24.4"
|
|
18739
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.24.4"
|
|
18740
|
+
"@rollup/rollup-freebsd-x64": "npm:4.24.4"
|
|
18741
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.24.4"
|
|
18742
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.24.4"
|
|
18743
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.24.4"
|
|
18744
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.24.4"
|
|
18745
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.24.4"
|
|
18746
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.24.4"
|
|
18747
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.24.4"
|
|
18748
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.24.4"
|
|
18749
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.24.4"
|
|
18750
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.24.4"
|
|
18751
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.24.4"
|
|
18752
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.24.4"
|
|
18760
18753
|
"@types/estree": "npm:1.0.6"
|
|
18761
18754
|
fsevents: "npm:~2.3.2"
|
|
18762
18755
|
dependenciesMeta:
|
|
@@ -18800,7 +18793,7 @@ __metadata:
|
|
|
18800
18793
|
optional: true
|
|
18801
18794
|
bin:
|
|
18802
18795
|
rollup: dist/bin/rollup
|
|
18803
|
-
checksum: 10c0/
|
|
18796
|
+
checksum: 10c0/8e9e9ce4dc8cc48acf258a26519ed1bbbbdac99fd701e89d11c31271e01b4663fe61d839f7906a49c0983b1a49e2acc622948d7665ff0f57ecc48d872835d1ce
|
|
18804
18797
|
languageName: node
|
|
18805
18798
|
linkType: hard
|
|
18806
18799
|
|
|
@@ -18886,13 +18879,6 @@ __metadata:
|
|
|
18886
18879
|
languageName: node
|
|
18887
18880
|
linkType: hard
|
|
18888
18881
|
|
|
18889
|
-
"safe-buffer@npm:5.1.2, safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1":
|
|
18890
|
-
version: 5.1.2
|
|
18891
|
-
resolution: "safe-buffer@npm:5.1.2"
|
|
18892
|
-
checksum: 10c0/780ba6b5d99cc9a40f7b951d47152297d0e260f0df01472a1b99d4889679a4b94a13d644f7dbc4f022572f09ae9005fa2fbb93bbbd83643316f365a3e9a45b21
|
|
18893
|
-
languageName: node
|
|
18894
|
-
linkType: hard
|
|
18895
|
-
|
|
18896
18882
|
"safe-buffer@npm:5.2.1, safe-buffer@npm:^5.0.1, safe-buffer@npm:^5.1.0, safe-buffer@npm:^5.1.1, safe-buffer@npm:^5.1.2, safe-buffer@npm:^5.2.0, safe-buffer@npm:^5.2.1, safe-buffer@npm:~5.2.0":
|
|
18897
18883
|
version: 5.2.1
|
|
18898
18884
|
resolution: "safe-buffer@npm:5.2.1"
|
|
@@ -18900,6 +18886,13 @@ __metadata:
|
|
|
18900
18886
|
languageName: node
|
|
18901
18887
|
linkType: hard
|
|
18902
18888
|
|
|
18889
|
+
"safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1":
|
|
18890
|
+
version: 5.1.2
|
|
18891
|
+
resolution: "safe-buffer@npm:5.1.2"
|
|
18892
|
+
checksum: 10c0/780ba6b5d99cc9a40f7b951d47152297d0e260f0df01472a1b99d4889679a4b94a13d644f7dbc4f022572f09ae9005fa2fbb93bbbd83643316f365a3e9a45b21
|
|
18893
|
+
languageName: node
|
|
18894
|
+
linkType: hard
|
|
18895
|
+
|
|
18903
18896
|
"safe-regex-test@npm:^1.0.3":
|
|
18904
18897
|
version: 1.0.3
|
|
18905
18898
|
resolution: "safe-regex-test@npm:1.0.3"
|
|
@@ -20579,9 +20572,9 @@ __metadata:
|
|
|
20579
20572
|
linkType: hard
|
|
20580
20573
|
|
|
20581
20574
|
"tslib@npm:^2, tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.3.0, tslib@npm:^2.4.0":
|
|
20582
|
-
version: 2.8.
|
|
20583
|
-
resolution: "tslib@npm:2.8.
|
|
20584
|
-
checksum: 10c0/
|
|
20575
|
+
version: 2.8.1
|
|
20576
|
+
resolution: "tslib@npm:2.8.1"
|
|
20577
|
+
checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62
|
|
20585
20578
|
languageName: node
|
|
20586
20579
|
linkType: hard
|
|
20587
20580
|
|