@exem-ui/react 0.3.4-next.20260706055915 → 0.3.4-next.20260713005253
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -1252,7 +1252,7 @@ var TextArea = React.forwardRef(
|
|
|
1252
1252
|
TextAreaContext.Provider,
|
|
1253
1253
|
{
|
|
1254
1254
|
value: { variant, size, error, disabled, id, value, maxLength, onChange },
|
|
1255
|
-
children: /* @__PURE__ */ jsx("div", { ref, className: cn(textAreaVariants.container, className), children: children || /* @__PURE__ */ jsx(TextArea.Field, { ...restTextAreaProps }) })
|
|
1255
|
+
children: /* @__PURE__ */ jsx("div", { ref, className: cn(textAreaVariants.container(), className), children: children || /* @__PURE__ */ jsx(TextArea.Field, { ...restTextAreaProps }) })
|
|
1256
1256
|
}
|
|
1257
1257
|
);
|
|
1258
1258
|
}
|
|
@@ -1475,7 +1475,7 @@ var TextField = forwardRef(
|
|
|
1475
1475
|
}, ref) => {
|
|
1476
1476
|
const uniqueId = useId();
|
|
1477
1477
|
const id = providedId || `text-field-${uniqueId}`;
|
|
1478
|
-
return /* @__PURE__ */ jsx(TextFieldContext.Provider, { value: { variant, size, error, disabled, id, value, onChange }, children: /* @__PURE__ */ jsx("div", { ref, className: cn(textFieldVariants.container, className), children: children || /* @__PURE__ */ jsx(TextField.Input, { ...inputProps }) }) });
|
|
1478
|
+
return /* @__PURE__ */ jsx(TextFieldContext.Provider, { value: { variant, size, error, disabled, id, value, onChange }, children: /* @__PURE__ */ jsx("div", { ref, className: cn(textFieldVariants.container(), className), children: children || /* @__PURE__ */ jsx(TextField.Input, { ...inputProps }) }) });
|
|
1479
1479
|
}
|
|
1480
1480
|
);
|
|
1481
1481
|
TextField.Label = forwardRef(
|
|
@@ -1688,7 +1688,7 @@ Modal.Content = forwardRef(
|
|
|
1688
1688
|
ref,
|
|
1689
1689
|
className: cn(
|
|
1690
1690
|
// 공통 스타일
|
|
1691
|
-
"fixed z-50 flex flex-col rounded-strong border border-border-primary bg-
|
|
1691
|
+
"fixed z-50 flex flex-col rounded-strong border border-border-primary bg-background-primary duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
1692
1692
|
// fullsize일 때
|
|
1693
1693
|
isFullSize ? "inset-0 m-10" : (
|
|
1694
1694
|
// 일반 모달일 때
|
|
@@ -1934,13 +1934,13 @@ var SheetResizableBox = ({ side, options, children }) => {
|
|
|
1934
1934
|
onResizeStart: () => setResizing(true),
|
|
1935
1935
|
onResizeStop: handleResizeStop,
|
|
1936
1936
|
handleComponent,
|
|
1937
|
-
className: "flex min-h-0 flex-col bg-
|
|
1937
|
+
className: "flex min-h-0 flex-col bg-background-primary shadow-strong",
|
|
1938
1938
|
children
|
|
1939
1939
|
}
|
|
1940
1940
|
);
|
|
1941
1941
|
};
|
|
1942
1942
|
var SHEET_CONTENT_BASE = "fixed z-50 data-[state=open]:duration-300 data-[state=closed]:duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0";
|
|
1943
|
-
var SHEET_CONTENT_BOX = "flex flex-col border-border-primary bg-
|
|
1943
|
+
var SHEET_CONTENT_BOX = "flex flex-col border-border-primary bg-background-primary shadow-strong";
|
|
1944
1944
|
var SHEET_SIDE_CLASSES = {
|
|
1945
1945
|
right: "inset-y-0 right-0 h-full w-[800px] max-w-[calc(100vw-var(--sheet-edge-gap))] border-l data-[state=open]:slide-in-from-right data-[state=closed]:slide-out-to-right",
|
|
1946
1946
|
left: "inset-y-0 left-0 h-full w-[800px] max-w-[calc(100vw-var(--sheet-edge-gap))] border-r data-[state=open]:slide-in-from-left data-[state=closed]:slide-out-to-left",
|