@dmsi/wedgekit-react 2.0.2 → 2.1.0
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/components/Button.d.ts +5 -1
- package/dist/components/Button.d.ts.map +1 -1
- package/dist/components/DateInput.d.ts.map +1 -1
- package/dist/components/DateInput.js +154 -121
- package/dist/components/Link.d.ts +2 -1
- package/dist/components/Link.d.ts.map +1 -1
- package/dist/components/Link.js +20 -18
- package/dist/components/MainBar.d.ts +3 -1
- package/dist/components/MainBar.d.ts.map +1 -1
- package/dist/components/MainBar.js +19 -18
- package/dist/components/MobileDataGrid/index.d.ts +2 -0
- package/dist/components/MobileDataGrid/index.d.ts.map +1 -1
- package/dist/components/MobileDataGrid/index.js +35 -34
- package/dist/components/Stack.d.ts +1 -1
- package/dist/components/Stack.d.ts.map +1 -1
- package/dist/components/Stack.js +73 -73
- package/dist/components/Stepper.d.ts +11 -3
- package/dist/components/Stepper.d.ts.map +1 -1
- package/dist/components/Stepper.js +117 -82
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +130 -128
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -1,130 +1,164 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as
|
|
3
|
-
import { useState as
|
|
4
|
-
import { Button as
|
|
5
|
-
import { InputBase as
|
|
6
|
-
import { Icon as
|
|
7
|
-
import { clsx as
|
|
8
|
-
import { componentGap as
|
|
9
|
-
import { Tooltip as
|
|
10
|
-
function
|
|
11
|
-
error:
|
|
12
|
-
disabled:
|
|
13
|
-
hideButtons:
|
|
2
|
+
import { jsxs as Q, jsx as r } from "react/jsx-runtime";
|
|
3
|
+
import { useRef as R, useState as W, useEffect as z } from "react";
|
|
4
|
+
import { Button as I } from "./Button.js";
|
|
5
|
+
import { InputBase as D } from "./Input.js";
|
|
6
|
+
import { Icon as $ } from "./Icon.js";
|
|
7
|
+
import { clsx as f } from "../node_modules/clsx/dist/clsx.js";
|
|
8
|
+
import { componentGap as E } from "../classNames.js";
|
|
9
|
+
import { Tooltip as S } from "./Tooltip.js";
|
|
10
|
+
function G({
|
|
11
|
+
error: N,
|
|
12
|
+
disabled: o,
|
|
13
|
+
hideButtons: x = !1,
|
|
14
14
|
value: n,
|
|
15
|
-
setValue:
|
|
16
|
-
onDecrease:
|
|
17
|
-
onIncrease:
|
|
18
|
-
onBlur:
|
|
19
|
-
id:
|
|
20
|
-
testid:
|
|
21
|
-
min:
|
|
22
|
-
max:
|
|
23
|
-
step:
|
|
24
|
-
|
|
15
|
+
setValue: u,
|
|
16
|
+
onDecrease: C,
|
|
17
|
+
onIncrease: M,
|
|
18
|
+
onBlur: v,
|
|
19
|
+
id: a,
|
|
20
|
+
testid: e,
|
|
21
|
+
min: m,
|
|
22
|
+
max: l,
|
|
23
|
+
step: i = 1,
|
|
24
|
+
allowDecimals: p = !1,
|
|
25
|
+
...F
|
|
25
26
|
}) {
|
|
26
|
-
const
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
27
|
+
const s = R(!1), [h, d] = W(String(n)), k = Math.min(
|
|
28
|
+
Math.max(h.length, 1),
|
|
29
|
+
15
|
|
30
|
+
), w = Math.max(i, m ?? i);
|
|
31
|
+
z(() => {
|
|
32
|
+
if (s.current) {
|
|
33
|
+
s.current = !1;
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
36
|
+
d(String(n));
|
|
37
|
+
}, [n]);
|
|
38
|
+
function V() {
|
|
39
|
+
l != null && n >= l || u(() => {
|
|
40
|
+
const c = String(i).includes(".") ? String(i).split(".")[1].length : 0, t = Number(
|
|
41
|
+
Math.min(
|
|
42
|
+
Number((n + i).toFixed(c + 6)),
|
|
43
|
+
l ?? 1 / 0
|
|
44
|
+
).toFixed(c)
|
|
45
|
+
);
|
|
46
|
+
return M?.(t), t;
|
|
47
|
+
});
|
|
32
48
|
}
|
|
33
|
-
function
|
|
34
|
-
|
|
49
|
+
function j() {
|
|
50
|
+
m != null && n <= m || u(() => {
|
|
51
|
+
const c = String(i).includes(".") ? String(i).split(".")[1].length : 0, t = Number(
|
|
52
|
+
Math.max(
|
|
53
|
+
Number((n - i).toFixed(c + 6)),
|
|
54
|
+
m ?? -1 / 0
|
|
55
|
+
).toFixed(c)
|
|
56
|
+
);
|
|
57
|
+
return C?.(t), t;
|
|
58
|
+
});
|
|
35
59
|
}
|
|
36
|
-
return /* @__PURE__ */
|
|
60
|
+
return /* @__PURE__ */ Q(
|
|
37
61
|
"div",
|
|
38
62
|
{
|
|
39
|
-
id:
|
|
40
|
-
"data-testid":
|
|
41
|
-
className:
|
|
63
|
+
id: a,
|
|
64
|
+
"data-testid": e,
|
|
65
|
+
className: f("flex items-center", E),
|
|
42
66
|
children: [
|
|
43
|
-
!
|
|
44
|
-
|
|
67
|
+
!x && /* @__PURE__ */ r(
|
|
68
|
+
S,
|
|
45
69
|
{
|
|
46
70
|
message: "Decrease Quantity",
|
|
47
|
-
testid:
|
|
48
|
-
children: /* @__PURE__ */
|
|
49
|
-
|
|
71
|
+
testid: e ? `${e}-decrease-tooltip` : void 0,
|
|
72
|
+
children: /* @__PURE__ */ r(
|
|
73
|
+
I,
|
|
50
74
|
{
|
|
51
|
-
id:
|
|
52
|
-
testid:
|
|
75
|
+
id: a ? `${a}-decrease-button` : void 0,
|
|
76
|
+
testid: e ? `${e}-decrease-button` : void 0,
|
|
53
77
|
iconOnly: !0,
|
|
54
78
|
variant: "tertiary",
|
|
55
|
-
leftIcon: /* @__PURE__ */
|
|
79
|
+
leftIcon: /* @__PURE__ */ r(
|
|
56
80
|
"span",
|
|
57
81
|
{
|
|
58
|
-
className:
|
|
59
|
-
!
|
|
60
|
-
|
|
82
|
+
className: f(
|
|
83
|
+
!o || n > 0 && "text-icon-action-primary-normal",
|
|
84
|
+
o || n === 0 && "text-icon-action-primary-disabled",
|
|
61
85
|
"contents"
|
|
62
86
|
),
|
|
63
|
-
children: /* @__PURE__ */
|
|
87
|
+
children: /* @__PURE__ */ r($, { name: "remove" })
|
|
64
88
|
}
|
|
65
89
|
),
|
|
66
|
-
onClick:
|
|
67
|
-
disabled:
|
|
90
|
+
onClick: j,
|
|
91
|
+
disabled: o || n <= w
|
|
68
92
|
}
|
|
69
93
|
)
|
|
70
94
|
}
|
|
71
95
|
),
|
|
72
|
-
/* @__PURE__ */
|
|
73
|
-
|
|
96
|
+
/* @__PURE__ */ r("div", { children: /* @__PURE__ */ r(
|
|
97
|
+
D,
|
|
74
98
|
{
|
|
75
|
-
...
|
|
76
|
-
id:
|
|
77
|
-
testid:
|
|
99
|
+
...F,
|
|
100
|
+
id: a ? `${a}-input` : void 0,
|
|
101
|
+
testid: e ? `${e}-input` : void 0,
|
|
78
102
|
type: "text",
|
|
79
|
-
inputMode: "numeric",
|
|
80
|
-
pattern: "[0-9]*",
|
|
103
|
+
inputMode: p ? "decimal" : "numeric",
|
|
104
|
+
pattern: p ? "[0-9]*\\.?[0-9]*" : "[0-9]*",
|
|
81
105
|
align: "center",
|
|
82
|
-
|
|
83
|
-
|
|
106
|
+
maxLength: 15,
|
|
107
|
+
size: k,
|
|
108
|
+
value: h,
|
|
84
109
|
onChange: (c) => {
|
|
85
|
-
const
|
|
86
|
-
if (
|
|
87
|
-
|
|
110
|
+
const t = c.target.value;
|
|
111
|
+
if (t === "") {
|
|
112
|
+
d(""), s.current = !0, u(0);
|
|
113
|
+
return;
|
|
114
|
+
}
|
|
115
|
+
if (p) {
|
|
116
|
+
if (!/^\d*\.?\d*$/.test(t))
|
|
117
|
+
return;
|
|
118
|
+
const y = t === "." ? "0." : t.replace(/^0+(\d)/, "$1"), b = parseFloat(y) || 0, O = t.includes(".") && (t.endsWith(".") || /0$/.test(t));
|
|
119
|
+
d(
|
|
120
|
+
O ? y : String(b)
|
|
121
|
+
), s.current = !0, u(b);
|
|
88
122
|
return;
|
|
89
123
|
}
|
|
90
|
-
if (!/^\d*$/.test(
|
|
124
|
+
if (!/^\d*$/.test(t))
|
|
91
125
|
return;
|
|
92
|
-
const g =
|
|
93
|
-
|
|
126
|
+
const g = t.replace(/^0+/, "") || "0", B = parseInt(g, 10);
|
|
127
|
+
d(g), s.current = !0, u(B);
|
|
94
128
|
},
|
|
95
129
|
onBlur: () => {
|
|
96
|
-
|
|
130
|
+
d(String(n)), s.current = !1, v?.();
|
|
97
131
|
},
|
|
98
|
-
error:
|
|
99
|
-
disabled:
|
|
100
|
-
className: "!w-6 !h-4.5 !px-0 disabled:!text-text-on-action-primary-disabled disabled:!bg-background-action-secondary-disabled disabled:!border-border-primary-normal"
|
|
132
|
+
error: N,
|
|
133
|
+
disabled: o,
|
|
134
|
+
className: "!w-auto !min-w-6 !max-w-[15ch] !h-4.5 !px-0 !overflow-x-auto disabled:!text-text-on-action-primary-disabled disabled:!bg-background-action-secondary-disabled disabled:!border-border-primary-normal"
|
|
101
135
|
}
|
|
102
136
|
) }),
|
|
103
|
-
!
|
|
104
|
-
|
|
137
|
+
!x && /* @__PURE__ */ r(
|
|
138
|
+
S,
|
|
105
139
|
{
|
|
106
140
|
message: "Increase Quantity",
|
|
107
|
-
testid:
|
|
108
|
-
children: /* @__PURE__ */
|
|
109
|
-
|
|
141
|
+
testid: e ? `${e}-increase-tooltip` : void 0,
|
|
142
|
+
children: /* @__PURE__ */ r(
|
|
143
|
+
I,
|
|
110
144
|
{
|
|
111
|
-
id:
|
|
112
|
-
testid:
|
|
145
|
+
id: a ? `${a}-increase-button` : void 0,
|
|
146
|
+
testid: e ? `${e}-increase-button` : void 0,
|
|
113
147
|
iconOnly: !0,
|
|
114
148
|
variant: "tertiary",
|
|
115
|
-
leftIcon: /* @__PURE__ */
|
|
149
|
+
leftIcon: /* @__PURE__ */ r(
|
|
116
150
|
"span",
|
|
117
151
|
{
|
|
118
|
-
className:
|
|
119
|
-
!
|
|
120
|
-
|
|
152
|
+
className: f(
|
|
153
|
+
!o && "text-icon-action-primary-normal",
|
|
154
|
+
o && "text-icon-action-primary-disabled",
|
|
121
155
|
"contents"
|
|
122
156
|
),
|
|
123
|
-
children: /* @__PURE__ */
|
|
157
|
+
children: /* @__PURE__ */ r($, { name: "add" })
|
|
124
158
|
}
|
|
125
159
|
),
|
|
126
|
-
onClick:
|
|
127
|
-
disabled:
|
|
160
|
+
onClick: V,
|
|
161
|
+
disabled: o || l != null && n >= l
|
|
128
162
|
}
|
|
129
163
|
)
|
|
130
164
|
}
|
|
@@ -133,6 +167,7 @@ function J({
|
|
|
133
167
|
}
|
|
134
168
|
);
|
|
135
169
|
}
|
|
170
|
+
G.displayName = "Stepper";
|
|
136
171
|
export {
|
|
137
|
-
|
|
172
|
+
G as Stepper
|
|
138
173
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -51,6 +51,7 @@ export * from './components/ModalContent';
|
|
|
51
51
|
export * from './components/ModalHeader';
|
|
52
52
|
export * from './components/ModalScrim';
|
|
53
53
|
export * from './components/MobileDataGrid';
|
|
54
|
+
export { useGridContext } from './components/MobileDataGrid/GridContextProvider/useGridContext';
|
|
54
55
|
export * from './components/MobileNavMenu';
|
|
55
56
|
export * from './components/NavigationTab';
|
|
56
57
|
export * from './components/NavigationTabs';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import { Caption as h } from "./components/Caption.js";
|
|
|
11
11
|
import { Card as b } from "./components/Card.js";
|
|
12
12
|
import { Checkbox as P } from "./components/Checkbox.js";
|
|
13
13
|
import { CompactImagesPreview as L } from "./components/CompactImagesPreview.js";
|
|
14
|
-
import { ContentTab as
|
|
14
|
+
import { ContentTab as G } from "./components/ContentTab.js";
|
|
15
15
|
import { ContentTabs as V } from "./components/ContentTabs.js";
|
|
16
16
|
import { DataTable as O } from "./components/DataTable.js";
|
|
17
17
|
import { DataGrid as v } from "./components/DataGrid/index.js";
|
|
@@ -31,7 +31,7 @@ import { Heading as go, Heading1 as Do, Heading2 as Co, Heading3 as Mo } from ".
|
|
|
31
31
|
import { HorizontalDivider as ho } from "./components/HorizontalDivider.js";
|
|
32
32
|
import { ICON_COLORS as bo, Icon as To } from "./components/Icon.js";
|
|
33
33
|
import { ImagePlaceholder as yo } from "./components/ImagePlaceholder.js";
|
|
34
|
-
import { Currency as Bo, Finder as
|
|
34
|
+
import { Currency as Bo, Finder as Go, Input as wo, InputBase as Vo, Percentage as Ao, UOM as Oo } from "./components/Input.js";
|
|
35
35
|
import { InputGroup as vo } from "./components/InputGroup.js";
|
|
36
36
|
import { Label as ko } from "./components/Label.js";
|
|
37
37
|
import { Link as Eo } from "./components/Link.js";
|
|
@@ -52,57 +52,58 @@ import { ModalContent as ur } from "./components/ModalContent.js";
|
|
|
52
52
|
import { ModalHeader as cr } from "./components/ModalHeader.js";
|
|
53
53
|
import { ModalScrim as Dr } from "./components/ModalScrim.js";
|
|
54
54
|
import { MobileDataGrid as Mr } from "./components/MobileDataGrid/index.js";
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
55
|
+
import { useGridContext as hr } from "./components/MobileDataGrid/GridContextProvider/useGridContext.js";
|
|
56
|
+
import { MobileNavMenu as br } from "./components/MobileNavMenu.js";
|
|
57
|
+
import { NavigationTab as Pr } from "./components/NavigationTab.js";
|
|
58
|
+
import { NavigationTabs as Lr } from "./components/NavigationTabs.js";
|
|
59
|
+
import { NestedMenu as Gr } from "./components/NestedMenu.js";
|
|
60
|
+
import { Notification as Vr } from "./components/Notification.js";
|
|
61
|
+
import { OptionPill as Or } from "./components/OptionPill.js";
|
|
62
|
+
import { OrderCheckIcon as vr } from "./components/OrderCheckIcon.js";
|
|
63
|
+
import { Pagination as kr } from "./components/Pagination.js";
|
|
64
|
+
import { Paragraph as Er } from "./components/Paragraph.js";
|
|
65
|
+
import { Password as Wr } from "./components/Password.js";
|
|
66
|
+
import { PDFViewer as jr } from "./components/PDFViewer/index.js";
|
|
67
|
+
import { ProductImagePreview as Jr } from "./components/ProductImagePreview/index.js";
|
|
68
|
+
import { ProjectBar as _r } from "./components/ProjectBar.js";
|
|
69
|
+
import { Radio as Qr } from "./components/Radio.js";
|
|
70
|
+
import { SearchResultImage as Yr } from "./components/SearchResultImage/index.js";
|
|
71
|
+
import { Search as $r } from "./components/Search.js";
|
|
72
|
+
import { Select as re } from "./components/Select.js";
|
|
73
|
+
import { SideMenu as te } from "./components/SideMenu.js";
|
|
74
|
+
import { SideMenuGroup as pe } from "./components/SideMenuGroup.js";
|
|
75
|
+
import { SideMenuItem as fe } from "./components/SideMenuItem.js";
|
|
76
|
+
import { SimpleTable as ie } from "./components/SimpleTable.js";
|
|
77
|
+
import { SkeletonParagraph as le } from "./components/SkeletonParagraph.js";
|
|
78
|
+
import { Spinner as ue } from "./components/Spinner.js";
|
|
79
|
+
import { Stack as ce } from "./components/Stack.js";
|
|
80
|
+
import { StatusPill as De } from "./components/StatusPill.js";
|
|
81
|
+
import { Stepper as Me } from "./components/Stepper.js";
|
|
82
|
+
import { Subheader as he } from "./components/Subheader.js";
|
|
83
|
+
import { Swatch as be, Swatches as Te } from "./components/Swatch.js";
|
|
84
|
+
import { Surface as ye } from "./components/Surface.js";
|
|
85
|
+
import { Textarea as Be } from "./components/Textarea.js";
|
|
86
|
+
import { Time as we } from "./components/Time.js";
|
|
87
|
+
import { Theme as Ae } from "./components/Theme.js";
|
|
88
|
+
import { Toast as Re, createToast as ve } from "./components/Toast.js";
|
|
89
|
+
import { Tooltip as ke } from "./components/Tooltip.js";
|
|
90
|
+
import { TopBar as Ee, TopBarBase as Fe } from "./components/TopBar.js";
|
|
91
|
+
import { Upload as Ue } from "./components/Upload.js";
|
|
92
|
+
import { WorldpayIframe as ze } from "./components/WorldpayIframe.js";
|
|
93
|
+
import { default as Ke } from "./static/no-results-image.png.js";
|
|
94
|
+
import { useMatchesMedia as qe, useMatchesMobile as Qe } from "./hooks/useMatchesMedia.js";
|
|
95
|
+
import { useMenuPosition as Ye, useSubMenuSystem as Ze } from "./hooks/useMenuSystem.js";
|
|
96
|
+
import { useMounted as ot } from "./hooks/useMounted.js";
|
|
97
|
+
import { useKeydown as et } from "./hooks/useKeydown.js";
|
|
98
|
+
import { useInfiniteScroll as at } from "./hooks/useInfiniteScroll.js";
|
|
99
|
+
import { useTableLayout as mt } from "./hooks/useTableLayout/useTableLayout.js";
|
|
100
|
+
import { useEditCell as xt } from "./hooks/useEditCell.js";
|
|
101
|
+
import { findDocumentRoot as nt } from "./utils.js";
|
|
102
|
+
import { LocalStoragePrefixVersion as st } from "./utils/index.js";
|
|
103
|
+
import { calculateCursorPosition as dt, countDigitsUpToCursor as ct, findPositionAfterDigitCount as gt, formatDate as Dt, formatDatePartsToDisplay as Ct, formatInputValue as Mt, isDigit as St, isSlash as ht, isValidDate as It, isValidDateRange as bt, isValidDateRangeOrder as Tt, parseDateParts as Pt, parseInputDate as yt } from "./utils/date.js";
|
|
104
|
+
import { formatCurrencyDisplay as Bt, formatDecimalValue as Gt, getDecimalPlaceholder as wt } from "./utils/formatting.js";
|
|
105
|
+
import { formatDateWithDashes as At, formatInputValueWithDashes as Ot, parseInputDateWithDashes as Rt } from "./utils/date-patch-dashes.js";
|
|
106
|
+
import { mergeObjectArrays as Ht } from "./utils/mergeObjectArrays.js";
|
|
106
107
|
export {
|
|
107
108
|
p as AccessCard,
|
|
108
109
|
f as AccessCardGroup,
|
|
@@ -117,7 +118,7 @@ export {
|
|
|
117
118
|
b as Card,
|
|
118
119
|
P as Checkbox,
|
|
119
120
|
L as CompactImagesPreview,
|
|
120
|
-
|
|
121
|
+
G as ContentTab,
|
|
121
122
|
V as ContentTabs,
|
|
122
123
|
Bo as Currency,
|
|
123
124
|
Z as DMSiLogo,
|
|
@@ -139,7 +140,7 @@ export {
|
|
|
139
140
|
mo as EmptyCartIcon,
|
|
140
141
|
xo as FilterGroup,
|
|
141
142
|
io as FilterGroupItem,
|
|
142
|
-
|
|
143
|
+
Go as Finder,
|
|
143
144
|
lo as FullViewportLayout,
|
|
144
145
|
uo as Grid,
|
|
145
146
|
go as Heading,
|
|
@@ -150,7 +151,7 @@ export {
|
|
|
150
151
|
bo as ICON_COLORS,
|
|
151
152
|
To as Icon,
|
|
152
153
|
yo as ImagePlaceholder,
|
|
153
|
-
|
|
154
|
+
wo as Input,
|
|
154
155
|
Vo as InputBase,
|
|
155
156
|
vo as InputGroup,
|
|
156
157
|
ko as Label,
|
|
@@ -159,7 +160,7 @@ export {
|
|
|
159
160
|
jo as ListGroup,
|
|
160
161
|
Jo as LiveChatComponent,
|
|
161
162
|
_o as LoadingScrim,
|
|
162
|
-
|
|
163
|
+
st as LocalStoragePrefixVersion,
|
|
163
164
|
Qo as LogoAgilityTopBar,
|
|
164
165
|
Yo as LogoDMSiTopBar,
|
|
165
166
|
$o as LogoMillworkTopBar,
|
|
@@ -168,84 +169,85 @@ export {
|
|
|
168
169
|
pr as Menu,
|
|
169
170
|
fr as MenuOption,
|
|
170
171
|
Mr as MobileDataGrid,
|
|
171
|
-
|
|
172
|
+
br as MobileNavMenu,
|
|
172
173
|
ir as Modal,
|
|
173
174
|
lr as ModalButtons,
|
|
174
175
|
ur as ModalContent,
|
|
175
176
|
cr as ModalHeader,
|
|
176
177
|
Dr as ModalScrim,
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
178
|
+
Pr as NavigationTab,
|
|
179
|
+
Lr as NavigationTabs,
|
|
180
|
+
Gr as NestedMenu,
|
|
181
|
+
Ke as NoResultsImg,
|
|
182
|
+
Vr as Notification,
|
|
183
|
+
Or as OptionPill,
|
|
184
|
+
vr as OrderCheckIcon,
|
|
185
|
+
jr as PDFViewer,
|
|
186
|
+
kr as Pagination,
|
|
187
|
+
Er as Paragraph,
|
|
188
|
+
Wr as Password,
|
|
188
189
|
Ao as Percentage,
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
190
|
+
Jr as ProductImagePreview,
|
|
191
|
+
_r as ProjectBar,
|
|
192
|
+
Qr as Radio,
|
|
193
|
+
$r as Search,
|
|
194
|
+
Yr as SearchResultImage,
|
|
195
|
+
re as Select,
|
|
196
|
+
te as SideMenu,
|
|
197
|
+
pe as SideMenuGroup,
|
|
198
|
+
fe as SideMenuItem,
|
|
199
|
+
ie as SimpleTable,
|
|
200
|
+
le as SkeletonParagraph,
|
|
201
|
+
ue as Spinner,
|
|
202
|
+
ce as Stack,
|
|
203
|
+
De as StatusPill,
|
|
204
|
+
Me as Stepper,
|
|
205
|
+
he as Subheader,
|
|
206
|
+
ye as Surface,
|
|
207
|
+
be as Swatch,
|
|
208
|
+
Te as Swatches,
|
|
209
|
+
Be as Textarea,
|
|
210
|
+
Ae as Theme,
|
|
211
|
+
we as Time,
|
|
212
|
+
Re as Toast,
|
|
213
|
+
ke as Tooltip,
|
|
214
|
+
Ee as TopBar,
|
|
215
|
+
Fe as TopBarBase,
|
|
215
216
|
Oo as UOM,
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
217
|
+
Ue as Upload,
|
|
218
|
+
ze as WorldpayIframe,
|
|
219
|
+
dt as calculateCursorPosition,
|
|
220
|
+
ct as countDigitsUpToCursor,
|
|
221
|
+
ve as createToast,
|
|
222
|
+
nt as findDocumentRoot,
|
|
223
|
+
gt as findPositionAfterDigitCount,
|
|
224
|
+
Bt as formatCurrencyDisplay,
|
|
225
|
+
Dt as formatDate,
|
|
226
|
+
Ct as formatDatePartsToDisplay,
|
|
227
|
+
At as formatDateWithDashes,
|
|
228
|
+
Gt as formatDecimalValue,
|
|
229
|
+
Mt as formatInputValue,
|
|
230
|
+
Ot as formatInputValueWithDashes,
|
|
231
|
+
wt as getDecimalPlaceholder,
|
|
232
|
+
St as isDigit,
|
|
233
|
+
ht as isSlash,
|
|
234
|
+
It as isValidDate,
|
|
235
|
+
bt as isValidDateRange,
|
|
236
|
+
Tt as isValidDateRangeOrder,
|
|
236
237
|
M as isWeekend,
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
Qe as
|
|
247
|
-
|
|
248
|
-
|
|
238
|
+
Ht as mergeObjectArrays,
|
|
239
|
+
Pt as parseDateParts,
|
|
240
|
+
yt as parseInputDate,
|
|
241
|
+
Rt as parseInputDateWithDashes,
|
|
242
|
+
xt as useEditCell,
|
|
243
|
+
hr as useGridContext,
|
|
244
|
+
at as useInfiniteScroll,
|
|
245
|
+
et as useKeydown,
|
|
246
|
+
qe as useMatchesMedia,
|
|
247
|
+
Qe as useMatchesMobile,
|
|
248
|
+
Ye as useMenuPosition,
|
|
249
|
+
ot as useMounted,
|
|
250
|
+
Ze as useSubMenuSystem,
|
|
249
251
|
eo as useTableEditingContext,
|
|
250
|
-
|
|
252
|
+
mt as useTableLayout
|
|
251
253
|
};
|