@licklist/design 0.72.0-dev.3 → 0.72.0-dev.5

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.
@@ -14,7 +14,7 @@ var DateTimeButton = function(param) {
14
14
  var date = param.date, _isDisabled = param.isDisabled, isSelected = param.isSelected, _isSoldOut = param.isSoldOut, onSelect = param.onSelect, price = param.price, resources = param.resources, showResources = param.showResources, _param_variant = param.variant, variant = _param_variant === void 0 ? "week" : _param_variant, availabilityFormat = param.availabilityFormat;
15
15
  var isSoldOut = _isSoldOut || resources && resources.bookedResources >= resources.totalResources;
16
16
  var isTimeVariant = variant === "time";
17
- var isPast = variant === "time" ? isPastTime(date) : isPastDate(date);
17
+ var isPast = isPastDate(date);
18
18
  var isDisabled = _isDisabled || isSoldOut || isPast;
19
19
  var isUnavailable = _isDisabled || isPast;
20
20
  return /*#__PURE__*/ jsxs("button", {
@@ -45,9 +45,6 @@ var DateTimeButton = function(param) {
45
45
  ]
46
46
  });
47
47
  };
48
- var isPastTime = function(date) {
49
- return DateTime.now() > date;
50
- };
51
48
  var isPastDate = function(date) {
52
49
  return DateTime.now() > date.set({
53
50
  hour: 23,
@@ -2,9 +2,10 @@ export declare const SALE_DEADLINE_NAME_CATEGORY = "saleDeadlineCategory";
2
2
  export declare const SALE_DEADLINE_NAME = "saleDeadline";
3
3
  export declare const DEADLINE_NAME: readonly ["saleDeadlineCategory", "saleDeadline"];
4
4
  export type DeadLineNameType = (typeof DEADLINE_NAME)[number];
5
- export declare const SaleDeadline: ({ disabled, onlyBefore, deadLineCategory, }: {
5
+ export declare const SaleDeadline: ({ disabled, onlyBefore, isProductSet, deadLineCategory, }: {
6
6
  disabled?: boolean;
7
7
  onlyBefore?: boolean;
8
+ isProductSet?: boolean;
8
9
  deadLineCategory?: string;
9
10
  }) => import("react/jsx-runtime").JSX.Element;
10
11
  //# sourceMappingURL=SaleDeadline.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SaleDeadline.d.ts","sourceRoot":"","sources":["../../../../../src/events/edit-event-modal/component/SaleDeadline/SaleDeadline.tsx"],"names":[],"mappings":"AAWA,eAAO,MAAM,2BAA2B,yBAAyB,CAAA;AACjE,eAAO,MAAM,kBAAkB,iBAAiB,CAAA;AAWhD,eAAO,MAAM,aAAa,mDAGhB,CAAA;AAEV,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,CAAA;AAU7D,eAAO,MAAM,YAAY,gDAItB;IACD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,gBAAgB,CAAC,EAAE,MAAM,CAAA;CAC1B,4CA8JA,CAAA"}
1
+ {"version":3,"file":"SaleDeadline.d.ts","sourceRoot":"","sources":["../../../../../src/events/edit-event-modal/component/SaleDeadline/SaleDeadline.tsx"],"names":[],"mappings":"AAWA,eAAO,MAAM,2BAA2B,yBAAyB,CAAA;AACjE,eAAO,MAAM,kBAAkB,iBAAiB,CAAA;AAWhD,eAAO,MAAM,aAAa,mDAGhB,CAAA;AAEV,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,CAAA;AAU7D,eAAO,MAAM,YAAY,8DAKtB;IACD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAA;CAC1B,4CAoKA,CAAA"}
@@ -67,7 +67,7 @@ var SALE_DEADLINES_EVENT_START_TYPES = [
67
67
  }
68
68
  ];
69
69
  var SaleDeadline = function(param) {
70
- var _param_disabled = param.disabled, disabled = _param_disabled === void 0 ? false : _param_disabled, _param_onlyBefore = param.onlyBefore, onlyBefore = _param_onlyBefore === void 0 ? false : _param_onlyBefore, deadLineCategory = param.deadLineCategory;
70
+ var _param_disabled = param.disabled, disabled = _param_disabled === void 0 ? false : _param_disabled, _param_onlyBefore = param.onlyBefore, onlyBefore = _param_onlyBefore === void 0 ? false : _param_onlyBefore, _param_isProductSet = param.isProductSet, isProductSet = _param_isProductSet === void 0 ? false : _param_isProductSet, deadLineCategory = param.deadLineCategory;
71
71
  var _errors_root;
72
72
  var t = useTranslation([
73
73
  'Design'
@@ -133,9 +133,10 @@ var SaleDeadline = function(param) {
133
133
  name: "sale-deadline",
134
134
  options: SALE_DEADLINES_EVENT_START_TYPES.map(function(param) {
135
135
  var type = param.type;
136
+ var salesDeadlineTitle = type === SALE_DEADLINE_BEFORE_TYPE && isProductSet ? 'beforeProductSet' : type;
136
137
  return {
137
138
  id: type,
138
- value: t("Design:".concat(type))
139
+ value: t("Design:".concat(salesDeadlineTitle))
139
140
  };
140
141
  }),
141
142
  value: deadlineType,
@@ -185,7 +185,7 @@ function ProductSetControl(param) {
185
185
  }),
186
186
  /*#__PURE__*/ jsx(SaleDeadline, {
187
187
  disabled: false,
188
- onlyBefore: true
188
+ isProductSet: true
189
189
  }),
190
190
  /*#__PURE__*/ jsx("div", {
191
191
  className: "divider"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@licklist/design",
3
- "version": "0.72.0-dev.3",
3
+ "version": "0.72.0-dev.5",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
@@ -42,7 +42,7 @@
42
42
  ]
43
43
  },
44
44
  "peerDependencies": {
45
- "@licklist/core": "0.31.2-dev.16",
45
+ "@licklist/core": "0.31.2-dev.17",
46
46
  "@licklist/eslint-config": "0.5.6",
47
47
  "@licklist/plugins": "0.35.1-dev.8",
48
48
  "lodash": "4.17.21",
@@ -61,7 +61,7 @@
61
61
  "@dnd-kit/utilities": "2.0.0",
62
62
  "@fortawesome/fontawesome-svg-core": "1.2.34",
63
63
  "@fortawesome/free-solid-svg-icons": "5.15.2",
64
- "@licklist/core": "0.31.2-dev.14",
64
+ "@licklist/core": "0.31.2-dev.17",
65
65
  "@licklist/eslint-config": "0.5.6",
66
66
  "@licklist/plugins": "0.35.1-dev.8",
67
67
  "@mantine/core": "6.0.22",
@@ -43,7 +43,7 @@ export const DateTimeButton = ({
43
43
 
44
44
  const isTimeVariant = variant === Variant.time
45
45
 
46
- const isPast = variant === Variant.time ? isPastTime(date) : isPastDate(date)
46
+ const isPast = isPastDate(date)
47
47
 
48
48
  const isDisabled = _isDisabled || isSoldOut || isPast
49
49
  const isUnavailable = _isDisabled || isPast
@@ -82,7 +82,5 @@ export const DateTimeButton = ({
82
82
  )
83
83
  }
84
84
 
85
- const isPastTime = (date: DateTime): boolean => DateTime.now() > date
86
-
87
85
  const isPastDate = (date: DateTime): boolean =>
88
86
  DateTime.now() > date.set({ hour: 23, minute: 59, second: 59 })
@@ -39,10 +39,12 @@ type SaleDeadlineType =
39
39
  export const SaleDeadline = ({
40
40
  disabled = false,
41
41
  onlyBefore = false,
42
+ isProductSet = false,
42
43
  deadLineCategory,
43
44
  }: {
44
45
  disabled?: boolean
45
46
  onlyBefore?: boolean
47
+ isProductSet?: boolean
46
48
  deadLineCategory?: string
47
49
  }) => {
48
50
  const { t } = useTranslation(['Design'])
@@ -140,10 +142,16 @@ export const SaleDeadline = ({
140
142
  <Switch
141
143
  name='sale-deadline'
142
144
  options={SALE_DEADLINES_EVENT_START_TYPES.map(
143
- ({ type }) => ({
144
- id: type,
145
- value: t(`Design:${type}`),
146
- }),
145
+ ({ type }) => {
146
+ const salesDeadlineTitle =
147
+ type === SALE_DEADLINE_BEFORE_TYPE && isProductSet
148
+ ? 'beforeProductSet'
149
+ : type
150
+ return {
151
+ id: type,
152
+ value: t(`Design:${salesDeadlineTitle}`),
153
+ }
154
+ },
147
155
  )}
148
156
  value={deadlineType}
149
157
  onChange={changeValueByType}
@@ -225,7 +225,7 @@ export function ProductSetControl({
225
225
  </>
226
226
  )}
227
227
 
228
- <SaleDeadline disabled={false} onlyBefore />
228
+ <SaleDeadline disabled={false} isProductSet />
229
229
 
230
230
  <div className='divider' />
231
231
 
package/yarn.lock CHANGED
@@ -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.5, @babel/compat-data@npm:^7.26.8":
54
+ "@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.8":
55
55
  version: 7.26.8
56
56
  resolution: "@babel/compat-data@npm:7.26.8"
57
57
  checksum: 10c0/66408a0388c3457fff1c2f6c3a061278dd7b3d2f0455ea29bb7b187fa52c60ae8b4054b3c0a184e21e45f0eaac63cf390737bc7504d1f4a088a6e7f652c068ca
@@ -105,16 +105,16 @@ __metadata:
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.10":
109
- version: 7.26.10
110
- resolution: "@babel/generator@npm:7.26.10"
108
+ "@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.26.10, @babel/generator@npm:^7.27.0":
109
+ version: 7.27.0
110
+ resolution: "@babel/generator@npm:7.27.0"
111
111
  dependencies:
112
- "@babel/parser": "npm:^7.26.10"
113
- "@babel/types": "npm:^7.26.10"
112
+ "@babel/parser": "npm:^7.27.0"
113
+ "@babel/types": "npm:^7.27.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/88b3b3ea80592fc89349c4e1a145e1386e4042866d2507298adf452bf972f68d13bf699a845e6ab8c028bd52c2247013eb1221b86e1db5c9779faacba9c4b10e
117
+ checksum: 10c0/7cb10693d2b365c278f109a745dc08856cae139d262748b77b70ce1d97da84627f79648cab6940d847392c0e5d180441669ed958b3aee98d9c7d274b37c553bd
118
118
  languageName: node
119
119
  linkType: hard
120
120
 
@@ -128,45 +128,45 @@ __metadata:
128
128
  linkType: hard
129
129
 
130
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
- version: 7.26.5
132
- resolution: "@babel/helper-compilation-targets@npm:7.26.5"
131
+ version: 7.27.0
132
+ resolution: "@babel/helper-compilation-targets@npm:7.27.0"
133
133
  dependencies:
134
- "@babel/compat-data": "npm:^7.26.5"
134
+ "@babel/compat-data": "npm:^7.26.8"
135
135
  "@babel/helper-validator-option": "npm:^7.25.9"
136
136
  browserslist: "npm:^4.24.0"
137
137
  lru-cache: "npm:^5.1.1"
138
138
  semver: "npm:^6.3.1"
139
- checksum: 10c0/9da5c77e5722f1a2fcb3e893049a01d414124522bbf51323bb1a0c9dcd326f15279836450fc36f83c9e8a846f3c40e88be032ed939c5a9840922bed6073edfb4
139
+ checksum: 10c0/375c9f80e6540118f41bd53dd54d670b8bf91235d631bdead44c8b313b26e9cd89aed5c6df770ad13a87a464497b5346bb72b9462ba690473da422f5402618b6
140
140
  languageName: node
141
141
  linkType: hard
142
142
 
143
- "@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.25.9":
144
- version: 7.26.9
145
- resolution: "@babel/helper-create-class-features-plugin@npm:7.26.9"
143
+ "@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.25.9, @babel/helper-create-class-features-plugin@npm:^7.27.0":
144
+ version: 7.27.0
145
+ resolution: "@babel/helper-create-class-features-plugin@npm:7.27.0"
146
146
  dependencies:
147
147
  "@babel/helper-annotate-as-pure": "npm:^7.25.9"
148
148
  "@babel/helper-member-expression-to-functions": "npm:^7.25.9"
149
149
  "@babel/helper-optimise-call-expression": "npm:^7.25.9"
150
150
  "@babel/helper-replace-supers": "npm:^7.26.5"
151
151
  "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9"
152
- "@babel/traverse": "npm:^7.26.9"
152
+ "@babel/traverse": "npm:^7.27.0"
153
153
  semver: "npm:^6.3.1"
154
154
  peerDependencies:
155
155
  "@babel/core": ^7.0.0
156
- checksum: 10c0/808620b350ac012f22163fd44c38ed8e05b24ce5d37bc4aa99a44e9724205f11efcef6b25ccfa5bb5de82ac32b899f1e939123c688f335d2851f4b8d70742233
156
+ checksum: 10c0/c4945903136d934050e070f69a4d72ec425f1f70634e0ddf14ad36695f935125a6df559f8d5b94cc1ed49abd4ce9c5be8ef3ba033fa8d09c5dd78d1a9b97d8cc
157
157
  languageName: node
158
158
  linkType: hard
159
159
 
160
160
  "@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.25.9":
161
- version: 7.26.3
162
- resolution: "@babel/helper-create-regexp-features-plugin@npm:7.26.3"
161
+ version: 7.27.0
162
+ resolution: "@babel/helper-create-regexp-features-plugin@npm:7.27.0"
163
163
  dependencies:
164
164
  "@babel/helper-annotate-as-pure": "npm:^7.25.9"
165
165
  regexpu-core: "npm:^6.2.0"
166
166
  semver: "npm:^6.3.1"
167
167
  peerDependencies:
168
168
  "@babel/core": ^7.0.0
169
- checksum: 10c0/266f30b99af621559467ed67634cb653408a9262930c0627c3d17691a9d477329fb4dabe4b1785cbf0490e892513d247836674271842d6a8da49fd0afae7d435
169
+ checksum: 10c0/62513522a43521d8a29285a47127694ec28d66d793cd156cf875cdee6a9b3a9a1626c43c1eb75ce18fa2bf5dc3140f0a8081a34feb24272ecf66084f3cc3b00a
170
170
  languageName: node
171
171
  linkType: hard
172
172
 
@@ -188,9 +188,9 @@ __metadata:
188
188
  languageName: node
189
189
  linkType: hard
190
190
 
191
- "@babel/helper-define-polyfill-provider@npm:^0.6.3":
192
- version: 0.6.3
193
- resolution: "@babel/helper-define-polyfill-provider@npm:0.6.3"
191
+ "@babel/helper-define-polyfill-provider@npm:^0.6.3, @babel/helper-define-polyfill-provider@npm:^0.6.4":
192
+ version: 0.6.4
193
+ resolution: "@babel/helper-define-polyfill-provider@npm:0.6.4"
194
194
  dependencies:
195
195
  "@babel/helper-compilation-targets": "npm:^7.22.6"
196
196
  "@babel/helper-plugin-utils": "npm:^7.22.5"
@@ -199,7 +199,7 @@ __metadata:
199
199
  resolve: "npm:^1.14.2"
200
200
  peerDependencies:
201
201
  "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
202
- checksum: 10c0/4320e3527645e98b6a0d5626fef815680e3b2b03ec36045de5e909b0f01546ab3674e96f50bf3bc8413f8c9037e5ee1a5f560ebdf8210426dad1c2c03c96184a
202
+ checksum: 10c0/b74f2b46e233a178618d19432bdae16e0137d0a603497ee901155e083c4a61f26fe01d79fb95d5f4c22131ade9d958d8f587088d412cca1302633587f070919d
203
203
  languageName: node
204
204
  linkType: hard
205
205
 
@@ -328,12 +328,12 @@ __metadata:
328
328
  linkType: hard
329
329
 
330
330
  "@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.26.10":
331
- version: 7.26.10
332
- resolution: "@babel/helpers@npm:7.26.10"
331
+ version: 7.27.0
332
+ resolution: "@babel/helpers@npm:7.27.0"
333
333
  dependencies:
334
- "@babel/template": "npm:^7.26.9"
335
- "@babel/types": "npm:^7.26.10"
336
- checksum: 10c0/f99e1836bcffce96db43158518bb4a24cf266820021f6461092a776cba2dc01d9fc8b1b90979d7643c5c2ab7facc438149064463a52dd528b21c6ab32509784f
334
+ "@babel/template": "npm:^7.27.0"
335
+ "@babel/types": "npm:^7.27.0"
336
+ checksum: 10c0/a3c64fd2d8b164c041808826cc00769d814074ea447daaacaf2e3714b66d3f4237ef6e420f61d08f463d6608f3468c2ac5124ab7c68f704e20384def5ade95f4
337
337
  languageName: node
338
338
  linkType: hard
339
339
 
@@ -349,14 +349,14 @@ __metadata:
349
349
  languageName: node
350
350
  linkType: hard
351
351
 
352
- "@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.11, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.26.10, @babel/parser@npm:^7.26.9":
353
- version: 7.26.10
354
- resolution: "@babel/parser@npm:7.26.10"
352
+ "@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.11, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.26.10, @babel/parser@npm:^7.27.0":
353
+ version: 7.27.0
354
+ resolution: "@babel/parser@npm:7.27.0"
355
355
  dependencies:
356
- "@babel/types": "npm:^7.26.10"
356
+ "@babel/types": "npm:^7.27.0"
357
357
  bin:
358
358
  parser: ./bin/babel-parser.js
359
- checksum: 10c0/c47f5c0f63cd12a663e9dc94a635f9efbb5059d98086a92286d7764357c66bceba18ccbe79333e01e9be3bfb8caba34b3aaebfd8e62c3d5921c8cf907267be75
359
+ checksum: 10c0/ba2ed3f41735826546a3ef2a7634a8d10351df221891906e59b29b0a0cd748f9b0e7a6f07576858a9de8e77785aad925c8389ddef146de04ea2842047c9d2859
360
360
  languageName: node
361
361
  linkType: hard
362
362
 
@@ -711,13 +711,13 @@ __metadata:
711
711
  linkType: hard
712
712
 
713
713
  "@babel/plugin-transform-block-scoping@npm:^7.12.12, @babel/plugin-transform-block-scoping@npm:^7.25.9":
714
- version: 7.25.9
715
- resolution: "@babel/plugin-transform-block-scoping@npm:7.25.9"
714
+ version: 7.27.0
715
+ resolution: "@babel/plugin-transform-block-scoping@npm:7.27.0"
716
716
  dependencies:
717
- "@babel/helper-plugin-utils": "npm:^7.25.9"
717
+ "@babel/helper-plugin-utils": "npm:^7.26.5"
718
718
  peerDependencies:
719
719
  "@babel/core": ^7.0.0-0
720
- checksum: 10c0/a76e30becb6c75b4d87a2cd53556fddb7c88ddd56bfadb965287fd944810ac159aa8eb5705366fc37336041f63154ed9fab3862fb10482a45bf5ede63fd55fda
720
+ checksum: 10c0/15a604fac04151a795ff3213c73ece06bda7cd5f7c8cb7a3b29563ab243f0b3f7cba9e6facfc9d70e3e63b21af32f9d26bd10ccc58e1c425c7801186014b5ce4
721
721
  languageName: node
722
722
  linkType: hard
723
723
 
@@ -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, @babel/plugin-transform-modules-commonjs@npm:^7.26.3":
948
+ "@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:
@@ -1206,14 +1206,14 @@ __metadata:
1206
1206
  linkType: hard
1207
1207
 
1208
1208
  "@babel/plugin-transform-regenerator@npm:^7.25.9":
1209
- version: 7.25.9
1210
- resolution: "@babel/plugin-transform-regenerator@npm:7.25.9"
1209
+ version: 7.27.0
1210
+ resolution: "@babel/plugin-transform-regenerator@npm:7.27.0"
1211
1211
  dependencies:
1212
- "@babel/helper-plugin-utils": "npm:^7.25.9"
1212
+ "@babel/helper-plugin-utils": "npm:^7.26.5"
1213
1213
  regenerator-transform: "npm:^0.15.2"
1214
1214
  peerDependencies:
1215
1215
  "@babel/core": ^7.0.0-0
1216
- checksum: 10c0/eef3ffc19f7d291b863635f32b896ad7f87806d9219a0d3404a470219abcfc5b43aabecd691026c48e875b965760d9c16abee25e6447272233f30cd07f453ec7
1216
+ checksum: 10c0/aa1c6a1592338df96034e0c3933d9c84d0ae25e9768413fda90d4896470192a11e2ab146dbcb92005c5059bbea67aea3d11936de8e4be382613efceafc9c92b5
1217
1217
  languageName: node
1218
1218
  linkType: hard
1219
1219
 
@@ -1286,28 +1286,28 @@ __metadata:
1286
1286
  linkType: hard
1287
1287
 
1288
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"
1289
+ version: 7.27.0
1290
+ resolution: "@babel/plugin-transform-typeof-symbol@npm:7.27.0"
1291
1291
  dependencies:
1292
1292
  "@babel/helper-plugin-utils": "npm:^7.26.5"
1293
1293
  peerDependencies:
1294
1294
  "@babel/core": ^7.0.0-0
1295
- checksum: 10c0/d5640e3457637e6eee1d7205d255602ccca124ed30e4de10ec75ba179d167e0a826ceeab424e119921f5c995dfddf39ef1f2c91efd2dcbf3f0dc1e7931dfd1d1
1295
+ checksum: 10c0/00adbd4e044166ac291978bd64173b4a0d36cbcfae3495a196816dd16ba889cc8b5becee232086241d714cd67a80c15742402504fc36f6db4f746a7dd8d2b1c4
1296
1296
  languageName: node
1297
1297
  linkType: hard
1298
1298
 
1299
- "@babel/plugin-transform-typescript@npm:^7.25.9":
1300
- version: 7.26.8
1301
- resolution: "@babel/plugin-transform-typescript@npm:7.26.8"
1299
+ "@babel/plugin-transform-typescript@npm:^7.27.0":
1300
+ version: 7.27.0
1301
+ resolution: "@babel/plugin-transform-typescript@npm:7.27.0"
1302
1302
  dependencies:
1303
1303
  "@babel/helper-annotate-as-pure": "npm:^7.25.9"
1304
- "@babel/helper-create-class-features-plugin": "npm:^7.25.9"
1304
+ "@babel/helper-create-class-features-plugin": "npm:^7.27.0"
1305
1305
  "@babel/helper-plugin-utils": "npm:^7.26.5"
1306
1306
  "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9"
1307
1307
  "@babel/plugin-syntax-typescript": "npm:^7.25.9"
1308
1308
  peerDependencies:
1309
1309
  "@babel/core": ^7.0.0-0
1310
- checksum: 10c0/c1dc02c357b8de0650d4e757fe71db9ac769b68e282a262ca5af2a7f1ff112c4533d54db6f1f58f13072ad547561b0461c46c08233566b37f778ac5f5550fb41
1310
+ checksum: 10c0/028e75dd6195495dc2d105ca8ded19d62aef90a215d597451cee57c35325960a87963913aa9a21b8ade190c638b588422292ea7e23b21565baf53c469254dbd4
1311
1311
  languageName: node
1312
1312
  linkType: hard
1313
1313
 
@@ -1480,17 +1480,17 @@ __metadata:
1480
1480
  linkType: hard
1481
1481
 
1482
1482
  "@babel/preset-typescript@npm:^7.12.7, @babel/preset-typescript@npm:^7.21.0":
1483
- version: 7.26.0
1484
- resolution: "@babel/preset-typescript@npm:7.26.0"
1483
+ version: 7.27.0
1484
+ resolution: "@babel/preset-typescript@npm:7.27.0"
1485
1485
  dependencies:
1486
- "@babel/helper-plugin-utils": "npm:^7.25.9"
1486
+ "@babel/helper-plugin-utils": "npm:^7.26.5"
1487
1487
  "@babel/helper-validator-option": "npm:^7.25.9"
1488
1488
  "@babel/plugin-syntax-jsx": "npm:^7.25.9"
1489
- "@babel/plugin-transform-modules-commonjs": "npm:^7.25.9"
1490
- "@babel/plugin-transform-typescript": "npm:^7.25.9"
1489
+ "@babel/plugin-transform-modules-commonjs": "npm:^7.26.3"
1490
+ "@babel/plugin-transform-typescript": "npm:^7.27.0"
1491
1491
  peerDependencies:
1492
1492
  "@babel/core": ^7.0.0-0
1493
- checksum: 10c0/20d86bc45d2bbfde2f84fc7d7b38746fa6481d4bde6643039ad4b1ff0b804c6d210ee43e6830effd8571f2ff43fa7ffd27369f42f2b3a2518bb92dc86c780c61
1493
+ checksum: 10c0/986b20edab3c18727d911a6e1a14095c1271afc6cc625b02f42b371f06c1e041e5d7c1baf2afe8b0029b60788a06f02fd6844dedfe54183b148ab9a7429438a9
1494
1494
  languageName: node
1495
1495
  linkType: hard
1496
1496
 
@@ -1510,57 +1510,57 @@ __metadata:
1510
1510
  linkType: hard
1511
1511
 
1512
1512
  "@babel/runtime-corejs3@npm:^7.10.2":
1513
- version: 7.26.10
1514
- resolution: "@babel/runtime-corejs3@npm:7.26.10"
1513
+ version: 7.27.0
1514
+ resolution: "@babel/runtime-corejs3@npm:7.27.0"
1515
1515
  dependencies:
1516
1516
  core-js-pure: "npm:^3.30.2"
1517
1517
  regenerator-runtime: "npm:^0.14.0"
1518
- checksum: 10c0/897b61d84809d6e63e08566d436cd08a3a78f218283641bb53533948d4bcd5524c6a1f83613e20485cf7fa8d054da20dd9039d17e06c92cf282f25d4d4f57250
1518
+ checksum: 10c0/eff7ad45e9edca218fe1c43341b1493b84f1d5682dc3e300cae8392b2f80a5601d4d4a25da2d8236df4fec669d168ff87e71672d2f306a1b4da7d46680977367
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.10
1524
- resolution: "@babel/runtime@npm:7.26.10"
1523
+ version: 7.27.0
1524
+ resolution: "@babel/runtime@npm:7.27.0"
1525
1525
  dependencies:
1526
1526
  regenerator-runtime: "npm:^0.14.0"
1527
- checksum: 10c0/6dc6d88c7908f505c4f7770fb4677dfa61f68f659b943c2be1f2a99cb6680343462867abf2d49822adc435932919b36c77ac60125793e719ea8745f2073d3745
1527
+ checksum: 10c0/35091ea9de48bd7fd26fb177693d64f4d195eb58ab2b142b893b7f3fa0f1d7c677604d36499ae0621a3703f35ba0c6a8f6c572cc8f7dc0317213841e493cf663
1528
1528
  languageName: node
1529
1529
  linkType: hard
1530
1530
 
1531
- "@babel/template@npm:^7.12.7, @babel/template@npm:^7.25.9, @babel/template@npm:^7.26.9":
1532
- version: 7.26.9
1533
- resolution: "@babel/template@npm:7.26.9"
1531
+ "@babel/template@npm:^7.12.7, @babel/template@npm:^7.25.9, @babel/template@npm:^7.26.9, @babel/template@npm:^7.27.0":
1532
+ version: 7.27.0
1533
+ resolution: "@babel/template@npm:7.27.0"
1534
1534
  dependencies:
1535
1535
  "@babel/code-frame": "npm:^7.26.2"
1536
- "@babel/parser": "npm:^7.26.9"
1537
- "@babel/types": "npm:^7.26.9"
1538
- checksum: 10c0/019b1c4129cc01ad63e17529089c2c559c74709d225f595eee017af227fee11ae8a97a6ab19ae6768b8aa22d8d75dcb60a00b28f52e9fa78140672d928bc1ae9
1536
+ "@babel/parser": "npm:^7.27.0"
1537
+ "@babel/types": "npm:^7.27.0"
1538
+ checksum: 10c0/13af543756127edb5f62bf121f9b093c09a2b6fe108373887ccffc701465cfbcb17e07cf48aa7f440415b263f6ec006e9415c79dfc2e8e6010b069435f81f340
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.10, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.26.8, @babel/traverse@npm:^7.26.9":
1543
- version: 7.26.10
1544
- resolution: "@babel/traverse@npm:7.26.10"
1542
+ "@babel/traverse@npm:^7.1.6, @babel/traverse@npm:^7.12.11, @babel/traverse@npm:^7.12.9, @babel/traverse@npm:^7.13.0, @babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.26.10, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.26.8, @babel/traverse@npm:^7.27.0":
1543
+ version: 7.27.0
1544
+ resolution: "@babel/traverse@npm:7.27.0"
1545
1545
  dependencies:
1546
1546
  "@babel/code-frame": "npm:^7.26.2"
1547
- "@babel/generator": "npm:^7.26.10"
1548
- "@babel/parser": "npm:^7.26.10"
1549
- "@babel/template": "npm:^7.26.9"
1550
- "@babel/types": "npm:^7.26.10"
1547
+ "@babel/generator": "npm:^7.27.0"
1548
+ "@babel/parser": "npm:^7.27.0"
1549
+ "@babel/template": "npm:^7.27.0"
1550
+ "@babel/types": "npm:^7.27.0"
1551
1551
  debug: "npm:^4.3.1"
1552
1552
  globals: "npm:^11.1.0"
1553
- checksum: 10c0/4e86bb4e3c30a6162bb91df86329df79d96566c3e2d9ccba04f108c30473a3a4fd360d9990531493d90f6a12004f10f616bf9b9229ca30c816b708615e9de2ac
1553
+ checksum: 10c0/c7af29781960dacaae51762e8bc6c4b13d6ab4b17312990fbca9fc38e19c4ad7fecaae24b1cf52fb844e8e6cdc76c70ad597f90e496bcb3cc0a1d66b41a0aa5b
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.10, @babel/types@npm:^7.26.9, @babel/types@npm:^7.4.4":
1558
- version: 7.26.10
1559
- resolution: "@babel/types@npm:7.26.10"
1557
+ "@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.11, @babel/types@npm:^7.12.7, @babel/types@npm:^7.2.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.10, @babel/types@npm:^7.27.0, @babel/types@npm:^7.4.4":
1558
+ version: 7.27.0
1559
+ resolution: "@babel/types@npm:7.27.0"
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/7a7f83f568bfc3dfabfaf9ae3a97ab5c061726c0afa7dcd94226d4f84a81559da368ed79671e3a8039d16f12476cf110381a377ebdea07587925f69628200dac
1563
+ checksum: 10c0/6f1592eabe243c89a608717b07b72969be9d9d2fce1dee21426238757ea1fa60fdfc09b29de9e48d8104311afc6e6fb1702565a9cc1e09bc1e76f2b2ddb0f6e1
1564
1564
  languageName: node
1565
1565
  linkType: hard
1566
1566
 
@@ -2481,9 +2481,9 @@ __metadata:
2481
2481
  languageName: node
2482
2482
  linkType: hard
2483
2483
 
2484
- "@licklist/core@npm:0.31.2-dev.14":
2485
- version: 0.31.2-dev.14
2486
- resolution: "@licklist/core@npm:0.31.2-dev.14"
2484
+ "@licklist/core@npm:0.31.2-dev.17":
2485
+ version: 0.31.2-dev.17
2486
+ resolution: "@licklist/core@npm:0.31.2-dev.17"
2487
2487
  dependencies:
2488
2488
  "@sentry/browser": "npm:6.2.0"
2489
2489
  axios: "npm:0.26.0"
@@ -2505,7 +2505,7 @@ __metadata:
2505
2505
  react-i18next: 11.8.8
2506
2506
  react-intl: 6.6.8
2507
2507
  zustand: 3.7.2
2508
- checksum: 10c0/dad613fdee795b1a1ef6435a89cbe46c4fd54fc3a76012e72d6637fa46b7084b306c40528963cde4a36b84bd722489feee628c4f59e1d8204583a1cd7cc756ac
2508
+ checksum: 10c0/4209b469bf40d42746696d50c5b9cfb36c511655361cf586772b3f2b9694fdb862708bc063b553538fda174cc76529b09ea7af58fe5131d36acaf831713c7ab6
2509
2509
  languageName: node
2510
2510
  linkType: hard
2511
2511
 
@@ -2520,7 +2520,7 @@ __metadata:
2520
2520
  "@dnd-kit/utilities": "npm:2.0.0"
2521
2521
  "@fortawesome/fontawesome-svg-core": "npm:1.2.34"
2522
2522
  "@fortawesome/free-solid-svg-icons": "npm:5.15.2"
2523
- "@licklist/core": "npm:0.31.2-dev.14"
2523
+ "@licklist/core": "npm:0.31.2-dev.17"
2524
2524
  "@licklist/eslint-config": "npm:0.5.6"
2525
2525
  "@licklist/plugins": "npm:0.35.1-dev.8"
2526
2526
  "@mantine/core": "npm:6.0.22"
@@ -2651,7 +2651,7 @@ __metadata:
2651
2651
  vite-plugin-svgr: "npm:4.2.0"
2652
2652
  vite-tsconfig-paths: "npm:5.0.1"
2653
2653
  peerDependencies:
2654
- "@licklist/core": 0.31.2-dev.16
2654
+ "@licklist/core": 0.31.2-dev.17
2655
2655
  "@licklist/eslint-config": 0.5.6
2656
2656
  "@licklist/plugins": 0.35.1-dev.8
2657
2657
  lodash: 4.17.21
@@ -3303,135 +3303,142 @@ __metadata:
3303
3303
  languageName: node
3304
3304
  linkType: hard
3305
3305
 
3306
- "@rollup/rollup-android-arm-eabi@npm:4.36.0":
3307
- version: 4.36.0
3308
- resolution: "@rollup/rollup-android-arm-eabi@npm:4.36.0"
3306
+ "@rollup/rollup-android-arm-eabi@npm:4.37.0":
3307
+ version: 4.37.0
3308
+ resolution: "@rollup/rollup-android-arm-eabi@npm:4.37.0"
3309
3309
  conditions: os=android & cpu=arm
3310
3310
  languageName: node
3311
3311
  linkType: hard
3312
3312
 
3313
- "@rollup/rollup-android-arm64@npm:4.36.0":
3314
- version: 4.36.0
3315
- resolution: "@rollup/rollup-android-arm64@npm:4.36.0"
3313
+ "@rollup/rollup-android-arm64@npm:4.37.0":
3314
+ version: 4.37.0
3315
+ resolution: "@rollup/rollup-android-arm64@npm:4.37.0"
3316
3316
  conditions: os=android & cpu=arm64
3317
3317
  languageName: node
3318
3318
  linkType: hard
3319
3319
 
3320
- "@rollup/rollup-darwin-arm64@npm:4.36.0":
3321
- version: 4.36.0
3322
- resolution: "@rollup/rollup-darwin-arm64@npm:4.36.0"
3320
+ "@rollup/rollup-darwin-arm64@npm:4.37.0":
3321
+ version: 4.37.0
3322
+ resolution: "@rollup/rollup-darwin-arm64@npm:4.37.0"
3323
3323
  conditions: os=darwin & cpu=arm64
3324
3324
  languageName: node
3325
3325
  linkType: hard
3326
3326
 
3327
- "@rollup/rollup-darwin-x64@npm:4.36.0":
3328
- version: 4.36.0
3329
- resolution: "@rollup/rollup-darwin-x64@npm:4.36.0"
3327
+ "@rollup/rollup-darwin-x64@npm:4.37.0":
3328
+ version: 4.37.0
3329
+ resolution: "@rollup/rollup-darwin-x64@npm:4.37.0"
3330
3330
  conditions: os=darwin & cpu=x64
3331
3331
  languageName: node
3332
3332
  linkType: hard
3333
3333
 
3334
- "@rollup/rollup-freebsd-arm64@npm:4.36.0":
3335
- version: 4.36.0
3336
- resolution: "@rollup/rollup-freebsd-arm64@npm:4.36.0"
3334
+ "@rollup/rollup-freebsd-arm64@npm:4.37.0":
3335
+ version: 4.37.0
3336
+ resolution: "@rollup/rollup-freebsd-arm64@npm:4.37.0"
3337
3337
  conditions: os=freebsd & cpu=arm64
3338
3338
  languageName: node
3339
3339
  linkType: hard
3340
3340
 
3341
- "@rollup/rollup-freebsd-x64@npm:4.36.0":
3342
- version: 4.36.0
3343
- resolution: "@rollup/rollup-freebsd-x64@npm:4.36.0"
3341
+ "@rollup/rollup-freebsd-x64@npm:4.37.0":
3342
+ version: 4.37.0
3343
+ resolution: "@rollup/rollup-freebsd-x64@npm:4.37.0"
3344
3344
  conditions: os=freebsd & cpu=x64
3345
3345
  languageName: node
3346
3346
  linkType: hard
3347
3347
 
3348
- "@rollup/rollup-linux-arm-gnueabihf@npm:4.36.0":
3349
- version: 4.36.0
3350
- resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.36.0"
3348
+ "@rollup/rollup-linux-arm-gnueabihf@npm:4.37.0":
3349
+ version: 4.37.0
3350
+ resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.37.0"
3351
3351
  conditions: os=linux & cpu=arm & libc=glibc
3352
3352
  languageName: node
3353
3353
  linkType: hard
3354
3354
 
3355
- "@rollup/rollup-linux-arm-musleabihf@npm:4.36.0":
3356
- version: 4.36.0
3357
- resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.36.0"
3355
+ "@rollup/rollup-linux-arm-musleabihf@npm:4.37.0":
3356
+ version: 4.37.0
3357
+ resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.37.0"
3358
3358
  conditions: os=linux & cpu=arm & libc=musl
3359
3359
  languageName: node
3360
3360
  linkType: hard
3361
3361
 
3362
- "@rollup/rollup-linux-arm64-gnu@npm:4.36.0":
3363
- version: 4.36.0
3364
- resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.36.0"
3362
+ "@rollup/rollup-linux-arm64-gnu@npm:4.37.0":
3363
+ version: 4.37.0
3364
+ resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.37.0"
3365
3365
  conditions: os=linux & cpu=arm64 & libc=glibc
3366
3366
  languageName: node
3367
3367
  linkType: hard
3368
3368
 
3369
- "@rollup/rollup-linux-arm64-musl@npm:4.36.0":
3370
- version: 4.36.0
3371
- resolution: "@rollup/rollup-linux-arm64-musl@npm:4.36.0"
3369
+ "@rollup/rollup-linux-arm64-musl@npm:4.37.0":
3370
+ version: 4.37.0
3371
+ resolution: "@rollup/rollup-linux-arm64-musl@npm:4.37.0"
3372
3372
  conditions: os=linux & cpu=arm64 & libc=musl
3373
3373
  languageName: node
3374
3374
  linkType: hard
3375
3375
 
3376
- "@rollup/rollup-linux-loongarch64-gnu@npm:4.36.0":
3377
- version: 4.36.0
3378
- resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.36.0"
3376
+ "@rollup/rollup-linux-loongarch64-gnu@npm:4.37.0":
3377
+ version: 4.37.0
3378
+ resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.37.0"
3379
3379
  conditions: os=linux & cpu=loong64 & libc=glibc
3380
3380
  languageName: node
3381
3381
  linkType: hard
3382
3382
 
3383
- "@rollup/rollup-linux-powerpc64le-gnu@npm:4.36.0":
3384
- version: 4.36.0
3385
- resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.36.0"
3383
+ "@rollup/rollup-linux-powerpc64le-gnu@npm:4.37.0":
3384
+ version: 4.37.0
3385
+ resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.37.0"
3386
3386
  conditions: os=linux & cpu=ppc64 & libc=glibc
3387
3387
  languageName: node
3388
3388
  linkType: hard
3389
3389
 
3390
- "@rollup/rollup-linux-riscv64-gnu@npm:4.36.0":
3391
- version: 4.36.0
3392
- resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.36.0"
3390
+ "@rollup/rollup-linux-riscv64-gnu@npm:4.37.0":
3391
+ version: 4.37.0
3392
+ resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.37.0"
3393
3393
  conditions: os=linux & cpu=riscv64 & libc=glibc
3394
3394
  languageName: node
3395
3395
  linkType: hard
3396
3396
 
3397
- "@rollup/rollup-linux-s390x-gnu@npm:4.36.0":
3398
- version: 4.36.0
3399
- resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.36.0"
3397
+ "@rollup/rollup-linux-riscv64-musl@npm:4.37.0":
3398
+ version: 4.37.0
3399
+ resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.37.0"
3400
+ conditions: os=linux & cpu=riscv64 & libc=musl
3401
+ languageName: node
3402
+ linkType: hard
3403
+
3404
+ "@rollup/rollup-linux-s390x-gnu@npm:4.37.0":
3405
+ version: 4.37.0
3406
+ resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.37.0"
3400
3407
  conditions: os=linux & cpu=s390x & libc=glibc
3401
3408
  languageName: node
3402
3409
  linkType: hard
3403
3410
 
3404
- "@rollup/rollup-linux-x64-gnu@npm:4.36.0":
3405
- version: 4.36.0
3406
- resolution: "@rollup/rollup-linux-x64-gnu@npm:4.36.0"
3411
+ "@rollup/rollup-linux-x64-gnu@npm:4.37.0":
3412
+ version: 4.37.0
3413
+ resolution: "@rollup/rollup-linux-x64-gnu@npm:4.37.0"
3407
3414
  conditions: os=linux & cpu=x64 & libc=glibc
3408
3415
  languageName: node
3409
3416
  linkType: hard
3410
3417
 
3411
- "@rollup/rollup-linux-x64-musl@npm:4.36.0":
3412
- version: 4.36.0
3413
- resolution: "@rollup/rollup-linux-x64-musl@npm:4.36.0"
3418
+ "@rollup/rollup-linux-x64-musl@npm:4.37.0":
3419
+ version: 4.37.0
3420
+ resolution: "@rollup/rollup-linux-x64-musl@npm:4.37.0"
3414
3421
  conditions: os=linux & cpu=x64 & libc=musl
3415
3422
  languageName: node
3416
3423
  linkType: hard
3417
3424
 
3418
- "@rollup/rollup-win32-arm64-msvc@npm:4.36.0":
3419
- version: 4.36.0
3420
- resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.36.0"
3425
+ "@rollup/rollup-win32-arm64-msvc@npm:4.37.0":
3426
+ version: 4.37.0
3427
+ resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.37.0"
3421
3428
  conditions: os=win32 & cpu=arm64
3422
3429
  languageName: node
3423
3430
  linkType: hard
3424
3431
 
3425
- "@rollup/rollup-win32-ia32-msvc@npm:4.36.0":
3426
- version: 4.36.0
3427
- resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.36.0"
3432
+ "@rollup/rollup-win32-ia32-msvc@npm:4.37.0":
3433
+ version: 4.37.0
3434
+ resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.37.0"
3428
3435
  conditions: os=win32 & cpu=ia32
3429
3436
  languageName: node
3430
3437
  linkType: hard
3431
3438
 
3432
- "@rollup/rollup-win32-x64-msvc@npm:4.36.0":
3433
- version: 4.36.0
3434
- resolution: "@rollup/rollup-win32-x64-msvc@npm:4.36.0"
3439
+ "@rollup/rollup-win32-x64-msvc@npm:4.37.0":
3440
+ version: 4.37.0
3441
+ resolution: "@rollup/rollup-win32-x64-msvc@npm:4.37.0"
3435
3442
  conditions: os=win32 & cpu=x64
3436
3443
  languageName: node
3437
3444
  linkType: hard
@@ -5094,11 +5101,11 @@ __metadata:
5094
5101
  linkType: hard
5095
5102
 
5096
5103
  "@swc/types@npm:^0.1.9":
5097
- version: 0.1.19
5098
- resolution: "@swc/types@npm:0.1.19"
5104
+ version: 0.1.20
5105
+ resolution: "@swc/types@npm:0.1.20"
5099
5106
  dependencies:
5100
5107
  "@swc/counter": "npm:^0.1.3"
5101
- checksum: 10c0/21b727d97d38f1bdbe9ef8fdf693bca19ebd5334ab32d7d2624a925d9adc8934935ad0f168cdbfd938b2f4b754a1fb7581f253bf47ab416177b6ac2c5c72578b
5108
+ checksum: 10c0/bc1e548516ed700c25e92459851a0a0bb4f7a1cecb786faf9ba60ed41ba4d13fd075191f98108dfacdb5e9d3d27913184ed698e1344c40b2748f49a15236c537
5102
5109
  languageName: node
5103
5110
  linkType: hard
5104
5111
 
@@ -5431,11 +5438,11 @@ __metadata:
5431
5438
  linkType: hard
5432
5439
 
5433
5440
  "@types/babel__traverse@npm:*":
5434
- version: 7.20.6
5435
- resolution: "@types/babel__traverse@npm:7.20.6"
5441
+ version: 7.20.7
5442
+ resolution: "@types/babel__traverse@npm:7.20.7"
5436
5443
  dependencies:
5437
5444
  "@babel/types": "npm:^7.20.7"
5438
- checksum: 10c0/7ba7db61a53e28cac955aa99af280d2600f15a8c056619c05b6fc911cbe02c61aa4f2823299221b23ce0cce00b294c0e5f618ec772aa3f247523c2e48cf7b888
5445
+ checksum: 10c0/5386f0af44f8746b063b87418f06129a814e16bb2686965a575e9d7376b360b088b89177778d8c426012abc43dd1a2d8ec3218bfc382280c898682746ce2ffbd
5439
5446
  languageName: node
5440
5447
  linkType: hard
5441
5448
 
@@ -5462,13 +5469,20 @@ __metadata:
5462
5469
  languageName: node
5463
5470
  linkType: hard
5464
5471
 
5465
- "@types/estree@npm:1.0.6, @types/estree@npm:^1.0.0":
5472
+ "@types/estree@npm:1.0.6":
5466
5473
  version: 1.0.6
5467
5474
  resolution: "@types/estree@npm:1.0.6"
5468
5475
  checksum: 10c0/cdfd751f6f9065442cd40957c07fd80361c962869aa853c1c2fd03e101af8b9389d8ff4955a43a6fcfa223dd387a089937f95be0f3eec21ca527039fd2d9859a
5469
5476
  languageName: node
5470
5477
  linkType: hard
5471
5478
 
5479
+ "@types/estree@npm:^1.0.0":
5480
+ version: 1.0.7
5481
+ resolution: "@types/estree@npm:1.0.7"
5482
+ checksum: 10c0/be815254316882f7c40847336cd484c3bc1c3e34f710d197160d455dc9d6d050ffbf4c3bc76585dba86f737f020ab20bdb137ebe0e9116b0c86c7c0342221b8c
5483
+ languageName: node
5484
+ linkType: hard
5485
+
5472
5486
  "@types/fs-extra@npm:^8.0.1":
5473
5487
  version: 8.1.5
5474
5488
  resolution: "@types/fs-extra@npm:8.1.5"
@@ -5692,11 +5706,11 @@ __metadata:
5692
5706
  linkType: hard
5693
5707
 
5694
5708
  "@types/node@npm:*":
5695
- version: 22.13.10
5696
- resolution: "@types/node@npm:22.13.10"
5709
+ version: 22.13.13
5710
+ resolution: "@types/node@npm:22.13.13"
5697
5711
  dependencies:
5698
5712
  undici-types: "npm:~6.20.0"
5699
- checksum: 10c0/a3865f9503d6f718002374f7b87efaadfae62faa499c1a33b12c527cfb9fd86f733e1a1b026b80c5a0e4a965701174bc3305595a7d36078aa1abcf09daa5dee9
5713
+ checksum: 10c0/daf792ba5dcff1316abf4b33680f94b792f8d54d6ae495efc8929531e0ba1284a248d29aab117d2259f9280284d986ad5799b193b0516e2b926d713aab835f7d
5700
5714
  languageName: node
5701
5715
  linkType: hard
5702
5716
 
@@ -5964,21 +5978,21 @@ __metadata:
5964
5978
  linkType: hard
5965
5979
 
5966
5980
  "@types/react@npm:*, @types/react@npm:>=16.14.8, @types/react@npm:>=16.9.11":
5967
- version: 19.0.10
5968
- resolution: "@types/react@npm:19.0.10"
5981
+ version: 19.0.12
5982
+ resolution: "@types/react@npm:19.0.12"
5969
5983
  dependencies:
5970
5984
  csstype: "npm:^3.0.2"
5971
- checksum: 10c0/41884cca21850c8b2d6578b172ca0ca4fff6021251a68532b19f2031ac23dc5a9222470208065f8d9985d367376047df2f49ece8d927f7d04cdc94922b1eb34b
5985
+ checksum: 10c0/c814b6af5c0fbcf5c65d031b1c9bf98c5b857e015254d95811f2851b27b869c3d31c6f35dab127dc6921a3dbda0b0622c6323d493a14b31b231a6a58c41c5e84
5972
5986
  languageName: node
5973
5987
  linkType: hard
5974
5988
 
5975
5989
  "@types/react@npm:16 || 17 || 18":
5976
- version: 18.3.18
5977
- resolution: "@types/react@npm:18.3.18"
5990
+ version: 18.3.20
5991
+ resolution: "@types/react@npm:18.3.20"
5978
5992
  dependencies:
5979
5993
  "@types/prop-types": "npm:*"
5980
5994
  csstype: "npm:^3.0.2"
5981
- checksum: 10c0/8fb2b00672072135d0858dc9db07873ea107cc238b6228aaa2a9afd1ef7a64a7074078250db38afbeb19064be8ea6af5eac32d404efdd5f45e093cc4829d87f8
5995
+ checksum: 10c0/65fa867c91357e4c4c646945c8b99044360f8973cb7f928ec4de115fe3207827985d45be236e6fd6c092b09f631c2126ce835c137be30718419e143d73300d8f
5982
5996
  languageName: node
5983
5997
  linkType: hard
5984
5998
 
@@ -5994,13 +6008,13 @@ __metadata:
5994
6008
  linkType: hard
5995
6009
 
5996
6010
  "@types/react@npm:^17":
5997
- version: 17.0.83
5998
- resolution: "@types/react@npm:17.0.83"
6011
+ version: 17.0.84
6012
+ resolution: "@types/react@npm:17.0.84"
5999
6013
  dependencies:
6000
6014
  "@types/prop-types": "npm:*"
6001
6015
  "@types/scheduler": "npm:^0.16"
6002
6016
  csstype: "npm:^3.0.2"
6003
- checksum: 10c0/c8f76790190a9df42099f5f78d08dd4095f2da3bd97ff7cce0001d5a97ff3ffb31f703575acf2c457606e0d0b229ca8d1ba0ff459b77a4e44c5ea5154fe3fb4b
6017
+ checksum: 10c0/58fd9608e3d315fe72adc6554dd7b89715c597449211345108a4fc2c261004f7770f99473ba0e82fde4e97b16c8c3bc9d3b3757d9230ef8a347f5b1d40870c93
6004
6018
  languageName: node
6005
6019
  linkType: hard
6006
6020
 
@@ -7422,15 +7436,15 @@ __metadata:
7422
7436
  linkType: hard
7423
7437
 
7424
7438
  "babel-plugin-polyfill-corejs2@npm:^0.4.10":
7425
- version: 0.4.12
7426
- resolution: "babel-plugin-polyfill-corejs2@npm:0.4.12"
7439
+ version: 0.4.13
7440
+ resolution: "babel-plugin-polyfill-corejs2@npm:0.4.13"
7427
7441
  dependencies:
7428
7442
  "@babel/compat-data": "npm:^7.22.6"
7429
- "@babel/helper-define-polyfill-provider": "npm:^0.6.3"
7443
+ "@babel/helper-define-polyfill-provider": "npm:^0.6.4"
7430
7444
  semver: "npm:^6.3.1"
7431
7445
  peerDependencies:
7432
7446
  "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
7433
- checksum: 10c0/49150c310de2d472ecb95bd892bca1aa833cf5e84bbb76e3e95cf9ff2c6c8c3b3783dd19d70ba50ff6235eb8ce1fa1c0affe491273c95a1ef6a2923f4d5a3819
7447
+ checksum: 10c0/b4a54561606d388e6f9499f39f03171af4be7f9ce2355e737135e40afa7086cf6790fdd706c2e59f488c8fa1f76123d28783708e07ddc84647dca8ed8fb98e06
7434
7448
  languageName: node
7435
7449
  linkType: hard
7436
7450
 
@@ -7459,13 +7473,13 @@ __metadata:
7459
7473
  linkType: hard
7460
7474
 
7461
7475
  "babel-plugin-polyfill-regenerator@npm:^0.6.1":
7462
- version: 0.6.3
7463
- resolution: "babel-plugin-polyfill-regenerator@npm:0.6.3"
7476
+ version: 0.6.4
7477
+ resolution: "babel-plugin-polyfill-regenerator@npm:0.6.4"
7464
7478
  dependencies:
7465
- "@babel/helper-define-polyfill-provider": "npm:^0.6.3"
7479
+ "@babel/helper-define-polyfill-provider": "npm:^0.6.4"
7466
7480
  peerDependencies:
7467
7481
  "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
7468
- checksum: 10c0/40164432e058e4b5c6d56feecacdad22692ae0534bd80c92d5399ed9e1a6a2b6797c8fda837995daddd4ca391f9aa2d58c74ad465164922e0f73631eaf9c4f76
7482
+ checksum: 10c0/ebaaf9e4e53201c02f496d3f686d815e94177b3e55b35f11223b99c60d197a29f907a2e87bbcccced8b7aff22a807fccc1adaf04722864a8e1862c8845ab830a
7469
7483
  languageName: node
7470
7484
  linkType: hard
7471
7485
 
@@ -8101,9 +8115,9 @@ __metadata:
8101
8115
  linkType: hard
8102
8116
 
8103
8117
  "caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001109, caniuse-lite@npm:^1.0.30001125, caniuse-lite@npm:^1.0.30001646, caniuse-lite@npm:^1.0.30001688":
8104
- version: 1.0.30001705
8105
- resolution: "caniuse-lite@npm:1.0.30001705"
8106
- checksum: 10c0/f135a9075e36cc28a66a8f37145dca2bdc45ea18fd9fae2569e781e0f7156962d4fcac374640aa6421a70c6e8d23587bf9386f5561a1fe81bbbf36055b807243
8118
+ version: 1.0.30001707
8119
+ resolution: "caniuse-lite@npm:1.0.30001707"
8120
+ checksum: 10c0/a1beaf84bad4f6617bbc5616d6bc0c9cab73e73f7e9e09b6466af5195b1bc393e0f6f19643d7a1c88bd3f4bfa122d7bea81cf6225ec3ade57d5b1dd3478c1a1b
8107
8121
  languageName: node
8108
8122
  linkType: hard
8109
8123
 
@@ -9890,9 +9904,9 @@ __metadata:
9890
9904
  linkType: hard
9891
9905
 
9892
9906
  "electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.73":
9893
- version: 1.5.119
9894
- resolution: "electron-to-chromium@npm:1.5.119"
9895
- checksum: 10c0/f4ca0eb3af21d16d2c1fd480c5a43428ce4423ca887338d69bd3eadae818b6d6e799c62b1baac1bc4f76e4226f5fb15a6b0dc8965f601ac053e86508d3e8e41c
9907
+ version: 1.5.124
9908
+ resolution: "electron-to-chromium@npm:1.5.124"
9909
+ checksum: 10c0/f27de21f8763836daf5593bbedb8b78f41e88519aa27d3232e9f3e34b0a0fd5aee9cc37a31c3a36d2fa32291827738e996e866ad8ceb479e4c45bc0ee396ecba
9896
9910
  languageName: node
9897
9911
  linkType: hard
9898
9912
 
@@ -12292,9 +12306,9 @@ __metadata:
12292
12306
  linkType: hard
12293
12307
 
12294
12308
  "html-entities@npm:^2.1.0":
12295
- version: 2.5.2
12296
- resolution: "html-entities@npm:2.5.2"
12297
- checksum: 10c0/f20ffb4326606245c439c231de40a7c560607f639bf40ffbfb36b4c70729fd95d7964209045f1a4e62fe17f2364cef3d6e49b02ea09016f207fde51c2211e481
12309
+ version: 2.5.3
12310
+ resolution: "html-entities@npm:2.5.3"
12311
+ checksum: 10c0/313b0550926b56ccb46c0df4db63e743e565f222e6a8bc97d848d8c9bb51a2c0ff3c724856675032b5c2a9a757c9ab68019956c52e60dd9836d554cdde5bbbc3
12298
12312
  languageName: node
12299
12313
  linkType: hard
12300
12314
 
@@ -14548,9 +14562,9 @@ __metadata:
14548
14562
  linkType: hard
14549
14563
 
14550
14564
  "mime-db@npm:>= 1.43.0 < 2":
14551
- version: 1.53.0
14552
- resolution: "mime-db@npm:1.53.0"
14553
- checksum: 10c0/1dcc37ba8ed5d1c179f5c6f0837e8db19371d5f2ea3690c3c2f3fa8c3858f976851d3460b172b4dee78ebd606762cbb407aa398545fbacd539e519f858cd7bf4
14565
+ version: 1.54.0
14566
+ resolution: "mime-db@npm:1.54.0"
14567
+ checksum: 10c0/8d907917bc2a90fa2df842cdf5dfeaf509adc15fe0531e07bb2f6ab15992416479015828d6a74200041c492e42cce3ebf78e5ce714388a0a538ea9c53eece284
14554
14568
  languageName: node
14555
14569
  linkType: hard
14556
14570
 
@@ -14967,11 +14981,11 @@ __metadata:
14967
14981
  linkType: hard
14968
14982
 
14969
14983
  "nanoid@npm:^3.3.7, nanoid@npm:^3.3.8":
14970
- version: 3.3.10
14971
- resolution: "nanoid@npm:3.3.10"
14984
+ version: 3.3.11
14985
+ resolution: "nanoid@npm:3.3.11"
14972
14986
  bin:
14973
14987
  nanoid: bin/nanoid.cjs
14974
- checksum: 10c0/34eca53d4d95cb538b05a9fa07e4b2ab941906852202edb00824c8004d71d34592704e40b0ae608bf756b1ffd91ff9359d2ea59f8d92e1a7b769e0ca46368e84
14988
+ checksum: 10c0/40e7f70b3d15f725ca072dfc4f74e81fcf1fbb02e491cf58ac0c79093adc9b0a73b152bcde57df4b79cd097e13023d7504acb38404a4da7bc1cd8e887b82fe0b
14975
14989
  languageName: node
14976
14990
  linkType: hard
14977
14991
 
@@ -16955,12 +16969,12 @@ __metadata:
16955
16969
  linkType: hard
16956
16970
 
16957
16971
  "prosemirror-inputrules@npm:^1.2.0":
16958
- version: 1.4.0
16959
- resolution: "prosemirror-inputrules@npm:1.4.0"
16972
+ version: 1.5.0
16973
+ resolution: "prosemirror-inputrules@npm:1.5.0"
16960
16974
  dependencies:
16961
16975
  prosemirror-state: "npm:^1.0.0"
16962
16976
  prosemirror-transform: "npm:^1.0.0"
16963
- checksum: 10c0/8ec72b6c2982bbd9fd378e51d67c6424119d081a4dcdeff430ab58055596cf67b691a890f46f135746f4de9bc6a6afb6ef1c0596df13bd633997e32ba0a25ddf
16977
+ checksum: 10c0/5d69b8b148c530ddcf5b99d448e8e8fd60c088da2de222838d2a0b63c7c92476ad09a434859e42b96291130f6fda48fa9a0824534c9b6fc6d15bb302f6359730
16964
16978
  languageName: node
16965
16979
  linkType: hard
16966
16980
 
@@ -16975,13 +16989,13 @@ __metadata:
16975
16989
  linkType: hard
16976
16990
 
16977
16991
  "prosemirror-markdown@npm:^1.10.1":
16978
- version: 1.13.1
16979
- resolution: "prosemirror-markdown@npm:1.13.1"
16992
+ version: 1.13.2
16993
+ resolution: "prosemirror-markdown@npm:1.13.2"
16980
16994
  dependencies:
16981
16995
  "@types/markdown-it": "npm:^14.0.0"
16982
16996
  markdown-it: "npm:^14.0.0"
16983
- prosemirror-model: "npm:^1.20.0"
16984
- checksum: 10c0/518cad5d4e7b1c1b2abf43995c837392b76b9f7757e814de42885a20d427dfaa2308be6fea39828ae65225a768976cb914825f78138850a282b06ba571aaea3d
16997
+ prosemirror-model: "npm:^1.25.0"
16998
+ checksum: 10c0/53c48ef0d0d18ca0a7c39bdb18485508bfe10582f9b1d04d7114e6f6e9678a4481b318f310b19d4e95f65d947fbe6348affddcb909ad9b8c9f865cc07ceff22b
16985
16999
  languageName: node
16986
17000
  linkType: hard
16987
17001
 
@@ -16997,21 +17011,21 @@ __metadata:
16997
17011
  languageName: node
16998
17012
  linkType: hard
16999
17013
 
17000
- "prosemirror-model@npm:^1.0.0, prosemirror-model@npm:^1.16.1, prosemirror-model@npm:^1.18.1, prosemirror-model@npm:^1.19.0, prosemirror-model@npm:^1.20.0, prosemirror-model@npm:^1.21.0, prosemirror-model@npm:^1.24.1":
17001
- version: 1.24.1
17002
- resolution: "prosemirror-model@npm:1.24.1"
17014
+ "prosemirror-model@npm:^1.0.0, prosemirror-model@npm:^1.16.1, prosemirror-model@npm:^1.18.1, prosemirror-model@npm:^1.20.0, prosemirror-model@npm:^1.21.0, prosemirror-model@npm:^1.24.1, prosemirror-model@npm:^1.25.0":
17015
+ version: 1.25.0
17016
+ resolution: "prosemirror-model@npm:1.25.0"
17003
17017
  dependencies:
17004
17018
  orderedmap: "npm:^2.0.0"
17005
- checksum: 10c0/d09e1aac3cbd451e6a8f3927df487869b1ce0b7f21836c0c6966d401f4ab2d5984988f74d3ff98c72484a78498b9c0c3ad62cf2a06ac869664f1820c97313054
17019
+ checksum: 10c0/5845436dfa4da6334622942d3487a6b48c1fb1be0379432733d804a6889c3fcdaf9737eb7b625c7041df56664580fad6c153d4e698778051f19e7f73afcef7b8
17006
17020
  languageName: node
17007
17021
  linkType: hard
17008
17022
 
17009
17023
  "prosemirror-schema-basic@npm:^1.2.0":
17010
- version: 1.2.3
17011
- resolution: "prosemirror-schema-basic@npm:1.2.3"
17024
+ version: 1.2.4
17025
+ resolution: "prosemirror-schema-basic@npm:1.2.4"
17012
17026
  dependencies:
17013
- prosemirror-model: "npm:^1.19.0"
17014
- checksum: 10c0/99bac902ccf046e2dd165a3c124c6458be8041f3e4322f64fd9d37e6ee164e0d4284cc17691734665a62431f35045798cf417b7d174aa1af6dc2a48dc51468ac
17027
+ prosemirror-model: "npm:^1.25.0"
17028
+ checksum: 10c0/cd86f88a5eb51ab5459aa91e6824e73ec15b0f1546fee89be7826663663ef11eefaacacda5a14c43b4c8d8477fd653642418b9c7d485bb92e323f9b8e7607a78
17015
17029
  languageName: node
17016
17030
  linkType: hard
17017
17031
 
@@ -18930,28 +18944,29 @@ __metadata:
18930
18944
  linkType: hard
18931
18945
 
18932
18946
  "rollup@npm:^4.13.0":
18933
- version: 4.36.0
18934
- resolution: "rollup@npm:4.36.0"
18935
- dependencies:
18936
- "@rollup/rollup-android-arm-eabi": "npm:4.36.0"
18937
- "@rollup/rollup-android-arm64": "npm:4.36.0"
18938
- "@rollup/rollup-darwin-arm64": "npm:4.36.0"
18939
- "@rollup/rollup-darwin-x64": "npm:4.36.0"
18940
- "@rollup/rollup-freebsd-arm64": "npm:4.36.0"
18941
- "@rollup/rollup-freebsd-x64": "npm:4.36.0"
18942
- "@rollup/rollup-linux-arm-gnueabihf": "npm:4.36.0"
18943
- "@rollup/rollup-linux-arm-musleabihf": "npm:4.36.0"
18944
- "@rollup/rollup-linux-arm64-gnu": "npm:4.36.0"
18945
- "@rollup/rollup-linux-arm64-musl": "npm:4.36.0"
18946
- "@rollup/rollup-linux-loongarch64-gnu": "npm:4.36.0"
18947
- "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.36.0"
18948
- "@rollup/rollup-linux-riscv64-gnu": "npm:4.36.0"
18949
- "@rollup/rollup-linux-s390x-gnu": "npm:4.36.0"
18950
- "@rollup/rollup-linux-x64-gnu": "npm:4.36.0"
18951
- "@rollup/rollup-linux-x64-musl": "npm:4.36.0"
18952
- "@rollup/rollup-win32-arm64-msvc": "npm:4.36.0"
18953
- "@rollup/rollup-win32-ia32-msvc": "npm:4.36.0"
18954
- "@rollup/rollup-win32-x64-msvc": "npm:4.36.0"
18947
+ version: 4.37.0
18948
+ resolution: "rollup@npm:4.37.0"
18949
+ dependencies:
18950
+ "@rollup/rollup-android-arm-eabi": "npm:4.37.0"
18951
+ "@rollup/rollup-android-arm64": "npm:4.37.0"
18952
+ "@rollup/rollup-darwin-arm64": "npm:4.37.0"
18953
+ "@rollup/rollup-darwin-x64": "npm:4.37.0"
18954
+ "@rollup/rollup-freebsd-arm64": "npm:4.37.0"
18955
+ "@rollup/rollup-freebsd-x64": "npm:4.37.0"
18956
+ "@rollup/rollup-linux-arm-gnueabihf": "npm:4.37.0"
18957
+ "@rollup/rollup-linux-arm-musleabihf": "npm:4.37.0"
18958
+ "@rollup/rollup-linux-arm64-gnu": "npm:4.37.0"
18959
+ "@rollup/rollup-linux-arm64-musl": "npm:4.37.0"
18960
+ "@rollup/rollup-linux-loongarch64-gnu": "npm:4.37.0"
18961
+ "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.37.0"
18962
+ "@rollup/rollup-linux-riscv64-gnu": "npm:4.37.0"
18963
+ "@rollup/rollup-linux-riscv64-musl": "npm:4.37.0"
18964
+ "@rollup/rollup-linux-s390x-gnu": "npm:4.37.0"
18965
+ "@rollup/rollup-linux-x64-gnu": "npm:4.37.0"
18966
+ "@rollup/rollup-linux-x64-musl": "npm:4.37.0"
18967
+ "@rollup/rollup-win32-arm64-msvc": "npm:4.37.0"
18968
+ "@rollup/rollup-win32-ia32-msvc": "npm:4.37.0"
18969
+ "@rollup/rollup-win32-x64-msvc": "npm:4.37.0"
18955
18970
  "@types/estree": "npm:1.0.6"
18956
18971
  fsevents: "npm:~2.3.2"
18957
18972
  dependenciesMeta:
@@ -18981,6 +18996,8 @@ __metadata:
18981
18996
  optional: true
18982
18997
  "@rollup/rollup-linux-riscv64-gnu":
18983
18998
  optional: true
18999
+ "@rollup/rollup-linux-riscv64-musl":
19000
+ optional: true
18984
19001
  "@rollup/rollup-linux-s390x-gnu":
18985
19002
  optional: true
18986
19003
  "@rollup/rollup-linux-x64-gnu":
@@ -18997,7 +19014,7 @@ __metadata:
18997
19014
  optional: true
18998
19015
  bin:
18999
19016
  rollup: dist/bin/rollup
19000
- checksum: 10c0/52ad34ba18edb3613253ecbc7db5c8d6067ed103d8786051e96d42bcb383f7473bbda91b25297435b8a531fe308726cf1bb978456b9fcce044e4885510d73252
19017
+ checksum: 10c0/2e00382e08938636edfe0a7547ea2eaa027205dc0b6ff85d8b82be0fbe55a4ef88a1995fee2a5059e33dbccf12d1376c236825353afb89c96298cc95c5160a46
19001
19018
  languageName: node
19002
19019
  linkType: hard
19003
19020