@licklist/design 0.71.18-dev.3 → 0.71.18-dev.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.js +1 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/ProductWithModifierSetForm.d.ts +18 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/ProductWithModifierSetForm.d.ts.map +1 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/ProductWithModifierSetForm.js +281 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/ProductWithModifierSetModal.d.ts +15 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/ProductWithModifierSetModal.d.ts.map +1 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/ProductWithModifierSetModal.js +89 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/controll/ModifierSetControll.d.ts +16 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/controll/ModifierSetControll.d.ts.map +1 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/controll/ModifierSetControll.js +447 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/controll/ProductControll.d.ts +12 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/controll/ProductControll.d.ts.map +1 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/controll/ProductControll.js +45 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/index.d.ts +2 -0
- package/dist/iframe/ProductWithModifierModal/ModifierSetModal/index.d.ts.map +1 -0
- package/dist/iframe/ProductWithModifierModal/index.d.ts +2 -0
- package/dist/iframe/ProductWithModifierModal/index.d.ts.map +1 -0
- package/dist/iframe/event/ticket-description/TicketDescription.d.ts +2 -1
- package/dist/iframe/event/ticket-description/TicketDescription.d.ts.map +1 -1
- package/dist/iframe/event/ticket-description/TicketDescription.js +4 -3
- package/dist/iframe/order-process/components/BookingSummary/components/ProductSummary/ProductSummary.d.ts.map +1 -1
- package/dist/iframe/order-process/components/BookingSummary/components/ProductSummary/ProductSummary.js +29 -2
- package/dist/iframe/order-process/components/BookingSummary/utils/index.d.ts +4 -0
- package/dist/iframe/order-process/components/BookingSummary/utils/index.d.ts.map +1 -1
- package/dist/iframe/order-process/components/BookingSummary/utils/index.js +27 -2
- package/dist/iframe/order-process/components/CategoryProduct/CategoryProduct.d.ts.map +1 -1
- package/dist/iframe/order-process/components/CategoryProduct/CategoryProduct.js +106 -2
- package/dist/iframe/order-process/components/CategoryProduct/components/ProductQuantityInput/ProductQuantityInput.d.ts +3 -1
- package/dist/iframe/order-process/components/CategoryProduct/components/ProductQuantityInput/ProductQuantityInput.d.ts.map +1 -1
- package/dist/iframe/order-process/components/CategoryProduct/components/ProductQuantityInput/ProductQuantityInput.js +95 -1
- package/dist/iframe/order-process/components/CategoryProduct/components/ProductWithModifier/ProductWithModifier.d.ts +22 -0
- package/dist/iframe/order-process/components/CategoryProduct/components/ProductWithModifier/ProductWithModifier.d.ts.map +1 -0
- package/dist/iframe/order-process/components/CategoryProduct/components/ProductWithModifier/ProductWithModifier.js +62 -0
- package/dist/iframe/order-process/components/CategoryProduct/constants.d.ts +2 -0
- package/dist/iframe/order-process/components/CategoryProduct/constants.d.ts.map +1 -0
- package/dist/iframe/order-process/components/CategoryProduct/constants.js +4 -0
- package/dist/iframe/order-process/components/utils/useOnWindowUnmount.d.ts +6 -0
- package/dist/iframe/order-process/components/utils/useOnWindowUnmount.d.ts.map +1 -0
- package/dist/iframe/order-process/components/utils/useOnWindowUnmount.js +18 -0
- package/dist/iframe/payment/order-items-table/hooks/useTableData.d.ts.map +1 -1
- package/dist/iframe/payment/order-items-table/hooks/useTableData.js +83 -10
- package/dist/iframe/payment/order-items-table/utils/index.d.ts.map +1 -1
- package/dist/iframe/payment/order-items-table/utils/index.js +15 -0
- package/dist/iframe/payment/order-items-table/utils/paymentSummary.js +2 -2
- package/dist/product-set/form/ProductSetForm.d.ts +3 -1
- package/dist/product-set/form/ProductSetForm.d.ts.map +1 -1
- package/dist/product-set/form/ProductSetForm.js +6 -4
- package/dist/product-set/form/ProductsControl.d.ts.map +1 -1
- package/dist/product-set/form/ProductsControl.js +17 -5
- package/dist/product-set/form/context.d.ts +3 -1
- package/dist/product-set/form/context.d.ts.map +1 -1
- package/dist/product-set/form/context.js +2 -1
- package/dist/product-set/product/ProductControl.d.ts +8 -0
- package/dist/product-set/product/ProductControl.d.ts.map +1 -1
- package/dist/product-set/product/ProductControl.js +25 -1
- package/dist/product-set/utils/index.d.ts +88 -0
- package/dist/product-set/utils/index.d.ts.map +1 -1
- package/dist/product-set/utils/index.js +19 -1
- package/dist/sales/coupon/utils/index.d.ts +2 -1
- package/dist/sales/coupon/utils/index.d.ts.map +1 -1
- package/dist/styles/iframe-page/Page.scss +16 -0
- package/dist/styles/iframe-page/PageBody.scss +4 -0
- package/dist/styles/modals/Modals.scss +16 -0
- package/dist/styles/product-set/ProductSetForm.scss +10 -0
- package/dist/styles/sales/ManualBooking.scss +6 -0
- package/dist/styles/themes/bookedit/index.scss +14 -0
- package/package.json +6 -6
- package/src/iframe/ProductWithModifierModal/ModifierSetModal/ProductWithModifierSetForm.tsx +205 -0
- package/src/iframe/ProductWithModifierModal/ModifierSetModal/ProductWithModifierSetModal.tsx +75 -0
- package/src/iframe/ProductWithModifierModal/ModifierSetModal/controll/ModifierSetControll.tsx +471 -0
- package/src/iframe/ProductWithModifierModal/ModifierSetModal/controll/ProductControll.tsx +55 -0
- package/src/iframe/ProductWithModifierModal/ModifierSetModal/index.ts +1 -0
- package/src/iframe/ProductWithModifierModal/index.ts +1 -0
- package/src/iframe/event/ticket-description/TicketDescription.tsx +5 -3
- package/src/iframe/order-process/components/BookingSummary/components/ProductSummary/ProductSummary.tsx +32 -1
- package/src/iframe/order-process/components/BookingSummary/utils/index.ts +45 -1
- package/src/iframe/order-process/components/CategoryProduct/CategoryProduct.tsx +155 -75
- package/src/iframe/order-process/components/CategoryProduct/components/ProductQuantityInput/ProductQuantityInput.tsx +58 -1
- package/src/iframe/order-process/components/CategoryProduct/components/ProductWithModifier/ProductWithModifier.tsx +84 -0
- package/src/iframe/order-process/components/CategoryProduct/constants.ts +1 -0
- package/src/iframe/order-process/components/utils/useOnWindowUnmount.ts +25 -0
- package/src/iframe/payment/order-items-table/hooks/useTableData.tsx +84 -14
- package/src/iframe/payment/order-items-table/utils/index.ts +23 -0
- package/src/iframe/payment/order-items-table/utils/paymentSummary.tsx +2 -2
- package/src/product-set/form/ProductSetForm.tsx +11 -3
- package/src/product-set/form/ProductsControl.tsx +24 -15
- package/src/product-set/form/context.tsx +5 -0
- package/src/product-set/product/ProductControl.tsx +37 -1
- package/src/product-set/utils/index.ts +19 -0
- package/src/sales/coupon/utils/index.ts +5 -3
- package/src/styles/iframe-page/Page.scss +16 -0
- package/src/styles/iframe-page/PageBody.scss +4 -0
- package/src/styles/modals/Modals.scss +16 -0
- package/src/styles/product-set/ProductSetForm.scss +10 -0
- package/src/styles/sales/ManualBooking.scss +6 -0
- package/src/styles/themes/bookedit/index.scss +14 -0
- package/yarn.lock +171 -199
package/yarn.lock
CHANGED
|
@@ -40,7 +40,7 @@ __metadata:
|
|
|
40
40
|
languageName: node
|
|
41
41
|
linkType: hard
|
|
42
42
|
|
|
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.
|
|
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.2, @babel/code-frame@npm:^7.5.5, @babel/code-frame@npm:^7.8.3":
|
|
44
44
|
version: 7.26.2
|
|
45
45
|
resolution: "@babel/code-frame@npm:7.26.2"
|
|
46
46
|
dependencies:
|
|
@@ -51,7 +51,7 @@ __metadata:
|
|
|
51
51
|
languageName: node
|
|
52
52
|
linkType: hard
|
|
53
53
|
|
|
54
|
-
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.
|
|
54
|
+
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.5":
|
|
55
55
|
version: 7.26.5
|
|
56
56
|
resolution: "@babel/compat-data@npm:7.26.5"
|
|
57
57
|
checksum: 10c0/9d2b41f0948c3dfc5de44d9f789d2208c2ea1fd7eb896dfbb297fe955e696728d6f363c600cd211e7f58ccbc2d834fe516bb1e4cf883bbabed8a32b038afc1a0
|
|
@@ -83,29 +83,29 @@ __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.7
|
|
87
|
+
resolution: "@babel/core@npm:7.26.7"
|
|
88
88
|
dependencies:
|
|
89
89
|
"@ampproject/remapping": "npm:^2.2.0"
|
|
90
|
-
"@babel/code-frame": "npm:^7.26.
|
|
91
|
-
"@babel/generator": "npm:^7.26.
|
|
92
|
-
"@babel/helper-compilation-targets": "npm:^7.
|
|
90
|
+
"@babel/code-frame": "npm:^7.26.2"
|
|
91
|
+
"@babel/generator": "npm:^7.26.5"
|
|
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.7"
|
|
95
|
+
"@babel/parser": "npm:^7.26.7"
|
|
96
96
|
"@babel/template": "npm:^7.25.9"
|
|
97
|
-
"@babel/traverse": "npm:^7.
|
|
98
|
-
"@babel/types": "npm:^7.26.
|
|
97
|
+
"@babel/traverse": "npm:^7.26.7"
|
|
98
|
+
"@babel/types": "npm:^7.26.7"
|
|
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/fbd2cd9fc23280bdcaca556e558f715c0a42d940b9913c52582e8e3d24e391d269cb8a9cd6589172593983569021c379e28bba6b19ea2ee08674f6068c210a9d
|
|
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.
|
|
108
|
+
"@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.26.5":
|
|
109
109
|
version: 7.26.5
|
|
110
110
|
resolution: "@babel/generator@npm:7.26.5"
|
|
111
111
|
dependencies:
|
|
@@ -127,7 +127,7 @@ __metadata:
|
|
|
127
127
|
languageName: node
|
|
128
128
|
linkType: hard
|
|
129
129
|
|
|
130
|
-
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.9":
|
|
130
|
+
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.9, @babel/helper-compilation-targets@npm:^7.26.5":
|
|
131
131
|
version: 7.26.5
|
|
132
132
|
resolution: "@babel/helper-compilation-targets@npm:7.26.5"
|
|
133
133
|
dependencies:
|
|
@@ -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.7":
|
|
331
|
+
version: 7.26.7
|
|
332
|
+
resolution: "@babel/helpers@npm:7.26.7"
|
|
333
333
|
dependencies:
|
|
334
334
|
"@babel/template": "npm:^7.25.9"
|
|
335
|
-
"@babel/types": "npm:^7.26.
|
|
336
|
-
checksum: 10c0/
|
|
335
|
+
"@babel/types": "npm:^7.26.7"
|
|
336
|
+
checksum: 10c0/37fec398e53a2dbbf24bc2a025c4d571b2556cef18d8116d05d04b153f13ef659cdfbaab96c8eed875e629d39bdf9b3ea5d099ccf80544537de224e2d94f9b11
|
|
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.25.9, @babel/parser@npm:^7.26.
|
|
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.25.9, @babel/parser@npm:^7.26.5, @babel/parser@npm:^7.26.7":
|
|
353
|
+
version: 7.26.7
|
|
354
|
+
resolution: "@babel/parser@npm:7.26.7"
|
|
355
355
|
dependencies:
|
|
356
|
-
"@babel/types": "npm:^7.26.
|
|
356
|
+
"@babel/types": "npm:^7.26.7"
|
|
357
357
|
bin:
|
|
358
358
|
parser: ./bin/babel-parser.js
|
|
359
|
-
checksum: 10c0/
|
|
359
|
+
checksum: 10c0/dcb08a4f2878ece33caffefe43b71488d753324bae7ca58d64bca3bc4af34dcfa1b58abdf9972516d76af760fceb25bb9294ca33461d56b31c5059ccfe32001f
|
|
360
360
|
languageName: node
|
|
361
361
|
linkType: hard
|
|
362
362
|
|
|
@@ -699,7 +699,7 @@ __metadata:
|
|
|
699
699
|
languageName: node
|
|
700
700
|
linkType: hard
|
|
701
701
|
|
|
702
|
-
"@babel/plugin-transform-block-scoped-functions@npm:^7.
|
|
702
|
+
"@babel/plugin-transform-block-scoped-functions@npm:^7.26.5":
|
|
703
703
|
version: 7.26.5
|
|
704
704
|
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.26.5"
|
|
705
705
|
dependencies:
|
|
@@ -830,7 +830,7 @@ __metadata:
|
|
|
830
830
|
languageName: node
|
|
831
831
|
linkType: hard
|
|
832
832
|
|
|
833
|
-
"@babel/plugin-transform-exponentiation-operator@npm:^7.
|
|
833
|
+
"@babel/plugin-transform-exponentiation-operator@npm:^7.26.3":
|
|
834
834
|
version: 7.26.3
|
|
835
835
|
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.26.3"
|
|
836
836
|
dependencies:
|
|
@@ -945,7 +945,7 @@ __metadata:
|
|
|
945
945
|
languageName: node
|
|
946
946
|
linkType: hard
|
|
947
947
|
|
|
948
|
-
"@babel/plugin-transform-modules-commonjs@npm:^7.25.9":
|
|
948
|
+
"@babel/plugin-transform-modules-commonjs@npm:^7.25.9, @babel/plugin-transform-modules-commonjs@npm:^7.26.3":
|
|
949
949
|
version: 7.26.3
|
|
950
950
|
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.26.3"
|
|
951
951
|
dependencies:
|
|
@@ -1006,7 +1006,7 @@ __metadata:
|
|
|
1006
1006
|
languageName: node
|
|
1007
1007
|
linkType: hard
|
|
1008
1008
|
|
|
1009
|
-
"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.
|
|
1009
|
+
"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.26.6":
|
|
1010
1010
|
version: 7.26.6
|
|
1011
1011
|
resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.26.6"
|
|
1012
1012
|
dependencies:
|
|
@@ -1285,20 +1285,20 @@ __metadata:
|
|
|
1285
1285
|
languageName: node
|
|
1286
1286
|
linkType: hard
|
|
1287
1287
|
|
|
1288
|
-
"@babel/plugin-transform-typeof-symbol@npm:^7.
|
|
1289
|
-
version: 7.
|
|
1290
|
-
resolution: "@babel/plugin-transform-typeof-symbol@npm:7.
|
|
1288
|
+
"@babel/plugin-transform-typeof-symbol@npm:^7.26.7":
|
|
1289
|
+
version: 7.26.7
|
|
1290
|
+
resolution: "@babel/plugin-transform-typeof-symbol@npm:7.26.7"
|
|
1291
1291
|
dependencies:
|
|
1292
|
-
"@babel/helper-plugin-utils": "npm:^7.
|
|
1292
|
+
"@babel/helper-plugin-utils": "npm:^7.26.5"
|
|
1293
1293
|
peerDependencies:
|
|
1294
1294
|
"@babel/core": ^7.0.0-0
|
|
1295
|
-
checksum: 10c0/
|
|
1295
|
+
checksum: 10c0/d5640e3457637e6eee1d7205d255602ccca124ed30e4de10ec75ba179d167e0a826ceeab424e119921f5c995dfddf39ef1f2c91efd2dcbf3f0dc1e7931dfd1d1
|
|
1296
1296
|
languageName: node
|
|
1297
1297
|
linkType: hard
|
|
1298
1298
|
|
|
1299
1299
|
"@babel/plugin-transform-typescript@npm:^7.25.9":
|
|
1300
|
-
version: 7.26.
|
|
1301
|
-
resolution: "@babel/plugin-transform-typescript@npm:7.26.
|
|
1300
|
+
version: 7.26.7
|
|
1301
|
+
resolution: "@babel/plugin-transform-typescript@npm:7.26.7"
|
|
1302
1302
|
dependencies:
|
|
1303
1303
|
"@babel/helper-annotate-as-pure": "npm:^7.25.9"
|
|
1304
1304
|
"@babel/helper-create-class-features-plugin": "npm:^7.25.9"
|
|
@@ -1307,7 +1307,7 @@ __metadata:
|
|
|
1307
1307
|
"@babel/plugin-syntax-typescript": "npm:^7.25.9"
|
|
1308
1308
|
peerDependencies:
|
|
1309
1309
|
"@babel/core": ^7.0.0-0
|
|
1310
|
-
checksum: 10c0/
|
|
1310
|
+
checksum: 10c0/4cb3a1939cd585563f56b7860f88c3154869189bcf555840486bd0402bf2bddac40d8fa897321295a911f4b8ec71b690b09eaa241e69fc5f8f7f4718a3d971fd
|
|
1311
1311
|
languageName: node
|
|
1312
1312
|
linkType: hard
|
|
1313
1313
|
|
|
@@ -1359,12 +1359,12 @@ __metadata:
|
|
|
1359
1359
|
linkType: hard
|
|
1360
1360
|
|
|
1361
1361
|
"@babel/preset-env@npm:^7.12.11, @babel/preset-env@npm:^7.20.2":
|
|
1362
|
-
version: 7.26.
|
|
1363
|
-
resolution: "@babel/preset-env@npm:7.26.
|
|
1362
|
+
version: 7.26.7
|
|
1363
|
+
resolution: "@babel/preset-env@npm:7.26.7"
|
|
1364
1364
|
dependencies:
|
|
1365
|
-
"@babel/compat-data": "npm:^7.26.
|
|
1366
|
-
"@babel/helper-compilation-targets": "npm:^7.
|
|
1367
|
-
"@babel/helper-plugin-utils": "npm:^7.
|
|
1365
|
+
"@babel/compat-data": "npm:^7.26.5"
|
|
1366
|
+
"@babel/helper-compilation-targets": "npm:^7.26.5"
|
|
1367
|
+
"@babel/helper-plugin-utils": "npm:^7.26.5"
|
|
1368
1368
|
"@babel/helper-validator-option": "npm:^7.25.9"
|
|
1369
1369
|
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": "npm:^7.25.9"
|
|
1370
1370
|
"@babel/plugin-bugfix-safari-class-field-initializer-scope": "npm:^7.25.9"
|
|
@@ -1378,7 +1378,7 @@ __metadata:
|
|
|
1378
1378
|
"@babel/plugin-transform-arrow-functions": "npm:^7.25.9"
|
|
1379
1379
|
"@babel/plugin-transform-async-generator-functions": "npm:^7.25.9"
|
|
1380
1380
|
"@babel/plugin-transform-async-to-generator": "npm:^7.25.9"
|
|
1381
|
-
"@babel/plugin-transform-block-scoped-functions": "npm:^7.
|
|
1381
|
+
"@babel/plugin-transform-block-scoped-functions": "npm:^7.26.5"
|
|
1382
1382
|
"@babel/plugin-transform-block-scoping": "npm:^7.25.9"
|
|
1383
1383
|
"@babel/plugin-transform-class-properties": "npm:^7.25.9"
|
|
1384
1384
|
"@babel/plugin-transform-class-static-block": "npm:^7.26.0"
|
|
@@ -1389,7 +1389,7 @@ __metadata:
|
|
|
1389
1389
|
"@babel/plugin-transform-duplicate-keys": "npm:^7.25.9"
|
|
1390
1390
|
"@babel/plugin-transform-duplicate-named-capturing-groups-regex": "npm:^7.25.9"
|
|
1391
1391
|
"@babel/plugin-transform-dynamic-import": "npm:^7.25.9"
|
|
1392
|
-
"@babel/plugin-transform-exponentiation-operator": "npm:^7.
|
|
1392
|
+
"@babel/plugin-transform-exponentiation-operator": "npm:^7.26.3"
|
|
1393
1393
|
"@babel/plugin-transform-export-namespace-from": "npm:^7.25.9"
|
|
1394
1394
|
"@babel/plugin-transform-for-of": "npm:^7.25.9"
|
|
1395
1395
|
"@babel/plugin-transform-function-name": "npm:^7.25.9"
|
|
@@ -1398,12 +1398,12 @@ __metadata:
|
|
|
1398
1398
|
"@babel/plugin-transform-logical-assignment-operators": "npm:^7.25.9"
|
|
1399
1399
|
"@babel/plugin-transform-member-expression-literals": "npm:^7.25.9"
|
|
1400
1400
|
"@babel/plugin-transform-modules-amd": "npm:^7.25.9"
|
|
1401
|
-
"@babel/plugin-transform-modules-commonjs": "npm:^7.
|
|
1401
|
+
"@babel/plugin-transform-modules-commonjs": "npm:^7.26.3"
|
|
1402
1402
|
"@babel/plugin-transform-modules-systemjs": "npm:^7.25.9"
|
|
1403
1403
|
"@babel/plugin-transform-modules-umd": "npm:^7.25.9"
|
|
1404
1404
|
"@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.25.9"
|
|
1405
1405
|
"@babel/plugin-transform-new-target": "npm:^7.25.9"
|
|
1406
|
-
"@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.
|
|
1406
|
+
"@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.26.6"
|
|
1407
1407
|
"@babel/plugin-transform-numeric-separator": "npm:^7.25.9"
|
|
1408
1408
|
"@babel/plugin-transform-object-rest-spread": "npm:^7.25.9"
|
|
1409
1409
|
"@babel/plugin-transform-object-super": "npm:^7.25.9"
|
|
@@ -1420,7 +1420,7 @@ __metadata:
|
|
|
1420
1420
|
"@babel/plugin-transform-spread": "npm:^7.25.9"
|
|
1421
1421
|
"@babel/plugin-transform-sticky-regex": "npm:^7.25.9"
|
|
1422
1422
|
"@babel/plugin-transform-template-literals": "npm:^7.25.9"
|
|
1423
|
-
"@babel/plugin-transform-typeof-symbol": "npm:^7.
|
|
1423
|
+
"@babel/plugin-transform-typeof-symbol": "npm:^7.26.7"
|
|
1424
1424
|
"@babel/plugin-transform-unicode-escapes": "npm:^7.25.9"
|
|
1425
1425
|
"@babel/plugin-transform-unicode-property-regex": "npm:^7.25.9"
|
|
1426
1426
|
"@babel/plugin-transform-unicode-regex": "npm:^7.25.9"
|
|
@@ -1433,7 +1433,7 @@ __metadata:
|
|
|
1433
1433
|
semver: "npm:^6.3.1"
|
|
1434
1434
|
peerDependencies:
|
|
1435
1435
|
"@babel/core": ^7.0.0-0
|
|
1436
|
-
checksum: 10c0/
|
|
1436
|
+
checksum: 10c0/77d2e46a4f133768c5c8a6b3fec49a7c85c6baec601991e63458921e889ff93911f447723c3a99a6a471ca654ea6dc2aaa7ed690f3e518ee80cea7820ab80ce3
|
|
1437
1437
|
languageName: node
|
|
1438
1438
|
linkType: hard
|
|
1439
1439
|
|
|
@@ -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.7
|
|
1514
|
+
resolution: "@babel/runtime-corejs3@npm:7.26.7"
|
|
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/399855ab2a1ef21364683a1a40a3280be71dbfee587c90fb57fce4508a783a846f925b7d5509bba3521674f44f76b4f8d31eb8a32e13dc333cdacd34c31f5119
|
|
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.7
|
|
1524
|
+
resolution: "@babel/runtime@npm:7.26.7"
|
|
1525
1525
|
dependencies:
|
|
1526
1526
|
regenerator-runtime: "npm:^0.14.0"
|
|
1527
|
-
checksum: 10c0/
|
|
1527
|
+
checksum: 10c0/60199c049f90e5e41c687687430052a370aca60bac7859ff4ee761c5c1739b8ba1604d391d01588c22dc0e93828cbadb8ada742578ad1b1df240746bce98729a
|
|
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":
|
|
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.5, @babel/traverse@npm:^7.26.7":
|
|
1543
|
+
version: 7.26.7
|
|
1544
|
+
resolution: "@babel/traverse@npm:7.26.7"
|
|
1545
1545
|
dependencies:
|
|
1546
1546
|
"@babel/code-frame": "npm:^7.26.2"
|
|
1547
1547
|
"@babel/generator": "npm:^7.26.5"
|
|
1548
|
-
"@babel/parser": "npm:^7.26.
|
|
1548
|
+
"@babel/parser": "npm:^7.26.7"
|
|
1549
1549
|
"@babel/template": "npm:^7.25.9"
|
|
1550
|
-
"@babel/types": "npm:^7.26.
|
|
1550
|
+
"@babel/types": "npm:^7.26.7"
|
|
1551
1551
|
debug: "npm:^4.3.1"
|
|
1552
1552
|
globals: "npm:^11.1.0"
|
|
1553
|
-
checksum: 10c0/
|
|
1553
|
+
checksum: 10c0/b23a36ce40d2e4970741431c45d4f92e3f4c2895c0a421456516b2729bd9e17278846e01ee3d9039b0adf5fc5a071768061c17fcad040e74a5c3e39517449d5b
|
|
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.
|
|
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.5, @babel/types@npm:^7.26.7, @babel/types@npm:^7.4.4":
|
|
1558
|
+
version: 7.26.7
|
|
1559
|
+
resolution: "@babel/types@npm:7.26.7"
|
|
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/7810a2bca97b13c253f07a0863a628d33dbe76ee3c163367f24be93bfaf4c8c0a325f73208abaaa050a6b36059efc2950c2e4b71fb109c0f07fa62221d8473d4
|
|
1564
1564
|
languageName: node
|
|
1565
1565
|
linkType: hard
|
|
1566
1566
|
|
|
@@ -2453,9 +2453,9 @@ __metadata:
|
|
|
2453
2453
|
languageName: node
|
|
2454
2454
|
linkType: hard
|
|
2455
2455
|
|
|
2456
|
-
"@licklist/core@npm:0.31.2-dev.
|
|
2457
|
-
version: 0.31.2-dev.
|
|
2458
|
-
resolution: "@licklist/core@npm:0.31.2-dev.
|
|
2456
|
+
"@licklist/core@npm:0.31.2-dev.10":
|
|
2457
|
+
version: 0.31.2-dev.10
|
|
2458
|
+
resolution: "@licklist/core@npm:0.31.2-dev.10"
|
|
2459
2459
|
dependencies:
|
|
2460
2460
|
"@sentry/browser": "npm:6.2.0"
|
|
2461
2461
|
axios: "npm:0.26.0"
|
|
@@ -2477,35 +2477,7 @@ __metadata:
|
|
|
2477
2477
|
react-i18next: 11.8.8
|
|
2478
2478
|
react-intl: 6.6.8
|
|
2479
2479
|
zustand: 3.7.2
|
|
2480
|
-
checksum: 10c0/
|
|
2481
|
-
languageName: node
|
|
2482
|
-
linkType: hard
|
|
2483
|
-
|
|
2484
|
-
"@licklist/core@npm:0.31.2-dev.5":
|
|
2485
|
-
version: 0.31.2-dev.5
|
|
2486
|
-
resolution: "@licklist/core@npm:0.31.2-dev.5"
|
|
2487
|
-
dependencies:
|
|
2488
|
-
"@sentry/browser": "npm:6.2.0"
|
|
2489
|
-
axios: "npm:0.26.0"
|
|
2490
|
-
i18next: "npm:19.4.5"
|
|
2491
|
-
luxon: "npm:3.5.0"
|
|
2492
|
-
react: "npm:17.0.2"
|
|
2493
|
-
react-dom: "npm:17.0.2"
|
|
2494
|
-
react-i18next: "npm:11.8.8"
|
|
2495
|
-
react-intl: "npm:6.6.8"
|
|
2496
|
-
uuid: "npm:9.0.0"
|
|
2497
|
-
wait-for-expect: "npm:3.0.2"
|
|
2498
|
-
zustand: "npm:3.7.2"
|
|
2499
|
-
peerDependencies:
|
|
2500
|
-
"@licklist/eslint-config": 0.5.6
|
|
2501
|
-
axios: 0.26.0
|
|
2502
|
-
luxon: 3.5.0
|
|
2503
|
-
react: 17.0.2
|
|
2504
|
-
react-dom: 17.0.2
|
|
2505
|
-
react-i18next: 11.8.8
|
|
2506
|
-
react-intl: 6.6.8
|
|
2507
|
-
zustand: 3.7.2
|
|
2508
|
-
checksum: 10c0/4d1e2c660a454a664e0415b272e62a0cb5f0b160d775d7bdf0918029a7e26864496b44d6c16499014eff96238b9fde09f6dd7d0b17c74e2a35a78e719ef5fd14
|
|
2480
|
+
checksum: 10c0/ebd034a5275a13a637d0e7cba377a02ee087b9486c4b3061875e26574750237876e530be2fa71f7390c534544d7cc4982db739ee9a3f48ac41c8d19a5bfa4868
|
|
2509
2481
|
languageName: node
|
|
2510
2482
|
linkType: hard
|
|
2511
2483
|
|
|
@@ -2520,9 +2492,9 @@ __metadata:
|
|
|
2520
2492
|
"@dnd-kit/utilities": "npm:2.0.0"
|
|
2521
2493
|
"@fortawesome/fontawesome-svg-core": "npm:1.2.34"
|
|
2522
2494
|
"@fortawesome/free-solid-svg-icons": "npm:5.15.2"
|
|
2523
|
-
"@licklist/core": "npm:0.31.2-dev.
|
|
2495
|
+
"@licklist/core": "npm:0.31.2-dev.10"
|
|
2524
2496
|
"@licklist/eslint-config": "npm:0.5.6"
|
|
2525
|
-
"@licklist/plugins": "npm:0.35.1-dev.
|
|
2497
|
+
"@licklist/plugins": "npm:0.35.1-dev.8"
|
|
2526
2498
|
"@mantine/core": "npm:6.0.22"
|
|
2527
2499
|
"@mantine/hooks": "npm:6.0.22"
|
|
2528
2500
|
"@mdx-js/react": "npm:1.6.22"
|
|
@@ -2651,9 +2623,9 @@ __metadata:
|
|
|
2651
2623
|
vite-plugin-svgr: "npm:4.2.0"
|
|
2652
2624
|
vite-tsconfig-paths: "npm:5.0.1"
|
|
2653
2625
|
peerDependencies:
|
|
2654
|
-
"@licklist/core": 0.31.2-dev.
|
|
2626
|
+
"@licklist/core": 0.31.2-dev.10
|
|
2655
2627
|
"@licklist/eslint-config": 0.5.6
|
|
2656
|
-
"@licklist/plugins": 0.35.1-dev.
|
|
2628
|
+
"@licklist/plugins": 0.35.1-dev.8
|
|
2657
2629
|
lodash: 4.17.21
|
|
2658
2630
|
luxon: 3.5.0
|
|
2659
2631
|
react: 17.0.2
|
|
@@ -2683,11 +2655,11 @@ __metadata:
|
|
|
2683
2655
|
languageName: node
|
|
2684
2656
|
linkType: hard
|
|
2685
2657
|
|
|
2686
|
-
"@licklist/plugins@npm:0.35.1-dev.
|
|
2687
|
-
version: 0.35.1-dev.
|
|
2688
|
-
resolution: "@licklist/plugins@npm:0.35.1-dev.
|
|
2658
|
+
"@licklist/plugins@npm:0.35.1-dev.8":
|
|
2659
|
+
version: 0.35.1-dev.8
|
|
2660
|
+
resolution: "@licklist/plugins@npm:0.35.1-dev.8"
|
|
2689
2661
|
dependencies:
|
|
2690
|
-
"@licklist/core": "npm:0.31.2-dev.
|
|
2662
|
+
"@licklist/core": "npm:0.31.2-dev.10"
|
|
2691
2663
|
axios: "npm:0.26.0"
|
|
2692
2664
|
history: "npm:4.10.1"
|
|
2693
2665
|
laravel-echo: "npm:1.15.1"
|
|
@@ -2707,7 +2679,7 @@ __metadata:
|
|
|
2707
2679
|
rrule: "npm:2.6.8"
|
|
2708
2680
|
use-debounce: "npm:7.0.1"
|
|
2709
2681
|
peerDependencies:
|
|
2710
|
-
"@licklist/core": 0.31.2-dev.
|
|
2682
|
+
"@licklist/core": 0.31.2-dev.10
|
|
2711
2683
|
"@licklist/eslint-config": 0.5.6
|
|
2712
2684
|
axios: 0.26.0
|
|
2713
2685
|
lodash: 4.17.21
|
|
@@ -2719,7 +2691,7 @@ __metadata:
|
|
|
2719
2691
|
react-loader: 2.4.7
|
|
2720
2692
|
react-query: 3.34.12
|
|
2721
2693
|
react-router-dom: 5.2.0
|
|
2722
|
-
checksum: 10c0/
|
|
2694
|
+
checksum: 10c0/fedc003fccb7e3464ad89983c6cb44347962586a39c43a8f22d84f71da53557cdf14fc64d44c80f3d1417ee65d8cce56c6382d530c94bdc2b1c636036f365046
|
|
2723
2695
|
languageName: node
|
|
2724
2696
|
linkType: hard
|
|
2725
2697
|
|
|
@@ -3303,135 +3275,135 @@ __metadata:
|
|
|
3303
3275
|
languageName: node
|
|
3304
3276
|
linkType: hard
|
|
3305
3277
|
|
|
3306
|
-
"@rollup/rollup-android-arm-eabi@npm:4.32.
|
|
3307
|
-
version: 4.32.
|
|
3308
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.32.
|
|
3278
|
+
"@rollup/rollup-android-arm-eabi@npm:4.32.1":
|
|
3279
|
+
version: 4.32.1
|
|
3280
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.32.1"
|
|
3309
3281
|
conditions: os=android & cpu=arm
|
|
3310
3282
|
languageName: node
|
|
3311
3283
|
linkType: hard
|
|
3312
3284
|
|
|
3313
|
-
"@rollup/rollup-android-arm64@npm:4.32.
|
|
3314
|
-
version: 4.32.
|
|
3315
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.32.
|
|
3285
|
+
"@rollup/rollup-android-arm64@npm:4.32.1":
|
|
3286
|
+
version: 4.32.1
|
|
3287
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.32.1"
|
|
3316
3288
|
conditions: os=android & cpu=arm64
|
|
3317
3289
|
languageName: node
|
|
3318
3290
|
linkType: hard
|
|
3319
3291
|
|
|
3320
|
-
"@rollup/rollup-darwin-arm64@npm:4.32.
|
|
3321
|
-
version: 4.32.
|
|
3322
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.32.
|
|
3292
|
+
"@rollup/rollup-darwin-arm64@npm:4.32.1":
|
|
3293
|
+
version: 4.32.1
|
|
3294
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.32.1"
|
|
3323
3295
|
conditions: os=darwin & cpu=arm64
|
|
3324
3296
|
languageName: node
|
|
3325
3297
|
linkType: hard
|
|
3326
3298
|
|
|
3327
|
-
"@rollup/rollup-darwin-x64@npm:4.32.
|
|
3328
|
-
version: 4.32.
|
|
3329
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.32.
|
|
3299
|
+
"@rollup/rollup-darwin-x64@npm:4.32.1":
|
|
3300
|
+
version: 4.32.1
|
|
3301
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.32.1"
|
|
3330
3302
|
conditions: os=darwin & cpu=x64
|
|
3331
3303
|
languageName: node
|
|
3332
3304
|
linkType: hard
|
|
3333
3305
|
|
|
3334
|
-
"@rollup/rollup-freebsd-arm64@npm:4.32.
|
|
3335
|
-
version: 4.32.
|
|
3336
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.32.
|
|
3306
|
+
"@rollup/rollup-freebsd-arm64@npm:4.32.1":
|
|
3307
|
+
version: 4.32.1
|
|
3308
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.32.1"
|
|
3337
3309
|
conditions: os=freebsd & cpu=arm64
|
|
3338
3310
|
languageName: node
|
|
3339
3311
|
linkType: hard
|
|
3340
3312
|
|
|
3341
|
-
"@rollup/rollup-freebsd-x64@npm:4.32.
|
|
3342
|
-
version: 4.32.
|
|
3343
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.32.
|
|
3313
|
+
"@rollup/rollup-freebsd-x64@npm:4.32.1":
|
|
3314
|
+
version: 4.32.1
|
|
3315
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.32.1"
|
|
3344
3316
|
conditions: os=freebsd & cpu=x64
|
|
3345
3317
|
languageName: node
|
|
3346
3318
|
linkType: hard
|
|
3347
3319
|
|
|
3348
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.32.
|
|
3349
|
-
version: 4.32.
|
|
3350
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.32.
|
|
3320
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.32.1":
|
|
3321
|
+
version: 4.32.1
|
|
3322
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.32.1"
|
|
3351
3323
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3352
3324
|
languageName: node
|
|
3353
3325
|
linkType: hard
|
|
3354
3326
|
|
|
3355
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.32.
|
|
3356
|
-
version: 4.32.
|
|
3357
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.32.
|
|
3327
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.32.1":
|
|
3328
|
+
version: 4.32.1
|
|
3329
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.32.1"
|
|
3358
3330
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3359
3331
|
languageName: node
|
|
3360
3332
|
linkType: hard
|
|
3361
3333
|
|
|
3362
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.32.
|
|
3363
|
-
version: 4.32.
|
|
3364
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.32.
|
|
3334
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.32.1":
|
|
3335
|
+
version: 4.32.1
|
|
3336
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.32.1"
|
|
3365
3337
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3366
3338
|
languageName: node
|
|
3367
3339
|
linkType: hard
|
|
3368
3340
|
|
|
3369
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.32.
|
|
3370
|
-
version: 4.32.
|
|
3371
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.32.
|
|
3341
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.32.1":
|
|
3342
|
+
version: 4.32.1
|
|
3343
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.32.1"
|
|
3372
3344
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3373
3345
|
languageName: node
|
|
3374
3346
|
linkType: hard
|
|
3375
3347
|
|
|
3376
|
-
"@rollup/rollup-linux-loongarch64-gnu@npm:4.32.
|
|
3377
|
-
version: 4.32.
|
|
3378
|
-
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.32.
|
|
3348
|
+
"@rollup/rollup-linux-loongarch64-gnu@npm:4.32.1":
|
|
3349
|
+
version: 4.32.1
|
|
3350
|
+
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.32.1"
|
|
3379
3351
|
conditions: os=linux & cpu=loong64 & libc=glibc
|
|
3380
3352
|
languageName: node
|
|
3381
3353
|
linkType: hard
|
|
3382
3354
|
|
|
3383
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.32.
|
|
3384
|
-
version: 4.32.
|
|
3385
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.32.
|
|
3355
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.32.1":
|
|
3356
|
+
version: 4.32.1
|
|
3357
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.32.1"
|
|
3386
3358
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3387
3359
|
languageName: node
|
|
3388
3360
|
linkType: hard
|
|
3389
3361
|
|
|
3390
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.32.
|
|
3391
|
-
version: 4.32.
|
|
3392
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.32.
|
|
3362
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.32.1":
|
|
3363
|
+
version: 4.32.1
|
|
3364
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.32.1"
|
|
3393
3365
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3394
3366
|
languageName: node
|
|
3395
3367
|
linkType: hard
|
|
3396
3368
|
|
|
3397
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.32.
|
|
3398
|
-
version: 4.32.
|
|
3399
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.32.
|
|
3369
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.32.1":
|
|
3370
|
+
version: 4.32.1
|
|
3371
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.32.1"
|
|
3400
3372
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3401
3373
|
languageName: node
|
|
3402
3374
|
linkType: hard
|
|
3403
3375
|
|
|
3404
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.32.
|
|
3405
|
-
version: 4.32.
|
|
3406
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.32.
|
|
3376
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.32.1":
|
|
3377
|
+
version: 4.32.1
|
|
3378
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.32.1"
|
|
3407
3379
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3408
3380
|
languageName: node
|
|
3409
3381
|
linkType: hard
|
|
3410
3382
|
|
|
3411
|
-
"@rollup/rollup-linux-x64-musl@npm:4.32.
|
|
3412
|
-
version: 4.32.
|
|
3413
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.32.
|
|
3383
|
+
"@rollup/rollup-linux-x64-musl@npm:4.32.1":
|
|
3384
|
+
version: 4.32.1
|
|
3385
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.32.1"
|
|
3414
3386
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3415
3387
|
languageName: node
|
|
3416
3388
|
linkType: hard
|
|
3417
3389
|
|
|
3418
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.32.
|
|
3419
|
-
version: 4.32.
|
|
3420
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.32.
|
|
3390
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.32.1":
|
|
3391
|
+
version: 4.32.1
|
|
3392
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.32.1"
|
|
3421
3393
|
conditions: os=win32 & cpu=arm64
|
|
3422
3394
|
languageName: node
|
|
3423
3395
|
linkType: hard
|
|
3424
3396
|
|
|
3425
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.32.
|
|
3426
|
-
version: 4.32.
|
|
3427
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.32.
|
|
3397
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.32.1":
|
|
3398
|
+
version: 4.32.1
|
|
3399
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.32.1"
|
|
3428
3400
|
conditions: os=win32 & cpu=ia32
|
|
3429
3401
|
languageName: node
|
|
3430
3402
|
linkType: hard
|
|
3431
3403
|
|
|
3432
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.32.
|
|
3433
|
-
version: 4.32.
|
|
3434
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.32.
|
|
3404
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.32.1":
|
|
3405
|
+
version: 4.32.1
|
|
3406
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.32.1"
|
|
3435
3407
|
conditions: os=win32 & cpu=x64
|
|
3436
3408
|
languageName: node
|
|
3437
3409
|
linkType: hard
|
|
@@ -5692,11 +5664,11 @@ __metadata:
|
|
|
5692
5664
|
linkType: hard
|
|
5693
5665
|
|
|
5694
5666
|
"@types/node@npm:*":
|
|
5695
|
-
version: 22.
|
|
5696
|
-
resolution: "@types/node@npm:22.
|
|
5667
|
+
version: 22.12.0
|
|
5668
|
+
resolution: "@types/node@npm:22.12.0"
|
|
5697
5669
|
dependencies:
|
|
5698
5670
|
undici-types: "npm:~6.20.0"
|
|
5699
|
-
checksum: 10c0/
|
|
5671
|
+
checksum: 10c0/be220706732d95db2ed1c441c1e64cab90bf9a47519ce6f4c79cc5a9ec9d5c517131a149a9ac30afac1a30103e67e3a00d453ba7c1b0141608a3a7ba6397c303
|
|
5700
5672
|
languageName: node
|
|
5701
5673
|
linkType: hard
|
|
5702
5674
|
|
|
@@ -6065,9 +6037,9 @@ __metadata:
|
|
|
6065
6037
|
linkType: hard
|
|
6066
6038
|
|
|
6067
6039
|
"@types/webpack-env@npm:^1.16.0":
|
|
6068
|
-
version: 1.18.
|
|
6069
|
-
resolution: "@types/webpack-env@npm:1.18.
|
|
6070
|
-
checksum: 10c0/
|
|
6040
|
+
version: 1.18.7
|
|
6041
|
+
resolution: "@types/webpack-env@npm:1.18.7"
|
|
6042
|
+
checksum: 10c0/9e5736d2ae5848482e4d6406557eb17883bb8d112dccf45d54204110534d6331e53975b8eafe090b5da683eecd9f2b35f9814938e19c8f2c6d63c6e5dd640a92
|
|
6071
6043
|
languageName: node
|
|
6072
6044
|
linkType: hard
|
|
6073
6045
|
|
|
@@ -9889,9 +9861,9 @@ __metadata:
|
|
|
9889
9861
|
linkType: hard
|
|
9890
9862
|
|
|
9891
9863
|
"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/
|
|
9864
|
+
version: 1.5.88
|
|
9865
|
+
resolution: "electron-to-chromium@npm:1.5.88"
|
|
9866
|
+
checksum: 10c0/25946ef310f8e14c763fcf0e62094e7eae2273d9ffe908969ddd97492c3df0198739295ba76388dc210c4503ab6b540130779cd83036f80520cb8efee53be8e4
|
|
9895
9867
|
languageName: node
|
|
9896
9868
|
linkType: hard
|
|
9897
9869
|
|
|
@@ -11237,11 +11209,11 @@ __metadata:
|
|
|
11237
11209
|
linkType: hard
|
|
11238
11210
|
|
|
11239
11211
|
"for-each@npm:^0.3.3":
|
|
11240
|
-
version: 0.3.
|
|
11241
|
-
resolution: "for-each@npm:0.3.
|
|
11212
|
+
version: 0.3.4
|
|
11213
|
+
resolution: "for-each@npm:0.3.4"
|
|
11242
11214
|
dependencies:
|
|
11243
|
-
is-callable: "npm:^1.
|
|
11244
|
-
checksum: 10c0/
|
|
11215
|
+
is-callable: "npm:^1.2.7"
|
|
11216
|
+
checksum: 10c0/6b2016c0a0fe3107c70a233923cac74f07bedb5a1847636039fa6bcc3df09aefa554cfec23c3342ad365acac1f95e799d9f8e220cb82a4c7b8a84f969234302f
|
|
11245
11217
|
languageName: node
|
|
11246
11218
|
linkType: hard
|
|
11247
11219
|
|
|
@@ -12828,7 +12800,7 @@ __metadata:
|
|
|
12828
12800
|
languageName: node
|
|
12829
12801
|
linkType: hard
|
|
12830
12802
|
|
|
12831
|
-
"is-callable@npm:^1.
|
|
12803
|
+
"is-callable@npm:^1.2.7":
|
|
12832
12804
|
version: 1.2.7
|
|
12833
12805
|
resolution: "is-callable@npm:1.2.7"
|
|
12834
12806
|
checksum: 10c0/ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f
|
|
@@ -18927,28 +18899,28 @@ __metadata:
|
|
|
18927
18899
|
linkType: hard
|
|
18928
18900
|
|
|
18929
18901
|
"rollup@npm:^4.13.0":
|
|
18930
|
-
version: 4.32.
|
|
18931
|
-
resolution: "rollup@npm:4.32.
|
|
18932
|
-
dependencies:
|
|
18933
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.32.
|
|
18934
|
-
"@rollup/rollup-android-arm64": "npm:4.32.
|
|
18935
|
-
"@rollup/rollup-darwin-arm64": "npm:4.32.
|
|
18936
|
-
"@rollup/rollup-darwin-x64": "npm:4.32.
|
|
18937
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.32.
|
|
18938
|
-
"@rollup/rollup-freebsd-x64": "npm:4.32.
|
|
18939
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.32.
|
|
18940
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.32.
|
|
18941
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.32.
|
|
18942
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.32.
|
|
18943
|
-
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.32.
|
|
18944
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.32.
|
|
18945
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.32.
|
|
18946
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.32.
|
|
18947
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.32.
|
|
18948
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.32.
|
|
18949
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.32.
|
|
18950
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.32.
|
|
18951
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.32.
|
|
18902
|
+
version: 4.32.1
|
|
18903
|
+
resolution: "rollup@npm:4.32.1"
|
|
18904
|
+
dependencies:
|
|
18905
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.32.1"
|
|
18906
|
+
"@rollup/rollup-android-arm64": "npm:4.32.1"
|
|
18907
|
+
"@rollup/rollup-darwin-arm64": "npm:4.32.1"
|
|
18908
|
+
"@rollup/rollup-darwin-x64": "npm:4.32.1"
|
|
18909
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.32.1"
|
|
18910
|
+
"@rollup/rollup-freebsd-x64": "npm:4.32.1"
|
|
18911
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.32.1"
|
|
18912
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.32.1"
|
|
18913
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.32.1"
|
|
18914
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.32.1"
|
|
18915
|
+
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.32.1"
|
|
18916
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.32.1"
|
|
18917
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.32.1"
|
|
18918
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.32.1"
|
|
18919
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.32.1"
|
|
18920
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.32.1"
|
|
18921
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.32.1"
|
|
18922
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.32.1"
|
|
18923
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.32.1"
|
|
18952
18924
|
"@types/estree": "npm:1.0.6"
|
|
18953
18925
|
fsevents: "npm:~2.3.2"
|
|
18954
18926
|
dependenciesMeta:
|
|
@@ -18994,7 +18966,7 @@ __metadata:
|
|
|
18994
18966
|
optional: true
|
|
18995
18967
|
bin:
|
|
18996
18968
|
rollup: dist/bin/rollup
|
|
18997
|
-
checksum: 10c0/
|
|
18969
|
+
checksum: 10c0/b40339d207ee873d5cb78456381d11be367ed44bf02506bb7b1e70ad24537b4e2f06f7b24a1d9dff054c34330e032cfbedecf217228dfdc850d421b49d640144
|
|
18998
18970
|
languageName: node
|
|
18999
18971
|
linkType: hard
|
|
19000
18972
|
|