@dmsi/wedgekit-react 2.0.0 → 2.0.1

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 (210) hide show
  1. package/dist/classNames.js +150 -0
  2. package/dist/components/AccessCard.js +63 -0
  3. package/dist/components/AccessCardGroup.js +73 -0
  4. package/dist/components/AccessChangerTabItem.js +51 -0
  5. package/dist/components/Accordion.js +99 -0
  6. package/dist/components/Alert.js +78 -0
  7. package/dist/components/Breadcrumbs.js +111 -0
  8. package/dist/components/Button.js +137 -0
  9. package/dist/components/CalendarRange.js +405 -0
  10. package/dist/components/Caption.js +99 -0
  11. package/dist/components/Card.js +50 -0
  12. package/dist/components/Checkbox.js +108 -0
  13. package/dist/components/CompactImagesPreview.js +120 -0
  14. package/dist/components/ContentTab.js +68 -0
  15. package/dist/components/ContentTabs.js +96 -0
  16. package/dist/components/DMSiLogo.js +54 -0
  17. package/dist/components/DataGrid/ColumnSelectorHeaderCell/ColumnSelectorMenuOption.js +27 -0
  18. package/dist/components/DataGrid/ColumnSelectorHeaderCell/index.js +79 -0
  19. package/dist/components/DataGrid/PinnedColumns.js +165 -0
  20. package/dist/components/DataGrid/SummaryRow/SummaryCell.js +51 -0
  21. package/dist/components/DataGrid/SummaryRow/aggregations.js +55 -0
  22. package/dist/components/DataGrid/SummaryRow/index.js +86 -0
  23. package/dist/components/DataGrid/TableBody/GroupRow.js +243 -0
  24. package/dist/components/DataGrid/TableBody/LoadingCell.js +33 -0
  25. package/dist/components/DataGrid/TableBody/TableBodyRow.js +136 -0
  26. package/dist/components/DataGrid/TableBody/index.js +161 -0
  27. package/dist/components/DataGrid/index.js +696 -0
  28. package/dist/components/DataGrid/utils.js +20 -0
  29. package/dist/components/DataGridCell.js +412 -0
  30. package/dist/components/DataTable.js +700 -0
  31. package/dist/components/DateInput.js +193 -0
  32. package/dist/components/DateRangeInput.js +368 -0
  33. package/dist/components/DebugJson.js +28 -0
  34. package/dist/components/Display.js +46 -0
  35. package/dist/components/EditingContext.js +34 -0
  36. package/dist/components/EmblaCarousel/ArrowButtons.js +83 -0
  37. package/dist/components/EmblaCarousel/SelectedSnapDisplay.js +12 -0
  38. package/dist/components/EmblaCarousel/index.js +153 -0
  39. package/dist/components/EmblaCarousel/usePrevNextButtons.js +21 -0
  40. package/dist/components/EmblaCarousel/useSelectedSnapDisplay.js +15 -0
  41. package/dist/components/EmptyCartIcon.js +25 -0
  42. package/dist/components/FilterGroup.js +198 -0
  43. package/dist/components/FullViewportBox.js +19 -0
  44. package/dist/components/Grid.js +54 -0
  45. package/dist/components/Heading.js +50 -0
  46. package/dist/components/HorizontalDivider.js +20 -0
  47. package/dist/components/Icon.js +73 -0
  48. package/dist/components/ImagePlaceholder.js +22 -0
  49. package/dist/components/Input.js +469 -0
  50. package/dist/components/InputGroup.js +45 -0
  51. package/dist/components/Label.js +37 -0
  52. package/dist/components/Link.js +69 -0
  53. package/dist/components/List.js +12 -0
  54. package/dist/components/ListGroup.js +54 -0
  55. package/dist/components/LiveChatComponent.js +25 -0
  56. package/dist/components/LoadingScrim.js +22 -0
  57. package/dist/components/LogoAgilityTopBar.js +90 -0
  58. package/dist/components/LogoDMSiTopBar.js +54 -0
  59. package/dist/components/LogoMillworkTopBar.js +196 -0
  60. package/dist/components/MainBar.js +58 -0
  61. package/dist/components/MaxViewportBox.js +19 -0
  62. package/dist/components/Menu.js +202 -0
  63. package/dist/components/MenuOption.js +161 -0
  64. package/dist/components/MobileDataGrid/ColumnList.js +85 -0
  65. package/dist/components/MobileDataGrid/ColumnSelector/index.js +100 -0
  66. package/dist/components/MobileDataGrid/GridContextProvider/GridContext.d.ts.map +1 -1
  67. package/dist/components/MobileDataGrid/GridContextProvider/GridContext.js +6 -0
  68. package/dist/components/MobileDataGrid/GridContextProvider/index.js +80 -0
  69. package/dist/components/MobileDataGrid/GridContextProvider/useGridContext.js +11 -0
  70. package/dist/components/MobileDataGrid/MobileDataGridCard/MobileDataGridColumn.js +18 -0
  71. package/dist/components/MobileDataGrid/MobileDataGridCard/index.js +130 -0
  72. package/dist/components/MobileDataGrid/MobileDataGridHeader.js +67 -0
  73. package/dist/components/MobileDataGrid/RowDetailModalProvider/ModalContent.js +42 -0
  74. package/dist/components/MobileDataGrid/RowDetailModalProvider/index.js +58 -0
  75. package/dist/components/MobileDataGrid/dataGridReducer.js +28 -0
  76. package/dist/components/MobileDataGrid/index.js +78 -0
  77. package/dist/components/MobileNavMenu.js +173 -0
  78. package/dist/components/Modal.js +201 -0
  79. package/dist/components/ModalButtons.js +57 -0
  80. package/dist/components/ModalContent.js +24 -0
  81. package/dist/components/ModalHeader.js +74 -0
  82. package/dist/components/ModalScrim.js +32 -0
  83. package/dist/components/NavigationTab.js +72 -0
  84. package/dist/components/NavigationTabs.js +45 -0
  85. package/dist/components/NestedMenu.js +119 -0
  86. package/dist/components/Notification.js +91 -0
  87. package/dist/components/OptionPill.js +103 -0
  88. package/dist/components/OrderCheckIcon.js +28 -0
  89. package/dist/components/PDFViewer/DownloadIcon.js +25 -0
  90. package/dist/components/PDFViewer/PDFElement.js +77 -0
  91. package/dist/components/PDFViewer/PDFNavigation.js +64 -0
  92. package/dist/components/PDFViewer/PDFPage.js +28 -0
  93. package/dist/components/PDFViewer/index.js +124 -0
  94. package/dist/components/Pagination.js +117 -0
  95. package/dist/components/Paragraph.js +43 -0
  96. package/dist/components/Password.js +47 -0
  97. package/dist/components/ProductImagePreview/CarouselPagination.js +48 -0
  98. package/dist/components/ProductImagePreview/MobileImageCarousel.js +146 -0
  99. package/dist/components/ProductImagePreview/ProductPrimaryImage.js +138 -0
  100. package/dist/components/ProductImagePreview/Thumbnail.js +46 -0
  101. package/dist/components/ProductImagePreview/ZoomWindow.js +74 -0
  102. package/dist/components/ProductImagePreview/index.js +189 -0
  103. package/dist/components/ProductImagePreview/useProductImagePreview.js +85 -0
  104. package/dist/components/ProjectBar.js +54 -0
  105. package/dist/components/Radio.js +113 -0
  106. package/dist/components/Search.js +89 -0
  107. package/dist/components/SearchResultImage/index.js +26 -0
  108. package/dist/components/Select.js +122 -0
  109. package/dist/components/SideMenu.js +24 -0
  110. package/dist/components/SideMenuGroup.js +80 -0
  111. package/dist/components/SideMenuItem.js +79 -0
  112. package/dist/components/SimpleTable.js +60 -0
  113. package/dist/components/SkeletonParagraph.js +24 -0
  114. package/dist/components/Spinner.js +30 -0
  115. package/dist/components/Stack.js +174 -0
  116. package/dist/components/StatusPill.js +44 -0
  117. package/dist/components/Stepper.js +138 -0
  118. package/dist/components/Subheader.js +41 -0
  119. package/dist/components/Surface.js +30 -0
  120. package/dist/components/Swatch.js +1498 -0
  121. package/dist/components/Textarea.js +106 -0
  122. package/dist/components/Theme.js +25 -0
  123. package/dist/components/Time.js +225 -0
  124. package/dist/components/Toast.js +170 -0
  125. package/dist/components/Tooltip.js +102 -0
  126. package/dist/components/TopBar.js +119 -0
  127. package/dist/components/Upload.js +107 -0
  128. package/dist/components/WorldpayIframe.js +19 -0
  129. package/dist/hooks/useEditCell.js +23 -0
  130. package/dist/hooks/useInfiniteScroll.js +25 -0
  131. package/dist/hooks/useKeydown.js +20 -0
  132. package/dist/hooks/useMatchesMedia.js +15 -0
  133. package/dist/hooks/useMenuSystem.js +186 -0
  134. package/dist/hooks/useMounted.js +9 -0
  135. package/dist/hooks/useTableLayout/computeColumns.js +59 -0
  136. package/dist/hooks/useTableLayout/storage.js +64 -0
  137. package/dist/hooks/useTableLayout/useTableLayout.js +163 -0
  138. package/dist/index.js +249 -53839
  139. package/dist/lib/loadFonts.js +11 -0
  140. package/dist/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js +56 -0
  141. package/dist/node_modules/@dnd-kit/core/dist/core.esm.js +2299 -0
  142. package/dist/node_modules/@dnd-kit/modifiers/dist/modifiers.esm.js +13 -0
  143. package/dist/node_modules/@dnd-kit/sortable/dist/sortable.esm.js +367 -0
  144. package/dist/node_modules/@dnd-kit/utilities/dist/utilities.esm.js +235 -0
  145. package/dist/node_modules/@headlessui/react/dist/components/description/description.js +45 -0
  146. package/dist/node_modules/@headlessui/react/dist/components/keyboard.js +4 -0
  147. package/dist/node_modules/@headlessui/react/dist/components/label/label.js +62 -0
  148. package/dist/node_modules/@headlessui/react/dist/components/switch/switch.js +56 -0
  149. package/dist/node_modules/@headlessui/react/dist/hooks/use-active-press.js +33 -0
  150. package/dist/node_modules/@headlessui/react/dist/hooks/use-controllable.js +10 -0
  151. package/dist/node_modules/@headlessui/react/dist/hooks/use-default-value.js +8 -0
  152. package/dist/node_modules/@headlessui/react/dist/hooks/use-disposables.js +9 -0
  153. package/dist/node_modules/@headlessui/react/dist/hooks/use-event.js +9 -0
  154. package/dist/node_modules/@headlessui/react/dist/hooks/use-iso-morphic-effect.js +8 -0
  155. package/dist/node_modules/@headlessui/react/dist/hooks/use-latest-value.js +11 -0
  156. package/dist/node_modules/@headlessui/react/dist/hooks/use-resolve-button-type.js +12 -0
  157. package/dist/node_modules/@headlessui/react/dist/hooks/use-slot.js +7 -0
  158. package/dist/node_modules/@headlessui/react/dist/hooks/use-sync-refs.js +16 -0
  159. package/dist/node_modules/@headlessui/react/dist/internal/disabled.js +8 -0
  160. package/dist/node_modules/@headlessui/react/dist/internal/form-fields.js +35 -0
  161. package/dist/node_modules/@headlessui/react/dist/internal/hidden.js +13 -0
  162. package/dist/node_modules/@headlessui/react/dist/internal/id.js +8 -0
  163. package/dist/node_modules/@headlessui/react/dist/utils/bugs.js +19 -0
  164. package/dist/node_modules/@headlessui/react/dist/utils/class-names.js +6 -0
  165. package/dist/node_modules/@headlessui/react/dist/utils/disposables.js +40 -0
  166. package/dist/node_modules/@headlessui/react/dist/utils/dom.js +34 -0
  167. package/dist/node_modules/@headlessui/react/dist/utils/env.js +34 -0
  168. package/dist/node_modules/@headlessui/react/dist/utils/form.js +32 -0
  169. package/dist/node_modules/@headlessui/react/dist/utils/match.js +11 -0
  170. package/dist/node_modules/@headlessui/react/dist/utils/micro-task.js +8 -0
  171. package/dist/node_modules/@headlessui/react/dist/utils/owner.js +8 -0
  172. package/dist/node_modules/@headlessui/react/dist/utils/render.js +126 -0
  173. package/dist/node_modules/@js-temporal/polyfill/dist/index.esm.js +3913 -0
  174. package/dist/node_modules/@mikecousins/react-pdf/dist/index.js +83 -0
  175. package/dist/node_modules/@react-aria/focus/dist/useFocusRing.js +38 -0
  176. package/dist/node_modules/@react-aria/interactions/dist/useFocus.js +31 -0
  177. package/dist/node_modules/@react-aria/interactions/dist/useFocusVisible.js +99 -0
  178. package/dist/node_modules/@react-aria/interactions/dist/useFocusWithin.js +59 -0
  179. package/dist/node_modules/@react-aria/interactions/dist/useHover.js +86 -0
  180. package/dist/node_modules/@react-aria/interactions/dist/utils.js +68 -0
  181. package/dist/node_modules/@react-aria/utils/dist/DOMFunctions.js +32 -0
  182. package/dist/node_modules/@react-aria/utils/dist/domHelpers.js +15 -0
  183. package/dist/node_modules/@react-aria/utils/dist/focusWithoutScrolling.js +45 -0
  184. package/dist/node_modules/@react-aria/utils/dist/isVirtualEvent.js +7 -0
  185. package/dist/node_modules/@react-aria/utils/dist/openLink.js +28 -0
  186. package/dist/node_modules/@react-aria/utils/dist/platform.js +47 -0
  187. package/dist/node_modules/@react-aria/utils/dist/useGlobalListeners.js +34 -0
  188. package/dist/node_modules/@react-aria/utils/dist/useLayoutEffect.js +6 -0
  189. package/dist/node_modules/@react-stately/flags/dist/import.js +7 -0
  190. package/dist/node_modules/@tanstack/react-table/build/lib/index.js +94 -0
  191. package/dist/node_modules/@tanstack/react-virtual/dist/esm/index.js +38 -0
  192. package/dist/node_modules/@tanstack/table-core/build/lib/index.js +1954 -0
  193. package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +575 -0
  194. package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +52 -0
  195. package/dist/node_modules/clsx/dist/clsx.js +17 -0
  196. package/dist/node_modules/embla-carousel/esm/embla-carousel.esm.js +1204 -0
  197. package/dist/node_modules/embla-carousel-autoplay/esm/embla-carousel-autoplay.esm.js +126 -0
  198. package/dist/node_modules/embla-carousel-react/esm/embla-carousel-react.esm.js +24 -0
  199. package/dist/node_modules/embla-carousel-reactive-utils/esm/embla-carousel-reactive-utils.esm.js +35 -0
  200. package/dist/node_modules/jsbi/dist/jsbi.js +1040 -0
  201. package/dist/node_modules/react-use/esm/usePrevious.js +10 -0
  202. package/dist/static/no-results-image.png.js +4 -0
  203. package/dist/utils/date-patch-dashes.js +28 -0
  204. package/dist/utils/date.js +95 -0
  205. package/dist/utils/formatting.js +22 -0
  206. package/dist/utils/index.js +4 -0
  207. package/dist/utils/mergeObjectArrays.js +18 -0
  208. package/dist/utils.js +20 -0
  209. package/package.json +1 -1
  210. /package/dist/{pdf-l6QfMa5e.js → node_modules/pdfjs-dist/build/pdf.js} +0 -0
@@ -0,0 +1,13 @@
1
+ import "react";
2
+ const e = (r) => {
3
+ let {
4
+ transform: t
5
+ } = r;
6
+ return {
7
+ ...t,
8
+ y: 0
9
+ };
10
+ };
11
+ export {
12
+ e as restrictToHorizontalAxis
13
+ };
@@ -0,0 +1,367 @@
1
+ import H, { useMemo as E, useRef as P, useEffect as L, useContext as ue, useState as fe } from "react";
2
+ import { KeyboardCode as O, useDndContext as ge, useDroppable as pe, useDraggable as ve, getClientRect as be } from "../../core/dist/core.esm.js";
3
+ import { useUniqueId as me, useIsomorphicLayoutEffect as K, useCombinedRefs as Ie, isKeyboardEvent as xe, CSS as U } from "../../utilities/dist/utilities.esm.js";
4
+ function V(e, n, t) {
5
+ const r = e.slice();
6
+ return r.splice(t < 0 ? r.length + t : t, 0, r.splice(n, 1)[0]), r;
7
+ }
8
+ function he(e, n) {
9
+ return e.reduce((t, r, i) => {
10
+ const s = n.get(r);
11
+ return s && (t[i] = s), t;
12
+ }, Array(e.length));
13
+ }
14
+ function N(e) {
15
+ return e !== null && e >= 0;
16
+ }
17
+ function ye(e, n) {
18
+ if (e === n)
19
+ return !0;
20
+ if (e.length !== n.length)
21
+ return !1;
22
+ for (let t = 0; t < e.length; t++)
23
+ if (e[t] !== n[t])
24
+ return !1;
25
+ return !0;
26
+ }
27
+ function Re(e) {
28
+ return typeof e == "boolean" ? {
29
+ draggable: e,
30
+ droppable: e
31
+ } : e;
32
+ }
33
+ const A = {
34
+ scaleX: 1,
35
+ scaleY: 1
36
+ }, Pe = (e) => {
37
+ var n;
38
+ let {
39
+ rects: t,
40
+ activeNodeRect: r,
41
+ activeIndex: i,
42
+ overIndex: s,
43
+ index: o
44
+ } = e;
45
+ const a = (n = t[i]) != null ? n : r;
46
+ if (!a)
47
+ return null;
48
+ const u = we(t, o, i);
49
+ if (o === i) {
50
+ const l = t[s];
51
+ return l ? {
52
+ x: i < s ? l.left + l.width - (a.left + a.width) : l.left - a.left,
53
+ y: 0,
54
+ ...A
55
+ } : null;
56
+ }
57
+ return o > i && o <= s ? {
58
+ x: -a.width - u,
59
+ y: 0,
60
+ ...A
61
+ } : o < i && o >= s ? {
62
+ x: a.width + u,
63
+ y: 0,
64
+ ...A
65
+ } : {
66
+ x: 0,
67
+ y: 0,
68
+ ...A
69
+ };
70
+ };
71
+ function we(e, n, t) {
72
+ const r = e[n], i = e[n - 1], s = e[n + 1];
73
+ return !r || !i && !s ? 0 : t < n ? i ? r.left - (i.left + i.width) : s.left - (r.left + r.width) : s ? s.left - (r.left + r.width) : r.left - (i.left + i.width);
74
+ }
75
+ const j = (e) => {
76
+ let {
77
+ rects: n,
78
+ activeIndex: t,
79
+ overIndex: r,
80
+ index: i
81
+ } = e;
82
+ const s = V(n, r, t), o = n[i], a = s[i];
83
+ return !a || !o ? null : {
84
+ x: a.left - o.left,
85
+ y: a.top - o.top,
86
+ scaleX: a.width / o.width,
87
+ scaleY: a.height / o.height
88
+ };
89
+ }, k = "Sortable", J = /* @__PURE__ */ H.createContext({
90
+ activeIndex: -1,
91
+ containerId: k,
92
+ disableTransforms: !1,
93
+ items: [],
94
+ overIndex: -1,
95
+ useDragOverlay: !1,
96
+ sortedRects: [],
97
+ strategy: j,
98
+ disabled: {
99
+ draggable: !1,
100
+ droppable: !1
101
+ }
102
+ });
103
+ function Xe(e) {
104
+ let {
105
+ children: n,
106
+ id: t,
107
+ items: r,
108
+ strategy: i = j,
109
+ disabled: s = !1
110
+ } = e;
111
+ const {
112
+ active: o,
113
+ dragOverlay: a,
114
+ droppableRects: u,
115
+ over: l,
116
+ measureDroppableContainers: c
117
+ } = ge(), p = me(k, t), b = a.rect !== null, f = E(() => r.map((m) => typeof m == "object" && "id" in m ? m.id : m), [r]), C = o != null, h = o ? f.indexOf(o.id) : -1, v = l ? f.indexOf(l.id) : -1, T = P(f), y = !ye(f, T.current), R = v !== -1 && h === -1 || y, g = Re(s);
118
+ K(() => {
119
+ y && C && c(f);
120
+ }, [y, f, C, c]), L(() => {
121
+ T.current = f;
122
+ }, [f]);
123
+ const w = E(
124
+ () => ({
125
+ activeIndex: h,
126
+ containerId: p,
127
+ disabled: g,
128
+ disableTransforms: R,
129
+ items: f,
130
+ overIndex: v,
131
+ useDragOverlay: b,
132
+ sortedRects: he(f, u),
133
+ strategy: i
134
+ }),
135
+ // eslint-disable-next-line react-hooks/exhaustive-deps
136
+ [h, p, g.draggable, g.droppable, R, f, v, u, b, i]
137
+ );
138
+ return H.createElement(J.Provider, {
139
+ value: w
140
+ }, n);
141
+ }
142
+ const De = (e) => {
143
+ let {
144
+ id: n,
145
+ items: t,
146
+ activeIndex: r,
147
+ overIndex: i
148
+ } = e;
149
+ return V(t, r, i).indexOf(n);
150
+ }, Se = (e) => {
151
+ let {
152
+ containerId: n,
153
+ isSorting: t,
154
+ wasDragging: r,
155
+ index: i,
156
+ items: s,
157
+ newIndex: o,
158
+ previousItems: a,
159
+ previousContainerId: u,
160
+ transition: l
161
+ } = e;
162
+ return !l || !r || a !== s && i === o ? !1 : t ? !0 : o !== i && n === u;
163
+ }, Ce = {
164
+ duration: 200,
165
+ easing: "ease"
166
+ }, Q = "transform", Te = /* @__PURE__ */ U.Transition.toString({
167
+ property: Q,
168
+ duration: 0,
169
+ easing: "linear"
170
+ }), Oe = {
171
+ roleDescription: "sortable"
172
+ };
173
+ function Ne(e) {
174
+ let {
175
+ disabled: n,
176
+ index: t,
177
+ node: r,
178
+ rect: i
179
+ } = e;
180
+ const [s, o] = fe(null), a = P(t);
181
+ return K(() => {
182
+ if (!n && t !== a.current && r.current) {
183
+ const u = i.current;
184
+ if (u) {
185
+ const l = be(r.current, {
186
+ ignoreTransform: !0
187
+ }), c = {
188
+ x: u.left - l.left,
189
+ y: u.top - l.top,
190
+ scaleX: u.width / l.width,
191
+ scaleY: u.height / l.height
192
+ };
193
+ (c.x || c.y) && o(c);
194
+ }
195
+ }
196
+ t !== a.current && (a.current = t);
197
+ }, [n, t, r, i]), L(() => {
198
+ s && o(null);
199
+ }, [s]), s;
200
+ }
201
+ function Ge(e) {
202
+ let {
203
+ animateLayoutChanges: n = Se,
204
+ attributes: t,
205
+ disabled: r,
206
+ data: i,
207
+ getNewIndex: s = De,
208
+ id: o,
209
+ strategy: a,
210
+ resizeObserverConfig: u,
211
+ transition: l = Ce
212
+ } = e;
213
+ const {
214
+ items: c,
215
+ containerId: p,
216
+ activeIndex: b,
217
+ disabled: f,
218
+ disableTransforms: C,
219
+ sortedRects: h,
220
+ overIndex: v,
221
+ useDragOverlay: T,
222
+ strategy: y
223
+ } = ue(J), R = Ae(r, f), g = c.indexOf(o), w = E(() => ({
224
+ sortable: {
225
+ containerId: p,
226
+ index: g,
227
+ items: c
228
+ },
229
+ ...i
230
+ }), [p, i, g, c]), m = E(() => c.slice(c.indexOf(o)), [c, o]), {
231
+ rect: X,
232
+ node: G,
233
+ isOver: W,
234
+ setNodeRef: M
235
+ } = pe({
236
+ id: o,
237
+ data: w,
238
+ disabled: R.droppable,
239
+ resizeObserverConfig: {
240
+ updateMeasurementsFor: m,
241
+ ...u
242
+ }
243
+ }), {
244
+ active: D,
245
+ activatorEvent: Z,
246
+ activeNodeRect: ee,
247
+ attributes: te,
248
+ setNodeRef: Y,
249
+ listeners: re,
250
+ isDragging: _,
251
+ over: ne,
252
+ setActivatorNodeRef: ie,
253
+ transform: oe
254
+ } = ve({
255
+ id: o,
256
+ data: w,
257
+ attributes: {
258
+ ...Oe,
259
+ ...t
260
+ },
261
+ disabled: R.draggable
262
+ }), se = Ie(M, Y), I = !!D, $ = I && !C && N(b) && N(v), q = !T && _, B = q && $ ? oe : null, ae = $ ? B ?? (a ?? y)({
263
+ rects: h,
264
+ activeNodeRect: ee,
265
+ activeIndex: b,
266
+ overIndex: v,
267
+ index: g
268
+ }) : null, S = N(b) && N(v) ? s({
269
+ id: o,
270
+ items: c,
271
+ activeIndex: b,
272
+ overIndex: v
273
+ }) : g, x = D?.id, d = P({
274
+ activeId: x,
275
+ items: c,
276
+ newIndex: S,
277
+ containerId: p
278
+ }), ce = c !== d.current.items, F = n({
279
+ active: D,
280
+ containerId: p,
281
+ isDragging: _,
282
+ isSorting: I,
283
+ id: o,
284
+ index: g,
285
+ items: c,
286
+ newIndex: d.current.newIndex,
287
+ previousItems: d.current.items,
288
+ previousContainerId: d.current.containerId,
289
+ transition: l,
290
+ wasDragging: d.current.activeId != null
291
+ }), z = Ne({
292
+ disabled: !F,
293
+ index: g,
294
+ node: G,
295
+ rect: X
296
+ });
297
+ return L(() => {
298
+ I && d.current.newIndex !== S && (d.current.newIndex = S), p !== d.current.containerId && (d.current.containerId = p), c !== d.current.items && (d.current.items = c);
299
+ }, [I, S, p, c]), L(() => {
300
+ if (x === d.current.activeId)
301
+ return;
302
+ if (x != null && d.current.activeId == null) {
303
+ d.current.activeId = x;
304
+ return;
305
+ }
306
+ const de = setTimeout(() => {
307
+ d.current.activeId = x;
308
+ }, 50);
309
+ return () => clearTimeout(de);
310
+ }, [x]), {
311
+ active: D,
312
+ activeIndex: b,
313
+ attributes: te,
314
+ data: w,
315
+ rect: X,
316
+ index: g,
317
+ newIndex: S,
318
+ items: c,
319
+ isOver: W,
320
+ isSorting: I,
321
+ isDragging: _,
322
+ listeners: re,
323
+ node: G,
324
+ overIndex: v,
325
+ over: ne,
326
+ setNodeRef: se,
327
+ setActivatorNodeRef: ie,
328
+ setDroppableNodeRef: M,
329
+ setDraggableNodeRef: Y,
330
+ transform: z ?? ae,
331
+ transition: le()
332
+ };
333
+ function le() {
334
+ if (
335
+ // Temporarily disable transitions for a single frame to set up derived transforms
336
+ z || // Or to prevent items jumping to back to their "new" position when items change
337
+ ce && d.current.newIndex === g
338
+ )
339
+ return Te;
340
+ if (!(q && !xe(Z) || !l) && (I || F))
341
+ return U.Transition.toString({
342
+ ...l,
343
+ property: Q
344
+ });
345
+ }
346
+ }
347
+ function Ae(e, n) {
348
+ var t, r;
349
+ return typeof e == "boolean" ? {
350
+ draggable: e,
351
+ // Backwards compatibility
352
+ droppable: !1
353
+ } : {
354
+ draggable: (t = e?.draggable) != null ? t : n.draggable,
355
+ droppable: (r = e?.droppable) != null ? r : n.droppable
356
+ };
357
+ }
358
+ O.Down, O.Right, O.Up, O.Left;
359
+ export {
360
+ Xe as SortableContext,
361
+ V as arrayMove,
362
+ Se as defaultAnimateLayoutChanges,
363
+ De as defaultNewIndexGetter,
364
+ Pe as horizontalListSortingStrategy,
365
+ j as rectSortingStrategy,
366
+ Ge as useSortable
367
+ };
@@ -0,0 +1,235 @@
1
+ import { useRef as o, useMemo as l, useLayoutEffect as R, useEffect as g, useCallback as i } from "react";
2
+ function Y() {
3
+ for (var n = arguments.length, t = new Array(n), e = 0; e < n; e++)
4
+ t[e] = arguments[e];
5
+ return l(
6
+ () => (u) => {
7
+ t.forEach((r) => r(u));
8
+ },
9
+ // eslint-disable-next-line react-hooks/exhaustive-deps
10
+ t
11
+ );
12
+ }
13
+ const D = typeof window < "u" && typeof window.document < "u" && typeof window.document.createElement < "u";
14
+ function a(n) {
15
+ const t = Object.prototype.toString.call(n);
16
+ return t === "[object Window]" || // In Electron context the Window object serializes to [object global]
17
+ t === "[object global]";
18
+ }
19
+ function b(n) {
20
+ return "nodeType" in n;
21
+ }
22
+ function c(n) {
23
+ var t, e;
24
+ return n ? a(n) ? n : b(n) && (t = (e = n.ownerDocument) == null ? void 0 : e.defaultView) != null ? t : window : window;
25
+ }
26
+ function j(n) {
27
+ const {
28
+ Document: t
29
+ } = c(n);
30
+ return n instanceof t;
31
+ }
32
+ function C(n) {
33
+ return a(n) ? !1 : n instanceof c(n).HTMLElement;
34
+ }
35
+ function L(n) {
36
+ return n instanceof c(n).SVGElement;
37
+ }
38
+ function x(n) {
39
+ return n ? a(n) ? n.document : b(n) ? j(n) ? n : C(n) || L(n) ? n.ownerDocument : document : document : document;
40
+ }
41
+ const E = D ? R : g;
42
+ function M(n) {
43
+ const t = o(n);
44
+ return E(() => {
45
+ t.current = n;
46
+ }), i(function() {
47
+ for (var e = arguments.length, u = new Array(e), r = 0; r < e; r++)
48
+ u[r] = arguments[r];
49
+ return t.current == null ? void 0 : t.current(...u);
50
+ }, []);
51
+ }
52
+ function A() {
53
+ const n = o(null), t = i((u, r) => {
54
+ n.current = setInterval(u, r);
55
+ }, []), e = i(() => {
56
+ n.current !== null && (clearInterval(n.current), n.current = null);
57
+ }, []);
58
+ return [t, e];
59
+ }
60
+ function I(n, t) {
61
+ t === void 0 && (t = [n]);
62
+ const e = o(n);
63
+ return E(() => {
64
+ e.current !== n && (e.current = n);
65
+ }, t), e;
66
+ }
67
+ function v(n, t) {
68
+ const e = o();
69
+ return l(
70
+ () => {
71
+ const u = n(e.current);
72
+ return e.current = u, u;
73
+ },
74
+ // eslint-disable-next-line react-hooks/exhaustive-deps
75
+ [...t]
76
+ );
77
+ }
78
+ function N(n) {
79
+ const t = M(n), e = o(null), u = i(
80
+ (r) => {
81
+ r !== e.current && t?.(r, e.current), e.current = r;
82
+ },
83
+ //eslint-disable-next-line
84
+ []
85
+ );
86
+ return [e, u];
87
+ }
88
+ function F(n) {
89
+ const t = o();
90
+ return g(() => {
91
+ t.current = n;
92
+ }, [n]), t.current;
93
+ }
94
+ let f = {};
95
+ function H(n, t) {
96
+ return l(() => {
97
+ if (t)
98
+ return t;
99
+ const e = f[n] == null ? 0 : f[n] + 1;
100
+ return f[n] = e, n + "-" + e;
101
+ }, [n, t]);
102
+ }
103
+ function S(n) {
104
+ return function(t) {
105
+ for (var e = arguments.length, u = new Array(e > 1 ? e - 1 : 0), r = 1; r < e; r++)
106
+ u[r - 1] = arguments[r];
107
+ return u.reduce((s, T) => {
108
+ const y = Object.entries(T);
109
+ for (const [d, p] of y) {
110
+ const m = s[d];
111
+ m != null && (s[d] = m + n * p);
112
+ }
113
+ return s;
114
+ }, {
115
+ ...t
116
+ });
117
+ };
118
+ }
119
+ const W = /* @__PURE__ */ S(1), q = /* @__PURE__ */ S(-1);
120
+ function O(n) {
121
+ return "clientX" in n && "clientY" in n;
122
+ }
123
+ function z(n) {
124
+ if (!n)
125
+ return !1;
126
+ const {
127
+ KeyboardEvent: t
128
+ } = c(n.target);
129
+ return t && n instanceof t;
130
+ }
131
+ function V(n) {
132
+ if (!n)
133
+ return !1;
134
+ const {
135
+ TouchEvent: t
136
+ } = c(n.target);
137
+ return t && n instanceof t;
138
+ }
139
+ function G(n) {
140
+ if (V(n)) {
141
+ if (n.touches && n.touches.length) {
142
+ const {
143
+ clientX: t,
144
+ clientY: e
145
+ } = n.touches[0];
146
+ return {
147
+ x: t,
148
+ y: e
149
+ };
150
+ } else if (n.changedTouches && n.changedTouches.length) {
151
+ const {
152
+ clientX: t,
153
+ clientY: e
154
+ } = n.changedTouches[0];
155
+ return {
156
+ x: t,
157
+ y: e
158
+ };
159
+ }
160
+ }
161
+ return O(n) ? {
162
+ x: n.clientX,
163
+ y: n.clientY
164
+ } : null;
165
+ }
166
+ const w = /* @__PURE__ */ Object.freeze({
167
+ Translate: {
168
+ toString(n) {
169
+ if (!n)
170
+ return;
171
+ const {
172
+ x: t,
173
+ y: e
174
+ } = n;
175
+ return "translate3d(" + (t ? Math.round(t) : 0) + "px, " + (e ? Math.round(e) : 0) + "px, 0)";
176
+ }
177
+ },
178
+ Scale: {
179
+ toString(n) {
180
+ if (!n)
181
+ return;
182
+ const {
183
+ scaleX: t,
184
+ scaleY: e
185
+ } = n;
186
+ return "scaleX(" + t + ") scaleY(" + e + ")";
187
+ }
188
+ },
189
+ Transform: {
190
+ toString(n) {
191
+ if (n)
192
+ return [w.Translate.toString(n), w.Scale.toString(n)].join(" ");
193
+ }
194
+ },
195
+ Transition: {
196
+ toString(n) {
197
+ let {
198
+ property: t,
199
+ duration: e,
200
+ easing: u
201
+ } = n;
202
+ return t + " " + e + "ms " + u;
203
+ }
204
+ }
205
+ }), h = "a,frame,iframe,input:not([type=hidden]):not(:disabled),select:not(:disabled),textarea:not(:disabled),button:not(:disabled),*[tabindex]";
206
+ function K(n) {
207
+ return n.matches(h) ? n : n.querySelector(h);
208
+ }
209
+ export {
210
+ w as CSS,
211
+ W as add,
212
+ D as canUseDOM,
213
+ K as findFirstFocusableNode,
214
+ G as getEventCoordinates,
215
+ x as getOwnerDocument,
216
+ c as getWindow,
217
+ O as hasViewportRelativeCoordinates,
218
+ j as isDocument,
219
+ C as isHTMLElement,
220
+ z as isKeyboardEvent,
221
+ b as isNode,
222
+ L as isSVGElement,
223
+ V as isTouchEvent,
224
+ a as isWindow,
225
+ q as subtract,
226
+ Y as useCombinedRefs,
227
+ M as useEvent,
228
+ A as useInterval,
229
+ E as useIsomorphicLayoutEffect,
230
+ I as useLatestValue,
231
+ v as useLazyMemo,
232
+ N as useNodeRef,
233
+ F as usePrevious,
234
+ H as useUniqueId
235
+ };
@@ -0,0 +1,45 @@
1
+ "use client";
2
+ import d, { useState as v, useMemo as p, useId as h, createContext as D, useContext as c } from "react";
3
+ import { useEvent as g } from "../../hooks/use-event.js";
4
+ import { useIsoMorphicEffect as E } from "../../hooks/use-iso-morphic-effect.js";
5
+ import { useSlot as b } from "../../hooks/use-slot.js";
6
+ import { useSyncRefs as x } from "../../hooks/use-sync-refs.js";
7
+ import { useDisabled as S } from "../../internal/disabled.js";
8
+ import { forwardRefWithAs as w, useRender as y } from "../../utils/render.js";
9
+ let u = D(null);
10
+ u.displayName = "DescriptionContext";
11
+ function f() {
12
+ let t = c(u);
13
+ if (t === null) {
14
+ let e = new Error("You used a <Description /> component, but it is not inside a relevant parent.");
15
+ throw Error.captureStackTrace && Error.captureStackTrace(e, f), e;
16
+ }
17
+ return t;
18
+ }
19
+ function O() {
20
+ var t, e;
21
+ return (e = (t = c(u)) == null ? void 0 : t.value) != null ? e : void 0;
22
+ }
23
+ function Y() {
24
+ let [t, e] = v([]);
25
+ return [t.length > 0 ? t.join(" ") : void 0, p(() => function(r) {
26
+ let n = g((a) => (e((s) => [...s, a]), () => e((s) => {
27
+ let i = s.slice(), l = i.indexOf(a);
28
+ return l !== -1 && i.splice(l, 1), i;
29
+ }))), o = p(() => ({ register: n, slot: r.slot, name: r.name, props: r.props, value: r.value }), [n, r.slot, r.name, r.props, r.value]);
30
+ return d.createElement(u.Provider, { value: o }, r.children);
31
+ }, [e])];
32
+ }
33
+ let C = "p";
34
+ function R(t, e) {
35
+ let r = h(), n = S(), { id: o = `headlessui-description-${r}`, ...a } = t, s = f(), i = x(e);
36
+ E(() => s.register(o), [o, s.register]);
37
+ let l = b({ ...s.slot, disabled: n || !1 }), m = { ref: i, ...s.props, id: o };
38
+ return y()({ ourProps: m, theirProps: a, slot: l, defaultTag: C, name: s.name || "Description" });
39
+ }
40
+ let $ = w(R), A = Object.assign($, {});
41
+ export {
42
+ A as Description,
43
+ O as useDescribedBy,
44
+ Y as useDescriptions
45
+ };
@@ -0,0 +1,4 @@
1
+ var o = ((e) => (e.Space = " ", e.Enter = "Enter", e.Escape = "Escape", e.Backspace = "Backspace", e.Delete = "Delete", e.ArrowLeft = "ArrowLeft", e.ArrowUp = "ArrowUp", e.ArrowRight = "ArrowRight", e.ArrowDown = "ArrowDown", e.Home = "Home", e.End = "End", e.PageUp = "PageUp", e.PageDown = "PageDown", e.Tab = "Tab", e))(o || {});
2
+ export {
3
+ o as Keys
4
+ };