@gnwebsoft/ui 2.18.0 → 2.18.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/{chunk-POY32C6G.mjs → chunk-B5ZIFGAN.mjs} +106 -48
- package/dist/{chunk-E46YP3KM.js → chunk-DMKDUMBD.js} +61 -3
- package/dist/components/index.d.mts +6 -1
- package/dist/components/index.d.ts +6 -1
- package/dist/components/index.js +4 -2
- package/dist/components/index.mjs +3 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -2
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
|
@@ -27,33 +27,90 @@ var FilterButton = ({ isSubmitting }) => {
|
|
|
27
27
|
};
|
|
28
28
|
var FilterButton_default = FilterButton;
|
|
29
29
|
|
|
30
|
-
// src/components/
|
|
30
|
+
// src/components/FilterWrapper/FilterWrapper.tsx
|
|
31
31
|
import {
|
|
32
|
+
Box,
|
|
32
33
|
Card,
|
|
33
34
|
CardContent,
|
|
34
35
|
CardHeader,
|
|
35
36
|
Divider,
|
|
37
|
+
Grid2,
|
|
36
38
|
Typography
|
|
37
39
|
} from "@mui/material";
|
|
38
|
-
import
|
|
40
|
+
import ManageSearchIcon from "@mui/icons-material/ManageSearch";
|
|
41
|
+
import { jsx as jsx3, jsxs } from "react/jsx-runtime";
|
|
42
|
+
var FilterWrapper = ({ children, title }) => {
|
|
43
|
+
return /* @__PURE__ */ jsxs(
|
|
44
|
+
Card,
|
|
45
|
+
{
|
|
46
|
+
sx: {
|
|
47
|
+
position: "relative",
|
|
48
|
+
borderRadius: "0px",
|
|
49
|
+
mb: 2
|
|
50
|
+
},
|
|
51
|
+
children: [
|
|
52
|
+
/* @__PURE__ */ jsx3(
|
|
53
|
+
CardHeader,
|
|
54
|
+
{
|
|
55
|
+
sx: {
|
|
56
|
+
display: "flex",
|
|
57
|
+
flexWrap: "wrap",
|
|
58
|
+
p: "1rem",
|
|
59
|
+
".MuiCardHeader-action": {
|
|
60
|
+
margin: 0,
|
|
61
|
+
alignSelf: "center"
|
|
62
|
+
},
|
|
63
|
+
alignItems: "center"
|
|
64
|
+
},
|
|
65
|
+
title: /* @__PURE__ */ jsxs(Box, { sx: { display: "flex", alignItems: "center", gap: 0.5 }, children: [
|
|
66
|
+
/* @__PURE__ */ jsx3(ManageSearchIcon, { sx: { color: "#4db3a2", height: "2.5rem" } }),
|
|
67
|
+
/* @__PURE__ */ jsx3(
|
|
68
|
+
Typography,
|
|
69
|
+
{
|
|
70
|
+
variant: "h5",
|
|
71
|
+
sx: { color: "#4db3a2", fontWeight: "bold" },
|
|
72
|
+
children: title
|
|
73
|
+
}
|
|
74
|
+
)
|
|
75
|
+
] })
|
|
76
|
+
}
|
|
77
|
+
),
|
|
78
|
+
/* @__PURE__ */ jsx3(Divider, {}),
|
|
79
|
+
/* @__PURE__ */ jsx3(CardContent, { sx: { py: 2 }, children: /* @__PURE__ */ jsx3(Grid2, { container: true, spacing: 2, children }) })
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
);
|
|
83
|
+
};
|
|
84
|
+
var FilterWrapper_default = FilterWrapper;
|
|
85
|
+
|
|
86
|
+
// src/components/FormWrapper/FormWrapper.tsx
|
|
87
|
+
import {
|
|
88
|
+
Card as Card2,
|
|
89
|
+
CardContent as CardContent2,
|
|
90
|
+
CardHeader as CardHeader2,
|
|
91
|
+
Divider as Divider2,
|
|
92
|
+
Grid2 as Grid22,
|
|
93
|
+
Typography as Typography2
|
|
94
|
+
} from "@mui/material";
|
|
95
|
+
import { Fragment, jsx as jsx4, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
39
96
|
var FormWrapper = ({
|
|
40
97
|
children,
|
|
41
98
|
title,
|
|
42
99
|
editMode,
|
|
43
100
|
breadCrumb
|
|
44
101
|
}) => {
|
|
45
|
-
return /* @__PURE__ */
|
|
46
|
-
breadCrumb ? breadCrumb : /* @__PURE__ */
|
|
47
|
-
/* @__PURE__ */
|
|
48
|
-
|
|
102
|
+
return /* @__PURE__ */ jsxs2(Fragment, { children: [
|
|
103
|
+
breadCrumb ? breadCrumb : /* @__PURE__ */ jsx4(Fragment, {}),
|
|
104
|
+
/* @__PURE__ */ jsxs2(
|
|
105
|
+
Card2,
|
|
49
106
|
{
|
|
50
107
|
sx: {
|
|
51
108
|
position: "relative",
|
|
52
109
|
borderRadius: "0px"
|
|
53
110
|
},
|
|
54
111
|
children: [
|
|
55
|
-
/* @__PURE__ */
|
|
56
|
-
|
|
112
|
+
/* @__PURE__ */ jsx4(
|
|
113
|
+
CardHeader2,
|
|
57
114
|
{
|
|
58
115
|
sx: {
|
|
59
116
|
display: "flex",
|
|
@@ -64,11 +121,11 @@ var FormWrapper = ({
|
|
|
64
121
|
alignSelf: "center"
|
|
65
122
|
}
|
|
66
123
|
},
|
|
67
|
-
title: title ?? /* @__PURE__ */
|
|
124
|
+
title: title ?? /* @__PURE__ */ jsx4(Typography2, { variant: "h5", children: editMode ? `Create ${title}` : `Edit ${title}` })
|
|
68
125
|
}
|
|
69
126
|
),
|
|
70
|
-
/* @__PURE__ */
|
|
71
|
-
/* @__PURE__ */
|
|
127
|
+
/* @__PURE__ */ jsx4(Divider2, { sx: { mt: 0 } }),
|
|
128
|
+
/* @__PURE__ */ jsx4(CardContent2, { children: /* @__PURE__ */ jsx4(Grid22, { container: true, spacing: 2, children }) })
|
|
72
129
|
]
|
|
73
130
|
}
|
|
74
131
|
)
|
|
@@ -77,10 +134,10 @@ var FormWrapper = ({
|
|
|
77
134
|
var FormWrapper_default = FormWrapper;
|
|
78
135
|
|
|
79
136
|
// src/components/LabelText/LabelText.tsx
|
|
80
|
-
import { Grid2 as
|
|
81
|
-
import { jsx as
|
|
82
|
-
var LabelText = ({ label, value }) => /* @__PURE__ */
|
|
83
|
-
|
|
137
|
+
import { Grid2 as Grid23, Tooltip, Typography as Typography3 } from "@mui/material";
|
|
138
|
+
import { jsx as jsx5, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
139
|
+
var LabelText = ({ label, value }) => /* @__PURE__ */ jsxs3(
|
|
140
|
+
Grid23,
|
|
84
141
|
{
|
|
85
142
|
size: { xs: 12, sm: 6, md: 6 },
|
|
86
143
|
sx: {
|
|
@@ -89,8 +146,8 @@ var LabelText = ({ label, value }) => /* @__PURE__ */ jsxs2(
|
|
|
89
146
|
"&:hover": { bgcolor: "#efefef", overflow: "hidden" }
|
|
90
147
|
},
|
|
91
148
|
children: [
|
|
92
|
-
/* @__PURE__ */
|
|
93
|
-
|
|
149
|
+
/* @__PURE__ */ jsxs3(
|
|
150
|
+
Grid23,
|
|
94
151
|
{
|
|
95
152
|
size: { xs: 6, sm: 7, md: 6 },
|
|
96
153
|
sx: {
|
|
@@ -104,13 +161,13 @@ var LabelText = ({ label, value }) => /* @__PURE__ */ jsxs2(
|
|
|
104
161
|
]
|
|
105
162
|
}
|
|
106
163
|
),
|
|
107
|
-
/* @__PURE__ */
|
|
108
|
-
|
|
164
|
+
/* @__PURE__ */ jsx5(
|
|
165
|
+
Grid23,
|
|
109
166
|
{
|
|
110
167
|
size: { xs: 12, sm: 5, md: 6 },
|
|
111
168
|
sx: { padding: "5px", display: "flex", flexWrap: "wrap" },
|
|
112
|
-
children: /* @__PURE__ */
|
|
113
|
-
|
|
169
|
+
children: /* @__PURE__ */ jsx5(Tooltip, { title: value, arrow: true, children: /* @__PURE__ */ jsx5(
|
|
170
|
+
Typography3,
|
|
114
171
|
{
|
|
115
172
|
color: "#3598dc",
|
|
116
173
|
fontSize: "14px",
|
|
@@ -134,27 +191,27 @@ var LabelText_default = LabelText;
|
|
|
134
191
|
|
|
135
192
|
// src/components/ListWrapper/ListWrapper.tsx
|
|
136
193
|
import {
|
|
137
|
-
Box,
|
|
138
|
-
Card as
|
|
139
|
-
CardContent as
|
|
140
|
-
CardHeader as
|
|
141
|
-
Divider as
|
|
142
|
-
Grid2 as
|
|
143
|
-
Typography as
|
|
194
|
+
Box as Box2,
|
|
195
|
+
Card as Card3,
|
|
196
|
+
CardContent as CardContent3,
|
|
197
|
+
CardHeader as CardHeader3,
|
|
198
|
+
Divider as Divider3,
|
|
199
|
+
Grid2 as Grid24,
|
|
200
|
+
Typography as Typography4
|
|
144
201
|
} from "@mui/material";
|
|
145
|
-
import
|
|
146
|
-
import { jsx as
|
|
202
|
+
import ManageSearchIcon2 from "@mui/icons-material/ManageSearch";
|
|
203
|
+
import { jsx as jsx6, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
147
204
|
var ListWrapper = ({ children, title, count }) => {
|
|
148
|
-
return /* @__PURE__ */
|
|
149
|
-
|
|
205
|
+
return /* @__PURE__ */ jsxs4(
|
|
206
|
+
Card3,
|
|
150
207
|
{
|
|
151
208
|
sx: {
|
|
152
209
|
position: "relative",
|
|
153
210
|
borderRadius: "0px"
|
|
154
211
|
},
|
|
155
212
|
children: [
|
|
156
|
-
/* @__PURE__ */
|
|
157
|
-
|
|
213
|
+
/* @__PURE__ */ jsx6(
|
|
214
|
+
CardHeader3,
|
|
158
215
|
{
|
|
159
216
|
sx: {
|
|
160
217
|
display: "flex",
|
|
@@ -166,10 +223,10 @@ var ListWrapper = ({ children, title, count }) => {
|
|
|
166
223
|
},
|
|
167
224
|
alignItems: "center"
|
|
168
225
|
},
|
|
169
|
-
title: /* @__PURE__ */
|
|
170
|
-
/* @__PURE__ */
|
|
171
|
-
/* @__PURE__ */
|
|
172
|
-
|
|
226
|
+
title: /* @__PURE__ */ jsxs4(Box2, { sx: { display: "flex", alignItems: "center", gap: 0.5 }, children: [
|
|
227
|
+
/* @__PURE__ */ jsx6(ManageSearchIcon2, { sx: { color: "#4db3a2", height: "2.5rem" } }),
|
|
228
|
+
/* @__PURE__ */ jsx6(
|
|
229
|
+
Typography4,
|
|
173
230
|
{
|
|
174
231
|
variant: "h5",
|
|
175
232
|
sx: { color: "#4db3a2", fontWeight: "bold" },
|
|
@@ -179,8 +236,8 @@ var ListWrapper = ({ children, title, count }) => {
|
|
|
179
236
|
] })
|
|
180
237
|
}
|
|
181
238
|
),
|
|
182
|
-
/* @__PURE__ */
|
|
183
|
-
/* @__PURE__ */
|
|
239
|
+
/* @__PURE__ */ jsx6(Divider3, {}),
|
|
240
|
+
/* @__PURE__ */ jsx6(CardContent3, { sx: { pt: 0 }, children: /* @__PURE__ */ jsx6(Grid24, { container: true, spacing: 2, children }) })
|
|
184
241
|
]
|
|
185
242
|
}
|
|
186
243
|
);
|
|
@@ -195,10 +252,10 @@ import {
|
|
|
195
252
|
GridToolbarFilterButton,
|
|
196
253
|
GridToolbarQuickFilter
|
|
197
254
|
} from "@mui/x-data-grid";
|
|
198
|
-
import { Box as
|
|
199
|
-
import { jsx as
|
|
200
|
-
var SimpleToolbar = () => /* @__PURE__ */
|
|
201
|
-
/* @__PURE__ */
|
|
255
|
+
import { Box as Box3 } from "@mui/material";
|
|
256
|
+
import { jsx as jsx7, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
257
|
+
var SimpleToolbar = () => /* @__PURE__ */ jsxs5(GridToolbarContainer, { children: [
|
|
258
|
+
/* @__PURE__ */ jsx7(
|
|
202
259
|
GridToolbarQuickFilter,
|
|
203
260
|
{
|
|
204
261
|
sx: {
|
|
@@ -219,16 +276,17 @@ var SimpleToolbar = () => /* @__PURE__ */ jsxs4(GridToolbarContainer, { children
|
|
|
219
276
|
}
|
|
220
277
|
}
|
|
221
278
|
),
|
|
222
|
-
/* @__PURE__ */
|
|
223
|
-
/* @__PURE__ */
|
|
224
|
-
/* @__PURE__ */
|
|
225
|
-
/* @__PURE__ */
|
|
279
|
+
/* @__PURE__ */ jsx7(Box3, { sx: { flexGrow: 1 } }),
|
|
280
|
+
/* @__PURE__ */ jsx7(GridToolbarColumnsButton, {}),
|
|
281
|
+
/* @__PURE__ */ jsx7(GridToolbarFilterButton, {}),
|
|
282
|
+
/* @__PURE__ */ jsx7(GridToolbarExport, {})
|
|
226
283
|
] });
|
|
227
284
|
var SimpleToolbar_default = SimpleToolbar;
|
|
228
285
|
|
|
229
286
|
export {
|
|
230
287
|
ClearButton_default,
|
|
231
288
|
FilterButton_default,
|
|
289
|
+
FilterWrapper_default,
|
|
232
290
|
FormWrapper_default,
|
|
233
291
|
LabelText_default,
|
|
234
292
|
ListWrapper_default,
|
|
@@ -27,6 +27,62 @@ var FilterButton = ({ isSubmitting }) => {
|
|
|
27
27
|
};
|
|
28
28
|
var FilterButton_default = FilterButton;
|
|
29
29
|
|
|
30
|
+
// src/components/FilterWrapper/FilterWrapper.tsx
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
var _ManageSearch = require('@mui/icons-material/ManageSearch'); var _ManageSearch2 = _interopRequireDefault(_ManageSearch);
|
|
41
|
+
|
|
42
|
+
var FilterWrapper = ({ children, title }) => {
|
|
43
|
+
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
44
|
+
_material.Card,
|
|
45
|
+
{
|
|
46
|
+
sx: {
|
|
47
|
+
position: "relative",
|
|
48
|
+
borderRadius: "0px",
|
|
49
|
+
mb: 2
|
|
50
|
+
},
|
|
51
|
+
children: [
|
|
52
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
53
|
+
_material.CardHeader,
|
|
54
|
+
{
|
|
55
|
+
sx: {
|
|
56
|
+
display: "flex",
|
|
57
|
+
flexWrap: "wrap",
|
|
58
|
+
p: "1rem",
|
|
59
|
+
".MuiCardHeader-action": {
|
|
60
|
+
margin: 0,
|
|
61
|
+
alignSelf: "center"
|
|
62
|
+
},
|
|
63
|
+
alignItems: "center"
|
|
64
|
+
},
|
|
65
|
+
title: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _material.Box, { sx: { display: "flex", alignItems: "center", gap: 0.5 }, children: [
|
|
66
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _ManageSearch2.default, { sx: { color: "#4db3a2", height: "2.5rem" } }),
|
|
67
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
68
|
+
_material.Typography,
|
|
69
|
+
{
|
|
70
|
+
variant: "h5",
|
|
71
|
+
sx: { color: "#4db3a2", fontWeight: "bold" },
|
|
72
|
+
children: title
|
|
73
|
+
}
|
|
74
|
+
)
|
|
75
|
+
] })
|
|
76
|
+
}
|
|
77
|
+
),
|
|
78
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.Divider, {}),
|
|
79
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.CardContent, { sx: { py: 2 }, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.Grid2, { container: true, spacing: 2, children }) })
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
);
|
|
83
|
+
};
|
|
84
|
+
var FilterWrapper_default = FilterWrapper;
|
|
85
|
+
|
|
30
86
|
// src/components/FormWrapper/FormWrapper.tsx
|
|
31
87
|
|
|
32
88
|
|
|
@@ -36,6 +92,7 @@ var FilterButton_default = FilterButton;
|
|
|
36
92
|
|
|
37
93
|
|
|
38
94
|
|
|
95
|
+
|
|
39
96
|
var FormWrapper = ({
|
|
40
97
|
children,
|
|
41
98
|
title,
|
|
@@ -68,7 +125,7 @@ var FormWrapper = ({
|
|
|
68
125
|
}
|
|
69
126
|
),
|
|
70
127
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.Divider, { sx: { mt: 0 } }),
|
|
71
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.CardContent, { children })
|
|
128
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.CardContent, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.Grid2, { container: true, spacing: 2, children }) })
|
|
72
129
|
]
|
|
73
130
|
}
|
|
74
131
|
)
|
|
@@ -142,7 +199,7 @@ var LabelText_default = LabelText;
|
|
|
142
199
|
|
|
143
200
|
|
|
144
201
|
|
|
145
|
-
|
|
202
|
+
|
|
146
203
|
|
|
147
204
|
var ListWrapper = ({ children, title, count }) => {
|
|
148
205
|
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
@@ -233,4 +290,5 @@ var SimpleToolbar_default = SimpleToolbar;
|
|
|
233
290
|
|
|
234
291
|
|
|
235
292
|
|
|
236
|
-
|
|
293
|
+
|
|
294
|
+
exports.ClearButton_default = ClearButton_default; exports.FilterButton_default = FilterButton_default; exports.FilterWrapper_default = FilterWrapper_default; exports.FormWrapper_default = FormWrapper_default; exports.LabelText_default = LabelText_default; exports.ListWrapper_default = ListWrapper_default; exports.SimpleToolbar_default = SimpleToolbar_default;
|
|
@@ -12,6 +12,11 @@ type FilterButtonProps = {
|
|
|
12
12
|
};
|
|
13
13
|
declare const FilterButton: ({ isSubmitting }: FilterButtonProps) => react_jsx_runtime.JSX.Element;
|
|
14
14
|
|
|
15
|
+
type FilterWrapperProps = PropsWithChildren<{
|
|
16
|
+
title: string;
|
|
17
|
+
}>;
|
|
18
|
+
declare const FilterWrapper: ({ children, title }: FilterWrapperProps) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
15
20
|
type FormWrapper = PropsWithChildren<{
|
|
16
21
|
title: string;
|
|
17
22
|
editMode: boolean;
|
|
@@ -34,4 +39,4 @@ declare const ListWrapper: ({ children, title, count }: ListWrapperProps) => rea
|
|
|
34
39
|
|
|
35
40
|
declare const SimpleToolbar: () => react_jsx_runtime.JSX.Element;
|
|
36
41
|
|
|
37
|
-
export { ClearButton, FilterButton, FormWrapper, LabelText, ListWrapper, SimpleToolbar };
|
|
42
|
+
export { ClearButton, FilterButton, FilterWrapper, FormWrapper, LabelText, ListWrapper, SimpleToolbar };
|
|
@@ -12,6 +12,11 @@ type FilterButtonProps = {
|
|
|
12
12
|
};
|
|
13
13
|
declare const FilterButton: ({ isSubmitting }: FilterButtonProps) => react_jsx_runtime.JSX.Element;
|
|
14
14
|
|
|
15
|
+
type FilterWrapperProps = PropsWithChildren<{
|
|
16
|
+
title: string;
|
|
17
|
+
}>;
|
|
18
|
+
declare const FilterWrapper: ({ children, title }: FilterWrapperProps) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
15
20
|
type FormWrapper = PropsWithChildren<{
|
|
16
21
|
title: string;
|
|
17
22
|
editMode: boolean;
|
|
@@ -34,4 +39,4 @@ declare const ListWrapper: ({ children, title, count }: ListWrapperProps) => rea
|
|
|
34
39
|
|
|
35
40
|
declare const SimpleToolbar: () => react_jsx_runtime.JSX.Element;
|
|
36
41
|
|
|
37
|
-
export { ClearButton, FilterButton, FormWrapper, LabelText, ListWrapper, SimpleToolbar };
|
|
42
|
+
export { ClearButton, FilterButton, FilterWrapper, FormWrapper, LabelText, ListWrapper, SimpleToolbar };
|
package/dist/components/index.js
CHANGED
|
@@ -5,12 +5,14 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var _chunkE46YP3KMjs = require('../chunk-E46YP3KM.js');
|
|
9
8
|
|
|
9
|
+
var _chunkDMKDUMBDjs = require('../chunk-DMKDUMBD.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
exports.ClearButton = _chunkDMKDUMBDjs.ClearButton_default; exports.FilterButton = _chunkDMKDUMBDjs.FilterButton_default; exports.FilterWrapper = _chunkDMKDUMBDjs.FilterWrapper_default; exports.FormWrapper = _chunkDMKDUMBDjs.FormWrapper_default; exports.LabelText = _chunkDMKDUMBDjs.LabelText_default; exports.ListWrapper = _chunkDMKDUMBDjs.ListWrapper_default; exports.SimpleToolbar = _chunkDMKDUMBDjs.SimpleToolbar_default;
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ClearButton_default,
|
|
3
3
|
FilterButton_default,
|
|
4
|
+
FilterWrapper_default,
|
|
4
5
|
FormWrapper_default,
|
|
5
6
|
LabelText_default,
|
|
6
7
|
ListWrapper_default,
|
|
7
8
|
SimpleToolbar_default
|
|
8
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-B5ZIFGAN.mjs";
|
|
9
10
|
export {
|
|
10
11
|
ClearButton_default as ClearButton,
|
|
11
12
|
FilterButton_default as FilterButton,
|
|
13
|
+
FilterWrapper_default as FilterWrapper,
|
|
12
14
|
FormWrapper_default as FormWrapper,
|
|
13
15
|
LabelText_default as LabelText,
|
|
14
16
|
ListWrapper_default as ListWrapper,
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ClearButton, FilterButton, FormWrapper, LabelText, ListWrapper, SimpleToolbar } from './components/index.mjs';
|
|
1
|
+
export { ClearButton, FilterButton, FilterWrapper, FormWrapper, LabelText, ListWrapper, SimpleToolbar } from './components/index.mjs';
|
|
2
2
|
export { UseTransformOptions, UseTransformReturn, useTransform } from './hooks/index.mjs';
|
|
3
3
|
export { ApiResponse, AsyncMultiSelectPayload, ListResponse, OptionItem, OptionItem2, PostModel, ValidationErrors, ValueLabel } from './types/index.mjs';
|
|
4
4
|
export { api, flattenObjectKeys, getTimezone, handleServerErrors, propertyExists, readValueAsDate, removeLeadingTrailingSlashes, schemaTools } from './utils/index.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ClearButton, FilterButton, FormWrapper, LabelText, ListWrapper, SimpleToolbar } from './components/index.js';
|
|
1
|
+
export { ClearButton, FilterButton, FilterWrapper, FormWrapper, LabelText, ListWrapper, SimpleToolbar } from './components/index.js';
|
|
2
2
|
export { UseTransformOptions, UseTransformReturn, useTransform } from './hooks/index.js';
|
|
3
3
|
export { ApiResponse, AsyncMultiSelectPayload, ListResponse, OptionItem, OptionItem2, PostModel, ValidationErrors, ValueLabel } from './types/index.js';
|
|
4
4
|
export { api, flattenObjectKeys, getTimezone, handleServerErrors, propertyExists, readValueAsDate, removeLeadingTrailingSlashes, schemaTools } from './utils/index.js';
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
var _chunkDMKDUMBDjs = require('./chunk-DMKDUMBD.js');
|
|
9
10
|
require('./chunk-7M2VOCYN.js');
|
|
10
11
|
require('./chunk-TLJXC46A.js');
|
|
11
12
|
|
|
@@ -41,4 +42,5 @@ var _chunkKTAQRRS7js = require('./chunk-KTAQRRS7.js');
|
|
|
41
42
|
|
|
42
43
|
|
|
43
44
|
|
|
44
|
-
|
|
45
|
+
|
|
46
|
+
exports.ClearButton = _chunkDMKDUMBDjs.ClearButton_default; exports.Field = _chunkIQ2NGFMEjs.Field_default; exports.FilterButton = _chunkDMKDUMBDjs.FilterButton_default; exports.FilterWrapper = _chunkDMKDUMBDjs.FilterWrapper_default; exports.FormWrapper = _chunkDMKDUMBDjs.FormWrapper_default; exports.LabelText = _chunkDMKDUMBDjs.LabelText_default; exports.ListWrapper = _chunkDMKDUMBDjs.ListWrapper_default; exports.SimpleToolbar = _chunkDMKDUMBDjs.SimpleToolbar_default; exports.api = _chunkKTAQRRS7js.api; exports.flattenObjectKeys = _chunkKTAQRRS7js.flattenObjectKeys; exports.getTimezone = _chunkKTAQRRS7js.getTimezone; exports.handleServerErrors = _chunkKTAQRRS7js.handleServerErrors; exports.propertyExists = _chunkKTAQRRS7js.propertyExists; exports.readValueAsDate = _chunkKTAQRRS7js.readValueAsDate; exports.removeLeadingTrailingSlashes = _chunkKTAQRRS7js.removeLeadingTrailingSlashes; exports.schemaTools = _chunkKTAQRRS7js.schemaTools; exports.useTransform = _chunk6JZ35VQJjs.useTransform;
|
package/dist/index.mjs
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ClearButton_default,
|
|
3
3
|
FilterButton_default,
|
|
4
|
+
FilterWrapper_default,
|
|
4
5
|
FormWrapper_default,
|
|
5
6
|
LabelText_default,
|
|
6
7
|
ListWrapper_default,
|
|
7
8
|
SimpleToolbar_default
|
|
8
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-B5ZIFGAN.mjs";
|
|
9
10
|
import "./chunk-2JFL7TS5.mjs";
|
|
10
11
|
import "./chunk-5VR5QVUV.mjs";
|
|
11
12
|
import {
|
|
@@ -28,6 +29,7 @@ export {
|
|
|
28
29
|
ClearButton_default as ClearButton,
|
|
29
30
|
Field_default as Field,
|
|
30
31
|
FilterButton_default as FilterButton,
|
|
32
|
+
FilterWrapper_default as FilterWrapper,
|
|
31
33
|
FormWrapper_default as FormWrapper,
|
|
32
34
|
LabelText_default as LabelText,
|
|
33
35
|
ListWrapper_default as ListWrapper,
|