elseware-ui 2.17.2 → 2.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/components/data-display/image/cloudinary-image/CloudinaryProvider.d.ts +8 -0
- package/build/components/data-display/image/cloudinary-image/index.d.ts +3 -1
- package/build/components/data-entry/date-selector/DateSelector.d.ts +5 -2
- package/build/components/data-entry/input/input-list/InputList.d.ts +3 -1
- package/build/components/data-entry/input/input-list-group/InputListGroup.d.ts +3 -1
- package/build/components/data-entry/select/Select.d.ts +5 -2
- package/build/components/data-entry/text-area/TextArea.d.ts +5 -2
- package/build/components/eui/EUIProvider.d.ts +7 -0
- package/build/components/eui/EUITypes.d.ts +10 -0
- package/build/components/eui/index.d.ts +3 -0
- package/build/components/eui/resolveGlobalConfigs.d.ts +2 -0
- package/build/components/index.d.ts +1 -0
- package/build/index.es.js +123 -53
- package/build/index.js +126 -51
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface CloudinaryConfig {
|
|
2
|
+
cloudName: string;
|
|
3
|
+
}
|
|
4
|
+
export declare const CloudinaryProvider: ({ cloudName, children, }: CloudinaryConfig & {
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const useCloudinaryConfig: () => CloudinaryConfig;
|
|
8
|
+
export {};
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import CloudinaryImage from "./CloudinaryImage";
|
|
2
|
-
|
|
2
|
+
import { CloudinaryProvider } from "./CloudinaryProvider";
|
|
3
|
+
import { useCloudinaryConfig } from "./CloudinaryProvider";
|
|
4
|
+
export { CloudinaryImage, CloudinaryProvider, useCloudinaryConfig };
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { FieldHookConfig } from "formik";
|
|
2
|
-
|
|
2
|
+
import { Shape } from "../../../data/enums";
|
|
3
|
+
interface DateSelectorProps extends FieldHookConfig<string> {
|
|
4
|
+
name: string;
|
|
3
5
|
placeholder: string;
|
|
4
6
|
styles?: string;
|
|
7
|
+
shape?: keyof typeof Shape;
|
|
5
8
|
}
|
|
6
|
-
export declare const DateSelector: ({ placeholder, styles, ...props }:
|
|
9
|
+
export declare const DateSelector: ({ placeholder, styles, shape, ...props }: DateSelectorProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
10
|
export default DateSelector;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { Shape } from "../../../../data/enums";
|
|
1
2
|
interface InputListProps {
|
|
2
3
|
name: string;
|
|
3
4
|
placeholder?: string;
|
|
5
|
+
shape?: keyof typeof Shape;
|
|
4
6
|
}
|
|
5
|
-
export declare const InputList: ({ name, placeholder }: InputListProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const InputList: ({ name, placeholder, shape }: InputListProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
8
|
export {};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { Shape } from "../../../../data/enums";
|
|
1
2
|
interface InputListGroupProps {
|
|
2
3
|
name: string;
|
|
3
4
|
placeholder?: string;
|
|
5
|
+
shape?: keyof typeof Shape;
|
|
4
6
|
}
|
|
5
|
-
export declare const InputListGroup: ({ name, placeholder }: InputListGroupProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const InputListGroup: ({ name, placeholder, shape, }: InputListGroupProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
8
|
export {};
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { FieldHookConfig } from "formik";
|
|
2
|
-
|
|
2
|
+
import { Shape } from "../../../data/enums";
|
|
3
|
+
export interface SelectProps extends FieldHookConfig<string> {
|
|
4
|
+
name: string;
|
|
3
5
|
placeholder: string;
|
|
4
6
|
options: any[];
|
|
5
7
|
styles?: string;
|
|
8
|
+
shape?: keyof typeof Shape;
|
|
6
9
|
}
|
|
7
|
-
declare function Select({ placeholder, options, styles, ...props }:
|
|
10
|
+
declare function Select({ placeholder, options, styles, shape, ...props }: SelectProps): import("react/jsx-runtime").JSX.Element;
|
|
8
11
|
export default Select;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { FieldHookConfig } from "formik";
|
|
2
|
-
|
|
2
|
+
import { Shape } from "../../../data/enums";
|
|
3
|
+
export interface TextAreaProps extends FieldHookConfig<string> {
|
|
4
|
+
name: string;
|
|
3
5
|
placeholder: string;
|
|
4
6
|
limit: number;
|
|
5
7
|
styles?: string;
|
|
8
|
+
shape?: keyof typeof Shape;
|
|
6
9
|
}
|
|
7
|
-
declare function TextArea({ placeholder, limit, styles, ...props }:
|
|
10
|
+
declare function TextArea({ placeholder, limit, styles, shape, ...props }: TextAreaProps): import("react/jsx-runtime").JSX.Element;
|
|
8
11
|
export default TextArea;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { EUIConfigs } from "./EUITypes";
|
|
3
|
+
export declare const EUIProvider: ({ config, children, }: {
|
|
4
|
+
config: EUIConfigs;
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const useEUIConfig: () => EUIConfigs | null;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Variant, Shape, Size } from "../../data/enums";
|
|
2
|
+
export interface EUIComponentDefaults {
|
|
3
|
+
variant?: keyof typeof Variant;
|
|
4
|
+
size?: keyof typeof Size;
|
|
5
|
+
shape?: keyof typeof Shape;
|
|
6
|
+
styles?: string;
|
|
7
|
+
}
|
|
8
|
+
export interface EUIConfigs {
|
|
9
|
+
global?: EUIComponentDefaults;
|
|
10
|
+
}
|
package/build/index.es.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment as Fragment$3 } from 'react/jsx-runtime';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
-
import React__default, { forwardRef, useRef, useEffect, useState, createContext as createContext$1, createRef, PureComponent, Fragment as Fragment$4, useMemo as useMemo$1,
|
|
3
|
+
import React__default, { forwardRef, useRef, useEffect, useState, createContext as createContext$1, createRef, PureComponent, Fragment as Fragment$4, useContext, useMemo as useMemo$1, useImperativeHandle, createElement, Children, useCallback as useCallback$1, useLayoutEffect, Component, useSyncExternalStore, isValidElement, cloneElement, memo as memo$1, useId as useId$1, useInsertionEffect as useInsertionEffect$1, useReducer, Suspense as Suspense$3 } from 'react';
|
|
4
4
|
import * as ReactDOM from 'react-dom';
|
|
5
5
|
import ReactDOM__default, { unstable_batchedUpdates, flushSync, createPortal } from 'react-dom';
|
|
6
6
|
|
|
@@ -31107,21 +31107,25 @@ Video.defaultProps = {
|
|
|
31107
31107
|
type: PropTypes.string
|
|
31108
31108
|
});
|
|
31109
31109
|
|
|
31110
|
-
var
|
|
31110
|
+
var CloudinaryContextConfig = createContext$1(null);
|
|
31111
|
+
var CloudinaryProvider = function (_a) {
|
|
31112
|
+
var cloudName = _a.cloudName, children = _a.children;
|
|
31113
|
+
return (jsx(CloudinaryContextConfig.Provider, __assign$1({ value: { cloudName: cloudName } }, { children: children })));
|
|
31114
|
+
};
|
|
31115
|
+
var useCloudinaryConfig = function () {
|
|
31116
|
+
var ctx = useContext(CloudinaryContextConfig);
|
|
31117
|
+
if (!ctx) {
|
|
31118
|
+
throw new Error("CloudinaryProvider is missing. Wrap your app with <CloudinaryProvider />");
|
|
31119
|
+
}
|
|
31120
|
+
return ctx;
|
|
31121
|
+
};
|
|
31122
|
+
|
|
31123
|
+
var DEFAULT_PUBLIC_CLOUD = "demo";
|
|
31111
31124
|
function CloudinaryImage(_a) {
|
|
31112
|
-
var _b,
|
|
31113
|
-
var
|
|
31114
|
-
var resolvedCloudName = cloudName ||
|
|
31115
|
-
|
|
31116
|
-
(typeof import.meta !== "undefined" &&
|
|
31117
|
-
((_b = import.meta.env) === null || _b === void 0 ? void 0 : _b.VITE_CLOUDINARY_NAME)) ||
|
|
31118
|
-
// CRA / Node-style env: process.env.REACT_APP_CLOUDINARY_NAME
|
|
31119
|
-
(typeof process !== "undefined" &&
|
|
31120
|
-
((_c = process.env) === null || _c === void 0 ? void 0 : _c.REACT_APP_CLOUDINARY_NAME)) ||
|
|
31121
|
-
// ✅ Final fallback for Storybook / demos
|
|
31122
|
-
DEFAULT_PUBLIC_CLOUD;
|
|
31123
|
-
var resolvedPublicId = publicId || "sample"; // "sample" exists in the demo cloud
|
|
31124
|
-
return (jsx(CloudinaryContext, __assign$1({ cloudName: resolvedCloudName }, { children: jsx(Image$2, { publicId: resolvedPublicId, secure: secure, alt: alt, className: styles }) })));
|
|
31125
|
+
var publicId = _a.publicId, cloudName = _a.cloudName, _b = _a.secure, secure = _b === void 0 ? true : _b, alt = _a.alt, styles = _a.styles;
|
|
31126
|
+
var providerConfig = useCloudinaryConfig();
|
|
31127
|
+
var resolvedCloudName = cloudName || (providerConfig === null || providerConfig === void 0 ? void 0 : providerConfig.cloudName) || DEFAULT_PUBLIC_CLOUD;
|
|
31128
|
+
return (jsx(CloudinaryContext, __assign$1({ cloudName: resolvedCloudName }, { children: jsx(Image$2, { publicId: publicId || "sample", secure: secure, alt: alt, className: styles }) })));
|
|
31125
31129
|
}
|
|
31126
31130
|
|
|
31127
31131
|
var Image$1 = function (_a) {
|
|
@@ -67980,6 +67984,18 @@ function WorldMapCountryTable(_a) {
|
|
|
67980
67984
|
return (jsx("div", __assign$1({ className: "bg-white dark:bg-neutral-950 rounded-2xl shadow-md p-4" }, { children: jsx(Table, { title: title, data: finalData, columns: columns, defaultPageSize: defaultPageSize, pageSizeOptions: [5, 10, "All"] }) })));
|
|
67981
67985
|
}
|
|
67982
67986
|
|
|
67987
|
+
var EUIContext = createContext$1(null);
|
|
67988
|
+
var EUIProvider = function (_a) {
|
|
67989
|
+
var config = _a.config, children = _a.children;
|
|
67990
|
+
return jsx(EUIContext.Provider, __assign$1({ value: config }, { children: children }));
|
|
67991
|
+
};
|
|
67992
|
+
var useEUIConfig = function () { return useContext(EUIContext); };
|
|
67993
|
+
|
|
67994
|
+
function resolveWithGlobal(config, props, defaults) {
|
|
67995
|
+
var _a;
|
|
67996
|
+
return __assign$1(__assign$1(__assign$1({}, defaults), ((_a = config === null || config === void 0 ? void 0 : config.global) !== null && _a !== void 0 ? _a : {})), props);
|
|
67997
|
+
}
|
|
67998
|
+
|
|
67983
67999
|
var sizes = {
|
|
67984
68000
|
xs: "px-2 py-1 text-xs",
|
|
67985
68001
|
sm: "px-3 py-1.5 text-sm",
|
|
@@ -67989,7 +68005,11 @@ var sizes = {
|
|
|
67989
68005
|
};
|
|
67990
68006
|
var Button$2 = function (_a) {
|
|
67991
68007
|
var _b;
|
|
67992
|
-
var _c
|
|
68008
|
+
var _c, _d;
|
|
68009
|
+
var _e = _a.type, type = _e === void 0 ? "button" : _e, icon = _a.icon, text = _a.text, children = _a.children, loading = _a.loading, disabled = _a.disabled, ghost = _a.ghost, block = _a.block, _f = _a.variant, variant = _f === void 0 ? "success" : _f, shape = _a.shape, _g = _a.size, size = _g === void 0 ? "md" : _g, styles = _a.styles, onClick = _a.onClick;
|
|
68010
|
+
var eui = useEUIConfig();
|
|
68011
|
+
// Resolved Global Overrides
|
|
68012
|
+
var resolvedShape = (_d = shape !== null && shape !== void 0 ? shape : (_c = eui === null || eui === void 0 ? void 0 : eui.global) === null || _c === void 0 ? void 0 : _c.shape) !== null && _d !== void 0 ? _d : "square";
|
|
67993
68013
|
var btnRef = useRef(null);
|
|
67994
68014
|
// 👉 Glow effect on mouse move
|
|
67995
68015
|
var handleMouseMove = function (e) {
|
|
@@ -68008,7 +68028,7 @@ var Button$2 = function (_a) {
|
|
|
68008
68028
|
},
|
|
68009
68029
|
_b["".concat(variants[variant])] = !ghost,
|
|
68010
68030
|
_b["".concat(variantsGhost[variant])] = ghost,
|
|
68011
|
-
_b["".concat(shapes[
|
|
68031
|
+
_b["".concat(shapes[resolvedShape])] = true,
|
|
68012
68032
|
_b["".concat(sizes[size])] = true,
|
|
68013
68033
|
_b["w-full"] = block,
|
|
68014
68034
|
_b["brightness-75 grayscale text-gray-900 cursor-not-allowed"] = loading || disabled,
|
|
@@ -68057,9 +68077,13 @@ var PasswordVisibilityToggler = function (_a) {
|
|
|
68057
68077
|
};
|
|
68058
68078
|
var Input = function (_a) {
|
|
68059
68079
|
var _b;
|
|
68060
|
-
var _c
|
|
68061
|
-
var _e =
|
|
68062
|
-
var
|
|
68080
|
+
var _c, _d;
|
|
68081
|
+
var _e = _a.type, type = _e === void 0 ? "text" : _e, placeholder = _a.placeholder, styles = _a.styles, step = _a.step, shape = _a.shape, props = __rest$1(_a, ["type", "placeholder", "styles", "step", "shape"]);
|
|
68082
|
+
var eui = useEUIConfig();
|
|
68083
|
+
// Resolved Global Overrides
|
|
68084
|
+
var resolvedShape = (_d = shape !== null && shape !== void 0 ? shape : (_c = eui === null || eui === void 0 ? void 0 : eui.global) === null || _c === void 0 ? void 0 : _c.shape) !== null && _d !== void 0 ? _d : "square";
|
|
68085
|
+
var _f = useField(props), field = _f[0], meta = _f[1];
|
|
68086
|
+
var _g = useState(false), passwordVisibility = _g[0], setPasswordVisibilty = _g[1];
|
|
68063
68087
|
// Determine the final input type
|
|
68064
68088
|
var inputType = type === "password" ? toggleType(passwordVisibility) : type;
|
|
68065
68089
|
return (jsxs("div", __assign$1({ className: "relative w-full" }, { children: [jsx(Field, __assign$1({ type: inputType, step: inputType === "number" && step ? step : undefined }, field, props, { placeholder: placeholder, className: classnames((_b = {
|
|
@@ -68067,7 +68091,7 @@ var Input = function (_a) {
|
|
|
68067
68091
|
"border-eui-primary-400 focus:border-eui-secondary-500": !(meta.touched && meta.error),
|
|
68068
68092
|
"border-eui-danger-500": meta.touched && meta.error
|
|
68069
68093
|
},
|
|
68070
|
-
_b["".concat(shapes[
|
|
68094
|
+
_b["".concat(shapes[resolvedShape])] = true,
|
|
68071
68095
|
// "transition-all ease-in-out": true,
|
|
68072
68096
|
_b["".concat(styles)] = styles,
|
|
68073
68097
|
_b)) })), jsx(InputLabel, { text: placeholder, styles: "absolute left-2 top-[0.7px] eui-text-sm text-[13.5px] peer-placeholder-shown:text-base peer-placeholder-shown:top-3 pointer-events-none" }), type === "password" && (jsx(PasswordVisibilityToggler, { onClick: function (v) { return setPasswordVisibilty(v); } })), jsx(InputResponse, { name: field.name, visibility: meta.touched && meta.error ? true : false, variant: "danger" })] })));
|
|
@@ -78743,11 +78767,20 @@ var ConnectedDroppable = connect(makeMapStateToProps$1, mapDispatchToProps$1, nu
|
|
|
78743
78767
|
ConnectedDroppable.defaultProps = defaultProps;
|
|
78744
78768
|
|
|
78745
78769
|
var InputList = function (_a) {
|
|
78746
|
-
var
|
|
78747
|
-
var
|
|
78770
|
+
var _b, _c;
|
|
78771
|
+
var name = _a.name, placeholder = _a.placeholder, shape = _a.shape;
|
|
78772
|
+
var eui = useEUIConfig();
|
|
78773
|
+
// Resolved Global Overrides
|
|
78774
|
+
var resolvedShape = (_c = shape !== null && shape !== void 0 ? shape : (_b = eui === null || eui === void 0 ? void 0 : eui.global) === null || _b === void 0 ? void 0 : _b.shape) !== null && _c !== void 0 ? _c : "square";
|
|
78775
|
+
var _d = useFormikContext(), values = _d.values, errors = _d.errors, touched = _d.touched;
|
|
78748
78776
|
return (jsxs("div", { children: [jsx(InputLabel, { text: placeholder }), jsx("div", __assign$1({ className: "mt-2" }, { children: jsx(FieldArray, __assign$1({ name: name }, { children: function (_a) {
|
|
78777
|
+
var _b;
|
|
78749
78778
|
var push = _a.push, remove = _a.remove, move = _a.move;
|
|
78750
|
-
return (jsxs("div", __assign$1({ className:
|
|
78779
|
+
return (jsxs("div", __assign$1({ className: classnames((_b = {
|
|
78780
|
+
"flex flex-col space-y-2 w-full bg-eui-primary-300/10": true
|
|
78781
|
+
},
|
|
78782
|
+
_b["".concat(shapes[resolvedShape])] = true,
|
|
78783
|
+
_b)) }, { children: [jsx(DragDropContext, __assign$1({ onDragEnd: function (result) {
|
|
78751
78784
|
if (!result.destination)
|
|
78752
78785
|
return;
|
|
78753
78786
|
move(result.source.index, result.destination.index);
|
|
@@ -78755,7 +78788,7 @@ var InputList = function (_a) {
|
|
|
78755
78788
|
var _a;
|
|
78756
78789
|
return (jsxs("div", __assign$1({ ref: provided.innerRef }, provided.droppableProps, { children: [(_a = values[name]) === null || _a === void 0 ? void 0 : _a.map(function (_, index) { return (jsx(PublicDraggable, __assign$1({ draggableId: index.toString(), index: index }, { children: function (provided) {
|
|
78757
78790
|
var _a;
|
|
78758
|
-
return (jsxs("div", __assign$1({ ref: provided.innerRef }, provided.draggableProps, { className: "flex items-center space-x-2 bg-eui-primary-300/10 p-2" }, { children: [jsx("div", __assign$1({}, provided.dragHandleProps, { children: jsx(FaGripVertical, { className: "cursor-grab text-gray-500" }) })), jsx(Field, { name: "".concat(name, "[").concat(index, "]"), placeholder: "Item ".concat(index + 1), className: classnames("border peer w-full
|
|
78791
|
+
return (jsxs("div", __assign$1({ ref: provided.innerRef }, provided.draggableProps, { className: "flex items-center space-x-2 bg-eui-primary-300/10 p-2" }, { children: [jsx("div", __assign$1({}, provided.dragHandleProps, { children: jsx(FaGripVertical, { className: "cursor-grab text-gray-500" }) })), jsx(Field, { name: "".concat(name, "[").concat(index, "]"), placeholder: "Item ".concat(index + 1), className: classnames("border peer w-full bg-eui-primary-300/10 pt-5 px-3 pb-2 text-md eui-text-md placeholder-transparent placeholder-shown:p-3 focus:outline-none h-[50px]", ["".concat(shapes[resolvedShape])], ((_a = errors[name]) === null || _a === void 0 ? void 0 : _a[index])
|
|
78759
78792
|
? "border-eui-danger-500"
|
|
78760
78793
|
: "border-eui-primary-400 focus:border-eui-secondary-500") }), jsx("button", __assign$1({ type: "button", onClick: function () { return remove(index); }, className: "text-red-500" }, { children: jsx(FaTrash, {}) }))] })));
|
|
78761
78794
|
} }), index)); }), provided.placeholder] })));
|
|
@@ -78768,25 +78801,48 @@ var InputList = function (_a) {
|
|
|
78768
78801
|
};
|
|
78769
78802
|
|
|
78770
78803
|
var InputListGroup = function (_a) {
|
|
78771
|
-
var
|
|
78772
|
-
var
|
|
78804
|
+
var _b, _c;
|
|
78805
|
+
var name = _a.name, placeholder = _a.placeholder, shape = _a.shape;
|
|
78806
|
+
var eui = useEUIConfig();
|
|
78807
|
+
// Resolved Global Overrides
|
|
78808
|
+
var resolvedShape = (_c = shape !== null && shape !== void 0 ? shape : (_b = eui === null || eui === void 0 ? void 0 : eui.global) === null || _b === void 0 ? void 0 : _b.shape) !== null && _c !== void 0 ? _c : "square";
|
|
78809
|
+
var _d = useFormikContext(), values = _d.values, errors = _d.errors, touched = _d.touched, setFieldValue = _d.setFieldValue;
|
|
78773
78810
|
return (jsxs("div", __assign$1({ className: "flex flex-col space-y-2" }, { children: [jsx(InputLabel, { text: placeholder }), jsx(FieldArray, __assign$1({ name: name }, { children: function (_a) {
|
|
78774
78811
|
var _b;
|
|
78775
78812
|
var push = _a.push, remove = _a.remove;
|
|
78776
|
-
return (jsxs("div", __assign$1({ className: "space-y-3" }, { children: [(_b = values[name]) === null || _b === void 0 ? void 0 : _b.map(function (group, groupIndex) {
|
|
78777
|
-
|
|
78778
|
-
|
|
78779
|
-
|
|
78780
|
-
|
|
78781
|
-
|
|
78782
|
-
|
|
78783
|
-
|
|
78784
|
-
|
|
78785
|
-
|
|
78786
|
-
|
|
78787
|
-
|
|
78788
|
-
|
|
78789
|
-
|
|
78813
|
+
return (jsxs("div", __assign$1({ className: "space-y-3" }, { children: [(_b = values[name]) === null || _b === void 0 ? void 0 : _b.map(function (group, groupIndex) {
|
|
78814
|
+
var _a;
|
|
78815
|
+
return (jsxs("div", __assign$1({ className: classnames((_a = {
|
|
78816
|
+
"flex flex-col gap-2 bg-eui-primary-300/10 p-3": true
|
|
78817
|
+
},
|
|
78818
|
+
_a["".concat(shapes[resolvedShape])] = true,
|
|
78819
|
+
_a)) }, { children: [jsxs("div", __assign$1({ className: "flex items-baseline gap-2" }, { children: [jsx(FaGripVertical, { className: "cursor-grab text-gray-500" }), jsx(Field, { name: "".concat(name, "[").concat(groupIndex, "].name"), placeholder: "Group ".concat(groupIndex + 1), className: classnames("border w-full bg-eui-primary-300/10 px-3 py-2 text-md focus:outline-none h-[40px]", ["".concat(shapes[resolvedShape])], "border-eui-primary-400 focus:border-eui-secondary-500") }), jsx("button", __assign$1({ type: "button", onClick: function () { return remove(groupIndex); }, className: "text-red-500" }, { children: jsx(FaTrash, {}) }))] })), jsx(FieldArray, __assign$1({ name: "".concat(name, "[").concat(groupIndex, "].items") }, { children: function (_a) {
|
|
78820
|
+
var pushItem = _a.push, removeItem = _a.remove; _a.move;
|
|
78821
|
+
return (jsx(DragDropContext, __assign$1({ onDragEnd: function (result) {
|
|
78822
|
+
if (!result.destination)
|
|
78823
|
+
return;
|
|
78824
|
+
var updatedItems = __spreadArray([], group.items, true);
|
|
78825
|
+
var movedItem = updatedItems.splice(result.source.index, 1)[0];
|
|
78826
|
+
updatedItems.splice(result.destination.index, 0, movedItem);
|
|
78827
|
+
setFieldValue("".concat(name, "[").concat(groupIndex, "].items"), updatedItems);
|
|
78828
|
+
} }, { children: jsx(ConnectedDroppable, __assign$1({ droppableId: "".concat(name, "[").concat(groupIndex, "].items") }, { children: function (provided) {
|
|
78829
|
+
var _a;
|
|
78830
|
+
var _b;
|
|
78831
|
+
return (jsxs("div", __assign$1({ ref: provided.innerRef }, provided.droppableProps, { className: classnames((_a = {
|
|
78832
|
+
"space-y-2 bg-eui-primary-300/10 p-2": true
|
|
78833
|
+
},
|
|
78834
|
+
_a["".concat(shapes[resolvedShape])] = true,
|
|
78835
|
+
_a)) }, { children: [(_b = group.items) === null || _b === void 0 ? void 0 : _b.map(function (_, itemIndex) { return (jsx(PublicDraggable, __assign$1({ draggableId: "".concat(groupIndex, "-").concat(itemIndex), index: itemIndex }, { children: function (provided) {
|
|
78836
|
+
var _a;
|
|
78837
|
+
return (jsxs("div", __assign$1({ ref: provided.innerRef }, provided.draggableProps, { className: classnames((_a = {
|
|
78838
|
+
"flex items-center gap-2 bg-eui-primary-300/10 p-2": true
|
|
78839
|
+
},
|
|
78840
|
+
_a["".concat(shapes[resolvedShape])] = true,
|
|
78841
|
+
_a)) }, { children: [jsx("div", __assign$1({}, provided.dragHandleProps, { children: jsx(FaGripVertical, { className: "cursor-grab text-gray-500" }) })), jsx(Field, { name: "".concat(name, "[").concat(groupIndex, "].items[").concat(itemIndex, "]"), placeholder: "Item ".concat(itemIndex + 1), className: classnames("border w-full bg-eui-primary-300/10 px-3 py-2 text-md focus:outline-none h-[40px]", ["".concat(shapes[resolvedShape])], "border-eui-primary-400 focus:border-eui-secondary-500") }), jsx("button", __assign$1({ type: "button", onClick: function () { return removeItem(itemIndex); }, className: "text-gray-500" }, { children: jsx(FaTrash, {}) }))] })));
|
|
78842
|
+
} }), itemIndex)); }), provided.placeholder, jsxs("button", __assign$1({ type: "button", onClick: function () { return pushItem(""); }, className: "flex items-center space-x-2 text-green-800 px-2 w-fit" }, { children: [jsx(FaPlus, {}), " ", jsx("span", { children: "Add Item" })] }))] })));
|
|
78843
|
+
} })) })));
|
|
78844
|
+
} }))] }), groupIndex));
|
|
78845
|
+
}), jsxs("button", __assign$1({ type: "button", onClick: function () { return push({ name: "", items: [] }); }, className: "flex items-center space-x-2 text-green-600 px-2 w-fit" }, { children: [jsx(FaPlus, {}), " ", jsx("span", { children: "Add New Group" })] })), jsx(InputResponse, { name: name, visibility: errors[name] &&
|
|
78790
78846
|
touched[name] &&
|
|
78791
78847
|
typeof errors[name] === "string"
|
|
78792
78848
|
? true
|
|
@@ -78825,13 +78881,18 @@ var Checkbox = function (props) {
|
|
|
78825
78881
|
|
|
78826
78882
|
var DateSelector = function (_a) {
|
|
78827
78883
|
var _b;
|
|
78828
|
-
var
|
|
78829
|
-
var
|
|
78884
|
+
var _c, _d;
|
|
78885
|
+
var placeholder = _a.placeholder, styles = _a.styles, shape = _a.shape, props = __rest$1(_a, ["placeholder", "styles", "shape"]);
|
|
78886
|
+
var eui = useEUIConfig();
|
|
78887
|
+
// Resolved Global Overrides
|
|
78888
|
+
var resolvedShape = (_d = shape !== null && shape !== void 0 ? shape : (_c = eui === null || eui === void 0 ? void 0 : eui.global) === null || _c === void 0 ? void 0 : _c.shape) !== null && _d !== void 0 ? _d : "square";
|
|
78889
|
+
var _e = useField(props), field = _e[0], meta = _e[1];
|
|
78830
78890
|
return (jsxs("div", __assign$1({ className: "relative w-full" }, { children: [jsx(InputLabel, { text: placeholder, styles: "absolute left-2 top-[0.7px] peer-placeholder-shown:text-base peer-placeholder-shown:top-3" }), jsx(Field, __assign$1({ type: "date" }, field, props, { placeholder: placeholder, className: classnames((_b = {
|
|
78831
|
-
"border border-eui-primary-400 peer w-full
|
|
78891
|
+
"border border-eui-primary-400 peer w-full bg-eui-primary-300/10 pt-5 px-3 pb-2 text-md eui-text-md placeholder-transparent placeholder-shown:p-3 focus:border-eui-secondary-500 focus:outline-none h-[50px]": true,
|
|
78832
78892
|
"border-eui-danger-500": meta.touched && meta.error,
|
|
78833
78893
|
"transition-all ease-in-out": true
|
|
78834
78894
|
},
|
|
78895
|
+
_b["".concat(shapes[resolvedShape])] = true,
|
|
78835
78896
|
_b["".concat(styles)] = styles,
|
|
78836
78897
|
_b)) })), meta.touched && meta.error && (jsx(InputResponse, { name: field.name, visibility: true, variant: "danger" }))] })));
|
|
78837
78898
|
};
|
|
@@ -79002,14 +79063,19 @@ function StarRatingInput(_a) {
|
|
|
79002
79063
|
|
|
79003
79064
|
function Select$2(_a) {
|
|
79004
79065
|
var _b;
|
|
79005
|
-
var
|
|
79006
|
-
var
|
|
79066
|
+
var _c, _d;
|
|
79067
|
+
var placeholder = _a.placeholder, options = _a.options, styles = _a.styles, shape = _a.shape, props = __rest$1(_a, ["placeholder", "options", "styles", "shape"]);
|
|
79068
|
+
var eui = useEUIConfig();
|
|
79069
|
+
// Resolved Global Overrides
|
|
79070
|
+
var resolvedShape = (_d = shape !== null && shape !== void 0 ? shape : (_c = eui === null || eui === void 0 ? void 0 : eui.global) === null || _c === void 0 ? void 0 : _c.shape) !== null && _d !== void 0 ? _d : "square";
|
|
79071
|
+
var _e = useField(props), field = _e[0], meta = _e[1];
|
|
79007
79072
|
return (jsxs("div", __assign$1({ className: "relative" }, { children: [jsx(InputLabel, { text: placeholder, styles: "absolute left-2 top-[0.7px] peer-placeholder-shown:text-base peer-placeholder-shown:top-3" }), jsx(Field, __assign$1({ as: "select" }, props, { className: classnames((_b = {
|
|
79008
|
-
"border peer w-full
|
|
79073
|
+
"border peer w-full bg-eui-primary-300/10 pt-5 px-3 pb-2 text-md eui-text-md placeholder-transparent placeholder-shown:p-3 focus:border-eui-secondary-500 focus:outline-none h-[50px]": true,
|
|
79009
79074
|
"border-eui-primary-400": !(meta.touched && meta.error),
|
|
79010
79075
|
"border-red-500": meta.touched && meta.error,
|
|
79011
79076
|
"transition-all ease-in-out": true
|
|
79012
79077
|
},
|
|
79078
|
+
_b["".concat(shapes[resolvedShape])] = true,
|
|
79013
79079
|
_b["".concat(styles)] = styles,
|
|
79014
79080
|
_b)) }, { children: options.map(function (option) {
|
|
79015
79081
|
return (jsx("option", __assign$1({ value: option.value }, { children: option.label }), option.value));
|
|
@@ -79066,17 +79132,21 @@ function Tags(_a) {
|
|
|
79066
79132
|
|
|
79067
79133
|
function TextArea(_a) {
|
|
79068
79134
|
var _b;
|
|
79069
|
-
var _c;
|
|
79070
|
-
var placeholder = _a.placeholder, limit = _a.limit, styles = _a.styles, props = __rest$1(_a, ["placeholder", "limit", "styles"]);
|
|
79071
|
-
var
|
|
79135
|
+
var _c, _d, _e;
|
|
79136
|
+
var placeholder = _a.placeholder, limit = _a.limit, styles = _a.styles, shape = _a.shape, props = __rest$1(_a, ["placeholder", "limit", "styles", "shape"]);
|
|
79137
|
+
var eui = useEUIConfig();
|
|
79138
|
+
// Resolved Global Overrides
|
|
79139
|
+
var resolvedShape = (_d = shape !== null && shape !== void 0 ? shape : (_c = eui === null || eui === void 0 ? void 0 : eui.global) === null || _c === void 0 ? void 0 : _c.shape) !== null && _d !== void 0 ? _d : "square";
|
|
79140
|
+
var _f = useField(props), field = _f[0], meta = _f[1];
|
|
79072
79141
|
return (jsxs("div", { children: [jsxs("div", __assign$1({ className: "relative" }, { children: [jsx(Field, __assign$1({ as: "textarea" }, field, props, { className: classnames((_b = {
|
|
79073
|
-
"border peer w-full bg-eui-primary-300/10 eui-text-md outline-none px-3 py-5
|
|
79142
|
+
"border peer w-full bg-eui-primary-300/10 eui-text-md outline-none px-3 py-5 resize-none focus:resize-none focus:outline-none": true,
|
|
79074
79143
|
"transition-all ease-in-out": true,
|
|
79075
79144
|
"border-eui-primary-400 focus:border-eui-secondary-500": !(meta.touched && meta.error),
|
|
79076
79145
|
"border-eui-danger-500": meta.touched && meta.error
|
|
79077
79146
|
},
|
|
79147
|
+
_b["".concat(shapes[resolvedShape])] = true,
|
|
79078
79148
|
_b["".concat(styles)] = styles,
|
|
79079
|
-
_b)) })), jsx(InputLabel, { text: placeholder, styles: classnames("absolute left-2 transition-all pointer-events-none text-eui-dark-200", field.value ? "top-[2px] text-[13.5px]" : "top-3 text-base") }), jsxs("div", __assign$1({ className: "absolute bottom-3 right-3 text-xs text-eui-dark-50 font-semibold" }, { children: [(
|
|
79149
|
+
_b)) })), jsx(InputLabel, { text: placeholder, styles: classnames("absolute left-2 transition-all pointer-events-none text-eui-dark-200", field.value ? "top-[2px] text-[13.5px]" : "top-3 text-base") }), jsxs("div", __assign$1({ className: "absolute bottom-3 right-3 text-xs text-eui-dark-50 font-semibold" }, { children: [(_e = field.value) === null || _e === void 0 ? void 0 : _e.length, "/", limit] }))] })), jsx(InputResponse, { name: field.name, visibility: meta.touched && meta.error ? true : false, variant: "danger" })] }));
|
|
79080
79150
|
}
|
|
79081
79151
|
|
|
79082
79152
|
function ContentArea(_a) {
|
|
@@ -140797,4 +140867,4 @@ function SidemenuLayout(_a) {
|
|
|
140797
140867
|
}) }, { children: [jsx("div", __assign$1({ className: "col-span-2 mb-10" }, { children: jsx(Menu, { data: data }) })), jsx("div", __assign$1({ className: "w-full col-span-5" }, { children: jsx("div", __assign$1({ className: "px-5 py-3" }, { children: children })) }))] })) }));
|
|
140798
140868
|
}
|
|
140799
140869
|
|
|
140800
|
-
export { Accordion, AsyncComponentWrapper, Avatar, Backdrop, Badge, BarChart, BoxNav, BoxNavItem, Brand, Breadcrumb, BreadcrumbItem, Button$2 as Button, Card, CardContent, CardFooter, CardHeader, Chapter, Checkbox, Chip, CloudinaryImage, CloudinaryVideo, Content$2 as Content, ContentArea, DateSelector, DefaultLayout, Drawer, DrawerToggler, Flag, Flex, FlexCol, FlexRow, Footer, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse, GenericLayout, GlowWrapper, Grid, Header, HeaderNav, HeaderNavGroup, HeaderNavItem, HeaderNavItemContext, HeaderNavItemTitle, HomeLayout, Image$1 as Image, ImageInput, Info, Input, InputFile, InputLabel, InputList, InputListGroup, InputResponse, Layout, LineChart, Link, List, ListItem, MarkdownEditor, MarkdownViewer, Menu, MenuGroup, MenuItem, MenuItemTitle, Modal, MultiImageInput, Paragraph, PieChart, PriceTag, Quote, Radio, RouteTab, RouteTabs, Section, Select$2 as Select, ShowMore, Sidebar, SidebarLayout, SidemenuLayout, Skeleton, Slider, StarRating, StarRatingDistribution, StarRatingInput, Switch, Table, Tag, Tags, TextArea, ThemeContext, ThemeProvider, ThemeSwitch, TitleBanner, Toast, Tooltip$1 as Tooltip, Transition$1 as Transition, TransitionDropdown, TransitionFadeIn, Typography, UnderConstructionBanner, ValueBadge, WorldMap, WorldMapCountryTable, YoutubeVideoPlayer, getCurrencySymbol, sendToast, useClickOutside, useCurrentTheme, useDrawer, useIsMobile, useModal, useTheme };
|
|
140870
|
+
export { Accordion, AsyncComponentWrapper, Avatar, Backdrop, Badge, BarChart, BoxNav, BoxNavItem, Brand, Breadcrumb, BreadcrumbItem, Button$2 as Button, Card, CardContent, CardFooter, CardHeader, Chapter, Checkbox, Chip, CloudinaryImage, CloudinaryProvider, CloudinaryVideo, Content$2 as Content, ContentArea, DateSelector, DefaultLayout, Drawer, DrawerToggler, EUIProvider, Flag, Flex, FlexCol, FlexRow, Footer, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse, GenericLayout, GlowWrapper, Grid, Header, HeaderNav, HeaderNavGroup, HeaderNavItem, HeaderNavItemContext, HeaderNavItemTitle, HomeLayout, Image$1 as Image, ImageInput, Info, Input, InputFile, InputLabel, InputList, InputListGroup, InputResponse, Layout, LineChart, Link, List, ListItem, MarkdownEditor, MarkdownViewer, Menu, MenuGroup, MenuItem, MenuItemTitle, Modal, MultiImageInput, Paragraph, PieChart, PriceTag, Quote, Radio, RouteTab, RouteTabs, Section, Select$2 as Select, ShowMore, Sidebar, SidebarLayout, SidemenuLayout, Skeleton, Slider, StarRating, StarRatingDistribution, StarRatingInput, Switch, Table, Tag, Tags, TextArea, ThemeContext, ThemeProvider, ThemeSwitch, TitleBanner, Toast, Tooltip$1 as Tooltip, Transition$1 as Transition, TransitionDropdown, TransitionFadeIn, Typography, UnderConstructionBanner, ValueBadge, WorldMap, WorldMapCountryTable, YoutubeVideoPlayer, getCurrencySymbol, resolveWithGlobal, sendToast, useClickOutside, useCloudinaryConfig, useCurrentTheme, useDrawer, useEUIConfig, useIsMobile, useModal, useTheme };
|
package/build/index.js
CHANGED
|
@@ -31134,21 +31134,25 @@ Video.defaultProps = {
|
|
|
31134
31134
|
type: PropTypes.string
|
|
31135
31135
|
});
|
|
31136
31136
|
|
|
31137
|
-
var
|
|
31137
|
+
var CloudinaryContextConfig = React.createContext(null);
|
|
31138
|
+
var CloudinaryProvider = function (_a) {
|
|
31139
|
+
var cloudName = _a.cloudName, children = _a.children;
|
|
31140
|
+
return (jsxRuntime.jsx(CloudinaryContextConfig.Provider, __assign$1({ value: { cloudName: cloudName } }, { children: children })));
|
|
31141
|
+
};
|
|
31142
|
+
var useCloudinaryConfig = function () {
|
|
31143
|
+
var ctx = React.useContext(CloudinaryContextConfig);
|
|
31144
|
+
if (!ctx) {
|
|
31145
|
+
throw new Error("CloudinaryProvider is missing. Wrap your app with <CloudinaryProvider />");
|
|
31146
|
+
}
|
|
31147
|
+
return ctx;
|
|
31148
|
+
};
|
|
31149
|
+
|
|
31150
|
+
var DEFAULT_PUBLIC_CLOUD = "demo";
|
|
31138
31151
|
function CloudinaryImage(_a) {
|
|
31139
|
-
var _b,
|
|
31140
|
-
var
|
|
31141
|
-
var resolvedCloudName = cloudName ||
|
|
31142
|
-
|
|
31143
|
-
(typeof ({ url: (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT' && document.currentScript.src || new URL('index.js', document.baseURI).href)) }) !== "undefined" &&
|
|
31144
|
-
((_b = undefined) === null || _b === void 0 ? void 0 : _b.VITE_CLOUDINARY_NAME)) ||
|
|
31145
|
-
// CRA / Node-style env: process.env.REACT_APP_CLOUDINARY_NAME
|
|
31146
|
-
(typeof process !== "undefined" &&
|
|
31147
|
-
((_c = process.env) === null || _c === void 0 ? void 0 : _c.REACT_APP_CLOUDINARY_NAME)) ||
|
|
31148
|
-
// ✅ Final fallback for Storybook / demos
|
|
31149
|
-
DEFAULT_PUBLIC_CLOUD;
|
|
31150
|
-
var resolvedPublicId = publicId || "sample"; // "sample" exists in the demo cloud
|
|
31151
|
-
return (jsxRuntime.jsx(CloudinaryContext, __assign$1({ cloudName: resolvedCloudName }, { children: jsxRuntime.jsx(Image$2, { publicId: resolvedPublicId, secure: secure, alt: alt, className: styles }) })));
|
|
31152
|
+
var publicId = _a.publicId, cloudName = _a.cloudName, _b = _a.secure, secure = _b === void 0 ? true : _b, alt = _a.alt, styles = _a.styles;
|
|
31153
|
+
var providerConfig = useCloudinaryConfig();
|
|
31154
|
+
var resolvedCloudName = cloudName || (providerConfig === null || providerConfig === void 0 ? void 0 : providerConfig.cloudName) || DEFAULT_PUBLIC_CLOUD;
|
|
31155
|
+
return (jsxRuntime.jsx(CloudinaryContext, __assign$1({ cloudName: resolvedCloudName }, { children: jsxRuntime.jsx(Image$2, { publicId: publicId || "sample", secure: secure, alt: alt, className: styles }) })));
|
|
31152
31156
|
}
|
|
31153
31157
|
|
|
31154
31158
|
var Image$1 = function (_a) {
|
|
@@ -68007,6 +68011,18 @@ function WorldMapCountryTable(_a) {
|
|
|
68007
68011
|
return (jsxRuntime.jsx("div", __assign$1({ className: "bg-white dark:bg-neutral-950 rounded-2xl shadow-md p-4" }, { children: jsxRuntime.jsx(Table, { title: title, data: finalData, columns: columns, defaultPageSize: defaultPageSize, pageSizeOptions: [5, 10, "All"] }) })));
|
|
68008
68012
|
}
|
|
68009
68013
|
|
|
68014
|
+
var EUIContext = React.createContext(null);
|
|
68015
|
+
var EUIProvider = function (_a) {
|
|
68016
|
+
var config = _a.config, children = _a.children;
|
|
68017
|
+
return jsxRuntime.jsx(EUIContext.Provider, __assign$1({ value: config }, { children: children }));
|
|
68018
|
+
};
|
|
68019
|
+
var useEUIConfig = function () { return React.useContext(EUIContext); };
|
|
68020
|
+
|
|
68021
|
+
function resolveWithGlobal(config, props, defaults) {
|
|
68022
|
+
var _a;
|
|
68023
|
+
return __assign$1(__assign$1(__assign$1({}, defaults), ((_a = config === null || config === void 0 ? void 0 : config.global) !== null && _a !== void 0 ? _a : {})), props);
|
|
68024
|
+
}
|
|
68025
|
+
|
|
68010
68026
|
var sizes = {
|
|
68011
68027
|
xs: "px-2 py-1 text-xs",
|
|
68012
68028
|
sm: "px-3 py-1.5 text-sm",
|
|
@@ -68016,7 +68032,11 @@ var sizes = {
|
|
|
68016
68032
|
};
|
|
68017
68033
|
var Button$2 = function (_a) {
|
|
68018
68034
|
var _b;
|
|
68019
|
-
var _c
|
|
68035
|
+
var _c, _d;
|
|
68036
|
+
var _e = _a.type, type = _e === void 0 ? "button" : _e, icon = _a.icon, text = _a.text, children = _a.children, loading = _a.loading, disabled = _a.disabled, ghost = _a.ghost, block = _a.block, _f = _a.variant, variant = _f === void 0 ? "success" : _f, shape = _a.shape, _g = _a.size, size = _g === void 0 ? "md" : _g, styles = _a.styles, onClick = _a.onClick;
|
|
68037
|
+
var eui = useEUIConfig();
|
|
68038
|
+
// Resolved Global Overrides
|
|
68039
|
+
var resolvedShape = (_d = shape !== null && shape !== void 0 ? shape : (_c = eui === null || eui === void 0 ? void 0 : eui.global) === null || _c === void 0 ? void 0 : _c.shape) !== null && _d !== void 0 ? _d : "square";
|
|
68020
68040
|
var btnRef = React.useRef(null);
|
|
68021
68041
|
// 👉 Glow effect on mouse move
|
|
68022
68042
|
var handleMouseMove = function (e) {
|
|
@@ -68035,7 +68055,7 @@ var Button$2 = function (_a) {
|
|
|
68035
68055
|
},
|
|
68036
68056
|
_b["".concat(variants[variant])] = !ghost,
|
|
68037
68057
|
_b["".concat(variantsGhost[variant])] = ghost,
|
|
68038
|
-
_b["".concat(shapes[
|
|
68058
|
+
_b["".concat(shapes[resolvedShape])] = true,
|
|
68039
68059
|
_b["".concat(sizes[size])] = true,
|
|
68040
68060
|
_b["w-full"] = block,
|
|
68041
68061
|
_b["brightness-75 grayscale text-gray-900 cursor-not-allowed"] = loading || disabled,
|
|
@@ -68084,9 +68104,13 @@ var PasswordVisibilityToggler = function (_a) {
|
|
|
68084
68104
|
};
|
|
68085
68105
|
var Input = function (_a) {
|
|
68086
68106
|
var _b;
|
|
68087
|
-
var _c
|
|
68088
|
-
var _e =
|
|
68089
|
-
var
|
|
68107
|
+
var _c, _d;
|
|
68108
|
+
var _e = _a.type, type = _e === void 0 ? "text" : _e, placeholder = _a.placeholder, styles = _a.styles, step = _a.step, shape = _a.shape, props = __rest$1(_a, ["type", "placeholder", "styles", "step", "shape"]);
|
|
68109
|
+
var eui = useEUIConfig();
|
|
68110
|
+
// Resolved Global Overrides
|
|
68111
|
+
var resolvedShape = (_d = shape !== null && shape !== void 0 ? shape : (_c = eui === null || eui === void 0 ? void 0 : eui.global) === null || _c === void 0 ? void 0 : _c.shape) !== null && _d !== void 0 ? _d : "square";
|
|
68112
|
+
var _f = useField(props), field = _f[0], meta = _f[1];
|
|
68113
|
+
var _g = React.useState(false), passwordVisibility = _g[0], setPasswordVisibilty = _g[1];
|
|
68090
68114
|
// Determine the final input type
|
|
68091
68115
|
var inputType = type === "password" ? toggleType(passwordVisibility) : type;
|
|
68092
68116
|
return (jsxRuntime.jsxs("div", __assign$1({ className: "relative w-full" }, { children: [jsxRuntime.jsx(Field, __assign$1({ type: inputType, step: inputType === "number" && step ? step : undefined }, field, props, { placeholder: placeholder, className: classnames((_b = {
|
|
@@ -68094,7 +68118,7 @@ var Input = function (_a) {
|
|
|
68094
68118
|
"border-eui-primary-400 focus:border-eui-secondary-500": !(meta.touched && meta.error),
|
|
68095
68119
|
"border-eui-danger-500": meta.touched && meta.error
|
|
68096
68120
|
},
|
|
68097
|
-
_b["".concat(shapes[
|
|
68121
|
+
_b["".concat(shapes[resolvedShape])] = true,
|
|
68098
68122
|
// "transition-all ease-in-out": true,
|
|
68099
68123
|
_b["".concat(styles)] = styles,
|
|
68100
68124
|
_b)) })), jsxRuntime.jsx(InputLabel, { text: placeholder, styles: "absolute left-2 top-[0.7px] eui-text-sm text-[13.5px] peer-placeholder-shown:text-base peer-placeholder-shown:top-3 pointer-events-none" }), type === "password" && (jsxRuntime.jsx(PasswordVisibilityToggler, { onClick: function (v) { return setPasswordVisibilty(v); } })), jsxRuntime.jsx(InputResponse, { name: field.name, visibility: meta.touched && meta.error ? true : false, variant: "danger" })] })));
|
|
@@ -78770,11 +78794,20 @@ var ConnectedDroppable = connect(makeMapStateToProps$1, mapDispatchToProps$1, nu
|
|
|
78770
78794
|
ConnectedDroppable.defaultProps = defaultProps;
|
|
78771
78795
|
|
|
78772
78796
|
var InputList = function (_a) {
|
|
78773
|
-
var
|
|
78774
|
-
var
|
|
78797
|
+
var _b, _c;
|
|
78798
|
+
var name = _a.name, placeholder = _a.placeholder, shape = _a.shape;
|
|
78799
|
+
var eui = useEUIConfig();
|
|
78800
|
+
// Resolved Global Overrides
|
|
78801
|
+
var resolvedShape = (_c = shape !== null && shape !== void 0 ? shape : (_b = eui === null || eui === void 0 ? void 0 : eui.global) === null || _b === void 0 ? void 0 : _b.shape) !== null && _c !== void 0 ? _c : "square";
|
|
78802
|
+
var _d = useFormikContext(), values = _d.values, errors = _d.errors, touched = _d.touched;
|
|
78775
78803
|
return (jsxRuntime.jsxs("div", { children: [jsxRuntime.jsx(InputLabel, { text: placeholder }), jsxRuntime.jsx("div", __assign$1({ className: "mt-2" }, { children: jsxRuntime.jsx(FieldArray, __assign$1({ name: name }, { children: function (_a) {
|
|
78804
|
+
var _b;
|
|
78776
78805
|
var push = _a.push, remove = _a.remove, move = _a.move;
|
|
78777
|
-
return (jsxRuntime.jsxs("div", __assign$1({ className:
|
|
78806
|
+
return (jsxRuntime.jsxs("div", __assign$1({ className: classnames((_b = {
|
|
78807
|
+
"flex flex-col space-y-2 w-full bg-eui-primary-300/10": true
|
|
78808
|
+
},
|
|
78809
|
+
_b["".concat(shapes[resolvedShape])] = true,
|
|
78810
|
+
_b)) }, { children: [jsxRuntime.jsx(DragDropContext, __assign$1({ onDragEnd: function (result) {
|
|
78778
78811
|
if (!result.destination)
|
|
78779
78812
|
return;
|
|
78780
78813
|
move(result.source.index, result.destination.index);
|
|
@@ -78782,7 +78815,7 @@ var InputList = function (_a) {
|
|
|
78782
78815
|
var _a;
|
|
78783
78816
|
return (jsxRuntime.jsxs("div", __assign$1({ ref: provided.innerRef }, provided.droppableProps, { children: [(_a = values[name]) === null || _a === void 0 ? void 0 : _a.map(function (_, index) { return (jsxRuntime.jsx(PublicDraggable, __assign$1({ draggableId: index.toString(), index: index }, { children: function (provided) {
|
|
78784
78817
|
var _a;
|
|
78785
|
-
return (jsxRuntime.jsxs("div", __assign$1({ ref: provided.innerRef }, provided.draggableProps, { className: "flex items-center space-x-2 bg-eui-primary-300/10 p-2" }, { children: [jsxRuntime.jsx("div", __assign$1({}, provided.dragHandleProps, { children: jsxRuntime.jsx(FaGripVertical, { className: "cursor-grab text-gray-500" }) })), jsxRuntime.jsx(Field, { name: "".concat(name, "[").concat(index, "]"), placeholder: "Item ".concat(index + 1), className: classnames("border peer w-full
|
|
78818
|
+
return (jsxRuntime.jsxs("div", __assign$1({ ref: provided.innerRef }, provided.draggableProps, { className: "flex items-center space-x-2 bg-eui-primary-300/10 p-2" }, { children: [jsxRuntime.jsx("div", __assign$1({}, provided.dragHandleProps, { children: jsxRuntime.jsx(FaGripVertical, { className: "cursor-grab text-gray-500" }) })), jsxRuntime.jsx(Field, { name: "".concat(name, "[").concat(index, "]"), placeholder: "Item ".concat(index + 1), className: classnames("border peer w-full bg-eui-primary-300/10 pt-5 px-3 pb-2 text-md eui-text-md placeholder-transparent placeholder-shown:p-3 focus:outline-none h-[50px]", ["".concat(shapes[resolvedShape])], ((_a = errors[name]) === null || _a === void 0 ? void 0 : _a[index])
|
|
78786
78819
|
? "border-eui-danger-500"
|
|
78787
78820
|
: "border-eui-primary-400 focus:border-eui-secondary-500") }), jsxRuntime.jsx("button", __assign$1({ type: "button", onClick: function () { return remove(index); }, className: "text-red-500" }, { children: jsxRuntime.jsx(FaTrash, {}) }))] })));
|
|
78788
78821
|
} }), index)); }), provided.placeholder] })));
|
|
@@ -78795,25 +78828,48 @@ var InputList = function (_a) {
|
|
|
78795
78828
|
};
|
|
78796
78829
|
|
|
78797
78830
|
var InputListGroup = function (_a) {
|
|
78798
|
-
var
|
|
78799
|
-
var
|
|
78831
|
+
var _b, _c;
|
|
78832
|
+
var name = _a.name, placeholder = _a.placeholder, shape = _a.shape;
|
|
78833
|
+
var eui = useEUIConfig();
|
|
78834
|
+
// Resolved Global Overrides
|
|
78835
|
+
var resolvedShape = (_c = shape !== null && shape !== void 0 ? shape : (_b = eui === null || eui === void 0 ? void 0 : eui.global) === null || _b === void 0 ? void 0 : _b.shape) !== null && _c !== void 0 ? _c : "square";
|
|
78836
|
+
var _d = useFormikContext(), values = _d.values, errors = _d.errors, touched = _d.touched, setFieldValue = _d.setFieldValue;
|
|
78800
78837
|
return (jsxRuntime.jsxs("div", __assign$1({ className: "flex flex-col space-y-2" }, { children: [jsxRuntime.jsx(InputLabel, { text: placeholder }), jsxRuntime.jsx(FieldArray, __assign$1({ name: name }, { children: function (_a) {
|
|
78801
78838
|
var _b;
|
|
78802
78839
|
var push = _a.push, remove = _a.remove;
|
|
78803
|
-
return (jsxRuntime.jsxs("div", __assign$1({ className: "space-y-3" }, { children: [(_b = values[name]) === null || _b === void 0 ? void 0 : _b.map(function (group, groupIndex) {
|
|
78804
|
-
|
|
78805
|
-
|
|
78806
|
-
|
|
78807
|
-
|
|
78808
|
-
|
|
78809
|
-
|
|
78810
|
-
|
|
78811
|
-
|
|
78812
|
-
|
|
78813
|
-
|
|
78814
|
-
|
|
78815
|
-
|
|
78816
|
-
|
|
78840
|
+
return (jsxRuntime.jsxs("div", __assign$1({ className: "space-y-3" }, { children: [(_b = values[name]) === null || _b === void 0 ? void 0 : _b.map(function (group, groupIndex) {
|
|
78841
|
+
var _a;
|
|
78842
|
+
return (jsxRuntime.jsxs("div", __assign$1({ className: classnames((_a = {
|
|
78843
|
+
"flex flex-col gap-2 bg-eui-primary-300/10 p-3": true
|
|
78844
|
+
},
|
|
78845
|
+
_a["".concat(shapes[resolvedShape])] = true,
|
|
78846
|
+
_a)) }, { children: [jsxRuntime.jsxs("div", __assign$1({ className: "flex items-baseline gap-2" }, { children: [jsxRuntime.jsx(FaGripVertical, { className: "cursor-grab text-gray-500" }), jsxRuntime.jsx(Field, { name: "".concat(name, "[").concat(groupIndex, "].name"), placeholder: "Group ".concat(groupIndex + 1), className: classnames("border w-full bg-eui-primary-300/10 px-3 py-2 text-md focus:outline-none h-[40px]", ["".concat(shapes[resolvedShape])], "border-eui-primary-400 focus:border-eui-secondary-500") }), jsxRuntime.jsx("button", __assign$1({ type: "button", onClick: function () { return remove(groupIndex); }, className: "text-red-500" }, { children: jsxRuntime.jsx(FaTrash, {}) }))] })), jsxRuntime.jsx(FieldArray, __assign$1({ name: "".concat(name, "[").concat(groupIndex, "].items") }, { children: function (_a) {
|
|
78847
|
+
var pushItem = _a.push, removeItem = _a.remove; _a.move;
|
|
78848
|
+
return (jsxRuntime.jsx(DragDropContext, __assign$1({ onDragEnd: function (result) {
|
|
78849
|
+
if (!result.destination)
|
|
78850
|
+
return;
|
|
78851
|
+
var updatedItems = __spreadArray([], group.items, true);
|
|
78852
|
+
var movedItem = updatedItems.splice(result.source.index, 1)[0];
|
|
78853
|
+
updatedItems.splice(result.destination.index, 0, movedItem);
|
|
78854
|
+
setFieldValue("".concat(name, "[").concat(groupIndex, "].items"), updatedItems);
|
|
78855
|
+
} }, { children: jsxRuntime.jsx(ConnectedDroppable, __assign$1({ droppableId: "".concat(name, "[").concat(groupIndex, "].items") }, { children: function (provided) {
|
|
78856
|
+
var _a;
|
|
78857
|
+
var _b;
|
|
78858
|
+
return (jsxRuntime.jsxs("div", __assign$1({ ref: provided.innerRef }, provided.droppableProps, { className: classnames((_a = {
|
|
78859
|
+
"space-y-2 bg-eui-primary-300/10 p-2": true
|
|
78860
|
+
},
|
|
78861
|
+
_a["".concat(shapes[resolvedShape])] = true,
|
|
78862
|
+
_a)) }, { children: [(_b = group.items) === null || _b === void 0 ? void 0 : _b.map(function (_, itemIndex) { return (jsxRuntime.jsx(PublicDraggable, __assign$1({ draggableId: "".concat(groupIndex, "-").concat(itemIndex), index: itemIndex }, { children: function (provided) {
|
|
78863
|
+
var _a;
|
|
78864
|
+
return (jsxRuntime.jsxs("div", __assign$1({ ref: provided.innerRef }, provided.draggableProps, { className: classnames((_a = {
|
|
78865
|
+
"flex items-center gap-2 bg-eui-primary-300/10 p-2": true
|
|
78866
|
+
},
|
|
78867
|
+
_a["".concat(shapes[resolvedShape])] = true,
|
|
78868
|
+
_a)) }, { children: [jsxRuntime.jsx("div", __assign$1({}, provided.dragHandleProps, { children: jsxRuntime.jsx(FaGripVertical, { className: "cursor-grab text-gray-500" }) })), jsxRuntime.jsx(Field, { name: "".concat(name, "[").concat(groupIndex, "].items[").concat(itemIndex, "]"), placeholder: "Item ".concat(itemIndex + 1), className: classnames("border w-full bg-eui-primary-300/10 px-3 py-2 text-md focus:outline-none h-[40px]", ["".concat(shapes[resolvedShape])], "border-eui-primary-400 focus:border-eui-secondary-500") }), jsxRuntime.jsx("button", __assign$1({ type: "button", onClick: function () { return removeItem(itemIndex); }, className: "text-gray-500" }, { children: jsxRuntime.jsx(FaTrash, {}) }))] })));
|
|
78869
|
+
} }), itemIndex)); }), provided.placeholder, jsxRuntime.jsxs("button", __assign$1({ type: "button", onClick: function () { return pushItem(""); }, className: "flex items-center space-x-2 text-green-800 px-2 w-fit" }, { children: [jsxRuntime.jsx(FaPlus, {}), " ", jsxRuntime.jsx("span", { children: "Add Item" })] }))] })));
|
|
78870
|
+
} })) })));
|
|
78871
|
+
} }))] }), groupIndex));
|
|
78872
|
+
}), jsxRuntime.jsxs("button", __assign$1({ type: "button", onClick: function () { return push({ name: "", items: [] }); }, className: "flex items-center space-x-2 text-green-600 px-2 w-fit" }, { children: [jsxRuntime.jsx(FaPlus, {}), " ", jsxRuntime.jsx("span", { children: "Add New Group" })] })), jsxRuntime.jsx(InputResponse, { name: name, visibility: errors[name] &&
|
|
78817
78873
|
touched[name] &&
|
|
78818
78874
|
typeof errors[name] === "string"
|
|
78819
78875
|
? true
|
|
@@ -78852,13 +78908,18 @@ var Checkbox = function (props) {
|
|
|
78852
78908
|
|
|
78853
78909
|
var DateSelector = function (_a) {
|
|
78854
78910
|
var _b;
|
|
78855
|
-
var
|
|
78856
|
-
var
|
|
78911
|
+
var _c, _d;
|
|
78912
|
+
var placeholder = _a.placeholder, styles = _a.styles, shape = _a.shape, props = __rest$1(_a, ["placeholder", "styles", "shape"]);
|
|
78913
|
+
var eui = useEUIConfig();
|
|
78914
|
+
// Resolved Global Overrides
|
|
78915
|
+
var resolvedShape = (_d = shape !== null && shape !== void 0 ? shape : (_c = eui === null || eui === void 0 ? void 0 : eui.global) === null || _c === void 0 ? void 0 : _c.shape) !== null && _d !== void 0 ? _d : "square";
|
|
78916
|
+
var _e = useField(props), field = _e[0], meta = _e[1];
|
|
78857
78917
|
return (jsxRuntime.jsxs("div", __assign$1({ className: "relative w-full" }, { children: [jsxRuntime.jsx(InputLabel, { text: placeholder, styles: "absolute left-2 top-[0.7px] peer-placeholder-shown:text-base peer-placeholder-shown:top-3" }), jsxRuntime.jsx(Field, __assign$1({ type: "date" }, field, props, { placeholder: placeholder, className: classnames((_b = {
|
|
78858
|
-
"border border-eui-primary-400 peer w-full
|
|
78918
|
+
"border border-eui-primary-400 peer w-full bg-eui-primary-300/10 pt-5 px-3 pb-2 text-md eui-text-md placeholder-transparent placeholder-shown:p-3 focus:border-eui-secondary-500 focus:outline-none h-[50px]": true,
|
|
78859
78919
|
"border-eui-danger-500": meta.touched && meta.error,
|
|
78860
78920
|
"transition-all ease-in-out": true
|
|
78861
78921
|
},
|
|
78922
|
+
_b["".concat(shapes[resolvedShape])] = true,
|
|
78862
78923
|
_b["".concat(styles)] = styles,
|
|
78863
78924
|
_b)) })), meta.touched && meta.error && (jsxRuntime.jsx(InputResponse, { name: field.name, visibility: true, variant: "danger" }))] })));
|
|
78864
78925
|
};
|
|
@@ -79029,14 +79090,19 @@ function StarRatingInput(_a) {
|
|
|
79029
79090
|
|
|
79030
79091
|
function Select$2(_a) {
|
|
79031
79092
|
var _b;
|
|
79032
|
-
var
|
|
79033
|
-
var
|
|
79093
|
+
var _c, _d;
|
|
79094
|
+
var placeholder = _a.placeholder, options = _a.options, styles = _a.styles, shape = _a.shape, props = __rest$1(_a, ["placeholder", "options", "styles", "shape"]);
|
|
79095
|
+
var eui = useEUIConfig();
|
|
79096
|
+
// Resolved Global Overrides
|
|
79097
|
+
var resolvedShape = (_d = shape !== null && shape !== void 0 ? shape : (_c = eui === null || eui === void 0 ? void 0 : eui.global) === null || _c === void 0 ? void 0 : _c.shape) !== null && _d !== void 0 ? _d : "square";
|
|
79098
|
+
var _e = useField(props), field = _e[0], meta = _e[1];
|
|
79034
79099
|
return (jsxRuntime.jsxs("div", __assign$1({ className: "relative" }, { children: [jsxRuntime.jsx(InputLabel, { text: placeholder, styles: "absolute left-2 top-[0.7px] peer-placeholder-shown:text-base peer-placeholder-shown:top-3" }), jsxRuntime.jsx(Field, __assign$1({ as: "select" }, props, { className: classnames((_b = {
|
|
79035
|
-
"border peer w-full
|
|
79100
|
+
"border peer w-full bg-eui-primary-300/10 pt-5 px-3 pb-2 text-md eui-text-md placeholder-transparent placeholder-shown:p-3 focus:border-eui-secondary-500 focus:outline-none h-[50px]": true,
|
|
79036
79101
|
"border-eui-primary-400": !(meta.touched && meta.error),
|
|
79037
79102
|
"border-red-500": meta.touched && meta.error,
|
|
79038
79103
|
"transition-all ease-in-out": true
|
|
79039
79104
|
},
|
|
79105
|
+
_b["".concat(shapes[resolvedShape])] = true,
|
|
79040
79106
|
_b["".concat(styles)] = styles,
|
|
79041
79107
|
_b)) }, { children: options.map(function (option) {
|
|
79042
79108
|
return (jsxRuntime.jsx("option", __assign$1({ value: option.value }, { children: option.label }), option.value));
|
|
@@ -79093,17 +79159,21 @@ function Tags(_a) {
|
|
|
79093
79159
|
|
|
79094
79160
|
function TextArea(_a) {
|
|
79095
79161
|
var _b;
|
|
79096
|
-
var _c;
|
|
79097
|
-
var placeholder = _a.placeholder, limit = _a.limit, styles = _a.styles, props = __rest$1(_a, ["placeholder", "limit", "styles"]);
|
|
79098
|
-
var
|
|
79162
|
+
var _c, _d, _e;
|
|
79163
|
+
var placeholder = _a.placeholder, limit = _a.limit, styles = _a.styles, shape = _a.shape, props = __rest$1(_a, ["placeholder", "limit", "styles", "shape"]);
|
|
79164
|
+
var eui = useEUIConfig();
|
|
79165
|
+
// Resolved Global Overrides
|
|
79166
|
+
var resolvedShape = (_d = shape !== null && shape !== void 0 ? shape : (_c = eui === null || eui === void 0 ? void 0 : eui.global) === null || _c === void 0 ? void 0 : _c.shape) !== null && _d !== void 0 ? _d : "square";
|
|
79167
|
+
var _f = useField(props), field = _f[0], meta = _f[1];
|
|
79099
79168
|
return (jsxRuntime.jsxs("div", { children: [jsxRuntime.jsxs("div", __assign$1({ className: "relative" }, { children: [jsxRuntime.jsx(Field, __assign$1({ as: "textarea" }, field, props, { className: classnames((_b = {
|
|
79100
|
-
"border peer w-full bg-eui-primary-300/10 eui-text-md outline-none px-3 py-5
|
|
79169
|
+
"border peer w-full bg-eui-primary-300/10 eui-text-md outline-none px-3 py-5 resize-none focus:resize-none focus:outline-none": true,
|
|
79101
79170
|
"transition-all ease-in-out": true,
|
|
79102
79171
|
"border-eui-primary-400 focus:border-eui-secondary-500": !(meta.touched && meta.error),
|
|
79103
79172
|
"border-eui-danger-500": meta.touched && meta.error
|
|
79104
79173
|
},
|
|
79174
|
+
_b["".concat(shapes[resolvedShape])] = true,
|
|
79105
79175
|
_b["".concat(styles)] = styles,
|
|
79106
|
-
_b)) })), jsxRuntime.jsx(InputLabel, { text: placeholder, styles: classnames("absolute left-2 transition-all pointer-events-none text-eui-dark-200", field.value ? "top-[2px] text-[13.5px]" : "top-3 text-base") }), jsxRuntime.jsxs("div", __assign$1({ className: "absolute bottom-3 right-3 text-xs text-eui-dark-50 font-semibold" }, { children: [(
|
|
79176
|
+
_b)) })), jsxRuntime.jsx(InputLabel, { text: placeholder, styles: classnames("absolute left-2 transition-all pointer-events-none text-eui-dark-200", field.value ? "top-[2px] text-[13.5px]" : "top-3 text-base") }), jsxRuntime.jsxs("div", __assign$1({ className: "absolute bottom-3 right-3 text-xs text-eui-dark-50 font-semibold" }, { children: [(_e = field.value) === null || _e === void 0 ? void 0 : _e.length, "/", limit] }))] })), jsxRuntime.jsx(InputResponse, { name: field.name, visibility: meta.touched && meta.error ? true : false, variant: "danger" })] }));
|
|
79107
79177
|
}
|
|
79108
79178
|
|
|
79109
79179
|
function ContentArea(_a) {
|
|
@@ -140844,6 +140914,7 @@ exports.Chapter = Chapter;
|
|
|
140844
140914
|
exports.Checkbox = Checkbox;
|
|
140845
140915
|
exports.Chip = Chip;
|
|
140846
140916
|
exports.CloudinaryImage = CloudinaryImage;
|
|
140917
|
+
exports.CloudinaryProvider = CloudinaryProvider;
|
|
140847
140918
|
exports.CloudinaryVideo = CloudinaryVideo;
|
|
140848
140919
|
exports.Content = Content$2;
|
|
140849
140920
|
exports.ContentArea = ContentArea;
|
|
@@ -140851,6 +140922,7 @@ exports.DateSelector = DateSelector;
|
|
|
140851
140922
|
exports.DefaultLayout = DefaultLayout;
|
|
140852
140923
|
exports.Drawer = Drawer;
|
|
140853
140924
|
exports.DrawerToggler = DrawerToggler;
|
|
140925
|
+
exports.EUIProvider = EUIProvider;
|
|
140854
140926
|
exports.Flag = Flag;
|
|
140855
140927
|
exports.Flex = Flex;
|
|
140856
140928
|
exports.FlexCol = FlexCol;
|
|
@@ -140934,10 +141006,13 @@ exports.WorldMap = WorldMap;
|
|
|
140934
141006
|
exports.WorldMapCountryTable = WorldMapCountryTable;
|
|
140935
141007
|
exports.YoutubeVideoPlayer = YoutubeVideoPlayer;
|
|
140936
141008
|
exports.getCurrencySymbol = getCurrencySymbol;
|
|
141009
|
+
exports.resolveWithGlobal = resolveWithGlobal;
|
|
140937
141010
|
exports.sendToast = sendToast;
|
|
140938
141011
|
exports.useClickOutside = useClickOutside;
|
|
141012
|
+
exports.useCloudinaryConfig = useCloudinaryConfig;
|
|
140939
141013
|
exports.useCurrentTheme = useCurrentTheme;
|
|
140940
141014
|
exports.useDrawer = useDrawer;
|
|
141015
|
+
exports.useEUIConfig = useEUIConfig;
|
|
140941
141016
|
exports.useIsMobile = useIsMobile;
|
|
140942
141017
|
exports.useModal = useModal;
|
|
140943
141018
|
exports.useTheme = useTheme;
|