@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.
- package/dist/classNames.js +150 -0
- package/dist/components/AccessCard.js +63 -0
- package/dist/components/AccessCardGroup.js +73 -0
- package/dist/components/AccessChangerTabItem.js +51 -0
- package/dist/components/Accordion.js +99 -0
- package/dist/components/Alert.js +78 -0
- package/dist/components/Breadcrumbs.js +111 -0
- package/dist/components/Button.js +137 -0
- package/dist/components/CalendarRange.js +405 -0
- package/dist/components/Caption.js +99 -0
- package/dist/components/Card.js +50 -0
- package/dist/components/Checkbox.js +108 -0
- package/dist/components/CompactImagesPreview.js +120 -0
- package/dist/components/ContentTab.js +68 -0
- package/dist/components/ContentTabs.js +96 -0
- package/dist/components/DMSiLogo.js +54 -0
- package/dist/components/DataGrid/ColumnSelectorHeaderCell/ColumnSelectorMenuOption.js +27 -0
- package/dist/components/DataGrid/ColumnSelectorHeaderCell/index.js +79 -0
- package/dist/components/DataGrid/PinnedColumns.js +165 -0
- package/dist/components/DataGrid/SummaryRow/SummaryCell.js +51 -0
- package/dist/components/DataGrid/SummaryRow/aggregations.js +55 -0
- package/dist/components/DataGrid/SummaryRow/index.js +86 -0
- package/dist/components/DataGrid/TableBody/GroupRow.js +243 -0
- package/dist/components/DataGrid/TableBody/LoadingCell.js +33 -0
- package/dist/components/DataGrid/TableBody/TableBodyRow.js +136 -0
- package/dist/components/DataGrid/TableBody/index.js +161 -0
- package/dist/components/DataGrid/index.js +696 -0
- package/dist/components/DataGrid/utils.js +20 -0
- package/dist/components/DataGridCell.js +412 -0
- package/dist/components/DataTable.js +700 -0
- package/dist/components/DateInput.js +193 -0
- package/dist/components/DateRangeInput.js +368 -0
- package/dist/components/DebugJson.js +28 -0
- package/dist/components/Display.js +46 -0
- package/dist/components/EditingContext.js +34 -0
- package/dist/components/EmblaCarousel/ArrowButtons.js +83 -0
- package/dist/components/EmblaCarousel/SelectedSnapDisplay.js +12 -0
- package/dist/components/EmblaCarousel/index.js +153 -0
- package/dist/components/EmblaCarousel/usePrevNextButtons.js +21 -0
- package/dist/components/EmblaCarousel/useSelectedSnapDisplay.js +15 -0
- package/dist/components/EmptyCartIcon.js +25 -0
- package/dist/components/FilterGroup.js +198 -0
- package/dist/components/FullViewportBox.js +19 -0
- package/dist/components/Grid.js +54 -0
- package/dist/components/Heading.js +50 -0
- package/dist/components/HorizontalDivider.js +20 -0
- package/dist/components/Icon.js +73 -0
- package/dist/components/ImagePlaceholder.js +22 -0
- package/dist/components/Input.js +469 -0
- package/dist/components/InputGroup.js +45 -0
- package/dist/components/Label.js +37 -0
- package/dist/components/Link.js +69 -0
- package/dist/components/List.js +12 -0
- package/dist/components/ListGroup.js +54 -0
- package/dist/components/LiveChatComponent.js +25 -0
- package/dist/components/LoadingScrim.js +22 -0
- package/dist/components/LogoAgilityTopBar.js +90 -0
- package/dist/components/LogoDMSiTopBar.js +54 -0
- package/dist/components/LogoMillworkTopBar.js +196 -0
- package/dist/components/MainBar.js +58 -0
- package/dist/components/MaxViewportBox.js +19 -0
- package/dist/components/Menu.js +202 -0
- package/dist/components/MenuOption.js +161 -0
- package/dist/components/MobileDataGrid/ColumnList.js +85 -0
- package/dist/components/MobileDataGrid/ColumnSelector/index.js +100 -0
- package/dist/components/MobileDataGrid/GridContextProvider/GridContext.d.ts.map +1 -1
- package/dist/components/MobileDataGrid/GridContextProvider/GridContext.js +6 -0
- package/dist/components/MobileDataGrid/GridContextProvider/index.js +80 -0
- package/dist/components/MobileDataGrid/GridContextProvider/useGridContext.js +11 -0
- package/dist/components/MobileDataGrid/MobileDataGridCard/MobileDataGridColumn.js +18 -0
- package/dist/components/MobileDataGrid/MobileDataGridCard/index.js +130 -0
- package/dist/components/MobileDataGrid/MobileDataGridHeader.js +67 -0
- package/dist/components/MobileDataGrid/RowDetailModalProvider/ModalContent.js +42 -0
- package/dist/components/MobileDataGrid/RowDetailModalProvider/index.js +58 -0
- package/dist/components/MobileDataGrid/dataGridReducer.js +28 -0
- package/dist/components/MobileDataGrid/index.js +78 -0
- package/dist/components/MobileNavMenu.js +173 -0
- package/dist/components/Modal.js +201 -0
- package/dist/components/ModalButtons.js +57 -0
- package/dist/components/ModalContent.js +24 -0
- package/dist/components/ModalHeader.js +74 -0
- package/dist/components/ModalScrim.js +32 -0
- package/dist/components/NavigationTab.js +72 -0
- package/dist/components/NavigationTabs.js +45 -0
- package/dist/components/NestedMenu.js +119 -0
- package/dist/components/Notification.js +91 -0
- package/dist/components/OptionPill.js +103 -0
- package/dist/components/OrderCheckIcon.js +28 -0
- package/dist/components/PDFViewer/DownloadIcon.js +25 -0
- package/dist/components/PDFViewer/PDFElement.js +77 -0
- package/dist/components/PDFViewer/PDFNavigation.js +64 -0
- package/dist/components/PDFViewer/PDFPage.js +28 -0
- package/dist/components/PDFViewer/index.js +124 -0
- package/dist/components/Pagination.js +117 -0
- package/dist/components/Paragraph.js +43 -0
- package/dist/components/Password.js +47 -0
- package/dist/components/ProductImagePreview/CarouselPagination.js +48 -0
- package/dist/components/ProductImagePreview/MobileImageCarousel.js +146 -0
- package/dist/components/ProductImagePreview/ProductPrimaryImage.js +138 -0
- package/dist/components/ProductImagePreview/Thumbnail.js +46 -0
- package/dist/components/ProductImagePreview/ZoomWindow.js +74 -0
- package/dist/components/ProductImagePreview/index.js +189 -0
- package/dist/components/ProductImagePreview/useProductImagePreview.js +85 -0
- package/dist/components/ProjectBar.js +54 -0
- package/dist/components/Radio.js +113 -0
- package/dist/components/Search.js +89 -0
- package/dist/components/SearchResultImage/index.js +26 -0
- package/dist/components/Select.js +122 -0
- package/dist/components/SideMenu.js +24 -0
- package/dist/components/SideMenuGroup.js +80 -0
- package/dist/components/SideMenuItem.js +79 -0
- package/dist/components/SimpleTable.js +60 -0
- package/dist/components/SkeletonParagraph.js +24 -0
- package/dist/components/Spinner.js +30 -0
- package/dist/components/Stack.js +174 -0
- package/dist/components/StatusPill.js +44 -0
- package/dist/components/Stepper.js +138 -0
- package/dist/components/Subheader.js +41 -0
- package/dist/components/Surface.js +30 -0
- package/dist/components/Swatch.js +1498 -0
- package/dist/components/Textarea.js +106 -0
- package/dist/components/Theme.js +25 -0
- package/dist/components/Time.js +225 -0
- package/dist/components/Toast.js +170 -0
- package/dist/components/Tooltip.js +102 -0
- package/dist/components/TopBar.js +119 -0
- package/dist/components/Upload.js +107 -0
- package/dist/components/WorldpayIframe.js +19 -0
- package/dist/hooks/useEditCell.js +23 -0
- package/dist/hooks/useInfiniteScroll.js +25 -0
- package/dist/hooks/useKeydown.js +20 -0
- package/dist/hooks/useMatchesMedia.js +15 -0
- package/dist/hooks/useMenuSystem.js +186 -0
- package/dist/hooks/useMounted.js +9 -0
- package/dist/hooks/useTableLayout/computeColumns.js +59 -0
- package/dist/hooks/useTableLayout/storage.js +64 -0
- package/dist/hooks/useTableLayout/useTableLayout.js +163 -0
- package/dist/index.js +249 -53839
- package/dist/lib/loadFonts.js +11 -0
- package/dist/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js +56 -0
- package/dist/node_modules/@dnd-kit/core/dist/core.esm.js +2299 -0
- package/dist/node_modules/@dnd-kit/modifiers/dist/modifiers.esm.js +13 -0
- package/dist/node_modules/@dnd-kit/sortable/dist/sortable.esm.js +367 -0
- package/dist/node_modules/@dnd-kit/utilities/dist/utilities.esm.js +235 -0
- package/dist/node_modules/@headlessui/react/dist/components/description/description.js +45 -0
- package/dist/node_modules/@headlessui/react/dist/components/keyboard.js +4 -0
- package/dist/node_modules/@headlessui/react/dist/components/label/label.js +62 -0
- package/dist/node_modules/@headlessui/react/dist/components/switch/switch.js +56 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-active-press.js +33 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-controllable.js +10 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-default-value.js +8 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-disposables.js +9 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-event.js +9 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-iso-morphic-effect.js +8 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-latest-value.js +11 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-resolve-button-type.js +12 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-slot.js +7 -0
- package/dist/node_modules/@headlessui/react/dist/hooks/use-sync-refs.js +16 -0
- package/dist/node_modules/@headlessui/react/dist/internal/disabled.js +8 -0
- package/dist/node_modules/@headlessui/react/dist/internal/form-fields.js +35 -0
- package/dist/node_modules/@headlessui/react/dist/internal/hidden.js +13 -0
- package/dist/node_modules/@headlessui/react/dist/internal/id.js +8 -0
- package/dist/node_modules/@headlessui/react/dist/utils/bugs.js +19 -0
- package/dist/node_modules/@headlessui/react/dist/utils/class-names.js +6 -0
- package/dist/node_modules/@headlessui/react/dist/utils/disposables.js +40 -0
- package/dist/node_modules/@headlessui/react/dist/utils/dom.js +34 -0
- package/dist/node_modules/@headlessui/react/dist/utils/env.js +34 -0
- package/dist/node_modules/@headlessui/react/dist/utils/form.js +32 -0
- package/dist/node_modules/@headlessui/react/dist/utils/match.js +11 -0
- package/dist/node_modules/@headlessui/react/dist/utils/micro-task.js +8 -0
- package/dist/node_modules/@headlessui/react/dist/utils/owner.js +8 -0
- package/dist/node_modules/@headlessui/react/dist/utils/render.js +126 -0
- package/dist/node_modules/@js-temporal/polyfill/dist/index.esm.js +3913 -0
- package/dist/node_modules/@mikecousins/react-pdf/dist/index.js +83 -0
- package/dist/node_modules/@react-aria/focus/dist/useFocusRing.js +38 -0
- package/dist/node_modules/@react-aria/interactions/dist/useFocus.js +31 -0
- package/dist/node_modules/@react-aria/interactions/dist/useFocusVisible.js +99 -0
- package/dist/node_modules/@react-aria/interactions/dist/useFocusWithin.js +59 -0
- package/dist/node_modules/@react-aria/interactions/dist/useHover.js +86 -0
- package/dist/node_modules/@react-aria/interactions/dist/utils.js +68 -0
- package/dist/node_modules/@react-aria/utils/dist/DOMFunctions.js +32 -0
- package/dist/node_modules/@react-aria/utils/dist/domHelpers.js +15 -0
- package/dist/node_modules/@react-aria/utils/dist/focusWithoutScrolling.js +45 -0
- package/dist/node_modules/@react-aria/utils/dist/isVirtualEvent.js +7 -0
- package/dist/node_modules/@react-aria/utils/dist/openLink.js +28 -0
- package/dist/node_modules/@react-aria/utils/dist/platform.js +47 -0
- package/dist/node_modules/@react-aria/utils/dist/useGlobalListeners.js +34 -0
- package/dist/node_modules/@react-aria/utils/dist/useLayoutEffect.js +6 -0
- package/dist/node_modules/@react-stately/flags/dist/import.js +7 -0
- package/dist/node_modules/@tanstack/react-table/build/lib/index.js +94 -0
- package/dist/node_modules/@tanstack/react-virtual/dist/esm/index.js +38 -0
- package/dist/node_modules/@tanstack/table-core/build/lib/index.js +1954 -0
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +575 -0
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +52 -0
- package/dist/node_modules/clsx/dist/clsx.js +17 -0
- package/dist/node_modules/embla-carousel/esm/embla-carousel.esm.js +1204 -0
- package/dist/node_modules/embla-carousel-autoplay/esm/embla-carousel-autoplay.esm.js +126 -0
- package/dist/node_modules/embla-carousel-react/esm/embla-carousel-react.esm.js +24 -0
- package/dist/node_modules/embla-carousel-reactive-utils/esm/embla-carousel-reactive-utils.esm.js +35 -0
- package/dist/node_modules/jsbi/dist/jsbi.js +1040 -0
- package/dist/node_modules/react-use/esm/usePrevious.js +10 -0
- package/dist/static/no-results-image.png.js +4 -0
- package/dist/utils/date-patch-dashes.js +28 -0
- package/dist/utils/date.js +95 -0
- package/dist/utils/formatting.js +22 -0
- package/dist/utils/index.js +4 -0
- package/dist/utils/mergeObjectArrays.js +18 -0
- package/dist/utils.js +20 -0
- package/package.json +1 -1
- /package/dist/{pdf-l6QfMa5e.js → node_modules/pdfjs-dist/build/pdf.js} +0 -0
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
const B = {
|
|
2
|
+
active: !0,
|
|
3
|
+
breakpoints: {},
|
|
4
|
+
delay: 4e3,
|
|
5
|
+
jump: !1,
|
|
6
|
+
playOnInit: !0,
|
|
7
|
+
stopOnFocusIn: !0,
|
|
8
|
+
stopOnInteraction: !0,
|
|
9
|
+
stopOnMouseEnter: !1,
|
|
10
|
+
stopOnLastSnap: !1,
|
|
11
|
+
rootNode: null
|
|
12
|
+
};
|
|
13
|
+
function C(l, n) {
|
|
14
|
+
const t = l.scrollSnapList();
|
|
15
|
+
return typeof n == "number" ? t.map(() => n) : n(t, l);
|
|
16
|
+
}
|
|
17
|
+
function H(l, n) {
|
|
18
|
+
const t = l.rootNode();
|
|
19
|
+
return n && n(t) || t;
|
|
20
|
+
}
|
|
21
|
+
function E(l = {}) {
|
|
22
|
+
let n, t, r, y, u = null, c = 0, o = !1, f = !1, g = !1, p = !1;
|
|
23
|
+
function x(e, a) {
|
|
24
|
+
t = e;
|
|
25
|
+
const {
|
|
26
|
+
mergeOptions: d,
|
|
27
|
+
optionsAtMedia: O
|
|
28
|
+
} = a, R = d(B, E.globalOptions), W = d(R, l);
|
|
29
|
+
if (n = O(W), t.scrollSnapList().length <= 1) return;
|
|
30
|
+
p = n.jump, r = !1, y = C(t, n.delay);
|
|
31
|
+
const {
|
|
32
|
+
eventStore: m,
|
|
33
|
+
ownerDocument: z
|
|
34
|
+
} = t.internalEngine(), D = !!t.internalEngine().options.watchDrag, b = H(t, n.rootNode);
|
|
35
|
+
m.add(z, "visibilitychange", h), D && t.on("pointerDown", I), D && !n.stopOnInteraction && t.on("pointerUp", w), n.stopOnMouseEnter && m.add(b, "mouseenter", A), n.stopOnMouseEnter && !n.stopOnInteraction && m.add(b, "mouseleave", L), n.stopOnFocusIn && t.on("slideFocusStart", s), n.stopOnFocusIn && !n.stopOnInteraction && m.add(t.containerNode(), "focusout", i), n.playOnInit && i();
|
|
36
|
+
}
|
|
37
|
+
function T() {
|
|
38
|
+
t.off("pointerDown", I).off("pointerUp", w).off("slideFocusStart", s), s(), r = !0, o = !1;
|
|
39
|
+
}
|
|
40
|
+
function v() {
|
|
41
|
+
const {
|
|
42
|
+
ownerWindow: e
|
|
43
|
+
} = t.internalEngine();
|
|
44
|
+
e.clearTimeout(c), c = e.setTimeout(k, y[t.selectedScrollSnap()]), u = (/* @__PURE__ */ new Date()).getTime(), t.emit("autoplay:timerset");
|
|
45
|
+
}
|
|
46
|
+
function N() {
|
|
47
|
+
const {
|
|
48
|
+
ownerWindow: e
|
|
49
|
+
} = t.internalEngine();
|
|
50
|
+
e.clearTimeout(c), c = 0, u = null, t.emit("autoplay:timerstopped");
|
|
51
|
+
}
|
|
52
|
+
function i() {
|
|
53
|
+
if (!r) {
|
|
54
|
+
if (S()) {
|
|
55
|
+
g = !0;
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
o || t.emit("autoplay:play"), v(), o = !0;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
function s() {
|
|
62
|
+
r || (o && t.emit("autoplay:stop"), N(), o = !1);
|
|
63
|
+
}
|
|
64
|
+
function h() {
|
|
65
|
+
if (S())
|
|
66
|
+
return g = o, s();
|
|
67
|
+
g && i();
|
|
68
|
+
}
|
|
69
|
+
function S() {
|
|
70
|
+
const {
|
|
71
|
+
ownerDocument: e
|
|
72
|
+
} = t.internalEngine();
|
|
73
|
+
return e.visibilityState === "hidden";
|
|
74
|
+
}
|
|
75
|
+
function I() {
|
|
76
|
+
f || s();
|
|
77
|
+
}
|
|
78
|
+
function w() {
|
|
79
|
+
f || i();
|
|
80
|
+
}
|
|
81
|
+
function A() {
|
|
82
|
+
f = !0, s();
|
|
83
|
+
}
|
|
84
|
+
function L() {
|
|
85
|
+
f = !1, i();
|
|
86
|
+
}
|
|
87
|
+
function F(e) {
|
|
88
|
+
typeof e < "u" && (p = e), i();
|
|
89
|
+
}
|
|
90
|
+
function M() {
|
|
91
|
+
o && s();
|
|
92
|
+
}
|
|
93
|
+
function U() {
|
|
94
|
+
o && i();
|
|
95
|
+
}
|
|
96
|
+
function j() {
|
|
97
|
+
return o;
|
|
98
|
+
}
|
|
99
|
+
function k() {
|
|
100
|
+
const {
|
|
101
|
+
index: e
|
|
102
|
+
} = t.internalEngine(), a = e.clone().add(1).get(), d = t.scrollSnapList().length - 1, O = n.stopOnLastSnap && a === d;
|
|
103
|
+
if (t.canScrollNext() ? t.scrollNext(p) : t.scrollTo(0, p), t.emit("autoplay:select"), O) return s();
|
|
104
|
+
i();
|
|
105
|
+
}
|
|
106
|
+
function P() {
|
|
107
|
+
if (!u) return null;
|
|
108
|
+
const e = y[t.selectedScrollSnap()], a = (/* @__PURE__ */ new Date()).getTime() - u;
|
|
109
|
+
return e - a;
|
|
110
|
+
}
|
|
111
|
+
return {
|
|
112
|
+
name: "autoplay",
|
|
113
|
+
options: l,
|
|
114
|
+
init: x,
|
|
115
|
+
destroy: T,
|
|
116
|
+
play: F,
|
|
117
|
+
stop: M,
|
|
118
|
+
reset: U,
|
|
119
|
+
isPlaying: j,
|
|
120
|
+
timeUntilNext: P
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
E.globalOptions = void 0;
|
|
124
|
+
export {
|
|
125
|
+
E as default
|
|
126
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { useRef as l, useState as f, useCallback as p, useEffect as c } from "react";
|
|
2
|
+
import { areOptionsEqual as E, arePluginsEqual as O, canUseDOM as w } from "../../embla-carousel-reactive-utils/esm/embla-carousel-reactive-utils.esm.js";
|
|
3
|
+
import m from "../../embla-carousel/esm/embla-carousel.esm.js";
|
|
4
|
+
function b(e = {}, r = []) {
|
|
5
|
+
const t = l(e), n = l(r), [u, s] = f(), [a, d] = f(), o = p(() => {
|
|
6
|
+
u && u.reInit(t.current, n.current);
|
|
7
|
+
}, [u]);
|
|
8
|
+
return c(() => {
|
|
9
|
+
E(t.current, e) || (t.current = e, o());
|
|
10
|
+
}, [e, o]), c(() => {
|
|
11
|
+
O(n.current, r) || (n.current = r, o());
|
|
12
|
+
}, [r, o]), c(() => {
|
|
13
|
+
if (w() && a) {
|
|
14
|
+
m.globalOptions = b.globalOptions;
|
|
15
|
+
const i = m(a, t.current, n.current);
|
|
16
|
+
return s(i), () => i.destroy();
|
|
17
|
+
} else
|
|
18
|
+
s(void 0);
|
|
19
|
+
}, [a, s]), [d, u];
|
|
20
|
+
}
|
|
21
|
+
b.globalOptions = void 0;
|
|
22
|
+
export {
|
|
23
|
+
b as default
|
|
24
|
+
};
|
package/dist/node_modules/embla-carousel-reactive-utils/esm/embla-carousel-reactive-utils.esm.js
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
function y(n) {
|
|
2
|
+
return Object.prototype.toString.call(n) === "[object Object]";
|
|
3
|
+
}
|
|
4
|
+
function a(n) {
|
|
5
|
+
return y(n) || Array.isArray(n);
|
|
6
|
+
}
|
|
7
|
+
function p() {
|
|
8
|
+
return !!(typeof window < "u" && window.document && window.document.createElement);
|
|
9
|
+
}
|
|
10
|
+
function l(n, t) {
|
|
11
|
+
const e = Object.keys(n), c = Object.keys(t);
|
|
12
|
+
if (e.length !== c.length) return !1;
|
|
13
|
+
const s = JSON.stringify(Object.keys(n.breakpoints || {})), u = JSON.stringify(Object.keys(t.breakpoints || {}));
|
|
14
|
+
return s !== u ? !1 : e.every((o) => {
|
|
15
|
+
const r = n[o], i = t[o];
|
|
16
|
+
return typeof r == "function" ? `${r}` == `${i}` : !a(r) || !a(i) ? r === i : l(r, i);
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
function f(n) {
|
|
20
|
+
return n.concat().sort((t, e) => t.name > e.name ? 1 : -1).map((t) => t.options);
|
|
21
|
+
}
|
|
22
|
+
function O(n, t) {
|
|
23
|
+
if (n.length !== t.length) return !1;
|
|
24
|
+
const e = f(n), c = f(t);
|
|
25
|
+
return e.every((s, u) => {
|
|
26
|
+
const o = c[u];
|
|
27
|
+
return l(s, o);
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
l as areOptionsEqual,
|
|
32
|
+
O as arePluginsEqual,
|
|
33
|
+
p as canUseDOM,
|
|
34
|
+
f as sortAndMapPluginToOptions
|
|
35
|
+
};
|