@licklist/design 0.71.21 → 0.71.22
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/product-set/form/ProductCategoriesControl.d.ts.map +1 -1
- package/dist/product-set/form/ProductCategoriesControl.js +48 -2
- package/dist/product-set/form/SelectCategoryModal.d.ts +12 -0
- package/dist/product-set/form/SelectCategoryModal.d.ts.map +1 -1
- package/dist/product-set/form/SelectCategoryModal.js +1 -1
- package/dist/sortable-tree/SortableTreeItem.d.ts +2 -1
- package/dist/sortable-tree/SortableTreeItem.d.ts.map +1 -1
- package/dist/sortable-tree/SortableTreeItem.js +10 -4
- package/dist/styles/product-set/ProductSetForm.scss +25 -2
- package/package.json +2 -2
- package/src/product-set/form/ProductCategoriesControl.tsx +37 -1
- package/src/product-set/form/SelectCategoryModal.tsx +2 -2
- package/src/sortable-tree/SortableTreeItem.tsx +12 -1
- package/src/styles/product-set/ProductSetForm.scss +25 -2
- package/yarn.lock +148 -148
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProductCategoriesControl.d.ts","sourceRoot":"","sources":["../../../src/product-set/form/ProductCategoriesControl.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ProductCategoriesControl.d.ts","sourceRoot":"","sources":["../../../src/product-set/form/ProductCategoriesControl.tsx"],"names":[],"mappings":"AAaA,OAAO,EAKL,YAAY,EACb,MAAM,kEAAkE,CAAA;AAQzE,OAAO,EAAwB,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAoCtE,UAAU,6BAA8B,SAAQ,aAAa;IAC3D,SAAS,EAAE,MAAM,CAAA;IACjB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,qBAAqB,CAAC,EAAE,OAAO,CAAA;IAC/B,oBAAoB,CAAC,EAAE,OAAO,CAAA;CAC/B;AA2BD,wBAAgB,wBAAwB,CAAC,EACvC,SAAS,EACT,SAAS,EACT,WAAW,EACX,qBAAqB,EACrB,oBAAoB,GACrB,EAAE,6BAA6B,2CA4T/B;AAED,eAAO,MAAM,cAAc,iBACX,YAAY,SACnB,MAAM,KACZ;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,GAAG,IAczC,CAAA"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { jsxs, Fragment
|
|
1
|
+
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
2
2
|
import { useContext, useState, useEffect } from 'react';
|
|
3
3
|
import HookFormService from '@licklist/plugins/dist/services/Form/HookFormService';
|
|
4
4
|
import { uniqueId } from 'lodash';
|
|
5
5
|
import { Badge } from 'react-bootstrap';
|
|
6
6
|
import { useFormContext, useFieldArray, useWatch, Controller } from 'react-hook-form';
|
|
7
|
+
import { FaTicketAlt, FaCalendar, FaBars, FaBowlingBall } from 'react-icons/fa';
|
|
7
8
|
import { useTranslation } from 'react-i18next';
|
|
8
9
|
import { useSensor, MouseSensor } from '@dnd-kit/core';
|
|
9
10
|
import { CATEGORY_TYPE_GAME, CATEGORY_TYPE_FIXED_DURATION, QUANTITY_TYPE_STANDARD, CATEGORY_TYPE_TICKETS } from '@licklist/core/dist/DataMapper/Product/ProductCategoryDataMapper';
|
|
@@ -13,7 +14,7 @@ import { ProductSetModalClasses } from '../../sortable-tree/SortableTreeItem.js'
|
|
|
13
14
|
import { CreateProductSetItem } from '../item/CreateProductSetItem.js';
|
|
14
15
|
import { ProductCategoryControl } from '../product-category/ProductCategoryControl.js';
|
|
15
16
|
import { ProductsControl } from './ProductsControl.js';
|
|
16
|
-
import { SelectCategoryModal } from './SelectCategoryModal.js';
|
|
17
|
+
import { CATEGORY_TYPES_NAMES, SelectCategoryModal } from './SelectCategoryModal.js';
|
|
17
18
|
import { ProductSetLoadingContext } from './context.js';
|
|
18
19
|
import { VenueMapSetModal } from './VenueMapSetModal.js';
|
|
19
20
|
import { sortArrayByIndex, moveArrayElements } from '../utils/index.js';
|
|
@@ -117,6 +118,40 @@ function _unsupported_iterable_to_array(o, minLen) {
|
|
|
117
118
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
118
119
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
119
120
|
}
|
|
121
|
+
var _obj;
|
|
122
|
+
// @TODO not for first release
|
|
123
|
+
// import Popover from "./ProductSetFormPopover";
|
|
124
|
+
var CATEGORIES_TYPE = (_obj = {}, _define_property(_obj, CATEGORY_TYPES_NAMES.tickets, {
|
|
125
|
+
label: 'tickets',
|
|
126
|
+
icon: /*#__PURE__*/ jsx(FaTicketAlt, {
|
|
127
|
+
color: "#0e8ce2",
|
|
128
|
+
size: 10
|
|
129
|
+
})
|
|
130
|
+
}), _define_property(_obj, CATEGORY_TYPES_NAMES.bookings, {
|
|
131
|
+
label: 'bookings',
|
|
132
|
+
icon: /*#__PURE__*/ jsx(FaCalendar, {
|
|
133
|
+
color: "#0e8ce2",
|
|
134
|
+
size: 10
|
|
135
|
+
})
|
|
136
|
+
}), _define_property(_obj, CATEGORY_TYPES_NAMES.menuItems, {
|
|
137
|
+
label: 'menuItems',
|
|
138
|
+
icon: /*#__PURE__*/ jsx(FaBars, {
|
|
139
|
+
color: "#0e8ce2",
|
|
140
|
+
size: 10
|
|
141
|
+
})
|
|
142
|
+
}), _define_property(_obj, CATEGORY_TYPES_NAMES.game, {
|
|
143
|
+
label: 'game',
|
|
144
|
+
icon: /*#__PURE__*/ jsx(FaBowlingBall, {
|
|
145
|
+
color: "#0e8ce2",
|
|
146
|
+
size: 10
|
|
147
|
+
})
|
|
148
|
+
}), _define_property(_obj, CATEGORY_TYPES_NAMES.fixedDuration, {
|
|
149
|
+
label: 'fixedDuration',
|
|
150
|
+
icon: /*#__PURE__*/ jsx(FaCalendar, {
|
|
151
|
+
color: "#0e8ce2",
|
|
152
|
+
size: 10
|
|
153
|
+
})
|
|
154
|
+
}), _obj);
|
|
120
155
|
var getCategoryDefaultValue = function(categoryType, sort) {
|
|
121
156
|
return {
|
|
122
157
|
id: null,
|
|
@@ -251,6 +286,7 @@ function ProductCategoriesControl(param) {
|
|
|
251
286
|
var onSetIsExpanded = function() {
|
|
252
287
|
setIsExpanded(productCategoryId);
|
|
253
288
|
};
|
|
289
|
+
var categoryType = CATEGORIES_TYPE[productCategory.type];
|
|
254
290
|
return /*#__PURE__*/ jsx(Controller, {
|
|
255
291
|
name: "".concat(productCategoriesFieldName, ".").concat(index, ".name"),
|
|
256
292
|
control: control,
|
|
@@ -300,6 +336,16 @@ function ProductCategoriesControl(param) {
|
|
|
300
336
|
secondaryBadge: getBadgeConfig(productCategory.type, t(productCategory.type)),
|
|
301
337
|
modalClass: ProductSetModalClasses.category,
|
|
302
338
|
isNewAdded: showCategoryModal,
|
|
339
|
+
itemButton: /*#__PURE__*/ jsxs("div", {
|
|
340
|
+
className: "btn-outline-primary item-icon sm border border-primary rounded-sm",
|
|
341
|
+
children: [
|
|
342
|
+
categoryType.icon,
|
|
343
|
+
/*#__PURE__*/ jsx("span", {
|
|
344
|
+
className: "ml-2",
|
|
345
|
+
children: t(categoryType.label)
|
|
346
|
+
})
|
|
347
|
+
]
|
|
348
|
+
}),
|
|
303
349
|
body: /*#__PURE__*/ jsx(ProductCategoryControl, {
|
|
304
350
|
isLoading: isLoading,
|
|
305
351
|
onCategoryNameChange: onChange,
|
|
@@ -1,4 +1,16 @@
|
|
|
1
|
+
import { ReactElement } from 'react';
|
|
1
2
|
import { CategoryType } from '@licklist/core/dist/DataMapper/Product/ProductCategoryDataMapper';
|
|
3
|
+
export declare const CATEGORY_TYPES_NAMES: {
|
|
4
|
+
readonly menuItems: "menuItems";
|
|
5
|
+
readonly tickets: "tickets";
|
|
6
|
+
readonly bookings: "bookings";
|
|
7
|
+
readonly game: "game";
|
|
8
|
+
readonly fixedDuration: "fixedDuration";
|
|
9
|
+
};
|
|
10
|
+
export type CategoryConfig = {
|
|
11
|
+
label: string;
|
|
12
|
+
icon: ReactElement;
|
|
13
|
+
};
|
|
2
14
|
export interface SelectCategoryModalProps {
|
|
3
15
|
isVisible: boolean;
|
|
4
16
|
onHide: () => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectCategoryModal.d.ts","sourceRoot":"","sources":["../../../src/product-set/form/SelectCategoryModal.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SelectCategoryModal.d.ts","sourceRoot":"","sources":["../../../src/product-set/form/SelectCategoryModal.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAwB,MAAM,OAAO,CAAA;AAG1D,OAAO,EAML,YAAY,EACb,MAAM,kEAAkE,CAAA;AAgBzE,eAAO,MAAM,oBAAoB;;;;;;CAMvB,CAAA;AAEV,MAAM,MAAM,cAAc,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,YAAY,CAAA;CAAE,CAAA;AA4BlE,MAAM,WAAW,wBAAwB;IACvC,SAAS,EAAE,OAAO,CAAA;IAClB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,gBAAgB,EAAE,CAAC,QAAQ,EAAE,YAAY,KAAK,IAAI,CAAA;CACnD;AAED,wBAAgB,mBAAmB,CAAC,EAClC,SAAS,EACT,MAAM,EACN,gBAAgB,GACjB,EAAE,wBAAwB,2CAyH1B"}
|
|
@@ -14,6 +14,7 @@ export interface SortableTreeItemProps {
|
|
|
14
14
|
body: ReactNode;
|
|
15
15
|
children?: ReactNode;
|
|
16
16
|
preItem?: ReactNode;
|
|
17
|
+
itemButton?: ReactNode;
|
|
17
18
|
postItem?: ReactNode;
|
|
18
19
|
sortableItems?: string[];
|
|
19
20
|
isExpanded?: boolean;
|
|
@@ -36,5 +37,5 @@ export interface SortableTreeItemProps {
|
|
|
36
37
|
setIsExpanded?: () => void;
|
|
37
38
|
isOverride?: boolean;
|
|
38
39
|
}
|
|
39
|
-
export declare function SortableTreeItem({ id, title, badge, subTitle, body, children, preItem, postItem, sortableItems, isExpanded, shouldExpand, isInvalid, isIconInHeader, treeLineIconColor, modalLabel, modalClass, isNewAdded, onDelete, validate, cancelChanges, saveValidField, edit, secondaryBadge, setIsExpanded, isOverride, }: SortableTreeItemProps): import("react/jsx-runtime").JSX.Element;
|
|
40
|
+
export declare function SortableTreeItem({ id, title, badge, subTitle, body, children, preItem, postItem, sortableItems, isExpanded, shouldExpand, isInvalid, isIconInHeader, treeLineIconColor, modalLabel, modalClass, isNewAdded, onDelete, validate, cancelChanges, saveValidField, edit, secondaryBadge, setIsExpanded, isOverride, itemButton, }: SortableTreeItemProps): import("react/jsx-runtime").JSX.Element;
|
|
40
41
|
//# sourceMappingURL=SortableTreeItem.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SortableTreeItem.d.ts","sourceRoot":"","sources":["../../src/sortable-tree/SortableTreeItem.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"SortableTreeItem.d.ts","sourceRoot":"","sources":["../../src/sortable-tree/SortableTreeItem.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,SAAS,EAIV,MAAM,OAAO,CAAA;AAiBd,eAAO,MAAM,sBAAsB;;;;;CAKzB,CAAA;AAEV,MAAM,MAAM,0BAA0B,GACpC,CAAC,OAAO,sBAAsB,CAAC,CAAC,MAAM,OAAO,sBAAsB,CAAC,CAAA;AAEtE,MAAM,WAAW,qBAAqB;IACpC,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,IAAI,EAAE,SAAS,CAAA;IACf,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,OAAO,CAAC,EAAE,SAAS,CAAA;IACnB,UAAU,CAAC,EAAE,SAAS,CAAA;IACtB,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAA;IACxB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,aAAa,CAAC,EAAE,MAAM,IAAI,CAAA;IAC1B,IAAI,CAAC,EAAE,MAAM,IAAI,CAAA;IACjB,cAAc,CAAC,EAAE,MAAM,IAAI,CAAA;IAC3B,UAAU,CAAC,EAAE,0BAA0B,CAAA;IACvC,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAA;IACrB,QAAQ,CAAC,EAAE,MAAM,OAAO,CAAC,OAAO,CAAC,CAAA;IACjC,cAAc,CAAC,EAAE;QACf,KAAK,EAAE,MAAM,CAAA;QACb,SAAS,EAAE,MAAM,CAAA;KAClB,CAAA;IACD,aAAa,CAAC,EAAE,MAAM,IAAI,CAAA;IAC1B,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,EAAE,EACF,KAAK,EACL,KAAK,EACL,QAAQ,EACR,IAAI,EACJ,QAAQ,EACR,OAAO,EACP,QAAQ,EACR,aAAa,EACb,UAAkB,EAClB,YAAmB,EACnB,SAAiB,EACjB,cAAqB,EACrB,iBAAsB,EACtB,UAAe,EACf,UAAU,EACV,UAAkB,EAClB,QAAQ,EACR,QAAQ,EACR,aAAa,EACb,cAAc,EACd,IAAI,EACJ,cAAc,EACd,aAAa,EACb,UAAU,EACV,UAAU,GACX,EAAE,qBAAqB,2CA+TvB"}
|
|
@@ -240,7 +240,7 @@ var ProductSetModalClasses = {
|
|
|
240
240
|
productZones: 'edit-product-zone'
|
|
241
241
|
};
|
|
242
242
|
function SortableTreeItem(param) {
|
|
243
|
-
var id = param.id, title = param.title, badge = param.badge, subTitle = param.subTitle, body = param.body, children = param.children, preItem = param.preItem, postItem = param.postItem, sortableItems = param.sortableItems, _param_isExpanded = param.isExpanded, isExpanded = _param_isExpanded === void 0 ? false : _param_isExpanded, _param_shouldExpand = param.shouldExpand, shouldExpand = _param_shouldExpand === void 0 ? true : _param_shouldExpand, _param_isInvalid = param.isInvalid, isInvalid = _param_isInvalid === void 0 ? false : _param_isInvalid, _param_isIconInHeader = param.isIconInHeader, isIconInHeader = _param_isIconInHeader === void 0 ? true : _param_isIconInHeader, _param_treeLineIconColor = param.treeLineIconColor, treeLineIconColor = _param_treeLineIconColor === void 0 ? '' : _param_treeLineIconColor, _param_modalLabel = param.modalLabel, modalLabel = _param_modalLabel === void 0 ? '' : _param_modalLabel, modalClass = param.modalClass, _param_isNewAdded = param.isNewAdded, isNewAdded = _param_isNewAdded === void 0 ? false : _param_isNewAdded, onDelete = param.onDelete, validate = param.validate, cancelChanges = param.cancelChanges, saveValidField = param.saveValidField, edit = param.edit, secondaryBadge = param.secondaryBadge, setIsExpanded = param.setIsExpanded, isOverride = param.isOverride;
|
|
243
|
+
var id = param.id, title = param.title, badge = param.badge, subTitle = param.subTitle, body = param.body, children = param.children, preItem = param.preItem, postItem = param.postItem, sortableItems = param.sortableItems, _param_isExpanded = param.isExpanded, isExpanded = _param_isExpanded === void 0 ? false : _param_isExpanded, _param_shouldExpand = param.shouldExpand, shouldExpand = _param_shouldExpand === void 0 ? true : _param_shouldExpand, _param_isInvalid = param.isInvalid, isInvalid = _param_isInvalid === void 0 ? false : _param_isInvalid, _param_isIconInHeader = param.isIconInHeader, isIconInHeader = _param_isIconInHeader === void 0 ? true : _param_isIconInHeader, _param_treeLineIconColor = param.treeLineIconColor, treeLineIconColor = _param_treeLineIconColor === void 0 ? '' : _param_treeLineIconColor, _param_modalLabel = param.modalLabel, modalLabel = _param_modalLabel === void 0 ? '' : _param_modalLabel, modalClass = param.modalClass, _param_isNewAdded = param.isNewAdded, isNewAdded = _param_isNewAdded === void 0 ? false : _param_isNewAdded, onDelete = param.onDelete, validate = param.validate, cancelChanges = param.cancelChanges, saveValidField = param.saveValidField, edit = param.edit, secondaryBadge = param.secondaryBadge, setIsExpanded = param.setIsExpanded, isOverride = param.isOverride, itemButton = param.itemButton;
|
|
244
244
|
var _useState = _sliced_to_array(useState(isExpanded), 2), expanded = _useState[0], setExpanded = _useState[1];
|
|
245
245
|
var _useState1 = _sliced_to_array(useState(isNewAdded), 2), isModalVisible = _useState1[0], setIsModalVisible = _useState1[1];
|
|
246
246
|
var t = useTranslation('Design').t;
|
|
@@ -433,9 +433,15 @@ function SortableTreeItem(param) {
|
|
|
433
433
|
/*#__PURE__*/ jsxs("div", {
|
|
434
434
|
className: clsx(modalLabel ? 'sortable-tree-product-set-title-container' : 'sortable-tree-title-container'),
|
|
435
435
|
children: [
|
|
436
|
-
/*#__PURE__*/
|
|
437
|
-
className: clsx('sortable-tree-item-title', modalLabel && 'sortable-tree-product-set-element-title'),
|
|
438
|
-
children:
|
|
436
|
+
/*#__PURE__*/ jsxs("span", {
|
|
437
|
+
className: clsx('sortable-tree-item-title', modalLabel && 'sortable-tree-product-set-element-title', 'd-flex justify-content-between'),
|
|
438
|
+
children: [
|
|
439
|
+
title,
|
|
440
|
+
/*#__PURE__*/ jsx("div", {
|
|
441
|
+
className: "sortable-tree-item-subtitle",
|
|
442
|
+
children: itemButton
|
|
443
|
+
})
|
|
444
|
+
]
|
|
439
445
|
}),
|
|
440
446
|
!expanded && /*#__PURE__*/ jsx("span", {
|
|
441
447
|
className: "sortable-tree-item-subtitle",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
.product-set-form {
|
|
2
|
+
|
|
2
3
|
input,
|
|
3
4
|
textarea,
|
|
4
5
|
select,
|
|
@@ -15,10 +16,12 @@
|
|
|
15
16
|
height: 2.5rem;
|
|
16
17
|
border-width: 2px;
|
|
17
18
|
padding: 2px;
|
|
19
|
+
|
|
18
20
|
label,
|
|
19
21
|
.btn-switch-indicator {
|
|
20
22
|
border-radius: 0.375rem !important;
|
|
21
23
|
}
|
|
24
|
+
|
|
22
25
|
label {
|
|
23
26
|
height: 2rem;
|
|
24
27
|
}
|
|
@@ -34,6 +37,7 @@
|
|
|
34
37
|
margin-top: 1.5rem;
|
|
35
38
|
margin-bottom: 1.5rem;
|
|
36
39
|
}
|
|
40
|
+
|
|
37
41
|
@include media-breakpoint-down(sm) {
|
|
38
42
|
padding: 1.5rem 1rem;
|
|
39
43
|
margin-top: 0.5rem;
|
|
@@ -59,10 +63,21 @@
|
|
|
59
63
|
background-color: #ffdbdb;
|
|
60
64
|
color: #d52902;
|
|
61
65
|
}
|
|
66
|
+
|
|
62
67
|
.category-badge {
|
|
63
68
|
background-color: #e8f4f6;
|
|
64
69
|
color: #1a93aa;
|
|
65
70
|
}
|
|
71
|
+
|
|
72
|
+
.item-icon {
|
|
73
|
+
display: flex;
|
|
74
|
+
justify-items: center;
|
|
75
|
+
align-items: center;
|
|
76
|
+
font-size: 0.65rem;
|
|
77
|
+
padding: 0.2rem;
|
|
78
|
+
margin-right: 1rem;
|
|
79
|
+
}
|
|
80
|
+
|
|
66
81
|
.product-badge {
|
|
67
82
|
background-color: #e9f5ea;
|
|
68
83
|
color: #269b36;
|
|
@@ -75,10 +90,12 @@
|
|
|
75
90
|
|
|
76
91
|
.product-set-mobile-modal {
|
|
77
92
|
margin: 0;
|
|
93
|
+
|
|
78
94
|
.modal-content {
|
|
79
95
|
border-radius: 1rem 1rem 0 0;
|
|
80
96
|
border-width: 0;
|
|
81
97
|
margin: 0;
|
|
98
|
+
|
|
82
99
|
.modal-body {
|
|
83
100
|
padding: 1rem 0;
|
|
84
101
|
}
|
|
@@ -100,18 +117,22 @@
|
|
|
100
117
|
font-weight: 600;
|
|
101
118
|
font-size: 0.625rem;
|
|
102
119
|
}
|
|
120
|
+
|
|
103
121
|
.product-set-subtitle-dot {
|
|
104
122
|
margin-right: 0.375rem;
|
|
105
123
|
width: 0.375rem;
|
|
106
124
|
height: 0.375rem;
|
|
107
125
|
border-radius: 3px;
|
|
108
126
|
}
|
|
127
|
+
|
|
109
128
|
.product-set-subtitle-category-dot {
|
|
110
129
|
background-color: #269b36;
|
|
111
130
|
}
|
|
131
|
+
|
|
112
132
|
.product-set-subtitle-step-dot {
|
|
113
133
|
background-color: #1a93aa;
|
|
114
134
|
}
|
|
135
|
+
|
|
115
136
|
.product-set-subtitle-product-dot {
|
|
116
137
|
background-color: #269b36;
|
|
117
138
|
}
|
|
@@ -156,6 +177,7 @@
|
|
|
156
177
|
justify-self: flex-end;
|
|
157
178
|
align-items: flex-end;
|
|
158
179
|
}
|
|
180
|
+
|
|
159
181
|
.small-badge {
|
|
160
182
|
font-size: 0.5rem;
|
|
161
183
|
height: 1rem;
|
|
@@ -163,6 +185,7 @@
|
|
|
163
185
|
padding: 0 0.2rem;
|
|
164
186
|
margin-bottom: 0.2rem;
|
|
165
187
|
}
|
|
188
|
+
|
|
166
189
|
.product-set-save-btn-wrapper {
|
|
167
190
|
padding-left: 0 !important;
|
|
168
191
|
display: flex;
|
|
@@ -177,8 +200,8 @@
|
|
|
177
200
|
|
|
178
201
|
.sortable-tree-item-toggle {
|
|
179
202
|
.product-zone-badge {
|
|
180
|
-
background-color: #
|
|
181
|
-
color: #
|
|
203
|
+
background-color: #EFE9F5;
|
|
204
|
+
color: #84269B;
|
|
182
205
|
font-size: 0.875rem;
|
|
183
206
|
font-weight: 600;
|
|
184
207
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@licklist/design",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.22",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
|
|
@@ -206,4 +206,4 @@
|
|
|
206
206
|
"node": "20.9.0",
|
|
207
207
|
"yarn": "4.4.0"
|
|
208
208
|
}
|
|
209
|
-
}
|
|
209
|
+
}
|
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
useFormContext,
|
|
9
9
|
useWatch,
|
|
10
10
|
} from 'react-hook-form'
|
|
11
|
+
import { FaBars, FaBowlingBall, FaCalendar, FaTicketAlt } from 'react-icons/fa'
|
|
11
12
|
import { useTranslation } from 'react-i18next'
|
|
12
13
|
import { useSensor, MouseSensor } from '@dnd-kit/core'
|
|
13
14
|
import {
|
|
@@ -25,7 +26,11 @@ import { ProductCategoryControl } from '../product-category'
|
|
|
25
26
|
import { ProductCategory } from '../types'
|
|
26
27
|
import { ProductsControl } from './ProductsControl'
|
|
27
28
|
import { ProductSetFormValues, WithIsLoading } from './ProductSetForm'
|
|
28
|
-
import {
|
|
29
|
+
import {
|
|
30
|
+
SelectCategoryModal,
|
|
31
|
+
CATEGORY_TYPES_NAMES,
|
|
32
|
+
CategoryConfig,
|
|
33
|
+
} from './SelectCategoryModal'
|
|
29
34
|
import { ProductSetLoadingContext } from './context'
|
|
30
35
|
import { VenueMapSetModal } from './VenueMapSetModal'
|
|
31
36
|
import { moveArrayElements, sortArrayByIndex } from '../utils'
|
|
@@ -33,6 +38,29 @@ import { useSortableTreeFunctions } from '../hooks/useSortableTreeFunctions'
|
|
|
33
38
|
// @TODO not for first release
|
|
34
39
|
// import Popover from "./ProductSetFormPopover";
|
|
35
40
|
|
|
41
|
+
const CATEGORIES_TYPE: Partial<Record<CategoryType, CategoryConfig>> = {
|
|
42
|
+
[CATEGORY_TYPES_NAMES.tickets]: {
|
|
43
|
+
label: 'tickets',
|
|
44
|
+
icon: <FaTicketAlt color='#0e8ce2' size={10} />,
|
|
45
|
+
},
|
|
46
|
+
[CATEGORY_TYPES_NAMES.bookings]: {
|
|
47
|
+
label: 'bookings',
|
|
48
|
+
icon: <FaCalendar color='#0e8ce2' size={10} />,
|
|
49
|
+
},
|
|
50
|
+
[CATEGORY_TYPES_NAMES.menuItems]: {
|
|
51
|
+
label: 'menuItems',
|
|
52
|
+
icon: <FaBars color='#0e8ce2' size={10} />,
|
|
53
|
+
},
|
|
54
|
+
[CATEGORY_TYPES_NAMES.game]: {
|
|
55
|
+
label: 'game',
|
|
56
|
+
icon: <FaBowlingBall color='#0e8ce2' size={10} />,
|
|
57
|
+
},
|
|
58
|
+
[CATEGORY_TYPES_NAMES.fixedDuration]: {
|
|
59
|
+
label: 'fixedDuration',
|
|
60
|
+
icon: <FaCalendar color='#0e8ce2' size={10} />,
|
|
61
|
+
},
|
|
62
|
+
}
|
|
63
|
+
|
|
36
64
|
interface ProductCategoriesControlProps extends WithIsLoading {
|
|
37
65
|
stepIndex: number
|
|
38
66
|
isOverrides?: boolean
|
|
@@ -229,6 +257,8 @@ export function ProductCategoriesControl({
|
|
|
229
257
|
setIsExpanded(productCategoryId)
|
|
230
258
|
}
|
|
231
259
|
|
|
260
|
+
const categoryType = CATEGORIES_TYPE[productCategory.type]
|
|
261
|
+
|
|
232
262
|
return (
|
|
233
263
|
<Controller
|
|
234
264
|
key={`product-category-${productCategory._id}`}
|
|
@@ -273,6 +303,12 @@ export function ProductCategoriesControl({
|
|
|
273
303
|
)}
|
|
274
304
|
modalClass={ProductSetModalClasses.category}
|
|
275
305
|
isNewAdded={showCategoryModal}
|
|
306
|
+
itemButton={
|
|
307
|
+
<div className='btn-outline-primary item-icon sm border border-primary rounded-sm'>
|
|
308
|
+
{categoryType.icon}
|
|
309
|
+
<span className='ml-2'>{t(categoryType.label)}</span>
|
|
310
|
+
</div>
|
|
311
|
+
}
|
|
276
312
|
body={
|
|
277
313
|
<ProductCategoryControl
|
|
278
314
|
isLoading={isLoading}
|
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
} from 'react-icons/fa'
|
|
26
26
|
import { ProductSetLoadingContext } from './context'
|
|
27
27
|
|
|
28
|
-
const CATEGORY_TYPES_NAMES = {
|
|
28
|
+
export const CATEGORY_TYPES_NAMES = {
|
|
29
29
|
menuItems: CATEGORY_TYPE_MENU_ITEMS,
|
|
30
30
|
tickets: CATEGORY_TYPE_TICKETS,
|
|
31
31
|
bookings: CATEGORY_TYPE_BOOKINGS,
|
|
@@ -33,7 +33,7 @@ const CATEGORY_TYPES_NAMES = {
|
|
|
33
33
|
fixedDuration: CATEGORY_TYPE_FIXED_DURATION,
|
|
34
34
|
} as const
|
|
35
35
|
|
|
36
|
-
type CategoryConfig = { label: string; icon: ReactElement }
|
|
36
|
+
export type CategoryConfig = { label: string; icon: ReactElement }
|
|
37
37
|
|
|
38
38
|
const MAIN_CATEGORIES: Partial<Record<CategoryType, CategoryConfig>> = {
|
|
39
39
|
[CATEGORY_TYPES_NAMES.tickets]: {
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
ReactNode,
|
|
3
|
+
useCallback,
|
|
4
|
+
useEffect,
|
|
5
|
+
useState,
|
|
6
|
+
} from 'react'
|
|
2
7
|
import { DndContext, useDraggable } from '@dnd-kit/core'
|
|
3
8
|
import {
|
|
4
9
|
SortableContext,
|
|
@@ -33,6 +38,7 @@ export interface SortableTreeItemProps {
|
|
|
33
38
|
body: ReactNode
|
|
34
39
|
children?: ReactNode
|
|
35
40
|
preItem?: ReactNode
|
|
41
|
+
itemButton?: ReactNode
|
|
36
42
|
postItem?: ReactNode
|
|
37
43
|
sortableItems?: string[]
|
|
38
44
|
isExpanded?: boolean
|
|
@@ -82,6 +88,7 @@ export function SortableTreeItem({
|
|
|
82
88
|
secondaryBadge,
|
|
83
89
|
setIsExpanded,
|
|
84
90
|
isOverride,
|
|
91
|
+
itemButton,
|
|
85
92
|
}: SortableTreeItemProps) {
|
|
86
93
|
const [expanded, setExpanded] = useState(isExpanded)
|
|
87
94
|
const [isModalVisible, setIsModalVisible] = useState(isNewAdded)
|
|
@@ -287,9 +294,13 @@ export function SortableTreeItem({
|
|
|
287
294
|
className={clsx(
|
|
288
295
|
'sortable-tree-item-title',
|
|
289
296
|
modalLabel && 'sortable-tree-product-set-element-title',
|
|
297
|
+
'd-flex justify-content-between',
|
|
290
298
|
)}
|
|
291
299
|
>
|
|
292
300
|
{title}
|
|
301
|
+
<div className='sortable-tree-item-subtitle'>
|
|
302
|
+
{itemButton}
|
|
303
|
+
</div>
|
|
293
304
|
</span>
|
|
294
305
|
{!expanded && (
|
|
295
306
|
<span className='sortable-tree-item-subtitle'>
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
.product-set-form {
|
|
2
|
+
|
|
2
3
|
input,
|
|
3
4
|
textarea,
|
|
4
5
|
select,
|
|
@@ -15,10 +16,12 @@
|
|
|
15
16
|
height: 2.5rem;
|
|
16
17
|
border-width: 2px;
|
|
17
18
|
padding: 2px;
|
|
19
|
+
|
|
18
20
|
label,
|
|
19
21
|
.btn-switch-indicator {
|
|
20
22
|
border-radius: 0.375rem !important;
|
|
21
23
|
}
|
|
24
|
+
|
|
22
25
|
label {
|
|
23
26
|
height: 2rem;
|
|
24
27
|
}
|
|
@@ -34,6 +37,7 @@
|
|
|
34
37
|
margin-top: 1.5rem;
|
|
35
38
|
margin-bottom: 1.5rem;
|
|
36
39
|
}
|
|
40
|
+
|
|
37
41
|
@include media-breakpoint-down(sm) {
|
|
38
42
|
padding: 1.5rem 1rem;
|
|
39
43
|
margin-top: 0.5rem;
|
|
@@ -59,10 +63,21 @@
|
|
|
59
63
|
background-color: #ffdbdb;
|
|
60
64
|
color: #d52902;
|
|
61
65
|
}
|
|
66
|
+
|
|
62
67
|
.category-badge {
|
|
63
68
|
background-color: #e8f4f6;
|
|
64
69
|
color: #1a93aa;
|
|
65
70
|
}
|
|
71
|
+
|
|
72
|
+
.item-icon {
|
|
73
|
+
display: flex;
|
|
74
|
+
justify-items: center;
|
|
75
|
+
align-items: center;
|
|
76
|
+
font-size: 0.65rem;
|
|
77
|
+
padding: 0.2rem;
|
|
78
|
+
margin-right: 1rem;
|
|
79
|
+
}
|
|
80
|
+
|
|
66
81
|
.product-badge {
|
|
67
82
|
background-color: #e9f5ea;
|
|
68
83
|
color: #269b36;
|
|
@@ -75,10 +90,12 @@
|
|
|
75
90
|
|
|
76
91
|
.product-set-mobile-modal {
|
|
77
92
|
margin: 0;
|
|
93
|
+
|
|
78
94
|
.modal-content {
|
|
79
95
|
border-radius: 1rem 1rem 0 0;
|
|
80
96
|
border-width: 0;
|
|
81
97
|
margin: 0;
|
|
98
|
+
|
|
82
99
|
.modal-body {
|
|
83
100
|
padding: 1rem 0;
|
|
84
101
|
}
|
|
@@ -100,18 +117,22 @@
|
|
|
100
117
|
font-weight: 600;
|
|
101
118
|
font-size: 0.625rem;
|
|
102
119
|
}
|
|
120
|
+
|
|
103
121
|
.product-set-subtitle-dot {
|
|
104
122
|
margin-right: 0.375rem;
|
|
105
123
|
width: 0.375rem;
|
|
106
124
|
height: 0.375rem;
|
|
107
125
|
border-radius: 3px;
|
|
108
126
|
}
|
|
127
|
+
|
|
109
128
|
.product-set-subtitle-category-dot {
|
|
110
129
|
background-color: #269b36;
|
|
111
130
|
}
|
|
131
|
+
|
|
112
132
|
.product-set-subtitle-step-dot {
|
|
113
133
|
background-color: #1a93aa;
|
|
114
134
|
}
|
|
135
|
+
|
|
115
136
|
.product-set-subtitle-product-dot {
|
|
116
137
|
background-color: #269b36;
|
|
117
138
|
}
|
|
@@ -156,6 +177,7 @@
|
|
|
156
177
|
justify-self: flex-end;
|
|
157
178
|
align-items: flex-end;
|
|
158
179
|
}
|
|
180
|
+
|
|
159
181
|
.small-badge {
|
|
160
182
|
font-size: 0.5rem;
|
|
161
183
|
height: 1rem;
|
|
@@ -163,6 +185,7 @@
|
|
|
163
185
|
padding: 0 0.2rem;
|
|
164
186
|
margin-bottom: 0.2rem;
|
|
165
187
|
}
|
|
188
|
+
|
|
166
189
|
.product-set-save-btn-wrapper {
|
|
167
190
|
padding-left: 0 !important;
|
|
168
191
|
display: flex;
|
|
@@ -177,8 +200,8 @@
|
|
|
177
200
|
|
|
178
201
|
.sortable-tree-item-toggle {
|
|
179
202
|
.product-zone-badge {
|
|
180
|
-
background-color: #
|
|
181
|
-
color: #
|
|
203
|
+
background-color: #EFE9F5;
|
|
204
|
+
color: #84269B;
|
|
182
205
|
font-size: 0.875rem;
|
|
183
206
|
font-weight: 600;
|
|
184
207
|
}
|
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.
|
|
3307
|
-
version: 4.
|
|
3308
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.
|
|
3306
|
+
"@rollup/rollup-android-arm-eabi@npm:4.34.4":
|
|
3307
|
+
version: 4.34.4
|
|
3308
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.34.4"
|
|
3309
3309
|
conditions: os=android & cpu=arm
|
|
3310
3310
|
languageName: node
|
|
3311
3311
|
linkType: hard
|
|
3312
3312
|
|
|
3313
|
-
"@rollup/rollup-android-arm64@npm:4.
|
|
3314
|
-
version: 4.
|
|
3315
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.
|
|
3313
|
+
"@rollup/rollup-android-arm64@npm:4.34.4":
|
|
3314
|
+
version: 4.34.4
|
|
3315
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.34.4"
|
|
3316
3316
|
conditions: os=android & cpu=arm64
|
|
3317
3317
|
languageName: node
|
|
3318
3318
|
linkType: hard
|
|
3319
3319
|
|
|
3320
|
-
"@rollup/rollup-darwin-arm64@npm:4.
|
|
3321
|
-
version: 4.
|
|
3322
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.
|
|
3320
|
+
"@rollup/rollup-darwin-arm64@npm:4.34.4":
|
|
3321
|
+
version: 4.34.4
|
|
3322
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.34.4"
|
|
3323
3323
|
conditions: os=darwin & cpu=arm64
|
|
3324
3324
|
languageName: node
|
|
3325
3325
|
linkType: hard
|
|
3326
3326
|
|
|
3327
|
-
"@rollup/rollup-darwin-x64@npm:4.
|
|
3328
|
-
version: 4.
|
|
3329
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.
|
|
3327
|
+
"@rollup/rollup-darwin-x64@npm:4.34.4":
|
|
3328
|
+
version: 4.34.4
|
|
3329
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.34.4"
|
|
3330
3330
|
conditions: os=darwin & cpu=x64
|
|
3331
3331
|
languageName: node
|
|
3332
3332
|
linkType: hard
|
|
3333
3333
|
|
|
3334
|
-
"@rollup/rollup-freebsd-arm64@npm:4.
|
|
3335
|
-
version: 4.
|
|
3336
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.
|
|
3334
|
+
"@rollup/rollup-freebsd-arm64@npm:4.34.4":
|
|
3335
|
+
version: 4.34.4
|
|
3336
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.34.4"
|
|
3337
3337
|
conditions: os=freebsd & cpu=arm64
|
|
3338
3338
|
languageName: node
|
|
3339
3339
|
linkType: hard
|
|
3340
3340
|
|
|
3341
|
-
"@rollup/rollup-freebsd-x64@npm:4.
|
|
3342
|
-
version: 4.
|
|
3343
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.
|
|
3341
|
+
"@rollup/rollup-freebsd-x64@npm:4.34.4":
|
|
3342
|
+
version: 4.34.4
|
|
3343
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.34.4"
|
|
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.
|
|
3349
|
-
version: 4.
|
|
3350
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.
|
|
3348
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.34.4":
|
|
3349
|
+
version: 4.34.4
|
|
3350
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.4"
|
|
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.
|
|
3356
|
-
version: 4.
|
|
3357
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.
|
|
3355
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.34.4":
|
|
3356
|
+
version: 4.34.4
|
|
3357
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.34.4"
|
|
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.
|
|
3363
|
-
version: 4.
|
|
3364
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.
|
|
3362
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.34.4":
|
|
3363
|
+
version: 4.34.4
|
|
3364
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.34.4"
|
|
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.
|
|
3370
|
-
version: 4.
|
|
3371
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.
|
|
3369
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.34.4":
|
|
3370
|
+
version: 4.34.4
|
|
3371
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.34.4"
|
|
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.
|
|
3377
|
-
version: 4.
|
|
3378
|
-
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.
|
|
3376
|
+
"@rollup/rollup-linux-loongarch64-gnu@npm:4.34.4":
|
|
3377
|
+
version: 4.34.4
|
|
3378
|
+
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.4"
|
|
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.
|
|
3384
|
-
version: 4.
|
|
3385
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.
|
|
3383
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.4":
|
|
3384
|
+
version: 4.34.4
|
|
3385
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.4"
|
|
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.
|
|
3391
|
-
version: 4.
|
|
3392
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.
|
|
3390
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.34.4":
|
|
3391
|
+
version: 4.34.4
|
|
3392
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.34.4"
|
|
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.
|
|
3398
|
-
version: 4.
|
|
3399
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.
|
|
3397
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.34.4":
|
|
3398
|
+
version: 4.34.4
|
|
3399
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.34.4"
|
|
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.
|
|
3405
|
-
version: 4.
|
|
3406
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.
|
|
3404
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.34.4":
|
|
3405
|
+
version: 4.34.4
|
|
3406
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.34.4"
|
|
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.
|
|
3412
|
-
version: 4.
|
|
3413
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.
|
|
3411
|
+
"@rollup/rollup-linux-x64-musl@npm:4.34.4":
|
|
3412
|
+
version: 4.34.4
|
|
3413
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.34.4"
|
|
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.
|
|
3419
|
-
version: 4.
|
|
3420
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.
|
|
3418
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.34.4":
|
|
3419
|
+
version: 4.34.4
|
|
3420
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.34.4"
|
|
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.
|
|
3426
|
-
version: 4.
|
|
3427
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.
|
|
3425
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.34.4":
|
|
3426
|
+
version: 4.34.4
|
|
3427
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.34.4"
|
|
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.
|
|
3433
|
-
version: 4.
|
|
3434
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.
|
|
3432
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.34.4":
|
|
3433
|
+
version: 4.34.4
|
|
3434
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.34.4"
|
|
3435
3435
|
conditions: os=win32 & cpu=x64
|
|
3436
3436
|
languageName: node
|
|
3437
3437
|
linkType: hard
|
|
@@ -5175,14 +5175,14 @@ __metadata:
|
|
|
5175
5175
|
linkType: hard
|
|
5176
5176
|
|
|
5177
5177
|
"@tiptap/extension-bubble-menu@npm:^2.0.0-beta.56":
|
|
5178
|
-
version: 2.11.
|
|
5179
|
-
resolution: "@tiptap/extension-bubble-menu@npm:2.11.
|
|
5178
|
+
version: 2.11.5
|
|
5179
|
+
resolution: "@tiptap/extension-bubble-menu@npm:2.11.5"
|
|
5180
5180
|
dependencies:
|
|
5181
5181
|
tippy.js: "npm:^6.3.7"
|
|
5182
5182
|
peerDependencies:
|
|
5183
5183
|
"@tiptap/core": ^2.7.0
|
|
5184
5184
|
"@tiptap/pm": ^2.7.0
|
|
5185
|
-
checksum: 10c0/
|
|
5185
|
+
checksum: 10c0/a9112df35a19c875085c4065cee36228aec68c2336ddcff25a4e741e25625397325762abce045ede53c18b58df9235216ef909a099f9ac8f5783d137615e3252
|
|
5186
5186
|
languageName: node
|
|
5187
5187
|
linkType: hard
|
|
5188
5188
|
|
|
@@ -5205,14 +5205,14 @@ __metadata:
|
|
|
5205
5205
|
linkType: hard
|
|
5206
5206
|
|
|
5207
5207
|
"@tiptap/extension-floating-menu@npm:^2.0.0-beta.51":
|
|
5208
|
-
version: 2.11.
|
|
5209
|
-
resolution: "@tiptap/extension-floating-menu@npm:2.11.
|
|
5208
|
+
version: 2.11.5
|
|
5209
|
+
resolution: "@tiptap/extension-floating-menu@npm:2.11.5"
|
|
5210
5210
|
dependencies:
|
|
5211
5211
|
tippy.js: "npm:^6.3.7"
|
|
5212
5212
|
peerDependencies:
|
|
5213
5213
|
"@tiptap/core": ^2.7.0
|
|
5214
5214
|
"@tiptap/pm": ^2.7.0
|
|
5215
|
-
checksum: 10c0/
|
|
5215
|
+
checksum: 10c0/45013b8e7ea13950a76bf62498d48b0d681aeaa88e49b3027f45ec42a42b5006e9f8af25251712cb6ed73a732989e2f95d293b905ba83aa82e2c17aabcfed0b0
|
|
5216
5216
|
languageName: node
|
|
5217
5217
|
linkType: hard
|
|
5218
5218
|
|
|
@@ -5692,11 +5692,11 @@ __metadata:
|
|
|
5692
5692
|
linkType: hard
|
|
5693
5693
|
|
|
5694
5694
|
"@types/node@npm:*":
|
|
5695
|
-
version: 22.
|
|
5696
|
-
resolution: "@types/node@npm:22.
|
|
5695
|
+
version: 22.13.1
|
|
5696
|
+
resolution: "@types/node@npm:22.13.1"
|
|
5697
5697
|
dependencies:
|
|
5698
5698
|
undici-types: "npm:~6.20.0"
|
|
5699
|
-
checksum: 10c0/
|
|
5699
|
+
checksum: 10c0/d4e56d41d8bd53de93da2651c0a0234e330bd7b1b6d071b1a94bd3b5ee2d9f387519e739c52a15c1faa4fb9d97e825b848421af4b2e50e6518011e7adb4a34b7
|
|
5700
5700
|
languageName: node
|
|
5701
5701
|
linkType: hard
|
|
5702
5702
|
|
|
@@ -6065,9 +6065,9 @@ __metadata:
|
|
|
6065
6065
|
linkType: hard
|
|
6066
6066
|
|
|
6067
6067
|
"@types/webpack-env@npm:^1.16.0":
|
|
6068
|
-
version: 1.18.
|
|
6069
|
-
resolution: "@types/webpack-env@npm:1.18.
|
|
6070
|
-
checksum: 10c0/
|
|
6068
|
+
version: 1.18.8
|
|
6069
|
+
resolution: "@types/webpack-env@npm:1.18.8"
|
|
6070
|
+
checksum: 10c0/527a5d1eb75c5243e4f3665d956c7c340f899955dd25d16c9fd9750406f32e95a3a17d207640295038e8235c0c2a2daf084f420e088e58b965d82fc74f6012d7
|
|
6071
6071
|
languageName: node
|
|
6072
6072
|
linkType: hard
|
|
6073
6073
|
|
|
@@ -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.30001697
|
|
8104
|
+
resolution: "caniuse-lite@npm:1.0.30001697"
|
|
8105
|
+
checksum: 10c0/c114045be1bb5e610ca14c619157472910401bf59cc4d3050cc64ecd6887345ae8f685a5474c126755fabbd6e02f899b3b743218ab46dcbd5b6880607b67e18e
|
|
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.
|
|
8249
|
-
resolution: "chromatic@npm:11.25.
|
|
8248
|
+
version: 11.25.2
|
|
8249
|
+
resolution: "chromatic@npm:11.25.2"
|
|
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/2cb4bb40a062005292a4cd606321f6c9bdaa31e255e66bae12c780bca9b72e883c017ebe48c5a9228db88a010f5977571ef7dfdcdd4195ad0e7b955f9966d7df
|
|
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.
|
|
8822
|
-
resolution: "country-flag-icons@npm:1.5.
|
|
8823
|
-
checksum: 10c0/
|
|
8821
|
+
version: 1.5.15
|
|
8822
|
+
resolution: "country-flag-icons@npm:1.5.15"
|
|
8823
|
+
checksum: 10c0/79e3473bce064c175a9b45219e4b5aa069e1c93c044053cc5317b393c441350965918c9b2737940bc13c45049b9271c44b7c2d157606f767147cddc7c6e7633a
|
|
8824
8824
|
languageName: node
|
|
8825
8825
|
linkType: hard
|
|
8826
8826
|
|
|
@@ -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.93
|
|
9893
|
+
resolution: "electron-to-chromium@npm:1.5.93"
|
|
9894
|
+
checksum: 10c0/0420b6ebbe9bd3601f1e9ead963fe749d85d7558ecee9347b64023ca2b6d6a4bd833954d782d1b0a0bd94b064dbacece57e8f730b954109e950def89ee970ef7
|
|
9895
9895
|
languageName: node
|
|
9896
9896
|
linkType: hard
|
|
9897
9897
|
|
|
@@ -11003,11 +11003,11 @@ __metadata:
|
|
|
11003
11003
|
linkType: hard
|
|
11004
11004
|
|
|
11005
11005
|
"fastq@npm:^1.6.0":
|
|
11006
|
-
version: 1.
|
|
11007
|
-
resolution: "fastq@npm:1.
|
|
11006
|
+
version: 1.19.0
|
|
11007
|
+
resolution: "fastq@npm:1.19.0"
|
|
11008
11008
|
dependencies:
|
|
11009
11009
|
reusify: "npm:^1.0.4"
|
|
11010
|
-
checksum: 10c0/
|
|
11010
|
+
checksum: 10c0/d6a001638f1574a696660fcbba5300d017760432372c801632c325ca7c16819604841c92fd3ccadcdacec0966ca336363a5ff57bc5f0be335d8ea7ac6087b98f
|
|
11011
11011
|
languageName: node
|
|
11012
11012
|
linkType: hard
|
|
11013
11013
|
|
|
@@ -12532,12 +12532,12 @@ __metadata:
|
|
|
12532
12532
|
linkType: hard
|
|
12533
12533
|
|
|
12534
12534
|
"import-fresh@npm:^3.0.0, import-fresh@npm:^3.1.0, import-fresh@npm:^3.2.1, import-fresh@npm:^3.3.0":
|
|
12535
|
-
version: 3.3.
|
|
12536
|
-
resolution: "import-fresh@npm:3.3.
|
|
12535
|
+
version: 3.3.1
|
|
12536
|
+
resolution: "import-fresh@npm:3.3.1"
|
|
12537
12537
|
dependencies:
|
|
12538
12538
|
parent-module: "npm:^1.0.0"
|
|
12539
12539
|
resolve-from: "npm:^4.0.0"
|
|
12540
|
-
checksum: 10c0/
|
|
12540
|
+
checksum: 10c0/bf8cc494872fef783249709385ae883b447e3eb09db0ebd15dcead7d9afe7224dad7bd7591c6b73b0b19b3c0f9640eb8ee884f01cfaf2887ab995b0b36a0cbec
|
|
12541
12541
|
languageName: node
|
|
12542
12542
|
linkType: hard
|
|
12543
12543
|
|
|
@@ -12617,8 +12617,8 @@ __metadata:
|
|
|
12617
12617
|
linkType: hard
|
|
12618
12618
|
|
|
12619
12619
|
"input-format@npm:^0.3.5":
|
|
12620
|
-
version: 0.3.
|
|
12621
|
-
resolution: "input-format@npm:0.3.
|
|
12620
|
+
version: 0.3.14
|
|
12621
|
+
resolution: "input-format@npm:0.3.14"
|
|
12622
12622
|
dependencies:
|
|
12623
12623
|
prop-types: "npm:^15.8.1"
|
|
12624
12624
|
peerDependencies:
|
|
@@ -12629,7 +12629,7 @@ __metadata:
|
|
|
12629
12629
|
optional: true
|
|
12630
12630
|
react-dom:
|
|
12631
12631
|
optional: true
|
|
12632
|
-
checksum: 10c0/
|
|
12632
|
+
checksum: 10c0/37bb23e0dd15223b2ac8a25b09bc26e4d613cbd93c040dcdb490a1661dd0782c2742ad819b9dbd4b154a9e09ce1a69046a78e4ee943171b7ec86b07b50324ad6
|
|
12633
12633
|
languageName: node
|
|
12634
12634
|
linkType: hard
|
|
12635
12635
|
|
|
@@ -12805,12 +12805,12 @@ __metadata:
|
|
|
12805
12805
|
linkType: hard
|
|
12806
12806
|
|
|
12807
12807
|
"is-boolean-object@npm:^1.2.1":
|
|
12808
|
-
version: 1.2.
|
|
12809
|
-
resolution: "is-boolean-object@npm:1.2.
|
|
12808
|
+
version: 1.2.2
|
|
12809
|
+
resolution: "is-boolean-object@npm:1.2.2"
|
|
12810
12810
|
dependencies:
|
|
12811
|
-
call-bound: "npm:^1.0.
|
|
12811
|
+
call-bound: "npm:^1.0.3"
|
|
12812
12812
|
has-tostringtag: "npm:^1.0.2"
|
|
12813
|
-
checksum: 10c0/
|
|
12813
|
+
checksum: 10c0/36ff6baf6bd18b3130186990026f5a95c709345c39cd368468e6c1b6ab52201e9fd26d8e1f4c066357b4938b0f0401e1a5000e08257787c1a02f3a719457001e
|
|
12814
12814
|
languageName: node
|
|
12815
12815
|
linkType: hard
|
|
12816
12816
|
|
|
@@ -13224,11 +13224,11 @@ __metadata:
|
|
|
13224
13224
|
linkType: hard
|
|
13225
13225
|
|
|
13226
13226
|
"is-weakref@npm:^1.0.2, is-weakref@npm:^1.1.0":
|
|
13227
|
-
version: 1.1.
|
|
13228
|
-
resolution: "is-weakref@npm:1.1.
|
|
13227
|
+
version: 1.1.1
|
|
13228
|
+
resolution: "is-weakref@npm:1.1.1"
|
|
13229
13229
|
dependencies:
|
|
13230
|
-
call-bound: "npm:^1.0.
|
|
13231
|
-
checksum: 10c0/
|
|
13230
|
+
call-bound: "npm:^1.0.3"
|
|
13231
|
+
checksum: 10c0/8e0a9c07b0c780949a100e2cab2b5560a48ecd4c61726923c1a9b77b6ab0aa0046c9e7fb2206042296817045376dee2c8ab1dabe08c7c3dfbf195b01275a085b
|
|
13232
13232
|
languageName: node
|
|
13233
13233
|
linkType: hard
|
|
13234
13234
|
|
|
@@ -13803,9 +13803,9 @@ __metadata:
|
|
|
13803
13803
|
linkType: hard
|
|
13804
13804
|
|
|
13805
13805
|
"libphonenumber-js@npm:^1.9.11":
|
|
13806
|
-
version: 1.11.
|
|
13807
|
-
resolution: "libphonenumber-js@npm:1.11.
|
|
13808
|
-
checksum: 10c0/
|
|
13806
|
+
version: 1.11.19
|
|
13807
|
+
resolution: "libphonenumber-js@npm:1.11.19"
|
|
13808
|
+
checksum: 10c0/cf02204746dd89cacbd5830c32e6ea4a7e4593efa84b0707207900d79bb0bbd19bd38eb6da7544f49638d609b8c4b9dcbd7e50ea6506e957cd149f6a3c2c7b2b
|
|
13809
13809
|
languageName: node
|
|
13810
13810
|
linkType: hard
|
|
13811
13811
|
|
|
@@ -15280,9 +15280,9 @@ __metadata:
|
|
|
15280
15280
|
linkType: hard
|
|
15281
15281
|
|
|
15282
15282
|
"object-inspect@npm:^1.12.0, object-inspect@npm:^1.13.3":
|
|
15283
|
-
version: 1.13.
|
|
15284
|
-
resolution: "object-inspect@npm:1.13.
|
|
15285
|
-
checksum: 10c0/
|
|
15283
|
+
version: 1.13.4
|
|
15284
|
+
resolution: "object-inspect@npm:1.13.4"
|
|
15285
|
+
checksum: 10c0/d7f8711e803b96ea3191c745d6f8056ce1f2496e530e6a19a0e92d89b0fa3c76d910c31f0aa270432db6bd3b2f85500a376a83aaba849a8d518c8845b3211692
|
|
15286
15286
|
languageName: node
|
|
15287
15287
|
linkType: hard
|
|
15288
15288
|
|
|
@@ -16079,14 +16079,14 @@ __metadata:
|
|
|
16079
16079
|
linkType: hard
|
|
16080
16080
|
|
|
16081
16081
|
"postcss-calc@npm:^10.0.2":
|
|
16082
|
-
version: 10.1.
|
|
16083
|
-
resolution: "postcss-calc@npm:10.1.
|
|
16082
|
+
version: 10.1.1
|
|
16083
|
+
resolution: "postcss-calc@npm:10.1.1"
|
|
16084
16084
|
dependencies:
|
|
16085
16085
|
postcss-selector-parser: "npm:^7.0.0"
|
|
16086
16086
|
postcss-value-parser: "npm:^4.2.0"
|
|
16087
16087
|
peerDependencies:
|
|
16088
16088
|
postcss: ^8.4.38
|
|
16089
|
-
checksum: 10c0/
|
|
16089
|
+
checksum: 10c0/616d3b7b15a524fa86ff1b2be7d9f2369c7794fd44c946f117380e519b064e9ac8d1414ea29de0238b130f2b2a5eb2fb59758cc5478af40b04a012992fb1075b
|
|
16090
16090
|
languageName: node
|
|
16091
16091
|
linkType: hard
|
|
16092
16092
|
|
|
@@ -17035,15 +17035,15 @@ __metadata:
|
|
|
17035
17035
|
linkType: hard
|
|
17036
17036
|
|
|
17037
17037
|
"prosemirror-tables@npm:^1.3.0":
|
|
17038
|
-
version: 1.6.
|
|
17039
|
-
resolution: "prosemirror-tables@npm:1.6.
|
|
17038
|
+
version: 1.6.3
|
|
17039
|
+
resolution: "prosemirror-tables@npm:1.6.3"
|
|
17040
17040
|
dependencies:
|
|
17041
17041
|
prosemirror-keymap: "npm:^1.2.2"
|
|
17042
17042
|
prosemirror-model: "npm:^1.24.1"
|
|
17043
17043
|
prosemirror-state: "npm:^1.4.3"
|
|
17044
17044
|
prosemirror-transform: "npm:^1.10.2"
|
|
17045
17045
|
prosemirror-view: "npm:^1.37.1"
|
|
17046
|
-
checksum: 10c0/
|
|
17046
|
+
checksum: 10c0/09ded9ffae5c2a9e274cf89c2ff1ba6400bd3d0ad9e68a0de9a4154c9b9210239c90db50e3081487615899eae3b2c7228e097df73acd42150d9cc91076da239b
|
|
17047
17047
|
languageName: node
|
|
17048
17048
|
linkType: hard
|
|
17049
17049
|
|
|
@@ -18927,28 +18927,28 @@ __metadata:
|
|
|
18927
18927
|
linkType: hard
|
|
18928
18928
|
|
|
18929
18929
|
"rollup@npm:^4.13.0":
|
|
18930
|
-
version: 4.
|
|
18931
|
-
resolution: "rollup@npm:4.
|
|
18932
|
-
dependencies:
|
|
18933
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.
|
|
18934
|
-
"@rollup/rollup-android-arm64": "npm:4.
|
|
18935
|
-
"@rollup/rollup-darwin-arm64": "npm:4.
|
|
18936
|
-
"@rollup/rollup-darwin-x64": "npm:4.
|
|
18937
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.
|
|
18938
|
-
"@rollup/rollup-freebsd-x64": "npm:4.
|
|
18939
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.
|
|
18940
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.
|
|
18941
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.
|
|
18942
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.
|
|
18943
|
-
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.
|
|
18944
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.
|
|
18945
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.
|
|
18946
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.
|
|
18947
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.
|
|
18948
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.
|
|
18949
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.
|
|
18950
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.
|
|
18951
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.
|
|
18930
|
+
version: 4.34.4
|
|
18931
|
+
resolution: "rollup@npm:4.34.4"
|
|
18932
|
+
dependencies:
|
|
18933
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.34.4"
|
|
18934
|
+
"@rollup/rollup-android-arm64": "npm:4.34.4"
|
|
18935
|
+
"@rollup/rollup-darwin-arm64": "npm:4.34.4"
|
|
18936
|
+
"@rollup/rollup-darwin-x64": "npm:4.34.4"
|
|
18937
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.34.4"
|
|
18938
|
+
"@rollup/rollup-freebsd-x64": "npm:4.34.4"
|
|
18939
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.34.4"
|
|
18940
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.34.4"
|
|
18941
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.34.4"
|
|
18942
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.34.4"
|
|
18943
|
+
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.34.4"
|
|
18944
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.34.4"
|
|
18945
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.34.4"
|
|
18946
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.34.4"
|
|
18947
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.34.4"
|
|
18948
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.34.4"
|
|
18949
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.34.4"
|
|
18950
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.34.4"
|
|
18951
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.34.4"
|
|
18952
18952
|
"@types/estree": "npm:1.0.6"
|
|
18953
18953
|
fsevents: "npm:~2.3.2"
|
|
18954
18954
|
dependenciesMeta:
|
|
@@ -18994,7 +18994,7 @@ __metadata:
|
|
|
18994
18994
|
optional: true
|
|
18995
18995
|
bin:
|
|
18996
18996
|
rollup: dist/bin/rollup
|
|
18997
|
-
checksum: 10c0/
|
|
18997
|
+
checksum: 10c0/a81e2268be82ce431714ab13214b75750a066f9c5e3a29cc085963a4dd2f3bbff0b17c0a14227c0499aa513a5f3271622158e2bc3cc33a5462ee958a22f5517a
|
|
18998
18998
|
languageName: node
|
|
18999
18999
|
linkType: hard
|
|
19000
19000
|
|
|
@@ -19276,11 +19276,11 @@ __metadata:
|
|
|
19276
19276
|
linkType: hard
|
|
19277
19277
|
|
|
19278
19278
|
"semver@npm:^7.2.1, semver@npm:^7.3.2, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4":
|
|
19279
|
-
version: 7.
|
|
19280
|
-
resolution: "semver@npm:7.
|
|
19279
|
+
version: 7.7.1
|
|
19280
|
+
resolution: "semver@npm:7.7.1"
|
|
19281
19281
|
bin:
|
|
19282
19282
|
semver: bin/semver.js
|
|
19283
|
-
checksum: 10c0/
|
|
19283
|
+
checksum: 10c0/fd603a6fb9c399c6054015433051bdbe7b99a940a8fb44b85c2b524c4004b023d7928d47cb22154f8d054ea7ee8597f586605e05b52047f048278e4ac56ae958
|
|
19284
19284
|
languageName: node
|
|
19285
19285
|
linkType: hard
|
|
19286
19286
|
|
|
@@ -20297,9 +20297,9 @@ __metadata:
|
|
|
20297
20297
|
linkType: hard
|
|
20298
20298
|
|
|
20299
20299
|
"stylis@npm:^4.3.0":
|
|
20300
|
-
version: 4.3.
|
|
20301
|
-
resolution: "stylis@npm:4.3.
|
|
20302
|
-
checksum: 10c0/
|
|
20300
|
+
version: 4.3.6
|
|
20301
|
+
resolution: "stylis@npm:4.3.6"
|
|
20302
|
+
checksum: 10c0/e736d484983a34f7c65d362c67dc79b7bce388054b261c2b7b23d02eaaf280617033f65d44b1ea341854f4331a5074b885668ac8741f98c13a6cfd6443ae85d0
|
|
20303
20303
|
languageName: node
|
|
20304
20304
|
linkType: hard
|
|
20305
20305
|
|
|
@@ -20573,8 +20573,8 @@ __metadata:
|
|
|
20573
20573
|
linkType: hard
|
|
20574
20574
|
|
|
20575
20575
|
"terser@npm:^5.3.4":
|
|
20576
|
-
version: 5.
|
|
20577
|
-
resolution: "terser@npm:5.
|
|
20576
|
+
version: 5.38.0
|
|
20577
|
+
resolution: "terser@npm:5.38.0"
|
|
20578
20578
|
dependencies:
|
|
20579
20579
|
"@jridgewell/source-map": "npm:^0.3.3"
|
|
20580
20580
|
acorn: "npm:^8.8.2"
|
|
@@ -20582,7 +20582,7 @@ __metadata:
|
|
|
20582
20582
|
source-map-support: "npm:~0.5.20"
|
|
20583
20583
|
bin:
|
|
20584
20584
|
terser: bin/terser
|
|
20585
|
-
checksum: 10c0/
|
|
20585
|
+
checksum: 10c0/49f681fcdf3818160479eea8e415842f1716184853fc21fb0b2046ce8ef889e4e07d6c908c98895b2c53e6447ed558fbba7e20ac8adfe10a17d5764c63836185
|
|
20586
20586
|
languageName: node
|
|
20587
20587
|
linkType: hard
|
|
20588
20588
|
|
|
@@ -20813,8 +20813,8 @@ __metadata:
|
|
|
20813
20813
|
linkType: hard
|
|
20814
20814
|
|
|
20815
20815
|
"tsconfck@npm:^3.0.3":
|
|
20816
|
-
version: 3.1.
|
|
20817
|
-
resolution: "tsconfck@npm:3.1.
|
|
20816
|
+
version: 3.1.5
|
|
20817
|
+
resolution: "tsconfck@npm:3.1.5"
|
|
20818
20818
|
peerDependencies:
|
|
20819
20819
|
typescript: ^5.0.0
|
|
20820
20820
|
peerDependenciesMeta:
|
|
@@ -20822,7 +20822,7 @@ __metadata:
|
|
|
20822
20822
|
optional: true
|
|
20823
20823
|
bin:
|
|
20824
20824
|
tsconfck: bin/tsconfck.js
|
|
20825
|
-
checksum: 10c0/
|
|
20825
|
+
checksum: 10c0/9b62cd85d5702aa23ea50ea578d7124f3d59cc4518fcc7eacc04f4f9c9c481f720738ff8351bd4472247c0723a17dfd01af95a5b60ad623cdb8727fbe4881847
|
|
20826
20826
|
languageName: node
|
|
20827
20827
|
linkType: hard
|
|
20828
20828
|
|
|
@@ -21763,9 +21763,9 @@ __metadata:
|
|
|
21763
21763
|
linkType: hard
|
|
21764
21764
|
|
|
21765
21765
|
"vscode-uri@npm:^3.0.8":
|
|
21766
|
-
version: 3.0
|
|
21767
|
-
resolution: "vscode-uri@npm:3.0
|
|
21768
|
-
checksum: 10c0/
|
|
21766
|
+
version: 3.1.0
|
|
21767
|
+
resolution: "vscode-uri@npm:3.1.0"
|
|
21768
|
+
checksum: 10c0/5f6c9c10fd9b1664d71fab4e9fbbae6be93c7f75bb3a1d9d74399a88ab8649e99691223fd7cef4644376cac6e94fa2c086d802521b9a8e31c5af3e60f0f35624
|
|
21769
21769
|
languageName: node
|
|
21770
21770
|
linkType: hard
|
|
21771
21771
|
|