dune-react 0.0.22 → 0.0.24

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 (131) hide show
  1. package/dist/components/puck-base/image.js +1 -1
  2. package/dist/components/puck-block/banner-sections/css-marquee-banner/css-marquee-banner.js +13 -13
  3. package/dist/components/puck-block/banner-sections/dual-row-marquee/dual-row-marquee.js +77 -53
  4. package/dist/components/puck-block/banner-sections/scroll-driven-marquee/scroll-driven-marquee.js +8 -6
  5. package/dist/components/puck-block/banner-sections/scroll-parallax-text/scroll-parallax-text.js +3 -1
  6. package/dist/components/puck-block/contact-sections/contact-cards-grid/contact-cards-grid.js +1 -1
  7. package/dist/components/puck-block/contact-sections/form-with-media/form-with-media.js +1 -1
  8. package/dist/components/puck-block/contact-sections/header-form-cards/header-form-cards.js +1 -1
  9. package/dist/components/puck-block/contact-sections/header-info-fullwidth/header-info-fullwidth.js +2 -2
  10. package/dist/components/puck-block/contact-sections/info-cards-media/info-cards-media.js +2 -2
  11. package/dist/components/puck-block/contact-sections/split-info-form/split-info-form.js +1 -1
  12. package/dist/components/puck-block/contact-sections/tab-locations/tab-locations.js +71 -55
  13. package/dist/components/puck-block/cta-sections/mouse-track-cta/mouse-track-cta.js +4 -4
  14. package/dist/components/puck-block/cta-sections/side-media-cta/side-media-cta.js +1 -1
  15. package/dist/components/puck-block/cta-sections/text-block-cta/text-block-cta.js +2 -2
  16. package/dist/components/puck-block/feature-sections/feature-cards-grid/component.js +1 -1
  17. package/dist/components/puck-block/feature-sections/feature-list-split/component.js +1 -1
  18. package/dist/components/puck-block/feature-sections/tab-feature/component.js +4 -4
  19. package/dist/components/puck-block/feature-sections/text-media-split/component.js +1 -1
  20. package/dist/components/puck-block/footer-sections/centered-minimal-footer/centered-minimal-footer.js +72 -18
  21. package/dist/components/puck-block/footer-sections/centered-minimal-footer/index.d.ts +79 -0
  22. package/dist/components/puck-block/footer-sections/centered-minimal-footer/index.js +43 -1
  23. package/dist/components/puck-block/footer-sections/compact-newsletter-footer/index.d.ts +41 -0
  24. package/dist/components/puck-block/footer-sections/contact-links-footer/contact-links-footer.js +4 -3
  25. package/dist/components/puck-block/footer-sections/contact-links-footer/index.d.ts +86 -0
  26. package/dist/components/puck-block/footer-sections/contact-links-footer/index.js +1 -1
  27. package/dist/components/puck-block/footer-sections/cta-links-footer/cta-links-footer.js +3 -2
  28. package/dist/components/puck-block/footer-sections/cta-links-footer/index.d.ts +37 -0
  29. package/dist/components/puck-block/footer-sections/cta-links-footer/index.js +1 -1
  30. package/dist/components/puck-block/footer-sections/links-newsletter-footer/index.d.ts +54 -0
  31. package/dist/components/puck-block/footer-sections/newsletter-links-footer/index.d.ts +41 -0
  32. package/dist/components/puck-block/footer-sections/newsletter-top-links-footer/index.d.ts +54 -0
  33. package/dist/components/puck-block/footer-sections/props.d.ts +3 -0
  34. package/dist/components/puck-block/gallery-sections/fullscreen-portfolio/fullscreen-portfolio.js +1 -1
  35. package/dist/components/puck-block/gallery-sections/image-carousel/index.d.ts +14 -1
  36. package/dist/components/puck-block/gallery-sections/interactive-portfolio/interactive-portfolio.js +166 -105
  37. package/dist/components/puck-block/gallery-sections/masonry-grid/index.d.ts +17 -1
  38. package/dist/components/puck-block/gallery-sections/masonry-grid/masonry-grid.js +56 -31
  39. package/dist/components/puck-block/gallery-sections/portfolio-cards/index.d.ts +17 -1
  40. package/dist/components/puck-block/gallery-sections/portfolio-cards/portfolio-cards.js +41 -13
  41. package/dist/components/puck-block/gallery-sections/portfolio-divider/portfolio-divider.js +1 -1
  42. package/dist/components/puck-block/gallery-sections/props.d.ts +42 -3
  43. package/dist/components/puck-block/gallery-sections/props.js +24 -6
  44. package/dist/components/puck-block/gallery-sections/scroll-parallax/scroll-parallax.js +71 -22
  45. package/dist/components/puck-block/gallery-sections/scroll-parallax-portfolio/scroll-parallax-portfolio.js +284 -159
  46. package/dist/components/puck-block/gallery-sections/split-carousel/index.d.ts +11 -1
  47. package/dist/components/puck-block/gallery-sections/static-grid/index.d.ts +17 -1
  48. package/dist/components/puck-block/header-sections/centered-navbar/centered-navbar.js +95 -14
  49. package/dist/components/puck-block/header-sections/drawer-navbar/drawer-navbar.js +4 -3
  50. package/dist/components/puck-block/header-sections/floating-bordered-navbar/floating-bordered-navbar.js +5 -4
  51. package/dist/components/puck-block/header-sections/fullscreen-overlay-navbar/fullscreen-overlay-navbar.js +4 -3
  52. package/dist/components/puck-block/header-sections/mega-menu-navbar/mega-menu-navbar.js +3 -2
  53. package/dist/components/puck-block/header-sections/props.d.ts +3 -0
  54. package/dist/components/puck-block/header-sections/standard-navbar/standard-navbar.js +3 -2
  55. package/dist/components/puck-block/hero-sections/carousel-hero/component.js +3 -3
  56. package/dist/components/puck-block/hero-sections/column-scroll-hero/component.js +8 -8
  57. package/dist/components/puck-block/hero-sections/dual-marquee-hero/component.js +6 -6
  58. package/dist/components/puck-block/hero-sections/fullscreen-video-hero/component.js +1 -1
  59. package/dist/components/puck-block/hero-sections/grid-expand-hero/component.js +26 -17
  60. package/dist/components/puck-block/hero-sections/grid-expand-hero/index.d.ts +17 -1
  61. package/dist/components/puck-block/hero-sections/horizontal-marquee-hero/component.js +3 -3
  62. package/dist/components/puck-block/hero-sections/inline-image-hero/inline-image-hero.js +59 -28
  63. package/dist/components/puck-block/hero-sections/mouse-track-hero/component.js +60 -19
  64. package/dist/components/puck-block/hero-sections/multi-image-grid-hero/index.d.ts +17 -1
  65. package/dist/components/puck-block/hero-sections/multi-image-grid-hero/multi-image-grid-hero.js +2 -2
  66. package/dist/components/puck-block/hero-sections/overlapping-image-hero/overlapping-image-hero.js +3 -3
  67. package/dist/components/puck-block/hero-sections/parallax-images-hero/component.js +18 -6
  68. package/dist/components/puck-block/hero-sections/props.d.ts +34 -2
  69. package/dist/components/puck-block/hero-sections/props.js +18 -4
  70. package/dist/components/puck-block/hero-sections/scatter-parallax-hero/component.js +9 -7
  71. package/dist/components/puck-block/hero-sections/scroll-expand-video-hero/component.js +7 -5
  72. package/dist/components/puck-block/hero-sections/scroll-zoom-hero/component.js +5 -3
  73. package/dist/components/puck-block/hero-sections/sticky-expand-hero/component.js +1 -1
  74. package/dist/components/puck-block/hero-sections/sticky-expand-hero/index.d.ts +13 -5
  75. package/dist/components/puck-block/hero-sections/sticky-expand-hero/index.js +2 -2
  76. package/dist/components/puck-block/hero-sections/sticky-video-hero/component.js +2 -2
  77. package/dist/components/puck-block/hero-sections/tab-hero/component.js +5 -5
  78. package/dist/components/puck-block/hero-sections/three-image-parallax-hero/component.js +3 -3
  79. package/dist/components/puck-block/hero-sections/vertical-gallery-hero/component.js +6 -6
  80. package/dist/components/puck-block/hero-sections/zoom-grid-hero/component.js +14 -12
  81. package/dist/components/puck-block/index.d.ts +1 -0
  82. package/dist/components/puck-block/location-sections/index.d.ts +3 -0
  83. package/dist/components/puck-block/location-sections/location-1/index.js +102 -0
  84. package/dist/components/puck-block/location-sections/location-1/location.d.ts +0 -3
  85. package/dist/components/puck-block/location-sections/location-1/location.js +139 -0
  86. package/dist/components/puck-block/location-sections/location-2/index.js +126 -0
  87. package/dist/components/puck-block/location-sections/location-2/location.d.ts +0 -3
  88. package/dist/components/puck-block/location-sections/location-2/location.js +133 -0
  89. package/dist/components/puck-block/location-sections/location-3/index.js +109 -0
  90. package/dist/components/puck-block/location-sections/location-3/location.d.ts +0 -3
  91. package/dist/components/puck-block/location-sections/location-3/location.js +140 -0
  92. package/dist/components/puck-block/location-sections/props.d.ts +0 -3
  93. package/dist/components/puck-block/metrics-sections/center-media-stats/center-media-stats.js +1 -1
  94. package/dist/components/puck-block/metrics-sections/header-stats-row/header-stats-row.js +1 -1
  95. package/dist/components/puck-block/metrics-sections/mixed-grid-stats/mixed-grid-stats.js +2 -2
  96. package/dist/components/puck-block/metrics-sections/split-stats/split-stats.js +1 -1
  97. package/dist/components/puck-block/metrics-sections/tab-stats/tab-stats.js +4 -4
  98. package/dist/components/puck-block/pricing-sections/pricing-comparison-table/component.js +134 -33
  99. package/dist/components/puck-block/pricing-sections/pricing-comparison-table/index.d.ts +47 -0
  100. package/dist/components/puck-block/pricing-sections/pricing-comparison-table/index.js +34 -0
  101. package/dist/components/puck-block/pricing-sections/split-pricing/component.js +3 -3
  102. package/dist/components/puck-block/pricing-sections/tab-pricing-grid/component.js +86 -40
  103. package/dist/components/puck-block/pricing-sections/tab-single-pricing/component.js +1 -1
  104. package/dist/components/puck-block/registry.generated.d.ts +501 -12
  105. package/dist/components/puck-block/registry.generated.js +157 -138
  106. package/dist/components/puck-block/showcase-sections/tab-timeline/component.js +2 -2
  107. package/dist/components/puck-block/testimonial-sections/bento-testimonial/component.js +157 -83
  108. package/dist/components/puck-block/testimonial-sections/centered-testimonial/component.js +71 -28
  109. package/dist/components/puck-block/testimonial-sections/image-testimonial/component.js +66 -29
  110. package/dist/components/puck-block/testimonial-sections/image-testimonial-carousel/component.js +1 -1
  111. package/dist/components/puck-block/testimonial-sections/tab-testimonial/component.js +6 -6
  112. package/dist/components/puck-block/testimonial-sections/testimonial-card-grid/component.js +2 -2
  113. package/dist/components/puck-block/testimonial-sections/testimonial-carousel/component.js +1 -1
  114. package/dist/components/puck-block/text-sections/prose-content/component.js +1 -1
  115. package/dist/components/puck-block/text-sections/side-media-content/component.js +1 -1
  116. package/dist/components/puck-block/text-sections/sticky-text-multi-image/component.js +3 -3
  117. package/dist/components/puck-core/core/props/form.js +25 -1
  118. package/dist/components/puck-core/core/props/media.js +6 -1
  119. package/dist/components/puck-core/fields/array-field.d.ts +7 -0
  120. package/dist/components/puck-core/fields/array-field.js +229 -0
  121. package/dist/components/puck-core/fields/auto-field.js +11 -0
  122. package/dist/components/puck-core/fields/image-upload-field.js +1 -1
  123. package/dist/components/puck-core/fields/index.d.ts +1 -0
  124. package/dist/components/puck-core/fields/location-field.js +4 -1
  125. package/dist/components/puck-core/fields/object-field.js +1 -1
  126. package/dist/index.js +6 -0
  127. package/dist/node_modules/.pnpm/@dnd-kit_accessibility@3.1.1_react@19.2.4/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js +59 -0
  128. package/dist/node_modules/.pnpm/@dnd-kit_core@6.3.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@dnd-kit/core/dist/core.esm.js +3093 -0
  129. package/dist/node_modules/.pnpm/@dnd-kit_sortable@10.0.0_@dnd-kit_core@6.3.1_react-dom@19.2.4_react@19.2.4__react@19.2.4__react@19.2.4/node_modules/@dnd-kit/sortable/dist/sortable.esm.js +592 -0
  130. package/dist/node_modules/.pnpm/@dnd-kit_utilities@3.2.2_react@19.2.4/node_modules/@dnd-kit/utilities/dist/utilities.esm.js +301 -0
  131. package/package.json +7 -1
@@ -0,0 +1,301 @@
1
+ import { useRef, useMemo, useLayoutEffect, useEffect, useCallback } from "react";
2
+ function useCombinedRefs() {
3
+ for (var _len = arguments.length, refs = new Array(_len), _key = 0; _key < _len; _key++) {
4
+ refs[_key] = arguments[_key];
5
+ }
6
+ return useMemo(
7
+ () => (node) => {
8
+ refs.forEach((ref) => ref(node));
9
+ },
10
+ // eslint-disable-next-line react-hooks/exhaustive-deps
11
+ refs
12
+ );
13
+ }
14
+ const canUseDOM = typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined";
15
+ function isWindow(element) {
16
+ const elementString = Object.prototype.toString.call(element);
17
+ return elementString === "[object Window]" || // In Electron context the Window object serializes to [object global]
18
+ elementString === "[object global]";
19
+ }
20
+ function isNode(node) {
21
+ return "nodeType" in node;
22
+ }
23
+ function getWindow(target) {
24
+ var _target$ownerDocument, _target$ownerDocument2;
25
+ if (!target) {
26
+ return window;
27
+ }
28
+ if (isWindow(target)) {
29
+ return target;
30
+ }
31
+ if (!isNode(target)) {
32
+ return window;
33
+ }
34
+ return (_target$ownerDocument = (_target$ownerDocument2 = target.ownerDocument) == null ? void 0 : _target$ownerDocument2.defaultView) != null ? _target$ownerDocument : window;
35
+ }
36
+ function isDocument(node) {
37
+ const {
38
+ Document
39
+ } = getWindow(node);
40
+ return node instanceof Document;
41
+ }
42
+ function isHTMLElement(node) {
43
+ if (isWindow(node)) {
44
+ return false;
45
+ }
46
+ return node instanceof getWindow(node).HTMLElement;
47
+ }
48
+ function isSVGElement(node) {
49
+ return node instanceof getWindow(node).SVGElement;
50
+ }
51
+ function getOwnerDocument(target) {
52
+ if (!target) {
53
+ return document;
54
+ }
55
+ if (isWindow(target)) {
56
+ return target.document;
57
+ }
58
+ if (!isNode(target)) {
59
+ return document;
60
+ }
61
+ if (isDocument(target)) {
62
+ return target;
63
+ }
64
+ if (isHTMLElement(target) || isSVGElement(target)) {
65
+ return target.ownerDocument;
66
+ }
67
+ return document;
68
+ }
69
+ const useIsomorphicLayoutEffect = canUseDOM ? useLayoutEffect : useEffect;
70
+ function useEvent(handler) {
71
+ const handlerRef = useRef(handler);
72
+ useIsomorphicLayoutEffect(() => {
73
+ handlerRef.current = handler;
74
+ });
75
+ return useCallback(function() {
76
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
77
+ args[_key] = arguments[_key];
78
+ }
79
+ return handlerRef.current == null ? void 0 : handlerRef.current(...args);
80
+ }, []);
81
+ }
82
+ function useInterval() {
83
+ const intervalRef = useRef(null);
84
+ const set = useCallback((listener, duration) => {
85
+ intervalRef.current = setInterval(listener, duration);
86
+ }, []);
87
+ const clear = useCallback(() => {
88
+ if (intervalRef.current !== null) {
89
+ clearInterval(intervalRef.current);
90
+ intervalRef.current = null;
91
+ }
92
+ }, []);
93
+ return [set, clear];
94
+ }
95
+ function useLatestValue(value, dependencies) {
96
+ if (dependencies === void 0) {
97
+ dependencies = [value];
98
+ }
99
+ const valueRef = useRef(value);
100
+ useIsomorphicLayoutEffect(() => {
101
+ if (valueRef.current !== value) {
102
+ valueRef.current = value;
103
+ }
104
+ }, dependencies);
105
+ return valueRef;
106
+ }
107
+ function useLazyMemo(callback, dependencies) {
108
+ const valueRef = useRef();
109
+ return useMemo(
110
+ () => {
111
+ const newValue = callback(valueRef.current);
112
+ valueRef.current = newValue;
113
+ return newValue;
114
+ },
115
+ // eslint-disable-next-line react-hooks/exhaustive-deps
116
+ [...dependencies]
117
+ );
118
+ }
119
+ function useNodeRef(onChange) {
120
+ const onChangeHandler = useEvent(onChange);
121
+ const node = useRef(null);
122
+ const setNodeRef = useCallback(
123
+ (element) => {
124
+ if (element !== node.current) {
125
+ onChangeHandler == null ? void 0 : onChangeHandler(element, node.current);
126
+ }
127
+ node.current = element;
128
+ },
129
+ //eslint-disable-next-line
130
+ []
131
+ );
132
+ return [node, setNodeRef];
133
+ }
134
+ function usePrevious(value) {
135
+ const ref = useRef();
136
+ useEffect(() => {
137
+ ref.current = value;
138
+ }, [value]);
139
+ return ref.current;
140
+ }
141
+ let ids = {};
142
+ function useUniqueId(prefix, value) {
143
+ return useMemo(() => {
144
+ if (value) {
145
+ return value;
146
+ }
147
+ const id = ids[prefix] == null ? 0 : ids[prefix] + 1;
148
+ ids[prefix] = id;
149
+ return prefix + "-" + id;
150
+ }, [prefix, value]);
151
+ }
152
+ function createAdjustmentFn(modifier) {
153
+ return function(object) {
154
+ for (var _len = arguments.length, adjustments = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
155
+ adjustments[_key - 1] = arguments[_key];
156
+ }
157
+ return adjustments.reduce((accumulator, adjustment) => {
158
+ const entries = Object.entries(adjustment);
159
+ for (const [key, valueAdjustment] of entries) {
160
+ const value = accumulator[key];
161
+ if (value != null) {
162
+ accumulator[key] = value + modifier * valueAdjustment;
163
+ }
164
+ }
165
+ return accumulator;
166
+ }, {
167
+ ...object
168
+ });
169
+ };
170
+ }
171
+ const add = /* @__PURE__ */ createAdjustmentFn(1);
172
+ const subtract = /* @__PURE__ */ createAdjustmentFn(-1);
173
+ function hasViewportRelativeCoordinates(event) {
174
+ return "clientX" in event && "clientY" in event;
175
+ }
176
+ function isKeyboardEvent(event) {
177
+ if (!event) {
178
+ return false;
179
+ }
180
+ const {
181
+ KeyboardEvent
182
+ } = getWindow(event.target);
183
+ return KeyboardEvent && event instanceof KeyboardEvent;
184
+ }
185
+ function isTouchEvent(event) {
186
+ if (!event) {
187
+ return false;
188
+ }
189
+ const {
190
+ TouchEvent
191
+ } = getWindow(event.target);
192
+ return TouchEvent && event instanceof TouchEvent;
193
+ }
194
+ function getEventCoordinates(event) {
195
+ if (isTouchEvent(event)) {
196
+ if (event.touches && event.touches.length) {
197
+ const {
198
+ clientX: x,
199
+ clientY: y
200
+ } = event.touches[0];
201
+ return {
202
+ x,
203
+ y
204
+ };
205
+ } else if (event.changedTouches && event.changedTouches.length) {
206
+ const {
207
+ clientX: x,
208
+ clientY: y
209
+ } = event.changedTouches[0];
210
+ return {
211
+ x,
212
+ y
213
+ };
214
+ }
215
+ }
216
+ if (hasViewportRelativeCoordinates(event)) {
217
+ return {
218
+ x: event.clientX,
219
+ y: event.clientY
220
+ };
221
+ }
222
+ return null;
223
+ }
224
+ const CSS = /* @__PURE__ */ Object.freeze({
225
+ Translate: {
226
+ toString(transform) {
227
+ if (!transform) {
228
+ return;
229
+ }
230
+ const {
231
+ x,
232
+ y
233
+ } = transform;
234
+ return "translate3d(" + (x ? Math.round(x) : 0) + "px, " + (y ? Math.round(y) : 0) + "px, 0)";
235
+ }
236
+ },
237
+ Scale: {
238
+ toString(transform) {
239
+ if (!transform) {
240
+ return;
241
+ }
242
+ const {
243
+ scaleX,
244
+ scaleY
245
+ } = transform;
246
+ return "scaleX(" + scaleX + ") scaleY(" + scaleY + ")";
247
+ }
248
+ },
249
+ Transform: {
250
+ toString(transform) {
251
+ if (!transform) {
252
+ return;
253
+ }
254
+ return [CSS.Translate.toString(transform), CSS.Scale.toString(transform)].join(" ");
255
+ }
256
+ },
257
+ Transition: {
258
+ toString(_ref) {
259
+ let {
260
+ property,
261
+ duration,
262
+ easing
263
+ } = _ref;
264
+ return property + " " + duration + "ms " + easing;
265
+ }
266
+ }
267
+ });
268
+ const SELECTOR = "a,frame,iframe,input:not([type=hidden]):not(:disabled),select:not(:disabled),textarea:not(:disabled),button:not(:disabled),*[tabindex]";
269
+ function findFirstFocusableNode(element) {
270
+ if (element.matches(SELECTOR)) {
271
+ return element;
272
+ }
273
+ return element.querySelector(SELECTOR);
274
+ }
275
+ export {
276
+ CSS,
277
+ add,
278
+ canUseDOM,
279
+ findFirstFocusableNode,
280
+ getEventCoordinates,
281
+ getOwnerDocument,
282
+ getWindow,
283
+ hasViewportRelativeCoordinates,
284
+ isDocument,
285
+ isHTMLElement,
286
+ isKeyboardEvent,
287
+ isNode,
288
+ isSVGElement,
289
+ isTouchEvent,
290
+ isWindow,
291
+ subtract,
292
+ useCombinedRefs,
293
+ useEvent,
294
+ useInterval,
295
+ useIsomorphicLayoutEffect,
296
+ useLatestValue,
297
+ useLazyMemo,
298
+ useNodeRef,
299
+ usePrevious,
300
+ useUniqueId
301
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dune-react",
3
- "version": "0.0.22",
3
+ "version": "0.0.24",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -17,6 +17,8 @@
17
17
  "deploy-storybook": "storybook-to-ghpages -- --existing-output-dir=storybook-static",
18
18
  "ondeploy": "pnpm build-storybook && pnpm deploy-storybook",
19
19
  "sync:downstream": "bash scripts/postpublish.sh",
20
+ "screenshot": "tsx scripts/screenshot-components.ts",
21
+ "screenshot:copy": "tsx scripts/screenshot-components.ts --skip-capture",
20
22
  "upload:previews": "tsx scripts/upload-previews-r2.ts"
21
23
  },
22
24
  "sideEffects": [
@@ -77,6 +79,7 @@
77
79
  "rollup-plugin-preserve-directives": "0.4.0",
78
80
  "sass": "^1.90.0",
79
81
  "sass-loader": "^16.0.5",
82
+ "sharp": "0.34.5",
80
83
  "storybook": "^10.2.19",
81
84
  "tsx": "^4.21.0",
82
85
  "typescript": "^5.0.2",
@@ -407,6 +410,9 @@
407
410
  "strip-ansi": "^6"
408
411
  },
409
412
  "dependencies": {
413
+ "@dnd-kit/core": "^6.3.1",
414
+ "@dnd-kit/sortable": "^10.0.0",
415
+ "@dnd-kit/utilities": "^3.2.2",
410
416
  "@emotion/is-prop-valid": "1.4.0",
411
417
  "@relume_io/relume-tailwind": "^1.3.0",
412
418
  "embla-carousel-autoplay": "8.6.0",