@licklist/design 0.78.7-stage.1 → 0.78.7-stage.10

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.
@@ -5,7 +5,7 @@ var cartSumByOrderProducts = function(param) {
5
5
  }
6
6
  return orderProducts.reduce(function(prevSumValue, product) {
7
7
  if (!product) return 0;
8
- var modifiersPrice = calculateTotalModifiersPrice(product === null || product === void 0 ? void 0 : product.orderModifiersSets);
8
+ var modifiersPrice = calculateTotalModifiersPrice(product === null || product === void 0 ? void 0 : product.orderModifiersSets) || 0;
9
9
  var price = isTotalSum ? product === null || product === void 0 ? void 0 : product.price : product.hasDeposit ? product === null || product === void 0 ? void 0 : product.deposit : product === null || product === void 0 ? void 0 : product.price;
10
10
  return prevSumValue + price * product.quantity + modifiersPrice;
11
11
  }, 0);
@@ -213,12 +213,8 @@ var PaymentPage = function(_param) {
213
213
  }),
214
214
  footer: /*#__PURE__*/ jsx("div", {
215
215
  className: "d-flex flex-column justify-content-between",
216
- children: paymentMetadata ? /*#__PURE__*/ jsxs(Fragment, {
216
+ children: (paymentMetadata === null || paymentMetadata === void 0 ? void 0 : paymentMetadata.total) ? /*#__PURE__*/ jsxs(Fragment, {
217
217
  children: [
218
- /*#__PURE__*/ jsx(SummaryTotalBlock, {
219
- label: t('total'),
220
- amount: paymentMetadata.total || 0
221
- }),
222
218
  /*#__PURE__*/ jsx(SummaryTotalBlock, {
223
219
  label: t('paidSum'),
224
220
  amount: paymentMetadata.paid || 0
@@ -230,15 +226,15 @@ var PaymentPage = function(_param) {
230
226
  ]
231
227
  }) : /*#__PURE__*/ jsxs(Fragment, {
232
228
  children: [
233
- isCalculatedAmountGreaterThanOrderAmount && /*#__PURE__*/ jsx(SummaryTotalBlock, {
229
+ !!isCalculatedAmountGreaterThanOrderAmount && /*#__PURE__*/ jsx(SummaryTotalBlock, {
234
230
  label: t(hasRemaingToPay ? 'payNow' : 'total'),
235
231
  amount: orderCartAmountByFormValues + ((bookingSummaryProps === null || bookingSummaryProps === void 0 ? void 0 : bookingSummaryProps.transactionFee) || 0)
236
232
  }),
237
- hasRemaingToPay && /*#__PURE__*/ jsx(SummaryTotalBlock, {
233
+ !!hasRemaingToPay && /*#__PURE__*/ jsx(SummaryTotalBlock, {
238
234
  label: t('remaining'),
239
235
  amount: orderTotalAmountByFormValues - orderCartAmountByFormValues
240
236
  }),
241
- isPaymentLinkWithRemainingToPay && /*#__PURE__*/ jsx(SummaryTotalBlock, {
237
+ !!isPaymentLinkWithRemainingToPay && /*#__PURE__*/ jsx(SummaryTotalBlock, {
242
238
  label: t('remaningToPay'),
243
239
  amount: Number(data === null || data === void 0 ? void 0 : data.remaining_to_pay)
244
240
  }),
@@ -198,7 +198,7 @@ var ryftErrorMap = {
198
198
  };
199
199
  var RyftPaymentForm = function(param) {
200
200
  var accountId = param.accountId, isCreateLoading = param.isCreateLoading, isAppUsingInIframe = param.isAppUsingInIframe, providerPaymentSettings = param.providerPaymentSettings, onApplePayButtonClick = param.onApplePayButtonClick, initRyft = param.initRyft, resetReferrer = param.resetReferrer, onSubmit = param.onSubmit, payButtonDisabled = param.payButtonDisabled;
201
- var _formRef_current_childNodes, _formRef_current, _accountId_data;
201
+ var _formRef_current_childNodes, _formRef_current, _formRef_current_childNodes1, _formRef_current1, _accountId_data;
202
202
  var t = useTranslation([
203
203
  'Design',
204
204
  'Validation',
@@ -302,9 +302,11 @@ var RyftPaymentForm = function(param) {
302
302
  return _ref.apply(this, arguments);
303
303
  };
304
304
  }();
305
+ console.log((_formRef_current = formRef.current) === null || _formRef_current === void 0 ? void 0 : (_formRef_current_childNodes = _formRef_current.childNodes) === null || _formRef_current_childNodes === void 0 ? void 0 : _formRef_current_childNodes.length, "formRef.current?.childNodes?.length ");
305
306
  useEffect(function() {
306
- var _formRef_current_childNodes, _formRef_current, _formRef_current_childNodes1, _formRef_current1, _accountId_data;
307
- if (!((_formRef_current = formRef.current) === null || _formRef_current === void 0 ? void 0 : (_formRef_current_childNodes = _formRef_current.childNodes) === null || _formRef_current_childNodes === void 0 ? void 0 : _formRef_current_childNodes.length) || ((_formRef_current1 = formRef.current) === null || _formRef_current1 === void 0 ? void 0 : (_formRef_current_childNodes1 = _formRef_current1.childNodes) === null || _formRef_current_childNodes1 === void 0 ? void 0 : _formRef_current_childNodes1.length) < 3 || !((_accountId_data = accountId.data) === null || _accountId_data === void 0 ? void 0 : _accountId_data.account_id)) {
307
+ var _formRef_current_childNodes, _formRef_current, _accountId_data;
308
+ if (!((_formRef_current = formRef.current) === null || _formRef_current === void 0 ? void 0 : (_formRef_current_childNodes = _formRef_current.childNodes) === null || _formRef_current_childNodes === void 0 ? void 0 : _formRef_current_childNodes.length) || // formRef.current?.childNodes?.length < 3 ||
309
+ !((_accountId_data = accountId.data) === null || _accountId_data === void 0 ? void 0 : _accountId_data.account_id)) {
308
310
  return;
309
311
  }
310
312
  injectComponentsInRyftForm({
@@ -316,7 +318,7 @@ var RyftPaymentForm = function(param) {
316
318
  });
317
319
  }, // eslint-disable-next-line react-hooks/exhaustive-deps
318
320
  [
319
- (_formRef_current = formRef.current) === null || _formRef_current === void 0 ? void 0 : (_formRef_current_childNodes = _formRef_current.childNodes) === null || _formRef_current_childNodes === void 0 ? void 0 : _formRef_current_childNodes.length,
321
+ (_formRef_current1 = formRef.current) === null || _formRef_current1 === void 0 ? void 0 : (_formRef_current_childNodes1 = _formRef_current1.childNodes) === null || _formRef_current_childNodes1 === void 0 ? void 0 : _formRef_current_childNodes1.length,
320
322
  showApplePayButton,
321
323
  payButtonDisabled
322
324
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@licklist/design",
3
- "version": "0.78.7-stage.1",
3
+ "version": "0.78.7-stage.10",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
@@ -19,8 +19,8 @@ export const cartSumByOrderProducts = ({
19
19
  if (!product) return 0
20
20
  const modifiersPrice = calculateTotalModifiersPrice(
21
21
  product?.orderModifiersSets,
22
- )
23
-
22
+ ) || 0
23
+
24
24
  const price = isTotalSum
25
25
  ? product?.price
26
26
  : product.hasDeposit
@@ -166,12 +166,12 @@ export const PaymentPage = ({
166
166
  headerComponent={<SummaryTotalBlock amount={totalBooked} />}
167
167
  footer={
168
168
  <div className='d-flex flex-column justify-content-between'>
169
- {paymentMetadata ? (
169
+ {paymentMetadata?.total ? (
170
170
  <>
171
- <SummaryTotalBlock
171
+ {/* <SummaryTotalBlock
172
172
  label={t('total')}
173
173
  amount={paymentMetadata.total || 0}
174
- />
174
+ /> */}
175
175
  <SummaryTotalBlock
176
176
  label={t('paidSum')}
177
177
  amount={paymentMetadata.paid || 0}
@@ -185,7 +185,7 @@ export const PaymentPage = ({
185
185
  </>
186
186
  ) : (
187
187
  <>
188
- {isCalculatedAmountGreaterThanOrderAmount && (
188
+ {!!isCalculatedAmountGreaterThanOrderAmount && (
189
189
  <SummaryTotalBlock
190
190
  label={t(hasRemaingToPay ? 'payNow' : 'total')}
191
191
  amount={
@@ -195,7 +195,7 @@ export const PaymentPage = ({
195
195
  />
196
196
  )}
197
197
 
198
- {hasRemaingToPay && (
198
+ {!!hasRemaingToPay && (
199
199
  <SummaryTotalBlock
200
200
  label={t('remaining')}
201
201
  amount={
@@ -205,7 +205,7 @@ export const PaymentPage = ({
205
205
  />
206
206
  )}
207
207
 
208
- {isPaymentLinkWithRemainingToPay && (
208
+ {!!isPaymentLinkWithRemainingToPay && (
209
209
  <SummaryTotalBlock
210
210
  label={t('remaningToPay')}
211
211
  amount={Number(data?.remaining_to_pay)}
@@ -134,12 +134,12 @@ export const RyftPaymentForm = ({
134
134
  setIsBtnDisabled(false)
135
135
  }
136
136
  }
137
-
137
+ console.log(formRef.current?.childNodes?.length , "formRef.current?.childNodes?.length ")
138
138
  useEffect(
139
139
  () => {
140
140
  if (
141
141
  !formRef.current?.childNodes?.length ||
142
- formRef.current?.childNodes?.length < 3 ||
142
+ // formRef.current?.childNodes?.length < 3 ||
143
143
  !accountId.data?.account_id
144
144
  ) {
145
145
  return
package/yarn.lock CHANGED
@@ -2425,7 +2425,7 @@ __metadata:
2425
2425
  languageName: node
2426
2426
  linkType: hard
2427
2427
 
2428
- "@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15, @jridgewell/sourcemap-codec@npm:^1.5.0":
2428
+ "@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15, @jridgewell/sourcemap-codec@npm:^1.5.0, @jridgewell/sourcemap-codec@npm:^1.5.5":
2429
2429
  version: 1.5.5
2430
2430
  resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
2431
2431
  checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0
@@ -3172,11 +3172,11 @@ __metadata:
3172
3172
  linkType: hard
3173
3173
 
3174
3174
  "@react-types/shared@npm:^3.9.0":
3175
- version: 3.31.0
3176
- resolution: "@react-types/shared@npm:3.31.0"
3175
+ version: 3.32.0
3176
+ resolution: "@react-types/shared@npm:3.32.0"
3177
3177
  peerDependencies:
3178
3178
  react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
3179
- checksum: 10c0/6944eba44a5bc390a0c4136f9bdcc8caee8408bba2d1b90160ae7397b9455efb3f28864a796c15e26132b522a60c389a7f0cf67674d64aec2947601962d3e4d6
3179
+ checksum: 10c0/8484f310a8911ab01daa87f9bfdea0a9a76e152d13d8421c28560dc84d64a7df23cda956db59f7010d2e8eaea27d7644118bfbe60b603499903b5f7e6cdfe4fa
3180
3180
  languageName: node
3181
3181
  linkType: hard
3182
3182
 
@@ -3280,142 +3280,142 @@ __metadata:
3280
3280
  languageName: node
3281
3281
  linkType: hard
3282
3282
 
3283
- "@rollup/rollup-android-arm-eabi@npm:4.47.1":
3284
- version: 4.47.1
3285
- resolution: "@rollup/rollup-android-arm-eabi@npm:4.47.1"
3283
+ "@rollup/rollup-android-arm-eabi@npm:4.49.0":
3284
+ version: 4.49.0
3285
+ resolution: "@rollup/rollup-android-arm-eabi@npm:4.49.0"
3286
3286
  conditions: os=android & cpu=arm
3287
3287
  languageName: node
3288
3288
  linkType: hard
3289
3289
 
3290
- "@rollup/rollup-android-arm64@npm:4.47.1":
3291
- version: 4.47.1
3292
- resolution: "@rollup/rollup-android-arm64@npm:4.47.1"
3290
+ "@rollup/rollup-android-arm64@npm:4.49.0":
3291
+ version: 4.49.0
3292
+ resolution: "@rollup/rollup-android-arm64@npm:4.49.0"
3293
3293
  conditions: os=android & cpu=arm64
3294
3294
  languageName: node
3295
3295
  linkType: hard
3296
3296
 
3297
- "@rollup/rollup-darwin-arm64@npm:4.47.1":
3298
- version: 4.47.1
3299
- resolution: "@rollup/rollup-darwin-arm64@npm:4.47.1"
3297
+ "@rollup/rollup-darwin-arm64@npm:4.49.0":
3298
+ version: 4.49.0
3299
+ resolution: "@rollup/rollup-darwin-arm64@npm:4.49.0"
3300
3300
  conditions: os=darwin & cpu=arm64
3301
3301
  languageName: node
3302
3302
  linkType: hard
3303
3303
 
3304
- "@rollup/rollup-darwin-x64@npm:4.47.1":
3305
- version: 4.47.1
3306
- resolution: "@rollup/rollup-darwin-x64@npm:4.47.1"
3304
+ "@rollup/rollup-darwin-x64@npm:4.49.0":
3305
+ version: 4.49.0
3306
+ resolution: "@rollup/rollup-darwin-x64@npm:4.49.0"
3307
3307
  conditions: os=darwin & cpu=x64
3308
3308
  languageName: node
3309
3309
  linkType: hard
3310
3310
 
3311
- "@rollup/rollup-freebsd-arm64@npm:4.47.1":
3312
- version: 4.47.1
3313
- resolution: "@rollup/rollup-freebsd-arm64@npm:4.47.1"
3311
+ "@rollup/rollup-freebsd-arm64@npm:4.49.0":
3312
+ version: 4.49.0
3313
+ resolution: "@rollup/rollup-freebsd-arm64@npm:4.49.0"
3314
3314
  conditions: os=freebsd & cpu=arm64
3315
3315
  languageName: node
3316
3316
  linkType: hard
3317
3317
 
3318
- "@rollup/rollup-freebsd-x64@npm:4.47.1":
3319
- version: 4.47.1
3320
- resolution: "@rollup/rollup-freebsd-x64@npm:4.47.1"
3318
+ "@rollup/rollup-freebsd-x64@npm:4.49.0":
3319
+ version: 4.49.0
3320
+ resolution: "@rollup/rollup-freebsd-x64@npm:4.49.0"
3321
3321
  conditions: os=freebsd & cpu=x64
3322
3322
  languageName: node
3323
3323
  linkType: hard
3324
3324
 
3325
- "@rollup/rollup-linux-arm-gnueabihf@npm:4.47.1":
3326
- version: 4.47.1
3327
- resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.47.1"
3325
+ "@rollup/rollup-linux-arm-gnueabihf@npm:4.49.0":
3326
+ version: 4.49.0
3327
+ resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.49.0"
3328
3328
  conditions: os=linux & cpu=arm & libc=glibc
3329
3329
  languageName: node
3330
3330
  linkType: hard
3331
3331
 
3332
- "@rollup/rollup-linux-arm-musleabihf@npm:4.47.1":
3333
- version: 4.47.1
3334
- resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.47.1"
3332
+ "@rollup/rollup-linux-arm-musleabihf@npm:4.49.0":
3333
+ version: 4.49.0
3334
+ resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.49.0"
3335
3335
  conditions: os=linux & cpu=arm & libc=musl
3336
3336
  languageName: node
3337
3337
  linkType: hard
3338
3338
 
3339
- "@rollup/rollup-linux-arm64-gnu@npm:4.47.1":
3340
- version: 4.47.1
3341
- resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.47.1"
3339
+ "@rollup/rollup-linux-arm64-gnu@npm:4.49.0":
3340
+ version: 4.49.0
3341
+ resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.49.0"
3342
3342
  conditions: os=linux & cpu=arm64 & libc=glibc
3343
3343
  languageName: node
3344
3344
  linkType: hard
3345
3345
 
3346
- "@rollup/rollup-linux-arm64-musl@npm:4.47.1":
3347
- version: 4.47.1
3348
- resolution: "@rollup/rollup-linux-arm64-musl@npm:4.47.1"
3346
+ "@rollup/rollup-linux-arm64-musl@npm:4.49.0":
3347
+ version: 4.49.0
3348
+ resolution: "@rollup/rollup-linux-arm64-musl@npm:4.49.0"
3349
3349
  conditions: os=linux & cpu=arm64 & libc=musl
3350
3350
  languageName: node
3351
3351
  linkType: hard
3352
3352
 
3353
- "@rollup/rollup-linux-loongarch64-gnu@npm:4.47.1":
3354
- version: 4.47.1
3355
- resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.47.1"
3353
+ "@rollup/rollup-linux-loongarch64-gnu@npm:4.49.0":
3354
+ version: 4.49.0
3355
+ resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.49.0"
3356
3356
  conditions: os=linux & cpu=loong64 & libc=glibc
3357
3357
  languageName: node
3358
3358
  linkType: hard
3359
3359
 
3360
- "@rollup/rollup-linux-ppc64-gnu@npm:4.47.1":
3361
- version: 4.47.1
3362
- resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.47.1"
3360
+ "@rollup/rollup-linux-ppc64-gnu@npm:4.49.0":
3361
+ version: 4.49.0
3362
+ resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.49.0"
3363
3363
  conditions: os=linux & cpu=ppc64 & libc=glibc
3364
3364
  languageName: node
3365
3365
  linkType: hard
3366
3366
 
3367
- "@rollup/rollup-linux-riscv64-gnu@npm:4.47.1":
3368
- version: 4.47.1
3369
- resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.47.1"
3367
+ "@rollup/rollup-linux-riscv64-gnu@npm:4.49.0":
3368
+ version: 4.49.0
3369
+ resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.49.0"
3370
3370
  conditions: os=linux & cpu=riscv64 & libc=glibc
3371
3371
  languageName: node
3372
3372
  linkType: hard
3373
3373
 
3374
- "@rollup/rollup-linux-riscv64-musl@npm:4.47.1":
3375
- version: 4.47.1
3376
- resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.47.1"
3374
+ "@rollup/rollup-linux-riscv64-musl@npm:4.49.0":
3375
+ version: 4.49.0
3376
+ resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.49.0"
3377
3377
  conditions: os=linux & cpu=riscv64 & libc=musl
3378
3378
  languageName: node
3379
3379
  linkType: hard
3380
3380
 
3381
- "@rollup/rollup-linux-s390x-gnu@npm:4.47.1":
3382
- version: 4.47.1
3383
- resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.47.1"
3381
+ "@rollup/rollup-linux-s390x-gnu@npm:4.49.0":
3382
+ version: 4.49.0
3383
+ resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.49.0"
3384
3384
  conditions: os=linux & cpu=s390x & libc=glibc
3385
3385
  languageName: node
3386
3386
  linkType: hard
3387
3387
 
3388
- "@rollup/rollup-linux-x64-gnu@npm:4.47.1":
3389
- version: 4.47.1
3390
- resolution: "@rollup/rollup-linux-x64-gnu@npm:4.47.1"
3388
+ "@rollup/rollup-linux-x64-gnu@npm:4.49.0":
3389
+ version: 4.49.0
3390
+ resolution: "@rollup/rollup-linux-x64-gnu@npm:4.49.0"
3391
3391
  conditions: os=linux & cpu=x64 & libc=glibc
3392
3392
  languageName: node
3393
3393
  linkType: hard
3394
3394
 
3395
- "@rollup/rollup-linux-x64-musl@npm:4.47.1":
3396
- version: 4.47.1
3397
- resolution: "@rollup/rollup-linux-x64-musl@npm:4.47.1"
3395
+ "@rollup/rollup-linux-x64-musl@npm:4.49.0":
3396
+ version: 4.49.0
3397
+ resolution: "@rollup/rollup-linux-x64-musl@npm:4.49.0"
3398
3398
  conditions: os=linux & cpu=x64 & libc=musl
3399
3399
  languageName: node
3400
3400
  linkType: hard
3401
3401
 
3402
- "@rollup/rollup-win32-arm64-msvc@npm:4.47.1":
3403
- version: 4.47.1
3404
- resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.47.1"
3402
+ "@rollup/rollup-win32-arm64-msvc@npm:4.49.0":
3403
+ version: 4.49.0
3404
+ resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.49.0"
3405
3405
  conditions: os=win32 & cpu=arm64
3406
3406
  languageName: node
3407
3407
  linkType: hard
3408
3408
 
3409
- "@rollup/rollup-win32-ia32-msvc@npm:4.47.1":
3410
- version: 4.47.1
3411
- resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.47.1"
3409
+ "@rollup/rollup-win32-ia32-msvc@npm:4.49.0":
3410
+ version: 4.49.0
3411
+ resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.49.0"
3412
3412
  conditions: os=win32 & cpu=ia32
3413
3413
  languageName: node
3414
3414
  linkType: hard
3415
3415
 
3416
- "@rollup/rollup-win32-x64-msvc@npm:4.47.1":
3417
- version: 4.47.1
3418
- resolution: "@rollup/rollup-win32-x64-msvc@npm:4.47.1"
3416
+ "@rollup/rollup-win32-x64-msvc@npm:4.49.0":
3417
+ version: 4.49.0
3418
+ resolution: "@rollup/rollup-win32-x64-msvc@npm:4.49.0"
3419
3419
  conditions: os=win32 & cpu=x64
3420
3420
  languageName: node
3421
3421
  linkType: hard
@@ -6201,26 +6201,26 @@ __metadata:
6201
6201
  languageName: node
6202
6202
  linkType: hard
6203
6203
 
6204
- "@vue/compiler-core@npm:3.5.19":
6205
- version: 3.5.19
6206
- resolution: "@vue/compiler-core@npm:3.5.19"
6204
+ "@vue/compiler-core@npm:3.5.20":
6205
+ version: 3.5.20
6206
+ resolution: "@vue/compiler-core@npm:3.5.20"
6207
6207
  dependencies:
6208
6208
  "@babel/parser": "npm:^7.28.3"
6209
- "@vue/shared": "npm:3.5.19"
6209
+ "@vue/shared": "npm:3.5.20"
6210
6210
  entities: "npm:^4.5.0"
6211
6211
  estree-walker: "npm:^2.0.2"
6212
6212
  source-map-js: "npm:^1.2.1"
6213
- checksum: 10c0/8a2c2f0f64ad3958194b48045f17df928c0f1fd44925694860768c74b8afd4a24a8b70271314fe41afcedb7a668caa072e75371eea6fc8151f900c6f1e34f246
6213
+ checksum: 10c0/46df48882ad2b67bc7bbdabf68a518bad9234afe8d71d4a0ecf569b4d6ea9dcb545b9bac3232655912ea89e96d19332e66f41a64dff3b21bbd876666b5b2ebcc
6214
6214
  languageName: node
6215
6215
  linkType: hard
6216
6216
 
6217
6217
  "@vue/compiler-dom@npm:^3.4.0":
6218
- version: 3.5.19
6219
- resolution: "@vue/compiler-dom@npm:3.5.19"
6218
+ version: 3.5.20
6219
+ resolution: "@vue/compiler-dom@npm:3.5.20"
6220
6220
  dependencies:
6221
- "@vue/compiler-core": "npm:3.5.19"
6222
- "@vue/shared": "npm:3.5.19"
6223
- checksum: 10c0/79a37ec7125cfa7f051978acae364f33586327154101fb40b2c497b1255db23f7becd84288afd9e2129f8f646a735a7b1c31500d3583198acd80b1bbd2380c1a
6221
+ "@vue/compiler-core": "npm:3.5.20"
6222
+ "@vue/shared": "npm:3.5.20"
6223
+ checksum: 10c0/2e68209b35e28a18cf1af520e58d1253185956d2331bda523b9aae577f1cca3684c81446408857e27efe0af044c3b8065e6f1e121622d43379353e8cb00335d8
6224
6224
  languageName: node
6225
6225
  linkType: hard
6226
6226
 
@@ -6255,10 +6255,10 @@ __metadata:
6255
6255
  languageName: node
6256
6256
  linkType: hard
6257
6257
 
6258
- "@vue/shared@npm:3.5.19, @vue/shared@npm:^3.4.0":
6259
- version: 3.5.19
6260
- resolution: "@vue/shared@npm:3.5.19"
6261
- checksum: 10c0/7580ad76d38e802c12879b5d6fc349f22357a5c723e759dc422781adbbe796f1286695701b5c0066331dfbc7dcf3e43869065cadb7f2b1561f635fb1d50e9c21
6258
+ "@vue/shared@npm:3.5.20, @vue/shared@npm:^3.4.0":
6259
+ version: 3.5.20
6260
+ resolution: "@vue/shared@npm:3.5.20"
6261
+ checksum: 10c0/b05062904d8d70cd1eafe3b9ae1243f569390bba67ca7b2b2c2b3166e6cc2c182d466bd245d8c6f8effc6e6c58bd60711578dbd8741eeb4c68b8964dde4618c5
6262
6262
  languageName: node
6263
6263
  linkType: hard
6264
6264
 
@@ -6550,7 +6550,7 @@ __metadata:
6550
6550
  languageName: node
6551
6551
  linkType: hard
6552
6552
 
6553
- "acorn@npm:^8.14.0, acorn@npm:^8.5.0":
6553
+ "acorn@npm:^8.14.0, acorn@npm:^8.15.0, acorn@npm:^8.5.0":
6554
6554
  version: 8.15.0
6555
6555
  resolution: "acorn@npm:8.15.0"
6556
6556
  bin:
@@ -8050,9 +8050,9 @@ __metadata:
8050
8050
  linkType: hard
8051
8051
 
8052
8052
  "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.30001735":
8053
- version: 1.0.30001736
8054
- resolution: "caniuse-lite@npm:1.0.30001736"
8055
- checksum: 10c0/6375c37fcde3dcb2ec26f329abcd7b7171ed1fdac5ed87cfbd028a0bf2b92d3ca89ec5e6b1274c84055a1c996e4f5deb37f899ce1ff860579e8adf1eef681b31
8053
+ version: 1.0.30001737
8054
+ resolution: "caniuse-lite@npm:1.0.30001737"
8055
+ checksum: 10c0/9d9cfe3b46fe670d171cee10c5c1b0fb641946fd5d6bea26149f804003d53d82ade7ef5a4a640fb3a0eaec47c7839b57e06a6ddae4f0ad2cd58e1187d31997ce
8056
8056
  languageName: node
8057
8057
  linkType: hard
8058
8058
 
@@ -9097,15 +9097,15 @@ __metadata:
9097
9097
  linkType: hard
9098
9098
 
9099
9099
  "cssnano-preset-default@npm:^7.0.6":
9100
- version: 7.0.8
9101
- resolution: "cssnano-preset-default@npm:7.0.8"
9100
+ version: 7.0.9
9101
+ resolution: "cssnano-preset-default@npm:7.0.9"
9102
9102
  dependencies:
9103
9103
  browserslist: "npm:^4.25.1"
9104
9104
  css-declaration-sorter: "npm:^7.2.0"
9105
9105
  cssnano-utils: "npm:^5.0.1"
9106
9106
  postcss-calc: "npm:^10.1.1"
9107
9107
  postcss-colormin: "npm:^7.0.4"
9108
- postcss-convert-values: "npm:^7.0.6"
9108
+ postcss-convert-values: "npm:^7.0.7"
9109
9109
  postcss-discard-comments: "npm:^7.0.4"
9110
9110
  postcss-discard-duplicates: "npm:^7.0.2"
9111
9111
  postcss-discard-empty: "npm:^7.0.1"
@@ -9132,7 +9132,7 @@ __metadata:
9132
9132
  postcss-unique-selectors: "npm:^7.0.4"
9133
9133
  peerDependencies:
9134
9134
  postcss: ^8.4.32
9135
- checksum: 10c0/5776ec82842bd721e7848144574772f63549e81a96b5155b8293925bd91f2aca95ef149e21ac22de3c21ccd9981e9e6035f27850daf9199e4930831d6c314771
9135
+ checksum: 10c0/5590f751596a8f782418a9dc72b8f365a9d53d3e42e606d9ce1db5f8ad74daee044b880e228565c36bfe701094738fa04f4f4429ad34087580d1e84b2a7b7ff9
9136
9136
  languageName: node
9137
9137
  linkType: hard
9138
9138
 
@@ -9875,9 +9875,9 @@ __metadata:
9875
9875
  linkType: hard
9876
9876
 
9877
9877
  "electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.204":
9878
- version: 1.5.207
9879
- resolution: "electron-to-chromium@npm:1.5.207"
9880
- checksum: 10c0/33de5f996fcfdb7c7fcedfc76e9e36ed33f2b7a3136b1bbc5eae38f2b0441fbd114843511a46c80aaf21b9586d812fe469ff7f948c5cda0808038c69c4f76298
9878
+ version: 1.5.209
9879
+ resolution: "electron-to-chromium@npm:1.5.209"
9880
+ checksum: 10c0/ec857aeecf85769310889926d55cf4032f93b213733e68b4bc48eab72e42e190f9f1a2694c8c175435cbd111dfdee420e1e1ffe5b2bd46b2f33324580e938f2c
9881
9881
  languageName: node
9882
9882
  linkType: hard
9883
9883
 
@@ -10978,9 +10978,9 @@ __metadata:
10978
10978
  linkType: hard
10979
10979
 
10980
10980
  "fast-uri@npm:^3.0.1":
10981
- version: 3.0.6
10982
- resolution: "fast-uri@npm:3.0.6"
10983
- checksum: 10c0/74a513c2af0584448aee71ce56005185f81239eab7a2343110e5bad50c39ad4fb19c5a6f99783ead1cac7ccaf3461a6034fda89fffa2b30b6d99b9f21c2f9d29
10981
+ version: 3.1.0
10982
+ resolution: "fast-uri@npm:3.1.0"
10983
+ checksum: 10c0/44364adca566f70f40d1e9b772c923138d47efeac2ae9732a872baafd77061f26b097ba2f68f0892885ad177becd065520412b8ffeec34b16c99433c5b9e2de7
10984
10984
  languageName: node
10985
10985
  linkType: hard
10986
10986
 
@@ -13814,9 +13814,9 @@ __metadata:
13814
13814
  linkType: hard
13815
13815
 
13816
13816
  "libphonenumber-js@npm:^1.9.11":
13817
- version: 1.12.13
13818
- resolution: "libphonenumber-js@npm:1.12.13"
13819
- checksum: 10c0/ddffcb8879d125e30889268aeb793a7a5b79c7297807b6b89fbd2e6c9b6f4c62127cc25e698f7f87960e17e34ac1d210cedba2486dc8c7a01916e74a7e45cce1
13817
+ version: 1.12.14
13818
+ resolution: "libphonenumber-js@npm:1.12.14"
13819
+ checksum: 10c0/1e2317965156abc24af74c13ffdb1f260de61b2c8635a4d11203a038ce419aedd0040b009884427e8ffe6bd33b4b02f407f27f09c4f1f8e56bcc089378685b2e
13820
13820
  languageName: node
13821
13821
  linkType: hard
13822
13822
 
@@ -14144,11 +14144,11 @@ __metadata:
14144
14144
  linkType: hard
14145
14145
 
14146
14146
  "magic-string@npm:^0.30.11, magic-string@npm:^0.30.5":
14147
- version: 0.30.17
14148
- resolution: "magic-string@npm:0.30.17"
14147
+ version: 0.30.18
14148
+ resolution: "magic-string@npm:0.30.18"
14149
14149
  dependencies:
14150
- "@jridgewell/sourcemap-codec": "npm:^1.5.0"
14151
- checksum: 10c0/16826e415d04b88378f200fe022b53e638e3838b9e496edda6c0e086d7753a44a6ed187adc72d19f3623810589bf139af1a315541cd6a26ae0771a0193eaf7b8
14150
+ "@jridgewell/sourcemap-codec": "npm:^1.5.5"
14151
+ checksum: 10c0/80fba01e13ce1f5c474a0498a5aa462fa158eb56567310747089a0033e432d83a2021ee2c109ac116010cd9dcf90a5231d89fbe3858165f73c00a50a74dbefcd
14152
14152
  languageName: node
14153
14153
  linkType: hard
14154
14154
 
@@ -14853,14 +14853,14 @@ __metadata:
14853
14853
  linkType: hard
14854
14854
 
14855
14855
  "mlly@npm:^1.7.3, mlly@npm:^1.7.4":
14856
- version: 1.7.4
14857
- resolution: "mlly@npm:1.7.4"
14856
+ version: 1.8.0
14857
+ resolution: "mlly@npm:1.8.0"
14858
14858
  dependencies:
14859
- acorn: "npm:^8.14.0"
14860
- pathe: "npm:^2.0.1"
14861
- pkg-types: "npm:^1.3.0"
14862
- ufo: "npm:^1.5.4"
14863
- checksum: 10c0/69e738218a13d6365caf930e0ab4e2b848b84eec261597df9788cefb9930f3e40667be9cb58a4718834ba5f97a6efeef31d3b5a95f4388143fd4e0d0deff72ff
14859
+ acorn: "npm:^8.15.0"
14860
+ pathe: "npm:^2.0.3"
14861
+ pkg-types: "npm:^1.3.1"
14862
+ ufo: "npm:^1.6.1"
14863
+ checksum: 10c0/f174b844ae066c71e9b128046677868e2e28694f0bbeeffbe760b2a9d8ff24de0748d0fde6fabe706700c1d2e11d3c0d7a53071b5ea99671592fac03364604ab
14864
14864
  languageName: node
14865
14865
  linkType: hard
14866
14866
 
@@ -15081,8 +15081,8 @@ __metadata:
15081
15081
  linkType: hard
15082
15082
 
15083
15083
  "node-gyp@npm:latest":
15084
- version: 11.4.1
15085
- resolution: "node-gyp@npm:11.4.1"
15084
+ version: 11.4.2
15085
+ resolution: "node-gyp@npm:11.4.2"
15086
15086
  dependencies:
15087
15087
  env-paths: "npm:^2.2.0"
15088
15088
  exponential-backoff: "npm:^3.1.1"
@@ -15096,7 +15096,7 @@ __metadata:
15096
15096
  which: "npm:^5.0.0"
15097
15097
  bin:
15098
15098
  node-gyp: bin/node-gyp.js
15099
- checksum: 10c0/475d5c51ef44cee15668df4ad2946e92ad66397adaae4f695afc080ea7a8812c8d93341c1eabe42a46ee615bbde90123b548c7f61388be48c6b0bbc5ea9c53fe
15099
+ checksum: 10c0/0bfd3e96770ed70f07798d881dd37b4267708966d868a0e585986baac487d9cf5831285579fd629a83dc4e434f53e6416ce301097f2ee464cb74d377e4d8bdbe
15100
15100
  languageName: node
15101
15101
  linkType: hard
15102
15102
 
@@ -15893,7 +15893,7 @@ __metadata:
15893
15893
  languageName: node
15894
15894
  linkType: hard
15895
15895
 
15896
- "pathe@npm:^2.0.1":
15896
+ "pathe@npm:^2.0.1, pathe@npm:^2.0.3":
15897
15897
  version: 2.0.3
15898
15898
  resolution: "pathe@npm:2.0.3"
15899
15899
  checksum: 10c0/c118dc5a8b5c4166011b2b70608762e260085180bb9e33e80a50dcdb1e78c010b1624f4280c492c92b05fc276715a4c357d1f9edc570f8f1b3d90b6839ebaca1
@@ -16004,7 +16004,7 @@ __metadata:
16004
16004
  languageName: node
16005
16005
  linkType: hard
16006
16006
 
16007
- "pkg-types@npm:^1.2.1, pkg-types@npm:^1.3.0":
16007
+ "pkg-types@npm:^1.2.1, pkg-types@npm:^1.3.1":
16008
16008
  version: 1.3.1
16009
16009
  resolution: "pkg-types@npm:1.3.1"
16010
16010
  dependencies:
@@ -16094,15 +16094,15 @@ __metadata:
16094
16094
  languageName: node
16095
16095
  linkType: hard
16096
16096
 
16097
- "postcss-convert-values@npm:^7.0.6":
16098
- version: 7.0.6
16099
- resolution: "postcss-convert-values@npm:7.0.6"
16097
+ "postcss-convert-values@npm:^7.0.7":
16098
+ version: 7.0.7
16099
+ resolution: "postcss-convert-values@npm:7.0.7"
16100
16100
  dependencies:
16101
16101
  browserslist: "npm:^4.25.1"
16102
16102
  postcss-value-parser: "npm:^4.2.0"
16103
16103
  peerDependencies:
16104
16104
  postcss: ^8.4.32
16105
- checksum: 10c0/8245d45abdbdc13897b4995b4b30a59f22ae9b16ec6fa8f2bf81eb234a451003ad3cb7bb375e68a64135c85d4246ca07f285331b1044b69f5c5908ca7936c3f2
16105
+ checksum: 10c0/b50c3d6bdda07597514a09c7d320c721244026ac78d86a27bc40e2153753cf28caeae007ec5dee219ac008ed127e2c62cfe1c01fa4ab77003b3fabdbd1074808
16106
16106
  languageName: node
16107
16107
  linkType: hard
16108
16108
 
@@ -18891,29 +18891,29 @@ __metadata:
18891
18891
  linkType: hard
18892
18892
 
18893
18893
  "rollup@npm:^4.13.0":
18894
- version: 4.47.1
18895
- resolution: "rollup@npm:4.47.1"
18896
- dependencies:
18897
- "@rollup/rollup-android-arm-eabi": "npm:4.47.1"
18898
- "@rollup/rollup-android-arm64": "npm:4.47.1"
18899
- "@rollup/rollup-darwin-arm64": "npm:4.47.1"
18900
- "@rollup/rollup-darwin-x64": "npm:4.47.1"
18901
- "@rollup/rollup-freebsd-arm64": "npm:4.47.1"
18902
- "@rollup/rollup-freebsd-x64": "npm:4.47.1"
18903
- "@rollup/rollup-linux-arm-gnueabihf": "npm:4.47.1"
18904
- "@rollup/rollup-linux-arm-musleabihf": "npm:4.47.1"
18905
- "@rollup/rollup-linux-arm64-gnu": "npm:4.47.1"
18906
- "@rollup/rollup-linux-arm64-musl": "npm:4.47.1"
18907
- "@rollup/rollup-linux-loongarch64-gnu": "npm:4.47.1"
18908
- "@rollup/rollup-linux-ppc64-gnu": "npm:4.47.1"
18909
- "@rollup/rollup-linux-riscv64-gnu": "npm:4.47.1"
18910
- "@rollup/rollup-linux-riscv64-musl": "npm:4.47.1"
18911
- "@rollup/rollup-linux-s390x-gnu": "npm:4.47.1"
18912
- "@rollup/rollup-linux-x64-gnu": "npm:4.47.1"
18913
- "@rollup/rollup-linux-x64-musl": "npm:4.47.1"
18914
- "@rollup/rollup-win32-arm64-msvc": "npm:4.47.1"
18915
- "@rollup/rollup-win32-ia32-msvc": "npm:4.47.1"
18916
- "@rollup/rollup-win32-x64-msvc": "npm:4.47.1"
18894
+ version: 4.49.0
18895
+ resolution: "rollup@npm:4.49.0"
18896
+ dependencies:
18897
+ "@rollup/rollup-android-arm-eabi": "npm:4.49.0"
18898
+ "@rollup/rollup-android-arm64": "npm:4.49.0"
18899
+ "@rollup/rollup-darwin-arm64": "npm:4.49.0"
18900
+ "@rollup/rollup-darwin-x64": "npm:4.49.0"
18901
+ "@rollup/rollup-freebsd-arm64": "npm:4.49.0"
18902
+ "@rollup/rollup-freebsd-x64": "npm:4.49.0"
18903
+ "@rollup/rollup-linux-arm-gnueabihf": "npm:4.49.0"
18904
+ "@rollup/rollup-linux-arm-musleabihf": "npm:4.49.0"
18905
+ "@rollup/rollup-linux-arm64-gnu": "npm:4.49.0"
18906
+ "@rollup/rollup-linux-arm64-musl": "npm:4.49.0"
18907
+ "@rollup/rollup-linux-loongarch64-gnu": "npm:4.49.0"
18908
+ "@rollup/rollup-linux-ppc64-gnu": "npm:4.49.0"
18909
+ "@rollup/rollup-linux-riscv64-gnu": "npm:4.49.0"
18910
+ "@rollup/rollup-linux-riscv64-musl": "npm:4.49.0"
18911
+ "@rollup/rollup-linux-s390x-gnu": "npm:4.49.0"
18912
+ "@rollup/rollup-linux-x64-gnu": "npm:4.49.0"
18913
+ "@rollup/rollup-linux-x64-musl": "npm:4.49.0"
18914
+ "@rollup/rollup-win32-arm64-msvc": "npm:4.49.0"
18915
+ "@rollup/rollup-win32-ia32-msvc": "npm:4.49.0"
18916
+ "@rollup/rollup-win32-x64-msvc": "npm:4.49.0"
18917
18917
  "@types/estree": "npm:1.0.8"
18918
18918
  fsevents: "npm:~2.3.2"
18919
18919
  dependenciesMeta:
@@ -18961,7 +18961,7 @@ __metadata:
18961
18961
  optional: true
18962
18962
  bin:
18963
18963
  rollup: dist/bin/rollup
18964
- checksum: 10c0/4d792f8a8bfb4408485bbc6c1f393a88422230c14d06b9de4d27bcf443fe3569f9fa4ed6111972bf6b8b515bd0133bfeb16ab66cdf32494ef0fbd2da41dc2855
18964
+ checksum: 10c0/ca950eb0fb550c40e0a06e9bb4f17c3b7097a3684152327569d9b20891e704ea8b20764b26d54442fc1eb00615923a191bb928087a7e23e5fa8c3c00e06680e4
18965
18965
  languageName: node
18966
18966
  linkType: hard
18967
18967
 
@@ -21067,7 +21067,7 @@ __metadata:
21067
21067
  languageName: node
21068
21068
  linkType: hard
21069
21069
 
21070
- "ufo@npm:^1.5.4":
21070
+ "ufo@npm:^1.6.1":
21071
21071
  version: 1.6.1
21072
21072
  resolution: "ufo@npm:1.6.1"
21073
21073
  checksum: 10c0/5a9f041e5945fba7c189d5410508cbcbefef80b253ed29aa2e1f8a2b86f4bd51af44ee18d4485e6d3468c92be9bf4a42e3a2b72dcaf27ce39ce947ec994f1e6b