@licklist/design 0.70.0 → 0.70.1

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.
@@ -7,7 +7,7 @@ import { useTranslation } from 'react-i18next';
7
7
  import * as Config from '@licklist/core/dist/Config';
8
8
  import { FaEye, FaExternalLinkAlt, FaEdit, FaCopy, FaTrashAlt } from 'react-icons/fa';
9
9
  import { TipTapEditor } from '../../tiptap-editor/TipTapEditor.js';
10
- import { getStatisticInfo, formatContentWithoutTags, EVENT_DESCRIPTION_SIZE } from './utils.js';
10
+ import { getStatisticInfo, formatContent, EVENT_DESCRIPTION_SIZE } from './utils.js';
11
11
  import { ReactComponent as SvgChartBar } from '../../assets/dashboard/chartBar.svg.js';
12
12
 
13
13
  function _object_without_properties(source, excluded) {
@@ -45,7 +45,7 @@ function EventCard(param) {
45
45
  "totalViews"
46
46
  ]);
47
47
  var memoedContent = useMemo(function() {
48
- return formatContentWithoutTags(description, EVENT_DESCRIPTION_SIZE);
48
+ return formatContent(description, EVENT_DESCRIPTION_SIZE);
49
49
  }, [
50
50
  description
51
51
  ]);
@@ -1,8 +1,8 @@
1
1
  import { EventStatistic } from '@licklist/core/dist/DataMapper/Provider/EventStatisticDataMapper';
2
- export declare function formatContent(content: any, maxSymbols: any): any;
3
- export declare const formatContentWithoutTags: (content: any, maxLength?: number) => any;
4
2
  export declare const MIN_EVENT_DESCRIPTION_SIZE = 150;
5
3
  export declare const EVENT_DESCRIPTION_SIZE = 350;
4
+ export declare const EMOJI_REGEX: RegExp;
5
+ export declare const formatContent: (content: any, maxLength?: number) => any;
6
6
  /**
7
7
  * Calculate the total number of views from the given dates and event statistic.
8
8
  *
@@ -1 +1 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/events/event-card/utils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAA;AAGjG,wBAAgB,aAAa,CAAC,OAAO,KAAA,EAAE,UAAU,KAAA,OAIhD;AAED,eAAO,MAAM,wBAAwB,2CAkBpC,CAAA;AAED,eAAO,MAAM,0BAA0B,MAAM,CAAA;AAC7C,eAAO,MAAM,sBAAsB,MAAM,CAAA;AAEzC;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB,UACvB,MAAM,EAAE,kBACC,cAAc,KAC7B,MAIA,CAAA;AAEH;;;;;;;GAOG;AACH,eAAO,MAAM,2BAA2B,UAC/B,MAAM,EAAE,kBACC,cAAc,KAC7B,CAAC,MAAM,EAAE,MAAM,CAejB,CAAA;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,gBAAgB,mBACX,cAAc,GAAG,IAAI,QAC/B,MAAM,KACX;IACD,UAAU,EAAE,MAAM,CAAA;IAClB,SAAS,EAAE,MAAM,CAAA;IACjB,WAAW,EAAE,MAAM,CAAA;CA4BpB,CAAA"}
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/events/event-card/utils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAA;AAGjG,eAAO,MAAM,0BAA0B,MAAM,CAAC;AAC9C,eAAO,MAAM,sBAAsB,MAAM,CAAC;AAC1C,eAAO,MAAM,WAAW,QAAuE,CAAC;AAEhG,eAAO,MAAM,aAAa,2CAUzB,CAAC;AAMF;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB,UACvB,MAAM,EAAE,kBACC,cAAc,KAC7B,MAIA,CAAA;AAEH;;;;;;;GAOG;AACH,eAAO,MAAM,2BAA2B,UAC/B,MAAM,EAAE,kBACC,cAAc,KAC7B,CAAC,MAAM,EAAE,MAAM,CAejB,CAAA;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,gBAAgB,mBACX,cAAc,GAAG,IAAI,QAC/B,MAAM,KACX;IACD,UAAU,EAAE,MAAM,CAAA;IAClB,SAAS,EAAE,MAAM,CAAA;IACjB,WAAW,EAAE,MAAM,CAAA;CA4BpB,CAAA"}
@@ -47,26 +47,22 @@ function _unsupported_iterable_to_array(o, minLen) {
47
47
  if (n === "Map" || n === "Set") return Array.from(n);
48
48
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
49
49
  }
50
- function formatContent(content, maxSymbols) {
51
- if (!content) return '';
52
- if (content.length > maxSymbols) return "".concat(content.slice(0, maxSymbols), "...");
53
- return content;
54
- }
55
- var formatContentWithoutTags = function(content) {
50
+ var EVENT_DESCRIPTION_SIZE = 350;
51
+ var EMOJI_REGEX = /<span data-emoji-replacer=""><img[^>]*alt="([^"]+)"[^>]*><\/span>/g;
52
+ var formatContent = function(content) {
56
53
  var maxLength = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : EVENT_DESCRIPTION_SIZE;
57
54
  if (!content) return '';
58
- if (content < maxLength) return content;
59
- var text = content.replace(/<[^>]*>/g, '');
60
- var trimmedText = text.trim().replace(/&nbsp;|[^a-zA-Z0-9\s]/g, '').replace(/\s\s+/g, ' ');
61
- var words = trimmedText.slice(0, maxLength).split(' ');
62
- var contentWithMinLength = content.slice(0, MIN_EVENT_DESCRIPTION_SIZE);
63
- var index = String(content).indexOf(words[words.length - 2]);
64
- var slicedContent = content.slice(0, index);
65
- var minSizeContent = contentWithMinLength.length > slicedContent.length ? contentWithMinLength : slicedContent;
66
- return minSizeContent.concat('...');
55
+ var replacedContent = replaceEmojiImagesWithText(content);
56
+ if (replacedContent.length <= maxLength) {
57
+ return replacedContent;
58
+ }
59
+ return replacedContent.slice(0, maxLength).concat('...');
67
60
  };
68
- var MIN_EVENT_DESCRIPTION_SIZE = 150;
69
- var EVENT_DESCRIPTION_SIZE = 350;
61
+ function replaceEmojiImagesWithText(text) {
62
+ return text.replace(EMOJI_REGEX, function(_, emojiText) {
63
+ return emojiText;
64
+ });
65
+ }
70
66
  /**
71
67
  * Calculate the total number of views from the given dates and event statistic.
72
68
  *
@@ -140,4 +136,4 @@ var EVENT_DESCRIPTION_SIZE = 350;
140
136
  };
141
137
  };
142
138
 
143
- export { EVENT_DESCRIPTION_SIZE, MIN_EVENT_DESCRIPTION_SIZE, calculateTotalSoldAndAmount, calculateTotalViews, formatContent, formatContentWithoutTags, getStatisticInfo };
139
+ export { EMOJI_REGEX, EVENT_DESCRIPTION_SIZE, calculateTotalSoldAndAmount, calculateTotalViews, formatContent, getStatisticInfo };
@@ -1 +1 @@
1
- {"version":3,"file":"ryft-form.d.ts","sourceRoot":"","sources":["../../../../src/iframe/ryft/utils/ryft-form.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AACzC,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAA;AAEzD,UAAU,0BACR,SAAQ,IAAI,CACV,oBAAoB,EACpB,uBAAuB,GAAG,oBAAoB,CAC/C;IACD,CAAC,EAAE,SAAS,CAAC,MAAM,EAAE,CAAC,CAAA;IACtB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,+BAA+B,CAAC,EAAE,OAAO,CAAA;CAC1C;AAED,eAAO,MAAM,0BAA0B,wGAMpC,0BAA0B,SA4E5B,CAAA"}
1
+ {"version":3,"file":"ryft-form.d.ts","sourceRoot":"","sources":["../../../../src/iframe/ryft/utils/ryft-form.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AACzC,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAA;AAEzD,UAAU,0BACR,SAAQ,IAAI,CACV,oBAAoB,EACpB,uBAAuB,GAAG,oBAAoB,CAC/C;IACD,CAAC,EAAE,SAAS,CAAC,MAAM,EAAE,CAAC,CAAA;IACtB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,+BAA+B,CAAC,EAAE,OAAO,CAAA;CAC1C;AAED,eAAO,MAAM,0BAA0B,wGAMpC,0BAA0B,SA6E5B,CAAA"}
@@ -60,6 +60,7 @@ var injectComponentsInRyftForm = function(param) {
60
60
  var applePayButton = document.createElement('button');
61
61
  applePayButton.id = 'apple-pay';
62
62
  applePayButton.type = 'button';
63
+ applePayButton.style.opacity = !isDisableButton ? '1' : '0.6';
63
64
  applePayButton.className = 'bg-dark btn btn-primary apple-pay-button';
64
65
  applePayButton.textContent = t('Events:payWithApple');
65
66
  applePayButton.onclick = onApplePayButtonClick;
@@ -1 +1 @@
1
- {"version":3,"file":"DateInput.d.ts","sourceRoot":"","sources":["../../../src/product-set/control/DateInput.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAOzC,OAAO,EAAE,oBAAoB,EAAE,MAAM,uEAAuE,CAAA;AAG5G,OAAO,EAAE,QAAQ,EAAE,MAAM,4DAA4D,CAAA;AAiBrF,MAAM,WAAW,4BAA4B;IAC3C,eAAe,CAAC,EAAE,OAAO,CAAC,oBAAoB,CAAC,EAAE,CAAA;CAClD;AAED,UAAU,2BAA2B;IACnC,qBAAqB,CAAC,EAAE,OAAO,CAAA;IAC/B,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAA;IACtB,4BAA4B,EAAE,OAAO,CAAA;IACrC,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;AAED,eAAO,MAAM,SAAS,mFAKnB,2BAA2B,4CAuP7B,CAAA;AAED,eAAO,MAAM,uBAAuB,EAAE,QAAQ,CAC5C,WAAW,EACX,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAsBxB,CAAA"}
1
+ {"version":3,"file":"DateInput.d.ts","sourceRoot":"","sources":["../../../src/product-set/control/DateInput.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAOzC,OAAO,EAAE,oBAAoB,EAAE,MAAM,uEAAuE,CAAA;AAG5G,OAAO,EAAE,QAAQ,EAAE,MAAM,4DAA4D,CAAA;AAiBrF,MAAM,WAAW,4BAA4B;IAC3C,eAAe,CAAC,EAAE,OAAO,CAAC,oBAAoB,CAAC,EAAE,CAAA;CAClD;AAED,UAAU,2BAA2B;IACnC,qBAAqB,CAAC,EAAE,OAAO,CAAA;IAC/B,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAA;IACtB,4BAA4B,EAAE,OAAO,CAAA;IACrC,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;AAED,eAAO,MAAM,SAAS,mFAKnB,2BAA2B,4CAyP7B,CAAA;AAED,eAAO,MAAM,uBAAuB,EAAE,QAAQ,CAC5C,WAAW,EACX,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAsBxB,CAAA"}
@@ -216,7 +216,7 @@ function _ts_generator(thisArg, body) {
216
216
  }
217
217
  var DateInput = function(param) {
218
218
  var isEventEditProductSet = param.isEventEditProductSet, isLoading = param.isLoading, workHours = param.workHours, providerHasBookingManagement = param.providerHasBookingManagement;
219
- var _errors_menuRecurrences__availableTimes, _errors_menuRecurrences_, _errors_menuRecurrences, _errors_menuRecurrences1;
219
+ var _errors_menuRecurrences, _errors_menuRecurrences_root, _errors_menuRecurrences1, _errors_menuRecurrences__availableTimes, _errors_menuRecurrences_, _errors_menuRecurrences2;
220
220
  var _useFormContext = useFormContext(), control = _useFormContext.control, register = _useFormContext.register, errors = _useFormContext.formState.errors, getValues = _useFormContext.getValues, setValue = _useFormContext.setValue, clearErrors = _useFormContext.clearErrors;
221
221
  var _useFieldArray = useFieldArray({
222
222
  name: 'menuRecurrences',
@@ -359,6 +359,7 @@ var DateInput = function(param) {
359
359
  }));
360
360
  }, 100);
361
361
  };
362
+ var errorMessage = ((_errors_menuRecurrences = errors.menuRecurrences) === null || _errors_menuRecurrences === void 0 ? void 0 : _errors_menuRecurrences.message) || ((_errors_menuRecurrences1 = errors.menuRecurrences) === null || _errors_menuRecurrences1 === void 0 ? void 0 : (_errors_menuRecurrences_root = _errors_menuRecurrences1.root) === null || _errors_menuRecurrences_root === void 0 ? void 0 : _errors_menuRecurrences_root.message);
362
363
  return /*#__PURE__*/ jsxs(Form.Group, {
363
364
  children: [
364
365
  /*#__PURE__*/ jsx(Form.Label, {
@@ -381,7 +382,7 @@ var DateInput = function(param) {
381
382
  isLoading: isLoading,
382
383
  ref: availableTimesFormRef,
383
384
  defaultValues: availableTimes,
384
- errorMessage: errors === null || errors === void 0 ? void 0 : (_errors_menuRecurrences = errors.menuRecurrences) === null || _errors_menuRecurrences === void 0 ? void 0 : (_errors_menuRecurrences_ = _errors_menuRecurrences["".concat(editState === null || editState === void 0 ? void 0 : editState.index)]) === null || _errors_menuRecurrences_ === void 0 ? void 0 : (_errors_menuRecurrences__availableTimes = _errors_menuRecurrences_.availableTimes) === null || _errors_menuRecurrences__availableTimes === void 0 ? void 0 : _errors_menuRecurrences__availableTimes.message,
385
+ errorMessage: errors === null || errors === void 0 ? void 0 : (_errors_menuRecurrences2 = errors.menuRecurrences) === null || _errors_menuRecurrences2 === void 0 ? void 0 : (_errors_menuRecurrences_ = _errors_menuRecurrences2["".concat(editState === null || editState === void 0 ? void 0 : editState.index)]) === null || _errors_menuRecurrences_ === void 0 ? void 0 : (_errors_menuRecurrences__availableTimes = _errors_menuRecurrences_.availableTimes) === null || _errors_menuRecurrences__availableTimes === void 0 ? void 0 : _errors_menuRecurrences__availableTimes.message,
385
386
  clearErrorMessage: function() {
386
387
  return clearErrors("menuRecurrences.".concat(editState === null || editState === void 0 ? void 0 : editState.index, ".availableTimes"));
387
388
  }
@@ -436,7 +437,7 @@ var DateInput = function(param) {
436
437
  }))),
437
438
  /*#__PURE__*/ jsx("div", {
438
439
  className: "manual-form-error",
439
- children: (_errors_menuRecurrences1 = errors.menuRecurrences) === null || _errors_menuRecurrences1 === void 0 ? void 0 : _errors_menuRecurrences1.message
440
+ children: errorMessage
440
441
  })
441
442
  ]
442
443
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@licklist/design",
3
- "version": "0.70.0",
3
+ "version": "0.70.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
@@ -23,7 +23,7 @@ import { Sale } from '../../types/bookings'
23
23
  import { TipTapEditor } from '../../tiptap-editor/TipTapEditor'
24
24
  import {
25
25
  EVENT_DESCRIPTION_SIZE,
26
- formatContentWithoutTags,
26
+ formatContent,
27
27
  getStatisticInfo,
28
28
  } from './utils'
29
29
  import { ReactComponent as ChartBarIcon } from '../../assets/dashboard/chartBar.svg'
@@ -66,7 +66,7 @@ export function EventCard({
66
66
  const { formatNumber, formatDate } = useIntl()
67
67
  const { totalViews, ...statistics } = getStatisticInfo(eventStatistic, date)
68
68
  const memoedContent = useMemo(
69
- () => formatContentWithoutTags(description, EVENT_DESCRIPTION_SIZE),
69
+ () => formatContent(description, EVENT_DESCRIPTION_SIZE),
70
70
  [description],
71
71
  )
72
72
 
@@ -2,34 +2,25 @@ import { DATE_FORMAT, DATE_TIME_FULL_FORMAT } from '@licklist/core/dist/Config'
2
2
  import { EventStatistic } from '@licklist/core/dist/DataMapper/Provider/EventStatisticDataMapper'
3
3
  import { DateTime } from 'luxon'
4
4
 
5
- export function formatContent(content, maxSymbols) {
6
- if (!content) return ''
7
- if (content.length > maxSymbols) return `${content.slice(0, maxSymbols)}...`
8
- return content
9
- }
5
+ export const MIN_EVENT_DESCRIPTION_SIZE = 150;
6
+ export const EVENT_DESCRIPTION_SIZE = 350;
7
+ export const EMOJI_REGEX = /<span data-emoji-replacer=""><img[^>]*alt="([^"]+)"[^>]*><\/span>/g;
10
8
 
11
- export const formatContentWithoutTags = (
12
- content,
13
- maxLength = EVENT_DESCRIPTION_SIZE,
14
- ) => {
15
- if (!content) return ''
16
- if (content < maxLength) return content
17
- const text = content.replace(/<[^>]*>/g, '')
18
- const trimmedText = text
19
- .trim()
20
- .replace(/&nbsp;|[^a-zA-Z0-9\s]/g, '')
21
- .replace(/\s\s+/g, ' ')
9
+ export const formatContent = (content, maxLength = EVENT_DESCRIPTION_SIZE) => {
10
+ if (!content) return '';
22
11
 
23
- const words = trimmedText.slice(0, maxLength).split(' ')
24
- const contentWithMinLength = content.slice(0, MIN_EVENT_DESCRIPTION_SIZE)
25
- const index = String(content).indexOf(words[words.length - 2])
26
- const slicedContent = content.slice(0, index)
27
- const minSizeContent = contentWithMinLength.length > slicedContent.length ? contentWithMinLength : slicedContent
28
- return minSizeContent.concat('...')
29
- }
12
+ const replacedContent = replaceEmojiImagesWithText(content);
13
+
14
+ if (replacedContent.length <= maxLength) {
15
+ return replacedContent;
16
+ }
30
17
 
31
- export const MIN_EVENT_DESCRIPTION_SIZE = 150
32
- export const EVENT_DESCRIPTION_SIZE = 350
18
+ return replacedContent.slice(0, maxLength).concat('...');
19
+ };
20
+
21
+ function replaceEmojiImagesWithText(text) {
22
+ return text.replace(EMOJI_REGEX, (_, emojiText) => emojiText);
23
+ }
33
24
 
34
25
  /**
35
26
  * Calculate the total number of views from the given dates and event statistic.
@@ -86,6 +86,7 @@ export const injectComponentsInRyftForm = ({
86
86
  const applePayButton = document.createElement('button')
87
87
  applePayButton.id = 'apple-pay'
88
88
  applePayButton.type = 'button'
89
+ applePayButton.style.opacity = !isDisableButton ? '1' : '0.6'
89
90
  applePayButton.className = 'bg-dark btn btn-primary apple-pay-button'
90
91
  applePayButton.textContent = t('Events:payWithApple')
91
92
  applePayButton.onclick = onApplePayButtonClick
@@ -195,6 +195,8 @@ export const DateInput = ({
195
195
  }, 100)
196
196
  }
197
197
 
198
+ const errorMessage = errors.menuRecurrences?.message || errors.menuRecurrences?.root?.message
199
+
198
200
  return (
199
201
  <Form.Group>
200
202
  <Form.Label>
@@ -283,7 +285,7 @@ export const DateInput = ({
283
285
  />
284
286
 
285
287
  <div className='manual-form-error'>
286
- {errors.menuRecurrences?.message}
288
+ {errorMessage}
287
289
  </div>
288
290
  </div>
289
291
  </OverlayTrigger>
package/yarn.lock CHANGED
@@ -5667,11 +5667,11 @@ __metadata:
5667
5667
  linkType: hard
5668
5668
 
5669
5669
  "@types/node@npm:*":
5670
- version: 22.7.7
5671
- resolution: "@types/node@npm:22.7.7"
5670
+ version: 22.7.8
5671
+ resolution: "@types/node@npm:22.7.8"
5672
5672
  dependencies:
5673
5673
  undici-types: "npm:~6.19.2"
5674
- checksum: 10c0/07268a1e990ad9d9b1865092881317ea679a46eb6706d83a8874eec75fdddae6cfd6452e4e68b651561183e2a8f8548276f3155744bc402c2545978c19b70d65
5674
+ checksum: 10c0/3d3b3a2ec5a57ca4fd37b34dce415620993ca5f87cea2c728ffe73aa31446dbfe19c53171c478447bd7d78011ef4845a46ab2f0dc38e699cc75b3d100a60c690
5675
5675
  languageName: node
5676
5676
  linkType: hard
5677
5677
 
@@ -7793,16 +7793,16 @@ __metadata:
7793
7793
  linkType: hard
7794
7794
 
7795
7795
  "browserslist@npm:^4.0.0, browserslist@npm:^4.12.0, browserslist@npm:^4.23.3, browserslist@npm:^4.24.0":
7796
- version: 4.24.0
7797
- resolution: "browserslist@npm:4.24.0"
7796
+ version: 4.24.2
7797
+ resolution: "browserslist@npm:4.24.2"
7798
7798
  dependencies:
7799
- caniuse-lite: "npm:^1.0.30001663"
7800
- electron-to-chromium: "npm:^1.5.28"
7799
+ caniuse-lite: "npm:^1.0.30001669"
7800
+ electron-to-chromium: "npm:^1.5.41"
7801
7801
  node-releases: "npm:^2.0.18"
7802
- update-browserslist-db: "npm:^1.1.0"
7802
+ update-browserslist-db: "npm:^1.1.1"
7803
7803
  bin:
7804
7804
  browserslist: cli.js
7805
- checksum: 10c0/95e76ad522753c4c470427f6e3c8a4bb5478ff448841e22b3d3e53f89ecaf17b6984666d6c7e715c370f1e7fa0cf684f42e34e554236a8b2fab38ea76b9e4c52
7805
+ checksum: 10c0/d747c9fb65ed7b4f1abcae4959405707ed9a7b835639f8a9ba0da2911995a6ab9b0648fd05baf2a4d4e3cf7f9fdbad56d3753f91881e365992c1d49c8d88ff7a
7806
7806
  languageName: node
7807
7807
  linkType: hard
7808
7808
 
@@ -8048,7 +8048,7 @@ __metadata:
8048
8048
  languageName: node
8049
8049
  linkType: hard
8050
8050
 
8051
- "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.30001663":
8051
+ "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":
8052
8052
  version: 1.0.30001669
8053
8053
  resolution: "caniuse-lite@npm:1.0.30001669"
8054
8054
  checksum: 10c0/f125f23440d3dbb6c25ffb8d55f4ce48af36a84d0932b152b3b74f143a4170cbe92e02b0a9676209c86609bf7bf34119ff10cc2bc7c1b7ea40e936cc16598408
@@ -8187,8 +8187,8 @@ __metadata:
8187
8187
  linkType: hard
8188
8188
 
8189
8189
  "chromatic@npm:^11.4.0":
8190
- version: 11.12.6
8191
- resolution: "chromatic@npm:11.12.6"
8190
+ version: 11.14.0
8191
+ resolution: "chromatic@npm:11.14.0"
8192
8192
  peerDependencies:
8193
8193
  "@chromatic-com/cypress": ^0.*.* || ^1.0.0
8194
8194
  "@chromatic-com/playwright": ^0.*.* || ^1.0.0
@@ -8201,7 +8201,7 @@ __metadata:
8201
8201
  chroma: dist/bin.js
8202
8202
  chromatic: dist/bin.js
8203
8203
  chromatic-cli: dist/bin.js
8204
- checksum: 10c0/7d161c52bc239ac6e8380f9a64533dd3792819d8f103d0083a805d5c9ece0844787eedd45c19c41e69d0ef0a3756051fa3e5c1f2fc9630d60f2ada4d5452e929
8204
+ checksum: 10c0/5faede3d0387058f1a15869984c8350c203092a685f6148fcc4223950743cb9430b35d6ee9227a9ca14a0ecbe41599b313e4ffe51015c79ab849529965457c9f
8205
8205
  languageName: node
8206
8206
  linkType: hard
8207
8207
 
@@ -9807,7 +9807,7 @@ __metadata:
9807
9807
  languageName: node
9808
9808
  linkType: hard
9809
9809
 
9810
- "electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.28":
9810
+ "electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.41":
9811
9811
  version: 1.5.41
9812
9812
  resolution: "electron-to-chromium@npm:1.5.41"
9813
9813
  checksum: 10c0/97b82383963029e6ed0bd7a71eb527f640c8cf658c9e43c776b0257b3c65e366590ac54135683a21e4474a156b8be78717d6e94d3c1def84b69f92bf48f2390f
@@ -21052,7 +21052,7 @@ __metadata:
21052
21052
  languageName: node
21053
21053
  linkType: hard
21054
21054
 
21055
- "update-browserslist-db@npm:^1.1.0":
21055
+ "update-browserslist-db@npm:^1.1.1":
21056
21056
  version: 1.1.1
21057
21057
  resolution: "update-browserslist-db@npm:1.1.1"
21058
21058
  dependencies: