@licklist/design 0.70.0-dev.3 → 0.70.0-dev.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"CustomFieldSet.d.ts","sourceRoot":"","sources":["../../../../../src/custom-fields/field-set/components/CustomFieldSet/CustomFieldSet.tsx"],"names":[],"mappings":"AAeA,OAAO,EAAE,iBAAiB,EAAE,MAAM,oDAAoD,CAAA;AAEtF,OAAO,EAAE,WAAW,EAAE,MAAM,+CAA+C,CAAA;AAG3E,OAAO,EAGL,YAAY,EACb,MAAM,2BAA2B,CAAA;AAKlC,OAAO,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AAW9E,KAAK,mBAAmB,GAAG,iBAAiB,GAAG;IAC7C,YAAY,EAAE,oBAAoB,CAAC,cAAc,CAAC,CAAA;IAClD,IAAI,EAAE,YAAY,CAAC,gBAAgB,CAAC,CAAA;IACpC,WAAW,EAAE,gBAAgB,EAAE,CAAA;IAC/B,KAAK,EAAE,MAAM,CAAA;IACb,gBAAgB,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAA;IAC1D,gBAAgB,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAA;IAC1D,YAAY,CAAC,EAAE,WAAW,CAAA;CAC3B,CAAA;AAED,eAAO,MAAM,cAAc,2HASxB,mBAAmB,4CAkMrB,CAAA"}
1
+ {"version":3,"file":"CustomFieldSet.d.ts","sourceRoot":"","sources":["../../../../../src/custom-fields/field-set/components/CustomFieldSet/CustomFieldSet.tsx"],"names":[],"mappings":"AAeA,OAAO,EAAE,iBAAiB,EAAE,MAAM,oDAAoD,CAAA;AAEtF,OAAO,EAAE,WAAW,EAAE,MAAM,+CAA+C,CAAA;AAI3E,OAAO,EAGL,YAAY,EACb,MAAM,2BAA2B,CAAA;AAKlC,OAAO,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AAW9E,KAAK,mBAAmB,GAAG,iBAAiB,GAAG;IAC7C,YAAY,EAAE,oBAAoB,CAAC,cAAc,CAAC,CAAA;IAClD,IAAI,EAAE,YAAY,CAAC,gBAAgB,CAAC,CAAA;IACpC,WAAW,EAAE,gBAAgB,EAAE,CAAA;IAC/B,KAAK,EAAE,MAAM,CAAA;IACb,gBAAgB,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAA;IAC1D,gBAAgB,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAA;IAC1D,YAAY,CAAC,EAAE,WAAW,CAAA;CAC3B,CAAA;AAED,eAAO,MAAM,cAAc,2HASxB,mBAAmB,4CAgNrB,CAAA"}
@@ -7,6 +7,7 @@ import { isEqual } from 'lodash';
7
7
  import { CUSTOM_FIELD_TYPE_INPUT, CUSTOM_FIELD_TYPE_DROPDOWN } from '@licklist/core/dist/DataMapper/Order/CustomFieldDataMapper';
8
8
  import FormErrorService from '@licklist/plugins/dist/services/Form/FormErrorService';
9
9
  import HookFormService from '@licklist/plugins/dist/services/Form/HookFormService';
10
+ import useNotification from '@licklist/plugins/dist/context/app/hooks/useNotification';
10
11
  import { CreateSortableListItem } from '../../../../sortable-list/CreateSortableListItem.js';
11
12
  import { SORTABLE_ID_KEY } from '../../../../sortable-list/SortableList.js';
12
13
  import { SortableTreeItem } from '../../../../sortable-tree/SortableTreeItem.js';
@@ -270,6 +271,7 @@ var CustomFieldSet = function(param) {
270
271
  serverErrors,
271
272
  setError
272
273
  ]);
274
+ var notification = useNotification();
273
275
  var _useFieldArray = useFieldArray({
274
276
  control: control,
275
277
  name: CUSTOM_FIELDS
@@ -293,6 +295,12 @@ var CustomFieldSet = function(param) {
293
295
  if (!response) return [
294
296
  2
295
297
  ];
298
+ notification.success({
299
+ title: t('App:success'),
300
+ message: t('Notification:createSuccessfully', {
301
+ argument: t('customField')
302
+ })
303
+ });
296
304
  setFieldSets(function(prevFieldSets) {
297
305
  var nextFieldSets = _to_consumable_array(prevFieldSets);
298
306
  var nextFieldSetFormProps = _object_spread({}, formValues, response);
@@ -325,6 +333,12 @@ var CustomFieldSet = function(param) {
325
333
  ];
326
334
  case 1:
327
335
  _state.sent();
336
+ notification.success({
337
+ title: t('App:success'),
338
+ message: t('Notification:theRemovedSuccessfully', {
339
+ argument: t('customField')
340
+ })
341
+ });
328
342
  _state.label = 2;
329
343
  case 2:
330
344
  setFieldSets(sortedItems.filter(function(sortedItem) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@licklist/design",
3
- "version": "0.70.0-dev.3",
3
+ "version": "0.70.0-dev.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
@@ -208,4 +208,4 @@
208
208
  "yarn": "4.4.0"
209
209
  },
210
210
  "stableVersion": "0.69.1-dev.3"
211
- }
211
+ }
@@ -17,6 +17,7 @@ import { HasPermissionProp } from '@licklist/plugins/dist/types/permission/Permi
17
17
  import FormErrorService from '@licklist/plugins/dist/services/Form/FormErrorService'
18
18
  import { ServerError } from '@licklist/plugins/dist/hooks/Api/useHttpQuery'
19
19
  import HookFormService from '@licklist/plugins/dist/services/Form/HookFormService'
20
+ import useNotification from '@licklist/plugins/dist/context/app/hooks/useNotification'
20
21
 
21
22
  import {
22
23
  CreateSortableListItem,
@@ -84,7 +85,7 @@ export const CustomFieldSet = ({
84
85
  useEffect(() => {
85
86
  FormErrorService.handleServerErrors(serverErrors, setError)
86
87
  }, [serverErrors, setError])
87
-
88
+ const notification = useNotification()
88
89
  const { fields, append, remove } = useFieldArray({
89
90
  control,
90
91
  name: CUSTOM_FIELDS,
@@ -97,6 +98,13 @@ export const CustomFieldSet = ({
97
98
 
98
99
  if (!response) return
99
100
 
101
+ notification.success({
102
+ title: t('App:success'),
103
+ message: t('Notification:createSuccessfully', {
104
+ argument: t('customField'),
105
+ }),
106
+ })
107
+
100
108
  setFieldSets((prevFieldSets) => {
101
109
  const nextFieldSets = [...prevFieldSets]
102
110
 
@@ -115,6 +123,13 @@ export const CustomFieldSet = ({
115
123
  const removeFieldSet = async () => {
116
124
  if (fieldSet.id !== null) {
117
125
  await onFieldSetDelete(fieldSet)
126
+
127
+ notification.success({
128
+ title: t('App:success'),
129
+ message: t('Notification:theRemovedSuccessfully', {
130
+ argument: t('customField'),
131
+ }),
132
+ })
118
133
  }
119
134
 
120
135
  setFieldSets(
package/yarn.lock CHANGED
@@ -40,20 +40,21 @@ __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.5.5, @babel/code-frame@npm:^7.8.3":
44
- version: 7.25.9
45
- resolution: "@babel/code-frame@npm:7.25.9"
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.0
45
+ resolution: "@babel/code-frame@npm:7.26.0"
46
46
  dependencies:
47
- "@babel/highlight": "npm:^7.25.9"
47
+ "@babel/helper-validator-identifier": "npm:^7.25.9"
48
+ js-tokens: "npm:^4.0.0"
48
49
  picocolors: "npm:^1.0.0"
49
- checksum: 10c0/88562eba0eeb5960b7004e108790aa00183d90cbbe70ce10dad01c2c48141d2ef54d6dcd0c678cc1e456de770ffeb68e28559f4d222c01a110c79aea8733074b
50
+ checksum: 10c0/46f7e367714be736b52ea3c01b24f47e2102e210fb83021d1c8237d8fc511b9538909e16e2fcdbb5cb6173e0794e28624309a59014e52fcfb7bde908f5284388
50
51
  languageName: node
51
52
  linkType: hard
52
53
 
53
- "@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.25.9":
54
- version: 7.25.9
55
- resolution: "@babel/compat-data@npm:7.25.9"
56
- checksum: 10c0/8d9fc2074311ce61aaf5bccf740a808644d19d4859caf5fa46d8a7186a1ee0b0d8cbbc23f9371f8b397e84a885bdeab58d5f22d6799ddde55973252aac351a27
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.0
56
+ resolution: "@babel/compat-data@npm:7.26.0"
57
+ checksum: 10c0/6325c9151a3c9b0a3a807e854a26255ef66d989bff331475a935af9bb18f160e0fffe6aed550e4e96b63f91efcd874bfbaab2a1f4a2f8d25645d712a0de590fb
57
58
  languageName: node
58
59
  linkType: hard
59
60
 
@@ -82,37 +83,38 @@ __metadata:
82
83
  linkType: hard
83
84
 
84
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":
85
- version: 7.25.9
86
- resolution: "@babel/core@npm:7.25.9"
86
+ version: 7.26.0
87
+ resolution: "@babel/core@npm:7.26.0"
87
88
  dependencies:
88
89
  "@ampproject/remapping": "npm:^2.2.0"
89
- "@babel/code-frame": "npm:^7.25.9"
90
- "@babel/generator": "npm:^7.25.9"
90
+ "@babel/code-frame": "npm:^7.26.0"
91
+ "@babel/generator": "npm:^7.26.0"
91
92
  "@babel/helper-compilation-targets": "npm:^7.25.9"
92
- "@babel/helper-module-transforms": "npm:^7.25.9"
93
- "@babel/helpers": "npm:^7.25.9"
94
- "@babel/parser": "npm:^7.25.9"
93
+ "@babel/helper-module-transforms": "npm:^7.26.0"
94
+ "@babel/helpers": "npm:^7.26.0"
95
+ "@babel/parser": "npm:^7.26.0"
95
96
  "@babel/template": "npm:^7.25.9"
96
97
  "@babel/traverse": "npm:^7.25.9"
97
- "@babel/types": "npm:^7.25.9"
98
+ "@babel/types": "npm:^7.26.0"
98
99
  convert-source-map: "npm:^2.0.0"
99
100
  debug: "npm:^4.1.0"
100
101
  gensync: "npm:^1.0.0-beta.2"
101
102
  json5: "npm:^2.2.3"
102
103
  semver: "npm:^6.3.1"
103
- checksum: 10c0/40d3064ebe906f65ed4153a0f4d75c679a19e4d71e425035b7bbe2d292a9167274f1a0d908d4d6c8f484fcddeb10bd91e0c7878fdb3dfad1bb00f6a319ce431d
104
+ checksum: 10c0/91de73a7ff5c4049fbc747930aa039300e4d2670c2a91f5aa622f1b4868600fc89b01b6278385fbcd46f9574186fa3d9b376a9e7538e50f8d118ec13cfbcb63e
104
105
  languageName: node
105
106
  linkType: hard
106
107
 
107
- "@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.25.9":
108
- version: 7.25.9
109
- resolution: "@babel/generator@npm:7.25.9"
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.0
110
+ resolution: "@babel/generator@npm:7.26.0"
110
111
  dependencies:
111
- "@babel/types": "npm:^7.25.9"
112
+ "@babel/parser": "npm:^7.26.0"
113
+ "@babel/types": "npm:^7.26.0"
112
114
  "@jridgewell/gen-mapping": "npm:^0.3.5"
113
115
  "@jridgewell/trace-mapping": "npm:^0.3.25"
114
116
  jsesc: "npm:^3.0.2"
115
- checksum: 10c0/fca49a1440ac550bb835a73c0e8314849cd493a468a5431ca7f9dbb3d3443e3a1a6dcba2426752e8a97cc2feed4a3b7a0c639e1c45871c4a9dd0c994f08dd25a
117
+ checksum: 10c0/b6bb9185f19a97eaf58e04a6d39a13237076678e7ed16b6321dea914535d4bf6a8d7727c9dcb65539845aa0096b326eb67be4bab764bd74bcfd848e2eda68609
116
118
  languageName: node
117
119
  linkType: hard
118
120
 
@@ -231,17 +233,16 @@ __metadata:
231
233
  languageName: node
232
234
  linkType: hard
233
235
 
234
- "@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.25.9":
235
- version: 7.25.9
236
- resolution: "@babel/helper-module-transforms@npm:7.25.9"
236
+ "@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.25.9, @babel/helper-module-transforms@npm:^7.26.0":
237
+ version: 7.26.0
238
+ resolution: "@babel/helper-module-transforms@npm:7.26.0"
237
239
  dependencies:
238
240
  "@babel/helper-module-imports": "npm:^7.25.9"
239
- "@babel/helper-simple-access": "npm:^7.25.9"
240
241
  "@babel/helper-validator-identifier": "npm:^7.25.9"
241
242
  "@babel/traverse": "npm:^7.25.9"
242
243
  peerDependencies:
243
244
  "@babel/core": ^7.0.0
244
- checksum: 10c0/cd005e7585806845d79c5c0ca9e8926f186b430b0a558dad08a3611365eaad3ac587672b0d903530117dec454f48b6bdc3d164b19ea1b71ca1b4eb3be7b452ef
245
+ checksum: 10c0/ee111b68a5933481d76633dad9cdab30c41df4479f0e5e1cc4756dc9447c1afd2c9473b5ba006362e35b17f4ebddd5fca090233bef8dfc84dca9d9127e56ec3a
245
246
  languageName: node
246
247
  linkType: hard
247
248
 
@@ -346,17 +347,17 @@ __metadata:
346
347
  languageName: node
347
348
  linkType: hard
348
349
 
349
- "@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.25.9":
350
- version: 7.25.9
351
- resolution: "@babel/helpers@npm:7.25.9"
350
+ "@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.26.0":
351
+ version: 7.26.0
352
+ resolution: "@babel/helpers@npm:7.26.0"
352
353
  dependencies:
353
354
  "@babel/template": "npm:^7.25.9"
354
- "@babel/types": "npm:^7.25.9"
355
- checksum: 10c0/4354fbf050291937d0f127f6f927a0c471b604524e0767516fefb91dc36427f25904dd0d2b2b3bbc66bce1894c680cc37eac9ab46970d70f24bf3e53375612de
355
+ "@babel/types": "npm:^7.26.0"
356
+ checksum: 10c0/343333cced6946fe46617690a1d0789346960910225ce359021a88a60a65bc0d791f0c5d240c0ed46cf8cc63b5fd7df52734ff14e43b9c32feae2b61b1647097
356
357
  languageName: node
357
358
  linkType: hard
358
359
 
359
- "@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.25.9":
360
+ "@babel/highlight@npm:^7.10.4":
360
361
  version: 7.25.9
361
362
  resolution: "@babel/highlight@npm:7.25.9"
362
363
  dependencies:
@@ -368,14 +369,14 @@ __metadata:
368
369
  languageName: node
369
370
  linkType: hard
370
371
 
371
- "@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":
372
- version: 7.25.9
373
- resolution: "@babel/parser@npm:7.25.9"
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.1
374
+ resolution: "@babel/parser@npm:7.26.1"
374
375
  dependencies:
375
- "@babel/types": "npm:^7.25.9"
376
+ "@babel/types": "npm:^7.26.0"
376
377
  bin:
377
378
  parser: ./bin/babel-parser.js
378
- checksum: 10c0/143faff8a72331be5ed94080e0f4645cbeea814fb488cd9210154083735f67cb66fde32f6a4a80efd6c4cdf12c6f8b50995a465846093c7f65c5da8d7829627c
379
+ checksum: 10c0/dc7d4e6b7eb667fa0784e7e2c3f6f92ca12ad72242f6d4311995310dae55093f02acdb595b69b0dbbf04cb61ad87156ac03186ff32eacfa35149c655bc22c14b
379
380
  languageName: node
380
381
  linkType: hard
381
382
 
@@ -571,35 +572,35 @@ __metadata:
571
572
  linkType: hard
572
573
 
573
574
  "@babel/plugin-syntax-flow@npm:^7.25.9":
574
- version: 7.25.9
575
- resolution: "@babel/plugin-syntax-flow@npm:7.25.9"
575
+ version: 7.26.0
576
+ resolution: "@babel/plugin-syntax-flow@npm:7.26.0"
576
577
  dependencies:
577
578
  "@babel/helper-plugin-utils": "npm:^7.25.9"
578
579
  peerDependencies:
579
580
  "@babel/core": ^7.0.0-0
580
- checksum: 10c0/322136c86f550da4d6eee31de79b13852555188cfe6662db57a6329588b5e57bba81bd9f9e7f1f40d27a81a5f901a353218bbd4134392ced6b4b5536708224e7
581
+ checksum: 10c0/3d5cc1627a67af8be9df8cfe246869f18e7e9e2592f4b6f1c4bcd9bbe4ad27102784a25b31ebdbed23499ecb6fc23aaf7891ccf5ac3f432fd26a27123d1e242b
581
582
  languageName: node
582
583
  linkType: hard
583
584
 
584
- "@babel/plugin-syntax-import-assertions@npm:^7.25.9":
585
- version: 7.25.9
586
- resolution: "@babel/plugin-syntax-import-assertions@npm:7.25.9"
585
+ "@babel/plugin-syntax-import-assertions@npm:^7.26.0":
586
+ version: 7.26.0
587
+ resolution: "@babel/plugin-syntax-import-assertions@npm:7.26.0"
587
588
  dependencies:
588
589
  "@babel/helper-plugin-utils": "npm:^7.25.9"
589
590
  peerDependencies:
590
591
  "@babel/core": ^7.0.0-0
591
- checksum: 10c0/f5a022b8a7f3585cf1586535224b06ae380983d3c14f7127b82792ef50cd8194047080540c8abec7aa8f8bfe7d774d71a1ee91f4fd3fa0277f7ffe2d3c6c4977
592
+ checksum: 10c0/525b174e60b210d96c1744c1575fc2ddedcc43a479cba64a5344cf77bd0541754fc58120b5a11ff832ba098437bb05aa80900d1f49bb3d888c5e349a4a3a356e
592
593
  languageName: node
593
594
  linkType: hard
594
595
 
595
- "@babel/plugin-syntax-import-attributes@npm:^7.25.9":
596
- version: 7.25.9
597
- resolution: "@babel/plugin-syntax-import-attributes@npm:7.25.9"
596
+ "@babel/plugin-syntax-import-attributes@npm:^7.26.0":
597
+ version: 7.26.0
598
+ resolution: "@babel/plugin-syntax-import-attributes@npm:7.26.0"
598
599
  dependencies:
599
600
  "@babel/helper-plugin-utils": "npm:^7.25.9"
600
601
  peerDependencies:
601
602
  "@babel/core": ^7.0.0-0
602
- checksum: 10c0/bbdf97ba088c3d482492f6c3376422752b1723ce32e3ac11b000faf3c942d68e418c8a911431cb05d5e300d008cc37cd5518e89807a5813c2ac8fdd82d171f8d
603
+ checksum: 10c0/e594c185b12bfe0bbe7ca78dfeebe870e6d569a12128cac86f3164a075fe0ff70e25ddbd97fd0782906b91f65560c9dc6957716b7b4a68aba2516c9b7455e352
603
604
  languageName: node
604
605
  linkType: hard
605
606
 
@@ -752,15 +753,15 @@ __metadata:
752
753
  languageName: node
753
754
  linkType: hard
754
755
 
755
- "@babel/plugin-transform-class-static-block@npm:^7.25.9":
756
- version: 7.25.9
757
- resolution: "@babel/plugin-transform-class-static-block@npm:7.25.9"
756
+ "@babel/plugin-transform-class-static-block@npm:^7.26.0":
757
+ version: 7.26.0
758
+ resolution: "@babel/plugin-transform-class-static-block@npm:7.26.0"
758
759
  dependencies:
759
760
  "@babel/helper-create-class-features-plugin": "npm:^7.25.9"
760
761
  "@babel/helper-plugin-utils": "npm:^7.25.9"
761
762
  peerDependencies:
762
763
  "@babel/core": ^7.12.0
763
- checksum: 10c0/696a3a8acde79d6fee4f685ee1353bf483c4cd50a38e586a1a044268df72d87f9b1a3b7c473def6cde836aa69931fd5a75560bb9ee3a635ebde8911575ed49ca
764
+ checksum: 10c0/cdcf5545ae6514ed75fbd73cccfa209c6a5dfdf0c2bb7bb62c0fb4ec334a32281bcf1bc16ace494d9dbe93feb8bdc0bd3cf9d9ccb6316e634a67056fa13b741b
764
765
  languageName: node
765
766
  linkType: hard
766
767
 
@@ -1238,6 +1239,18 @@ __metadata:
1238
1239
  languageName: node
1239
1240
  linkType: hard
1240
1241
 
1242
+ "@babel/plugin-transform-regexp-modifiers@npm:^7.26.0":
1243
+ version: 7.26.0
1244
+ resolution: "@babel/plugin-transform-regexp-modifiers@npm:7.26.0"
1245
+ dependencies:
1246
+ "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9"
1247
+ "@babel/helper-plugin-utils": "npm:^7.25.9"
1248
+ peerDependencies:
1249
+ "@babel/core": ^7.0.0
1250
+ checksum: 10c0/4abc1db6c964efafc7a927cda814c7275275afa4b530483e0936fd614de23cb5802f7ca43edaa402008a723d4e7eac282b6f5283aa2eeb3b27da6d6c1dd7f8ed
1251
+ languageName: node
1252
+ linkType: hard
1253
+
1241
1254
  "@babel/plugin-transform-reserved-words@npm:^7.25.9":
1242
1255
  version: 7.25.9
1243
1256
  resolution: "@babel/plugin-transform-reserved-words@npm:7.25.9"
@@ -1368,10 +1381,10 @@ __metadata:
1368
1381
  linkType: hard
1369
1382
 
1370
1383
  "@babel/preset-env@npm:^7.12.11, @babel/preset-env@npm:^7.20.2":
1371
- version: 7.25.9
1372
- resolution: "@babel/preset-env@npm:7.25.9"
1384
+ version: 7.26.0
1385
+ resolution: "@babel/preset-env@npm:7.26.0"
1373
1386
  dependencies:
1374
- "@babel/compat-data": "npm:^7.25.9"
1387
+ "@babel/compat-data": "npm:^7.26.0"
1375
1388
  "@babel/helper-compilation-targets": "npm:^7.25.9"
1376
1389
  "@babel/helper-plugin-utils": "npm:^7.25.9"
1377
1390
  "@babel/helper-validator-option": "npm:^7.25.9"
@@ -1381,8 +1394,8 @@ __metadata:
1381
1394
  "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.25.9"
1382
1395
  "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^7.25.9"
1383
1396
  "@babel/plugin-proposal-private-property-in-object": "npm:7.21.0-placeholder-for-preset-env.2"
1384
- "@babel/plugin-syntax-import-assertions": "npm:^7.25.9"
1385
- "@babel/plugin-syntax-import-attributes": "npm:^7.25.9"
1397
+ "@babel/plugin-syntax-import-assertions": "npm:^7.26.0"
1398
+ "@babel/plugin-syntax-import-attributes": "npm:^7.26.0"
1386
1399
  "@babel/plugin-syntax-unicode-sets-regex": "npm:^7.18.6"
1387
1400
  "@babel/plugin-transform-arrow-functions": "npm:^7.25.9"
1388
1401
  "@babel/plugin-transform-async-generator-functions": "npm:^7.25.9"
@@ -1390,7 +1403,7 @@ __metadata:
1390
1403
  "@babel/plugin-transform-block-scoped-functions": "npm:^7.25.9"
1391
1404
  "@babel/plugin-transform-block-scoping": "npm:^7.25.9"
1392
1405
  "@babel/plugin-transform-class-properties": "npm:^7.25.9"
1393
- "@babel/plugin-transform-class-static-block": "npm:^7.25.9"
1406
+ "@babel/plugin-transform-class-static-block": "npm:^7.26.0"
1394
1407
  "@babel/plugin-transform-classes": "npm:^7.25.9"
1395
1408
  "@babel/plugin-transform-computed-properties": "npm:^7.25.9"
1396
1409
  "@babel/plugin-transform-destructuring": "npm:^7.25.9"
@@ -1423,6 +1436,7 @@ __metadata:
1423
1436
  "@babel/plugin-transform-private-property-in-object": "npm:^7.25.9"
1424
1437
  "@babel/plugin-transform-property-literals": "npm:^7.25.9"
1425
1438
  "@babel/plugin-transform-regenerator": "npm:^7.25.9"
1439
+ "@babel/plugin-transform-regexp-modifiers": "npm:^7.26.0"
1426
1440
  "@babel/plugin-transform-reserved-words": "npm:^7.25.9"
1427
1441
  "@babel/plugin-transform-shorthand-properties": "npm:^7.25.9"
1428
1442
  "@babel/plugin-transform-spread": "npm:^7.25.9"
@@ -1441,7 +1455,7 @@ __metadata:
1441
1455
  semver: "npm:^6.3.1"
1442
1456
  peerDependencies:
1443
1457
  "@babel/core": ^7.0.0-0
1444
- checksum: 10c0/b8b391e3fe69918a2a4f4366034113bd6f57c9748974dbe1b807a728bc41434f1e003cb4204ca63a2a01cbb7c05ba96036261b64756243374374353931d346e6
1458
+ checksum: 10c0/26e19dc407cfa1c5166be638b4c54239d084fe15d8d7e6306d8c6dc7bc1decc51070a8dcf28352c1a2feeefbe52a06d193a12e302327ad5f529583df75fb7a26
1445
1459
  languageName: node
1446
1460
  linkType: hard
1447
1461
 
@@ -1488,8 +1502,8 @@ __metadata:
1488
1502
  linkType: hard
1489
1503
 
1490
1504
  "@babel/preset-typescript@npm:^7.12.7, @babel/preset-typescript@npm:^7.21.0":
1491
- version: 7.25.9
1492
- resolution: "@babel/preset-typescript@npm:7.25.9"
1505
+ version: 7.26.0
1506
+ resolution: "@babel/preset-typescript@npm:7.26.0"
1493
1507
  dependencies:
1494
1508
  "@babel/helper-plugin-utils": "npm:^7.25.9"
1495
1509
  "@babel/helper-validator-option": "npm:^7.25.9"
@@ -1498,7 +1512,7 @@ __metadata:
1498
1512
  "@babel/plugin-transform-typescript": "npm:^7.25.9"
1499
1513
  peerDependencies:
1500
1514
  "@babel/core": ^7.0.0-0
1501
- checksum: 10c0/cbcc5b4bf2891e367627338961113febbe58d361e9a03bd2c8340ede914870f74db35ee367cfd8d0fca0872149bfb58b090d0a4815de7c05d0a8abb3d961eead
1515
+ checksum: 10c0/20d86bc45d2bbfde2f84fc7d7b38746fa6481d4bde6643039ad4b1ff0b804c6d210ee43e6830effd8571f2ff43fa7ffd27369f42f2b3a2518bb92dc86c780c61
1502
1516
  languageName: node
1503
1517
  linkType: hard
1504
1518
 
@@ -1518,21 +1532,21 @@ __metadata:
1518
1532
  linkType: hard
1519
1533
 
1520
1534
  "@babel/runtime-corejs3@npm:^7.10.2":
1521
- version: 7.25.9
1522
- resolution: "@babel/runtime-corejs3@npm:7.25.9"
1535
+ version: 7.26.0
1536
+ resolution: "@babel/runtime-corejs3@npm:7.26.0"
1523
1537
  dependencies:
1524
1538
  core-js-pure: "npm:^3.30.2"
1525
1539
  regenerator-runtime: "npm:^0.14.0"
1526
- checksum: 10c0/a1965f0d957077cf2dff1808e638e67119b83db2bf53dfffe9f7d7f549101989d3acffd9f04781eea0089dd9f2b0797001d9efeefbda7433dc0d2a930d76333d
1540
+ checksum: 10c0/921fa27c004cf2b92f0d49efc2006cfc1a72d2a35c7374da8ec88d8b63543963e6ef29d4820e068a7892a7d553dc2bac7208aef8fef30642bc843b63255b650b
1527
1541
  languageName: node
1528
1542
  linkType: hard
1529
1543
 
1530
1544
  "@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":
1531
- version: 7.25.9
1532
- resolution: "@babel/runtime@npm:7.25.9"
1545
+ version: 7.26.0
1546
+ resolution: "@babel/runtime@npm:7.26.0"
1533
1547
  dependencies:
1534
1548
  regenerator-runtime: "npm:^0.14.0"
1535
- checksum: 10c0/d1727a47eab67b8a742cbf1ef336a20c3d906fe65d6316d073c72479125addfa4358c44dd7b95d114f241b93409b134fad7cea43f3bf8ca7e2ef344177eb72d8
1549
+ checksum: 10c0/12c01357e0345f89f4f7e8c0e81921f2a3e3e101f06e8eaa18a382b517376520cd2fa8c237726eb094dab25532855df28a7baaf1c26342b52782f6936b07c287
1536
1550
  languageName: node
1537
1551
  linkType: hard
1538
1552
 
@@ -1562,13 +1576,13 @@ __metadata:
1562
1576
  languageName: node
1563
1577
  linkType: hard
1564
1578
 
1565
- "@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.4.4":
1566
- version: 7.25.9
1567
- resolution: "@babel/types@npm:7.25.9"
1579
+ "@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.0, @babel/types@npm:^7.4.4":
1580
+ version: 7.26.0
1581
+ resolution: "@babel/types@npm:7.26.0"
1568
1582
  dependencies:
1569
1583
  "@babel/helper-string-parser": "npm:^7.25.9"
1570
1584
  "@babel/helper-validator-identifier": "npm:^7.25.9"
1571
- checksum: 10c0/33890d08bcb06b26a3a60e4c6c996cbdf2b8d8a3c212664de659c2775f80b002c5f2bceedaa309c384ff5e99bd579794fe6a7e41de07df70246f43c55016d349
1585
+ checksum: 10c0/b694f41ad1597127e16024d766c33a641508aad037abd08d0d1f73af753e1119fa03b4a107d04b5f92cc19c095a594660547ae9bead1db2299212d644b0a5cb8
1572
1586
  languageName: node
1573
1587
  linkType: hard
1574
1588
 
@@ -3302,114 +3316,128 @@ __metadata:
3302
3316
  languageName: node
3303
3317
  linkType: hard
3304
3318
 
3305
- "@rollup/rollup-android-arm-eabi@npm:4.24.0":
3306
- version: 4.24.0
3307
- resolution: "@rollup/rollup-android-arm-eabi@npm:4.24.0"
3319
+ "@rollup/rollup-android-arm-eabi@npm:4.24.2":
3320
+ version: 4.24.2
3321
+ resolution: "@rollup/rollup-android-arm-eabi@npm:4.24.2"
3308
3322
  conditions: os=android & cpu=arm
3309
3323
  languageName: node
3310
3324
  linkType: hard
3311
3325
 
3312
- "@rollup/rollup-android-arm64@npm:4.24.0":
3313
- version: 4.24.0
3314
- resolution: "@rollup/rollup-android-arm64@npm:4.24.0"
3326
+ "@rollup/rollup-android-arm64@npm:4.24.2":
3327
+ version: 4.24.2
3328
+ resolution: "@rollup/rollup-android-arm64@npm:4.24.2"
3315
3329
  conditions: os=android & cpu=arm64
3316
3330
  languageName: node
3317
3331
  linkType: hard
3318
3332
 
3319
- "@rollup/rollup-darwin-arm64@npm:4.24.0":
3320
- version: 4.24.0
3321
- resolution: "@rollup/rollup-darwin-arm64@npm:4.24.0"
3333
+ "@rollup/rollup-darwin-arm64@npm:4.24.2":
3334
+ version: 4.24.2
3335
+ resolution: "@rollup/rollup-darwin-arm64@npm:4.24.2"
3322
3336
  conditions: os=darwin & cpu=arm64
3323
3337
  languageName: node
3324
3338
  linkType: hard
3325
3339
 
3326
- "@rollup/rollup-darwin-x64@npm:4.24.0":
3327
- version: 4.24.0
3328
- resolution: "@rollup/rollup-darwin-x64@npm:4.24.0"
3340
+ "@rollup/rollup-darwin-x64@npm:4.24.2":
3341
+ version: 4.24.2
3342
+ resolution: "@rollup/rollup-darwin-x64@npm:4.24.2"
3329
3343
  conditions: os=darwin & cpu=x64
3330
3344
  languageName: node
3331
3345
  linkType: hard
3332
3346
 
3333
- "@rollup/rollup-linux-arm-gnueabihf@npm:4.24.0":
3334
- version: 4.24.0
3335
- resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.24.0"
3347
+ "@rollup/rollup-freebsd-arm64@npm:4.24.2":
3348
+ version: 4.24.2
3349
+ resolution: "@rollup/rollup-freebsd-arm64@npm:4.24.2"
3350
+ conditions: os=freebsd & cpu=arm64
3351
+ languageName: node
3352
+ linkType: hard
3353
+
3354
+ "@rollup/rollup-freebsd-x64@npm:4.24.2":
3355
+ version: 4.24.2
3356
+ resolution: "@rollup/rollup-freebsd-x64@npm:4.24.2"
3357
+ conditions: os=freebsd & cpu=x64
3358
+ languageName: node
3359
+ linkType: hard
3360
+
3361
+ "@rollup/rollup-linux-arm-gnueabihf@npm:4.24.2":
3362
+ version: 4.24.2
3363
+ resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.24.2"
3336
3364
  conditions: os=linux & cpu=arm & libc=glibc
3337
3365
  languageName: node
3338
3366
  linkType: hard
3339
3367
 
3340
- "@rollup/rollup-linux-arm-musleabihf@npm:4.24.0":
3341
- version: 4.24.0
3342
- resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.24.0"
3368
+ "@rollup/rollup-linux-arm-musleabihf@npm:4.24.2":
3369
+ version: 4.24.2
3370
+ resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.24.2"
3343
3371
  conditions: os=linux & cpu=arm & libc=musl
3344
3372
  languageName: node
3345
3373
  linkType: hard
3346
3374
 
3347
- "@rollup/rollup-linux-arm64-gnu@npm:4.24.0":
3348
- version: 4.24.0
3349
- resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.24.0"
3375
+ "@rollup/rollup-linux-arm64-gnu@npm:4.24.2":
3376
+ version: 4.24.2
3377
+ resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.24.2"
3350
3378
  conditions: os=linux & cpu=arm64 & libc=glibc
3351
3379
  languageName: node
3352
3380
  linkType: hard
3353
3381
 
3354
- "@rollup/rollup-linux-arm64-musl@npm:4.24.0":
3355
- version: 4.24.0
3356
- resolution: "@rollup/rollup-linux-arm64-musl@npm:4.24.0"
3382
+ "@rollup/rollup-linux-arm64-musl@npm:4.24.2":
3383
+ version: 4.24.2
3384
+ resolution: "@rollup/rollup-linux-arm64-musl@npm:4.24.2"
3357
3385
  conditions: os=linux & cpu=arm64 & libc=musl
3358
3386
  languageName: node
3359
3387
  linkType: hard
3360
3388
 
3361
- "@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.0":
3362
- version: 4.24.0
3363
- resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.0"
3389
+ "@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.2":
3390
+ version: 4.24.2
3391
+ resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.2"
3364
3392
  conditions: os=linux & cpu=ppc64 & libc=glibc
3365
3393
  languageName: node
3366
3394
  linkType: hard
3367
3395
 
3368
- "@rollup/rollup-linux-riscv64-gnu@npm:4.24.0":
3369
- version: 4.24.0
3370
- resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.24.0"
3396
+ "@rollup/rollup-linux-riscv64-gnu@npm:4.24.2":
3397
+ version: 4.24.2
3398
+ resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.24.2"
3371
3399
  conditions: os=linux & cpu=riscv64 & libc=glibc
3372
3400
  languageName: node
3373
3401
  linkType: hard
3374
3402
 
3375
- "@rollup/rollup-linux-s390x-gnu@npm:4.24.0":
3376
- version: 4.24.0
3377
- resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.24.0"
3403
+ "@rollup/rollup-linux-s390x-gnu@npm:4.24.2":
3404
+ version: 4.24.2
3405
+ resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.24.2"
3378
3406
  conditions: os=linux & cpu=s390x & libc=glibc
3379
3407
  languageName: node
3380
3408
  linkType: hard
3381
3409
 
3382
- "@rollup/rollup-linux-x64-gnu@npm:4.24.0":
3383
- version: 4.24.0
3384
- resolution: "@rollup/rollup-linux-x64-gnu@npm:4.24.0"
3410
+ "@rollup/rollup-linux-x64-gnu@npm:4.24.2":
3411
+ version: 4.24.2
3412
+ resolution: "@rollup/rollup-linux-x64-gnu@npm:4.24.2"
3385
3413
  conditions: os=linux & cpu=x64 & libc=glibc
3386
3414
  languageName: node
3387
3415
  linkType: hard
3388
3416
 
3389
- "@rollup/rollup-linux-x64-musl@npm:4.24.0":
3390
- version: 4.24.0
3391
- resolution: "@rollup/rollup-linux-x64-musl@npm:4.24.0"
3417
+ "@rollup/rollup-linux-x64-musl@npm:4.24.2":
3418
+ version: 4.24.2
3419
+ resolution: "@rollup/rollup-linux-x64-musl@npm:4.24.2"
3392
3420
  conditions: os=linux & cpu=x64 & libc=musl
3393
3421
  languageName: node
3394
3422
  linkType: hard
3395
3423
 
3396
- "@rollup/rollup-win32-arm64-msvc@npm:4.24.0":
3397
- version: 4.24.0
3398
- resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.24.0"
3424
+ "@rollup/rollup-win32-arm64-msvc@npm:4.24.2":
3425
+ version: 4.24.2
3426
+ resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.24.2"
3399
3427
  conditions: os=win32 & cpu=arm64
3400
3428
  languageName: node
3401
3429
  linkType: hard
3402
3430
 
3403
- "@rollup/rollup-win32-ia32-msvc@npm:4.24.0":
3404
- version: 4.24.0
3405
- resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.24.0"
3431
+ "@rollup/rollup-win32-ia32-msvc@npm:4.24.2":
3432
+ version: 4.24.2
3433
+ resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.24.2"
3406
3434
  conditions: os=win32 & cpu=ia32
3407
3435
  languageName: node
3408
3436
  linkType: hard
3409
3437
 
3410
- "@rollup/rollup-win32-x64-msvc@npm:4.24.0":
3411
- version: 4.24.0
3412
- resolution: "@rollup/rollup-win32-x64-msvc@npm:4.24.0"
3438
+ "@rollup/rollup-win32-x64-msvc@npm:4.24.2":
3439
+ version: 4.24.2
3440
+ resolution: "@rollup/rollup-win32-x64-msvc@npm:4.24.2"
3413
3441
  conditions: os=win32 & cpu=x64
3414
3442
  languageName: node
3415
3443
  linkType: hard
@@ -5670,11 +5698,11 @@ __metadata:
5670
5698
  linkType: hard
5671
5699
 
5672
5700
  "@types/node@npm:*":
5673
- version: 22.7.9
5674
- resolution: "@types/node@npm:22.7.9"
5701
+ version: 22.8.1
5702
+ resolution: "@types/node@npm:22.8.1"
5675
5703
  dependencies:
5676
- undici-types: "npm:~6.19.2"
5677
- checksum: 10c0/2d1917702b9d9ede8e4d8151cd8b1af8bc147d543486474ffbe0742e38764ea73105939e6a767addf7a4c39e842e16eae762bff90617d7b7f9ee3fbbb2d23bfa
5704
+ undici-types: "npm:~6.19.8"
5705
+ checksum: 10c0/83550fdf72a7db5b55eceac3f4fb038844eaee20202bdd2297a8248370cfa08317bda1605b781a8043eda4f173b75e73632e652fc85509eb14dfef78fa17337f
5678
5706
  languageName: node
5679
5707
  linkType: hard
5680
5708
 
@@ -6196,30 +6224,30 @@ __metadata:
6196
6224
  languageName: node
6197
6225
  linkType: hard
6198
6226
 
6199
- "@volar/language-core@npm:2.4.6, @volar/language-core@npm:~2.4.0-alpha.18":
6200
- version: 2.4.6
6201
- resolution: "@volar/language-core@npm:2.4.6"
6227
+ "@volar/language-core@npm:2.4.8, @volar/language-core@npm:~2.4.0-alpha.18":
6228
+ version: 2.4.8
6229
+ resolution: "@volar/language-core@npm:2.4.8"
6202
6230
  dependencies:
6203
- "@volar/source-map": "npm:2.4.6"
6204
- checksum: 10c0/01802825d561c49f3b2b8362cc01a37ca1845ae2c59b0458be5732e444904d3f4c6bf1cfa7e3bb19faf2ae05f6553b2ecce37b18d07c55922623aa5a6e03cfc1
6231
+ "@volar/source-map": "npm:2.4.8"
6232
+ checksum: 10c0/f2d2e29f09dfd5f44db4a94c2a64755ed9f7a7855e0f7e118ab59bff21a7e036079e83968a7c49495a11e0be0dcfed02a5547691849ee9414445c121d97aa221
6205
6233
  languageName: node
6206
6234
  linkType: hard
6207
6235
 
6208
- "@volar/source-map@npm:2.4.6":
6209
- version: 2.4.6
6210
- resolution: "@volar/source-map@npm:2.4.6"
6211
- checksum: 10c0/5ebfdb3b25697272fce6b5782bb54230a851ae9d33c30243b376ff168e2d08dc9093e0a74d39c30e668157bd06741640ba3cb8fd4c6a3be43bf2335a5de3775f
6236
+ "@volar/source-map@npm:2.4.8":
6237
+ version: 2.4.8
6238
+ resolution: "@volar/source-map@npm:2.4.8"
6239
+ checksum: 10c0/aadab874105e53628d4480a5b6e8e01d3febca326fd822130186a42ebec8397ae6d396c7c3a6993aefe14b45598fe5db55f81b4bd2ebaaa75aad9b9435db68a6
6212
6240
  languageName: node
6213
6241
  linkType: hard
6214
6242
 
6215
6243
  "@volar/typescript@npm:^2.3.4, @volar/typescript@npm:~2.4.0-alpha.18":
6216
- version: 2.4.6
6217
- resolution: "@volar/typescript@npm:2.4.6"
6244
+ version: 2.4.8
6245
+ resolution: "@volar/typescript@npm:2.4.8"
6218
6246
  dependencies:
6219
- "@volar/language-core": "npm:2.4.6"
6247
+ "@volar/language-core": "npm:2.4.8"
6220
6248
  path-browserify: "npm:^1.0.1"
6221
6249
  vscode-uri: "npm:^3.0.8"
6222
- checksum: 10c0/5d6913151dcb6366a961d47dcf8858e35c094ef247fc14cc6b11349e3a3993abbd9dde8e5bde1b71d202c208d61c4989ae63da1bfd183c02d0ea4652a26e6a59
6250
+ checksum: 10c0/c1a21b21c53f3cdc7d59dfbe9f84bfbb479af01f0ea117b5b35466a41b1633c2058ce4c73645f7e98d7bb6c649dc6ba1d13e12be1c518e01b22352750892560a
6223
6251
  languageName: node
6224
6252
  linkType: hard
6225
6253
 
@@ -6573,11 +6601,11 @@ __metadata:
6573
6601
  linkType: hard
6574
6602
 
6575
6603
  "acorn@npm:^8.12.1, acorn@npm:^8.5.0, acorn@npm:^8.8.2":
6576
- version: 8.13.0
6577
- resolution: "acorn@npm:8.13.0"
6604
+ version: 8.14.0
6605
+ resolution: "acorn@npm:8.14.0"
6578
6606
  bin:
6579
6607
  acorn: bin/acorn
6580
- checksum: 10c0/f35dd53d68177c90699f4c37d0bb205b8abe036d955d0eb011ddb7f14a81e6fd0f18893731c457c1b5bd96754683f4c3d80d9a5585ddecaa53cdf84e0b3d68f7
6608
+ checksum: 10c0/6d4ee461a7734b2f48836ee0fbb752903606e576cc100eb49340295129ca0b452f3ba91ddd4424a1d4406a98adfb2ebb6bd0ff4c49d7a0930c10e462719bbfd7
6581
6609
  languageName: node
6582
6610
  linkType: hard
6583
6611
 
@@ -8052,9 +8080,9 @@ __metadata:
8052
8080
  linkType: hard
8053
8081
 
8054
8082
  "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":
8055
- version: 1.0.30001669
8056
- resolution: "caniuse-lite@npm:1.0.30001669"
8057
- checksum: 10c0/f125f23440d3dbb6c25ffb8d55f4ce48af36a84d0932b152b3b74f143a4170cbe92e02b0a9676209c86609bf7bf34119ff10cc2bc7c1b7ea40e936cc16598408
8083
+ version: 1.0.30001673
8084
+ resolution: "caniuse-lite@npm:1.0.30001673"
8085
+ checksum: 10c0/0e73a2b0f06973052e563dec9990a6fd440d510fa2ff54fa50310e736abb86e96c96b43c10e609fc22f2109f98fe76428b70441baf6b1a49f69ccf50c1879f6b
8058
8086
  languageName: node
8059
8087
  linkType: hard
8060
8088
 
@@ -8190,8 +8218,8 @@ __metadata:
8190
8218
  linkType: hard
8191
8219
 
8192
8220
  "chromatic@npm:^11.4.0":
8193
- version: 11.15.0
8194
- resolution: "chromatic@npm:11.15.0"
8221
+ version: 11.16.1
8222
+ resolution: "chromatic@npm:11.16.1"
8195
8223
  peerDependencies:
8196
8224
  "@chromatic-com/cypress": ^0.*.* || ^1.0.0
8197
8225
  "@chromatic-com/playwright": ^0.*.* || ^1.0.0
@@ -8204,7 +8232,7 @@ __metadata:
8204
8232
  chroma: dist/bin.js
8205
8233
  chromatic: dist/bin.js
8206
8234
  chromatic-cli: dist/bin.js
8207
- checksum: 10c0/8add464ff39417c402b77d973300806a50bd5e3b8f95eeccd965787536b4273e6bfa6b6e0716417bf342cd5106e82e8f1e0dec4a290a89c00e7862f3833fff10
8235
+ checksum: 10c0/bd0b5ba68d44a9947677690e9fc72bcf76c4b4069580ed763900befd207e20baad22f45a9a1e46468ddeb6f0f867a33ee37149041c66991d088ca2cfb8c3fa42
8208
8236
  languageName: node
8209
8237
  linkType: hard
8210
8238
 
@@ -9812,9 +9840,9 @@ __metadata:
9812
9840
  linkType: hard
9813
9841
 
9814
9842
  "electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.41":
9815
- version: 1.5.45
9816
- resolution: "electron-to-chromium@npm:1.5.45"
9817
- checksum: 10c0/f361ceda3bedcdc531ec0c060759c3487efd894d16a379beffe82a372fbeadcd1ac3cfc74a103b946dd2d12923a547289916743a609adaf68e5c4eef806e9e49
9843
+ version: 1.5.47
9844
+ resolution: "electron-to-chromium@npm:1.5.47"
9845
+ checksum: 10c0/5f8c4a9f0698695960f7bef5242d52b1043020ce50b51fb534409a768847f9bdc9672cb4a6a560eeb8f8b47a04327ae9b31b2cee376cb637b3eb04a4daeaa3b8
9818
9846
  languageName: node
9819
9847
  linkType: hard
9820
9848
 
@@ -9828,8 +9856,8 @@ __metadata:
9828
9856
  linkType: hard
9829
9857
 
9830
9858
  "elliptic@npm:^6.5.3, elliptic@npm:^6.5.5":
9831
- version: 6.5.7
9832
- resolution: "elliptic@npm:6.5.7"
9859
+ version: 6.6.0
9860
+ resolution: "elliptic@npm:6.6.0"
9833
9861
  dependencies:
9834
9862
  bn.js: "npm:^4.11.9"
9835
9863
  brorand: "npm:^1.1.0"
@@ -9838,7 +9866,7 @@ __metadata:
9838
9866
  inherits: "npm:^2.0.4"
9839
9867
  minimalistic-assert: "npm:^1.0.1"
9840
9868
  minimalistic-crypto-utils: "npm:^1.0.1"
9841
- checksum: 10c0/799959b6c54ea3564e8961f35abdf8c77e37617f3051614b05ab1fb6a04ddb65bd1caa75ed1bae375b15dda312a0f79fed26ebe76ecf05c5a7af244152a601b8
9869
+ checksum: 10c0/42eb3492e218017bf8923a5d14a86f414952f2f771361805b3ae9f380923b5da53e203d0d92be95cb0a248858a78db7db5934a346e268abb757e6fe561d401c9
9842
9870
  languageName: node
9843
9871
  linkType: hard
9844
9872
 
@@ -16840,15 +16868,15 @@ __metadata:
16840
16868
  linkType: hard
16841
16869
 
16842
16870
  "prosemirror-tables@npm:^1.3.0":
16843
- version: 1.5.1
16844
- resolution: "prosemirror-tables@npm:1.5.1"
16871
+ version: 1.6.0
16872
+ resolution: "prosemirror-tables@npm:1.6.0"
16845
16873
  dependencies:
16846
16874
  prosemirror-keymap: "npm:^1.1.2"
16847
16875
  prosemirror-model: "npm:^1.8.1"
16848
16876
  prosemirror-state: "npm:^1.3.1"
16849
16877
  prosemirror-transform: "npm:^1.2.1"
16850
16878
  prosemirror-view: "npm:^1.13.3"
16851
- checksum: 10c0/d0feabd33eaf85f0aa8e1cff069713b364d35213c42f56cd37bfebf2939a694978ee3fcfceaa4bbcf53680b31ff8f29660bb266e8c3f47fabe6959fa526a6e12
16879
+ checksum: 10c0/f84bd03b29eaa2d76c01e01948cfc6aba6bacc73680f87c4e332dab382ad15ee244bd26e2dc7f5473af6ad5404ae9f71e647fef2bacac28617c98d2c629bd5bd
16852
16880
  languageName: node
16853
16881
  linkType: hard
16854
16882
 
@@ -18273,13 +18301,13 @@ __metadata:
18273
18301
  linkType: hard
18274
18302
 
18275
18303
  "regjsparser@npm:^0.11.0":
18276
- version: 0.11.1
18277
- resolution: "regjsparser@npm:0.11.1"
18304
+ version: 0.11.2
18305
+ resolution: "regjsparser@npm:0.11.2"
18278
18306
  dependencies:
18279
18307
  jsesc: "npm:~3.0.2"
18280
18308
  bin:
18281
18309
  regjsparser: bin/parser
18282
- checksum: 10c0/be4b40981a596b31eacd84ee12cfa474f1d33a6c05f7e995e8ec9d5ad8f1c3fbf7a5b690a05c443e1f312a1c0b16d4ea0b3384596a61d4fda97aa322879bb3cd
18310
+ checksum: 10c0/764e762de1b26a0cf48b45728fc1b2087f9c55bd4cea858cce28e4d5544c237f3f2dd6d40e2c41b80068e9cb92cc7d731a4285bc1f27d6ebc227792c70e4af1b
18283
18311
  languageName: node
18284
18312
  linkType: hard
18285
18313
 
@@ -18712,25 +18740,27 @@ __metadata:
18712
18740
  linkType: hard
18713
18741
 
18714
18742
  "rollup@npm:^4.13.0":
18715
- version: 4.24.0
18716
- resolution: "rollup@npm:4.24.0"
18717
- dependencies:
18718
- "@rollup/rollup-android-arm-eabi": "npm:4.24.0"
18719
- "@rollup/rollup-android-arm64": "npm:4.24.0"
18720
- "@rollup/rollup-darwin-arm64": "npm:4.24.0"
18721
- "@rollup/rollup-darwin-x64": "npm:4.24.0"
18722
- "@rollup/rollup-linux-arm-gnueabihf": "npm:4.24.0"
18723
- "@rollup/rollup-linux-arm-musleabihf": "npm:4.24.0"
18724
- "@rollup/rollup-linux-arm64-gnu": "npm:4.24.0"
18725
- "@rollup/rollup-linux-arm64-musl": "npm:4.24.0"
18726
- "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.24.0"
18727
- "@rollup/rollup-linux-riscv64-gnu": "npm:4.24.0"
18728
- "@rollup/rollup-linux-s390x-gnu": "npm:4.24.0"
18729
- "@rollup/rollup-linux-x64-gnu": "npm:4.24.0"
18730
- "@rollup/rollup-linux-x64-musl": "npm:4.24.0"
18731
- "@rollup/rollup-win32-arm64-msvc": "npm:4.24.0"
18732
- "@rollup/rollup-win32-ia32-msvc": "npm:4.24.0"
18733
- "@rollup/rollup-win32-x64-msvc": "npm:4.24.0"
18743
+ version: 4.24.2
18744
+ resolution: "rollup@npm:4.24.2"
18745
+ dependencies:
18746
+ "@rollup/rollup-android-arm-eabi": "npm:4.24.2"
18747
+ "@rollup/rollup-android-arm64": "npm:4.24.2"
18748
+ "@rollup/rollup-darwin-arm64": "npm:4.24.2"
18749
+ "@rollup/rollup-darwin-x64": "npm:4.24.2"
18750
+ "@rollup/rollup-freebsd-arm64": "npm:4.24.2"
18751
+ "@rollup/rollup-freebsd-x64": "npm:4.24.2"
18752
+ "@rollup/rollup-linux-arm-gnueabihf": "npm:4.24.2"
18753
+ "@rollup/rollup-linux-arm-musleabihf": "npm:4.24.2"
18754
+ "@rollup/rollup-linux-arm64-gnu": "npm:4.24.2"
18755
+ "@rollup/rollup-linux-arm64-musl": "npm:4.24.2"
18756
+ "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.24.2"
18757
+ "@rollup/rollup-linux-riscv64-gnu": "npm:4.24.2"
18758
+ "@rollup/rollup-linux-s390x-gnu": "npm:4.24.2"
18759
+ "@rollup/rollup-linux-x64-gnu": "npm:4.24.2"
18760
+ "@rollup/rollup-linux-x64-musl": "npm:4.24.2"
18761
+ "@rollup/rollup-win32-arm64-msvc": "npm:4.24.2"
18762
+ "@rollup/rollup-win32-ia32-msvc": "npm:4.24.2"
18763
+ "@rollup/rollup-win32-x64-msvc": "npm:4.24.2"
18734
18764
  "@types/estree": "npm:1.0.6"
18735
18765
  fsevents: "npm:~2.3.2"
18736
18766
  dependenciesMeta:
@@ -18742,6 +18772,10 @@ __metadata:
18742
18772
  optional: true
18743
18773
  "@rollup/rollup-darwin-x64":
18744
18774
  optional: true
18775
+ "@rollup/rollup-freebsd-arm64":
18776
+ optional: true
18777
+ "@rollup/rollup-freebsd-x64":
18778
+ optional: true
18745
18779
  "@rollup/rollup-linux-arm-gnueabihf":
18746
18780
  optional: true
18747
18781
  "@rollup/rollup-linux-arm-musleabihf":
@@ -18770,7 +18804,7 @@ __metadata:
18770
18804
  optional: true
18771
18805
  bin:
18772
18806
  rollup: dist/bin/rollup
18773
- checksum: 10c0/77fb549c1de8afd1142d2da765adbb0cdab9f13c47df5217f00b5cf40b74219caa48c6ba2157f6249313ee81b6fa4c4fa8b3d2a0347ad6220739e00e580a808d
18807
+ checksum: 10c0/265de71cf6c20854514f0be1727fab3e615aa4afde2431f705c6f535182976c645703d2a21b4d25648a0212fb26a4043f892a83bba4d73c9ea965271a2f4a50e
18774
18808
  languageName: node
18775
18809
  linkType: hard
18776
18810
 
@@ -20796,7 +20830,7 @@ __metadata:
20796
20830
  languageName: node
20797
20831
  linkType: hard
20798
20832
 
20799
- "undici-types@npm:~6.19.2":
20833
+ "undici-types@npm:~6.19.8":
20800
20834
  version: 6.19.8
20801
20835
  resolution: "undici-types@npm:6.19.8"
20802
20836
  checksum: 10c0/078afa5990fba110f6824823ace86073b4638f1d5112ee26e790155f481f2a868cc3e0615505b6f4282bdf74a3d8caad715fd809e870c2bb0704e3ea6082f344