@ctlyst.id/internal-ui 2.1.11-canary.2 → 2.1.11
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.mts +8 -6
- package/dist/index.d.ts +8 -6
- package/dist/index.js +908 -2261
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +433 -1795
- package/dist/index.mjs.map +1 -1
- package/package.json +31 -28
package/dist/index.mjs
CHANGED
@@ -5,359 +5,8 @@ var __export = (target, all) => {
|
|
5
5
|
__defProp(target, name, { get: all[name], enumerable: true });
|
6
6
|
};
|
7
7
|
|
8
|
-
// ../../node_modules/@chakra-ui/descendant/dist/chunk-N7WDF4QK.mjs
|
9
|
-
import { useEffect, useLayoutEffect } from "react";
|
10
|
-
var __defProp2 = Object.defineProperty;
|
11
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
12
|
-
var __publicField = (obj, key, value) => {
|
13
|
-
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
14
|
-
return value;
|
15
|
-
};
|
16
|
-
function sortNodes(nodes) {
|
17
|
-
return nodes.sort((a, b) => {
|
18
|
-
const compare = a.compareDocumentPosition(b);
|
19
|
-
if (compare & Node.DOCUMENT_POSITION_FOLLOWING || compare & Node.DOCUMENT_POSITION_CONTAINED_BY) {
|
20
|
-
return -1;
|
21
|
-
}
|
22
|
-
if (compare & Node.DOCUMENT_POSITION_PRECEDING || compare & Node.DOCUMENT_POSITION_CONTAINS) {
|
23
|
-
return 1;
|
24
|
-
}
|
25
|
-
if (compare & Node.DOCUMENT_POSITION_DISCONNECTED || compare & Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC) {
|
26
|
-
throw Error("Cannot sort the given nodes.");
|
27
|
-
} else {
|
28
|
-
return 0;
|
29
|
-
}
|
30
|
-
});
|
31
|
-
}
|
32
|
-
var isElement = (el) => typeof el == "object" && "nodeType" in el && el.nodeType === Node.ELEMENT_NODE;
|
33
|
-
function getNextIndex(current, max, loop) {
|
34
|
-
let next = current + 1;
|
35
|
-
if (loop && next >= max)
|
36
|
-
next = 0;
|
37
|
-
return next;
|
38
|
-
}
|
39
|
-
function getPrevIndex(current, max, loop) {
|
40
|
-
let next = current - 1;
|
41
|
-
if (loop && next < 0)
|
42
|
-
next = max;
|
43
|
-
return next;
|
44
|
-
}
|
45
|
-
var useSafeLayoutEffect = typeof window !== "undefined" ? useLayoutEffect : useEffect;
|
46
|
-
var cast = (value) => value;
|
47
|
-
|
48
|
-
// ../../node_modules/@chakra-ui/descendant/dist/chunk-P6SLLHUK.mjs
|
49
|
-
var DescendantsManager = class {
|
50
|
-
constructor() {
|
51
|
-
__publicField(this, "descendants", /* @__PURE__ */ new Map());
|
52
|
-
__publicField(this, "register", (nodeOrOptions) => {
|
53
|
-
if (nodeOrOptions == null)
|
54
|
-
return;
|
55
|
-
if (isElement(nodeOrOptions)) {
|
56
|
-
return this.registerNode(nodeOrOptions);
|
57
|
-
}
|
58
|
-
return (node) => {
|
59
|
-
this.registerNode(node, nodeOrOptions);
|
60
|
-
};
|
61
|
-
});
|
62
|
-
__publicField(this, "unregister", (node) => {
|
63
|
-
this.descendants.delete(node);
|
64
|
-
const sorted = sortNodes(Array.from(this.descendants.keys()));
|
65
|
-
this.assignIndex(sorted);
|
66
|
-
});
|
67
|
-
__publicField(this, "destroy", () => {
|
68
|
-
this.descendants.clear();
|
69
|
-
});
|
70
|
-
__publicField(this, "assignIndex", (descendants) => {
|
71
|
-
this.descendants.forEach((descendant) => {
|
72
|
-
const index = descendants.indexOf(descendant.node);
|
73
|
-
descendant.index = index;
|
74
|
-
descendant.node.dataset["index"] = descendant.index.toString();
|
75
|
-
});
|
76
|
-
});
|
77
|
-
__publicField(this, "count", () => this.descendants.size);
|
78
|
-
__publicField(this, "enabledCount", () => this.enabledValues().length);
|
79
|
-
__publicField(this, "values", () => {
|
80
|
-
const values = Array.from(this.descendants.values());
|
81
|
-
return values.sort((a, b) => a.index - b.index);
|
82
|
-
});
|
83
|
-
__publicField(this, "enabledValues", () => {
|
84
|
-
return this.values().filter((descendant) => !descendant.disabled);
|
85
|
-
});
|
86
|
-
__publicField(this, "item", (index) => {
|
87
|
-
if (this.count() === 0)
|
88
|
-
return void 0;
|
89
|
-
return this.values()[index];
|
90
|
-
});
|
91
|
-
__publicField(this, "enabledItem", (index) => {
|
92
|
-
if (this.enabledCount() === 0)
|
93
|
-
return void 0;
|
94
|
-
return this.enabledValues()[index];
|
95
|
-
});
|
96
|
-
__publicField(this, "first", () => this.item(0));
|
97
|
-
__publicField(this, "firstEnabled", () => this.enabledItem(0));
|
98
|
-
__publicField(this, "last", () => this.item(this.descendants.size - 1));
|
99
|
-
__publicField(this, "lastEnabled", () => {
|
100
|
-
const lastIndex = this.enabledValues().length - 1;
|
101
|
-
return this.enabledItem(lastIndex);
|
102
|
-
});
|
103
|
-
__publicField(this, "indexOf", (node) => {
|
104
|
-
var _a, _b;
|
105
|
-
if (!node)
|
106
|
-
return -1;
|
107
|
-
return (_b = (_a = this.descendants.get(node)) == null ? void 0 : _a.index) != null ? _b : -1;
|
108
|
-
});
|
109
|
-
__publicField(this, "enabledIndexOf", (node) => {
|
110
|
-
if (node == null)
|
111
|
-
return -1;
|
112
|
-
return this.enabledValues().findIndex((i) => i.node.isSameNode(node));
|
113
|
-
});
|
114
|
-
__publicField(this, "next", (index, loop = true) => {
|
115
|
-
const next = getNextIndex(index, this.count(), loop);
|
116
|
-
return this.item(next);
|
117
|
-
});
|
118
|
-
__publicField(this, "nextEnabled", (index, loop = true) => {
|
119
|
-
const item = this.item(index);
|
120
|
-
if (!item)
|
121
|
-
return;
|
122
|
-
const enabledIndex = this.enabledIndexOf(item.node);
|
123
|
-
const nextEnabledIndex = getNextIndex(
|
124
|
-
enabledIndex,
|
125
|
-
this.enabledCount(),
|
126
|
-
loop
|
127
|
-
);
|
128
|
-
return this.enabledItem(nextEnabledIndex);
|
129
|
-
});
|
130
|
-
__publicField(this, "prev", (index, loop = true) => {
|
131
|
-
const prev = getPrevIndex(index, this.count() - 1, loop);
|
132
|
-
return this.item(prev);
|
133
|
-
});
|
134
|
-
__publicField(this, "prevEnabled", (index, loop = true) => {
|
135
|
-
const item = this.item(index);
|
136
|
-
if (!item)
|
137
|
-
return;
|
138
|
-
const enabledIndex = this.enabledIndexOf(item.node);
|
139
|
-
const prevEnabledIndex = getPrevIndex(
|
140
|
-
enabledIndex,
|
141
|
-
this.enabledCount() - 1,
|
142
|
-
loop
|
143
|
-
);
|
144
|
-
return this.enabledItem(prevEnabledIndex);
|
145
|
-
});
|
146
|
-
__publicField(this, "registerNode", (node, options) => {
|
147
|
-
if (!node || this.descendants.has(node))
|
148
|
-
return;
|
149
|
-
const keys = Array.from(this.descendants.keys()).concat(node);
|
150
|
-
const sorted = sortNodes(keys);
|
151
|
-
if (options == null ? void 0 : options.disabled) {
|
152
|
-
options.disabled = !!options.disabled;
|
153
|
-
}
|
154
|
-
const descendant = { node, index: -1, ...options };
|
155
|
-
this.descendants.set(node, descendant);
|
156
|
-
this.assignIndex(sorted);
|
157
|
-
});
|
158
|
-
}
|
159
|
-
};
|
160
|
-
|
161
|
-
// ../../node_modules/@chakra-ui/react-context/dist/index.mjs
|
162
|
-
import {
|
163
|
-
createContext as createReactContext,
|
164
|
-
useContext as useReactContext
|
165
|
-
} from "react";
|
166
|
-
function getErrorMessage(hook, provider) {
|
167
|
-
return `${hook} returned \`undefined\`. Seems you forgot to wrap component within ${provider}`;
|
168
|
-
}
|
169
|
-
function createContext(options = {}) {
|
170
|
-
const {
|
171
|
-
name,
|
172
|
-
strict = true,
|
173
|
-
hookName = "useContext",
|
174
|
-
providerName = "Provider",
|
175
|
-
errorMessage,
|
176
|
-
defaultValue
|
177
|
-
} = options;
|
178
|
-
const Context = createReactContext(defaultValue);
|
179
|
-
Context.displayName = name;
|
180
|
-
function useContext2() {
|
181
|
-
var _a;
|
182
|
-
const context = useReactContext(Context);
|
183
|
-
if (!context && strict) {
|
184
|
-
const error = new Error(
|
185
|
-
errorMessage != null ? errorMessage : getErrorMessage(hookName, providerName)
|
186
|
-
);
|
187
|
-
error.name = "ContextError";
|
188
|
-
(_a = Error.captureStackTrace) == null ? void 0 : _a.call(Error, error, useContext2);
|
189
|
-
throw error;
|
190
|
-
}
|
191
|
-
return context;
|
192
|
-
}
|
193
|
-
return [Context.Provider, useContext2, Context];
|
194
|
-
}
|
195
|
-
|
196
|
-
// ../../node_modules/@chakra-ui/react-use-merge-refs/dist/index.mjs
|
197
|
-
import { useMemo } from "react";
|
198
|
-
function assignRef(ref, value) {
|
199
|
-
if (ref == null)
|
200
|
-
return;
|
201
|
-
if (typeof ref === "function") {
|
202
|
-
ref(value);
|
203
|
-
return;
|
204
|
-
}
|
205
|
-
try {
|
206
|
-
ref.current = value;
|
207
|
-
} catch (error) {
|
208
|
-
throw new Error(`Cannot assign value '${value}' to ref '${ref}'`);
|
209
|
-
}
|
210
|
-
}
|
211
|
-
function mergeRefs(...refs) {
|
212
|
-
return (node) => {
|
213
|
-
refs.forEach((ref) => {
|
214
|
-
assignRef(ref, node);
|
215
|
-
});
|
216
|
-
};
|
217
|
-
}
|
218
|
-
|
219
|
-
// ../../node_modules/@chakra-ui/descendant/dist/chunk-D5UZ3RNN.mjs
|
220
|
-
import { useRef, useState } from "react";
|
221
|
-
function useDescendants() {
|
222
|
-
const descendants = useRef(new DescendantsManager());
|
223
|
-
useSafeLayoutEffect(() => {
|
224
|
-
return () => descendants.current.destroy();
|
225
|
-
});
|
226
|
-
return descendants.current;
|
227
|
-
}
|
228
|
-
var [DescendantsContextProvider, useDescendantsContext] = createContext({
|
229
|
-
name: "DescendantsProvider",
|
230
|
-
errorMessage: "useDescendantsContext must be used within DescendantsProvider"
|
231
|
-
});
|
232
|
-
function useDescendant(options) {
|
233
|
-
const descendants = useDescendantsContext();
|
234
|
-
const [index, setIndex] = useState(-1);
|
235
|
-
const ref = useRef(null);
|
236
|
-
useSafeLayoutEffect(() => {
|
237
|
-
return () => {
|
238
|
-
if (!ref.current)
|
239
|
-
return;
|
240
|
-
descendants.unregister(ref.current);
|
241
|
-
};
|
242
|
-
}, []);
|
243
|
-
useSafeLayoutEffect(() => {
|
244
|
-
if (!ref.current)
|
245
|
-
return;
|
246
|
-
const dataIndex = Number(ref.current.dataset["index"]);
|
247
|
-
if (index != dataIndex && !Number.isNaN(dataIndex)) {
|
248
|
-
setIndex(dataIndex);
|
249
|
-
}
|
250
|
-
});
|
251
|
-
const refCallback = options ? cast(descendants.register(options)) : cast(descendants.register);
|
252
|
-
return {
|
253
|
-
descendants,
|
254
|
-
index,
|
255
|
-
enabledIndex: descendants.enabledIndexOf(ref.current),
|
256
|
-
register: mergeRefs(refCallback, ref)
|
257
|
-
};
|
258
|
-
}
|
259
|
-
function createDescendantContext() {
|
260
|
-
const ContextProvider = cast(DescendantsContextProvider);
|
261
|
-
const _useDescendantsContext = () => cast(useDescendantsContext());
|
262
|
-
const _useDescendant = (options) => useDescendant(options);
|
263
|
-
const _useDescendants = () => useDescendants();
|
264
|
-
return [
|
265
|
-
ContextProvider,
|
266
|
-
_useDescendantsContext,
|
267
|
-
_useDescendants,
|
268
|
-
_useDescendant
|
269
|
-
];
|
270
|
-
}
|
271
|
-
|
272
|
-
// ../../node_modules/@chakra-ui/accordion/dist/chunk-JST25EWU.mjs
|
273
|
-
var [AccordionStylesProvider, useAccordionStyles] = createContext({
|
274
|
-
name: "AccordionStylesContext",
|
275
|
-
hookName: "useAccordionStyles",
|
276
|
-
providerName: "<Accordion />"
|
277
|
-
});
|
278
|
-
var [AccordionItemProvider, useAccordionItemContext] = createContext({
|
279
|
-
name: "AccordionItemContext",
|
280
|
-
hookName: "useAccordionItemContext",
|
281
|
-
providerName: "<AccordionItem />"
|
282
|
-
});
|
283
|
-
var [
|
284
|
-
AccordionDescendantsProvider,
|
285
|
-
useAccordionDescendantsContext,
|
286
|
-
useAccordionDescendants,
|
287
|
-
useAccordionDescendant
|
288
|
-
] = createDescendantContext();
|
289
|
-
|
290
|
-
// ../../node_modules/@chakra-ui/shared-utils/dist/index.mjs
|
291
|
-
var cx = (...classNames) => classNames.filter(Boolean).join(" ");
|
292
|
-
function isObject(value) {
|
293
|
-
const type = typeof value;
|
294
|
-
return value != null && (type === "object" || type === "function") && !Array.isArray(value);
|
295
|
-
}
|
296
|
-
var dataAttr = (condition) => condition ? "" : void 0;
|
297
|
-
var ariaAttr = (condition) => condition ? true : void 0;
|
298
|
-
function callAllHandlers(...fns) {
|
299
|
-
return function func(event) {
|
300
|
-
fns.some((fn) => {
|
301
|
-
fn == null ? void 0 : fn(event);
|
302
|
-
return event == null ? void 0 : event.defaultPrevented;
|
303
|
-
});
|
304
|
-
};
|
305
|
-
}
|
306
|
-
|
307
|
-
// ../../node_modules/@chakra-ui/react-use-controllable-state/dist/index.mjs
|
308
|
-
import { useMemo as useMemo2, useState as useState2 } from "react";
|
309
|
-
|
310
|
-
// ../../node_modules/@chakra-ui/react-use-callback-ref/dist/index.mjs
|
311
|
-
import { useCallback, useEffect as useEffect2, useRef as useRef2 } from "react";
|
312
|
-
function useCallbackRef(callback, deps = []) {
|
313
|
-
const callbackRef = useRef2(callback);
|
314
|
-
useEffect2(() => {
|
315
|
-
callbackRef.current = callback;
|
316
|
-
});
|
317
|
-
return useCallback((...args) => {
|
318
|
-
var _a;
|
319
|
-
return (_a = callbackRef.current) == null ? void 0 : _a.call(callbackRef, ...args);
|
320
|
-
}, deps);
|
321
|
-
}
|
322
|
-
|
323
|
-
// ../../node_modules/@chakra-ui/react-use-controllable-state/dist/index.mjs
|
324
|
-
function useControllableState(props) {
|
325
|
-
const {
|
326
|
-
value: valueProp,
|
327
|
-
defaultValue,
|
328
|
-
onChange,
|
329
|
-
shouldUpdate = (prev, next) => prev !== next
|
330
|
-
} = props;
|
331
|
-
const onChangeProp = useCallbackRef(onChange);
|
332
|
-
const shouldUpdateProp = useCallbackRef(shouldUpdate);
|
333
|
-
const [uncontrolledState, setUncontrolledState] = useState2(defaultValue);
|
334
|
-
const controlled = valueProp !== void 0;
|
335
|
-
const value = controlled ? valueProp : uncontrolledState;
|
336
|
-
const setValue = useCallbackRef(
|
337
|
-
(next) => {
|
338
|
-
const setter = next;
|
339
|
-
const nextValue = typeof next === "function" ? setter(value) : next;
|
340
|
-
if (!shouldUpdateProp(value, nextValue)) {
|
341
|
-
return;
|
342
|
-
}
|
343
|
-
if (!controlled) {
|
344
|
-
setUncontrolledState(nextValue);
|
345
|
-
}
|
346
|
-
onChangeProp(nextValue);
|
347
|
-
},
|
348
|
-
[controlled, onChangeProp, value, shouldUpdateProp]
|
349
|
-
);
|
350
|
-
return [value, setValue];
|
351
|
-
}
|
352
|
-
|
353
|
-
// ../../node_modules/@chakra-ui/accordion/dist/chunk-UN5JZMTF.mjs
|
354
|
-
function useAccordionItemState() {
|
355
|
-
const { isOpen, isDisabled, onClose, onOpen } = useAccordionItemContext();
|
356
|
-
return { isOpen, onClose, isDisabled, onOpen };
|
357
|
-
}
|
358
|
-
|
359
8
|
// src/components/accordion/components/accordion-indicator.tsx
|
360
|
-
import { Box } from "@chakra-ui/react";
|
9
|
+
import { Box, useAccordionItemState } from "@chakra-ui/react";
|
361
10
|
import { jsx } from "react/jsx-runtime";
|
362
11
|
var AccordionIndicator = () => {
|
363
12
|
const { isOpen } = useAccordionItemState();
|
@@ -388,12 +37,16 @@ import {
|
|
388
37
|
useAccordionItemState as useAccordionItemState2,
|
389
38
|
UseAccordionProps,
|
390
39
|
UseAccordionReturn,
|
391
|
-
useAccordionStyles
|
40
|
+
useAccordionStyles
|
392
41
|
} from "@chakra-ui/react";
|
393
42
|
|
394
43
|
// src/components/alert/components/alert.tsx
|
44
|
+
import { cx } from "@chakra-ui/shared-utils";
|
395
45
|
import { chakra, forwardRef, omitThemingProps, useMultiStyleConfig } from "@chakra-ui/system";
|
396
46
|
|
47
|
+
// src/components/alert/components/alert-context.ts
|
48
|
+
import { createContext } from "@chakra-ui/react-context";
|
49
|
+
|
397
50
|
// src/components/alert/components/icons.tsx
|
398
51
|
import { AlertTriangle, CheckCircle, Info } from "@ctlyst.id/internal-icon";
|
399
52
|
import { jsx as jsx2 } from "react/jsx-runtime";
|
@@ -464,7 +117,7 @@ var Alert = forwardRef(function Alert2(props, ref) {
|
|
464
117
|
Alert.displayName = "Alert";
|
465
118
|
|
466
119
|
// src/components/alert/components/alert-action.tsx
|
467
|
-
import { cx as cx2 } from "@chakra-ui/utils";
|
120
|
+
import { cx as cx2 } from "@chakra-ui/shared-utils";
|
468
121
|
|
469
122
|
// src/components/button/components/button.tsx
|
470
123
|
import { Button as ButtonChakra, forwardRef as forwardRef3 } from "@chakra-ui/react";
|
@@ -532,6 +185,7 @@ function AlertAction({ children, className }) {
|
|
532
185
|
AlertAction.displayName = "AlertAction";
|
533
186
|
|
534
187
|
// src/components/alert/components/alert-close.tsx
|
188
|
+
import { cx as cx3 } from "@chakra-ui/shared-utils";
|
535
189
|
import { chakra as chakra2 } from "@chakra-ui/system";
|
536
190
|
import { Close } from "@ctlyst.id/internal-icon";
|
537
191
|
import { jsx as jsx7 } from "react/jsx-runtime";
|
@@ -544,7 +198,7 @@ function AlertClose({ className, children, ...rest }) {
|
|
544
198
|
display: "inherit",
|
545
199
|
"data-status": "alert-close",
|
546
200
|
...rest,
|
547
|
-
className:
|
201
|
+
className: cx3("chakra-alert__close", className),
|
548
202
|
__css: css4,
|
549
203
|
children: children || /* @__PURE__ */ jsx7(Close, { color: "inherit", size: 4 })
|
550
204
|
}
|
@@ -553,6 +207,7 @@ function AlertClose({ className, children, ...rest }) {
|
|
553
207
|
AlertClose.displayName = "AlertClose";
|
554
208
|
|
555
209
|
// src/components/alert/components/alert-description.tsx
|
210
|
+
import { cx as cx4 } from "@chakra-ui/shared-utils";
|
556
211
|
import { chakra as chakra3, forwardRef as forwardRef4 } from "@chakra-ui/system";
|
557
212
|
import { jsx as jsx8 } from "react/jsx-runtime";
|
558
213
|
var AlertDescription = forwardRef4(function AlertDescription2(props, ref) {
|
@@ -568,7 +223,7 @@ var AlertDescription = forwardRef4(function AlertDescription2(props, ref) {
|
|
568
223
|
ref,
|
569
224
|
"data-status": status,
|
570
225
|
...props,
|
571
|
-
className:
|
226
|
+
className: cx4("chakra-alert__desc", props.className),
|
572
227
|
__css: descriptionStyles
|
573
228
|
}
|
574
229
|
);
|
@@ -576,6 +231,7 @@ var AlertDescription = forwardRef4(function AlertDescription2(props, ref) {
|
|
576
231
|
AlertDescription.displayName = "AlertDescription";
|
577
232
|
|
578
233
|
// src/components/alert/components/alert-icon.tsx
|
234
|
+
import { cx as cx5 } from "@chakra-ui/shared-utils";
|
579
235
|
import { chakra as chakra4 } from "@chakra-ui/system";
|
580
236
|
import { jsx as jsx9 } from "react/jsx-runtime";
|
581
237
|
function AlertIcon({ className, children, ...rest }) {
|
@@ -589,7 +245,7 @@ function AlertIcon({ className, children, ...rest }) {
|
|
589
245
|
display: "inherit",
|
590
246
|
"data-status": status,
|
591
247
|
...rest,
|
592
|
-
className:
|
248
|
+
className: cx5("chakra-alert__icon", className),
|
593
249
|
__css: css4,
|
594
250
|
children: children || /* @__PURE__ */ jsx9(BaseIcon, {})
|
595
251
|
}
|
@@ -598,6 +254,7 @@ function AlertIcon({ className, children, ...rest }) {
|
|
598
254
|
AlertIcon.displayName = "AlertIcon";
|
599
255
|
|
600
256
|
// src/components/alert/components/alert-title.tsx
|
257
|
+
import { cx as cx6 } from "@chakra-ui/shared-utils";
|
601
258
|
import { chakra as chakra5, forwardRef as forwardRef5 } from "@chakra-ui/system";
|
602
259
|
import { jsx as jsx10 } from "react/jsx-runtime";
|
603
260
|
var AlertTitle = forwardRef5(function AlertTitle2(props, ref) {
|
@@ -609,39 +266,16 @@ var AlertTitle = forwardRef5(function AlertTitle2(props, ref) {
|
|
609
266
|
ref,
|
610
267
|
"data-status": status,
|
611
268
|
...props,
|
612
|
-
className:
|
269
|
+
className: cx6("chakra-alert__title", props.className),
|
613
270
|
__css: styles.title
|
614
271
|
}
|
615
272
|
);
|
616
273
|
});
|
617
274
|
AlertTitle.displayName = "AlertTitle";
|
618
275
|
|
619
|
-
// ../../node_modules/@chakra-ui/layout/dist/chunk-YTV6DHKL.mjs
|
620
|
-
import {
|
621
|
-
chakra as chakra6,
|
622
|
-
forwardRef as forwardRef6,
|
623
|
-
omitThemingProps as omitThemingProps2,
|
624
|
-
useStyleConfig as useStyleConfig2
|
625
|
-
} from "@chakra-ui/system";
|
626
|
-
import { jsx as jsx11 } from "react/jsx-runtime";
|
627
|
-
var Link = forwardRef6(function Link2(props, ref) {
|
628
|
-
const styles = useStyleConfig2("Link", props);
|
629
|
-
const { className, isExternal, ...rest } = omitThemingProps2(props);
|
630
|
-
return /* @__PURE__ */ jsx11(
|
631
|
-
chakra6.a,
|
632
|
-
{
|
633
|
-
target: isExternal ? "_blank" : void 0,
|
634
|
-
rel: isExternal ? "noopener" : void 0,
|
635
|
-
ref,
|
636
|
-
className: cx("chakra-link", className),
|
637
|
-
...rest,
|
638
|
-
__css: styles
|
639
|
-
}
|
640
|
-
);
|
641
|
-
});
|
642
|
-
Link.displayName = "Link";
|
643
|
-
|
644
276
|
// src/components/anchor/components/anchor.tsx
|
277
|
+
import { Link } from "@chakra-ui/react";
|
278
|
+
import { cx as cx7 } from "@chakra-ui/shared-utils";
|
645
279
|
import { jsxs } from "react/jsx-runtime";
|
646
280
|
var Anchor = ({ children, leftIcon, rightIcon, isActive, isChild, ...props }) => {
|
647
281
|
return /* @__PURE__ */ jsxs(
|
@@ -655,7 +289,7 @@ var Anchor = ({ children, leftIcon, rightIcon, isActive, isChild, ...props }) =>
|
|
655
289
|
borderLeftColor: isActive ? "primary.500" : "neutral.400",
|
656
290
|
color: isActive ? "primary.500" : "black.high",
|
657
291
|
bg: isActive ? "neutral.100" : "white",
|
658
|
-
className:
|
292
|
+
className: cx7("catalyst-anchor", props.className),
|
659
293
|
_hover: {
|
660
294
|
textDecoration: "none"
|
661
295
|
},
|
@@ -678,10 +312,10 @@ Anchor.defaultProps = {
|
|
678
312
|
|
679
313
|
// src/components/badge/components/badge.tsx
|
680
314
|
import { Badge as BadgeChakra } from "@chakra-ui/react";
|
681
|
-
import { jsx as
|
315
|
+
import { jsx as jsx11 } from "react/jsx-runtime";
|
682
316
|
var Badge = (props) => {
|
683
317
|
const { children, pill, ...rest } = props;
|
684
|
-
return /* @__PURE__ */
|
318
|
+
return /* @__PURE__ */ jsx11(
|
685
319
|
BadgeChakra,
|
686
320
|
{
|
687
321
|
borderRadius: pill ? "xl" : "sm",
|
@@ -714,7 +348,7 @@ import {
|
|
714
348
|
} from "@chakra-ui/react";
|
715
349
|
|
716
350
|
// src/components/breadcrumb/components/bread-crumb.tsx
|
717
|
-
import { jsx as
|
351
|
+
import { jsx as jsx12, jsxs as jsxs2 } from "react/jsx-runtime";
|
718
352
|
var BreadCrumb = (props) => {
|
719
353
|
const { title, children, parents, className, disableHome, spacing: spacing2 = 2, backButton } = props;
|
720
354
|
const [neutral600, primary500] = useToken("colors", ["neutral.600", "primary.500"]);
|
@@ -729,13 +363,13 @@ var BreadCrumb = (props) => {
|
|
729
363
|
paddingY: 2,
|
730
364
|
children: [
|
731
365
|
/* @__PURE__ */ jsxs2(Box3, { display: "flex", alignItems: "center", children: [
|
732
|
-
backButton && /* @__PURE__ */
|
733
|
-
/* @__PURE__ */
|
734
|
-
/* @__PURE__ */
|
366
|
+
backButton && /* @__PURE__ */ jsx12(button_default, { variant: "icon", "data-test-id": "button", size: "md", mr: "2", onClick: backButton, children: /* @__PURE__ */ jsx12(FiChevronLeft, { size: theme.sizes[5] }) }),
|
367
|
+
/* @__PURE__ */ jsx12(Text, { pr: "2", textStyle: "heading.6", color: "neutral.700", children: title }),
|
368
|
+
/* @__PURE__ */ jsx12(Box3, { h: "5.5", borderLeft: "1px solid", borderColor: neutral600 }),
|
735
369
|
/* @__PURE__ */ jsxs2(
|
736
370
|
Breadcrumb,
|
737
371
|
{
|
738
|
-
separator: /* @__PURE__ */
|
372
|
+
separator: /* @__PURE__ */ jsx12(FiChevronsRight, { color: neutral600, size: theme.sizes["3.5"] }),
|
739
373
|
pl: "2",
|
740
374
|
pr: "4",
|
741
375
|
spacing: spacing2,
|
@@ -744,8 +378,8 @@ var BreadCrumb = (props) => {
|
|
744
378
|
alignItems: "center",
|
745
379
|
className: "breadcrumb-wrapper",
|
746
380
|
children: [
|
747
|
-
/* @__PURE__ */
|
748
|
-
parents == null ? void 0 : parents.map((val) => /* @__PURE__ */
|
381
|
+
/* @__PURE__ */ jsx12(BreadcrumbItem, { children: /* @__PURE__ */ jsx12(BreadcrumbLink, { href: !disableHome ? "/" : void 0, style: { ...disableHome && { cursor: "default" } }, children: /* @__PURE__ */ jsx12(FiHome, { className: "align-top", size: theme.sizes["3.5"], color: primary500 }) }) }),
|
382
|
+
parents == null ? void 0 : parents.map((val) => /* @__PURE__ */ jsx12(BreadcrumbItem, { children: /* @__PURE__ */ jsx12(
|
749
383
|
BreadcrumbLink,
|
750
384
|
{
|
751
385
|
"data-test-id": "iadKcMAul3QAdvmfIQjRE",
|
@@ -757,15 +391,15 @@ var BreadCrumb = (props) => {
|
|
757
391
|
}
|
758
392
|
},
|
759
393
|
_hover: { textDecoration: "none" },
|
760
|
-
children: /* @__PURE__ */
|
394
|
+
children: /* @__PURE__ */ jsx12(Text, { color: val.disable ? neutral600 : primary500, textStyle: "text.sm", children: val.name })
|
761
395
|
}
|
762
396
|
) }, val.name)),
|
763
|
-
/* @__PURE__ */
|
397
|
+
/* @__PURE__ */ jsx12(BreadcrumbItem, { children: /* @__PURE__ */ jsx12(BreadcrumbLink, { _hover: { textDecor: "none", cursor: "default" }, children: /* @__PURE__ */ jsx12(Text, { color: "neutral.600", textStyle: "text.sm", children: title }) }) })
|
764
398
|
]
|
765
399
|
}
|
766
400
|
)
|
767
401
|
] }),
|
768
|
-
children && /* @__PURE__ */
|
402
|
+
children && /* @__PURE__ */ jsx12(Box3, { children })
|
769
403
|
]
|
770
404
|
}
|
771
405
|
);
|
@@ -781,12 +415,12 @@ BreadCrumb.defaultProps = {
|
|
781
415
|
var bread_crumb_default = BreadCrumb;
|
782
416
|
|
783
417
|
// src/components/card/components/card.tsx
|
784
|
-
import { Card, useStyleConfig as
|
785
|
-
import { forwardRef as
|
786
|
-
import { jsx as
|
787
|
-
var CardCustom =
|
788
|
-
const styles =
|
789
|
-
return /* @__PURE__ */
|
418
|
+
import { Card, useStyleConfig as useStyleConfig2 } from "@chakra-ui/react";
|
419
|
+
import { forwardRef as forwardRef6 } from "react";
|
420
|
+
import { jsx as jsx13 } from "react/jsx-runtime";
|
421
|
+
var CardCustom = forwardRef6(({ children, ...rest }, ref) => {
|
422
|
+
const styles = useStyleConfig2("Card", rest);
|
423
|
+
return /* @__PURE__ */ jsx13(Card, { __css: styles, backgroundColor: "white.high", ref, ...rest, children });
|
790
424
|
});
|
791
425
|
CardCustom.defaultProps = {
|
792
426
|
withShadow: true,
|
@@ -795,14 +429,14 @@ CardCustom.defaultProps = {
|
|
795
429
|
var card_default = CardCustom;
|
796
430
|
|
797
431
|
// src/components/checkbox/components/checkbox.tsx
|
798
|
-
import { Box as Box4, Checkbox, forwardRef as
|
799
|
-
import { jsx as
|
800
|
-
var CheckboxComponent =
|
432
|
+
import { Box as Box4, Checkbox, forwardRef as forwardRef7, Text as Text2 } from "@chakra-ui/react";
|
433
|
+
import { jsx as jsx14, jsxs as jsxs3 } from "react/jsx-runtime";
|
434
|
+
var CheckboxComponent = forwardRef7(
|
801
435
|
({ isError = false, helpText = "", errorText = "", boxProps, children, isDisabled, ...rest }, ref) => {
|
802
436
|
const variant = isError ? "errors" : "unstyled";
|
803
437
|
return /* @__PURE__ */ jsxs3(Box4, { ...boxProps, children: [
|
804
|
-
/* @__PURE__ */
|
805
|
-
(isError || helpText) && /* @__PURE__ */
|
438
|
+
/* @__PURE__ */ jsx14(Box4, { display: "flex", children: /* @__PURE__ */ jsx14(Checkbox, { variant, ref, ...rest, isDisabled, children: children && /* @__PURE__ */ jsx14(Text2, { as: "span", display: "block", textStyle: "text.sm", color: isDisabled ? "black.medium" : "black.high", children }) }) }),
|
439
|
+
(isError || helpText) && /* @__PURE__ */ jsx14(Box4, { mt: "5px", ml: "24px", children: isError ? /* @__PURE__ */ jsx14(Text2, { as: "span", display: "block", textStyle: "text.xs", color: "danger.500", children: errorText }) : /* @__PURE__ */ jsx14(Text2, { as: "span", display: "block", textStyle: "text.xs", color: "black.medium", children: helpText }) })
|
806
440
|
] });
|
807
441
|
}
|
808
442
|
);
|
@@ -819,7 +453,7 @@ import { Box as Box6, CheckboxGroup, Stack } from "@chakra-ui/react";
|
|
819
453
|
|
820
454
|
// src/components/field/components/field.tsx
|
821
455
|
import { Box as Box5, FormControl, FormErrorMessage, FormHelperText, FormLabel } from "@chakra-ui/react";
|
822
|
-
import { jsx as
|
456
|
+
import { jsx as jsx15, jsxs as jsxs4 } from "react/jsx-runtime";
|
823
457
|
var Field = (props) => {
|
824
458
|
const {
|
825
459
|
label,
|
@@ -845,13 +479,13 @@ var Field = (props) => {
|
|
845
479
|
const justifyHelper = getJustifyContentHelper();
|
846
480
|
return /* @__PURE__ */ jsxs4(FormControl, { isInvalid: isError, ...boxProps, children: [
|
847
481
|
label && (typeof label === "string" ? /* @__PURE__ */ jsxs4(FormLabel, { mb: 1, fontSize: "text.sm", requiredIndicator: void 0, children: [
|
848
|
-
isRequired && /* @__PURE__ */
|
482
|
+
isRequired && /* @__PURE__ */ jsx15(Box5, { as: "span", color: "danger.500", ml: 0, mr: 1, children: "*" }),
|
849
483
|
label
|
850
484
|
] }) : label),
|
851
485
|
children,
|
852
486
|
(isError && errorMessage || leftHelperText || rightHelperText) && /* @__PURE__ */ jsxs4(Box5, { display: "flex", width: "full", justifyContent: justifyHelper, children: [
|
853
|
-
!isError ? leftHelperText && (typeof leftHelperText === "string" ? /* @__PURE__ */
|
854
|
-
rightHelperText && (typeof rightHelperText === "string" ? /* @__PURE__ */
|
487
|
+
!isError ? leftHelperText && (typeof leftHelperText === "string" ? /* @__PURE__ */ jsx15(FormHelperText, { fontSize: "text.xs", color: helperColor, mt: 1, children: leftHelperText }) : leftHelperText) : typeof errorMessage === "string" ? /* @__PURE__ */ jsx15(FormErrorMessage, { fontSize: "text.xs", color: "danger.500", mt: 1, children: errorMessage }) : errorMessage,
|
488
|
+
rightHelperText && (typeof rightHelperText === "string" ? /* @__PURE__ */ jsx15(FormHelperText, { fontSize: "text.xs", color: helperColor, mt: 1, children: rightHelperText }) : rightHelperText)
|
855
489
|
] })
|
856
490
|
] });
|
857
491
|
};
|
@@ -868,10 +502,10 @@ Field.defaultProps = {
|
|
868
502
|
var field_default = Field;
|
869
503
|
|
870
504
|
// src/components/checkbox/components/checkbox-group.tsx
|
871
|
-
import { jsx as
|
505
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
872
506
|
function CheckboxGroupComponent(props) {
|
873
507
|
const { children, label, helpText, isError, errorMessage, ...rest } = props;
|
874
|
-
return /* @__PURE__ */
|
508
|
+
return /* @__PURE__ */ jsx16(field_default, { ...rest, label, leftHelperText: helpText, isError, errorMessage, children: /* @__PURE__ */ jsx16(Box6, { mt: "12px", children: /* @__PURE__ */ jsx16(CheckboxGroup, { ...rest, children: /* @__PURE__ */ jsx16(Stack, { spacing: [1, "16px"], direction: ["column", "row"], children }) }) }) });
|
875
509
|
}
|
876
510
|
CheckboxGroupComponent.defaultProps = {
|
877
511
|
helpText: "",
|
@@ -880,740 +514,37 @@ CheckboxGroupComponent.defaultProps = {
|
|
880
514
|
};
|
881
515
|
var checkbox_group_default = CheckboxGroupComponent;
|
882
516
|
|
883
|
-
//
|
884
|
-
import { useCallback as useCallback2 } from "react";
|
885
|
-
function isInputEvent(value) {
|
886
|
-
return value && isObject(value) && isObject(value.target);
|
887
|
-
}
|
888
|
-
function useCheckboxGroup(props = {}) {
|
889
|
-
const {
|
890
|
-
defaultValue,
|
891
|
-
value: valueProp,
|
892
|
-
onChange,
|
893
|
-
isDisabled,
|
894
|
-
isNative
|
895
|
-
} = props;
|
896
|
-
const onChangeProp = useCallbackRef(onChange);
|
897
|
-
const [value, setValue] = useControllableState({
|
898
|
-
value: valueProp,
|
899
|
-
defaultValue: defaultValue || [],
|
900
|
-
onChange: onChangeProp
|
901
|
-
});
|
902
|
-
const handleChange = useCallback2(
|
903
|
-
(eventOrValue) => {
|
904
|
-
if (!value)
|
905
|
-
return;
|
906
|
-
const isChecked = isInputEvent(eventOrValue) ? eventOrValue.target.checked : !value.includes(eventOrValue);
|
907
|
-
const selectedValue = isInputEvent(eventOrValue) ? eventOrValue.target.value : eventOrValue;
|
908
|
-
const nextValue = isChecked ? [...value, selectedValue] : value.filter((v) => String(v) !== String(selectedValue));
|
909
|
-
setValue(nextValue);
|
910
|
-
},
|
911
|
-
[setValue, value]
|
912
|
-
);
|
913
|
-
const getCheckboxProps = useCallback2(
|
914
|
-
(props2 = {}) => {
|
915
|
-
const checkedKey = isNative ? "checked" : "isChecked";
|
916
|
-
return {
|
917
|
-
...props2,
|
918
|
-
[checkedKey]: value.some((val) => String(props2.value) === String(val)),
|
919
|
-
onChange: handleChange
|
920
|
-
};
|
921
|
-
},
|
922
|
-
[handleChange, isNative, value]
|
923
|
-
);
|
924
|
-
return {
|
925
|
-
value,
|
926
|
-
isDisabled,
|
927
|
-
onChange: handleChange,
|
928
|
-
setValue,
|
929
|
-
getCheckboxProps
|
930
|
-
};
|
931
|
-
}
|
932
|
-
|
933
|
-
// ../../node_modules/@chakra-ui/checkbox/dist/chunk-DFEUIRKX.mjs
|
934
|
-
import { chakra as chakra7 } from "@chakra-ui/system";
|
935
|
-
import { jsx as jsx18 } from "react/jsx-runtime";
|
936
|
-
function CheckIcon2(props) {
|
937
|
-
return /* @__PURE__ */ jsx18(
|
938
|
-
chakra7.svg,
|
939
|
-
{
|
940
|
-
width: "1.2em",
|
941
|
-
viewBox: "0 0 12 10",
|
942
|
-
style: {
|
943
|
-
fill: "none",
|
944
|
-
strokeWidth: 2,
|
945
|
-
stroke: "currentColor",
|
946
|
-
strokeDasharray: 16
|
947
|
-
},
|
948
|
-
...props,
|
949
|
-
children: /* @__PURE__ */ jsx18("polyline", { points: "1.5 6 4.5 9 10.5 1" })
|
950
|
-
}
|
951
|
-
);
|
952
|
-
}
|
953
|
-
function IndeterminateIcon(props) {
|
954
|
-
return /* @__PURE__ */ jsx18(
|
955
|
-
chakra7.svg,
|
956
|
-
{
|
957
|
-
width: "1.2em",
|
958
|
-
viewBox: "0 0 24 24",
|
959
|
-
style: { stroke: "currentColor", strokeWidth: 4 },
|
960
|
-
...props,
|
961
|
-
children: /* @__PURE__ */ jsx18("line", { x1: "21", x2: "3", y1: "12", y2: "12" })
|
962
|
-
}
|
963
|
-
);
|
964
|
-
}
|
965
|
-
function CheckboxIcon(props) {
|
966
|
-
const { isIndeterminate, isChecked, ...rest } = props;
|
967
|
-
const BaseIcon = isIndeterminate ? IndeterminateIcon : CheckIcon2;
|
968
|
-
return isChecked || isIndeterminate ? /* @__PURE__ */ jsx18(
|
969
|
-
chakra7.div,
|
970
|
-
{
|
971
|
-
style: {
|
972
|
-
display: "flex",
|
973
|
-
alignItems: "center",
|
974
|
-
justifyContent: "center",
|
975
|
-
height: "100%"
|
976
|
-
},
|
977
|
-
children: /* @__PURE__ */ jsx18(BaseIcon, { ...rest })
|
978
|
-
}
|
979
|
-
) : null;
|
980
|
-
}
|
981
|
-
|
982
|
-
// ../../node_modules/@chakra-ui/form-control/dist/chunk-6ZNYZUDD.mjs
|
517
|
+
// src/components/checkbox/index.ts
|
983
518
|
import {
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
strict: false,
|
997
|
-
name: "FormControlContext"
|
998
|
-
});
|
999
|
-
function useFormControlProvider(props) {
|
1000
|
-
const {
|
1001
|
-
id: idProp,
|
1002
|
-
isRequired,
|
1003
|
-
isInvalid,
|
1004
|
-
isDisabled,
|
1005
|
-
isReadOnly,
|
1006
|
-
...htmlProps
|
1007
|
-
} = props;
|
1008
|
-
const uuid = useId();
|
1009
|
-
const id = idProp || `field-${uuid}`;
|
1010
|
-
const labelId = `${id}-label`;
|
1011
|
-
const feedbackId = `${id}-feedback`;
|
1012
|
-
const helpTextId = `${id}-helptext`;
|
1013
|
-
const [hasFeedbackText, setHasFeedbackText] = useState3(false);
|
1014
|
-
const [hasHelpText, setHasHelpText] = useState3(false);
|
1015
|
-
const [isFocused, setFocus] = useState3(false);
|
1016
|
-
const getHelpTextProps = useCallback3(
|
1017
|
-
(props2 = {}, forwardedRef = null) => ({
|
1018
|
-
id: helpTextId,
|
1019
|
-
...props2,
|
1020
|
-
ref: mergeRefs(forwardedRef, (node) => {
|
1021
|
-
if (!node)
|
1022
|
-
return;
|
1023
|
-
setHasHelpText(true);
|
1024
|
-
})
|
1025
|
-
}),
|
1026
|
-
[helpTextId]
|
1027
|
-
);
|
1028
|
-
const getLabelProps = useCallback3(
|
1029
|
-
(props2 = {}, forwardedRef = null) => ({
|
1030
|
-
...props2,
|
1031
|
-
ref: forwardedRef,
|
1032
|
-
"data-focus": dataAttr(isFocused),
|
1033
|
-
"data-disabled": dataAttr(isDisabled),
|
1034
|
-
"data-invalid": dataAttr(isInvalid),
|
1035
|
-
"data-readonly": dataAttr(isReadOnly),
|
1036
|
-
id: props2.id !== void 0 ? props2.id : labelId,
|
1037
|
-
htmlFor: props2.htmlFor !== void 0 ? props2.htmlFor : id
|
1038
|
-
}),
|
1039
|
-
[id, isDisabled, isFocused, isInvalid, isReadOnly, labelId]
|
1040
|
-
);
|
1041
|
-
const getErrorMessageProps = useCallback3(
|
1042
|
-
(props2 = {}, forwardedRef = null) => ({
|
1043
|
-
id: feedbackId,
|
1044
|
-
...props2,
|
1045
|
-
ref: mergeRefs(forwardedRef, (node) => {
|
1046
|
-
if (!node)
|
1047
|
-
return;
|
1048
|
-
setHasFeedbackText(true);
|
1049
|
-
}),
|
1050
|
-
"aria-live": "polite"
|
1051
|
-
}),
|
1052
|
-
[feedbackId]
|
1053
|
-
);
|
1054
|
-
const getRootProps = useCallback3(
|
1055
|
-
(props2 = {}, forwardedRef = null) => ({
|
1056
|
-
...props2,
|
1057
|
-
...htmlProps,
|
1058
|
-
ref: forwardedRef,
|
1059
|
-
role: "group"
|
1060
|
-
}),
|
1061
|
-
[htmlProps]
|
1062
|
-
);
|
1063
|
-
const getRequiredIndicatorProps = useCallback3(
|
1064
|
-
(props2 = {}, forwardedRef = null) => ({
|
1065
|
-
...props2,
|
1066
|
-
ref: forwardedRef,
|
1067
|
-
role: "presentation",
|
1068
|
-
"aria-hidden": true,
|
1069
|
-
children: props2.children || "*"
|
1070
|
-
}),
|
1071
|
-
[]
|
1072
|
-
);
|
1073
|
-
return {
|
1074
|
-
isRequired: !!isRequired,
|
1075
|
-
isInvalid: !!isInvalid,
|
1076
|
-
isReadOnly: !!isReadOnly,
|
1077
|
-
isDisabled: !!isDisabled,
|
1078
|
-
isFocused: !!isFocused,
|
1079
|
-
onFocus: () => setFocus(true),
|
1080
|
-
onBlur: () => setFocus(false),
|
1081
|
-
hasFeedbackText,
|
1082
|
-
setHasFeedbackText,
|
1083
|
-
hasHelpText,
|
1084
|
-
setHasHelpText,
|
1085
|
-
id,
|
1086
|
-
labelId,
|
1087
|
-
feedbackId,
|
1088
|
-
helpTextId,
|
1089
|
-
htmlProps,
|
1090
|
-
getHelpTextProps,
|
1091
|
-
getErrorMessageProps,
|
1092
|
-
getRootProps,
|
1093
|
-
getLabelProps,
|
1094
|
-
getRequiredIndicatorProps
|
1095
|
-
};
|
1096
|
-
}
|
1097
|
-
var FormControl2 = forwardRef9(
|
1098
|
-
function FormControl22(props, ref) {
|
1099
|
-
const styles = useMultiStyleConfig2("Form", props);
|
1100
|
-
const ownProps = omitThemingProps3(props);
|
1101
|
-
const {
|
1102
|
-
getRootProps,
|
1103
|
-
htmlProps: _,
|
1104
|
-
...context
|
1105
|
-
} = useFormControlProvider(ownProps);
|
1106
|
-
const className = cx("chakra-form-control", props.className);
|
1107
|
-
return /* @__PURE__ */ jsx19(FormControlProvider, { value: context, children: /* @__PURE__ */ jsx19(FormControlStylesProvider, { value: styles, children: /* @__PURE__ */ jsx19(
|
1108
|
-
chakra8.div,
|
1109
|
-
{
|
1110
|
-
...getRootProps({}, ref),
|
1111
|
-
className,
|
1112
|
-
__css: styles["container"]
|
1113
|
-
}
|
1114
|
-
) }) });
|
1115
|
-
}
|
1116
|
-
);
|
1117
|
-
FormControl2.displayName = "FormControl";
|
1118
|
-
var FormHelperText2 = forwardRef9(
|
1119
|
-
function FormHelperText22(props, ref) {
|
1120
|
-
const field2 = useFormControlContext();
|
1121
|
-
const styles = useFormControlStyles();
|
1122
|
-
const className = cx("chakra-form__helper-text", props.className);
|
1123
|
-
return /* @__PURE__ */ jsx19(
|
1124
|
-
chakra8.div,
|
1125
|
-
{
|
1126
|
-
...field2 == null ? void 0 : field2.getHelpTextProps(props, ref),
|
1127
|
-
__css: styles.helperText,
|
1128
|
-
className
|
1129
|
-
}
|
1130
|
-
);
|
1131
|
-
}
|
1132
|
-
);
|
1133
|
-
FormHelperText2.displayName = "FormHelperText";
|
1134
|
-
|
1135
|
-
// ../../node_modules/@chakra-ui/form-control/dist/chunk-IJBC3YLI.mjs
|
1136
|
-
function useFormControlProps(props) {
|
1137
|
-
var _a, _b, _c;
|
1138
|
-
const field2 = useFormControlContext();
|
1139
|
-
const {
|
1140
|
-
id,
|
1141
|
-
disabled,
|
1142
|
-
readOnly,
|
1143
|
-
required,
|
1144
|
-
isRequired,
|
1145
|
-
isInvalid,
|
1146
|
-
isReadOnly,
|
1147
|
-
isDisabled,
|
1148
|
-
onFocus,
|
1149
|
-
onBlur,
|
1150
|
-
...rest
|
1151
|
-
} = props;
|
1152
|
-
const labelIds = props["aria-describedby"] ? [props["aria-describedby"]] : [];
|
1153
|
-
if ((field2 == null ? void 0 : field2.hasFeedbackText) && (field2 == null ? void 0 : field2.isInvalid)) {
|
1154
|
-
labelIds.push(field2.feedbackId);
|
1155
|
-
}
|
1156
|
-
if (field2 == null ? void 0 : field2.hasHelpText) {
|
1157
|
-
labelIds.push(field2.helpTextId);
|
1158
|
-
}
|
1159
|
-
return {
|
1160
|
-
...rest,
|
1161
|
-
"aria-describedby": labelIds.join(" ") || void 0,
|
1162
|
-
id: id != null ? id : field2 == null ? void 0 : field2.id,
|
1163
|
-
isDisabled: (_a = disabled != null ? disabled : isDisabled) != null ? _a : field2 == null ? void 0 : field2.isDisabled,
|
1164
|
-
isReadOnly: (_b = readOnly != null ? readOnly : isReadOnly) != null ? _b : field2 == null ? void 0 : field2.isReadOnly,
|
1165
|
-
isRequired: (_c = required != null ? required : isRequired) != null ? _c : field2 == null ? void 0 : field2.isRequired,
|
1166
|
-
isInvalid: isInvalid != null ? isInvalid : field2 == null ? void 0 : field2.isInvalid,
|
1167
|
-
onFocus: callAllHandlers(field2 == null ? void 0 : field2.onFocus, onFocus),
|
1168
|
-
onBlur: callAllHandlers(field2 == null ? void 0 : field2.onBlur, onBlur)
|
1169
|
-
};
|
1170
|
-
}
|
1171
|
-
|
1172
|
-
// ../../node_modules/@chakra-ui/react-use-safe-layout-effect/dist/index.mjs
|
1173
|
-
import { useEffect as useEffect3, useLayoutEffect as useLayoutEffect2 } from "react";
|
1174
|
-
var useSafeLayoutEffect2 = Boolean(globalThis == null ? void 0 : globalThis.document) ? useLayoutEffect2 : useEffect3;
|
1175
|
-
|
1176
|
-
// ../../node_modules/@chakra-ui/react-use-update-effect/dist/index.mjs
|
1177
|
-
import { useEffect as useEffect4, useRef as useRef3 } from "react";
|
1178
|
-
function useUpdateEffect(callback, deps) {
|
1179
|
-
const renderCycleRef = useRef3(false);
|
1180
|
-
const effectCycleRef = useRef3(false);
|
1181
|
-
useEffect4(() => {
|
1182
|
-
const mounted = renderCycleRef.current;
|
1183
|
-
const run = mounted && effectCycleRef.current;
|
1184
|
-
if (run) {
|
1185
|
-
return callback();
|
1186
|
-
}
|
1187
|
-
effectCycleRef.current = true;
|
1188
|
-
}, deps);
|
1189
|
-
useEffect4(() => {
|
1190
|
-
renderCycleRef.current = true;
|
1191
|
-
return () => {
|
1192
|
-
renderCycleRef.current = false;
|
1193
|
-
};
|
1194
|
-
}, []);
|
1195
|
-
}
|
1196
|
-
|
1197
|
-
// ../../node_modules/@chakra-ui/visually-hidden/dist/chunk-RSUMUOHR.mjs
|
1198
|
-
var visuallyHiddenStyle = {
|
1199
|
-
border: "0",
|
1200
|
-
clip: "rect(0, 0, 0, 0)",
|
1201
|
-
height: "1px",
|
1202
|
-
width: "1px",
|
1203
|
-
margin: "-1px",
|
1204
|
-
padding: "0",
|
1205
|
-
overflow: "hidden",
|
1206
|
-
whiteSpace: "nowrap",
|
1207
|
-
position: "absolute"
|
1208
|
-
};
|
1209
|
-
|
1210
|
-
// ../../node_modules/@zag-js/focus-visible/dist/index.mjs
|
1211
|
-
var hasSetup = false;
|
1212
|
-
var modality = null;
|
1213
|
-
var hasEventBeforeFocus = false;
|
1214
|
-
var hasBlurredWindowRecently = false;
|
1215
|
-
var handlers = /* @__PURE__ */ new Set();
|
1216
|
-
function trigger(modality2, event) {
|
1217
|
-
handlers.forEach((handler) => handler(modality2, event));
|
1218
|
-
}
|
1219
|
-
var isMac = typeof window !== "undefined" && window.navigator != null ? /^Mac/.test(window.navigator.platform) : false;
|
1220
|
-
function isValidKey(e) {
|
1221
|
-
return !(e.metaKey || !isMac && e.altKey || e.ctrlKey || e.key === "Control" || e.key === "Shift" || e.key === "Meta");
|
1222
|
-
}
|
1223
|
-
function onKeyboardEvent(event) {
|
1224
|
-
hasEventBeforeFocus = true;
|
1225
|
-
if (isValidKey(event)) {
|
1226
|
-
modality = "keyboard";
|
1227
|
-
trigger("keyboard", event);
|
1228
|
-
}
|
1229
|
-
}
|
1230
|
-
function onPointerEvent(event) {
|
1231
|
-
modality = "pointer";
|
1232
|
-
if (event.type === "mousedown" || event.type === "pointerdown") {
|
1233
|
-
hasEventBeforeFocus = true;
|
1234
|
-
const target = event.composedPath ? event.composedPath()[0] : event.target;
|
1235
|
-
let matches = false;
|
1236
|
-
try {
|
1237
|
-
matches = target.matches(":focus-visible");
|
1238
|
-
} catch {
|
1239
|
-
}
|
1240
|
-
if (matches)
|
1241
|
-
return;
|
1242
|
-
trigger("pointer", event);
|
1243
|
-
}
|
1244
|
-
}
|
1245
|
-
function isVirtualClick(event) {
|
1246
|
-
if (event.mozInputSource === 0 && event.isTrusted)
|
1247
|
-
return true;
|
1248
|
-
return event.detail === 0 && !event.pointerType;
|
1249
|
-
}
|
1250
|
-
function onClickEvent(e) {
|
1251
|
-
if (isVirtualClick(e)) {
|
1252
|
-
hasEventBeforeFocus = true;
|
1253
|
-
modality = "virtual";
|
1254
|
-
}
|
1255
|
-
}
|
1256
|
-
function onWindowFocus(event) {
|
1257
|
-
if (event.target === window || event.target === document) {
|
1258
|
-
return;
|
1259
|
-
}
|
1260
|
-
if (!hasEventBeforeFocus && !hasBlurredWindowRecently) {
|
1261
|
-
modality = "virtual";
|
1262
|
-
trigger("virtual", event);
|
1263
|
-
}
|
1264
|
-
hasEventBeforeFocus = false;
|
1265
|
-
hasBlurredWindowRecently = false;
|
1266
|
-
}
|
1267
|
-
function onWindowBlur() {
|
1268
|
-
hasEventBeforeFocus = false;
|
1269
|
-
hasBlurredWindowRecently = true;
|
1270
|
-
}
|
1271
|
-
function isFocusVisible() {
|
1272
|
-
return modality !== "pointer";
|
1273
|
-
}
|
1274
|
-
function setupGlobalFocusEvents() {
|
1275
|
-
if (typeof window === "undefined" || hasSetup) {
|
1276
|
-
return;
|
1277
|
-
}
|
1278
|
-
const { focus } = HTMLElement.prototype;
|
1279
|
-
HTMLElement.prototype.focus = function focusElement(...args) {
|
1280
|
-
hasEventBeforeFocus = true;
|
1281
|
-
focus.apply(this, args);
|
1282
|
-
};
|
1283
|
-
document.addEventListener("keydown", onKeyboardEvent, true);
|
1284
|
-
document.addEventListener("keyup", onKeyboardEvent, true);
|
1285
|
-
document.addEventListener("click", onClickEvent, true);
|
1286
|
-
window.addEventListener("focus", onWindowFocus, true);
|
1287
|
-
window.addEventListener("blur", onWindowBlur, false);
|
1288
|
-
if (typeof PointerEvent !== "undefined") {
|
1289
|
-
document.addEventListener("pointerdown", onPointerEvent, true);
|
1290
|
-
document.addEventListener("pointermove", onPointerEvent, true);
|
1291
|
-
document.addEventListener("pointerup", onPointerEvent, true);
|
1292
|
-
} else {
|
1293
|
-
document.addEventListener("mousedown", onPointerEvent, true);
|
1294
|
-
document.addEventListener("mousemove", onPointerEvent, true);
|
1295
|
-
document.addEventListener("mouseup", onPointerEvent, true);
|
1296
|
-
}
|
1297
|
-
hasSetup = true;
|
1298
|
-
}
|
1299
|
-
function trackFocusVisible(fn) {
|
1300
|
-
setupGlobalFocusEvents();
|
1301
|
-
fn(isFocusVisible());
|
1302
|
-
const handler = () => fn(isFocusVisible());
|
1303
|
-
handlers.add(handler);
|
1304
|
-
return () => {
|
1305
|
-
handlers.delete(handler);
|
1306
|
-
};
|
1307
|
-
}
|
1308
|
-
|
1309
|
-
// ../../node_modules/@chakra-ui/checkbox/dist/chunk-HPA3SDH4.mjs
|
1310
|
-
import { useCallback as useCallback4, useEffect as useEffect5, useRef as useRef4, useState as useState4 } from "react";
|
1311
|
-
function omit(object, keysToOmit = []) {
|
1312
|
-
const clone = Object.assign({}, object);
|
1313
|
-
for (const key of keysToOmit) {
|
1314
|
-
if (key in clone) {
|
1315
|
-
delete clone[key];
|
1316
|
-
}
|
1317
|
-
}
|
1318
|
-
return clone;
|
1319
|
-
}
|
1320
|
-
function useCheckbox(props = {}) {
|
1321
|
-
const formControlProps = useFormControlProps(props);
|
1322
|
-
const {
|
1323
|
-
isDisabled,
|
1324
|
-
isReadOnly,
|
1325
|
-
isRequired,
|
1326
|
-
isInvalid,
|
1327
|
-
id,
|
1328
|
-
onBlur,
|
1329
|
-
onFocus,
|
1330
|
-
"aria-describedby": ariaDescribedBy
|
1331
|
-
} = formControlProps;
|
1332
|
-
const {
|
1333
|
-
defaultChecked,
|
1334
|
-
isChecked: checkedProp,
|
1335
|
-
isFocusable,
|
1336
|
-
onChange,
|
1337
|
-
isIndeterminate,
|
1338
|
-
name,
|
1339
|
-
value,
|
1340
|
-
tabIndex = void 0,
|
1341
|
-
"aria-label": ariaLabel,
|
1342
|
-
"aria-labelledby": ariaLabelledBy,
|
1343
|
-
"aria-invalid": ariaInvalid,
|
1344
|
-
...rest
|
1345
|
-
} = props;
|
1346
|
-
const htmlProps = omit(rest, [
|
1347
|
-
"isDisabled",
|
1348
|
-
"isReadOnly",
|
1349
|
-
"isRequired",
|
1350
|
-
"isInvalid",
|
1351
|
-
"id",
|
1352
|
-
"onBlur",
|
1353
|
-
"onFocus",
|
1354
|
-
"aria-describedby"
|
1355
|
-
]);
|
1356
|
-
const onChangeProp = useCallbackRef(onChange);
|
1357
|
-
const onBlurProp = useCallbackRef(onBlur);
|
1358
|
-
const onFocusProp = useCallbackRef(onFocus);
|
1359
|
-
const [isFocusVisible2, setIsFocusVisible] = useState4(false);
|
1360
|
-
const [isFocused, setFocused] = useState4(false);
|
1361
|
-
const [isHovered, setHovered] = useState4(false);
|
1362
|
-
const [isActive, setActive] = useState4(false);
|
1363
|
-
useEffect5(() => {
|
1364
|
-
return trackFocusVisible(setIsFocusVisible);
|
1365
|
-
}, []);
|
1366
|
-
const inputRef = useRef4(null);
|
1367
|
-
const [rootIsLabelElement, setRootIsLabelElement] = useState4(true);
|
1368
|
-
const [checkedState, setCheckedState] = useState4(!!defaultChecked);
|
1369
|
-
const isControlled = checkedProp !== void 0;
|
1370
|
-
const isChecked = isControlled ? checkedProp : checkedState;
|
1371
|
-
const handleChange = useCallback4(
|
1372
|
-
(event) => {
|
1373
|
-
if (isReadOnly || isDisabled) {
|
1374
|
-
event.preventDefault();
|
1375
|
-
return;
|
1376
|
-
}
|
1377
|
-
if (!isControlled) {
|
1378
|
-
if (isChecked) {
|
1379
|
-
setCheckedState(event.target.checked);
|
1380
|
-
} else {
|
1381
|
-
setCheckedState(isIndeterminate ? true : event.target.checked);
|
1382
|
-
}
|
1383
|
-
}
|
1384
|
-
onChangeProp == null ? void 0 : onChangeProp(event);
|
1385
|
-
},
|
1386
|
-
[
|
1387
|
-
isReadOnly,
|
1388
|
-
isDisabled,
|
1389
|
-
isChecked,
|
1390
|
-
isControlled,
|
1391
|
-
isIndeterminate,
|
1392
|
-
onChangeProp
|
1393
|
-
]
|
1394
|
-
);
|
1395
|
-
useSafeLayoutEffect2(() => {
|
1396
|
-
if (inputRef.current) {
|
1397
|
-
inputRef.current.indeterminate = Boolean(isIndeterminate);
|
1398
|
-
}
|
1399
|
-
}, [isIndeterminate]);
|
1400
|
-
useUpdateEffect(() => {
|
1401
|
-
if (isDisabled) {
|
1402
|
-
setFocused(false);
|
1403
|
-
}
|
1404
|
-
}, [isDisabled, setFocused]);
|
1405
|
-
useSafeLayoutEffect2(() => {
|
1406
|
-
const el = inputRef.current;
|
1407
|
-
if (!(el == null ? void 0 : el.form))
|
1408
|
-
return;
|
1409
|
-
el.form.onreset = () => {
|
1410
|
-
setCheckedState(!!defaultChecked);
|
1411
|
-
};
|
1412
|
-
}, []);
|
1413
|
-
const trulyDisabled = isDisabled && !isFocusable;
|
1414
|
-
const onKeyDown = useCallback4(
|
1415
|
-
(event) => {
|
1416
|
-
if (event.key === " ") {
|
1417
|
-
setActive(true);
|
1418
|
-
}
|
1419
|
-
},
|
1420
|
-
[setActive]
|
1421
|
-
);
|
1422
|
-
const onKeyUp = useCallback4(
|
1423
|
-
(event) => {
|
1424
|
-
if (event.key === " ") {
|
1425
|
-
setActive(false);
|
1426
|
-
}
|
1427
|
-
},
|
1428
|
-
[setActive]
|
1429
|
-
);
|
1430
|
-
useSafeLayoutEffect2(() => {
|
1431
|
-
if (!inputRef.current)
|
1432
|
-
return;
|
1433
|
-
const notInSync = inputRef.current.checked !== isChecked;
|
1434
|
-
if (notInSync) {
|
1435
|
-
setCheckedState(inputRef.current.checked);
|
1436
|
-
}
|
1437
|
-
}, [inputRef.current]);
|
1438
|
-
const getCheckboxProps = useCallback4(
|
1439
|
-
(props2 = {}, forwardedRef = null) => {
|
1440
|
-
const onPressDown = (event) => {
|
1441
|
-
if (isFocused) {
|
1442
|
-
event.preventDefault();
|
1443
|
-
}
|
1444
|
-
setActive(true);
|
1445
|
-
};
|
1446
|
-
return {
|
1447
|
-
...props2,
|
1448
|
-
ref: forwardedRef,
|
1449
|
-
"data-active": dataAttr(isActive),
|
1450
|
-
"data-hover": dataAttr(isHovered),
|
1451
|
-
"data-checked": dataAttr(isChecked),
|
1452
|
-
"data-focus": dataAttr(isFocused),
|
1453
|
-
"data-focus-visible": dataAttr(isFocused && isFocusVisible2),
|
1454
|
-
"data-indeterminate": dataAttr(isIndeterminate),
|
1455
|
-
"data-disabled": dataAttr(isDisabled),
|
1456
|
-
"data-invalid": dataAttr(isInvalid),
|
1457
|
-
"data-readonly": dataAttr(isReadOnly),
|
1458
|
-
"aria-hidden": true,
|
1459
|
-
onMouseDown: callAllHandlers(props2.onMouseDown, onPressDown),
|
1460
|
-
onMouseUp: callAllHandlers(props2.onMouseUp, () => setActive(false)),
|
1461
|
-
onMouseEnter: callAllHandlers(
|
1462
|
-
props2.onMouseEnter,
|
1463
|
-
() => setHovered(true)
|
1464
|
-
),
|
1465
|
-
onMouseLeave: callAllHandlers(
|
1466
|
-
props2.onMouseLeave,
|
1467
|
-
() => setHovered(false)
|
1468
|
-
)
|
1469
|
-
};
|
1470
|
-
},
|
1471
|
-
[
|
1472
|
-
isActive,
|
1473
|
-
isChecked,
|
1474
|
-
isDisabled,
|
1475
|
-
isFocused,
|
1476
|
-
isFocusVisible2,
|
1477
|
-
isHovered,
|
1478
|
-
isIndeterminate,
|
1479
|
-
isInvalid,
|
1480
|
-
isReadOnly
|
1481
|
-
]
|
1482
|
-
);
|
1483
|
-
const getRootProps = useCallback4(
|
1484
|
-
(props2 = {}, forwardedRef = null) => ({
|
1485
|
-
...htmlProps,
|
1486
|
-
...props2,
|
1487
|
-
ref: mergeRefs(forwardedRef, (node) => {
|
1488
|
-
if (!node)
|
1489
|
-
return;
|
1490
|
-
setRootIsLabelElement(node.tagName === "LABEL");
|
1491
|
-
}),
|
1492
|
-
onClick: callAllHandlers(props2.onClick, () => {
|
1493
|
-
var _a;
|
1494
|
-
if (!rootIsLabelElement) {
|
1495
|
-
(_a = inputRef.current) == null ? void 0 : _a.click();
|
1496
|
-
requestAnimationFrame(() => {
|
1497
|
-
var _a2;
|
1498
|
-
(_a2 = inputRef.current) == null ? void 0 : _a2.focus({ preventScroll: true });
|
1499
|
-
});
|
1500
|
-
}
|
1501
|
-
}),
|
1502
|
-
"data-disabled": dataAttr(isDisabled),
|
1503
|
-
"data-checked": dataAttr(isChecked),
|
1504
|
-
"data-invalid": dataAttr(isInvalid)
|
1505
|
-
}),
|
1506
|
-
[htmlProps, isDisabled, isChecked, isInvalid, rootIsLabelElement]
|
1507
|
-
);
|
1508
|
-
const getInputProps = useCallback4(
|
1509
|
-
(props2 = {}, forwardedRef = null) => {
|
1510
|
-
return {
|
1511
|
-
...props2,
|
1512
|
-
ref: mergeRefs(inputRef, forwardedRef),
|
1513
|
-
type: "checkbox",
|
1514
|
-
name,
|
1515
|
-
value,
|
1516
|
-
id,
|
1517
|
-
tabIndex,
|
1518
|
-
onChange: callAllHandlers(props2.onChange, handleChange),
|
1519
|
-
onBlur: callAllHandlers(
|
1520
|
-
props2.onBlur,
|
1521
|
-
onBlurProp,
|
1522
|
-
() => setFocused(false)
|
1523
|
-
),
|
1524
|
-
onFocus: callAllHandlers(
|
1525
|
-
props2.onFocus,
|
1526
|
-
onFocusProp,
|
1527
|
-
() => setFocused(true)
|
1528
|
-
),
|
1529
|
-
onKeyDown: callAllHandlers(props2.onKeyDown, onKeyDown),
|
1530
|
-
onKeyUp: callAllHandlers(props2.onKeyUp, onKeyUp),
|
1531
|
-
required: isRequired,
|
1532
|
-
checked: isChecked,
|
1533
|
-
disabled: trulyDisabled,
|
1534
|
-
readOnly: isReadOnly,
|
1535
|
-
"aria-label": ariaLabel,
|
1536
|
-
"aria-labelledby": ariaLabelledBy,
|
1537
|
-
"aria-invalid": ariaInvalid ? Boolean(ariaInvalid) : isInvalid,
|
1538
|
-
"aria-describedby": ariaDescribedBy,
|
1539
|
-
"aria-disabled": isDisabled,
|
1540
|
-
style: visuallyHiddenStyle
|
1541
|
-
};
|
1542
|
-
},
|
1543
|
-
[
|
1544
|
-
name,
|
1545
|
-
value,
|
1546
|
-
id,
|
1547
|
-
handleChange,
|
1548
|
-
onBlurProp,
|
1549
|
-
onFocusProp,
|
1550
|
-
onKeyDown,
|
1551
|
-
onKeyUp,
|
1552
|
-
isRequired,
|
1553
|
-
isChecked,
|
1554
|
-
trulyDisabled,
|
1555
|
-
isReadOnly,
|
1556
|
-
ariaLabel,
|
1557
|
-
ariaLabelledBy,
|
1558
|
-
ariaInvalid,
|
1559
|
-
isInvalid,
|
1560
|
-
ariaDescribedBy,
|
1561
|
-
isDisabled,
|
1562
|
-
tabIndex
|
1563
|
-
]
|
1564
|
-
);
|
1565
|
-
const getLabelProps = useCallback4(
|
1566
|
-
(props2 = {}, forwardedRef = null) => ({
|
1567
|
-
...props2,
|
1568
|
-
ref: forwardedRef,
|
1569
|
-
onMouseDown: callAllHandlers(props2.onMouseDown, stopEvent),
|
1570
|
-
"data-disabled": dataAttr(isDisabled),
|
1571
|
-
"data-checked": dataAttr(isChecked),
|
1572
|
-
"data-invalid": dataAttr(isInvalid)
|
1573
|
-
}),
|
1574
|
-
[isChecked, isDisabled, isInvalid]
|
1575
|
-
);
|
1576
|
-
const state = {
|
1577
|
-
isInvalid,
|
1578
|
-
isFocused,
|
1579
|
-
isChecked,
|
1580
|
-
isActive,
|
1581
|
-
isHovered,
|
1582
|
-
isIndeterminate,
|
1583
|
-
isDisabled,
|
1584
|
-
isReadOnly,
|
1585
|
-
isRequired
|
1586
|
-
};
|
1587
|
-
return {
|
1588
|
-
state,
|
1589
|
-
getRootProps,
|
1590
|
-
getCheckboxProps,
|
1591
|
-
getInputProps,
|
1592
|
-
getLabelProps,
|
1593
|
-
htmlProps
|
1594
|
-
};
|
1595
|
-
}
|
1596
|
-
function stopEvent(event) {
|
1597
|
-
event.preventDefault();
|
1598
|
-
event.stopPropagation();
|
1599
|
-
}
|
519
|
+
CheckboxGroupContext,
|
520
|
+
CheckboxGroupProps,
|
521
|
+
CheckboxIcon,
|
522
|
+
CheckboxIconProps,
|
523
|
+
CheckboxState,
|
524
|
+
useCheckbox,
|
525
|
+
useCheckboxGroup,
|
526
|
+
UseCheckboxGroupProps,
|
527
|
+
UseCheckboxGroupReturn,
|
528
|
+
UseCheckboxProps,
|
529
|
+
UseCheckboxReturn
|
530
|
+
} from "@chakra-ui/react";
|
1600
531
|
|
1601
532
|
// src/components/chips/components/chips.tsx
|
1602
|
-
import { Box as Box7, useStyleConfig as
|
533
|
+
import { Box as Box7, useStyleConfig as useStyleConfig3 } from "@chakra-ui/react";
|
1603
534
|
import { Close as Close2 } from "@ctlyst.id/internal-icon";
|
1604
|
-
import { useMemo
|
1605
|
-
import { jsx as
|
535
|
+
import { useMemo } from "react";
|
536
|
+
import { jsx as jsx17, jsxs as jsxs5 } from "react/jsx-runtime";
|
1606
537
|
var Chips = ({ children, ...rest }) => {
|
1607
538
|
const { isActive, isDisabled, onClose } = rest;
|
1608
|
-
const styles =
|
1609
|
-
const closeColor =
|
539
|
+
const styles = useStyleConfig3("Chips", rest);
|
540
|
+
const closeColor = useMemo(() => {
|
1610
541
|
if (isActive) return "white.high";
|
1611
542
|
if (isDisabled) return "black.low";
|
1612
543
|
return "primary.500";
|
1613
544
|
}, [isActive, isDisabled]);
|
1614
545
|
return /* @__PURE__ */ jsxs5(Box7, { __css: styles, display: "inline-flex", alignItems: "center", justifyContent: "center", ...rest, children: [
|
1615
546
|
children,
|
1616
|
-
onClose && /* @__PURE__ */
|
547
|
+
onClose && /* @__PURE__ */ jsx17(
|
1617
548
|
Box7,
|
1618
549
|
{
|
1619
550
|
onClick: isDisabled ? void 0 : onClose,
|
@@ -1622,7 +553,7 @@ var Chips = ({ children, ...rest }) => {
|
|
1622
553
|
display: "flex",
|
1623
554
|
alignItems: "center",
|
1624
555
|
justifyContent: "center",
|
1625
|
-
children: /* @__PURE__ */
|
556
|
+
children: /* @__PURE__ */ jsx17(Close2, { color: closeColor, size: 4 })
|
1626
557
|
}
|
1627
558
|
)
|
1628
559
|
] });
|
@@ -1642,12 +573,12 @@ import { FiMinus, FiPlus } from "react-icons/fi";
|
|
1642
573
|
|
1643
574
|
// src/components/form/components/input-addon.tsx
|
1644
575
|
import { InputLeftAddon, InputRightAddon } from "@chakra-ui/react";
|
1645
|
-
import { jsx as
|
576
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
1646
577
|
var InputAddonLeft = ({ children }) => {
|
1647
|
-
return /* @__PURE__ */
|
578
|
+
return /* @__PURE__ */ jsx18(InputLeftAddon, { backgroundColor: "neutral.200", px: 3, py: 2.5, style: { border: 0, marginInlineEnd: 0 }, children });
|
1648
579
|
};
|
1649
580
|
var InputAddonRight = ({ children }) => {
|
1650
|
-
return /* @__PURE__ */
|
581
|
+
return /* @__PURE__ */ jsx18(InputRightAddon, { backgroundColor: "neutral.200", px: 3, py: 2.5, style: { border: 0, marginInlineStart: 0 }, children });
|
1651
582
|
};
|
1652
583
|
|
1653
584
|
// src/components/form/components/input-element.tsx
|
@@ -1657,7 +588,7 @@ import { InputRightElement } from "@chakra-ui/react";
|
|
1657
588
|
// src/components/form/components/input-field.tsx
|
1658
589
|
import { Box as Box8, Input as ChakraInput, InputGroup } from "@chakra-ui/react";
|
1659
590
|
import { Close as Close3, Eye, EyeOff } from "@ctlyst.id/internal-icon";
|
1660
|
-
import React3, { useMemo as
|
591
|
+
import React3, { useMemo as useMemo2, useState } from "react";
|
1661
592
|
|
1662
593
|
// src/components/form/styles/input-field.ts
|
1663
594
|
import { defineStyle } from "@chakra-ui/react";
|
@@ -1692,7 +623,7 @@ var getWrapperStyle = (props) => {
|
|
1692
623
|
var input_field_default = getWrapperStyle;
|
1693
624
|
|
1694
625
|
// src/components/form/components/input-field.tsx
|
1695
|
-
import { jsx as
|
626
|
+
import { jsx as jsx19, jsxs as jsxs6 } from "react/jsx-runtime";
|
1696
627
|
var InputField = React3.forwardRef((props, ref) => {
|
1697
628
|
const {
|
1698
629
|
value,
|
@@ -1714,20 +645,20 @@ var InputField = React3.forwardRef((props, ref) => {
|
|
1714
645
|
...inputProps
|
1715
646
|
} = props;
|
1716
647
|
const wrapperStyle = input_field_default(props);
|
1717
|
-
const [isShowPassword, setIsShowPassword] =
|
1718
|
-
const inputType =
|
648
|
+
const [isShowPassword, setIsShowPassword] = useState(false);
|
649
|
+
const inputType = useMemo2(() => {
|
1719
650
|
return type === "password" && isShowPassword ? "text" : type;
|
1720
651
|
}, [isShowPassword, type]);
|
1721
|
-
const fontSize =
|
652
|
+
const fontSize = useMemo2(() => {
|
1722
653
|
if (type === "password") {
|
1723
654
|
if (!isShowPassword && value) return "text.xl";
|
1724
655
|
}
|
1725
656
|
return "text.sm";
|
1726
657
|
}, [isShowPassword, type, value]);
|
1727
|
-
const iconColor =
|
658
|
+
const iconColor = useMemo2(() => {
|
1728
659
|
return isDisabled ? "black.low" : "black.medium";
|
1729
660
|
}, [isDisabled]);
|
1730
|
-
return /* @__PURE__ */
|
661
|
+
return /* @__PURE__ */ jsx19(
|
1731
662
|
field_default,
|
1732
663
|
{
|
1733
664
|
label,
|
@@ -1737,7 +668,7 @@ var InputField = React3.forwardRef((props, ref) => {
|
|
1737
668
|
leftHelperText,
|
1738
669
|
rightHelperText,
|
1739
670
|
isRequired,
|
1740
|
-
children: /* @__PURE__ */
|
671
|
+
children: /* @__PURE__ */ jsx19(Box8, { __css: wrapperStyle, children: /* @__PURE__ */ jsxs6(
|
1741
672
|
InputGroup,
|
1742
673
|
{
|
1743
674
|
size: size2,
|
@@ -1746,7 +677,7 @@ var InputField = React3.forwardRef((props, ref) => {
|
|
1746
677
|
cursor: isDisabled ? "not-allowed" : "default",
|
1747
678
|
children: [
|
1748
679
|
addOnLeft,
|
1749
|
-
/* @__PURE__ */
|
680
|
+
/* @__PURE__ */ jsx19(
|
1750
681
|
ChakraInput,
|
1751
682
|
{
|
1752
683
|
ref,
|
@@ -1768,17 +699,17 @@ var InputField = React3.forwardRef((props, ref) => {
|
|
1768
699
|
width: "16px",
|
1769
700
|
mr: "10px",
|
1770
701
|
children: [
|
1771
|
-
withClear && !isLoading && /* @__PURE__ */
|
702
|
+
withClear && !isLoading && /* @__PURE__ */ jsx19(
|
1772
703
|
Box8,
|
1773
704
|
{
|
1774
705
|
display: "flex",
|
1775
706
|
justifyContent: "center",
|
1776
707
|
onClick: !isDisabled ? onClear : void 0,
|
1777
708
|
cursor: isDisabled ? "not-allowed" : "pointer",
|
1778
|
-
children: /* @__PURE__ */
|
709
|
+
children: /* @__PURE__ */ jsx19(Close3, { size: 4, color: iconColor })
|
1779
710
|
}
|
1780
711
|
),
|
1781
|
-
type === "password" && !isShowPassword && !isLoading && /* @__PURE__ */
|
712
|
+
type === "password" && !isShowPassword && !isLoading && /* @__PURE__ */ jsx19(
|
1782
713
|
Box8,
|
1783
714
|
{
|
1784
715
|
"data-test-id": "q2Bj2G4FlamXyHuRKMZ1Q",
|
@@ -1788,10 +719,10 @@ var InputField = React3.forwardRef((props, ref) => {
|
|
1788
719
|
cursor: isDisabled ? "not-allowed" : "pointer",
|
1789
720
|
display: "flex",
|
1790
721
|
justifyContent: "center",
|
1791
|
-
children: /* @__PURE__ */
|
722
|
+
children: /* @__PURE__ */ jsx19(EyeOff, { size: 4, color: iconColor })
|
1792
723
|
}
|
1793
724
|
),
|
1794
|
-
type === "password" && isShowPassword && !isLoading && /* @__PURE__ */
|
725
|
+
type === "password" && isShowPassword && !isLoading && /* @__PURE__ */ jsx19(
|
1795
726
|
Box8,
|
1796
727
|
{
|
1797
728
|
"data-test-id": "sfc2388bmeXBmdla45Ibk",
|
@@ -1801,10 +732,10 @@ var InputField = React3.forwardRef((props, ref) => {
|
|
1801
732
|
cursor: isDisabled ? "not-allowed" : "pointer",
|
1802
733
|
display: "flex",
|
1803
734
|
justifyContent: "center",
|
1804
|
-
children: /* @__PURE__ */
|
735
|
+
children: /* @__PURE__ */ jsx19(Eye, { size: 4, color: iconColor })
|
1805
736
|
}
|
1806
737
|
),
|
1807
|
-
isLoading && /* @__PURE__ */
|
738
|
+
isLoading && /* @__PURE__ */ jsx19(loader_default, { size: "sm" })
|
1808
739
|
]
|
1809
740
|
}
|
1810
741
|
),
|
@@ -1827,12 +758,12 @@ var input_field_default2 = InputField;
|
|
1827
758
|
// src/components/form/components/textarea.tsx
|
1828
759
|
import { Box as Box9, Textarea as ChakraTextarea } from "@chakra-ui/react";
|
1829
760
|
import React4 from "react";
|
1830
|
-
import { jsx as
|
761
|
+
import { jsx as jsx20, jsxs as jsxs7 } from "react/jsx-runtime";
|
1831
762
|
var TextareaField = React4.forwardRef((props, ref) => {
|
1832
763
|
const { value, isLoading, ...inputProps } = props;
|
1833
|
-
return /* @__PURE__ */
|
1834
|
-
/* @__PURE__ */
|
1835
|
-
isLoading && /* @__PURE__ */
|
764
|
+
return /* @__PURE__ */ jsx20(field_default, { ...inputProps, children: /* @__PURE__ */ jsxs7(Box9, { position: "relative", children: [
|
765
|
+
/* @__PURE__ */ jsx20(ChakraTextarea, { ref, value, ...inputProps }),
|
766
|
+
isLoading && /* @__PURE__ */ jsx20(Box9, { zIndex: 999, top: 2, right: 2, position: "absolute", children: /* @__PURE__ */ jsx20(loader_default, { size: "sm" }) })
|
1836
767
|
] }) });
|
1837
768
|
});
|
1838
769
|
TextareaField.defaultProps = {
|
@@ -1842,10 +773,10 @@ var textarea_default = TextareaField;
|
|
1842
773
|
|
1843
774
|
// src/components/form/index.ts
|
1844
775
|
import {
|
1845
|
-
FormControl as
|
776
|
+
FormControl as FormControl2,
|
1846
777
|
FormControlProps,
|
1847
778
|
FormErrorMessage as FormErrorMessage2,
|
1848
|
-
FormHelperText as
|
779
|
+
FormHelperText as FormHelperText2,
|
1849
780
|
FormLabel as FormLabel2,
|
1850
781
|
FormLabelProps,
|
1851
782
|
InputGroup as InputGroup2,
|
@@ -1864,7 +795,7 @@ import {
|
|
1864
795
|
} from "@chakra-ui/react";
|
1865
796
|
|
1866
797
|
// src/components/counter/components/counter.tsx
|
1867
|
-
import { jsx as
|
798
|
+
import { jsx as jsx21, jsxs as jsxs8 } from "react/jsx-runtime";
|
1868
799
|
var Counter = ({
|
1869
800
|
value,
|
1870
801
|
size: size2 = "xs",
|
@@ -1894,7 +825,7 @@ var Counter = ({
|
|
1894
825
|
};
|
1895
826
|
return /* @__PURE__ */ jsxs8(Box10, { children: [
|
1896
827
|
/* @__PURE__ */ jsxs8(HStack, { children: [
|
1897
|
-
/* @__PURE__ */
|
828
|
+
/* @__PURE__ */ jsx21(
|
1898
829
|
IconButton2,
|
1899
830
|
{
|
1900
831
|
"aria-label": "minus",
|
@@ -1902,10 +833,10 @@ var Counter = ({
|
|
1902
833
|
onClick: decrement,
|
1903
834
|
isDisabled: disabled || +value <= min,
|
1904
835
|
size: size2,
|
1905
|
-
icon: /* @__PURE__ */
|
836
|
+
icon: /* @__PURE__ */ jsx21(FiMinus, {})
|
1906
837
|
}
|
1907
838
|
),
|
1908
|
-
/* @__PURE__ */
|
839
|
+
/* @__PURE__ */ jsx21(
|
1909
840
|
input_field_default2,
|
1910
841
|
{
|
1911
842
|
"data-test-id": "CT_Component_Counter_input",
|
@@ -1922,7 +853,7 @@ var Counter = ({
|
|
1922
853
|
type: "number"
|
1923
854
|
}
|
1924
855
|
),
|
1925
|
-
/* @__PURE__ */
|
856
|
+
/* @__PURE__ */ jsx21(
|
1926
857
|
IconButton2,
|
1927
858
|
{
|
1928
859
|
"aria-label": "plus",
|
@@ -1930,11 +861,11 @@ var Counter = ({
|
|
1930
861
|
onClick: increment,
|
1931
862
|
isDisabled: disabled || +value >= max,
|
1932
863
|
size: size2,
|
1933
|
-
icon: /* @__PURE__ */
|
864
|
+
icon: /* @__PURE__ */ jsx21(FiPlus, {})
|
1934
865
|
}
|
1935
866
|
)
|
1936
867
|
] }),
|
1937
|
-
!isError ? /* @__PURE__ */
|
868
|
+
!isError ? /* @__PURE__ */ jsx21(Text3, { mt: 1, color: "black.medium", children: helperText }) : /* @__PURE__ */ jsx21(Text3, { mt: 1, color: "danger.500", children: error })
|
1938
869
|
] });
|
1939
870
|
};
|
1940
871
|
var counter_default = Counter;
|
@@ -1958,8 +889,8 @@ import {
|
|
1958
889
|
import { css } from "@emotion/react";
|
1959
890
|
import { flexRender, getCoreRowModel, getSortedRowModel, useReactTable } from "@tanstack/react-table";
|
1960
891
|
import * as React5 from "react";
|
1961
|
-
import { useRef
|
1962
|
-
import { jsx as
|
892
|
+
import { useRef } from "react";
|
893
|
+
import { jsx as jsx22, jsxs as jsxs9 } from "react/jsx-runtime";
|
1963
894
|
var getCommonPinningStyles = (column) => {
|
1964
895
|
const isPinned = column.getIsPinned();
|
1965
896
|
const isLastLeftPinnedColumn = isPinned === "left" && column.getIsLastColumn("left");
|
@@ -1995,7 +926,7 @@ var useDataTable = ({
|
|
1995
926
|
{
|
1996
927
|
id: "select",
|
1997
928
|
size: 32,
|
1998
|
-
header: ({ table: table2 }) => /* @__PURE__ */
|
929
|
+
header: ({ table: table2 }) => /* @__PURE__ */ jsx22(
|
1999
930
|
Checkbox2,
|
2000
931
|
{
|
2001
932
|
"data-test-id": "select-header-data-table",
|
@@ -2006,7 +937,7 @@ var useDataTable = ({
|
|
2006
937
|
}
|
2007
938
|
}
|
2008
939
|
),
|
2009
|
-
cell: ({ row }) => /* @__PURE__ */
|
940
|
+
cell: ({ row }) => /* @__PURE__ */ jsx22(
|
2010
941
|
Checkbox2,
|
2011
942
|
{
|
2012
943
|
"data-test-id": `select-data-table-${row.index}`,
|
@@ -2039,9 +970,9 @@ var useDataTable = ({
|
|
2039
970
|
manualSorting,
|
2040
971
|
sortDescFirst,
|
2041
972
|
state: {
|
2042
|
-
columnPinning,
|
2043
973
|
sorting,
|
2044
|
-
rowSelection
|
974
|
+
rowSelection,
|
975
|
+
...columnPinning ? { columnPinning } : {}
|
2045
976
|
},
|
2046
977
|
onRowSelectionChange,
|
2047
978
|
onSortingChange
|
@@ -2076,13 +1007,13 @@ var DataTable = React5.forwardRef((props, ref) => {
|
|
2076
1007
|
}));
|
2077
1008
|
return /* @__PURE__ */ jsxs9(Box11, { ...props, children: [
|
2078
1009
|
isLoading && /* @__PURE__ */ jsxs9(Table, { ...styles == null ? void 0 : styles.table, children: [
|
2079
|
-
/* @__PURE__ */
|
1010
|
+
/* @__PURE__ */ jsx22(Thead, { ...(styles == null ? void 0 : styles.tableHead, headerSticky ? { position: "sticky", top: 0, bg: "white", zIndex: 1 } : {}), children: table.getHeaderGroups().map((headerGroup) => /* @__PURE__ */ jsx22(Tr, { mx: "2", ...styles == null ? void 0 : styles.tableRow, children: headerGroup.headers.map((header, index) => /* @__PURE__ */ jsx22(
|
2080
1011
|
Th,
|
2081
1012
|
{
|
2082
1013
|
colSpan: header.colSpan,
|
2083
1014
|
width: `${header.getSize() + (index === 0 || index === headerGroup.headers.length - 1 ? 16 : 0)}px`,
|
2084
1015
|
...styles == null ? void 0 : styles.tableColumnHeader,
|
2085
|
-
children: /* @__PURE__ */
|
1016
|
+
children: /* @__PURE__ */ jsx22(
|
2086
1017
|
Flex,
|
2087
1018
|
{
|
2088
1019
|
"data-test-id": "CT_component_data-table_loader",
|
@@ -2095,12 +1026,12 @@ var DataTable = React5.forwardRef((props, ref) => {
|
|
2095
1026
|
},
|
2096
1027
|
header.id
|
2097
1028
|
)) }, headerGroup.id)) }),
|
2098
|
-
/* @__PURE__ */
|
1029
|
+
/* @__PURE__ */ jsx22(Tbody, { children: [...Array(5)].map((num) => /* @__PURE__ */ jsx22(Tr, { mx: "2", children: [...Array(generateColumn().length)].map((i) => /* @__PURE__ */ jsx22(Td, { width: 210, children: /* @__PURE__ */ jsx22(Skeleton2, { startColor: "gray.50", endColor: "gray.100", h: "30px", w: "100%" }, i) }, i)) }, num)) })
|
2099
1030
|
] }),
|
2100
1031
|
/* @__PURE__ */ jsxs9(Table, { ...styles == null ? void 0 : styles.table, children: [
|
2101
|
-
/* @__PURE__ */
|
1032
|
+
/* @__PURE__ */ jsx22(Thead, { ...(styles == null ? void 0 : styles.tableHead, headerSticky ? { position: "sticky", top: 0, bg: "white", zIndex: 1 } : {}), children: table.getHeaderGroups().map((headerGroup) => /* @__PURE__ */ jsx22(Tr, { bg: useColorModeValue("initial", "ebony-clay.700"), ...styles == null ? void 0 : styles.tableRow, children: headerGroup.headers.map((header, index) => {
|
2102
1033
|
var _a;
|
2103
|
-
return /* @__PURE__ */
|
1034
|
+
return /* @__PURE__ */ jsx22(
|
2104
1035
|
Th,
|
2105
1036
|
{
|
2106
1037
|
colSpan: header.colSpan,
|
@@ -2116,8 +1047,8 @@ var DataTable = React5.forwardRef((props, ref) => {
|
|
2116
1047
|
align: "center",
|
2117
1048
|
gap: 2,
|
2118
1049
|
children: [
|
2119
|
-
/* @__PURE__ */
|
2120
|
-
/* @__PURE__ */
|
1050
|
+
/* @__PURE__ */ jsx22(Text4, { children: flexRender(header.column.columnDef.header, header.getContext()) }),
|
1051
|
+
/* @__PURE__ */ jsx22(
|
2121
1052
|
Box11,
|
2122
1053
|
{
|
2123
1054
|
as: "span",
|
@@ -2125,9 +1056,9 @@ var DataTable = React5.forwardRef((props, ref) => {
|
|
2125
1056
|
"data-test-id": `CT_Container_SortingIcon_${header.id}`,
|
2126
1057
|
onClick: header.column.getToggleSortingHandler(),
|
2127
1058
|
children: (_a = header.column.getCanSort() && {
|
2128
|
-
asc: /* @__PURE__ */
|
2129
|
-
desc: /* @__PURE__ */
|
2130
|
-
}[header.column.getIsSorted()]) != null ? _a : /* @__PURE__ */
|
1059
|
+
asc: /* @__PURE__ */ jsx22(ChevronUpIcon, {}),
|
1060
|
+
desc: /* @__PURE__ */ jsx22(ChevronDownIcon, {})
|
1061
|
+
}[header.column.getIsSorted()]) != null ? _a : /* @__PURE__ */ jsx22(UpDownIcon, { h: 2 })
|
2131
1062
|
}
|
2132
1063
|
)
|
2133
1064
|
]
|
@@ -2137,9 +1068,9 @@ var DataTable = React5.forwardRef((props, ref) => {
|
|
2137
1068
|
header.id
|
2138
1069
|
);
|
2139
1070
|
}) }, headerGroup.id)) }),
|
2140
|
-
/* @__PURE__ */
|
2141
|
-
const trRef =
|
2142
|
-
return /* @__PURE__ */
|
1071
|
+
/* @__PURE__ */ jsx22(Tbody, { ...styles == null ? void 0 : styles.tableBody, children: table.getRowModel().rows.map((row) => {
|
1072
|
+
const trRef = useRef();
|
1073
|
+
return /* @__PURE__ */ jsx22(
|
2143
1074
|
Tr,
|
2144
1075
|
{
|
2145
1076
|
"data-test-id": "-RU0hNYGRzeVM3HQ4cXHl",
|
@@ -2166,7 +1097,7 @@ var DataTable = React5.forwardRef((props, ref) => {
|
|
2166
1097
|
onRowClick(row.original);
|
2167
1098
|
}
|
2168
1099
|
},
|
2169
|
-
children: row.getVisibleCells().map((cell) => /* @__PURE__ */
|
1100
|
+
children: row.getVisibleCells().map((cell) => /* @__PURE__ */ jsx22(
|
2170
1101
|
Td,
|
2171
1102
|
{
|
2172
1103
|
"data-test-id": `CT_Component_TableCell_${cell.id}`,
|
@@ -2174,7 +1105,7 @@ var DataTable = React5.forwardRef((props, ref) => {
|
|
2174
1105
|
color: useColorModeValue("dark.800", "dark.300"),
|
2175
1106
|
style: { ...getCommonPinningStyles(cell.column) },
|
2176
1107
|
...styles == null ? void 0 : styles.tableCell,
|
2177
|
-
children: /* @__PURE__ */
|
1108
|
+
children: /* @__PURE__ */ jsx22(
|
2178
1109
|
Box11,
|
2179
1110
|
{
|
2180
1111
|
tabIndex: 0,
|
@@ -2221,25 +1152,25 @@ var data_table_default = DataTable;
|
|
2221
1152
|
|
2222
1153
|
// src/components/datepicker/components/datepicker.tsx
|
2223
1154
|
import {
|
2224
|
-
FormControl as
|
1155
|
+
FormControl as FormControl3,
|
2225
1156
|
FormErrorMessage as FormErrorMessage3,
|
2226
|
-
FormHelperText as
|
1157
|
+
FormHelperText as FormHelperText3,
|
2227
1158
|
FormLabel as FormLabel3,
|
2228
1159
|
Input as Input2,
|
2229
1160
|
InputGroup as InputGroup4,
|
2230
1161
|
InputRightElement as InputRightElement3
|
2231
1162
|
} from "@chakra-ui/react";
|
2232
|
-
import { cx as
|
1163
|
+
import { cx as cx8 } from "@chakra-ui/shared-utils";
|
2233
1164
|
import ReactDatePicker from "react-datepicker";
|
2234
1165
|
import { FiCalendar, FiX } from "react-icons/fi";
|
2235
1166
|
|
2236
1167
|
// src/components/datepicker/components/styles.tsx
|
2237
1168
|
import { useColorMode } from "@chakra-ui/system";
|
2238
1169
|
import { Global } from "@emotion/react";
|
2239
|
-
import { jsx as
|
1170
|
+
import { jsx as jsx23 } from "react/jsx-runtime";
|
2240
1171
|
var Styles = () => {
|
2241
1172
|
const { colorMode } = useColorMode();
|
2242
|
-
return /* @__PURE__ */
|
1173
|
+
return /* @__PURE__ */ jsx23(
|
2243
1174
|
Global,
|
2244
1175
|
{
|
2245
1176
|
styles: `
|
@@ -3053,7 +1984,7 @@ var styles_default = Styles;
|
|
3053
1984
|
// src/components/datepicker/components/time-input.tsx
|
3054
1985
|
import { Flex as Flex2, Input, InputGroup as InputGroup3, InputRightAddon as InputRightAddon3, Text as Text5 } from "@chakra-ui/react";
|
3055
1986
|
import React6 from "react";
|
3056
|
-
import { jsx as
|
1987
|
+
import { jsx as jsx24, jsxs as jsxs10 } from "react/jsx-runtime";
|
3057
1988
|
var TimeInput = ({ value, onChange, label, rightAddon }) => {
|
3058
1989
|
const [time, setTime] = React6.useState(value || "00:00");
|
3059
1990
|
const handleChange = (e) => {
|
@@ -3062,10 +1993,10 @@ var TimeInput = ({ value, onChange, label, rightAddon }) => {
|
|
3062
1993
|
if (onChange) onChange(((_b = e.target) == null ? void 0 : _b.value) || "00:00");
|
3063
1994
|
};
|
3064
1995
|
return /* @__PURE__ */ jsxs10(Flex2, { flexDir: "column", alignItems: "center", justifyContent: "center", p: 4, pt: 0, children: [
|
3065
|
-
/* @__PURE__ */
|
1996
|
+
/* @__PURE__ */ jsx24(Text5, { mb: 2, children: label }),
|
3066
1997
|
/* @__PURE__ */ jsxs10(InputGroup3, { alignItems: "center", justifyContent: "center", children: [
|
3067
|
-
/* @__PURE__ */
|
3068
|
-
rightAddon && /* @__PURE__ */
|
1998
|
+
/* @__PURE__ */ jsx24(Input, { onChange: handleChange, type: "time", value: time, "data-test-id": "CT_Component_datepicker_input_time" }),
|
1999
|
+
rightAddon && /* @__PURE__ */ jsx24(InputRightAddon3, { children: rightAddon })
|
3069
2000
|
] })
|
3070
2001
|
] });
|
3071
2002
|
};
|
@@ -3079,7 +2010,7 @@ TimeInput.defaultProps = {
|
|
3079
2010
|
var time_input_default = TimeInput;
|
3080
2011
|
|
3081
2012
|
// src/components/datepicker/components/datepicker.tsx
|
3082
|
-
import { Fragment, jsx as
|
2013
|
+
import { Fragment, jsx as jsx25, jsxs as jsxs11 } from "react/jsx-runtime";
|
3083
2014
|
var Datepicker = ({
|
3084
2015
|
id,
|
3085
2016
|
label,
|
@@ -3104,21 +2035,21 @@ var Datepicker = ({
|
|
3104
2035
|
return {
|
3105
2036
|
timeInputLabel: "",
|
3106
2037
|
showTimeInput: true,
|
3107
|
-
customTimeInput: /* @__PURE__ */
|
2038
|
+
customTimeInput: /* @__PURE__ */ jsx25(time_input_default, {})
|
3108
2039
|
};
|
3109
2040
|
};
|
3110
2041
|
const component = /* @__PURE__ */ jsxs11(Fragment, { children: [
|
3111
|
-
/* @__PURE__ */
|
3112
|
-
/* @__PURE__ */
|
2042
|
+
/* @__PURE__ */ jsx25(styles_default, {}),
|
2043
|
+
/* @__PURE__ */ jsx25(
|
3113
2044
|
ReactDatePicker,
|
3114
2045
|
{
|
3115
2046
|
id,
|
3116
2047
|
name,
|
3117
2048
|
selected,
|
3118
|
-
customInput: /* @__PURE__ */
|
2049
|
+
customInput: /* @__PURE__ */ jsx25(Input2, { autoComplete: "off", ...wrapperStyle }),
|
3119
2050
|
dateFormat,
|
3120
2051
|
showPopperArrow: false,
|
3121
|
-
calendarClassName:
|
2052
|
+
calendarClassName: cx8({ inline: props.inline }),
|
3122
2053
|
showMonthDropdown: showMonth,
|
3123
2054
|
useShortMonthInDropdown: showMonth ? shortMonth : false,
|
3124
2055
|
...getTimeProps(),
|
@@ -3129,16 +2060,16 @@ var Datepicker = ({
|
|
3129
2060
|
if (props.inline) {
|
3130
2061
|
return component;
|
3131
2062
|
}
|
3132
|
-
return /* @__PURE__ */ jsxs11(
|
3133
|
-
label && /* @__PURE__ */
|
2063
|
+
return /* @__PURE__ */ jsxs11(FormControl3, { isRequired, "data-test-id": "CT_Component_datepicker_wrapper", isInvalid: isError, children: [
|
2064
|
+
label && /* @__PURE__ */ jsx25(FormLabel3, { fontSize: "text.sm", children: label }),
|
3134
2065
|
/* @__PURE__ */ jsxs11(InputGroup4, { children: [
|
3135
2066
|
component,
|
3136
2067
|
/* @__PURE__ */ jsxs11(InputRightElement3, { children: [
|
3137
|
-
!value && /* @__PURE__ */
|
3138
|
-
value && /* @__PURE__ */
|
2068
|
+
!value && /* @__PURE__ */ jsx25(FiCalendar, {}),
|
2069
|
+
value && /* @__PURE__ */ jsx25(FiX, { "data-test-id": "bcpJJyCP0z_RIAGZXDU6s", onClick: onClear, cursor: "pointer" })
|
3139
2070
|
] })
|
3140
2071
|
] }),
|
3141
|
-
!isError ? /* @__PURE__ */
|
2072
|
+
!isError ? /* @__PURE__ */ jsx25(FormHelperText3, { fontSize: "text.xs", mt: 1, children: helperText }) : /* @__PURE__ */ jsx25(FormErrorMessage3, { fontSize: "text.xs", mt: 1, children: error })
|
3142
2073
|
] });
|
3143
2074
|
};
|
3144
2075
|
Datepicker.defaultProps = {
|
@@ -3159,10 +2090,10 @@ var datepicker_default = Datepicker;
|
|
3159
2090
|
import { Box as Box12, Input as Input3 } from "@chakra-ui/react";
|
3160
2091
|
import { css as css2 } from "@emotion/react";
|
3161
2092
|
import React7 from "react";
|
3162
|
-
import { jsx as
|
2093
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
3163
2094
|
var DatePickerMonth = ({ onChange, min, max, ...props }) => {
|
3164
2095
|
const [date, setDate] = React7.useState(null);
|
3165
|
-
return /* @__PURE__ */
|
2096
|
+
return /* @__PURE__ */ jsx26(
|
3166
2097
|
Box12,
|
3167
2098
|
{
|
3168
2099
|
fontSize: "12px",
|
@@ -3177,7 +2108,7 @@ var DatePickerMonth = ({ onChange, min, max, ...props }) => {
|
|
3177
2108
|
width: 58px;
|
3178
2109
|
}
|
3179
2110
|
`,
|
3180
|
-
children: /* @__PURE__ */
|
2111
|
+
children: /* @__PURE__ */ jsx26(
|
3181
2112
|
Input3,
|
3182
2113
|
{
|
3183
2114
|
"data-test-id": props["data-test-id"],
|
@@ -3218,7 +2149,7 @@ var datepicker_month_default = DatePickerMonth;
|
|
3218
2149
|
import { Box as Box13 } from "@chakra-ui/react";
|
3219
2150
|
import styled from "@emotion/styled";
|
3220
2151
|
import React8 from "react";
|
3221
|
-
import { jsx as
|
2152
|
+
import { jsx as jsx27, jsxs as jsxs12 } from "react/jsx-runtime";
|
3222
2153
|
var MultiDateWrapper = styled(Box13)`
|
3223
2154
|
display: flex;
|
3224
2155
|
align-items: center;
|
@@ -3236,7 +2167,7 @@ var MultiDatePickerMonth = ({
|
|
3236
2167
|
}) => {
|
3237
2168
|
const [date, setDate] = React8.useState([null, null]);
|
3238
2169
|
return /* @__PURE__ */ jsxs12(MultiDateWrapper, { isError, children: [
|
3239
|
-
/* @__PURE__ */
|
2170
|
+
/* @__PURE__ */ jsx27(
|
3240
2171
|
datepicker_month_default,
|
3241
2172
|
{
|
3242
2173
|
"data-test-id": "CT_DatePickerMonth_StartDate",
|
@@ -3248,8 +2179,8 @@ var MultiDatePickerMonth = ({
|
|
3248
2179
|
max
|
3249
2180
|
}
|
3250
2181
|
),
|
3251
|
-
/* @__PURE__ */
|
3252
|
-
/* @__PURE__ */
|
2182
|
+
/* @__PURE__ */ jsx27(Box13, { children: "-" }),
|
2183
|
+
/* @__PURE__ */ jsx27(
|
3253
2184
|
datepicker_month_default,
|
3254
2185
|
{
|
3255
2186
|
"data-test-id": "CT_DatePickerMonth_EndDate",
|
@@ -3272,7 +2203,7 @@ var multi_datepicker_month_default = MultiDatePickerMonth;
|
|
3272
2203
|
|
3273
2204
|
// src/components/dialog/components/dialog.tsx
|
3274
2205
|
import { Modal, ModalBody, ModalContent, ModalFooter, ModalHeader, ModalOverlay, Text as Text6 } from "@chakra-ui/react";
|
3275
|
-
import { jsx as
|
2206
|
+
import { jsx as jsx28, jsxs as jsxs13 } from "react/jsx-runtime";
|
3276
2207
|
var Dialog = ({
|
3277
2208
|
title,
|
3278
2209
|
content,
|
@@ -3283,11 +2214,11 @@ var Dialog = ({
|
|
3283
2214
|
...props
|
3284
2215
|
}) => {
|
3285
2216
|
return /* @__PURE__ */ jsxs13(Modal, { ...props, children: [
|
3286
|
-
isModalOverlay && /* @__PURE__ */
|
2217
|
+
isModalOverlay && /* @__PURE__ */ jsx28(ModalOverlay, { pointerEvents: isOverlayClickable ? "auto" : "none" }),
|
3287
2218
|
/* @__PURE__ */ jsxs13(ModalContent, { bgColor: "neutral.50", fontFamily: "Poppins", width, children: [
|
3288
|
-
/* @__PURE__ */
|
3289
|
-
/* @__PURE__ */
|
3290
|
-
/* @__PURE__ */
|
2219
|
+
/* @__PURE__ */ jsx28(ModalHeader, { bgColor: "neutral.200", py: 2, px: 4, borderTopRadius: "sm", children: /* @__PURE__ */ jsx28(Text6, { textStyle: "text.lg", fontWeight: "normal", children: title }) }),
|
2220
|
+
/* @__PURE__ */ jsx28(ModalBody, { p: 4, textStyle: "text.md", children: content }),
|
2221
|
+
/* @__PURE__ */ jsx28(ModalFooter, { bgColor: "neutral.200", p: 4, borderBottomRadius: "sm", children: footer })
|
3291
2222
|
] })
|
3292
2223
|
] });
|
3293
2224
|
};
|
@@ -3303,11 +2234,11 @@ import { Flex as Flex4, HStack as HStack3 } from "@chakra-ui/react";
|
|
3303
2234
|
|
3304
2235
|
// src/components/header/components/logo.tsx
|
3305
2236
|
import { Box as Box14, Image, useColorModeValue as useColorModeValue2 } from "@chakra-ui/react";
|
3306
|
-
import { jsx as
|
2237
|
+
import { jsx as jsx29 } from "react/jsx-runtime";
|
3307
2238
|
var Logo = ({ url, imageUrl, height }) => {
|
3308
2239
|
if (url)
|
3309
|
-
return /* @__PURE__ */
|
3310
|
-
return /* @__PURE__ */
|
2240
|
+
return /* @__PURE__ */ jsx29(Box14, { as: "a", href: url, cursor: "pointer", target: "_self", children: /* @__PURE__ */ jsx29(Image, { w: "100%", h: height != null ? height : 9, maxH: height != null ? height : 9, src: imageUrl, alt: imageUrl }) });
|
2241
|
+
return /* @__PURE__ */ jsx29(Image, { w: "100%", h: height != null ? height : 9, maxH: height != null ? height : 9, src: imageUrl, alt: imageUrl });
|
3311
2242
|
};
|
3312
2243
|
Logo.defaultProps = {
|
3313
2244
|
url: void 0,
|
@@ -3331,12 +2262,12 @@ import {
|
|
3331
2262
|
VStack
|
3332
2263
|
} from "@chakra-ui/react";
|
3333
2264
|
import { FiPower } from "react-icons/fi";
|
3334
|
-
import { Fragment as Fragment2, jsx as
|
2265
|
+
import { Fragment as Fragment2, jsx as jsx30, jsxs as jsxs14 } from "react/jsx-runtime";
|
3335
2266
|
var Profile = ({ color, brandColor, data, onLogout }) => {
|
3336
2267
|
var _a;
|
3337
2268
|
const { isOpen, onToggle, onClose } = useDisclosure();
|
3338
2269
|
return /* @__PURE__ */ jsxs14(Popover, { placement: "bottom-end", isOpen, onClose, children: [
|
3339
|
-
/* @__PURE__ */
|
2270
|
+
/* @__PURE__ */ jsx30(
|
3340
2271
|
Box15,
|
3341
2272
|
{
|
3342
2273
|
"data-test-id": "WE0UYbA93LOZy6S09IhDO",
|
@@ -3349,20 +2280,20 @@ var Profile = ({ color, brandColor, data, onLogout }) => {
|
|
3349
2280
|
color,
|
3350
2281
|
children: /* @__PURE__ */ jsxs14(HStack2, { children: [
|
3351
2282
|
/* @__PURE__ */ jsxs14(VStack, { alignItems: "flex-end", spacing: 0, ml: "2", color, children: [
|
3352
|
-
/* @__PURE__ */
|
2283
|
+
/* @__PURE__ */ jsx30(Text7, { textStyle: "text.xs", mb: 1, children: data == null ? void 0 : data.email }),
|
3353
2284
|
/* @__PURE__ */ jsxs14(Flex3, { alignItems: "center", children: [
|
3354
|
-
(data == null ? void 0 : data.userRole) && /* @__PURE__ */
|
3355
|
-
/* @__PURE__ */
|
2285
|
+
(data == null ? void 0 : data.userRole) && /* @__PURE__ */ jsx30(Text7, { textStyle: "text.xs", children: (data == null ? void 0 : data.userRole) || "user" }),
|
2286
|
+
/* @__PURE__ */ jsx30(Box15, { h: "3", mx: "1", borderLeft: "1px solid", borderColor: "neutral.400" }),
|
3356
2287
|
typeof (data == null ? void 0 : data.office) === "object" ? /* @__PURE__ */ jsxs14(Fragment2, { children: [
|
3357
|
-
/* @__PURE__ */
|
2288
|
+
/* @__PURE__ */ jsx30(Text7, { textStyle: "text.xs", children: data.office[0] }),
|
3358
2289
|
data.office.length > 1 && /* @__PURE__ */ jsxs14(badge_default, { ml: "1", pill: true, variant: "neutral-light", children: [
|
3359
2290
|
data.office.length - 1,
|
3360
2291
|
"+"
|
3361
2292
|
] })
|
3362
|
-
] }) : /* @__PURE__ */
|
2293
|
+
] }) : /* @__PURE__ */ jsx30(Text7, { textStyle: "text.xs", children: (data == null ? void 0 : data.office) || "office" })
|
3363
2294
|
] })
|
3364
2295
|
] }),
|
3365
|
-
/* @__PURE__ */
|
2296
|
+
/* @__PURE__ */ jsx30(PopoverTrigger, { children: /* @__PURE__ */ jsx30(
|
3366
2297
|
Avatar,
|
3367
2298
|
{
|
3368
2299
|
size: "sm",
|
@@ -3379,8 +2310,8 @@ var Profile = ({ color, brandColor, data, onLogout }) => {
|
|
3379
2310
|
}
|
3380
2311
|
),
|
3381
2312
|
/* @__PURE__ */ jsxs14(PopoverContent, { bg: "white", maxW: 200, children: [
|
3382
|
-
/* @__PURE__ */
|
3383
|
-
/* @__PURE__ */
|
2313
|
+
/* @__PURE__ */ jsx30(PopoverArrow, { bg: "white" }),
|
2314
|
+
/* @__PURE__ */ jsx30(PopoverBody, { p: 1, children: /* @__PURE__ */ jsxs14(
|
3384
2315
|
Flex3,
|
3385
2316
|
{
|
3386
2317
|
"data-test-id": "gA7F9pucPX_Q3_dkgXIYZ",
|
@@ -3393,8 +2324,8 @@ var Profile = ({ color, brandColor, data, onLogout }) => {
|
|
3393
2324
|
onClick: onLogout,
|
3394
2325
|
textStyle: "text.xs",
|
3395
2326
|
children: [
|
3396
|
-
/* @__PURE__ */
|
3397
|
-
/* @__PURE__ */
|
2327
|
+
/* @__PURE__ */ jsx30(FiPower, {}),
|
2328
|
+
/* @__PURE__ */ jsx30(Text7, { ml: 2, children: "Logout" })
|
3398
2329
|
]
|
3399
2330
|
}
|
3400
2331
|
) })
|
@@ -3412,10 +2343,10 @@ var profile_default = Profile;
|
|
3412
2343
|
// src/components/header/components/switch-mode.tsx
|
3413
2344
|
import { Box as Box16, useColorMode as useColorMode2 } from "@chakra-ui/react";
|
3414
2345
|
import { FiMoon, FiSun } from "react-icons/fi";
|
3415
|
-
import { jsx as
|
2346
|
+
import { jsx as jsx31 } from "react/jsx-runtime";
|
3416
2347
|
var SwitchMode = () => {
|
3417
2348
|
const { colorMode, toggleColorMode } = useColorMode2();
|
3418
|
-
return /* @__PURE__ */
|
2349
|
+
return /* @__PURE__ */ jsx31(Box16, { "data-test-id": "rhYuTDCiWkFqr96upiEEh", mx: 5, onClick: toggleColorMode, cursor: "pointer", children: colorMode === "light" ? /* @__PURE__ */ jsx31(FiMoon, { size: 20 }) : /* @__PURE__ */ jsx31(FiSun, { size: 20 }) });
|
3419
2350
|
};
|
3420
2351
|
var switch_mode_default = SwitchMode;
|
3421
2352
|
|
@@ -3435,9 +2366,9 @@ function environmentName(env) {
|
|
3435
2366
|
}
|
3436
2367
|
|
3437
2368
|
// src/components/header/components/version.tsx
|
3438
|
-
import { Fragment as Fragment3, jsx as
|
2369
|
+
import { Fragment as Fragment3, jsx as jsx32, jsxs as jsxs15 } from "react/jsx-runtime";
|
3439
2370
|
var Version = ({ hideEnv, version, environment, onOpenModalRelease }) => /* @__PURE__ */ jsxs15(Fragment3, { children: [
|
3440
|
-
version && /* @__PURE__ */
|
2371
|
+
version && /* @__PURE__ */ jsx32(
|
3441
2372
|
badge_default,
|
3442
2373
|
{
|
3443
2374
|
fontSize: "8px",
|
@@ -3448,7 +2379,7 @@ var Version = ({ hideEnv, version, environment, onOpenModalRelease }) => /* @__P
|
|
3448
2379
|
children: version
|
3449
2380
|
}
|
3450
2381
|
),
|
3451
|
-
!hideEnv && environmentName(environment) !== null && version && /* @__PURE__ */
|
2382
|
+
!hideEnv && environmentName(environment) !== null && version && /* @__PURE__ */ jsx32(
|
3452
2383
|
Box17,
|
3453
2384
|
{
|
3454
2385
|
background: "primary.50",
|
@@ -3471,7 +2402,7 @@ Version.defaultProps = {
|
|
3471
2402
|
var version_default = Version;
|
3472
2403
|
|
3473
2404
|
// src/components/header/components/header.tsx
|
3474
|
-
import { jsx as
|
2405
|
+
import { jsx as jsx33, jsxs as jsxs16 } from "react/jsx-runtime";
|
3475
2406
|
var Header = ({
|
3476
2407
|
brandColor,
|
3477
2408
|
data,
|
@@ -3488,14 +2419,14 @@ var Header = ({
|
|
3488
2419
|
profile,
|
3489
2420
|
bg = "white",
|
3490
2421
|
...props
|
3491
|
-
}) => /* @__PURE__ */
|
2422
|
+
}) => /* @__PURE__ */ jsx33(Flex4, { minH: 15, bg, shadow: "raised", px: 6, py: 3, alignItems: "center", ...props, children: /* @__PURE__ */ jsxs16(Flex4, { h: "auto", w: "full", alignItems: "center", justifyContent: profile ? "flex-end" : "space-between", pos: "relative", children: [
|
3492
2423
|
mainLogo && /* @__PURE__ */ jsxs16(Flex4, { alignItems: "center", children: [
|
3493
|
-
/* @__PURE__ */
|
2424
|
+
/* @__PURE__ */ jsx33(Logo, { url: urlLogo, imageUrl: mainLogo, height: mainLogoSize }),
|
3494
2425
|
children && children
|
3495
2426
|
] }),
|
3496
2427
|
centerLogo && /* @__PURE__ */ jsxs16(HStack3, { w: "fit-content", spacing: 2, alignItems: "center", pos: "absolute", left: "50%", transform: "translate(-50%,0)", children: [
|
3497
|
-
/* @__PURE__ */
|
3498
|
-
/* @__PURE__ */
|
2428
|
+
/* @__PURE__ */ jsx33(Logo, { url: urlLogo, imageUrl: centerLogo, height: centerLogoSize }),
|
2429
|
+
/* @__PURE__ */ jsx33(
|
3499
2430
|
version_default,
|
3500
2431
|
{
|
3501
2432
|
hideEnv,
|
@@ -3506,8 +2437,8 @@ var Header = ({
|
|
3506
2437
|
)
|
3507
2438
|
] }),
|
3508
2439
|
profile || /* @__PURE__ */ jsxs16(Flex4, { alignItems: "center", children: [
|
3509
|
-
!hideSwitchMode && /* @__PURE__ */
|
3510
|
-
/* @__PURE__ */
|
2440
|
+
!hideSwitchMode && /* @__PURE__ */ jsx33(switch_mode_default, {}),
|
2441
|
+
/* @__PURE__ */ jsx33(profile_default, { color: props.color, brandColor, data, onLogout })
|
3511
2442
|
] })
|
3512
2443
|
] }) });
|
3513
2444
|
Header.defaultProps = {
|
@@ -3559,27 +2490,53 @@ import {
|
|
3559
2490
|
// src/components/list/index.tsx
|
3560
2491
|
import { List, ListIcon, ListItem, ListItemProps, ListProps, OrderedList, UnorderedList } from "@chakra-ui/react";
|
3561
2492
|
|
2493
|
+
// src/components/modal/components/modal-back-button.tsx
|
2494
|
+
import { ChevronLeftIcon } from "@chakra-ui/icons";
|
2495
|
+
import { IconButton as IconButton3 } from "@chakra-ui/react";
|
2496
|
+
import { jsx as jsx34 } from "react/jsx-runtime";
|
2497
|
+
var ModalBackButton = ({ onClick }) => {
|
2498
|
+
return /* @__PURE__ */ jsx34(
|
2499
|
+
IconButton3,
|
2500
|
+
{
|
2501
|
+
icon: /* @__PURE__ */ jsx34(ChevronLeftIcon, { w: "4.5", h: "4.5" }),
|
2502
|
+
size: "sm",
|
2503
|
+
minW: "6",
|
2504
|
+
h: "6",
|
2505
|
+
rounded: "sm",
|
2506
|
+
variant: "solid",
|
2507
|
+
bg: "white",
|
2508
|
+
onClick,
|
2509
|
+
_hover: { bg: "white" },
|
2510
|
+
color: "black",
|
2511
|
+
"aria-label": "Back",
|
2512
|
+
"data-test-id": "modal-back-button"
|
2513
|
+
}
|
2514
|
+
);
|
2515
|
+
};
|
2516
|
+
var modal_back_button_default = ModalBackButton;
|
2517
|
+
|
3562
2518
|
// src/components/modal/components/modal-body.tsx
|
3563
2519
|
import { ModalBody as ChakraModalBody, useColorModeValue as useColorModeValue4 } from "@chakra-ui/react";
|
3564
2520
|
import React9 from "react";
|
3565
|
-
import { jsx as
|
2521
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
3566
2522
|
var ModalBody2 = React9.forwardRef(({ children, ...rest }, ref) => {
|
3567
|
-
return /* @__PURE__ */
|
2523
|
+
return /* @__PURE__ */ jsx35(ChakraModalBody, { px: 4, py: 2, ref, background: useColorModeValue4("white", "mirage.900"), ...rest, children });
|
3568
2524
|
});
|
3569
2525
|
var modal_body_default = ModalBody2;
|
3570
2526
|
|
3571
2527
|
// src/components/modal/components/modal-close-button.tsx
|
3572
2528
|
import { ModalCloseButton as ChakraModalCloseButton, useColorModeValue as useColorModeValue5 } from "@chakra-ui/react";
|
3573
|
-
import { forwardRef as
|
3574
|
-
import { jsx as
|
3575
|
-
var ModalCloseButton =
|
3576
|
-
return /* @__PURE__ */
|
2529
|
+
import { forwardRef as forwardRef9 } from "react";
|
2530
|
+
import { jsx as jsx36 } from "react/jsx-runtime";
|
2531
|
+
var ModalCloseButton = forwardRef9((props, ref) => {
|
2532
|
+
return /* @__PURE__ */ jsx36(
|
3577
2533
|
ChakraModalCloseButton,
|
3578
2534
|
{
|
3579
2535
|
ref,
|
3580
|
-
top:
|
3581
|
-
right:
|
2536
|
+
top: 2,
|
2537
|
+
right: 2,
|
3582
2538
|
size: "sm",
|
2539
|
+
"data-test-id": "modal-close-button",
|
3583
2540
|
background: useColorModeValue5("neutral.50", "mirage.900"),
|
3584
2541
|
...props
|
3585
2542
|
}
|
@@ -3589,10 +2546,10 @@ var modal_close_button_default = ModalCloseButton;
|
|
3589
2546
|
|
3590
2547
|
// src/components/modal/components/modal-footer.tsx
|
3591
2548
|
import { ModalFooter as ChakraModalFooter, useColorModeValue as useColorModeValue6 } from "@chakra-ui/react";
|
3592
|
-
import { forwardRef as
|
3593
|
-
import { jsx as
|
3594
|
-
var ModalFooter2 =
|
3595
|
-
return /* @__PURE__ */
|
2549
|
+
import { forwardRef as forwardRef10 } from "react";
|
2550
|
+
import { jsx as jsx37 } from "react/jsx-runtime";
|
2551
|
+
var ModalFooter2 = forwardRef10(({ children, ...rest }, ref) => {
|
2552
|
+
return /* @__PURE__ */ jsx37(
|
3596
2553
|
ChakraModalFooter,
|
3597
2554
|
{
|
3598
2555
|
ref,
|
@@ -3607,16 +2564,19 @@ var modal_footer_default = ModalFooter2;
|
|
3607
2564
|
|
3608
2565
|
// src/components/modal/components/modal-header.tsx
|
3609
2566
|
import { ModalHeader as ChakraModalHeader, useColorModeValue as useColorModeValue7 } from "@chakra-ui/react";
|
3610
|
-
import { forwardRef as
|
3611
|
-
import { jsx as
|
3612
|
-
var ModalHeader2 =
|
3613
|
-
return /* @__PURE__ */
|
2567
|
+
import { forwardRef as forwardRef11 } from "react";
|
2568
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
2569
|
+
var ModalHeader2 = forwardRef11(({ children, ...rest }, ref) => {
|
2570
|
+
return /* @__PURE__ */ jsx38(
|
3614
2571
|
ChakraModalHeader,
|
3615
2572
|
{
|
3616
2573
|
ref,
|
3617
2574
|
background: useColorModeValue7("neutral.200", "mirage.900"),
|
3618
2575
|
borderTopRadius: "sm",
|
3619
|
-
|
2576
|
+
fontSize: "text.lg",
|
2577
|
+
fontWeight: "400",
|
2578
|
+
px: 4,
|
2579
|
+
py: 2,
|
3620
2580
|
...rest,
|
3621
2581
|
children
|
3622
2582
|
}
|
@@ -3669,7 +2629,7 @@ import {
|
|
3669
2629
|
Flex as Flex6,
|
3670
2630
|
HStack as HStack5,
|
3671
2631
|
Icon as Icon2,
|
3672
|
-
Link as
|
2632
|
+
Link as Link2,
|
3673
2633
|
Popover as Popover2,
|
3674
2634
|
PopoverContent as PopoverContent2,
|
3675
2635
|
PopoverTrigger as PopoverTrigger2,
|
@@ -3696,12 +2656,12 @@ import {
|
|
3696
2656
|
|
3697
2657
|
// src/components/navigation/components/customer-icon.tsx
|
3698
2658
|
import { createIcon } from "@chakra-ui/react";
|
3699
|
-
import { jsx as
|
2659
|
+
import { jsx as jsx39 } from "react/jsx-runtime";
|
3700
2660
|
var CustomerIcon = createIcon({
|
3701
2661
|
displayName: "CustomerIcon",
|
3702
2662
|
viewBox: "0 0 16 16",
|
3703
2663
|
path: [
|
3704
|
-
/* @__PURE__ */
|
2664
|
+
/* @__PURE__ */ jsx39(
|
3705
2665
|
"path",
|
3706
2666
|
{
|
3707
2667
|
fill: "currentColor",
|
@@ -3710,14 +2670,14 @@ var CustomerIcon = createIcon({
|
|
3710
2670
|
clipRule: "inherit"
|
3711
2671
|
}
|
3712
2672
|
),
|
3713
|
-
/* @__PURE__ */
|
2673
|
+
/* @__PURE__ */ jsx39(
|
3714
2674
|
"path",
|
3715
2675
|
{
|
3716
2676
|
fill: "currentColor",
|
3717
2677
|
d: "M12.416 12.698a1.997 1.997 0 0 0-1.75-1.031H5.334a2 2 0 0 0-1.864 1.277 7.722 7.722 0 0 1-.943-1.074 3.329 3.329 0 0 1 2.807-1.537h5.334a3.333 3.333 0 0 1 2.703 1.384c-.275.325-.594.66-.954.98Z"
|
3718
2678
|
}
|
3719
2679
|
),
|
3720
|
-
/* @__PURE__ */
|
2680
|
+
/* @__PURE__ */ jsx39(
|
3721
2681
|
"path",
|
3722
2682
|
{
|
3723
2683
|
fill: "currentColor",
|
@@ -3747,9 +2707,9 @@ var mappingIcon = /* @__PURE__ */ new Map([
|
|
3747
2707
|
]);
|
3748
2708
|
|
3749
2709
|
// src/components/navigation/components/navigation.tsx
|
3750
|
-
import { Fragment as Fragment4, jsx as
|
2710
|
+
import { Fragment as Fragment4, jsx as jsx40, jsxs as jsxs17 } from "react/jsx-runtime";
|
3751
2711
|
var Navigation = ({ navigations, activePath, as, host, ...props }) => {
|
3752
|
-
return /* @__PURE__ */
|
2712
|
+
return /* @__PURE__ */ jsx40(
|
3753
2713
|
Box19,
|
3754
2714
|
{
|
3755
2715
|
bg: useColorModeValue8("white", "ebony-clay.800"),
|
@@ -3757,11 +2717,11 @@ var Navigation = ({ navigations, activePath, as, host, ...props }) => {
|
|
3757
2717
|
borderRadius: "md",
|
3758
2718
|
overflowX: "auto",
|
3759
2719
|
...props,
|
3760
|
-
children: /* @__PURE__ */
|
2720
|
+
children: /* @__PURE__ */ jsx40(Flex6, { alignItems: "center", p: 2, children: /* @__PURE__ */ jsx40(HStack5, { spacing: 2, children: navigations == null ? void 0 : navigations.map((navigation) => {
|
3761
2721
|
const isActive = activePath.startsWith(navigation.navLink || "");
|
3762
2722
|
const activeBg = isActive ? "primary.500" : void 0;
|
3763
|
-
return /* @__PURE__ */
|
3764
|
-
/* @__PURE__ */
|
2723
|
+
return /* @__PURE__ */ jsx40(Popover2, { trigger: "hover", placement: "bottom-start", children: ({ isOpen }) => /* @__PURE__ */ jsxs17(Fragment4, { children: [
|
2724
|
+
/* @__PURE__ */ jsx40(PopoverTrigger2, { children: /* @__PURE__ */ jsxs17(
|
3765
2725
|
Box19,
|
3766
2726
|
{
|
3767
2727
|
display: "flex",
|
@@ -3775,13 +2735,13 @@ var Navigation = ({ navigations, activePath, as, host, ...props }) => {
|
|
3775
2735
|
color: isActive ? "white" : "inherit",
|
3776
2736
|
p: 2,
|
3777
2737
|
children: [
|
3778
|
-
/* @__PURE__ */
|
3779
|
-
/* @__PURE__ */
|
3780
|
-
/* @__PURE__ */
|
2738
|
+
/* @__PURE__ */ jsx40(Icon2, { as: mappingIcon.get(navigation.title), mr: 2 }),
|
2739
|
+
/* @__PURE__ */ jsx40(Text8, { whiteSpace: "nowrap", fontSize: "text.sm", fontWeight: 400, children: navigation.title }),
|
2740
|
+
/* @__PURE__ */ jsx40(ChevronDownIcon2, { ml: 2 })
|
3781
2741
|
]
|
3782
2742
|
}
|
3783
2743
|
) }),
|
3784
|
-
navigation.children && /* @__PURE__ */
|
2744
|
+
navigation.children && /* @__PURE__ */ jsx40(Portal, { children: /* @__PURE__ */ jsx40(Box19, { zIndex: "popover", children: /* @__PURE__ */ jsx40(
|
3785
2745
|
PopoverContent2,
|
3786
2746
|
{
|
3787
2747
|
bg: useColorModeValue8("white", "ebony-clay.800"),
|
@@ -3793,8 +2753,8 @@ var Navigation = ({ navigations, activePath, as, host, ...props }) => {
|
|
3793
2753
|
const link = navHost ? `${navHost}${navLink}` : navLink;
|
3794
2754
|
const isLocalLink = host === navHost;
|
3795
2755
|
const isActiveSub = activePath === navLink;
|
3796
|
-
return /* @__PURE__ */
|
3797
|
-
|
2756
|
+
return /* @__PURE__ */ jsx40(
|
2757
|
+
Link2,
|
3798
2758
|
{
|
3799
2759
|
as: isLocalLink ? as : void 0,
|
3800
2760
|
href: link,
|
@@ -3824,9 +2784,9 @@ var Navigation = ({ navigations, activePath, as, host, ...props }) => {
|
|
3824
2784
|
px: 6,
|
3825
2785
|
py: 4,
|
3826
2786
|
children: [
|
3827
|
-
/* @__PURE__ */
|
3828
|
-
/* @__PURE__ */
|
3829
|
-
isActiveSub && /* @__PURE__ */
|
2787
|
+
/* @__PURE__ */ jsx40(Icon2, { as: mappingIcon.get(navigation.title), mr: 3 }),
|
2788
|
+
/* @__PURE__ */ jsx40(Text8, { fontSize: "text.sm", children: title }),
|
2789
|
+
isActiveSub && /* @__PURE__ */ jsx40(
|
3830
2790
|
Box19,
|
3831
2791
|
{
|
3832
2792
|
width: 0.5,
|
@@ -3860,9 +2820,9 @@ Navigation.defaultProps = {
|
|
3860
2820
|
var navigation_default = Navigation;
|
3861
2821
|
|
3862
2822
|
// src/components/navigation/components/navigation-bar.tsx
|
3863
|
-
import { Box as Box20, Button as Button2, Flex as Flex7, Link as
|
2823
|
+
import { Box as Box20, Button as Button2, Flex as Flex7, Link as Link3, Popover as Popover3, PopoverContent as PopoverContent3, PopoverTrigger as PopoverTrigger3, Text as Text9 } from "@chakra-ui/react";
|
3864
2824
|
import * as Icon3 from "@ctlyst.id/internal-icon";
|
3865
|
-
import { Fragment as Fragment5, jsx as
|
2825
|
+
import { Fragment as Fragment5, jsx as jsx41, jsxs as jsxs18 } from "react/jsx-runtime";
|
3866
2826
|
var NavigationBar = ({
|
3867
2827
|
navigations,
|
3868
2828
|
isFetched,
|
@@ -3877,14 +2837,14 @@ var NavigationBar = ({
|
|
3877
2837
|
}
|
3878
2838
|
return subMenu.navHost + subMenu.navLink;
|
3879
2839
|
};
|
3880
|
-
return /* @__PURE__ */
|
2840
|
+
return /* @__PURE__ */ jsx41(
|
3881
2841
|
Box20,
|
3882
2842
|
{
|
3883
2843
|
hidden: isFetched && navigations === void 0,
|
3884
2844
|
backgroundRepeat: "repeat-x",
|
3885
2845
|
"data-test-id": "CT_component_navigation_cms",
|
3886
2846
|
...props,
|
3887
|
-
children: /* @__PURE__ */
|
2847
|
+
children: /* @__PURE__ */ jsx41(
|
3888
2848
|
Flex7,
|
3889
2849
|
{
|
3890
2850
|
bg: "white",
|
@@ -3901,8 +2861,8 @@ var NavigationBar = ({
|
|
3901
2861
|
const childMenu = item.children.filter((subMenu) => asPath == null ? void 0 : asPath.includes(subMenu.navLink));
|
3902
2862
|
const isActive = pathname == null ? void 0 : pathname.startsWith((_a = childMenu[0]) == null ? void 0 : _a.navLink);
|
3903
2863
|
const activeBg = isActive ? "primary.500" : void 0;
|
3904
|
-
return /* @__PURE__ */
|
3905
|
-
/* @__PURE__ */
|
2864
|
+
return /* @__PURE__ */ jsx41(Popover3, { isLazy: true, trigger: "hover", placement: "bottom-start", openDelay: 100, closeDelay: 100, children: ({ isOpen, onClose }) => /* @__PURE__ */ jsxs18(Fragment5, { children: [
|
2865
|
+
/* @__PURE__ */ jsx41(PopoverTrigger3, { children: /* @__PURE__ */ jsx41(
|
3906
2866
|
Button2,
|
3907
2867
|
{
|
3908
2868
|
h: 7.5,
|
@@ -3916,12 +2876,12 @@ var NavigationBar = ({
|
|
3916
2876
|
backgroundColor: isOpen && !isActive ? "neutral.400" : activeBg,
|
3917
2877
|
color: isActive ? "primary.50" : "black.high",
|
3918
2878
|
leftIcon: mappingIcon2.get(item.title),
|
3919
|
-
rightIcon: /* @__PURE__ */
|
2879
|
+
rightIcon: /* @__PURE__ */ jsx41(Icon3.ChevronDown, { size: 4, color: "inherit" }),
|
3920
2880
|
children: item.title
|
3921
2881
|
}
|
3922
2882
|
) }),
|
3923
|
-
item.children && /* @__PURE__ */
|
3924
|
-
|
2883
|
+
item.children && /* @__PURE__ */ jsx41(PopoverContent3, { border: "none", shadow: "raised", py: 1, width: 240, children: item.children.map((subMenu) => /* @__PURE__ */ jsxs18(
|
2884
|
+
Link3,
|
3925
2885
|
{
|
3926
2886
|
href: urlMenu(subMenu),
|
3927
2887
|
display: "flex",
|
@@ -3940,7 +2900,7 @@ var NavigationBar = ({
|
|
3940
2900
|
"data-test-id": `CT_component_navigation_link-${item.id}`,
|
3941
2901
|
children: [
|
3942
2902
|
mappingIcon2.get(item.title),
|
3943
|
-
/* @__PURE__ */
|
2903
|
+
/* @__PURE__ */ jsx41(Text9, { textStyle: "text-sm", ml: 3, children: subMenu.title })
|
3944
2904
|
]
|
3945
2905
|
},
|
3946
2906
|
subMenu.id
|
@@ -3958,18 +2918,18 @@ NavigationBar.defaultProps = {
|
|
3958
2918
|
var navigation_bar_default = NavigationBar;
|
3959
2919
|
|
3960
2920
|
// src/components/pagination/components/pagination.tsx
|
3961
|
-
import { ArrowLeftIcon, ArrowRightIcon, ChevronLeftIcon, ChevronRightIcon } from "@chakra-ui/icons";
|
2921
|
+
import { ArrowLeftIcon, ArrowRightIcon, ChevronLeftIcon as ChevronLeftIcon2, ChevronRightIcon } from "@chakra-ui/icons";
|
3962
2922
|
import { Box as Box21, Text as Text10, useColorModeValue as useColorModeValue10 } from "@chakra-ui/react";
|
3963
2923
|
|
3964
2924
|
// src/components/pagination/components/pagination-button.tsx
|
3965
|
-
import { Button as Button3, forwardRef as
|
3966
|
-
import { jsx as
|
3967
|
-
var PaginationButton =
|
2925
|
+
import { Button as Button3, forwardRef as forwardRef12, useColorModeValue as useColorModeValue9 } from "@chakra-ui/react";
|
2926
|
+
import { jsx as jsx42 } from "react/jsx-runtime";
|
2927
|
+
var PaginationButton = forwardRef12(({ className, style, isActive, children, ...rest }, ref) => {
|
3968
2928
|
const btnBg = useColorModeValue9("neutral.300", "mirage.900");
|
3969
2929
|
const btnColor = useColorModeValue9("black.high", "primary.300");
|
3970
2930
|
const btnNotActiveBg = useColorModeValue9("secondary.50", "primary.500");
|
3971
2931
|
const btnNotActiveColor = useColorModeValue9("primary.500", "white");
|
3972
|
-
return /* @__PURE__ */
|
2932
|
+
return /* @__PURE__ */ jsx42(
|
3973
2933
|
Button3,
|
3974
2934
|
{
|
3975
2935
|
"data-test-id": "Pagination-Button",
|
@@ -4008,7 +2968,7 @@ var pagination_button_default = PaginationButton;
|
|
4008
2968
|
|
4009
2969
|
// src/components/pagination/components/pagination-button-trigger.tsx
|
4010
2970
|
import { VisuallyHidden } from "@chakra-ui/react";
|
4011
|
-
import { jsx as
|
2971
|
+
import { jsx as jsx43, jsxs as jsxs19 } from "react/jsx-runtime";
|
4012
2972
|
var PaginationButtonTrigger = ({
|
4013
2973
|
color,
|
4014
2974
|
isDisabled,
|
@@ -4016,7 +2976,7 @@ var PaginationButtonTrigger = ({
|
|
4016
2976
|
visuallyHidden,
|
4017
2977
|
icon
|
4018
2978
|
}) => /* @__PURE__ */ jsxs19(pagination_button_default, { "data-test-id": "DLVCc_fBK35spHm5WxjcJ", color, isDisabled, onClick, children: [
|
4019
|
-
/* @__PURE__ */
|
2979
|
+
/* @__PURE__ */ jsx43(VisuallyHidden, { children: visuallyHidden }),
|
4020
2980
|
icon
|
4021
2981
|
] });
|
4022
2982
|
PaginationButtonTrigger.defaultProps = {
|
@@ -4029,7 +2989,7 @@ PaginationButtonTrigger.defaultProps = {
|
|
4029
2989
|
var pagination_button_trigger_default = PaginationButtonTrigger;
|
4030
2990
|
|
4031
2991
|
// src/components/pagination/components/pagination.tsx
|
4032
|
-
import { jsx as
|
2992
|
+
import { jsx as jsx44, jsxs as jsxs20 } from "react/jsx-runtime";
|
4033
2993
|
var Pagination = ({ className, current, total, onSelect }) => {
|
4034
2994
|
const btnColorDisabled = useColorModeValue10("secondary.100", "primary.500");
|
4035
2995
|
const btnColor = useColorModeValue10("primary.500", "secondary.100");
|
@@ -4060,7 +3020,7 @@ var Pagination = ({ className, current, total, onSelect }) => {
|
|
4060
3020
|
return pageButtons;
|
4061
3021
|
};
|
4062
3022
|
return /* @__PURE__ */ jsxs20(Box21, { className, display: "inline-flex", alignItems: "center", children: [
|
4063
|
-
/* @__PURE__ */
|
3023
|
+
/* @__PURE__ */ jsx44(Box21, { mr: 1, children: /* @__PURE__ */ jsx44(
|
4064
3024
|
pagination_button_trigger_default,
|
4065
3025
|
{
|
4066
3026
|
"data-test-id": "Pagination-Button",
|
@@ -4068,11 +3028,11 @@ var Pagination = ({ className, current, total, onSelect }) => {
|
|
4068
3028
|
isDisabled: disabledPrevious,
|
4069
3029
|
onClick: () => handleSelectPage(1),
|
4070
3030
|
visuallyHidden: "First Page",
|
4071
|
-
icon: /* @__PURE__ */
|
3031
|
+
icon: /* @__PURE__ */ jsx44(ArrowLeftIcon, { width: 2 })
|
4072
3032
|
}
|
4073
3033
|
) }),
|
4074
3034
|
/* @__PURE__ */ jsxs20(Box21, { bg: "neutral.300", borderRadius: "full", children: [
|
4075
|
-
/* @__PURE__ */
|
3035
|
+
/* @__PURE__ */ jsx44(
|
4076
3036
|
pagination_button_trigger_default,
|
4077
3037
|
{
|
4078
3038
|
"data-test-id": "Pagination-Button",
|
@@ -4080,22 +3040,22 @@ var Pagination = ({ className, current, total, onSelect }) => {
|
|
4080
3040
|
isDisabled: disabledPrevious,
|
4081
3041
|
onClick: () => handleSelectPage(current - 1),
|
4082
3042
|
visuallyHidden: "Previous Page",
|
4083
|
-
icon: /* @__PURE__ */
|
3043
|
+
icon: /* @__PURE__ */ jsx44(ChevronLeftIcon2, {})
|
4084
3044
|
}
|
4085
3045
|
),
|
4086
3046
|
generatePages().map((page) => {
|
4087
|
-
return /* @__PURE__ */
|
3047
|
+
return /* @__PURE__ */ jsx44(
|
4088
3048
|
pagination_button_default,
|
4089
3049
|
{
|
4090
3050
|
"data-test-id": "Pagination-Button",
|
4091
3051
|
isActive: page === current,
|
4092
3052
|
onClick: () => typeof page === "number" ? handleSelectPage(page) : null,
|
4093
|
-
children: /* @__PURE__ */
|
3053
|
+
children: /* @__PURE__ */ jsx44(Text10, { scale: 300, fontSize: "text.sm", lineHeight: 18, fontWeight: 500, children: page })
|
4094
3054
|
},
|
4095
3055
|
page
|
4096
3056
|
);
|
4097
3057
|
}),
|
4098
|
-
/* @__PURE__ */
|
3058
|
+
/* @__PURE__ */ jsx44(
|
4099
3059
|
pagination_button_trigger_default,
|
4100
3060
|
{
|
4101
3061
|
"data-test-id": "Pagination-Button",
|
@@ -4103,11 +3063,11 @@ var Pagination = ({ className, current, total, onSelect }) => {
|
|
4103
3063
|
isDisabled: disabledNext,
|
4104
3064
|
onClick: () => handleSelectPage(current + 1),
|
4105
3065
|
visuallyHidden: "Next Page",
|
4106
|
-
icon: /* @__PURE__ */
|
3066
|
+
icon: /* @__PURE__ */ jsx44(ChevronRightIcon, {})
|
4107
3067
|
}
|
4108
3068
|
)
|
4109
3069
|
] }),
|
4110
|
-
/* @__PURE__ */
|
3070
|
+
/* @__PURE__ */ jsx44(Box21, { ml: 1, children: /* @__PURE__ */ jsx44(
|
4111
3071
|
pagination_button_trigger_default,
|
4112
3072
|
{
|
4113
3073
|
"data-test-id": "Pagination-Button",
|
@@ -4115,7 +3075,7 @@ var Pagination = ({ className, current, total, onSelect }) => {
|
|
4115
3075
|
isDisabled: disabledNext,
|
4116
3076
|
onClick: () => handleSelectPage(total),
|
4117
3077
|
visuallyHidden: "Last Page",
|
4118
|
-
icon: /* @__PURE__ */
|
3078
|
+
icon: /* @__PURE__ */ jsx44(ArrowRightIcon, { width: 2 })
|
4119
3079
|
}
|
4120
3080
|
) })
|
4121
3081
|
] });
|
@@ -4129,7 +3089,7 @@ var pagination_default = Pagination;
|
|
4129
3089
|
|
4130
3090
|
// src/components/pagination/components/pagination-detail.tsx
|
4131
3091
|
import { Text as Text11 } from "@chakra-ui/react";
|
4132
|
-
import { jsx as
|
3092
|
+
import { jsx as jsx45 } from "react/jsx-runtime";
|
4133
3093
|
var PaginationDetail = ({
|
4134
3094
|
page,
|
4135
3095
|
limit,
|
@@ -4139,7 +3099,7 @@ var PaginationDetail = ({
|
|
4139
3099
|
lineHeight = 18,
|
4140
3100
|
...rest
|
4141
3101
|
}) => {
|
4142
|
-
return /* @__PURE__ */
|
3102
|
+
return /* @__PURE__ */ jsx45(Text11, { scale, fontSize, lineHeight, ...rest, children: `${(page - 1) * limit + 1}-${limit * page < length ? limit * page : length} dari ${length} item` });
|
4143
3103
|
};
|
4144
3104
|
var pagination_detail_default = PaginationDetail;
|
4145
3105
|
|
@@ -4147,7 +3107,7 @@ var pagination_detail_default = PaginationDetail;
|
|
4147
3107
|
import { Box as Box22, Select, Text as Text12, useColorModeValue as useColorModeValue11 } from "@chakra-ui/react";
|
4148
3108
|
import * as React13 from "react";
|
4149
3109
|
import { FiChevronDown } from "react-icons/fi";
|
4150
|
-
import { jsx as
|
3110
|
+
import { jsx as jsx46, jsxs as jsxs21 } from "react/jsx-runtime";
|
4151
3111
|
var PaginationFilter = ({
|
4152
3112
|
limit,
|
4153
3113
|
label = "Baris per halaman:",
|
@@ -4157,8 +3117,8 @@ var PaginationFilter = ({
|
|
4157
3117
|
}) => {
|
4158
3118
|
const [value, setValue] = React13.useState(limit);
|
4159
3119
|
return /* @__PURE__ */ jsxs21(Box22, { display: "flex", flexDirection: "row", alignItems: "center", children: [
|
4160
|
-
/* @__PURE__ */
|
4161
|
-
/* @__PURE__ */
|
3120
|
+
/* @__PURE__ */ jsx46(Text12, { fontSize: "text.sm", lineHeight: 18, color: useColorModeValue11("neutral.900", "white"), ...rest, children: label }),
|
3121
|
+
/* @__PURE__ */ jsx46(
|
4162
3122
|
Select,
|
4163
3123
|
{
|
4164
3124
|
textAlign: "center",
|
@@ -4167,7 +3127,7 @@ var PaginationFilter = ({
|
|
4167
3127
|
border: "none",
|
4168
3128
|
boxShadow: "none",
|
4169
3129
|
width: 18,
|
4170
|
-
icon: /* @__PURE__ */
|
3130
|
+
icon: /* @__PURE__ */ jsx46(FiChevronDown, {}),
|
4171
3131
|
_focusVisible: { boxShadow: "none" },
|
4172
3132
|
onChange: (e) => {
|
4173
3133
|
const numberValue = Number(e.target.value);
|
@@ -4176,7 +3136,7 @@ var PaginationFilter = ({
|
|
4176
3136
|
},
|
4177
3137
|
value,
|
4178
3138
|
children: items.map((item) => {
|
4179
|
-
return /* @__PURE__ */
|
3139
|
+
return /* @__PURE__ */ jsx46("option", { value: item, children: item }, item);
|
4180
3140
|
})
|
4181
3141
|
}
|
4182
3142
|
)
|
@@ -4211,7 +3171,7 @@ import {
|
|
4211
3171
|
|
4212
3172
|
// src/components/radio/components/radio.tsx
|
4213
3173
|
import { Box as Box23, Radio as ChakraRadio, Text as Text13 } from "@chakra-ui/react";
|
4214
|
-
import { jsx as
|
3174
|
+
import { jsx as jsx47, jsxs as jsxs22 } from "react/jsx-runtime";
|
4215
3175
|
var Radio = ({
|
4216
3176
|
isError = false,
|
4217
3177
|
helpText = "",
|
@@ -4222,8 +3182,8 @@ var Radio = ({
|
|
4222
3182
|
}) => {
|
4223
3183
|
const variant = isError ? "errors" : "unstyled";
|
4224
3184
|
return /* @__PURE__ */ jsxs22(Box23, { children: [
|
4225
|
-
/* @__PURE__ */
|
4226
|
-
/* @__PURE__ */
|
3185
|
+
/* @__PURE__ */ jsx47(Box23, { display: "flex", children: /* @__PURE__ */ jsx47(ChakraRadio, { variant, ...rest, isDisabled, children: children && /* @__PURE__ */ jsx47(Text13, { as: "span", display: "block", textStyle: "text.sm", color: isDisabled ? "black.medium" : "black.high", children }) }) }),
|
3186
|
+
/* @__PURE__ */ jsx47(Box23, { mt: "5px", ml: "24px", children: isError ? /* @__PURE__ */ jsx47(Text13, { as: "span", display: "block", textStyle: "text.xs", color: "danger.500", children: errorText }) : /* @__PURE__ */ jsx47(Text13, { as: "span", display: "block", textStyle: "text.xs", color: "black.medium", children: helpText }) })
|
4227
3187
|
] });
|
4228
3188
|
};
|
4229
3189
|
Radio.displayName = "Radio";
|
@@ -4235,7 +3195,7 @@ Radio.defaultProps = {
|
|
4235
3195
|
|
4236
3196
|
// src/components/radio/components/radio-group.tsx
|
4237
3197
|
import { Box as Box24, RadioGroup as ChakraRadioGroup, Stack as Stack3 } from "@chakra-ui/react";
|
4238
|
-
import { jsx as
|
3198
|
+
import { jsx as jsx48 } from "react/jsx-runtime";
|
4239
3199
|
var RadioGroup = ({
|
4240
3200
|
children,
|
4241
3201
|
label,
|
@@ -4244,7 +3204,7 @@ var RadioGroup = ({
|
|
4244
3204
|
errorMessage,
|
4245
3205
|
...props
|
4246
3206
|
}) => {
|
4247
|
-
return /* @__PURE__ */
|
3207
|
+
return /* @__PURE__ */ jsx48(field_default, { ...props, label, leftHelperText: helpText, isError, errorMessage, children: /* @__PURE__ */ jsx48(Box24, { mt: "12px", children: /* @__PURE__ */ jsx48(ChakraRadioGroup, { ...props, children: /* @__PURE__ */ jsx48(Stack3, { spacing: [1, "16px"], direction: ["column", "row"], children }) }) }) });
|
4248
3208
|
};
|
4249
3209
|
RadioGroup.displayName = "RadioGroup";
|
4250
3210
|
RadioGroup.defaultProps = {
|
@@ -4253,365 +3213,23 @@ RadioGroup.defaultProps = {
|
|
4253
3213
|
errorMessage: ""
|
4254
3214
|
};
|
4255
3215
|
|
4256
|
-
//
|
4257
|
-
import { useCallback as useCallback5, useRef as useRef6, useState as useState8, useId as useId2 } from "react";
|
4258
|
-
function isInputEvent2(value) {
|
4259
|
-
return value && isObject(value) && isObject(value.target);
|
4260
|
-
}
|
4261
|
-
function useRadioGroup(props = {}) {
|
4262
|
-
const {
|
4263
|
-
onChange: onChangeProp,
|
4264
|
-
value: valueProp,
|
4265
|
-
defaultValue,
|
4266
|
-
name: nameProp,
|
4267
|
-
isDisabled,
|
4268
|
-
isFocusable,
|
4269
|
-
isNative,
|
4270
|
-
...htmlProps
|
4271
|
-
} = props;
|
4272
|
-
const [valueState, setValue] = useState8(defaultValue || "");
|
4273
|
-
const isControlled = typeof valueProp !== "undefined";
|
4274
|
-
const value = isControlled ? valueProp : valueState;
|
4275
|
-
const ref = useRef6(null);
|
4276
|
-
const focus = useCallback5(() => {
|
4277
|
-
const rootNode = ref.current;
|
4278
|
-
if (!rootNode)
|
4279
|
-
return;
|
4280
|
-
let query = `input:not(:disabled):checked`;
|
4281
|
-
const firstEnabledAndCheckedInput = rootNode.querySelector(
|
4282
|
-
query
|
4283
|
-
);
|
4284
|
-
if (firstEnabledAndCheckedInput) {
|
4285
|
-
firstEnabledAndCheckedInput.focus();
|
4286
|
-
return;
|
4287
|
-
}
|
4288
|
-
query = `input:not(:disabled)`;
|
4289
|
-
const firstEnabledInput = rootNode.querySelector(query);
|
4290
|
-
firstEnabledInput == null ? void 0 : firstEnabledInput.focus();
|
4291
|
-
}, []);
|
4292
|
-
const uuid = useId2();
|
4293
|
-
const fallbackName = `radio-${uuid}`;
|
4294
|
-
const name = nameProp || fallbackName;
|
4295
|
-
const onChange = useCallback5(
|
4296
|
-
(eventOrValue) => {
|
4297
|
-
const nextValue = isInputEvent2(eventOrValue) ? eventOrValue.target.value : eventOrValue;
|
4298
|
-
if (!isControlled) {
|
4299
|
-
setValue(nextValue);
|
4300
|
-
}
|
4301
|
-
onChangeProp == null ? void 0 : onChangeProp(String(nextValue));
|
4302
|
-
},
|
4303
|
-
[onChangeProp, isControlled]
|
4304
|
-
);
|
4305
|
-
const getRootProps = useCallback5(
|
4306
|
-
(props2 = {}, forwardedRef = null) => ({
|
4307
|
-
...props2,
|
4308
|
-
ref: mergeRefs(forwardedRef, ref),
|
4309
|
-
role: "radiogroup"
|
4310
|
-
}),
|
4311
|
-
[]
|
4312
|
-
);
|
4313
|
-
const getRadioProps = useCallback5(
|
4314
|
-
(props2 = {}, ref2 = null) => {
|
4315
|
-
const checkedKey = isNative ? "checked" : "isChecked";
|
4316
|
-
return {
|
4317
|
-
...props2,
|
4318
|
-
ref: ref2,
|
4319
|
-
name,
|
4320
|
-
[checkedKey]: value != null ? props2.value === value : void 0,
|
4321
|
-
onChange(event) {
|
4322
|
-
onChange(event);
|
4323
|
-
},
|
4324
|
-
"data-radiogroup": true
|
4325
|
-
};
|
4326
|
-
},
|
4327
|
-
[isNative, name, onChange, value]
|
4328
|
-
);
|
4329
|
-
return {
|
4330
|
-
getRootProps,
|
4331
|
-
getRadioProps,
|
4332
|
-
name,
|
4333
|
-
ref,
|
4334
|
-
focus,
|
4335
|
-
setValue,
|
4336
|
-
value,
|
4337
|
-
onChange,
|
4338
|
-
isDisabled,
|
4339
|
-
isFocusable,
|
4340
|
-
htmlProps
|
4341
|
-
};
|
4342
|
-
}
|
4343
|
-
|
4344
|
-
// ../../node_modules/@chakra-ui/radio/dist/chunk-QUJ23J4G.mjs
|
3216
|
+
// src/components/radio/index.ts
|
4345
3217
|
import {
|
4346
|
-
|
4347
|
-
|
4348
|
-
|
4349
|
-
|
4350
|
-
|
4351
|
-
|
4352
|
-
|
4353
|
-
|
4354
|
-
});
|
4355
|
-
var RadioGroup2 = forwardRef15((props, ref) => {
|
4356
|
-
const {
|
4357
|
-
colorScheme,
|
4358
|
-
size: size2,
|
4359
|
-
variant,
|
4360
|
-
children,
|
4361
|
-
className,
|
4362
|
-
isDisabled,
|
4363
|
-
isFocusable,
|
4364
|
-
...rest
|
4365
|
-
} = props;
|
4366
|
-
const { value, onChange, getRootProps, name, htmlProps } = useRadioGroup(rest);
|
4367
|
-
const group = useMemo6(
|
4368
|
-
() => ({
|
4369
|
-
name,
|
4370
|
-
size: size2,
|
4371
|
-
onChange,
|
4372
|
-
colorScheme,
|
4373
|
-
value,
|
4374
|
-
variant,
|
4375
|
-
isDisabled,
|
4376
|
-
isFocusable
|
4377
|
-
}),
|
4378
|
-
[
|
4379
|
-
name,
|
4380
|
-
size2,
|
4381
|
-
onChange,
|
4382
|
-
colorScheme,
|
4383
|
-
value,
|
4384
|
-
variant,
|
4385
|
-
isDisabled,
|
4386
|
-
isFocusable
|
4387
|
-
]
|
4388
|
-
);
|
4389
|
-
return /* @__PURE__ */ jsx51(RadioGroupProvider, { value: group, children: /* @__PURE__ */ jsx51(
|
4390
|
-
chakra9.div,
|
4391
|
-
{
|
4392
|
-
...getRootProps(htmlProps, ref),
|
4393
|
-
className: cx("chakra-radio-group", className),
|
4394
|
-
children
|
4395
|
-
}
|
4396
|
-
) });
|
4397
|
-
});
|
4398
|
-
RadioGroup2.displayName = "RadioGroup";
|
4399
|
-
|
4400
|
-
// ../../node_modules/@chakra-ui/radio/dist/chunk-5XCGGO7V.mjs
|
4401
|
-
import { useCallback as useCallback6, useEffect as useEffect7, useState as useState9, useId as useId3 } from "react";
|
4402
|
-
var visuallyHiddenStyle2 = {
|
4403
|
-
border: "0",
|
4404
|
-
clip: "rect(0, 0, 0, 0)",
|
4405
|
-
height: "1px",
|
4406
|
-
width: "1px",
|
4407
|
-
margin: "-1px",
|
4408
|
-
padding: "0",
|
4409
|
-
overflow: "hidden",
|
4410
|
-
whiteSpace: "nowrap",
|
4411
|
-
position: "absolute"
|
4412
|
-
};
|
4413
|
-
function useRadio(props = {}) {
|
4414
|
-
const {
|
4415
|
-
defaultChecked,
|
4416
|
-
isChecked: isCheckedProp,
|
4417
|
-
isFocusable,
|
4418
|
-
isDisabled: isDisabledProp,
|
4419
|
-
isReadOnly: isReadOnlyProp,
|
4420
|
-
isRequired: isRequiredProp,
|
4421
|
-
onChange,
|
4422
|
-
isInvalid: isInvalidProp,
|
4423
|
-
name,
|
4424
|
-
value,
|
4425
|
-
id: idProp,
|
4426
|
-
"data-radiogroup": dataRadioGroup,
|
4427
|
-
"aria-describedby": ariaDescribedBy,
|
4428
|
-
...htmlProps
|
4429
|
-
} = props;
|
4430
|
-
const uuid = `radio-${useId3()}`;
|
4431
|
-
const formControl = useFormControlContext();
|
4432
|
-
const group = useRadioGroupContext();
|
4433
|
-
const isWithinRadioGroup = !!group || !!dataRadioGroup;
|
4434
|
-
const isWithinFormControl = !!formControl;
|
4435
|
-
let id = isWithinFormControl && !isWithinRadioGroup ? formControl.id : uuid;
|
4436
|
-
id = idProp != null ? idProp : id;
|
4437
|
-
const isDisabled = isDisabledProp != null ? isDisabledProp : formControl == null ? void 0 : formControl.isDisabled;
|
4438
|
-
const isReadOnly = isReadOnlyProp != null ? isReadOnlyProp : formControl == null ? void 0 : formControl.isReadOnly;
|
4439
|
-
const isRequired = isRequiredProp != null ? isRequiredProp : formControl == null ? void 0 : formControl.isRequired;
|
4440
|
-
const isInvalid = isInvalidProp != null ? isInvalidProp : formControl == null ? void 0 : formControl.isInvalid;
|
4441
|
-
const [isFocusVisible2, setIsFocusVisible] = useState9(false);
|
4442
|
-
const [isFocused, setFocused] = useState9(false);
|
4443
|
-
const [isHovered, setHovering] = useState9(false);
|
4444
|
-
const [isActive, setActive] = useState9(false);
|
4445
|
-
const [isCheckedState, setChecked] = useState9(Boolean(defaultChecked));
|
4446
|
-
const isControlled = typeof isCheckedProp !== "undefined";
|
4447
|
-
const isChecked = isControlled ? isCheckedProp : isCheckedState;
|
4448
|
-
useEffect7(() => {
|
4449
|
-
return trackFocusVisible(setIsFocusVisible);
|
4450
|
-
}, []);
|
4451
|
-
const handleChange = useCallback6(
|
4452
|
-
(event) => {
|
4453
|
-
if (isReadOnly || isDisabled) {
|
4454
|
-
event.preventDefault();
|
4455
|
-
return;
|
4456
|
-
}
|
4457
|
-
if (!isControlled) {
|
4458
|
-
setChecked(event.target.checked);
|
4459
|
-
}
|
4460
|
-
onChange == null ? void 0 : onChange(event);
|
4461
|
-
},
|
4462
|
-
[isControlled, isDisabled, isReadOnly, onChange]
|
4463
|
-
);
|
4464
|
-
const onKeyDown = useCallback6(
|
4465
|
-
(event) => {
|
4466
|
-
if (event.key === " ") {
|
4467
|
-
setActive(true);
|
4468
|
-
}
|
4469
|
-
},
|
4470
|
-
[setActive]
|
4471
|
-
);
|
4472
|
-
const onKeyUp = useCallback6(
|
4473
|
-
(event) => {
|
4474
|
-
if (event.key === " ") {
|
4475
|
-
setActive(false);
|
4476
|
-
}
|
4477
|
-
},
|
4478
|
-
[setActive]
|
4479
|
-
);
|
4480
|
-
const getRadioProps = useCallback6(
|
4481
|
-
(props2 = {}, ref = null) => ({
|
4482
|
-
...props2,
|
4483
|
-
ref,
|
4484
|
-
"data-active": dataAttr(isActive),
|
4485
|
-
"data-hover": dataAttr(isHovered),
|
4486
|
-
"data-disabled": dataAttr(isDisabled),
|
4487
|
-
"data-invalid": dataAttr(isInvalid),
|
4488
|
-
"data-checked": dataAttr(isChecked),
|
4489
|
-
"data-focus": dataAttr(isFocused),
|
4490
|
-
"data-focus-visible": dataAttr(isFocused && isFocusVisible2),
|
4491
|
-
"data-readonly": dataAttr(isReadOnly),
|
4492
|
-
"aria-hidden": true,
|
4493
|
-
onMouseDown: callAllHandlers(props2.onMouseDown, () => setActive(true)),
|
4494
|
-
onMouseUp: callAllHandlers(props2.onMouseUp, () => setActive(false)),
|
4495
|
-
onMouseEnter: callAllHandlers(
|
4496
|
-
props2.onMouseEnter,
|
4497
|
-
() => setHovering(true)
|
4498
|
-
),
|
4499
|
-
onMouseLeave: callAllHandlers(
|
4500
|
-
props2.onMouseLeave,
|
4501
|
-
() => setHovering(false)
|
4502
|
-
)
|
4503
|
-
}),
|
4504
|
-
[
|
4505
|
-
isActive,
|
4506
|
-
isHovered,
|
4507
|
-
isDisabled,
|
4508
|
-
isInvalid,
|
4509
|
-
isChecked,
|
4510
|
-
isFocused,
|
4511
|
-
isReadOnly,
|
4512
|
-
isFocusVisible2
|
4513
|
-
]
|
4514
|
-
);
|
4515
|
-
const { onFocus, onBlur } = formControl != null ? formControl : {};
|
4516
|
-
const getInputProps = useCallback6(
|
4517
|
-
(props2 = {}, ref = null) => {
|
4518
|
-
const trulyDisabled = isDisabled && !isFocusable;
|
4519
|
-
return {
|
4520
|
-
...props2,
|
4521
|
-
id,
|
4522
|
-
ref,
|
4523
|
-
type: "radio",
|
4524
|
-
name,
|
4525
|
-
value,
|
4526
|
-
onChange: callAllHandlers(props2.onChange, handleChange),
|
4527
|
-
onBlur: callAllHandlers(
|
4528
|
-
onBlur,
|
4529
|
-
props2.onBlur,
|
4530
|
-
() => setFocused(false)
|
4531
|
-
),
|
4532
|
-
onFocus: callAllHandlers(
|
4533
|
-
onFocus,
|
4534
|
-
props2.onFocus,
|
4535
|
-
() => setFocused(true)
|
4536
|
-
),
|
4537
|
-
onKeyDown: callAllHandlers(props2.onKeyDown, onKeyDown),
|
4538
|
-
onKeyUp: callAllHandlers(props2.onKeyUp, onKeyUp),
|
4539
|
-
checked: isChecked,
|
4540
|
-
disabled: trulyDisabled,
|
4541
|
-
readOnly: isReadOnly,
|
4542
|
-
required: isRequired,
|
4543
|
-
"aria-invalid": ariaAttr(isInvalid),
|
4544
|
-
"aria-disabled": ariaAttr(trulyDisabled),
|
4545
|
-
"aria-required": ariaAttr(isRequired),
|
4546
|
-
"data-readonly": dataAttr(isReadOnly),
|
4547
|
-
"aria-describedby": ariaDescribedBy,
|
4548
|
-
style: visuallyHiddenStyle2
|
4549
|
-
};
|
4550
|
-
},
|
4551
|
-
[
|
4552
|
-
isDisabled,
|
4553
|
-
isFocusable,
|
4554
|
-
id,
|
4555
|
-
name,
|
4556
|
-
value,
|
4557
|
-
handleChange,
|
4558
|
-
onBlur,
|
4559
|
-
onFocus,
|
4560
|
-
onKeyDown,
|
4561
|
-
onKeyUp,
|
4562
|
-
isChecked,
|
4563
|
-
isReadOnly,
|
4564
|
-
isRequired,
|
4565
|
-
isInvalid,
|
4566
|
-
ariaDescribedBy
|
4567
|
-
]
|
4568
|
-
);
|
4569
|
-
const getLabelProps = (props2 = {}, ref = null) => ({
|
4570
|
-
...props2,
|
4571
|
-
ref,
|
4572
|
-
onMouseDown: callAllHandlers(props2.onMouseDown, stopEvent2),
|
4573
|
-
"data-disabled": dataAttr(isDisabled),
|
4574
|
-
"data-checked": dataAttr(isChecked),
|
4575
|
-
"data-invalid": dataAttr(isInvalid)
|
4576
|
-
});
|
4577
|
-
const getRootProps = (props2, ref = null) => ({
|
4578
|
-
...props2,
|
4579
|
-
ref,
|
4580
|
-
"data-disabled": dataAttr(isDisabled),
|
4581
|
-
"data-checked": dataAttr(isChecked),
|
4582
|
-
"data-invalid": dataAttr(isInvalid)
|
4583
|
-
});
|
4584
|
-
const state = {
|
4585
|
-
isInvalid,
|
4586
|
-
isFocused,
|
4587
|
-
isChecked,
|
4588
|
-
isActive,
|
4589
|
-
isHovered,
|
4590
|
-
isDisabled,
|
4591
|
-
isReadOnly,
|
4592
|
-
isRequired
|
4593
|
-
};
|
4594
|
-
return {
|
4595
|
-
state,
|
4596
|
-
getCheckboxProps: getRadioProps,
|
4597
|
-
getRadioProps,
|
4598
|
-
getInputProps,
|
4599
|
-
getLabelProps,
|
4600
|
-
getRootProps,
|
4601
|
-
htmlProps
|
4602
|
-
};
|
4603
|
-
}
|
4604
|
-
function stopEvent2(event) {
|
4605
|
-
event.preventDefault();
|
4606
|
-
event.stopPropagation();
|
4607
|
-
}
|
3218
|
+
RadioGroupContext,
|
3219
|
+
useRadio,
|
3220
|
+
useRadioGroup,
|
3221
|
+
useRadioGroupContext,
|
3222
|
+
UseRadioGroupReturn,
|
3223
|
+
UseRadioProps,
|
3224
|
+
UseRadioReturn
|
3225
|
+
} from "@chakra-ui/react";
|
4608
3226
|
|
4609
3227
|
// src/components/rating/components/rating.tsx
|
4610
3228
|
import { Grid as Grid2 } from "@chakra-ui/react";
|
4611
3229
|
import { Rating as RatingIcon } from "@ctlyst.id/internal-icon";
|
4612
|
-
import { jsx as
|
3230
|
+
import { jsx as jsx49 } from "react/jsx-runtime";
|
4613
3231
|
var Rating = ({ value }) => {
|
4614
|
-
return /* @__PURE__ */
|
3232
|
+
return /* @__PURE__ */ jsx49(Grid2, { gap: "4px", display: "flex", children: [...Array(5)].map((_, i) => /* @__PURE__ */ jsx49(RatingIcon, { color: i < value ? "#FFA230" : "#E0E0E0", size: 24 })) });
|
4615
3233
|
};
|
4616
3234
|
var rating_default = Rating;
|
4617
3235
|
|
@@ -4621,9 +3239,9 @@ import ReactSelect from "react-select";
|
|
4621
3239
|
|
4622
3240
|
// src/components/select/components/select-wrapper.tsx
|
4623
3241
|
import { Box as Box25 } from "@chakra-ui/react";
|
4624
|
-
import { jsx as
|
3242
|
+
import { jsx as jsx50 } from "react/jsx-runtime";
|
4625
3243
|
var SelectWrapper = ({ children }) => {
|
4626
|
-
return /* @__PURE__ */
|
3244
|
+
return /* @__PURE__ */ jsx50(Box25, { children });
|
4627
3245
|
};
|
4628
3246
|
SelectWrapper.defaultProps = {
|
4629
3247
|
isError: false
|
@@ -4959,14 +3577,14 @@ var themeSelect = (theme6) => {
|
|
4959
3577
|
};
|
4960
3578
|
|
4961
3579
|
// src/components/select/components/select.tsx
|
4962
|
-
import { jsx as
|
3580
|
+
import { jsx as jsx51 } from "react/jsx-runtime";
|
4963
3581
|
function Select2({
|
4964
3582
|
styles,
|
4965
3583
|
isError = false,
|
4966
3584
|
...rest
|
4967
3585
|
}) {
|
4968
3586
|
const { colorMode } = useColorMode3();
|
4969
|
-
return /* @__PURE__ */
|
3587
|
+
return /* @__PURE__ */ jsx51(select_wrapper_default, { isError, children: /* @__PURE__ */ jsx51(
|
4970
3588
|
ReactSelect,
|
4971
3589
|
{
|
4972
3590
|
classNamePrefix: "react-select",
|
@@ -4981,14 +3599,14 @@ var select_default = Select2;
|
|
4981
3599
|
// src/components/select/components/select-async.tsx
|
4982
3600
|
import { useColorMode as useColorMode4 } from "@chakra-ui/system";
|
4983
3601
|
import { AsyncPaginate } from "react-select-async-paginate";
|
4984
|
-
import { jsx as
|
3602
|
+
import { jsx as jsx52 } from "react/jsx-runtime";
|
4985
3603
|
function SelectAsync({
|
4986
3604
|
styles,
|
4987
3605
|
isError = false,
|
4988
3606
|
...rest
|
4989
3607
|
}) {
|
4990
3608
|
const { colorMode } = useColorMode4();
|
4991
|
-
return /* @__PURE__ */
|
3609
|
+
return /* @__PURE__ */ jsx52(select_wrapper_default, { isError, children: /* @__PURE__ */ jsx52(
|
4992
3610
|
AsyncPaginate,
|
4993
3611
|
{
|
4994
3612
|
classNamePrefix: "react-select",
|
@@ -5003,10 +3621,10 @@ var select_async_default = SelectAsync;
|
|
5003
3621
|
// src/components/select/components/select-async-creatable.tsx
|
5004
3622
|
import { useColorMode as useColorMode5 } from "@chakra-ui/system";
|
5005
3623
|
import ReactSelectAsyncCreatable from "react-select/async-creatable";
|
5006
|
-
import { jsx as
|
3624
|
+
import { jsx as jsx53 } from "react/jsx-runtime";
|
5007
3625
|
function SelectAsyncCreatable({ styles, isError = false, ...rest }) {
|
5008
3626
|
const { colorMode } = useColorMode5();
|
5009
|
-
return /* @__PURE__ */
|
3627
|
+
return /* @__PURE__ */ jsx53(select_wrapper_default, { isError, children: /* @__PURE__ */ jsx53(
|
5010
3628
|
ReactSelectAsyncCreatable,
|
5011
3629
|
{
|
5012
3630
|
classNamePrefix: "react-select",
|
@@ -5020,10 +3638,10 @@ function SelectAsyncCreatable({ styles, isError = false, ...rest }) {
|
|
5020
3638
|
// src/components/select/components/select-creatable.tsx
|
5021
3639
|
import { useColorMode as useColorMode6 } from "@chakra-ui/system";
|
5022
3640
|
import ReactSelectCreatable from "react-select/creatable";
|
5023
|
-
import { jsx as
|
3641
|
+
import { jsx as jsx54 } from "react/jsx-runtime";
|
5024
3642
|
function SelectCreatable({ styles, isError = false, ...rest }) {
|
5025
3643
|
const { colorMode } = useColorMode6();
|
5026
|
-
return /* @__PURE__ */
|
3644
|
+
return /* @__PURE__ */ jsx54(select_wrapper_default, { isError, children: /* @__PURE__ */ jsx54(
|
5027
3645
|
ReactSelectCreatable,
|
5028
3646
|
{
|
5029
3647
|
classNamePrefix: "react-select",
|
@@ -5035,15 +3653,16 @@ function SelectCreatable({ styles, isError = false, ...rest }) {
|
|
5035
3653
|
}
|
5036
3654
|
|
5037
3655
|
// src/components/switch/components/switch.tsx
|
5038
|
-
import { chakra as
|
3656
|
+
import { chakra as chakra6, Flex as Flex8, forwardRef as forwardRef13, omitThemingProps as omitThemingProps2, useCheckbox as useCheckbox2, useMultiStyleConfig as useMultiStyleConfig2 } from "@chakra-ui/react";
|
3657
|
+
import { cx as cx9, dataAttr } from "@chakra-ui/shared-utils";
|
5039
3658
|
import { Check, Close as Close4 } from "@ctlyst.id/internal-icon";
|
5040
|
-
import { useMemo as
|
5041
|
-
import { jsx as
|
5042
|
-
var Switch =
|
5043
|
-
const styles =
|
5044
|
-
const { spacing: spacing2 = "0.5rem", children, ...ownProps } =
|
3659
|
+
import { useMemo as useMemo4 } from "react";
|
3660
|
+
import { jsx as jsx55, jsxs as jsxs23 } from "react/jsx-runtime";
|
3661
|
+
var Switch = forwardRef13(function Switch2(props, ref) {
|
3662
|
+
const styles = useMultiStyleConfig2("Switch", props);
|
3663
|
+
const { spacing: spacing2 = "0.5rem", children, ...ownProps } = omitThemingProps2(props);
|
5045
3664
|
const { state, getInputProps, getCheckboxProps, getRootProps, getLabelProps } = useCheckbox2(ownProps);
|
5046
|
-
const containerStyles =
|
3665
|
+
const containerStyles = useMemo4(
|
5047
3666
|
() => ({
|
5048
3667
|
display: "inline-block",
|
5049
3668
|
position: "relative",
|
@@ -5053,7 +3672,7 @@ var Switch = forwardRef16(function Switch2(props, ref) {
|
|
5053
3672
|
}),
|
5054
3673
|
[styles.container]
|
5055
3674
|
);
|
5056
|
-
const trackStyles =
|
3675
|
+
const trackStyles = useMemo4(
|
5057
3676
|
() => ({
|
5058
3677
|
display: "inline-flex",
|
5059
3678
|
flexShrink: 0,
|
@@ -5065,7 +3684,7 @@ var Switch = forwardRef16(function Switch2(props, ref) {
|
|
5065
3684
|
}),
|
5066
3685
|
[styles.track]
|
5067
3686
|
);
|
5068
|
-
const labelStyles =
|
3687
|
+
const labelStyles = useMemo4(
|
5069
3688
|
() => ({
|
5070
3689
|
userSelect: "none",
|
5071
3690
|
marginStart: spacing2,
|
@@ -5082,22 +3701,22 @@ var Switch = forwardRef16(function Switch2(props, ref) {
|
|
5082
3701
|
return iconSize[value];
|
5083
3702
|
};
|
5084
3703
|
return /* @__PURE__ */ jsxs23(
|
5085
|
-
|
3704
|
+
chakra6.label,
|
5086
3705
|
{
|
5087
3706
|
...getRootProps(),
|
5088
3707
|
display: "flex",
|
5089
3708
|
alignItems: "center",
|
5090
|
-
className:
|
3709
|
+
className: cx9("chakra-switch", props.className),
|
5091
3710
|
__css: containerStyles,
|
5092
3711
|
children: [
|
5093
|
-
/* @__PURE__ */
|
5094
|
-
/* @__PURE__ */ jsxs23(
|
3712
|
+
/* @__PURE__ */ jsx55("input", { "data-test-id": "", className: "chakra-switch__input", ...getInputProps({}, ref) }),
|
3713
|
+
/* @__PURE__ */ jsxs23(chakra6.span, { ...getCheckboxProps(), className: "chakra-switch__track", pos: "relative", __css: trackStyles, children: [
|
5095
3714
|
/* @__PURE__ */ jsxs23(Flex8, { gap: 2, pos: "absolute", top: "50%", left: "50%", transform: "translate(-50%, -50%)", children: [
|
5096
|
-
/* @__PURE__ */
|
5097
|
-
/* @__PURE__ */
|
3715
|
+
/* @__PURE__ */ jsx55(Check, { color: "white", size: getIconSize(props.size) }),
|
3716
|
+
/* @__PURE__ */ jsx55(Close4, { color: state.isDisabled ? "neutral.600" : "neutral.900", size: getIconSize(props.size) })
|
5098
3717
|
] }),
|
5099
|
-
/* @__PURE__ */
|
5100
|
-
|
3718
|
+
/* @__PURE__ */ jsx55(
|
3719
|
+
chakra6.span,
|
5101
3720
|
{
|
5102
3721
|
__css: styles.thumb,
|
5103
3722
|
className: "chakra-switch__thumb",
|
@@ -5106,8 +3725,8 @@ var Switch = forwardRef16(function Switch2(props, ref) {
|
|
5106
3725
|
}
|
5107
3726
|
)
|
5108
3727
|
] }),
|
5109
|
-
children && /* @__PURE__ */
|
5110
|
-
|
3728
|
+
children && /* @__PURE__ */ jsx55(
|
3729
|
+
chakra6.span,
|
5111
3730
|
{
|
5112
3731
|
className: "chakra-switch__label",
|
5113
3732
|
color: state.isDisabled ? "black.low" : "black.high",
|
@@ -5142,14 +3761,14 @@ import {
|
|
5142
3761
|
} from "@chakra-ui/react";
|
5143
3762
|
|
5144
3763
|
// src/components/tabs/components/tab.tsx
|
5145
|
-
import { Button as Button4, Flex as Flex9, forwardRef as
|
5146
|
-
import { jsx as
|
5147
|
-
var Tab =
|
3764
|
+
import { Button as Button4, Flex as Flex9, forwardRef as forwardRef14, useMultiStyleConfig as useMultiStyleConfig3, useTab } from "@chakra-ui/react";
|
3765
|
+
import { jsx as jsx56, jsxs as jsxs24 } from "react/jsx-runtime";
|
3766
|
+
var Tab = forwardRef14((props, ref) => {
|
5148
3767
|
var _a, _b;
|
5149
3768
|
const tabProps = useTab({ ...props, ref });
|
5150
3769
|
const isSelected = !!tabProps["aria-selected"];
|
5151
|
-
const styles =
|
5152
|
-
return /* @__PURE__ */
|
3770
|
+
const styles = useMultiStyleConfig3("Tabs", tabProps);
|
3771
|
+
return /* @__PURE__ */ jsx56(
|
5153
3772
|
Button4,
|
5154
3773
|
{
|
5155
3774
|
"data-test-id": props["data-test-id"],
|
@@ -5221,7 +3840,7 @@ import {
|
|
5221
3840
|
} from "@chakra-ui/react";
|
5222
3841
|
|
5223
3842
|
// src/components/text/index.ts
|
5224
|
-
import { Code, CodeProps, Heading, HeadingProps, Link as
|
3843
|
+
import { Code, CodeProps, Heading, HeadingProps, Link as Link4, LinkProps, Text as Text14, TextProps } from "@chakra-ui/react";
|
5225
3844
|
|
5226
3845
|
// src/components/tooltip/index.ts
|
5227
3846
|
import { Tooltip, TooltipProps } from "@chakra-ui/react";
|
@@ -5241,7 +3860,7 @@ var messages = {
|
|
5241
3860
|
};
|
5242
3861
|
|
5243
3862
|
// src/components/uploader/components/uploader.tsx
|
5244
|
-
import { jsx as
|
3863
|
+
import { jsx as jsx57, jsxs as jsxs25 } from "react/jsx-runtime";
|
5245
3864
|
var Uploader = ({
|
5246
3865
|
onHandleUploadFile,
|
5247
3866
|
onHandleRejections,
|
@@ -5302,11 +3921,11 @@ var Uploader = ({
|
|
5302
3921
|
...props,
|
5303
3922
|
...getRootProps(),
|
5304
3923
|
children: [
|
5305
|
-
/* @__PURE__ */
|
5306
|
-
isDragActive ? /* @__PURE__ */
|
5307
|
-
!multiple && isSelected && /* @__PURE__ */
|
5308
|
-
!isSelected && /* @__PURE__ */
|
5309
|
-
isSelected ? /* @__PURE__ */
|
3924
|
+
/* @__PURE__ */ jsx57("input", { ...getInputProps() }),
|
3925
|
+
isDragActive ? /* @__PURE__ */ jsx57(Text15, { children: messages.dragActive }) : /* @__PURE__ */ jsxs25(Flex10, { flexDirection: "column", alignItems: "center", color: isError ? "danger.500" : "primary.500", children: [
|
3926
|
+
!multiple && isSelected && /* @__PURE__ */ jsx57(Heading2, { fontWeight: 400, fontSize: "18px", lineHeight: 28, color: "black.high", mb: 2, children: selectedFirstFile == null ? void 0 : selectedFirstFile.name }),
|
3927
|
+
!isSelected && /* @__PURE__ */ jsx57(Heading2, { fontWeight: 400, fontSize: "18px", lineHeight: 28, mb: 2, children: messages.uploadFile }),
|
3928
|
+
isSelected ? /* @__PURE__ */ jsx57(Text15, { children: messages.dragReplace }) : /* @__PURE__ */ jsx57(Text15, { children: messages.dragInActive })
|
5310
3929
|
] })
|
5311
3930
|
]
|
5312
3931
|
}
|
@@ -5357,14 +3976,11 @@ import {
|
|
5357
3976
|
StepTitle,
|
5358
3977
|
useBreakpoint,
|
5359
3978
|
UseBreakpointOptions,
|
5360
|
-
useBreakpointValue,
|
5361
3979
|
useColorModePreference,
|
5362
3980
|
useImage,
|
5363
3981
|
UseImageProps,
|
5364
3982
|
UseImageReturn,
|
5365
|
-
useMediaQuery,
|
5366
3983
|
UseMediaQueryOptions,
|
5367
|
-
usePrefersReducedMotion,
|
5368
3984
|
useQuery,
|
5369
3985
|
UseQueryProps,
|
5370
3986
|
useSteps,
|
@@ -5388,12 +4004,13 @@ __export(components_exports, {
|
|
5388
4004
|
FormLabel: () => form_label_default,
|
5389
4005
|
Input: () => input_default,
|
5390
4006
|
LoaderStyle: () => loader_default2,
|
5391
|
-
|
4007
|
+
Modal: () => modal_default,
|
5392
4008
|
Radio: () => radio_default,
|
5393
4009
|
Switch: () => switch_default2,
|
5394
4010
|
Table: () => table_default,
|
5395
4011
|
Tabs: () => tabs_default,
|
5396
|
-
Textarea: () => textarea_default2
|
4012
|
+
Textarea: () => textarea_default2,
|
4013
|
+
Tooltip: () => tooltip_default
|
5397
4014
|
});
|
5398
4015
|
|
5399
4016
|
// src/config/theme/components/accordion.ts
|
@@ -6276,25 +4893,25 @@ var LoaderStyle = defineStyleConfig5({
|
|
6276
4893
|
});
|
6277
4894
|
var loader_default2 = LoaderStyle;
|
6278
4895
|
|
6279
|
-
// src/config/theme/components/
|
6280
|
-
import {
|
6281
|
-
|
6282
|
-
|
6283
|
-
|
6284
|
-
|
6285
|
-
|
6286
|
-
|
6287
|
-
|
6288
|
-
|
6289
|
-
}
|
6290
|
-
};
|
6291
|
-
var
|
4896
|
+
// src/config/theme/components/modal.ts
|
4897
|
+
import { defineStyleConfig as defineStyleConfig6 } from "@chakra-ui/styled-system";
|
4898
|
+
var Modal3 = defineStyleConfig6({
|
4899
|
+
sizes: {
|
4900
|
+
sm: { dialog: { minW: 400 } },
|
4901
|
+
md: { dialog: { minW: 600 } },
|
4902
|
+
lg: { dialog: { minW: 800 } }
|
4903
|
+
},
|
4904
|
+
defaultProps: {
|
4905
|
+
size: "md"
|
4906
|
+
}
|
4907
|
+
});
|
4908
|
+
var modal_default = Modal3;
|
6292
4909
|
|
6293
4910
|
// src/config/theme/components/radio.ts
|
6294
4911
|
import { radioAnatomy } from "@chakra-ui/anatomy";
|
6295
|
-
import { createMultiStyleConfigHelpers as
|
6296
|
-
var { definePartsStyle:
|
6297
|
-
var baseStyle6 =
|
4912
|
+
import { createMultiStyleConfigHelpers as createMultiStyleConfigHelpers5 } from "@chakra-ui/react";
|
4913
|
+
var { definePartsStyle: definePartsStyle5, defineMultiStyleConfig: defineMultiStyleConfig5 } = createMultiStyleConfigHelpers5(radioAnatomy.keys);
|
4914
|
+
var baseStyle6 = definePartsStyle5({
|
6298
4915
|
control: {
|
6299
4916
|
border: "1px solid",
|
6300
4917
|
width: "16px",
|
@@ -6310,7 +4927,7 @@ var baseStyle6 = definePartsStyle6({
|
|
6310
4927
|
}
|
6311
4928
|
}
|
6312
4929
|
});
|
6313
|
-
var errors2 =
|
4930
|
+
var errors2 = definePartsStyle5({
|
6314
4931
|
control: {
|
6315
4932
|
borderColor: "danger.500",
|
6316
4933
|
_checked: {
|
@@ -6345,7 +4962,7 @@ var errors2 = definePartsStyle6({
|
|
6345
4962
|
fontSize: "12px"
|
6346
4963
|
}
|
6347
4964
|
});
|
6348
|
-
var unstyled3 =
|
4965
|
+
var unstyled3 = definePartsStyle5({
|
6349
4966
|
control: {
|
6350
4967
|
borderColor: "neutral.600",
|
6351
4968
|
_checked: {
|
@@ -6394,10 +5011,10 @@ var Radio2 = defineMultiStyleConfig5({
|
|
6394
5011
|
var radio_default = Radio2;
|
6395
5012
|
|
6396
5013
|
// src/config/theme/components/switch.ts
|
6397
|
-
import { switchAnatomy as
|
6398
|
-
import { createMultiStyleConfigHelpers as
|
5014
|
+
import { switchAnatomy as parts4 } from "@chakra-ui/anatomy";
|
5015
|
+
import { createMultiStyleConfigHelpers as createMultiStyleConfigHelpers6, defineStyle as defineStyle5 } from "@chakra-ui/styled-system";
|
6399
5016
|
import { calc, cssVar as cssVar2 } from "@chakra-ui/theme-tools";
|
6400
|
-
var { defineMultiStyleConfig: defineMultiStyleConfig6, definePartsStyle:
|
5017
|
+
var { defineMultiStyleConfig: defineMultiStyleConfig6, definePartsStyle: definePartsStyle6 } = createMultiStyleConfigHelpers6(parts4.keys);
|
6401
5018
|
var $width = cssVar2("switch-track-width");
|
6402
5019
|
var $height = cssVar2("switch-track-height");
|
6403
5020
|
var $diff = cssVar2("switch-track-diff");
|
@@ -6414,7 +5031,7 @@ var baseStyleThumb = defineStyle5({
|
|
6414
5031
|
transform: `translateX(${$translateX.reference})`
|
6415
5032
|
}
|
6416
5033
|
});
|
6417
|
-
var baseStyle7 =
|
5034
|
+
var baseStyle7 = definePartsStyle6(() => ({
|
6418
5035
|
container: {
|
6419
5036
|
[$diff.variable]: diffValue,
|
6420
5037
|
[$translateX.variable]: $diff.reference,
|
@@ -6439,7 +5056,7 @@ var baseStyle7 = definePartsStyle7(() => ({
|
|
6439
5056
|
thumb: baseStyleThumb
|
6440
5057
|
}));
|
6441
5058
|
var sizes3 = {
|
6442
|
-
sm:
|
5059
|
+
sm: definePartsStyle6({
|
6443
5060
|
container: {
|
6444
5061
|
[$width.variable]: "1.875rem",
|
6445
5062
|
[$height.variable]: "0.75rem"
|
@@ -6449,7 +5066,7 @@ var sizes3 = {
|
|
6449
5066
|
[$height.variable]: "0.75rem"
|
6450
5067
|
}
|
6451
5068
|
}),
|
6452
|
-
md:
|
5069
|
+
md: definePartsStyle6({
|
6453
5070
|
container: {
|
6454
5071
|
[$width.variable]: "2.375rem",
|
6455
5072
|
[$height.variable]: "1rem"
|
@@ -6459,7 +5076,7 @@ var sizes3 = {
|
|
6459
5076
|
[$height.variable]: "1rem"
|
6460
5077
|
}
|
6461
5078
|
}),
|
6462
|
-
lg:
|
5079
|
+
lg: definePartsStyle6({
|
6463
5080
|
container: {
|
6464
5081
|
[$width.variable]: "3.25rem",
|
6465
5082
|
[$height.variable]: "1.375rem"
|
@@ -6480,11 +5097,11 @@ var Switch3 = defineMultiStyleConfig6({
|
|
6480
5097
|
var switch_default2 = Switch3;
|
6481
5098
|
|
6482
5099
|
// src/config/theme/components/table.ts
|
6483
|
-
import { tableAnatomy as
|
6484
|
-
import { createMultiStyleConfigHelpers as
|
6485
|
-
import { mode as
|
6486
|
-
var { defineMultiStyleConfig: defineMultiStyleConfig7, definePartsStyle:
|
6487
|
-
var baseStyle8 =
|
5100
|
+
import { tableAnatomy as parts5 } from "@chakra-ui/anatomy";
|
5101
|
+
import { createMultiStyleConfigHelpers as createMultiStyleConfigHelpers7, defineStyle as defineStyle6 } from "@chakra-ui/styled-system";
|
5102
|
+
import { mode as mode2 } from "@chakra-ui/theme-tools";
|
5103
|
+
var { defineMultiStyleConfig: defineMultiStyleConfig7, definePartsStyle: definePartsStyle7 } = createMultiStyleConfigHelpers7(parts5.keys);
|
5104
|
+
var baseStyle8 = definePartsStyle7({
|
6488
5105
|
table: {
|
6489
5106
|
fontVariantNumeric: "lining-nums tabular-nums",
|
6490
5107
|
borderCollapse: "collapse",
|
@@ -6498,7 +5115,7 @@ var baseStyle8 = definePartsStyle8({
|
|
6498
5115
|
letterSpacing: "normal",
|
6499
5116
|
textAlign: "start",
|
6500
5117
|
height: "50px",
|
6501
|
-
color:
|
5118
|
+
color: mode2("neutral.900", "white"),
|
6502
5119
|
fontSize: "text.sm",
|
6503
5120
|
lineHeight: "18px",
|
6504
5121
|
backgroundColor: "neutral.50",
|
@@ -6546,22 +5163,22 @@ var numericStyles = defineStyle6({
|
|
6546
5163
|
textAlign: "end"
|
6547
5164
|
}
|
6548
5165
|
});
|
6549
|
-
var variantSimple =
|
5166
|
+
var variantSimple = definePartsStyle7((props) => {
|
6550
5167
|
const { colorScheme: c } = props;
|
6551
5168
|
return {
|
6552
5169
|
th: {
|
6553
|
-
color:
|
5170
|
+
color: mode2("gray.600", "gray.400")(props),
|
6554
5171
|
borderBottom: "1px",
|
6555
|
-
borderColor:
|
5172
|
+
borderColor: mode2(`${c}.100`, `${c}.700`)(props),
|
6556
5173
|
...numericStyles
|
6557
5174
|
},
|
6558
5175
|
td: {
|
6559
5176
|
borderBottom: "1px",
|
6560
|
-
borderColor:
|
5177
|
+
borderColor: mode2(`${c}.100`, `${c}.700`)(props),
|
6561
5178
|
...numericStyles
|
6562
5179
|
},
|
6563
5180
|
caption: {
|
6564
|
-
color:
|
5181
|
+
color: mode2("gray.600", "gray.100")(props)
|
6565
5182
|
},
|
6566
5183
|
tfoot: {
|
6567
5184
|
tr: {
|
@@ -6572,32 +5189,32 @@ var variantSimple = definePartsStyle8((props) => {
|
|
6572
5189
|
}
|
6573
5190
|
};
|
6574
5191
|
});
|
6575
|
-
var variantStripe =
|
5192
|
+
var variantStripe = definePartsStyle7((props) => {
|
6576
5193
|
const { colorScheme: c } = props;
|
6577
5194
|
return {
|
6578
5195
|
th: {
|
6579
|
-
color:
|
5196
|
+
color: mode2("gray.600", "gray.400")(props),
|
6580
5197
|
borderBottom: "1px",
|
6581
|
-
borderColor:
|
5198
|
+
borderColor: mode2(`${c}.100`, `${c}.700`)(props),
|
6582
5199
|
...numericStyles
|
6583
5200
|
},
|
6584
5201
|
td: {
|
6585
5202
|
borderBottom: "1px",
|
6586
|
-
borderColor:
|
5203
|
+
borderColor: mode2(`${c}.100`, `${c}.700`)(props),
|
6587
5204
|
...numericStyles
|
6588
5205
|
},
|
6589
5206
|
caption: {
|
6590
|
-
color:
|
5207
|
+
color: mode2("gray.600", "gray.100")(props)
|
6591
5208
|
},
|
6592
5209
|
tbody: {
|
6593
5210
|
tr: {
|
6594
5211
|
"&:nth-of-type(odd)": {
|
6595
5212
|
"th, td": {
|
6596
5213
|
borderBottomWidth: "1px",
|
6597
|
-
borderColor:
|
5214
|
+
borderColor: mode2(`${c}.100`, `${c}.700`)(props)
|
6598
5215
|
},
|
6599
5216
|
td: {
|
6600
|
-
background:
|
5217
|
+
background: mode2(`${c}.100`, `${c}.700`)(props)
|
6601
5218
|
}
|
6602
5219
|
}
|
6603
5220
|
}
|
@@ -6617,7 +5234,7 @@ var variants5 = {
|
|
6617
5234
|
unstyled: defineStyle6({})
|
6618
5235
|
};
|
6619
5236
|
var sizes4 = {
|
6620
|
-
sm:
|
5237
|
+
sm: definePartsStyle7({
|
6621
5238
|
th: {
|
6622
5239
|
px: "2",
|
6623
5240
|
py: "4",
|
@@ -6636,7 +5253,7 @@ var sizes4 = {
|
|
6636
5253
|
fontSize: "xs"
|
6637
5254
|
}
|
6638
5255
|
}),
|
6639
|
-
md:
|
5256
|
+
md: definePartsStyle7({
|
6640
5257
|
th: {
|
6641
5258
|
px: "2",
|
6642
5259
|
py: "4",
|
@@ -6654,7 +5271,7 @@ var sizes4 = {
|
|
6654
5271
|
fontSize: "sm"
|
6655
5272
|
}
|
6656
5273
|
}),
|
6657
|
-
lg:
|
5274
|
+
lg: definePartsStyle7({
|
6658
5275
|
th: {
|
6659
5276
|
px: "2",
|
6660
5277
|
py: "4",
|
@@ -6686,10 +5303,10 @@ var tableTheme = defineMultiStyleConfig7({
|
|
6686
5303
|
var table_default = tableTheme;
|
6687
5304
|
|
6688
5305
|
// src/config/theme/components/tabs.ts
|
6689
|
-
import { tabsAnatomy as
|
6690
|
-
import { createMultiStyleConfigHelpers as
|
6691
|
-
var { defineMultiStyleConfig: defineMultiStyleConfig8, definePartsStyle:
|
6692
|
-
var variantLine =
|
5306
|
+
import { tabsAnatomy as parts6 } from "@chakra-ui/anatomy";
|
5307
|
+
import { createMultiStyleConfigHelpers as createMultiStyleConfigHelpers8 } from "@chakra-ui/styled-system";
|
5308
|
+
var { defineMultiStyleConfig: defineMultiStyleConfig8, definePartsStyle: definePartsStyle8 } = createMultiStyleConfigHelpers8(parts6.keys);
|
5309
|
+
var variantLine = definePartsStyle8((props) => {
|
6693
5310
|
const { orientation } = props;
|
6694
5311
|
const isVertical = orientation === "vertical";
|
6695
5312
|
const borderProp = isVertical ? "borderStart" : "borderBottom";
|
@@ -6706,7 +5323,7 @@ var variantLine = definePartsStyle9((props) => {
|
|
6706
5323
|
}
|
6707
5324
|
};
|
6708
5325
|
});
|
6709
|
-
var variantUnstyled =
|
5326
|
+
var variantUnstyled = definePartsStyle8({});
|
6710
5327
|
var variants6 = {
|
6711
5328
|
line: variantLine,
|
6712
5329
|
unstyled: variantUnstyled
|
@@ -6721,7 +5338,7 @@ var tabsTheme = defineMultiStyleConfig8({
|
|
6721
5338
|
var tabs_default = tabsTheme;
|
6722
5339
|
|
6723
5340
|
// src/config/theme/components/textarea.ts
|
6724
|
-
import { defineStyle as defineStyle7, defineStyleConfig as
|
5341
|
+
import { defineStyle as defineStyle7, defineStyleConfig as defineStyleConfig7 } from "@chakra-ui/react";
|
6725
5342
|
var getProps = (props) => {
|
6726
5343
|
const { isError, isSuccess, isDisabled } = props;
|
6727
5344
|
let borderColor = "neutral.400";
|
@@ -6785,7 +5402,7 @@ var outline2 = defineStyle7((props) => {
|
|
6785
5402
|
}
|
6786
5403
|
};
|
6787
5404
|
});
|
6788
|
-
var Textarea =
|
5405
|
+
var Textarea = defineStyleConfig7({
|
6789
5406
|
variants: { outline: outline2 },
|
6790
5407
|
defaultProps: {
|
6791
5408
|
variant: "outline"
|
@@ -6793,6 +5410,17 @@ var Textarea = defineStyleConfig6({
|
|
6793
5410
|
});
|
6794
5411
|
var textarea_default2 = Textarea;
|
6795
5412
|
|
5413
|
+
// src/config/theme/components/tooltip.ts
|
5414
|
+
import { cssVar as cssVar3, defineStyleConfig as defineStyleConfig8 } from "@chakra-ui/react";
|
5415
|
+
var $arrowBg = cssVar3("popper-arrow-bg");
|
5416
|
+
var baseStyle9 = {
|
5417
|
+
bg: "neutral.700",
|
5418
|
+
fontSize: "text.sm",
|
5419
|
+
[$arrowBg.variable]: "var(--chakra-colors-neutral-700)"
|
5420
|
+
};
|
5421
|
+
var Tooltip2 = defineStyleConfig8({ baseStyle: baseStyle9 });
|
5422
|
+
var tooltip_default = Tooltip2;
|
5423
|
+
|
6796
5424
|
// src/config/theme/themeConfiguration.ts
|
6797
5425
|
import { ThemeTypings } from "@chakra-ui/styled-system";
|
6798
5426
|
var config = {
|
@@ -6836,13 +5464,13 @@ var theme5 = extendTheme({
|
|
6836
5464
|
|
6837
5465
|
// src/hooks/useFetcher.ts
|
6838
5466
|
import axios2 from "axios";
|
6839
|
-
import { useMemo as
|
5467
|
+
import { useMemo as useMemo7 } from "react";
|
6840
5468
|
|
6841
5469
|
// src/provider/components/provider.tsx
|
6842
5470
|
import axios from "axios";
|
6843
|
-
import { createContext as createContext2, useContext, useEffect as
|
5471
|
+
import { createContext as createContext2, useContext, useEffect as useEffect3, useMemo as useMemo6, useRef as useRef2 } from "react";
|
6844
5472
|
import { ToastContainer } from "react-toastify";
|
6845
|
-
import { jsx as
|
5473
|
+
import { jsx as jsx58, jsxs as jsxs26 } from "react/jsx-runtime";
|
6846
5474
|
var ProviderContext = createContext2({
|
6847
5475
|
instance: void 0
|
6848
5476
|
});
|
@@ -6851,8 +5479,8 @@ var useInternalUI = () => {
|
|
6851
5479
|
return { instance };
|
6852
5480
|
};
|
6853
5481
|
var Provider = ({ children, config: config2, requestInterceptors, responseInterceptors }) => {
|
6854
|
-
const instanceRef =
|
6855
|
-
|
5482
|
+
const instanceRef = useRef2(axios.create(config2));
|
5483
|
+
useEffect3(() => {
|
6856
5484
|
requestInterceptors == null ? void 0 : requestInterceptors.forEach((interceptor) => {
|
6857
5485
|
instanceRef.current.interceptors.request.use(interceptor);
|
6858
5486
|
});
|
@@ -6860,9 +5488,9 @@ var Provider = ({ children, config: config2, requestInterceptors, responseInterc
|
|
6860
5488
|
instanceRef.current.interceptors.response.use(interceptor);
|
6861
5489
|
});
|
6862
5490
|
}, [requestInterceptors, responseInterceptors]);
|
6863
|
-
const provider =
|
5491
|
+
const provider = useMemo6(() => ({ instance: instanceRef.current }), []);
|
6864
5492
|
return /* @__PURE__ */ jsxs26(ProviderContext.Provider, { value: provider, children: [
|
6865
|
-
/* @__PURE__ */
|
5493
|
+
/* @__PURE__ */ jsx58(ToastContainer, {}),
|
6866
5494
|
children
|
6867
5495
|
] });
|
6868
5496
|
};
|
@@ -6881,7 +5509,7 @@ import {
|
|
6881
5509
|
// src/hooks/useFetcher.ts
|
6882
5510
|
function useFetcher() {
|
6883
5511
|
const { instance } = useInternalUI();
|
6884
|
-
const axiosInstance =
|
5512
|
+
const axiosInstance = useMemo7(() => instance || axios2, [instance]);
|
6885
5513
|
const fetcher = async ({ url, data, method, headers, ...config2 }) => {
|
6886
5514
|
const response = await axiosInstance.request({
|
6887
5515
|
data,
|
@@ -6908,7 +5536,7 @@ import {
|
|
6908
5536
|
useColorModeValue as useColorModeValue12,
|
6909
5537
|
useConst,
|
6910
5538
|
useControllableProp,
|
6911
|
-
useControllableState
|
5539
|
+
useControllableState,
|
6912
5540
|
useDimensions,
|
6913
5541
|
useDisclosure as useDisclosure2,
|
6914
5542
|
UseDisclosureProps,
|
@@ -6919,7 +5547,7 @@ import {
|
|
6919
5547
|
} from "@chakra-ui/react";
|
6920
5548
|
|
6921
5549
|
// src/index.ts
|
6922
|
-
import { extendTheme as extendTheme2, forwardRef as
|
5550
|
+
import { extendTheme as extendTheme2, forwardRef as forwardRef15 } from "@chakra-ui/react";
|
6923
5551
|
export {
|
6924
5552
|
Accordion,
|
6925
5553
|
AccordionButton,
|
@@ -6968,7 +5596,11 @@ export {
|
|
6968
5596
|
Table2 as ChakraTable,
|
6969
5597
|
checkbox_default as Checkbox,
|
6970
5598
|
checkbox_group_default as CheckboxGroup,
|
5599
|
+
CheckboxGroupContext,
|
5600
|
+
CheckboxGroupProps,
|
6971
5601
|
CheckboxIcon,
|
5602
|
+
CheckboxIconProps,
|
5603
|
+
CheckboxState,
|
6972
5604
|
chips_default as Chips,
|
6973
5605
|
CloseButton,
|
6974
5606
|
CloseButtonProps,
|
@@ -7002,10 +5634,10 @@ export {
|
|
7002
5634
|
field_default as Field,
|
7003
5635
|
Flex5 as Flex,
|
7004
5636
|
FlexProps,
|
7005
|
-
|
5637
|
+
FormControl2 as FormControl,
|
7006
5638
|
FormControlProps,
|
7007
5639
|
FormErrorMessage2 as FormErrorMessage,
|
7008
|
-
|
5640
|
+
FormHelperText2 as FormHelperText,
|
7009
5641
|
FormLabel2 as FormLabel,
|
7010
5642
|
FormLabelProps,
|
7011
5643
|
Grid,
|
@@ -7042,7 +5674,7 @@ export {
|
|
7042
5674
|
InputRightAddonProps,
|
7043
5675
|
InputRightElement2 as InputRightElement,
|
7044
5676
|
InputRightElementProps,
|
7045
|
-
|
5677
|
+
Link4 as Link,
|
7046
5678
|
LinkProps,
|
7047
5679
|
List,
|
7048
5680
|
ListIcon,
|
@@ -7052,6 +5684,7 @@ export {
|
|
7052
5684
|
loader_default as Loader,
|
7053
5685
|
navigation_default as MainMenu,
|
7054
5686
|
Modal2 as Modal,
|
5687
|
+
modal_back_button_default as ModalBackButton,
|
7055
5688
|
modal_body_default as ModalBody,
|
7056
5689
|
ModalBodyProps,
|
7057
5690
|
modal_close_button_default as ModalCloseButton,
|
@@ -7093,6 +5726,7 @@ export {
|
|
7093
5726
|
ProviderContext,
|
7094
5727
|
Radio,
|
7095
5728
|
RadioGroup,
|
5729
|
+
RadioGroupContext,
|
7096
5730
|
rating_default as Rating,
|
7097
5731
|
RequiredIndicator,
|
7098
5732
|
RequiredIndicatorProps,
|
@@ -7161,6 +5795,10 @@ export {
|
|
7161
5795
|
UseAccordionProps,
|
7162
5796
|
UseAccordionReturn,
|
7163
5797
|
UseBreakpointOptions,
|
5798
|
+
UseCheckboxGroupProps,
|
5799
|
+
UseCheckboxGroupReturn,
|
5800
|
+
UseCheckboxProps,
|
5801
|
+
UseCheckboxReturn,
|
7164
5802
|
UseDisclosureProps,
|
7165
5803
|
UseImageProps,
|
7166
5804
|
UseImageReturn,
|
@@ -7168,6 +5806,9 @@ export {
|
|
7168
5806
|
UseModalProps,
|
7169
5807
|
UseModalReturn,
|
7170
5808
|
UseQueryProps,
|
5809
|
+
UseRadioGroupReturn,
|
5810
|
+
UseRadioProps,
|
5811
|
+
UseRadioReturn,
|
7171
5812
|
UseTabListProps,
|
7172
5813
|
UseTabListReturn,
|
7173
5814
|
UseTabOptions,
|
@@ -7183,18 +5824,17 @@ export {
|
|
7183
5824
|
WrapItemProps,
|
7184
5825
|
WrapProps,
|
7185
5826
|
extendTheme2 as extendTheme,
|
7186
|
-
|
5827
|
+
forwardRef15 as forwardRef,
|
7187
5828
|
getTheme,
|
7188
5829
|
theme5 as theme,
|
7189
5830
|
useAccordion,
|
7190
5831
|
useAccordionContext,
|
7191
5832
|
useAccordionItem,
|
7192
5833
|
useAccordionItemState2 as useAccordionItemState,
|
7193
|
-
|
5834
|
+
useAccordionStyles,
|
7194
5835
|
useAlertStyles,
|
7195
5836
|
useBoolean,
|
7196
5837
|
useBreakpoint,
|
7197
|
-
useBreakpointValue,
|
7198
5838
|
useCheckbox,
|
7199
5839
|
useCheckboxGroup,
|
7200
5840
|
useClipboard,
|
@@ -7203,7 +5843,7 @@ export {
|
|
7203
5843
|
useColorModeValue12 as useColorModeValue,
|
7204
5844
|
useConst,
|
7205
5845
|
useControllableProp,
|
7206
|
-
|
5846
|
+
useControllableState,
|
7207
5847
|
useDataTable,
|
7208
5848
|
useDimensions,
|
7209
5849
|
useDisclosure2 as useDisclosure,
|
@@ -7211,13 +5851,11 @@ export {
|
|
7211
5851
|
useFetcher,
|
7212
5852
|
useImage,
|
7213
5853
|
useInternalUI,
|
7214
|
-
useMediaQuery,
|
7215
5854
|
useMergeRefs,
|
7216
5855
|
useModal,
|
7217
5856
|
useModalContext,
|
7218
5857
|
useModalStyles,
|
7219
5858
|
useOutsideClick,
|
7220
|
-
usePrefersReducedMotion,
|
7221
5859
|
useQuery,
|
7222
5860
|
useRadio,
|
7223
5861
|
useRadioGroup,
|