@licklist/design 0.71.18-dev.13 → 0.71.18-dev.15

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,12 +5,13 @@ interface IntervalInputProps {
5
5
  productSets?: ProductSet[];
6
6
  productSetId?: number;
7
7
  disabled?: boolean;
8
+ disabledRecurrent?: boolean;
8
9
  }
9
10
  export interface IntervalInputValues {
10
11
  start: string;
11
12
  end: string;
12
13
  rrule: string | null;
13
14
  }
14
- export declare function IntervalInput({ disabled, editedProductSet, productSetId, productSets, }: IntervalInputProps): import("react/jsx-runtime").JSX.Element;
15
+ export declare function IntervalInput({ disabled, editedProductSet, productSetId, productSets, disabledRecurrent, }: IntervalInputProps): import("react/jsx-runtime").JSX.Element;
15
16
  export {};
16
17
  //# sourceMappingURL=IntervalInput.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"IntervalInput.d.ts","sourceRoot":"","sources":["../../../src/events/edit-event-modal/IntervalInput.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,UAAU,EAAE,MAAM,6DAA6D,CAAA;AAIxF,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAG7D,UAAU,kBAAkB;IAC1B,gBAAgB,CAAC,EAAE,oBAAoB,CAAA;IACvC,WAAW,CAAC,EAAE,UAAU,EAAE,CAAA;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,MAAM,CAAA;IACb,GAAG,EAAE,MAAM,CAAA;IACX,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;CACrB;AAED,wBAAgB,aAAa,CAAC,EAC5B,QAAgB,EAChB,gBAAgB,EAChB,YAAY,EACZ,WAAW,GACZ,EAAE,kBAAkB,2CA4JpB"}
1
+ {"version":3,"file":"IntervalInput.d.ts","sourceRoot":"","sources":["../../../src/events/edit-event-modal/IntervalInput.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,UAAU,EAAE,MAAM,6DAA6D,CAAA;AAIxF,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAG7D,UAAU,kBAAkB;IAC1B,gBAAgB,CAAC,EAAE,oBAAoB,CAAA;IACvC,WAAW,CAAC,EAAE,UAAU,EAAE,CAAA;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,iBAAiB,CAAC,EAAE,OAAO,CAAA;CAC5B;AAED,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,MAAM,CAAA;IACb,GAAG,EAAE,MAAM,CAAA;IACX,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;CACrB;AAED,wBAAgB,aAAa,CAAC,EAC5B,QAAgB,EAChB,gBAAgB,EAChB,YAAY,EACZ,WAAW,EACX,iBAAyB,GAC1B,EAAE,kBAAkB,2CA4JpB"}
@@ -110,7 +110,7 @@ function _unsupported_iterable_to_array(o, minLen) {
110
110
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
111
111
  }
112
112
  function IntervalInput(param) {
113
- var _param_disabled = param.disabled, disabled = _param_disabled === void 0 ? false : _param_disabled, editedProductSet = param.editedProductSet, productSetId = param.productSetId, productSets = param.productSets;
113
+ var _param_disabled = param.disabled, disabled = _param_disabled === void 0 ? false : _param_disabled, editedProductSet = param.editedProductSet, productSetId = param.productSetId, productSets = param.productSets, _param_disabledRecurrent = param.disabledRecurrent, disabledRecurrent = _param_disabledRecurrent === void 0 ? false : _param_disabledRecurrent;
114
114
  var _errors_start, _errors_end;
115
115
  var t = useTranslation([
116
116
  'Design',
@@ -131,7 +131,7 @@ function IntervalInput(param) {
131
131
  control: control,
132
132
  name: 'end'
133
133
  });
134
- var _useState = _sliced_to_array(useState(Boolean(rrule)), 2), recurrent = _useState[0], setRecurrent = _useState[1];
134
+ var _useState = _sliced_to_array(useState(disabledRecurrent ? false : Boolean(rrule)), 2), recurrent = _useState[0], setRecurrent = _useState[1];
135
135
  var _useState1 = _sliced_to_array(useState(false), 2), isOverriden = _useState1[0], setIsOverriden = _useState1[1];
136
136
  var recurrentId = useId();
137
137
  var startDateInput = useRef(null);
@@ -257,7 +257,7 @@ function IntervalInput(param) {
257
257
  var checked = param.target.checked;
258
258
  onChangeRecurrent(checked);
259
259
  },
260
- disabled: disabled || Boolean(editedProductSet)
260
+ disabled: disabled || Boolean(editedProductSet) || disabledRecurrent
261
261
  }),
262
262
  !recurrent && /*#__PURE__*/ jsx(Form.Text, {
263
263
  muted: true,
@@ -36,6 +36,7 @@ export interface EditEventFormProps extends HasPermissionProp {
36
36
  timeZone: string;
37
37
  eventProductSet?: ProductSet;
38
38
  overrideNameError?: string;
39
+ disabledRecurrent?: boolean;
39
40
  }
40
- export declare const EditEventForm: ({ disabled, categories, title, hasPermission, defaultEventValues, serverErrors, onSaveEvent, productSets, createProductSet, setEditProductSetId, isExternalPaymentLinkEnabled, timeZone, eventProductSet, overrideNameError, }: EditEventFormProps) => import("react/jsx-runtime").JSX.Element;
41
+ export declare const EditEventForm: ({ disabled, categories, title, hasPermission, defaultEventValues, serverErrors, onSaveEvent, productSets, createProductSet, setEditProductSetId, isExternalPaymentLinkEnabled, timeZone, eventProductSet, overrideNameError, disabledRecurrent, }: EditEventFormProps) => import("react/jsx-runtime").JSX.Element;
41
42
  //# sourceMappingURL=EditEventForm.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"EditEventForm.d.ts","sourceRoot":"","sources":["../../../../../src/events/edit-event-modal/component/EditEventForm/EditEventForm.tsx"],"names":[],"mappings":"AAEA,OAAO,EAIL,KAAK,EACN,MAAM,sDAAsD,CAAA;AAM7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,oDAAoD,CAAA;AAGtF,OAAO,EAAE,WAAW,EAAE,MAAM,+CAA+C,CAAA;AAG3E,OAAO,EAAE,UAAU,EAAE,MAAM,6DAA6D,CAAA;AACxF,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAA;AAS5D,OAAO,EAAiB,mBAAmB,EAAE,MAAM,qBAAqB,CAAA;AAGxE,OAAO,EAAE,oBAAoB,EAAE,MAAM,6CAA6C,CAAA;AAGlF,MAAM,WAAW,mBAAoB,SAAQ,mBAAmB;IAC9D,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,EAAE,MAAM,CAAA;IACf,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,UAAU,EAAE,MAAM,EAAE,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAA;IACjC,OAAO,EAAE,OAAO,GAAG,MAAM,CAAA;IACzB,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAA;IAClC,MAAM,EAAE,KAAK,EAAE,GAAG,IAAI,CAAA;IACtB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAA;IAC3B,cAAc,EAAE,MAAM,GAAG,IAAI,CAAA;IAC7B,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,gBAAgB,CAAC,EAAE,oBAAoB,CAAA;CACxC;AAED,MAAM,WAAW,kBAAmB,SAAQ,iBAAiB;IAC3D,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,UAAU,EAAE,aAAa,EAAE,CAAA;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,kBAAkB,CAAC,EAAE,OAAO,CAAC,mBAAmB,CAAC,CAAA;IACjD,YAAY,CAAC,EAAE,WAAW,CAAA;IAC1B,WAAW,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CAAA;IAClD,WAAW,CAAC,EAAE,UAAU,EAAE,GAAG,IAAI,CAAA;IACjC,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,gBAAgB,EAAE,CAAC,KAAK,EAAE,mBAAmB,KAAK,IAAI,CAAA;IACtD,mBAAmB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IAC5C,4BAA4B,CAAC,EAAE,OAAO,CAAA;IACtC,QAAQ,EAAE,MAAM,CAAA;IAChB,eAAe,CAAC,EAAE,UAAU,CAAA;IAC5B,iBAAiB,CAAC,EAAE,MAAM,CAAA;CAC3B;AAOD,eAAO,MAAM,aAAa,mOAevB,kBAAkB,4CAwVpB,CAAA"}
1
+ {"version":3,"file":"EditEventForm.d.ts","sourceRoot":"","sources":["../../../../../src/events/edit-event-modal/component/EditEventForm/EditEventForm.tsx"],"names":[],"mappings":"AAEA,OAAO,EAIL,KAAK,EACN,MAAM,sDAAsD,CAAA;AAM7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,oDAAoD,CAAA;AAGtF,OAAO,EAAE,WAAW,EAAE,MAAM,+CAA+C,CAAA;AAG3E,OAAO,EAAE,UAAU,EAAE,MAAM,6DAA6D,CAAA;AACxF,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAA;AAS5D,OAAO,EAAiB,mBAAmB,EAAE,MAAM,qBAAqB,CAAA;AAGxE,OAAO,EAAE,oBAAoB,EAAE,MAAM,6CAA6C,CAAA;AAGlF,MAAM,WAAW,mBAAoB,SAAQ,mBAAmB;IAC9D,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,EAAE,MAAM,CAAA;IACf,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,UAAU,EAAE,MAAM,EAAE,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAA;IACjC,OAAO,EAAE,OAAO,GAAG,MAAM,CAAA;IACzB,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAA;IAClC,MAAM,EAAE,KAAK,EAAE,GAAG,IAAI,CAAA;IACtB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAA;IAC3B,cAAc,EAAE,MAAM,GAAG,IAAI,CAAA;IAC7B,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,gBAAgB,CAAC,EAAE,oBAAoB,CAAA;CACxC;AAED,MAAM,WAAW,kBAAmB,SAAQ,iBAAiB;IAC3D,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,UAAU,EAAE,aAAa,EAAE,CAAA;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,kBAAkB,CAAC,EAAE,OAAO,CAAC,mBAAmB,CAAC,CAAA;IACjD,YAAY,CAAC,EAAE,WAAW,CAAA;IAC1B,WAAW,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CAAA;IAClD,WAAW,CAAC,EAAE,UAAU,EAAE,GAAG,IAAI,CAAA;IACjC,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,gBAAgB,EAAE,CAAC,KAAK,EAAE,mBAAmB,KAAK,IAAI,CAAA;IACtD,mBAAmB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IAC5C,4BAA4B,CAAC,EAAE,OAAO,CAAA;IACtC,QAAQ,EAAE,MAAM,CAAA;IAChB,eAAe,CAAC,EAAE,UAAU,CAAA;IAC5B,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAA;CAC5B;AAOD,eAAO,MAAM,aAAa,sPAgBvB,kBAAkB,4CAyVpB,CAAA"}
@@ -139,7 +139,7 @@ var eventImageTypes = {
139
139
  uploadCover: IMAGE_TYPE_MAP[IMAGE_TYPE_COVER]
140
140
  };
141
141
  var EditEventForm = function(param) {
142
- var _param_disabled = param.disabled, disabled = _param_disabled === void 0 ? false : _param_disabled, categories = param.categories, title = param.title, _param_hasPermission = param.hasPermission, hasPermission = _param_hasPermission === void 0 ? true : _param_hasPermission, defaultEventValues = param.defaultEventValues, serverErrors = param.serverErrors, onSaveEvent = param.onSaveEvent, productSets = param.productSets, createProductSet = param.createProductSet, setEditProductSetId = param.setEditProductSetId, isExternalPaymentLinkEnabled = param.isExternalPaymentLinkEnabled, timeZone = param.timeZone, eventProductSet = param.eventProductSet, overrideNameError = param.overrideNameError;
142
+ var _param_disabled = param.disabled, disabled = _param_disabled === void 0 ? false : _param_disabled, categories = param.categories, title = param.title, _param_hasPermission = param.hasPermission, hasPermission = _param_hasPermission === void 0 ? true : _param_hasPermission, defaultEventValues = param.defaultEventValues, serverErrors = param.serverErrors, onSaveEvent = param.onSaveEvent, productSets = param.productSets, createProductSet = param.createProductSet, setEditProductSetId = param.setEditProductSetId, isExternalPaymentLinkEnabled = param.isExternalPaymentLinkEnabled, timeZone = param.timeZone, eventProductSet = param.eventProductSet, overrideNameError = param.overrideNameError, _param_disabledRecurrent = param.disabledRecurrent, disabledRecurrent = _param_disabledRecurrent === void 0 ? false : _param_disabledRecurrent;
143
143
  var _errors_name, _errors_externalPaymentLink, _errors_integrationUrl;
144
144
  var t = useTranslation([
145
145
  'Design',
@@ -305,6 +305,7 @@ var EditEventForm = function(param) {
305
305
  disabled: disabled,
306
306
  productSetId: productSetId,
307
307
  productSets: productSets,
308
+ disabledRecurrent: disabledRecurrent,
308
309
  editedProductSet: editedProductSet
309
310
  }, watch('name')),
310
311
  categories.length !== 0 && /*#__PURE__*/ jsx(Form.Group, {
@@ -1 +1 @@
1
- {"version":3,"file":"ProductWithModifierSetModal.d.ts","sourceRoot":"","sources":["../../../../src/iframe/ProductWithModifierModal/ModifierSetModal/ProductWithModifierSetModal.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,sBAAsB,EAAE,MAAM,8DAA8D,CAAA;AACrG,OAAO,EAAE,OAAO,EAAE,MAAM,qDAAqD,CAAA;AAG7E,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AACxD,OAAO,EAAE,aAAa,EAAE,MAAM,qGAAqG,CAAA;AAInI,UAAU,gCAAgC;IACxC,IAAI,EAAE,OAAO,CAAA;IACb,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,OAAO,EAAE,OAAO,CAAA;IAChB,QAAQ,EAAE,eAAe,CAAA;IACzB,iBAAiB,CAAC,EAAE,sBAAsB,CAAA;IAC1C,QAAQ,EAAE,CAAC,OAAO,EAAE,aAAa,KAAK,IAAI,CAAA;CAC3C;AAED,eAAO,MAAM,2BAA2B,sEAOrC,gCAAgC,4CA+ClC,CAAA"}
1
+ {"version":3,"file":"ProductWithModifierSetModal.d.ts","sourceRoot":"","sources":["../../../../src/iframe/ProductWithModifierModal/ModifierSetModal/ProductWithModifierSetModal.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,sBAAsB,EAAE,MAAM,8DAA8D,CAAA;AACrG,OAAO,EAAE,OAAO,EAAE,MAAM,qDAAqD,CAAA;AAG7E,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AACxD,OAAO,EAAE,aAAa,EAAE,MAAM,qGAAqG,CAAA;AAInI,UAAU,gCAAgC;IACxC,IAAI,EAAE,OAAO,CAAA;IACb,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,OAAO,EAAE,OAAO,CAAA;IAChB,QAAQ,EAAE,eAAe,CAAA;IACzB,iBAAiB,CAAC,EAAE,sBAAsB,CAAA;IAC1C,QAAQ,EAAE,CAAC,OAAO,EAAE,aAAa,KAAK,IAAI,CAAA;CAC3C;AAED,eAAO,MAAM,2BAA2B,sEAOrC,gCAAgC,4CAgDlC,CAAA"}
@@ -57,18 +57,19 @@ var ProductWithModifierSetModal = function(param) {
57
57
  className: "right-block",
58
58
  id: "select-event-container",
59
59
  children: /*#__PURE__*/ jsxs("div", {
60
- className: "manual-booking-container",
60
+ className: clsx('manual-booking-container', !product.images.length && 'tw-mt-8'),
61
61
  children: [
62
62
  /*#__PURE__*/ jsx("div", {
63
63
  className: "manual-booking-header",
64
64
  children: /*#__PURE__*/ jsx(TicketDescription, {
65
65
  title: product.name,
66
66
  description: product.description,
67
- className: clsx('iframe-event__product-description', !product.images && 'mt-4'),
67
+ className: clsx('iframe-event__product-description', !product.images.length && 'mt-6'),
68
68
  classNameProductModal: "d-block",
69
69
  images: product.images,
70
70
  isRequired: product.isRequired,
71
- canExpand: true
71
+ canExpand: true,
72
+ isModal: true
72
73
  })
73
74
  }),
74
75
  /*#__PURE__*/ jsx(ProductWithModifierSetForm, {
@@ -9,7 +9,8 @@ interface TicketDescriptionProps {
9
9
  price?: ReactNode;
10
10
  isRequired?: boolean;
11
11
  canExpand?: boolean;
12
+ isModal?: boolean;
12
13
  }
13
- export declare function TicketDescription({ title, description, className, classNameProductModal, images, price, isRequired, canExpand, }: TicketDescriptionProps): import("react/jsx-runtime").JSX.Element;
14
+ export declare function TicketDescription({ title, description, className, classNameProductModal, images, price, isRequired, canExpand, isModal }: TicketDescriptionProps): import("react/jsx-runtime").JSX.Element;
14
15
  export {};
15
16
  //# sourceMappingURL=TicketDescription.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TicketDescription.d.ts","sourceRoot":"","sources":["../../../../src/iframe/event/ticket-description/TicketDescription.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAiB,SAAS,EAAY,MAAM,OAAO,CAAA;AAE1D,OAAO,EACL,KAAK,EAEN,MAAM,sDAAsD,CAAA;AAK7D,UAAU,sBAAsB;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,MAAM,EAAE,KAAK,EAAE,GAAG,IAAI,CAAA;IACtB,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;AAID,wBAAgB,iBAAiB,CAAC,EAChC,KAAK,EACL,WAAW,EACX,SAAc,EACd,qBAA0B,EAC1B,MAAM,EACN,KAAK,EACL,UAAkB,EAClB,SAAgB,GACjB,EAAE,sBAAsB,2CAiDxB"}
1
+ {"version":3,"file":"TicketDescription.d.ts","sourceRoot":"","sources":["../../../../src/iframe/event/ticket-description/TicketDescription.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAiB,SAAS,EAAY,MAAM,OAAO,CAAA;AAE1D,OAAO,EACL,KAAK,EAEN,MAAM,sDAAsD,CAAA;AAK7D,UAAU,sBAAsB;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,MAAM,EAAE,KAAK,EAAE,GAAG,IAAI,CAAA;IACtB,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AAID,wBAAgB,iBAAiB,CAAC,EAChC,KAAK,EACL,WAAW,EACX,SAAc,EACd,qBAA0B,EAC1B,MAAM,EACN,KAAK,EACL,UAAkB,EAClB,SAAgB,EAChB,OAAc,EACf,EAAE,sBAAsB,2CAmDxB"}
@@ -54,7 +54,7 @@ function _unsupported_iterable_to_array(o, minLen) {
54
54
  }
55
55
  var DESCRIPTION_MAX_LENGTH = 120;
56
56
  function TicketDescription(param) {
57
- var title = param.title, description = param.description, _param_className = param.className, className = _param_className === void 0 ? '' : _param_className, _param_classNameProductModal = param.classNameProductModal, classNameProductModal = _param_classNameProductModal === void 0 ? '' : _param_classNameProductModal, images = param.images, price = param.price, _param_isRequired = param.isRequired, isRequired = _param_isRequired === void 0 ? false : _param_isRequired, _param_canExpand = param.canExpand, canExpand = _param_canExpand === void 0 ? true : _param_canExpand;
57
+ var title = param.title, description = param.description, _param_className = param.className, className = _param_className === void 0 ? '' : _param_className, _param_classNameProductModal = param.classNameProductModal, classNameProductModal = _param_classNameProductModal === void 0 ? '' : _param_classNameProductModal, images = param.images, price = param.price, _param_isRequired = param.isRequired, isRequired = _param_isRequired === void 0 ? false : _param_isRequired, _param_canExpand = param.canExpand, canExpand = _param_canExpand === void 0 ? true : _param_canExpand, _param_isModal = param.isModal, isModal = _param_isModal === void 0 ? false : _param_isModal;
58
58
  var _useState = _sliced_to_array(useState(false), 2), isDescriptionExpanded = _useState[0], setIsDescriptionExpanded = _useState[1];
59
59
  var wrapperClasses = clsx('ticket-description', className);
60
60
  var imageSrc = images ? MediaService.getImageSrc(images, THUMBNAIL_IMAGE_SIZE) : null;
@@ -85,12 +85,14 @@ function TicketDescription(param) {
85
85
  children: /*#__PURE__*/ jsx(Description, {
86
86
  title: title,
87
87
  isRequired: isRequired,
88
- description: description
88
+ description: description,
89
+ isModal: isModal
89
90
  })
90
91
  }) : /*#__PURE__*/ jsx(Description, {
91
92
  title: title,
92
93
  isRequired: isRequired,
93
- description: description
94
+ description: description,
95
+ isModal: isModal
94
96
  })
95
97
  ]
96
98
  })
@@ -105,9 +107,9 @@ function TicketDescription(param) {
105
107
  });
106
108
  }
107
109
  var Description = function(param) {
108
- var title = param.title, isRequired = param.isRequired, description = param.description;
110
+ var title = param.title, isRequired = param.isRequired, description = param.description, isModal = param.isModal;
109
111
  return /*#__PURE__*/ jsx("div", {
110
- className: "description-content",
112
+ className: clsx('description-content', isModal && 'ml-4 mt-2'),
111
113
  children: /*#__PURE__*/ jsxs("div", {
112
114
  className: "d-flex flex-column",
113
115
  children: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@licklist/design",
3
- "version": "0.71.18-dev.13",
3
+ "version": "0.71.18-dev.15",
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.12",
45
+ "@licklist/core": "0.31.2-dev.14",
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.12",
64
+ "@licklist/core": "0.31.2-dev.14",
65
65
  "@licklist/eslint-config": "0.5.6",
66
66
  "@licklist/plugins": "0.35.1-dev.8",
67
67
  "@mantine/core": "6.0.22",
@@ -17,6 +17,7 @@ interface IntervalInputProps {
17
17
  productSets?: ProductSet[]
18
18
  productSetId?: number
19
19
  disabled?: boolean
20
+ disabledRecurrent?: boolean
20
21
  }
21
22
 
22
23
  export interface IntervalInputValues {
@@ -30,6 +31,7 @@ export function IntervalInput({
30
31
  editedProductSet,
31
32
  productSetId,
32
33
  productSets,
34
+ disabledRecurrent = false,
33
35
  }: IntervalInputProps) {
34
36
  const { t } = useTranslation(['Design', 'Validation'])
35
37
  const {
@@ -46,7 +48,7 @@ export function IntervalInput({
46
48
  const rrule = useWatch({ control, name: 'rrule' })
47
49
  const start = useWatch({ control, name: 'start' })
48
50
  const end = useWatch({ control, name: 'end' })
49
- const [recurrent, setRecurrent] = useState(Boolean(rrule))
51
+ const [recurrent, setRecurrent] = useState(disabledRecurrent ? false : Boolean(rrule))
50
52
  const [isOverriden, setIsOverriden] = useState(false)
51
53
  const recurrentId = useId()
52
54
 
@@ -153,7 +155,7 @@ export function IntervalInput({
153
155
  onChange={({ target: { checked } }) => {
154
156
  onChangeRecurrent(checked)
155
157
  }}
156
- disabled={disabled || Boolean(editedProductSet)}
158
+ disabled={disabled || Boolean(editedProductSet) || disabledRecurrent}
157
159
  />
158
160
  {!recurrent && (
159
161
  <Form.Text muted>
@@ -65,6 +65,7 @@ export interface EditEventFormProps extends HasPermissionProp {
65
65
  timeZone: string
66
66
  eventProductSet?: ProductSet
67
67
  overrideNameError?: string
68
+ disabledRecurrent?: boolean
68
69
  }
69
70
 
70
71
  const eventImageTypes = {
@@ -87,6 +88,7 @@ export const EditEventForm = ({
87
88
  timeZone,
88
89
  eventProductSet,
89
90
  overrideNameError,
91
+ disabledRecurrent = false,
90
92
  }: EditEventFormProps) => {
91
93
  const { t } = useTranslation(['Design', 'Validation'])
92
94
 
@@ -273,6 +275,7 @@ export const EditEventForm = ({
273
275
  disabled={disabled}
274
276
  productSetId={productSetId}
275
277
  productSets={productSets}
278
+ disabledRecurrent={disabledRecurrent}
276
279
  editedProductSet={editedProductSet}
277
280
  />
278
281
  {categories.length !== 0 && (
@@ -48,16 +48,17 @@ export const ProductWithModifierSetModal = ({
48
48
  </button>
49
49
  </div>
50
50
  <div className='right-block' id='select-event-container'>
51
- <div className='manual-booking-container'>
51
+ <div className={clsx('manual-booking-container', !product.images.length && 'tw-mt-8')}>
52
52
  <div className='manual-booking-header'>
53
53
  <TicketDescription
54
54
  title={product.name}
55
55
  description={product.description}
56
- className={clsx('iframe-event__product-description', !product.images && 'mt-4')}
56
+ className={clsx('iframe-event__product-description', !product.images.length && 'mt-6')}
57
57
  classNameProductModal='d-block'
58
58
  images={product.images}
59
59
  isRequired={product.isRequired}
60
60
  canExpand
61
+ isModal
61
62
  />
62
63
  </div>
63
64
  <ProductWithModifierSetForm
@@ -17,6 +17,7 @@ interface TicketDescriptionProps {
17
17
  price?: ReactNode
18
18
  isRequired?: boolean
19
19
  canExpand?: boolean
20
+ isModal?: boolean
20
21
  }
21
22
 
22
23
  const DESCRIPTION_MAX_LENGTH = 120
@@ -30,6 +31,7 @@ export function TicketDescription({
30
31
  price,
31
32
  isRequired = false,
32
33
  canExpand = true,
34
+ isModal= false
33
35
  }: TicketDescriptionProps) {
34
36
  const [isDescriptionExpanded, setIsDescriptionExpanded] = useState(false)
35
37
 
@@ -65,6 +67,7 @@ export function TicketDescription({
65
67
  title={title}
66
68
  isRequired={isRequired}
67
69
  description={description}
70
+ isModal={isModal}
68
71
  />
69
72
  </TextExpand>
70
73
  ) : (
@@ -72,6 +75,7 @@ export function TicketDescription({
72
75
  title={title}
73
76
  isRequired={isRequired}
74
77
  description={description}
78
+ isModal={isModal}
75
79
  />
76
80
  )}
77
81
  </div>
@@ -85,8 +89,9 @@ const Description = ({
85
89
  title,
86
90
  isRequired,
87
91
  description,
92
+ isModal
88
93
  }: Pick<TicketDescriptionProps, 'title' | 'isRequired' | 'description'>) => (
89
- <div className='description-content'>
94
+ <div className={clsx('description-content', isModal && 'ml-4 mt-2' )}>
90
95
  <div className='d-flex flex-column'>
91
96
  <div className='product-title'>
92
97
  {title} {isRequired && <span>*</span>}
package/yarn.lock CHANGED
@@ -2481,9 +2481,9 @@ __metadata:
2481
2481
  languageName: node
2482
2482
  linkType: hard
2483
2483
 
2484
- "@licklist/core@npm:0.31.2-dev.12":
2485
- version: 0.31.2-dev.12
2486
- resolution: "@licklist/core@npm:0.31.2-dev.12"
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"
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/9e98954d8f0924061f49227e81f1a86516381b38cca9218331b34ac5156af319e54adcb5e8940840b80b0580a0c0620c1df61c99372dc9f3c0612a61afb4c62d
2508
+ checksum: 10c0/dad613fdee795b1a1ef6435a89cbe46c4fd54fc3a76012e72d6637fa46b7084b306c40528963cde4a36b84bd722489feee628c4f59e1d8204583a1cd7cc756ac
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.12"
2523
+ "@licklist/core": "npm:0.31.2-dev.14"
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.12
2654
+ "@licklist/core": 0.31.2-dev.14
2655
2655
  "@licklist/eslint-config": 0.5.6
2656
2656
  "@licklist/plugins": 0.35.1-dev.8
2657
2657
  lodash: 4.17.21
@@ -5094,11 +5094,11 @@ __metadata:
5094
5094
  linkType: hard
5095
5095
 
5096
5096
  "@swc/types@npm:^0.1.9":
5097
- version: 0.1.17
5098
- resolution: "@swc/types@npm:0.1.17"
5097
+ version: 0.1.18
5098
+ resolution: "@swc/types@npm:0.1.18"
5099
5099
  dependencies:
5100
5100
  "@swc/counter": "npm:^0.1.3"
5101
- checksum: 10c0/29f5c8933a16042956f1adb7383e836ed7646cbf679826e78b53fdd0c08e8572cb42152e527b6b530a9bd1052d33d0972f90f589761ccd252c12652c9b7a72fc
5101
+ checksum: 10c0/0c34ed1670daeb991de87a79c859d68980def32caf02999ef906859d02a2ee13a7f998e84b40022ce970fdceea9f77005e4965038f5139b93035956118aae7ea
5102
5102
  languageName: node
5103
5103
  linkType: hard
5104
5104
 
@@ -5692,11 +5692,11 @@ __metadata:
5692
5692
  linkType: hard
5693
5693
 
5694
5694
  "@types/node@npm:*":
5695
- version: 22.13.4
5696
- resolution: "@types/node@npm:22.13.4"
5695
+ version: 22.13.5
5696
+ resolution: "@types/node@npm:22.13.5"
5697
5697
  dependencies:
5698
5698
  undici-types: "npm:~6.20.0"
5699
- checksum: 10c0/3a234fa7766a3efc382cf81f66f474c26cdab2f54f43f757634c81c0444eb2160c2dabbde9741e4983078a318a88515b65416b5f1ab5478548579d7b3ead1d95
5699
+ checksum: 10c0/a2e7ed7bb0690e439004779baedeb05159c5cc41ef6d81c7a6ebea5303fde4033669e1c0e41ff7453b45fd2fea8dbd55fddfcd052950c7fcae3167c970bca725
5700
5700
  languageName: node
5701
5701
  linkType: hard
5702
5702
 
@@ -8010,7 +8010,7 @@ __metadata:
8010
8010
  languageName: node
8011
8011
  linkType: hard
8012
8012
 
8013
- "call-bind-apply-helpers@npm:^1.0.0, call-bind-apply-helpers@npm:^1.0.1":
8013
+ "call-bind-apply-helpers@npm:^1.0.0, call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2":
8014
8014
  version: 1.0.2
8015
8015
  resolution: "call-bind-apply-helpers@npm:1.0.2"
8016
8016
  dependencies:
@@ -8100,9 +8100,9 @@ __metadata:
8100
8100
  linkType: hard
8101
8101
 
8102
8102
  "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":
8103
- version: 1.0.30001700
8104
- resolution: "caniuse-lite@npm:1.0.30001700"
8105
- checksum: 10c0/3d391bcdd193208166d3ad759de240b9c18ac3759dbd57195770f0fcd2eedcd47d5e853609aba1eee5a2def44b0a14eee457796bdb3451a27de0c8b27355017c
8103
+ version: 1.0.30001701
8104
+ resolution: "caniuse-lite@npm:1.0.30001701"
8105
+ checksum: 10c0/a814bd4dd8b49645ca51bc6ee42120660a36394bb54eb6084801d3f2bbb9471e5e1a9a8a25f44f83086a032d46e66b33031e2aa345f699b90a7e84a9836b819c
8106
8106
  languageName: node
8107
8107
  linkType: hard
8108
8108
 
@@ -8245,8 +8245,8 @@ __metadata:
8245
8245
  linkType: hard
8246
8246
 
8247
8247
  "chromatic@npm:^11.4.0":
8248
- version: 11.25.2
8249
- resolution: "chromatic@npm:11.25.2"
8248
+ version: 11.26.1
8249
+ resolution: "chromatic@npm:11.26.1"
8250
8250
  peerDependencies:
8251
8251
  "@chromatic-com/cypress": ^0.*.* || ^1.0.0
8252
8252
  "@chromatic-com/playwright": ^0.*.* || ^1.0.0
@@ -8259,7 +8259,7 @@ __metadata:
8259
8259
  chroma: dist/bin.js
8260
8260
  chromatic: dist/bin.js
8261
8261
  chromatic-cli: dist/bin.js
8262
- checksum: 10c0/2cb4bb40a062005292a4cd606321f6c9bdaa31e255e66bae12c780bca9b72e883c017ebe48c5a9228db88a010f5977571ef7dfdcdd4195ad0e7b955f9966d7df
8262
+ checksum: 10c0/959b18b35867535411dc8b30ff3927a5a39b5f0169db06af5c9d377d5fb7c31ca5a883de3662f5db792f2e0469a3c5a90db78f65e597c5c7e27b8f1c054a1f92
8263
8263
  languageName: node
8264
8264
  linkType: hard
8265
8265
 
@@ -8818,9 +8818,9 @@ __metadata:
8818
8818
  linkType: hard
8819
8819
 
8820
8820
  "country-flag-icons@npm:^1.0.2":
8821
- version: 1.5.16
8822
- resolution: "country-flag-icons@npm:1.5.16"
8823
- checksum: 10c0/98ae352dbe5ed143b15d422816e5435de1329013de58aae028753a35d4a00c0e8b413626f05377e26ee96b588cca6b21f15d46b99cff0fe583db5a19e7d1da8b
8821
+ version: 1.5.18
8822
+ resolution: "country-flag-icons@npm:1.5.18"
8823
+ checksum: 10c0/99aa10f23521c81512da721885f91a419261ba2608020497b42b98ec4a2f33e26c8f9cad3a4d42a4f582018be8ade9ea67600768ffaa46746e325a6d5ba24a59
8824
8824
  languageName: node
8825
8825
  linkType: hard
8826
8826
 
@@ -8944,7 +8944,7 @@ __metadata:
8944
8944
  languageName: node
8945
8945
  linkType: hard
8946
8946
 
8947
- "cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3":
8947
+ "cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3, cross-spawn@npm:^7.0.6":
8948
8948
  version: 7.0.6
8949
8949
  resolution: "cross-spawn@npm:7.0.6"
8950
8950
  dependencies:
@@ -9889,9 +9889,9 @@ __metadata:
9889
9889
  linkType: hard
9890
9890
 
9891
9891
  "electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.73":
9892
- version: 1.5.102
9893
- resolution: "electron-to-chromium@npm:1.5.102"
9894
- checksum: 10c0/db07dab3ee3b7fbc39ad26203925669ade86b12a62d09fa14ae48a354a0f34d162ac9a2ca9d6f70ceb1b16821b01b155e56467702bcc915da1e1dd147dd034b4
9892
+ version: 1.5.105
9893
+ resolution: "electron-to-chromium@npm:1.5.105"
9894
+ checksum: 10c0/c5956af18fb8888938509810f754621c2c0e71e9aef305e76abb7cadef6440d9a2404eae942fea256c473e031d67d71857341786d381fbb69a734c8afba549c2
9895
9895
  languageName: node
9896
9896
  linkType: hard
9897
9897
 
@@ -10219,7 +10219,7 @@ __metadata:
10219
10219
  languageName: node
10220
10220
  linkType: hard
10221
10221
 
10222
- "es-object-atoms@npm:^1.0.0":
10222
+ "es-object-atoms@npm:^1.0.0, es-object-atoms@npm:^1.1.1":
10223
10223
  version: 1.1.1
10224
10224
  resolution: "es-object-atoms@npm:1.1.1"
10225
10225
  dependencies:
@@ -11003,11 +11003,11 @@ __metadata:
11003
11003
  linkType: hard
11004
11004
 
11005
11005
  "fastq@npm:^1.6.0":
11006
- version: 1.19.0
11007
- resolution: "fastq@npm:1.19.0"
11006
+ version: 1.19.1
11007
+ resolution: "fastq@npm:1.19.1"
11008
11008
  dependencies:
11009
11009
  reusify: "npm:^1.0.4"
11010
- checksum: 10c0/d6a001638f1574a696660fcbba5300d017760432372c801632c325ca7c16819604841c92fd3ccadcdacec0966ca336363a5ff57bc5f0be335d8ea7ac6087b98f
11010
+ checksum: 10c0/ebc6e50ac7048daaeb8e64522a1ea7a26e92b3cee5cd1c7f2316cdca81ba543aa40a136b53891446ea5c3a67ec215fbaca87ad405f102dd97012f62916905630
11011
11011
  languageName: node
11012
11012
  linkType: hard
11013
11013
 
@@ -11263,12 +11263,12 @@ __metadata:
11263
11263
  linkType: hard
11264
11264
 
11265
11265
  "foreground-child@npm:^3.1.0":
11266
- version: 3.3.0
11267
- resolution: "foreground-child@npm:3.3.0"
11266
+ version: 3.3.1
11267
+ resolution: "foreground-child@npm:3.3.1"
11268
11268
  dependencies:
11269
- cross-spawn: "npm:^7.0.0"
11269
+ cross-spawn: "npm:^7.0.6"
11270
11270
  signal-exit: "npm:^4.0.1"
11271
- checksum: 10c0/028f1d41000553fcfa6c4bb5c372963bf3d9bf0b1f25a87d1a6253014343fb69dfb1b42d9625d7cf44c8ba429940f3d0ff718b62105d4d4a4f6ef8ca0a53faa2
11271
+ checksum: 10c0/8986e4af2430896e65bc2788d6679067294d6aee9545daefc84923a0a4b399ad9c7a3ea7bd8c0b2b80fdf4a92de4c69df3f628233ff3224260e9c1541a9e9ed3
11272
11272
  languageName: node
11273
11273
  linkType: hard
11274
11274
 
@@ -11608,20 +11608,20 @@ __metadata:
11608
11608
  linkType: hard
11609
11609
 
11610
11610
  "get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.4, get-intrinsic@npm:^1.2.5, get-intrinsic@npm:^1.2.6, get-intrinsic@npm:^1.2.7":
11611
- version: 1.2.7
11612
- resolution: "get-intrinsic@npm:1.2.7"
11611
+ version: 1.3.0
11612
+ resolution: "get-intrinsic@npm:1.3.0"
11613
11613
  dependencies:
11614
- call-bind-apply-helpers: "npm:^1.0.1"
11614
+ call-bind-apply-helpers: "npm:^1.0.2"
11615
11615
  es-define-property: "npm:^1.0.1"
11616
11616
  es-errors: "npm:^1.3.0"
11617
- es-object-atoms: "npm:^1.0.0"
11617
+ es-object-atoms: "npm:^1.1.1"
11618
11618
  function-bind: "npm:^1.1.2"
11619
- get-proto: "npm:^1.0.0"
11619
+ get-proto: "npm:^1.0.1"
11620
11620
  gopd: "npm:^1.2.0"
11621
11621
  has-symbols: "npm:^1.1.0"
11622
11622
  hasown: "npm:^2.0.2"
11623
11623
  math-intrinsics: "npm:^1.1.0"
11624
- checksum: 10c0/b475dec9f8bff6f7422f51ff4b7b8d0b68e6776ee83a753c1d627e3008c3442090992788038b37eff72e93e43dceed8c1acbdf2d6751672687ec22127933080d
11624
+ checksum: 10c0/52c81808af9a8130f581e6a6a83e1ba4a9f703359e7a438d1369a5267a25412322f03dcbd7c549edaef0b6214a0630a28511d7df0130c93cfd380f4fa0b5b66a
11625
11625
  languageName: node
11626
11626
  linkType: hard
11627
11627
 
@@ -14929,11 +14929,11 @@ __metadata:
14929
14929
  linkType: hard
14930
14930
 
14931
14931
  "nan@npm:^2.12.1":
14932
- version: 2.22.0
14933
- resolution: "nan@npm:2.22.0"
14932
+ version: 2.22.2
14933
+ resolution: "nan@npm:2.22.2"
14934
14934
  dependencies:
14935
14935
  node-gyp: "npm:latest"
14936
- checksum: 10c0/d5d31aefdb218deba308d44867c5f432b4d3aabeb57c70a2b236d62652e9fee7044e5d5afd380d9fef022fe7ebb2f2d6c85ca3cbcac5031aaca3592c844526bb
14936
+ checksum: 10c0/971f963b8120631880fa47a389c71b00cadc1c1b00ef8f147782a3f4387d4fc8195d0695911272d57438c11562fb27b24c4ae5f8c05d5e4eeb4478ba51bb73c5
14937
14937
  languageName: node
14938
14938
  linkType: hard
14939
14939
 
@@ -16640,13 +16640,13 @@ __metadata:
16640
16640
  linkType: hard
16641
16641
 
16642
16642
  "postcss@npm:^8.2.6, postcss@npm:^8.4.23, postcss@npm:^8.4.39":
16643
- version: 8.5.2
16644
- resolution: "postcss@npm:8.5.2"
16643
+ version: 8.5.3
16644
+ resolution: "postcss@npm:8.5.3"
16645
16645
  dependencies:
16646
16646
  nanoid: "npm:^3.3.8"
16647
16647
  picocolors: "npm:^1.1.1"
16648
16648
  source-map-js: "npm:^1.2.1"
16649
- checksum: 10c0/3044d49bc725029ab62292e8bf9849741251b95f3b754e191bf8b4025414d40ec3b4ac05c5a563d4b50060b5c8e96683eb4d783d8d8fa3867eb7b763cbe66127
16649
+ checksum: 10c0/b75510d7b28c3ab728c8733dd01538314a18c52af426f199a3c9177e63eb08602a3938bfb66b62dc01350b9aed62087eabbf229af97a1659eb8d3513cec823b3
16650
16650
  languageName: node
16651
16651
  linkType: hard
16652
16652
 
@@ -16907,13 +16907,13 @@ __metadata:
16907
16907
  linkType: hard
16908
16908
 
16909
16909
  "prosemirror-commands@npm:^1.0.0, prosemirror-commands@npm:^1.2.1, prosemirror-commands@npm:^1.3.1":
16910
- version: 1.6.2
16911
- resolution: "prosemirror-commands@npm:1.6.2"
16910
+ version: 1.7.0
16911
+ resolution: "prosemirror-commands@npm:1.7.0"
16912
16912
  dependencies:
16913
16913
  prosemirror-model: "npm:^1.0.0"
16914
16914
  prosemirror-state: "npm:^1.0.0"
16915
16915
  prosemirror-transform: "npm:^1.10.2"
16916
- checksum: 10c0/3504d884d40aeb1f05857b562fe73f60cac2cac6b25b8127f03b40a795303090117cafbaefff399109b5ef3945404c8cdb118586a48ff74aeda927c985993613
16916
+ checksum: 10c0/b0c522bc1e54c11553d17f15616019245c8d493eb67069ebfd2afc8dd3d9c02ed8e3f484fc30ed98101795a3ea2284ca8da3015bbc50fa4f626cbd76696ddb53
16917
16917
  languageName: node
16918
16918
  linkType: hard
16919
16919
 
@@ -17377,13 +17377,13 @@ __metadata:
17377
17377
  linkType: hard
17378
17378
 
17379
17379
  "react-confetti@npm:^6.1.0":
17380
- version: 6.2.2
17381
- resolution: "react-confetti@npm:6.2.2"
17380
+ version: 6.2.3
17381
+ resolution: "react-confetti@npm:6.2.3"
17382
17382
  dependencies:
17383
17383
  tween-functions: "npm:^1.2.0"
17384
17384
  peerDependencies:
17385
17385
  react: ^16.3.0 || ^17.0.1 || ^18.0.0 || ^19.0.0
17386
- checksum: 10c0/c25250acc18a7e66a2a41aa429fee70a1e56346a73dced7aa64d8c8e87b96b478eb90933b530d1857832785eeb4a5978c5cb30080d187d32bbc68c3c0ef7f0a9
17386
+ checksum: 10c0/44d286c6c3d553a9b6fd92e9bdb9b0e0d0e0663b1097a95c5d6931d93185912d4bc660f78cbe5be94f97855f6d78f3a533ad025ce578cd657f7256a264b28a8b
17387
17387
  languageName: node
17388
17388
  linkType: hard
17389
17389
 
@@ -18769,9 +18769,9 @@ __metadata:
18769
18769
  linkType: hard
18770
18770
 
18771
18771
  "reusify@npm:^1.0.4":
18772
- version: 1.0.4
18773
- resolution: "reusify@npm:1.0.4"
18774
- checksum: 10c0/c19ef26e4e188f408922c46f7ff480d38e8dfc55d448310dfb518736b23ed2c4f547fb64a6ed5bdba92cd7e7ddc889d36ff78f794816d5e71498d645ef476107
18772
+ version: 1.1.0
18773
+ resolution: "reusify@npm:1.1.0"
18774
+ checksum: 10c0/4eff0d4a5f9383566c7d7ec437b671cc51b25963bd61bf127c3f3d3f68e44a026d99b8d2f1ad344afff8d278a8fe70a8ea092650a716d22287e8bef7126bb2fa
18775
18775
  languageName: node
18776
18776
  linkType: hard
18777
18777
 
@@ -19054,11 +19054,11 @@ __metadata:
19054
19054
  linkType: hard
19055
19055
 
19056
19056
  "rxjs@npm:^7.5.5":
19057
- version: 7.8.1
19058
- resolution: "rxjs@npm:7.8.1"
19057
+ version: 7.8.2
19058
+ resolution: "rxjs@npm:7.8.2"
19059
19059
  dependencies:
19060
19060
  tslib: "npm:^2.1.0"
19061
- checksum: 10c0/3c49c1ecd66170b175c9cacf5cef67f8914dcbc7cd0162855538d365c83fea631167cacb644b3ce533b2ea0e9a4d0b12175186985f89d75abe73dbd8f7f06f68
19061
+ checksum: 10c0/1fcd33d2066ada98ba8f21fcbbcaee9f0b271de1d38dc7f4e256bfbc6ffcdde68c8bfb69093de7eeb46f24b1fb820620bf0223706cff26b4ab99a7ff7b2e2c45
19062
19062
  languageName: node
19063
19063
  linkType: hard
19064
19064