@licklist/design 0.66.12-dev.0 → 0.66.12-dev.2

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.
Files changed (30) hide show
  1. package/dist/events/edit-event-modal/component/EditEventForm/EditEventForm.d.ts.map +1 -1
  2. package/dist/events/edit-event-modal/component/EditEventForm/EditEventForm.js +3 -1
  3. package/dist/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.d.ts +2 -1
  4. package/dist/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.d.ts.map +1 -1
  5. package/dist/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.js +10 -6
  6. package/dist/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.d.ts +2 -1
  7. package/dist/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.d.ts.map +1 -1
  8. package/dist/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.js +2 -1
  9. package/dist/product-set/control/ProductSetControl.d.ts +2 -1
  10. package/dist/product-set/control/ProductSetControl.d.ts.map +1 -1
  11. package/dist/product-set/control/ProductSetControl.js +15 -2
  12. package/dist/product-set/form/ProductCategoriesControl.d.ts.map +1 -1
  13. package/dist/product-set/form/ProductCategoriesControl.js +48 -2
  14. package/dist/product-set/form/SelectCategoryModal.d.ts +12 -0
  15. package/dist/product-set/form/SelectCategoryModal.d.ts.map +1 -1
  16. package/dist/product-set/form/SelectCategoryModal.js +1 -1
  17. package/dist/sortable-tree/SortableTreeItem.d.ts +2 -1
  18. package/dist/sortable-tree/SortableTreeItem.d.ts.map +1 -1
  19. package/dist/sortable-tree/SortableTreeItem.js +10 -4
  20. package/dist/styles/product-set/ProductSetForm.scss +25 -2
  21. package/package.json +3 -3
  22. package/src/events/edit-event-modal/component/EditEventForm/EditEventForm.tsx +2 -0
  23. package/src/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.tsx +12 -4
  24. package/src/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.tsx +3 -0
  25. package/src/product-set/control/ProductSetControl.tsx +14 -0
  26. package/src/product-set/form/ProductCategoriesControl.tsx +38 -2
  27. package/src/product-set/form/SelectCategoryModal.tsx +2 -2
  28. package/src/sortable-tree/SortableTreeItem.tsx +13 -1
  29. package/src/styles/product-set/ProductSetForm.scss +25 -2
  30. package/yarn.lock +104 -67
@@ -22,11 +22,13 @@ export interface EventDates {
22
22
  interface EditEventProductSetProps {
23
23
  onSubmit: (value: EditEventFormValues["editedProductSet"]) => void;
24
24
  defaultValues?: EditEventFormValues["editedProductSet"];
25
+ occurrenceStartAtDate: string;
25
26
  }
26
27
 
27
28
  export const EditEventProductSet = ({
28
29
  onSubmit,
29
30
  defaultValues,
31
+ occurrenceStartAtDate,
30
32
  }: EditEventProductSetProps) => {
31
33
  const { companyId } = useParams<{
32
34
  companyId: string;
@@ -125,6 +127,7 @@ export const EditEventProductSet = ({
125
127
  fee={feeInPercent}
126
128
  isEventEditProductSet
127
129
  isOverrides
130
+ occurrenceStartAtDate={occurrenceStartAtDate}
128
131
  workHours={undefined}
129
132
  />
130
133
  <Button
@@ -1,7 +1,9 @@
1
+ import { useEffect } from "react";
1
2
  import { Col, Form, Row } from "react-bootstrap";
2
3
  import { Controller, useFormContext } from "react-hook-form";
3
4
  import { useTranslation } from "react-i18next";
4
5
  import clsx from "clsx";
6
+ import { DateTime } from "luxon";
5
7
  import {
6
8
  OPERATIONAL_COST_CUSTOMER,
7
9
  OPERATIONAL_COST_PROVIDER,
@@ -14,6 +16,7 @@ import {
14
16
  RELY_ON_PEOPLE_TYPES,
15
17
  RelyOnPeopleType,
16
18
  } from "@licklist/core/dist/DataMapper/Product/ProductSetDataMapper";
19
+ import { DATE_MONTH_LOCALE_FORMAT } from "@licklist/core/dist/Config";
17
20
  import { useId } from "@react-aria/utils";
18
21
  import { FieldSet } from "@licklist/core/dist/DataMapper/Order/FieldSetDataMapper";
19
22
  import { EmailTemplate } from "@licklist/core/dist/DataMapper/Notification/EmailTemplateDataMapper";
@@ -88,6 +91,7 @@ export interface ProductSetControlProps {
88
91
  workHours: WorkHour[] | undefined;
89
92
  providerHasBookingManagement?: boolean;
90
93
  isOverrides?: boolean;
94
+ occurrenceStartAtDate?: string;
91
95
  isCreateNewOverrides?: boolean;
92
96
  }
93
97
 
@@ -105,6 +109,7 @@ export function ProductSetControl({
105
109
  workHours,
106
110
  providerHasBookingManagement = false,
107
111
  isOverrides = false,
112
+ occurrenceStartAtDate,
108
113
  isCreateNewOverrides = false,
109
114
  }: ProductSetControlProps) {
110
115
  const { t } = useTranslation(["Design", "Validation", "Notification"]);
@@ -114,10 +119,12 @@ export function ProductSetControl({
114
119
  formState: { errors },
115
120
  watch,
116
121
  setError,
122
+ setValue,
117
123
  clearErrors,
118
124
  } = useFormContext<ProductSetControlValues>();
119
125
 
120
126
  const steps = watch("steps");
127
+ const productSetName = watch("name");
121
128
 
122
129
  const nameId = useId();
123
130
  const termsAndConditionsId = useId();
@@ -131,6 +138,13 @@ export function ProductSetControl({
131
138
  productCategories?.some((category) => checkIfZoneCategory(category?.type)),
132
139
  );
133
140
 
141
+ useEffect(() => {
142
+ if (!occurrenceStartAtDate) return;
143
+ const eventStartDate = DateTime.fromISO(occurrenceStartAtDate);
144
+ const eventStart = eventStartDate.toFormat(DATE_MONTH_LOCALE_FORMAT);
145
+ setValue("name", `${productSetName} (${eventStart})`);
146
+ }, [setValue, occurrenceStartAtDate]);
147
+
134
148
  return (
135
149
  <Row
136
150
  className={`product-set-form ${
@@ -1,13 +1,14 @@
1
1
  import { useEffect, useState, useContext } from "react";
2
2
  import HookFormService from "@licklist/plugins/dist/services/Form/HookFormService";
3
3
  import { uniqueId } from "lodash";
4
- import { Badge } from "react-bootstrap";
4
+ import { Badge, Button } from "react-bootstrap";
5
5
  import {
6
6
  Controller,
7
7
  useFieldArray,
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 { SelectCategoryModal } from "./SelectCategoryModal";
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;
@@ -228,6 +256,8 @@ export function ProductCategoriesControl({
228
256
  setIsExpanded(productCategoryId);
229
257
  };
230
258
 
259
+ const categoryType = CATEGORIES_TYPE[productCategory.type];
260
+
231
261
  return (
232
262
  <Controller
233
263
  key={`product-category-${productCategory._id}`}
@@ -272,6 +302,12 @@ export function ProductCategoriesControl({
272
302
  )}
273
303
  modalClass={ProductSetModalClasses.category}
274
304
  isNewAdded={showCategoryModal}
305
+ itemButton={
306
+ <div className="btn-outline-primary item-icon sm border border-primary rounded-sm">
307
+ {categoryType.icon}
308
+ <span className="ml-2">{t(categoryType.label)}</span>
309
+ </div>
310
+ }
275
311
  body={
276
312
  <ProductCategoryControl
277
313
  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,10 @@
1
- import { ReactNode, useCallback, useEffect, useState } from "react";
1
+ import {
2
+ ReactElement,
3
+ ReactNode,
4
+ useCallback,
5
+ useEffect,
6
+ useState,
7
+ } from "react";
2
8
  import { DndContext, useDraggable } from "@dnd-kit/core";
3
9
  import {
4
10
  SortableContext,
@@ -33,6 +39,7 @@ export interface SortableTreeItemProps {
33
39
  body: ReactNode;
34
40
  children?: ReactNode;
35
41
  preItem?: ReactNode;
42
+ itemButton?: ReactNode;
36
43
  postItem?: ReactNode;
37
44
  sortableItems?: string[];
38
45
  isExpanded?: boolean;
@@ -82,6 +89,7 @@ export function SortableTreeItem({
82
89
  secondaryBadge,
83
90
  setIsExpanded,
84
91
  isOverride,
92
+ itemButton,
85
93
  }: SortableTreeItemProps) {
86
94
  const [expanded, setExpanded] = useState(isExpanded);
87
95
  const [isModalVisible, setIsModalVisible] = useState(isNewAdded);
@@ -287,9 +295,13 @@ export function SortableTreeItem({
287
295
  className={clsx(
288
296
  "sortable-tree-item-title",
289
297
  modalLabel && "sortable-tree-product-set-element-title",
298
+ "d-flex justify-content-between",
290
299
  )}
291
300
  >
292
301
  {title}
302
+ <div className="sortable-tree-item-subtitle">
303
+ {itemButton}
304
+ </div>
293
305
  </span>
294
306
  {!expanded && (
295
307
  <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;
@@ -50,7 +54,7 @@
50
54
 
51
55
  .step-badge,
52
56
  .category-badge,
53
- .product-badge {
57
+ .product-badge {
54
58
  font-size: 0.875rem;
55
59
  font-weight: 600;
56
60
  }
@@ -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;
@@ -77,10 +92,12 @@
77
92
 
78
93
  .product-set-mobile-modal {
79
94
  margin: 0;
95
+
80
96
  .modal-content {
81
97
  border-radius: 1rem 1rem 0 0;
82
98
  border-width: 0;
83
99
  margin: 0;
100
+
84
101
  .modal-body {
85
102
  padding: 1rem 0;
86
103
  }
@@ -102,18 +119,22 @@
102
119
  font-weight: 600;
103
120
  font-size: 0.625rem;
104
121
  }
122
+
105
123
  .product-set-subtitle-dot {
106
124
  margin-right: 0.375rem;
107
125
  width: 0.375rem;
108
126
  height: 0.375rem;
109
127
  border-radius: 3px;
110
128
  }
129
+
111
130
  .product-set-subtitle-category-dot {
112
131
  background-color: #269b36;
113
132
  }
133
+
114
134
  .product-set-subtitle-step-dot {
115
135
  background-color: #1a93aa;
116
136
  }
137
+
117
138
  .product-set-subtitle-product-dot {
118
139
  background-color: #269b36;
119
140
  }
@@ -158,6 +179,7 @@
158
179
  justify-self: flex-end;
159
180
  align-items: flex-end;
160
181
  }
182
+
161
183
  .small-badge {
162
184
  font-size: 0.5rem;
163
185
  height: 1rem;
@@ -165,6 +187,7 @@
165
187
  padding: 0 0.2rem;
166
188
  margin-bottom: 0.2rem;
167
189
  }
190
+
168
191
  .product-set-save-btn-wrapper {
169
192
  padding-left: 0 !important;
170
193
  display: flex;
@@ -182,7 +205,7 @@
182
205
 
183
206
  .product-zone-badge {
184
207
  background-color: #EFE9F5;
185
- color:#84269B;
208
+ color: #84269B;
186
209
  font-size: 0.875rem;
187
210
  font-weight: 600;
188
211
  }
package/yarn.lock CHANGED
@@ -2587,6 +2587,32 @@ __metadata:
2587
2587
  languageName: node
2588
2588
  linkType: hard
2589
2589
 
2590
+ "@licklist/core@npm:0.28.6-dev.1":
2591
+ version: 0.28.6-dev.1
2592
+ resolution: "@licklist/core@npm:0.28.6-dev.1"
2593
+ dependencies:
2594
+ "@sentry/browser": "npm:6.2.0"
2595
+ axios: "npm:0.26.0"
2596
+ i18next: "npm:19.4.5"
2597
+ luxon: "npm:1.26.0"
2598
+ react: "npm:17.0.2"
2599
+ react-dom: "npm:17.0.2"
2600
+ react-i18next: "npm:11.8.8"
2601
+ react-intl: "npm:6.6.8"
2602
+ uuid: "npm:9.0.0"
2603
+ wait-for-expect: "npm:3.0.2"
2604
+ peerDependencies:
2605
+ "@licklist/eslint-config": 0.5.5
2606
+ axios: 0.26.0
2607
+ luxon: 1.26.0
2608
+ react: 17.0.2
2609
+ react-dom: 17.0.2
2610
+ react-i18next: 11.8.8
2611
+ react-intl: 6.6.8
2612
+ checksum: 10c0/251142f463dcb19215cb408dd3cdfe046cde765c2e98ffcc0bdc94d79c1b09a68ff9a22192296af95b6671a4bad82c4c3ee2e6f23716e9bca6528f178f873664
2613
+ languageName: node
2614
+ linkType: hard
2615
+
2590
2616
  "@licklist/design@workspace:.":
2591
2617
  version: 0.0.0-use.local
2592
2618
  resolution: "@licklist/design@workspace:."
@@ -2598,7 +2624,7 @@ __metadata:
2598
2624
  "@dnd-kit/utilities": "npm:2.0.0"
2599
2625
  "@fortawesome/fontawesome-svg-core": "npm:1.2.34"
2600
2626
  "@fortawesome/free-solid-svg-icons": "npm:5.15.2"
2601
- "@licklist/core": "npm:0.28.3-dev.5"
2627
+ "@licklist/core": "npm:0.28.6-dev.1"
2602
2628
  "@licklist/eslint-config": "npm:0.5.5"
2603
2629
  "@licklist/plugins": "npm:0.30.4-dev.3"
2604
2630
  "@mdx-js/react": "npm:1.6.22"
@@ -2722,7 +2748,7 @@ __metadata:
2722
2748
  vite-plugin-svgr: "npm:4.2.0"
2723
2749
  vite-tsconfig-paths: "npm:5.0.1"
2724
2750
  peerDependencies:
2725
- "@licklist/core": 0.28.3-dev.5
2751
+ "@licklist/core": 0.28.6-dev.1
2726
2752
  "@licklist/eslint-config": 0.5.5
2727
2753
  "@licklist/plugins": 0.30.4-dev.3
2728
2754
  lodash: 4.17.21
@@ -5051,14 +5077,14 @@ __metadata:
5051
5077
  linkType: hard
5052
5078
 
5053
5079
  "@tiptap/extension-bubble-menu@npm:^2.0.0-beta.56":
5054
- version: 2.6.6
5055
- resolution: "@tiptap/extension-bubble-menu@npm:2.6.6"
5080
+ version: 2.7.0
5081
+ resolution: "@tiptap/extension-bubble-menu@npm:2.7.0"
5056
5082
  dependencies:
5057
5083
  tippy.js: "npm:^6.3.7"
5058
5084
  peerDependencies:
5059
- "@tiptap/core": ^2.6.6
5060
- "@tiptap/pm": ^2.6.6
5061
- checksum: 10c0/4a00b73d133a90bc9baf977da352ced971eeba3930a3e34ddc14bfbb0f7742d07f7087a8ec35b700ff64b2a21bf601a55bd96dcee28c9bdf9d2dd79d545d2a64
5085
+ "@tiptap/core": ^2.7.0-pre.0
5086
+ "@tiptap/pm": ^2.7.0-pre.0
5087
+ checksum: 10c0/817de16ccb9837dc01080e6d1f7c77ae3ee69ae7e5d4b804dcc5f090e53e4a3e95a33aee978c65db7917742038cc5894f96a44696d00f409f9cf45c92672a2b9
5062
5088
  languageName: node
5063
5089
  linkType: hard
5064
5090
 
@@ -5081,14 +5107,14 @@ __metadata:
5081
5107
  linkType: hard
5082
5108
 
5083
5109
  "@tiptap/extension-floating-menu@npm:^2.0.0-beta.51":
5084
- version: 2.6.6
5085
- resolution: "@tiptap/extension-floating-menu@npm:2.6.6"
5110
+ version: 2.7.0
5111
+ resolution: "@tiptap/extension-floating-menu@npm:2.7.0"
5086
5112
  dependencies:
5087
5113
  tippy.js: "npm:^6.3.7"
5088
5114
  peerDependencies:
5089
- "@tiptap/core": ^2.6.6
5090
- "@tiptap/pm": ^2.6.6
5091
- checksum: 10c0/0184135d57f195e34f968645bb4c445bc089e8ac88886b3fed08500767b4f4cf2a5ac6d0d43735ddf13ed7c0eb44f4f179469f3b784edd63cca748ce46c7a55d
5115
+ "@tiptap/core": ^2.7.0-pre.0
5116
+ "@tiptap/pm": ^2.7.0-pre.0
5117
+ checksum: 10c0/41e74d119bf2a006f7251e5a8703dfd57edb58766aa2a431443ef8463e9f4da699d970f50ea5bfd4ca7c0322a76ff170c0418d72bbdb5a61d54756253fdacb1e
5092
5118
  languageName: node
5093
5119
  linkType: hard
5094
5120
 
@@ -5544,11 +5570,11 @@ __metadata:
5544
5570
  linkType: hard
5545
5571
 
5546
5572
  "@types/node@npm:*":
5547
- version: 22.5.4
5548
- resolution: "@types/node@npm:22.5.4"
5573
+ version: 22.5.5
5574
+ resolution: "@types/node@npm:22.5.5"
5549
5575
  dependencies:
5550
5576
  undici-types: "npm:~6.19.2"
5551
- checksum: 10c0/b445daa7eecd761ad4d778b882d6ff7bcc3b4baad2086ea9804db7c5d4a4ab0298b00d7f5315fc640a73b5a1d52bbf9628e09c9fec0cf44dbf9b4df674a8717d
5577
+ checksum: 10c0/ead9495cfc6b1da5e7025856dcce2591e9bae635357410c0d2dd619fce797d2a1d402887580ca4b336cb78168b195224869967de370a23f61663cf1e4836121c
5552
5578
  languageName: node
5553
5579
  linkType: hard
5554
5580
 
@@ -5620,9 +5646,9 @@ __metadata:
5620
5646
  linkType: hard
5621
5647
 
5622
5648
  "@types/prop-types@npm:*, @types/prop-types@npm:^15.7.3":
5623
- version: 15.7.12
5624
- resolution: "@types/prop-types@npm:15.7.12"
5625
- checksum: 10c0/1babcc7db6a1177779f8fde0ccc78d64d459906e6ef69a4ed4dd6339c920c2e05b074ee5a92120fe4e9d9f1a01c952f843ebd550bee2332fc2ef81d1706878f8
5649
+ version: 15.7.13
5650
+ resolution: "@types/prop-types@npm:15.7.13"
5651
+ checksum: 10c0/1b20fc67281902c6743379960247bc161f3f0406ffc0df8e7058745a85ea1538612109db0406290512947f9632fe9e10e7337bf0ce6338a91d6c948df16a7c61
5626
5652
  languageName: node
5627
5653
  linkType: hard
5628
5654
 
@@ -5701,9 +5727,9 @@ __metadata:
5701
5727
  linkType: hard
5702
5728
 
5703
5729
  "@types/qs@npm:^6.9.5":
5704
- version: 6.9.15
5705
- resolution: "@types/qs@npm:6.9.15"
5706
- checksum: 10c0/49c5ff75ca3adb18a1939310042d273c9fc55920861bd8e5100c8a923b3cda90d759e1a95e18334092da1c8f7b820084687770c83a1ccef04fb2c6908117c823
5730
+ version: 6.9.16
5731
+ resolution: "@types/qs@npm:6.9.16"
5732
+ checksum: 10c0/a4e871b80fff623755e356fd1f225aea45ff7a29da30f99fddee1a05f4f5f33485b314ab5758145144ed45708f97e44595aa9a8368e9bbc083932f931b12dbb6
5707
5733
  languageName: node
5708
5734
  linkType: hard
5709
5735
 
@@ -5816,16 +5842,16 @@ __metadata:
5816
5842
  linkType: hard
5817
5843
 
5818
5844
  "@types/react@npm:*, @types/react@npm:16 || 17 || 18, @types/react@npm:>=16.14.8, @types/react@npm:>=16.9.11":
5819
- version: 18.3.5
5820
- resolution: "@types/react@npm:18.3.5"
5845
+ version: 18.3.7
5846
+ resolution: "@types/react@npm:18.3.7"
5821
5847
  dependencies:
5822
5848
  "@types/prop-types": "npm:*"
5823
5849
  csstype: "npm:^3.0.2"
5824
- checksum: 10c0/548b1d3d7c2f0242fbfdbbd658731b4ce69a134be072fa83e6ab516f2840402a3f20e3e7f72e95133b23d4880ef24a6d864050dc8e1f7c68f39fa87ca8445917
5850
+ checksum: 10c0/460f40eadf1fd035344b2ff9061d5c2314db9403f76d05fff7724c78543737c95829e1628567c63d27b542647867eca5b6f284dfd38f1d3b70754f32c4cbecb7
5825
5851
  languageName: node
5826
5852
  linkType: hard
5827
5853
 
5828
- "@types/react@npm:17.0.80, @types/react@npm:^17":
5854
+ "@types/react@npm:17.0.80":
5829
5855
  version: 17.0.80
5830
5856
  resolution: "@types/react@npm:17.0.80"
5831
5857
  dependencies:
@@ -5836,6 +5862,17 @@ __metadata:
5836
5862
  languageName: node
5837
5863
  linkType: hard
5838
5864
 
5865
+ "@types/react@npm:^17":
5866
+ version: 17.0.82
5867
+ resolution: "@types/react@npm:17.0.82"
5868
+ dependencies:
5869
+ "@types/prop-types": "npm:*"
5870
+ "@types/scheduler": "npm:^0.16"
5871
+ csstype: "npm:^3.0.2"
5872
+ checksum: 10c0/86a6797988cea1b63083eb1742be7bccce77bd0e240bce490b89f3e420c1fa24cd45454d8c0bb6f1b4465ca8e9f35a7bbe60beada8b5bd05a2cf62d3f0c2460e
5873
+ languageName: node
5874
+ linkType: hard
5875
+
5839
5876
  "@types/resize-observer-browser@npm:0.1.7":
5840
5877
  version: 0.1.7
5841
5878
  resolution: "@types/resize-observer-browser@npm:0.1.7"
@@ -6066,53 +6103,53 @@ __metadata:
6066
6103
  languageName: node
6067
6104
  linkType: hard
6068
6105
 
6069
- "@volar/language-core@npm:2.4.4, @volar/language-core@npm:~2.4.0-alpha.18":
6070
- version: 2.4.4
6071
- resolution: "@volar/language-core@npm:2.4.4"
6106
+ "@volar/language-core@npm:2.4.5, @volar/language-core@npm:~2.4.0-alpha.18":
6107
+ version: 2.4.5
6108
+ resolution: "@volar/language-core@npm:2.4.5"
6072
6109
  dependencies:
6073
- "@volar/source-map": "npm:2.4.4"
6074
- checksum: 10c0/455c088c7e6cd0583633300f8f3a6a2d78ee35b7cb15401516f4fde8cab41cbc5b55b5855f9627e2840d7af6fc4a74d175039bdde96b8c27e8f949441bc06670
6110
+ "@volar/source-map": "npm:2.4.5"
6111
+ checksum: 10c0/aea4b6e5874aede72e6f49892ebd6d09412e3bee70f38e2668729be566f2861d57caf0ef43921f591ef37b01a3b56c2837268295e3027e2d2dc30c8977328c8c
6075
6112
  languageName: node
6076
6113
  linkType: hard
6077
6114
 
6078
- "@volar/source-map@npm:2.4.4":
6079
- version: 2.4.4
6080
- resolution: "@volar/source-map@npm:2.4.4"
6081
- checksum: 10c0/c5875ecb1961108e6c24d26add81355057517f2a874f64f1abc65fd0d90fb3b6feebd5a8305a76e0089948a124b2ec7d889ade51bade3341baf3e3b7e118c8e6
6115
+ "@volar/source-map@npm:2.4.5":
6116
+ version: 2.4.5
6117
+ resolution: "@volar/source-map@npm:2.4.5"
6118
+ checksum: 10c0/f18dadca0db3b9fcf25e4b3e69d820a183ba449c54a70bba0b33a752ab659b713109b1be7f1e379370cdb47f4e171e84d827e2276f834730decd5cf8c68de79d
6082
6119
  languageName: node
6083
6120
  linkType: hard
6084
6121
 
6085
6122
  "@volar/typescript@npm:^2.3.4, @volar/typescript@npm:~2.4.0-alpha.18":
6086
- version: 2.4.4
6087
- resolution: "@volar/typescript@npm:2.4.4"
6123
+ version: 2.4.5
6124
+ resolution: "@volar/typescript@npm:2.4.5"
6088
6125
  dependencies:
6089
- "@volar/language-core": "npm:2.4.4"
6126
+ "@volar/language-core": "npm:2.4.5"
6090
6127
  path-browserify: "npm:^1.0.1"
6091
6128
  vscode-uri: "npm:^3.0.8"
6092
- checksum: 10c0/07d404aa7024ff8b8231b5c21460b990344beb2179dd772931811f3107a2ddd1ff9ba02446cb30c6699a9ea0868cf76af4027e3168f1761ba8a0013def9ebf96
6129
+ checksum: 10c0/c29acf9ed78c83f1f8bc579d7fff7f5d52d4021cb4f6a72f14832ba8b957c29511711c78a796ca57bd1ee4ef475659a58b0de4948d29c4d1217cc08f0bf181ff
6093
6130
  languageName: node
6094
6131
  linkType: hard
6095
6132
 
6096
- "@vue/compiler-core@npm:3.5.5":
6097
- version: 3.5.5
6098
- resolution: "@vue/compiler-core@npm:3.5.5"
6133
+ "@vue/compiler-core@npm:3.5.6":
6134
+ version: 3.5.6
6135
+ resolution: "@vue/compiler-core@npm:3.5.6"
6099
6136
  dependencies:
6100
6137
  "@babel/parser": "npm:^7.25.3"
6101
- "@vue/shared": "npm:3.5.5"
6138
+ "@vue/shared": "npm:3.5.6"
6102
6139
  entities: "npm:^4.5.0"
6103
6140
  estree-walker: "npm:^2.0.2"
6104
6141
  source-map-js: "npm:^1.2.0"
6105
- checksum: 10c0/cc6f8703ddc009989c94261751225bcf242d0fcd5703bf0dc159a3f6247a6ae41d97d03cae548c4331b7b46154296a870b66139422d5a3b12d8de34b32aa56a3
6142
+ checksum: 10c0/ebc53b473ae10ee9bce79d5f5349656a824de3fc683b9fcc08a6dc6a6776f312508c61db81b225eaea814da9c12a2a62474e66762d25d33f3971492968fad71d
6106
6143
  languageName: node
6107
6144
  linkType: hard
6108
6145
 
6109
6146
  "@vue/compiler-dom@npm:^3.4.0":
6110
- version: 3.5.5
6111
- resolution: "@vue/compiler-dom@npm:3.5.5"
6147
+ version: 3.5.6
6148
+ resolution: "@vue/compiler-dom@npm:3.5.6"
6112
6149
  dependencies:
6113
- "@vue/compiler-core": "npm:3.5.5"
6114
- "@vue/shared": "npm:3.5.5"
6115
- checksum: 10c0/ff207a83f38b788959a2cb8731493fd566fcfa2de9371d77d7878b06d94fd57983256bf4e857ef0fd44ecaca4ec8ba529fff1e6764115717a5e13be5f504ee93
6150
+ "@vue/compiler-core": "npm:3.5.6"
6151
+ "@vue/shared": "npm:3.5.6"
6152
+ checksum: 10c0/8c55a8c7a9cdb7f2c24667365855425884292c787d47c12d2ef52279ffcf92041105c9b3feb3d45fec7480e7c14939009033753e12d5298904c12eb6025551f9
6116
6153
  languageName: node
6117
6154
  linkType: hard
6118
6155
 
@@ -6147,10 +6184,10 @@ __metadata:
6147
6184
  languageName: node
6148
6185
  linkType: hard
6149
6186
 
6150
- "@vue/shared@npm:3.5.5, @vue/shared@npm:^3.4.0":
6151
- version: 3.5.5
6152
- resolution: "@vue/shared@npm:3.5.5"
6153
- checksum: 10c0/729eff9c55a10d2facdc597d49960a2a15657450903e3a28c93adcf97c731d39dcd17fe5bcf585976289dfb9a92d89a08af8558cb779ef8b2bb8b6a8b2162830
6187
+ "@vue/shared@npm:3.5.6, @vue/shared@npm:^3.4.0":
6188
+ version: 3.5.6
6189
+ resolution: "@vue/shared@npm:3.5.6"
6190
+ checksum: 10c0/5dedd25000b748fb394fff8b9e501a422436a3c03fc38f6ee2078a80d4c787d17b727a991e3ac585ee14bbdf60f9165784b2de0f20046fcca902643c5becfb9b
6154
6191
  languageName: node
6155
6192
  linkType: hard
6156
6193
 
@@ -7109,17 +7146,17 @@ __metadata:
7109
7146
  linkType: hard
7110
7147
 
7111
7148
  "babel-loader@npm:^8.2.2":
7112
- version: 8.3.0
7113
- resolution: "babel-loader@npm:8.3.0"
7149
+ version: 8.4.1
7150
+ resolution: "babel-loader@npm:8.4.1"
7114
7151
  dependencies:
7115
7152
  find-cache-dir: "npm:^3.3.1"
7116
- loader-utils: "npm:^2.0.0"
7153
+ loader-utils: "npm:^2.0.4"
7117
7154
  make-dir: "npm:^3.1.0"
7118
7155
  schema-utils: "npm:^2.6.5"
7119
7156
  peerDependencies:
7120
7157
  "@babel/core": ^7.0.0
7121
7158
  webpack: ">=2"
7122
- checksum: 10c0/7b83bae35a12fbc5cdf250e2d36a288305fe5b6d20ab044ab7c09bbf456c8895b80af7a4f1e8b64b5c07a4fd48d4b5144dab40b4bc72a4fed532dc000362f38f
7159
+ checksum: 10c0/efdca9c3ef502af58b923a32123d660c54fd0be125b7b64562c8a43bda0a3a55dac0db32331674104e7e5184061b75c3a0e395b2c5ccdc7cb2125dd9ec7108d2
7123
7160
  languageName: node
7124
7161
  linkType: hard
7125
7162
 
@@ -9522,9 +9559,9 @@ __metadata:
9522
9559
  linkType: hard
9523
9560
 
9524
9561
  "electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.4":
9525
- version: 1.5.22
9526
- resolution: "electron-to-chromium@npm:1.5.22"
9527
- checksum: 10c0/3c1c640dfa77e9d8e16c112d79ddbe87b47b2df7fada2406f2974b22227dd4592a5215c3318baf570ffdc1479151589dbdb8c0eac61347e9c78e1710f3b7ee5d
9562
+ version: 1.5.24
9563
+ resolution: "electron-to-chromium@npm:1.5.24"
9564
+ checksum: 10c0/c20a6fc69145c0b470778ee0a952226d3480d611949bea00c9f8ed3bac0a205e5cd8ba76cfa99034d9ee717482741cf1c7e41eb151ccffc933e1eefe501d3bc7
9528
9565
  languageName: node
9529
9566
  linkType: hard
9530
9567
 
@@ -13522,7 +13559,7 @@ __metadata:
13522
13559
  languageName: node
13523
13560
  linkType: hard
13524
13561
 
13525
- "loader-utils@npm:^2.0.0":
13562
+ "loader-utils@npm:^2.0.0, loader-utils@npm:^2.0.4":
13526
13563
  version: 2.0.4
13527
13564
  resolution: "loader-utils@npm:2.0.4"
13528
13565
  dependencies:
@@ -15439,7 +15476,7 @@ __metadata:
15439
15476
  languageName: node
15440
15477
  linkType: hard
15441
15478
 
15442
- "picocolors@npm:^1.0.0, picocolors@npm:^1.0.1":
15479
+ "picocolors@npm:^1.0.0, picocolors@npm:^1.0.1, picocolors@npm:^1.1.0":
15443
15480
  version: 1.1.0
15444
15481
  resolution: "picocolors@npm:1.1.0"
15445
15482
  checksum: 10c0/86946f6032148801ef09c051c6fb13b5cf942eaf147e30ea79edb91dd32d700934edebe782a1078ff859fb2b816792e97ef4dab03d7f0b804f6b01a0df35e023
@@ -15717,13 +15754,13 @@ __metadata:
15717
15754
  linkType: hard
15718
15755
 
15719
15756
  "postcss@npm:^8.2.6, postcss@npm:^8.4.39":
15720
- version: 8.4.45
15721
- resolution: "postcss@npm:8.4.45"
15757
+ version: 8.4.47
15758
+ resolution: "postcss@npm:8.4.47"
15722
15759
  dependencies:
15723
15760
  nanoid: "npm:^3.3.7"
15724
- picocolors: "npm:^1.0.1"
15725
- source-map-js: "npm:^1.2.0"
15726
- checksum: 10c0/ad6f8b9b1157d678560373696109745ab97a947d449f8a997acac41c7f1e4c0f3ca4b092d6df1387f430f2c9a319987b1780dbdc27e35800a88cde9b606c1e8f
15761
+ picocolors: "npm:^1.1.0"
15762
+ source-map-js: "npm:^1.2.1"
15763
+ checksum: 10c0/929f68b5081b7202709456532cee2a145c1843d391508c5a09de2517e8c4791638f71dd63b1898dba6712f8839d7a6da046c72a5e44c162e908f5911f57b5f44
15727
15764
  languageName: node
15728
15765
  linkType: hard
15729
15766
 
@@ -18566,7 +18603,7 @@ __metadata:
18566
18603
  languageName: node
18567
18604
  linkType: hard
18568
18605
 
18569
- "source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.0.1, source-map-js@npm:^1.2.0":
18606
+ "source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.0.1, source-map-js@npm:^1.2.0, source-map-js@npm:^1.2.1":
18570
18607
  version: 1.2.1
18571
18608
  resolution: "source-map-js@npm:1.2.1"
18572
18609
  checksum: 10c0/7bda1fc4c197e3c6ff17de1b8b2c20e60af81b63a52cb32ec5a5d67a20a7d42651e2cb34ebe93833c5a2a084377e17455854fee3e21e7925c64a51b6a52b0faf