@licklist/design 0.72.0-stage.3 → 0.72.0-stage.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.
- package/dist/events/edit-event-modal/IntervalInput.d.ts +2 -1
- package/dist/events/edit-event-modal/IntervalInput.d.ts.map +1 -1
- package/dist/events/edit-event-modal/IntervalInput.js +9 -2
- package/dist/events/edit-event-modal/component/EditEventForm/EditEventForm.d.ts +2 -1
- package/dist/events/edit-event-modal/component/EditEventForm/EditEventForm.d.ts.map +1 -1
- package/dist/events/edit-event-modal/component/EditEventForm/EditEventForm.js +9 -5
- package/dist/events/edit-recurrent-event-modal/EditRecurrentEventModal.d.ts +5 -1
- package/dist/events/edit-recurrent-event-modal/EditRecurrentEventModal.d.ts.map +1 -1
- package/dist/events/edit-recurrent-event-modal/EditRecurrentEventModal.js +5 -3
- package/dist/index.js +1 -1
- package/dist/recurrence-input/RecurrenceInput.d.ts.map +1 -1
- package/dist/recurrence-input/RecurrenceInput.js +7 -3
- package/package.json +1 -1
- package/src/events/edit-event-modal/IntervalInput.tsx +7 -2
- package/src/events/edit-event-modal/component/EditEventForm/EditEventForm.tsx +11 -1
- package/src/events/edit-recurrent-event-modal/EditRecurrentEventModal.tsx +9 -1
- package/src/recurrence-input/RecurrenceInput.tsx +8 -3
- package/yarn.lock +124 -124
|
@@ -6,12 +6,13 @@ interface IntervalInputProps {
|
|
|
6
6
|
productSetId?: number;
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
disabledRecurrent?: boolean;
|
|
9
|
+
isCopyCreate?: boolean;
|
|
9
10
|
}
|
|
10
11
|
export interface IntervalInputValues {
|
|
11
12
|
start: string;
|
|
12
13
|
end: string;
|
|
13
14
|
rrule: string | null;
|
|
14
15
|
}
|
|
15
|
-
export declare function IntervalInput({ disabled, editedProductSet, productSetId, productSets, disabledRecurrent, }: IntervalInputProps): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export declare function IntervalInput({ disabled, editedProductSet, productSetId, productSets, disabledRecurrent, isCopyCreate }: IntervalInputProps): import("react/jsx-runtime").JSX.Element;
|
|
16
17
|
export {};
|
|
17
18
|
//# 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;IAClB,iBAAiB,CAAC,EAAE,OAAO,CAAA;
|
|
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;IAC3B,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB;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,EACzB,YAAoB,EACrB,EAAE,kBAAkB,2CAkKpB"}
|
|
@@ -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, _param_disabledRecurrent = param.disabledRecurrent, disabledRecurrent = _param_disabledRecurrent === void 0 ? false : _param_disabledRecurrent;
|
|
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, _param_isCopyCreate = param.isCopyCreate, isCopyCreate = _param_isCopyCreate === void 0 ? false : _param_isCopyCreate;
|
|
114
114
|
var _errors_start, _errors_end;
|
|
115
115
|
var t = useTranslation([
|
|
116
116
|
'Design',
|
|
@@ -152,7 +152,14 @@ function IntervalInput(param) {
|
|
|
152
152
|
}, [
|
|
153
153
|
editedProductSet
|
|
154
154
|
]);
|
|
155
|
-
useEffect(function() {
|
|
155
|
+
useEffect(function() {
|
|
156
|
+
if (!isCopyCreate) return;
|
|
157
|
+
setRecurrent(false);
|
|
158
|
+
setValue('rrule', null);
|
|
159
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
160
|
+
}, [
|
|
161
|
+
isCopyCreate
|
|
162
|
+
]);
|
|
156
163
|
useEffect(function() {
|
|
157
164
|
if (!productSets) return;
|
|
158
165
|
var isOverridenProductSet = productSets.find(function(productSet) {
|
|
@@ -37,6 +37,7 @@ export interface EditEventFormProps extends HasPermissionProp {
|
|
|
37
37
|
eventProductSet?: ProductSet;
|
|
38
38
|
overrideNameError?: string;
|
|
39
39
|
disabledRecurrent?: boolean;
|
|
40
|
+
isCopyCreate?: boolean;
|
|
40
41
|
}
|
|
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;
|
|
42
|
+
export declare const EditEventForm: ({ disabled, categories, title, hasPermission, defaultEventValues, serverErrors, onSaveEvent, productSets, createProductSet, setEditProductSetId, isExternalPaymentLinkEnabled, timeZone, eventProductSet, overrideNameError, disabledRecurrent, isCopyCreate, }: EditEventFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
42
43
|
//# 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;
|
|
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;AAO7D,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;IAC3B,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB;AAOD,eAAO,MAAM,aAAa,oQAiBvB,kBAAkB,4CAyWpB,CAAA"}
|
|
@@ -3,6 +3,7 @@ import { useState, useCallback, useEffect } from 'react';
|
|
|
3
3
|
import { IMAGE_TYPE_MAP, IMAGE_TYPE_IMAGE, IMAGE_TYPE_COVER } from '@licklist/core/dist/DataMapper/Media/ImageDataMapper';
|
|
4
4
|
import { useId } from '@react-aria/utils';
|
|
5
5
|
import { Modal, Form, Accordion, Button } from 'react-bootstrap';
|
|
6
|
+
import { isEqual } from 'lodash';
|
|
6
7
|
import { useForm, FormProvider, Controller } from 'react-hook-form';
|
|
7
8
|
import { DateTime } from 'luxon';
|
|
8
9
|
import { useTranslation } from 'react-i18next';
|
|
@@ -139,7 +140,7 @@ var eventImageTypes = {
|
|
|
139
140
|
uploadCover: IMAGE_TYPE_MAP[IMAGE_TYPE_COVER]
|
|
140
141
|
};
|
|
141
142
|
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, _param_disabledRecurrent = param.disabledRecurrent, disabledRecurrent = _param_disabledRecurrent === void 0 ? false : _param_disabledRecurrent;
|
|
143
|
+
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, _param_isCopyCreate = param.isCopyCreate, isCopyCreate = _param_isCopyCreate === void 0 ? false : _param_isCopyCreate;
|
|
143
144
|
var _defaultEventValues_rrule, _defaultEventValues_rrule1, _errors_name, _errors_externalPaymentLink, _errors_integrationUrl;
|
|
144
145
|
var t = useTranslation([
|
|
145
146
|
'Design',
|
|
@@ -162,6 +163,7 @@ var EditEventForm = function(param) {
|
|
|
162
163
|
var productSetId = watch('productSetId');
|
|
163
164
|
var rrule = watch('rrule');
|
|
164
165
|
var _useMultipleImages = useMultipleImages(initialImages), images = _useMultipleImages.images, handleImageRemove = _useMultipleImages.handleImageRemove, handleImageUploading = _useMultipleImages.handleImageUploading, isImagesLoading = _useMultipleImages.isImagesLoading, isCoverImagesLoading = _useMultipleImages.isCoverImagesLoading;
|
|
166
|
+
var watchedValues = watch();
|
|
165
167
|
var onErrorSubmit = function(submitErrors) {
|
|
166
168
|
scrollToError(getFirstErrorKey(submitErrors));
|
|
167
169
|
};
|
|
@@ -218,6 +220,7 @@ var EditEventForm = function(param) {
|
|
|
218
220
|
defaultExDate,
|
|
219
221
|
rrule
|
|
220
222
|
]);
|
|
223
|
+
var isChanged = !isEqual(watchedValues, sanitizeDefaultValues(defaultEventValues));
|
|
221
224
|
return /*#__PURE__*/ jsxs(Fragment, {
|
|
222
225
|
children: [
|
|
223
226
|
/*#__PURE__*/ jsx(Dialog, {
|
|
@@ -315,7 +318,8 @@ var EditEventForm = function(param) {
|
|
|
315
318
|
productSetId: productSetId,
|
|
316
319
|
productSets: productSets,
|
|
317
320
|
disabledRecurrent: disabledRecurrent,
|
|
318
|
-
editedProductSet: editedProductSet
|
|
321
|
+
editedProductSet: editedProductSet,
|
|
322
|
+
isCopyCreate: isCopyCreate
|
|
319
323
|
}, watch('name')),
|
|
320
324
|
categories.length !== 0 && /*#__PURE__*/ jsx(Form.Group, {
|
|
321
325
|
children: /*#__PURE__*/ jsx(Accordion, {
|
|
@@ -481,7 +485,7 @@ var EditEventForm = function(param) {
|
|
|
481
485
|
overrideNameError: overrideNameError
|
|
482
486
|
}),
|
|
483
487
|
hasPermission && !showEditProductSet && /*#__PURE__*/ jsx(Button, {
|
|
484
|
-
disabled: disabled || formState.isSubmitting || isImagesLoading || isCoverImagesLoading,
|
|
488
|
+
disabled: disabled || formState.isSubmitting || !isChanged || isImagesLoading || isCoverImagesLoading,
|
|
485
489
|
className: "save-event",
|
|
486
490
|
type: "submit",
|
|
487
491
|
children: formState.isSubmitting ? "".concat(t('saveAndAdd'), "...") : t('saveAndAdd')
|
|
@@ -506,7 +510,7 @@ var sanitizeDefaultValues = function(values) {
|
|
|
506
510
|
suppressSeconds: true
|
|
507
511
|
});
|
|
508
512
|
};
|
|
509
|
-
var _values_name, _values_description, _values_startAt, _values_endAt, _values_rrule, _values_categories, _values_termsAndConditions, _values_visible, _values_externalPaymentLink, _values_integrationUrl, _values_recurrenceEndAt;
|
|
513
|
+
var _values_name, _values_description, _values_startAt, _values_endAt, _values_rrule, _values_categories, _values_termsAndConditions, _values_visible, _values_externalPaymentLink, _values_images, _values_integrationUrl, _values_recurrenceEndAt;
|
|
510
514
|
return {
|
|
511
515
|
name: (_values_name = values === null || values === void 0 ? void 0 : values.name) !== null && _values_name !== void 0 ? _values_name : '',
|
|
512
516
|
description: (_values_description = values === null || values === void 0 ? void 0 : values.description) !== null && _values_description !== void 0 ? _values_description : '',
|
|
@@ -518,7 +522,7 @@ var sanitizeDefaultValues = function(values) {
|
|
|
518
522
|
visible: (_values_visible = values === null || values === void 0 ? void 0 : values.visible) !== null && _values_visible !== void 0 ? _values_visible : '',
|
|
519
523
|
externalPaymentLink: (_values_externalPaymentLink = values === null || values === void 0 ? void 0 : values.externalPaymentLink) !== null && _values_externalPaymentLink !== void 0 ? _values_externalPaymentLink : '',
|
|
520
524
|
productSetId: values === null || values === void 0 ? void 0 : values.productSetId,
|
|
521
|
-
images: values === null || values === void 0 ? void 0 : values.images,
|
|
525
|
+
images: (_values_images = values === null || values === void 0 ? void 0 : values.images) !== null && _values_images !== void 0 ? _values_images : [],
|
|
522
526
|
saleDeadline: values === null || values === void 0 ? void 0 : values.saleDeadline,
|
|
523
527
|
integrationUrl: (_values_integrationUrl = values === null || values === void 0 ? void 0 : values.integrationUrl) !== null && _values_integrationUrl !== void 0 ? _values_integrationUrl : '',
|
|
524
528
|
recurrenceEndAt: (_values_recurrenceEndAt = values === null || values === void 0 ? void 0 : values.recurrenceEndAt) !== null && _values_recurrenceEndAt !== void 0 ? _values_recurrenceEndAt : undefined
|
|
@@ -8,6 +8,9 @@ export declare const RECURRENT_MODE_TYPES_LIST: {
|
|
|
8
8
|
thisAndFollowingEvents: number;
|
|
9
9
|
allEvents: number;
|
|
10
10
|
};
|
|
11
|
+
export declare const RECURRENT_MODE_TYPES_WITHOUT_ALL: {
|
|
12
|
+
thisEvent: number;
|
|
13
|
+
};
|
|
11
14
|
export type RecurrentEventMode = (typeof MODES)[number];
|
|
12
15
|
export type EditRecurrentEventModalValues = {
|
|
13
16
|
mode: RecurrentEventMode;
|
|
@@ -18,7 +21,8 @@ export type EditRecurrentEventModalProps = {
|
|
|
18
21
|
onHide: () => void;
|
|
19
22
|
title: string;
|
|
20
23
|
onSubmit: (values: EditRecurrentEventModalValues) => void;
|
|
24
|
+
isDateWasChanged?: boolean;
|
|
21
25
|
};
|
|
22
|
-
export declare const EditRecurrentEventModal: ({ disabled, isOpen, onHide, title, onSubmit, }: EditRecurrentEventModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
export declare const EditRecurrentEventModal: ({ disabled, isOpen, onHide, title, onSubmit, isDateWasChanged }: EditRecurrentEventModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
27
|
export {};
|
|
24
28
|
//# sourceMappingURL=EditRecurrentEventModal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EditRecurrentEventModal.d.ts","sourceRoot":"","sources":["../../../src/events/edit-recurrent-event-modal/EditRecurrentEventModal.tsx"],"names":[],"mappings":"AAKA,eAAO,MAAM,eAAe,cAAc,CAAA;AAC1C,eAAO,MAAM,8BAA8B,2BAA2B,CAAA;AACtE,eAAO,MAAM,eAAe,cAAc,CAAA;AAE1C,QAAA,MAAM,KAAK,+DAID,CAAA;AAEV,eAAO,MAAM,2BAA2B,cAAkB,CAAA;AAE1D,eAAO,MAAM,yBAAyB;;;;CAIrC,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAA;AAEvD,MAAM,MAAM,6BAA6B,GAAG;IAC1C,IAAI,EAAE,kBAAkB,CAAA;CACzB,CAAA;AAED,MAAM,MAAM,4BAA4B,GAAG;IACzC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,EAAE,OAAO,CAAA;IACf,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,CAAC,MAAM,EAAE,6BAA6B,KAAK,IAAI,CAAA;
|
|
1
|
+
{"version":3,"file":"EditRecurrentEventModal.d.ts","sourceRoot":"","sources":["../../../src/events/edit-recurrent-event-modal/EditRecurrentEventModal.tsx"],"names":[],"mappings":"AAKA,eAAO,MAAM,eAAe,cAAc,CAAA;AAC1C,eAAO,MAAM,8BAA8B,2BAA2B,CAAA;AACtE,eAAO,MAAM,eAAe,cAAc,CAAA;AAE1C,QAAA,MAAM,KAAK,+DAID,CAAA;AAEV,eAAO,MAAM,2BAA2B,cAAkB,CAAA;AAE1D,eAAO,MAAM,yBAAyB;;;;CAIrC,CAAA;AAED,eAAO,MAAM,gCAAgC;;CAE5C,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAA;AAEvD,MAAM,MAAM,6BAA6B,GAAG;IAC1C,IAAI,EAAE,kBAAkB,CAAA;CACzB,CAAA;AAED,MAAM,MAAM,4BAA4B,GAAG;IACzC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,EAAE,OAAO,CAAA;IACf,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,CAAC,MAAM,EAAE,6BAA6B,KAAK,IAAI,CAAA;IACzD,gBAAgB,CAAC,EAAE,OAAO,CAAA;CAC3B,CAAA;AAED,eAAO,MAAM,uBAAuB,oEAOjC,4BAA4B,4CAkF9B,CAAA"}
|
|
@@ -23,14 +23,16 @@ var MODE_ALL_EVENTS = 'allEvents';
|
|
|
23
23
|
var DEFAULT_RECURRENT_MODE_TYPE = MODE_THIS_EVENT;
|
|
24
24
|
var _obj;
|
|
25
25
|
var RECURRENT_MODE_TYPES_LIST = (_obj = {}, _define_property(_obj, MODE_THIS_EVENT, 1), _define_property(_obj, MODE_THIS_AND_FOLLOWING_EVENTS, 2), _define_property(_obj, MODE_ALL_EVENTS, 3), _obj);
|
|
26
|
+
var RECURRENT_MODE_TYPES_WITHOUT_ALL = _define_property({}, MODE_THIS_EVENT, 1);
|
|
26
27
|
var EditRecurrentEventModal = function(param) {
|
|
27
|
-
var disabled = param.disabled, isOpen = param.isOpen, onHide = param.onHide, title = param.title, onSubmit = param.onSubmit;
|
|
28
|
+
var disabled = param.disabled, isOpen = param.isOpen, onHide = param.onHide, title = param.title, onSubmit = param.onSubmit, _param_isDateWasChanged = param.isDateWasChanged, isDateWasChanged = _param_isDateWasChanged === void 0 ? false : _param_isDateWasChanged;
|
|
28
29
|
var t = useTranslation('Design').t;
|
|
29
30
|
var _useForm = useForm({
|
|
30
31
|
defaultValues: {
|
|
31
32
|
mode: DEFAULT_RECURRENT_MODE_TYPE
|
|
32
33
|
}
|
|
33
34
|
}), control = _useForm.control, handleSubmit = _useForm.handleSubmit;
|
|
35
|
+
var recurrentListMode = isDateWasChanged ? RECURRENT_MODE_TYPES_WITHOUT_ALL : RECURRENT_MODE_TYPES_LIST;
|
|
34
36
|
return /*#__PURE__*/ jsx(Modal, {
|
|
35
37
|
show: isOpen,
|
|
36
38
|
onHide: onHide,
|
|
@@ -67,7 +69,7 @@ var EditRecurrentEventModal = function(param) {
|
|
|
67
69
|
render: function(param) {
|
|
68
70
|
var _param_field = param.field, value = _param_field.value, onChange = _param_field.onChange;
|
|
69
71
|
return /*#__PURE__*/ jsx(Fragment, {
|
|
70
|
-
children: Object.keys(
|
|
72
|
+
children: Object.keys(recurrentListMode).map(function(option) {
|
|
71
73
|
return /*#__PURE__*/ jsxs(Form.Check, {
|
|
72
74
|
type: "radio",
|
|
73
75
|
id: option,
|
|
@@ -120,4 +122,4 @@ var EditRecurrentEventModal = function(param) {
|
|
|
120
122
|
});
|
|
121
123
|
};
|
|
122
124
|
|
|
123
|
-
export { DEFAULT_RECURRENT_MODE_TYPE, EditRecurrentEventModal, MODE_ALL_EVENTS, MODE_THIS_AND_FOLLOWING_EVENTS, MODE_THIS_EVENT, RECURRENT_MODE_TYPES_LIST };
|
|
125
|
+
export { DEFAULT_RECURRENT_MODE_TYPE, EditRecurrentEventModal, MODE_ALL_EVENTS, MODE_THIS_AND_FOLLOWING_EVENTS, MODE_THIS_EVENT, RECURRENT_MODE_TYPES_LIST, RECURRENT_MODE_TYPES_WITHOUT_ALL };
|
package/dist/index.js
CHANGED
|
@@ -23,7 +23,7 @@ export { ErrorFallback } from './error/ErrorFallback.js';
|
|
|
23
23
|
export { ProductSetShortForm } from './events/edit-event-modal/component/ProductSetShortForm/ProductSetShortForm.js';
|
|
24
24
|
export { SelectEventProductSet } from './events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.js';
|
|
25
25
|
export { EditEventForm } from './events/edit-event-modal/component/EditEventForm/EditEventForm.js';
|
|
26
|
-
export { DEFAULT_RECURRENT_MODE_TYPE, EditRecurrentEventModal, MODE_ALL_EVENTS, MODE_THIS_AND_FOLLOWING_EVENTS, MODE_THIS_EVENT, RECURRENT_MODE_TYPES_LIST } from './events/edit-recurrent-event-modal/EditRecurrentEventModal.js';
|
|
26
|
+
export { DEFAULT_RECURRENT_MODE_TYPE, EditRecurrentEventModal, MODE_ALL_EVENTS, MODE_THIS_AND_FOLLOWING_EVENTS, MODE_THIS_EVENT, RECURRENT_MODE_TYPES_LIST, RECURRENT_MODE_TYPES_WITHOUT_ALL } from './events/edit-recurrent-event-modal/EditRecurrentEventModal.js';
|
|
27
27
|
export { EventCard } from './events/event-card/EventCard.js';
|
|
28
28
|
export { EventCardSkeleton } from './events/event-card/EventCardSkeleton.js';
|
|
29
29
|
export { EventStatisticModal } from './events/event-statistic-modal/EventStatisticModal.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecurrenceInput.d.ts","sourceRoot":"","sources":["../../src/recurrence-input/RecurrenceInput.tsx"],"names":[],"mappings":"AAIA,OAAc,EAAE,SAAS,EAAW,MAAM,OAAO,CAAA;AAWjD,MAAM,WAAW,oBAAoB;IACnC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IACjC,gBAAgB,CAAC,EAAE,SAAS,CAAA;CAC7B;AAED,wBAAgB,eAAe,CAAC,EAC9B,QAAgB,EAChB,IAAI,EACJ,OAAO,EACP,KAAK,EACL,QAAQ,EACR,gBAAmC,GACpC,EAAE,oBAAoB,
|
|
1
|
+
{"version":3,"file":"RecurrenceInput.d.ts","sourceRoot":"","sources":["../../src/recurrence-input/RecurrenceInput.tsx"],"names":[],"mappings":"AAIA,OAAc,EAAE,SAAS,EAAW,MAAM,OAAO,CAAA;AAWjD,MAAM,WAAW,oBAAoB;IACnC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IACjC,gBAAgB,CAAC,EAAE,SAAS,CAAA;CAC7B;AAED,wBAAgB,eAAe,CAAC,EAC9B,QAAgB,EAChB,IAAI,EACJ,OAAO,EACP,KAAK,EACL,QAAQ,EACR,gBAAmC,GACpC,EAAE,oBAAoB,2CAwEtB"}
|
|
@@ -117,9 +117,13 @@ function RecurrenceInput(param) {
|
|
|
117
117
|
})), 2), state = _useReducer[0], updateState = _useReducer[1];
|
|
118
118
|
useEffect(// TODO: unhardcode timezone
|
|
119
119
|
function() {
|
|
120
|
-
return onChange(RRule.optionsToString(
|
|
120
|
+
return onChange(RRule.optionsToString({
|
|
121
|
+
freq: state.freq,
|
|
122
|
+
count: state.count,
|
|
123
|
+
interval: state.interval,
|
|
124
|
+
byweekday: state.byweekday,
|
|
121
125
|
tzid: 'Europe/London'
|
|
122
|
-
})
|
|
126
|
+
}).replace('RRULE:', ''));
|
|
123
127
|
}, [
|
|
124
128
|
state
|
|
125
129
|
]);
|
|
@@ -131,8 +135,8 @@ function RecurrenceInput(param) {
|
|
|
131
135
|
onChange: function(param) {
|
|
132
136
|
var interval = param.interval, frequency = param.frequency;
|
|
133
137
|
updateState({
|
|
134
|
-
interval: interval,
|
|
135
138
|
freq: frequency,
|
|
139
|
+
interval: interval,
|
|
136
140
|
byweekday: frequency === state.freq ? state.byweekday : frequency === RRule.WEEKLY ? [
|
|
137
141
|
getWeekdayForFrequency({
|
|
138
142
|
date: date,
|
package/package.json
CHANGED
|
@@ -18,6 +18,7 @@ interface IntervalInputProps {
|
|
|
18
18
|
productSetId?: number
|
|
19
19
|
disabled?: boolean
|
|
20
20
|
disabledRecurrent?: boolean
|
|
21
|
+
isCopyCreate?: boolean
|
|
21
22
|
}
|
|
22
23
|
|
|
23
24
|
export interface IntervalInputValues {
|
|
@@ -32,6 +33,7 @@ export function IntervalInput({
|
|
|
32
33
|
productSetId,
|
|
33
34
|
productSets,
|
|
34
35
|
disabledRecurrent = false,
|
|
36
|
+
isCopyCreate = false
|
|
35
37
|
}: IntervalInputProps) {
|
|
36
38
|
const { t } = useTranslation(['Design', 'Validation'])
|
|
37
39
|
const {
|
|
@@ -74,8 +76,11 @@ export function IntervalInput({
|
|
|
74
76
|
}, [editedProductSet])
|
|
75
77
|
|
|
76
78
|
useEffect(() => {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
+
if (!isCopyCreate) return
|
|
80
|
+
setRecurrent(false)
|
|
81
|
+
setValue('rrule', null)
|
|
82
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
83
|
+
}, [isCopyCreate])
|
|
79
84
|
|
|
80
85
|
useEffect(() => {
|
|
81
86
|
if (!productSets) return
|
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
} from '@licklist/core/dist/DataMapper/Media/ImageDataMapper'
|
|
9
9
|
import { useId } from '@react-aria/utils'
|
|
10
10
|
import { Accordion, Button, Form, Modal } from 'react-bootstrap'
|
|
11
|
+
import { isEqual } from 'lodash'
|
|
11
12
|
import { FormProvider, useForm, Controller } from 'react-hook-form'
|
|
12
13
|
import { DateTime } from 'luxon'
|
|
13
14
|
import { useTranslation } from 'react-i18next'
|
|
@@ -66,6 +67,7 @@ export interface EditEventFormProps extends HasPermissionProp {
|
|
|
66
67
|
eventProductSet?: ProductSet
|
|
67
68
|
overrideNameError?: string
|
|
68
69
|
disabledRecurrent?: boolean
|
|
70
|
+
isCopyCreate?: boolean
|
|
69
71
|
}
|
|
70
72
|
|
|
71
73
|
const eventImageTypes = {
|
|
@@ -89,6 +91,7 @@ export const EditEventForm = ({
|
|
|
89
91
|
eventProductSet,
|
|
90
92
|
overrideNameError,
|
|
91
93
|
disabledRecurrent = false,
|
|
94
|
+
isCopyCreate = false,
|
|
92
95
|
}: EditEventFormProps) => {
|
|
93
96
|
const { t } = useTranslation(['Design', 'Validation'])
|
|
94
97
|
|
|
@@ -137,6 +140,8 @@ export const EditEventForm = ({
|
|
|
137
140
|
isCoverImagesLoading,
|
|
138
141
|
} = useMultipleImages(initialImages)
|
|
139
142
|
|
|
143
|
+
const watchedValues = watch()
|
|
144
|
+
|
|
140
145
|
const onErrorSubmit = (submitErrors) => {
|
|
141
146
|
scrollToError(getFirstErrorKey(submitErrors))
|
|
142
147
|
}
|
|
@@ -190,6 +195,9 @@ export const EditEventForm = ({
|
|
|
190
195
|
rrule && setValue('rrule', rrule?.concat(`;EXDATE=${defaultExDate}`))
|
|
191
196
|
}, [defaultExDate, rrule])
|
|
192
197
|
|
|
198
|
+
|
|
199
|
+
const isChanged = !isEqual(watchedValues, sanitizeDefaultValues(defaultEventValues));
|
|
200
|
+
|
|
193
201
|
return (
|
|
194
202
|
<>
|
|
195
203
|
<Dialog
|
|
@@ -286,6 +294,7 @@ export const EditEventForm = ({
|
|
|
286
294
|
productSets={productSets}
|
|
287
295
|
disabledRecurrent={disabledRecurrent}
|
|
288
296
|
editedProductSet={editedProductSet}
|
|
297
|
+
isCopyCreate={isCopyCreate}
|
|
289
298
|
/>
|
|
290
299
|
{categories.length !== 0 && (
|
|
291
300
|
<Form.Group>
|
|
@@ -428,6 +437,7 @@ export const EditEventForm = ({
|
|
|
428
437
|
disabled={
|
|
429
438
|
disabled ||
|
|
430
439
|
formState.isSubmitting ||
|
|
440
|
+
!isChanged ||
|
|
431
441
|
isImagesLoading ||
|
|
432
442
|
isCoverImagesLoading
|
|
433
443
|
}
|
|
@@ -474,7 +484,7 @@ const sanitizeDefaultValues = (
|
|
|
474
484
|
visible: values?.visible ?? '',
|
|
475
485
|
externalPaymentLink: values?.externalPaymentLink ?? '',
|
|
476
486
|
productSetId: values?.productSetId,
|
|
477
|
-
images: values?.images,
|
|
487
|
+
images: values?.images ?? [],
|
|
478
488
|
saleDeadline: values?.saleDeadline,
|
|
479
489
|
integrationUrl: values?.integrationUrl ?? '',
|
|
480
490
|
recurrenceEndAt: values?.recurrenceEndAt ?? undefined,
|
|
@@ -21,6 +21,10 @@ export const RECURRENT_MODE_TYPES_LIST = {
|
|
|
21
21
|
[MODE_ALL_EVENTS]: 3,
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
export const RECURRENT_MODE_TYPES_WITHOUT_ALL = {
|
|
25
|
+
[MODE_THIS_EVENT]: 1,
|
|
26
|
+
}
|
|
27
|
+
|
|
24
28
|
export type RecurrentEventMode = (typeof MODES)[number]
|
|
25
29
|
|
|
26
30
|
export type EditRecurrentEventModalValues = {
|
|
@@ -33,6 +37,7 @@ export type EditRecurrentEventModalProps = {
|
|
|
33
37
|
onHide: () => void
|
|
34
38
|
title: string
|
|
35
39
|
onSubmit: (values: EditRecurrentEventModalValues) => void
|
|
40
|
+
isDateWasChanged?: boolean
|
|
36
41
|
}
|
|
37
42
|
|
|
38
43
|
export const EditRecurrentEventModal = ({
|
|
@@ -41,6 +46,7 @@ export const EditRecurrentEventModal = ({
|
|
|
41
46
|
onHide,
|
|
42
47
|
title,
|
|
43
48
|
onSubmit,
|
|
49
|
+
isDateWasChanged = false
|
|
44
50
|
}: EditRecurrentEventModalProps) => {
|
|
45
51
|
const { t } = useTranslation('Design')
|
|
46
52
|
|
|
@@ -50,6 +56,8 @@ export const EditRecurrentEventModal = ({
|
|
|
50
56
|
},
|
|
51
57
|
})
|
|
52
58
|
|
|
59
|
+
const recurrentListMode = isDateWasChanged? RECURRENT_MODE_TYPES_WITHOUT_ALL : RECURRENT_MODE_TYPES_LIST
|
|
60
|
+
|
|
53
61
|
return (
|
|
54
62
|
<Modal
|
|
55
63
|
show={isOpen}
|
|
@@ -75,7 +83,7 @@ export const EditRecurrentEventModal = ({
|
|
|
75
83
|
<Controller
|
|
76
84
|
render={({ field: { value, onChange } }) => (
|
|
77
85
|
<>
|
|
78
|
-
{Object.keys(
|
|
86
|
+
{Object.keys(recurrentListMode).map((option) => (
|
|
79
87
|
<Form.Check
|
|
80
88
|
type='radio'
|
|
81
89
|
id={option}
|
|
@@ -39,8 +39,13 @@ export function RecurrenceInput({
|
|
|
39
39
|
// TODO: unhardcode timezone
|
|
40
40
|
() =>
|
|
41
41
|
onChange(
|
|
42
|
-
RRule.optionsToString({
|
|
43
|
-
.
|
|
42
|
+
RRule.optionsToString({
|
|
43
|
+
freq: state.freq,
|
|
44
|
+
count: state.count,
|
|
45
|
+
interval: state.interval,
|
|
46
|
+
byweekday: state.byweekday,
|
|
47
|
+
tzid: 'Europe/London',
|
|
48
|
+
}).replace('RRULE:', ''),
|
|
44
49
|
),
|
|
45
50
|
[state],
|
|
46
51
|
)
|
|
@@ -52,8 +57,8 @@ export function RecurrenceInput({
|
|
|
52
57
|
frequency={state.freq}
|
|
53
58
|
onChange={({ interval, frequency }) => {
|
|
54
59
|
updateState({
|
|
55
|
-
interval,
|
|
56
60
|
freq: frequency,
|
|
61
|
+
interval,
|
|
57
62
|
byweekday:
|
|
58
63
|
frequency === state.freq
|
|
59
64
|
? state.byweekday
|
package/yarn.lock
CHANGED
|
@@ -3303,135 +3303,135 @@ __metadata:
|
|
|
3303
3303
|
languageName: node
|
|
3304
3304
|
linkType: hard
|
|
3305
3305
|
|
|
3306
|
-
"@rollup/rollup-android-arm-eabi@npm:4.34.
|
|
3307
|
-
version: 4.34.
|
|
3308
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.34.
|
|
3306
|
+
"@rollup/rollup-android-arm-eabi@npm:4.34.9":
|
|
3307
|
+
version: 4.34.9
|
|
3308
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.34.9"
|
|
3309
3309
|
conditions: os=android & cpu=arm
|
|
3310
3310
|
languageName: node
|
|
3311
3311
|
linkType: hard
|
|
3312
3312
|
|
|
3313
|
-
"@rollup/rollup-android-arm64@npm:4.34.
|
|
3314
|
-
version: 4.34.
|
|
3315
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.34.
|
|
3313
|
+
"@rollup/rollup-android-arm64@npm:4.34.9":
|
|
3314
|
+
version: 4.34.9
|
|
3315
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.34.9"
|
|
3316
3316
|
conditions: os=android & cpu=arm64
|
|
3317
3317
|
languageName: node
|
|
3318
3318
|
linkType: hard
|
|
3319
3319
|
|
|
3320
|
-
"@rollup/rollup-darwin-arm64@npm:4.34.
|
|
3321
|
-
version: 4.34.
|
|
3322
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.34.
|
|
3320
|
+
"@rollup/rollup-darwin-arm64@npm:4.34.9":
|
|
3321
|
+
version: 4.34.9
|
|
3322
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.34.9"
|
|
3323
3323
|
conditions: os=darwin & cpu=arm64
|
|
3324
3324
|
languageName: node
|
|
3325
3325
|
linkType: hard
|
|
3326
3326
|
|
|
3327
|
-
"@rollup/rollup-darwin-x64@npm:4.34.
|
|
3328
|
-
version: 4.34.
|
|
3329
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.34.
|
|
3327
|
+
"@rollup/rollup-darwin-x64@npm:4.34.9":
|
|
3328
|
+
version: 4.34.9
|
|
3329
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.34.9"
|
|
3330
3330
|
conditions: os=darwin & cpu=x64
|
|
3331
3331
|
languageName: node
|
|
3332
3332
|
linkType: hard
|
|
3333
3333
|
|
|
3334
|
-
"@rollup/rollup-freebsd-arm64@npm:4.34.
|
|
3335
|
-
version: 4.34.
|
|
3336
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.34.
|
|
3334
|
+
"@rollup/rollup-freebsd-arm64@npm:4.34.9":
|
|
3335
|
+
version: 4.34.9
|
|
3336
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.34.9"
|
|
3337
3337
|
conditions: os=freebsd & cpu=arm64
|
|
3338
3338
|
languageName: node
|
|
3339
3339
|
linkType: hard
|
|
3340
3340
|
|
|
3341
|
-
"@rollup/rollup-freebsd-x64@npm:4.34.
|
|
3342
|
-
version: 4.34.
|
|
3343
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.34.
|
|
3341
|
+
"@rollup/rollup-freebsd-x64@npm:4.34.9":
|
|
3342
|
+
version: 4.34.9
|
|
3343
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.34.9"
|
|
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.34.
|
|
3349
|
-
version: 4.34.
|
|
3350
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.
|
|
3348
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.34.9":
|
|
3349
|
+
version: 4.34.9
|
|
3350
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.9"
|
|
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.34.
|
|
3356
|
-
version: 4.34.
|
|
3357
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.34.
|
|
3355
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.34.9":
|
|
3356
|
+
version: 4.34.9
|
|
3357
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.34.9"
|
|
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.34.
|
|
3363
|
-
version: 4.34.
|
|
3364
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.34.
|
|
3362
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.34.9":
|
|
3363
|
+
version: 4.34.9
|
|
3364
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.34.9"
|
|
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.34.
|
|
3370
|
-
version: 4.34.
|
|
3371
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.34.
|
|
3369
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.34.9":
|
|
3370
|
+
version: 4.34.9
|
|
3371
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.34.9"
|
|
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.34.
|
|
3377
|
-
version: 4.34.
|
|
3378
|
-
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.
|
|
3376
|
+
"@rollup/rollup-linux-loongarch64-gnu@npm:4.34.9":
|
|
3377
|
+
version: 4.34.9
|
|
3378
|
+
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.9"
|
|
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.34.
|
|
3384
|
-
version: 4.34.
|
|
3385
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.
|
|
3383
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.9":
|
|
3384
|
+
version: 4.34.9
|
|
3385
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.9"
|
|
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.34.
|
|
3391
|
-
version: 4.34.
|
|
3392
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.34.
|
|
3390
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.34.9":
|
|
3391
|
+
version: 4.34.9
|
|
3392
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.34.9"
|
|
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.34.
|
|
3398
|
-
version: 4.34.
|
|
3399
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.34.
|
|
3397
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.34.9":
|
|
3398
|
+
version: 4.34.9
|
|
3399
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.34.9"
|
|
3400
3400
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3401
3401
|
languageName: node
|
|
3402
3402
|
linkType: hard
|
|
3403
3403
|
|
|
3404
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.34.
|
|
3405
|
-
version: 4.34.
|
|
3406
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.34.
|
|
3404
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.34.9":
|
|
3405
|
+
version: 4.34.9
|
|
3406
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.34.9"
|
|
3407
3407
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3408
3408
|
languageName: node
|
|
3409
3409
|
linkType: hard
|
|
3410
3410
|
|
|
3411
|
-
"@rollup/rollup-linux-x64-musl@npm:4.34.
|
|
3412
|
-
version: 4.34.
|
|
3413
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.34.
|
|
3411
|
+
"@rollup/rollup-linux-x64-musl@npm:4.34.9":
|
|
3412
|
+
version: 4.34.9
|
|
3413
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.34.9"
|
|
3414
3414
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3415
3415
|
languageName: node
|
|
3416
3416
|
linkType: hard
|
|
3417
3417
|
|
|
3418
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.34.
|
|
3419
|
-
version: 4.34.
|
|
3420
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.34.
|
|
3418
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.34.9":
|
|
3419
|
+
version: 4.34.9
|
|
3420
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.34.9"
|
|
3421
3421
|
conditions: os=win32 & cpu=arm64
|
|
3422
3422
|
languageName: node
|
|
3423
3423
|
linkType: hard
|
|
3424
3424
|
|
|
3425
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.34.
|
|
3426
|
-
version: 4.34.
|
|
3427
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.34.
|
|
3425
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.34.9":
|
|
3426
|
+
version: 4.34.9
|
|
3427
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.34.9"
|
|
3428
3428
|
conditions: os=win32 & cpu=ia32
|
|
3429
3429
|
languageName: node
|
|
3430
3430
|
linkType: hard
|
|
3431
3431
|
|
|
3432
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.34.
|
|
3433
|
-
version: 4.34.
|
|
3434
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.34.
|
|
3432
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.34.9":
|
|
3433
|
+
version: 4.34.9
|
|
3434
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.34.9"
|
|
3435
3435
|
conditions: os=win32 & cpu=x64
|
|
3436
3436
|
languageName: node
|
|
3437
3437
|
linkType: hard
|
|
@@ -5692,11 +5692,11 @@ __metadata:
|
|
|
5692
5692
|
linkType: hard
|
|
5693
5693
|
|
|
5694
5694
|
"@types/node@npm:*":
|
|
5695
|
-
version: 22.13.
|
|
5696
|
-
resolution: "@types/node@npm:22.13.
|
|
5695
|
+
version: 22.13.9
|
|
5696
|
+
resolution: "@types/node@npm:22.13.9"
|
|
5697
5697
|
dependencies:
|
|
5698
5698
|
undici-types: "npm:~6.20.0"
|
|
5699
|
-
checksum: 10c0/
|
|
5699
|
+
checksum: 10c0/eb6acd04169a076631dcaab712128d492cd17a1b3f10daae4a377f3d439c860c3cd3e32f4ef221671f56183b976ac7c4089f4193457314a88675ead4663438a4
|
|
5700
5700
|
languageName: node
|
|
5701
5701
|
linkType: hard
|
|
5702
5702
|
|
|
@@ -7831,7 +7831,7 @@ __metadata:
|
|
|
7831
7831
|
languageName: node
|
|
7832
7832
|
linkType: hard
|
|
7833
7833
|
|
|
7834
|
-
"browserslist@npm:^4.0.0, browserslist@npm:^4.12.0, browserslist@npm:^4.23.3, browserslist@npm:^4.24.0, browserslist@npm:^4.24.
|
|
7834
|
+
"browserslist@npm:^4.0.0, browserslist@npm:^4.12.0, browserslist@npm:^4.23.3, browserslist@npm:^4.24.0, browserslist@npm:^4.24.4":
|
|
7835
7835
|
version: 4.24.4
|
|
7836
7836
|
resolution: "browserslist@npm:4.24.4"
|
|
7837
7837
|
dependencies:
|
|
@@ -8033,12 +8033,12 @@ __metadata:
|
|
|
8033
8033
|
linkType: hard
|
|
8034
8034
|
|
|
8035
8035
|
"call-bound@npm:^1.0.2, call-bound@npm:^1.0.3":
|
|
8036
|
-
version: 1.0.
|
|
8037
|
-
resolution: "call-bound@npm:1.0.
|
|
8036
|
+
version: 1.0.4
|
|
8037
|
+
resolution: "call-bound@npm:1.0.4"
|
|
8038
8038
|
dependencies:
|
|
8039
|
-
call-bind-apply-helpers: "npm:^1.0.
|
|
8040
|
-
get-intrinsic: "npm:^1.
|
|
8041
|
-
checksum: 10c0/
|
|
8039
|
+
call-bind-apply-helpers: "npm:^1.0.2"
|
|
8040
|
+
get-intrinsic: "npm:^1.3.0"
|
|
8041
|
+
checksum: 10c0/f4796a6a0941e71c766aea672f63b72bc61234c4f4964dc6d7606e3664c307e7d77845328a8f3359ce39ddb377fed67318f9ee203dea1d47e46165dcf2917644
|
|
8042
8042
|
languageName: node
|
|
8043
8043
|
linkType: hard
|
|
8044
8044
|
|
|
@@ -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.
|
|
8104
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8105
|
-
checksum: 10c0/
|
|
8103
|
+
version: 1.0.30001702
|
|
8104
|
+
resolution: "caniuse-lite@npm:1.0.30001702"
|
|
8105
|
+
checksum: 10c0/52d46f41a96d179fd4e387bb6b26898148c31b626ff9aba105d207d2b0f869c7cb32ac67a6e8e0aeba3f03f33145ccfbee237250dfb58dba8b6526b4dd395ac6
|
|
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.
|
|
8249
|
-
resolution: "chromatic@npm:11.
|
|
8248
|
+
version: 11.27.0
|
|
8249
|
+
resolution: "chromatic@npm:11.27.0"
|
|
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/
|
|
8262
|
+
checksum: 10c0/500c1a522a48b3ef9188d63693b2602128b4cd7b2b96e5cb5412cdc0e3b7ac2a33c30d8f55f7662de4111e1c7c70bcb970e86782700e02580881400bdd10419b
|
|
8263
8263
|
languageName: node
|
|
8264
8264
|
linkType: hard
|
|
8265
8265
|
|
|
@@ -8745,25 +8745,25 @@ __metadata:
|
|
|
8745
8745
|
linkType: hard
|
|
8746
8746
|
|
|
8747
8747
|
"core-js-compat@npm:^3.40.0, core-js-compat@npm:^3.8.1":
|
|
8748
|
-
version: 3.
|
|
8749
|
-
resolution: "core-js-compat@npm:3.
|
|
8748
|
+
version: 3.41.0
|
|
8749
|
+
resolution: "core-js-compat@npm:3.41.0"
|
|
8750
8750
|
dependencies:
|
|
8751
|
-
browserslist: "npm:^4.24.
|
|
8752
|
-
checksum: 10c0/
|
|
8751
|
+
browserslist: "npm:^4.24.4"
|
|
8752
|
+
checksum: 10c0/92d2c748d3dd1c4e3b6cee6b6683b9212db9bc0a6574d933781210daf3baaeb76334ed4636eb8935b45802aa8d9235ab604c9a262694e02a2fa17ad0f6976829
|
|
8753
8753
|
languageName: node
|
|
8754
8754
|
linkType: hard
|
|
8755
8755
|
|
|
8756
8756
|
"core-js-pure@npm:^3.30.2, core-js-pure@npm:^3.8.2":
|
|
8757
|
-
version: 3.
|
|
8758
|
-
resolution: "core-js-pure@npm:3.
|
|
8759
|
-
checksum: 10c0/
|
|
8757
|
+
version: 3.41.0
|
|
8758
|
+
resolution: "core-js-pure@npm:3.41.0"
|
|
8759
|
+
checksum: 10c0/d5003e91f167dd5670174d27bf313407325d0915454f41337510b89ba420f1d0d1b22d3b1793eb329b28e9273e951fb895eb574ecfc1ccc77ed6ad14af1c763b
|
|
8760
8760
|
languageName: node
|
|
8761
8761
|
linkType: hard
|
|
8762
8762
|
|
|
8763
8763
|
"core-js@npm:^3.0.4, core-js@npm:^3.6.5, core-js@npm:^3.8.2":
|
|
8764
|
-
version: 3.
|
|
8765
|
-
resolution: "core-js@npm:3.
|
|
8766
|
-
checksum: 10c0/
|
|
8764
|
+
version: 3.41.0
|
|
8765
|
+
resolution: "core-js@npm:3.41.0"
|
|
8766
|
+
checksum: 10c0/a29ed0b7fe81acf49d04ce5c17a1947166b1c15197327a5d12f95bbe84b46d60c3c13de701d808f41da06fa316285f3f55ce5903abc8d5642afc1eac4457afc8
|
|
8767
8767
|
languageName: node
|
|
8768
8768
|
linkType: hard
|
|
8769
8769
|
|
|
@@ -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.
|
|
9893
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9894
|
-
checksum: 10c0/
|
|
9892
|
+
version: 1.5.112
|
|
9893
|
+
resolution: "electron-to-chromium@npm:1.5.112"
|
|
9894
|
+
checksum: 10c0/fc597268d6d3d7458b55141c436802a6c51078855f021823cdb380b80ad1a69e1c2899fdfc9cffa501d47feb3791ea6a75893fe802a608c7845e979a48f5ac25
|
|
9895
9895
|
languageName: node
|
|
9896
9896
|
linkType: hard
|
|
9897
9897
|
|
|
@@ -11607,7 +11607,7 @@ __metadata:
|
|
|
11607
11607
|
languageName: node
|
|
11608
11608
|
linkType: hard
|
|
11609
11609
|
|
|
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":
|
|
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, get-intrinsic@npm:^1.3.0":
|
|
11611
11611
|
version: 1.3.0
|
|
11612
11612
|
resolution: "get-intrinsic@npm:1.3.0"
|
|
11613
11613
|
dependencies:
|
|
@@ -13804,9 +13804,9 @@ __metadata:
|
|
|
13804
13804
|
linkType: hard
|
|
13805
13805
|
|
|
13806
13806
|
"libphonenumber-js@npm:^1.9.11":
|
|
13807
|
-
version: 1.
|
|
13808
|
-
resolution: "libphonenumber-js@npm:1.
|
|
13809
|
-
checksum: 10c0/
|
|
13807
|
+
version: 1.12.4
|
|
13808
|
+
resolution: "libphonenumber-js@npm:1.12.4"
|
|
13809
|
+
checksum: 10c0/cb05e89278f69aace9347682ae9f7f8f65e2d791442ea1cd09a2a89da889f7038f219cb82472d2f73513ca681d564e4c3036b06c5ad0508116635bc9d453a26c
|
|
13810
13810
|
languageName: node
|
|
13811
13811
|
linkType: hard
|
|
13812
13812
|
|
|
@@ -17014,13 +17014,13 @@ __metadata:
|
|
|
17014
17014
|
linkType: hard
|
|
17015
17015
|
|
|
17016
17016
|
"prosemirror-schema-list@npm:^1.1.6, prosemirror-schema-list@npm:^1.2.2":
|
|
17017
|
-
version: 1.5.
|
|
17018
|
-
resolution: "prosemirror-schema-list@npm:1.5.
|
|
17017
|
+
version: 1.5.1
|
|
17018
|
+
resolution: "prosemirror-schema-list@npm:1.5.1"
|
|
17019
17019
|
dependencies:
|
|
17020
17020
|
prosemirror-model: "npm:^1.0.0"
|
|
17021
17021
|
prosemirror-state: "npm:^1.0.0"
|
|
17022
17022
|
prosemirror-transform: "npm:^1.7.3"
|
|
17023
|
-
checksum: 10c0/
|
|
17023
|
+
checksum: 10c0/e6fd27446bc90556a9797f6ca0cb54e7db53cc7c20fbf633b7d0f4709c45accfa2f3a0f6575fe47aa83cb75781a9b773198d236a44db9d8eef2802a1501e4301
|
|
17024
17024
|
languageName: node
|
|
17025
17025
|
linkType: hard
|
|
17026
17026
|
|
|
@@ -17063,22 +17063,22 @@ __metadata:
|
|
|
17063
17063
|
linkType: hard
|
|
17064
17064
|
|
|
17065
17065
|
"prosemirror-transform@npm:^1.0.0, prosemirror-transform@npm:^1.1.0, prosemirror-transform@npm:^1.10.2, prosemirror-transform@npm:^1.3.3, prosemirror-transform@npm:^1.7.0, prosemirror-transform@npm:^1.7.3":
|
|
17066
|
-
version: 1.10.
|
|
17067
|
-
resolution: "prosemirror-transform@npm:1.10.
|
|
17066
|
+
version: 1.10.3
|
|
17067
|
+
resolution: "prosemirror-transform@npm:1.10.3"
|
|
17068
17068
|
dependencies:
|
|
17069
17069
|
prosemirror-model: "npm:^1.21.0"
|
|
17070
|
-
checksum: 10c0/
|
|
17070
|
+
checksum: 10c0/736630453cbc3c19c4e0146fe99cbd15df7738686bf77415195498a6efcbec7bb11f64b20cbe27cbbb91a0d92f88981fcf9174a8d48b52308652910a5a7f7473
|
|
17071
17071
|
languageName: node
|
|
17072
17072
|
linkType: hard
|
|
17073
17073
|
|
|
17074
17074
|
"prosemirror-view@npm:^1.0.0, prosemirror-view@npm:^1.1.0, prosemirror-view@npm:^1.23.6, prosemirror-view@npm:^1.27.0, prosemirror-view@npm:^1.28.2, prosemirror-view@npm:^1.31.0, prosemirror-view@npm:^1.37.2":
|
|
17075
|
-
version: 1.38.
|
|
17076
|
-
resolution: "prosemirror-view@npm:1.38.
|
|
17075
|
+
version: 1.38.1
|
|
17076
|
+
resolution: "prosemirror-view@npm:1.38.1"
|
|
17077
17077
|
dependencies:
|
|
17078
17078
|
prosemirror-model: "npm:^1.20.0"
|
|
17079
17079
|
prosemirror-state: "npm:^1.0.0"
|
|
17080
17080
|
prosemirror-transform: "npm:^1.1.0"
|
|
17081
|
-
checksum: 10c0/
|
|
17081
|
+
checksum: 10c0/495833857047a1bb5d8bd88f91b3bfa92e5ba726bb9488e062db2fc2d5d9e01ff9c305aa1a1af3272f7fa763ffc6ac5935841df98b8cb28856228877af42b278
|
|
17082
17082
|
languageName: node
|
|
17083
17083
|
linkType: hard
|
|
17084
17084
|
|
|
@@ -17377,13 +17377,13 @@ __metadata:
|
|
|
17377
17377
|
linkType: hard
|
|
17378
17378
|
|
|
17379
17379
|
"react-confetti@npm:^6.1.0":
|
|
17380
|
-
version: 6.
|
|
17381
|
-
resolution: "react-confetti@npm:6.
|
|
17380
|
+
version: 6.4.0
|
|
17381
|
+
resolution: "react-confetti@npm:6.4.0"
|
|
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/
|
|
17386
|
+
checksum: 10c0/a0e1bfc826cc086e13c18f2f8997e1825025be8ea80f5b1ffdd4871babe89a6876eac99f43525d4d4cbf141fab2a9372f5d51d19fa5995b64e77e6717ac4b286
|
|
17387
17387
|
languageName: node
|
|
17388
17388
|
linkType: hard
|
|
17389
17389
|
|
|
@@ -18928,28 +18928,28 @@ __metadata:
|
|
|
18928
18928
|
linkType: hard
|
|
18929
18929
|
|
|
18930
18930
|
"rollup@npm:^4.13.0":
|
|
18931
|
-
version: 4.34.
|
|
18932
|
-
resolution: "rollup@npm:4.34.
|
|
18933
|
-
dependencies:
|
|
18934
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.34.
|
|
18935
|
-
"@rollup/rollup-android-arm64": "npm:4.34.
|
|
18936
|
-
"@rollup/rollup-darwin-arm64": "npm:4.34.
|
|
18937
|
-
"@rollup/rollup-darwin-x64": "npm:4.34.
|
|
18938
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.34.
|
|
18939
|
-
"@rollup/rollup-freebsd-x64": "npm:4.34.
|
|
18940
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.34.
|
|
18941
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.34.
|
|
18942
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.34.
|
|
18943
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.34.
|
|
18944
|
-
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.34.
|
|
18945
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.34.
|
|
18946
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.34.
|
|
18947
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.34.
|
|
18948
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.34.
|
|
18949
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.34.
|
|
18950
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.34.
|
|
18951
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.34.
|
|
18952
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.34.
|
|
18931
|
+
version: 4.34.9
|
|
18932
|
+
resolution: "rollup@npm:4.34.9"
|
|
18933
|
+
dependencies:
|
|
18934
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.34.9"
|
|
18935
|
+
"@rollup/rollup-android-arm64": "npm:4.34.9"
|
|
18936
|
+
"@rollup/rollup-darwin-arm64": "npm:4.34.9"
|
|
18937
|
+
"@rollup/rollup-darwin-x64": "npm:4.34.9"
|
|
18938
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.34.9"
|
|
18939
|
+
"@rollup/rollup-freebsd-x64": "npm:4.34.9"
|
|
18940
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.34.9"
|
|
18941
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.34.9"
|
|
18942
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.34.9"
|
|
18943
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.34.9"
|
|
18944
|
+
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.34.9"
|
|
18945
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.34.9"
|
|
18946
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.34.9"
|
|
18947
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.34.9"
|
|
18948
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.34.9"
|
|
18949
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.34.9"
|
|
18950
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.34.9"
|
|
18951
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.34.9"
|
|
18952
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.34.9"
|
|
18953
18953
|
"@types/estree": "npm:1.0.6"
|
|
18954
18954
|
fsevents: "npm:~2.3.2"
|
|
18955
18955
|
dependenciesMeta:
|
|
@@ -18995,7 +18995,7 @@ __metadata:
|
|
|
18995
18995
|
optional: true
|
|
18996
18996
|
bin:
|
|
18997
18997
|
rollup: dist/bin/rollup
|
|
18998
|
-
checksum: 10c0/
|
|
18998
|
+
checksum: 10c0/dd0be1f7c4f8a93040026be13ecc39259fb55313db0dac7eafd97a3ac01ab4584e6b1a8afd86b0259dcf391699d5560a678abe6c0729af0aa4f2d5df70f05c8c
|
|
18999
18999
|
languageName: node
|
|
19000
19000
|
linkType: hard
|
|
19001
19001
|
|