@exem-ui/react 0.3.4-next.20260706055915 → 0.3.4-next.20260713082547

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 CHANGED
@@ -1278,7 +1278,7 @@ var TextArea = React__namespace.forwardRef(
1278
1278
  TextAreaContext.Provider,
1279
1279
  {
1280
1280
  value: { variant, size, error, disabled, id, value, maxLength, onChange },
1281
- children: /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: utils.cn(textAreaVariants.container, className), children: children || /* @__PURE__ */ jsxRuntime.jsx(TextArea.Field, { ...restTextAreaProps }) })
1281
+ children: /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: utils.cn(textAreaVariants.container(), className), children: children || /* @__PURE__ */ jsxRuntime.jsx(TextArea.Field, { ...restTextAreaProps }) })
1282
1282
  }
1283
1283
  );
1284
1284
  }
@@ -1501,7 +1501,7 @@ var TextField = React.forwardRef(
1501
1501
  }, ref) => {
1502
1502
  const uniqueId = React.useId();
1503
1503
  const id = providedId || `text-field-${uniqueId}`;
1504
- return /* @__PURE__ */ jsxRuntime.jsx(TextFieldContext.Provider, { value: { variant, size, error, disabled, id, value, onChange }, children: /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: utils.cn(textFieldVariants.container, className), children: children || /* @__PURE__ */ jsxRuntime.jsx(TextField.Input, { ...inputProps }) }) });
1504
+ return /* @__PURE__ */ jsxRuntime.jsx(TextFieldContext.Provider, { value: { variant, size, error, disabled, id, value, onChange }, children: /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: utils.cn(textFieldVariants.container(), className), children: children || /* @__PURE__ */ jsxRuntime.jsx(TextField.Input, { ...inputProps }) }) });
1505
1505
  }
1506
1506
  );
1507
1507
  TextField.Label = React.forwardRef(
@@ -1714,7 +1714,7 @@ Modal.Content = React.forwardRef(
1714
1714
  ref,
1715
1715
  className: utils.cn(
1716
1716
  // 공통 스타일
1717
- "fixed z-50 flex flex-col rounded-strong border border-border-primary bg-elevation-elevation-0 duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
1717
+ "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",
1718
1718
  // fullsize일 때
1719
1719
  isFullSize ? "inset-0 m-10" : (
1720
1720
  // 일반 모달일 때
@@ -1960,13 +1960,13 @@ var SheetResizableBox = ({ side, options, children }) => {
1960
1960
  onResizeStart: () => setResizing(true),
1961
1961
  onResizeStop: handleResizeStop,
1962
1962
  handleComponent,
1963
- className: "flex min-h-0 flex-col bg-elevation-elevation-0 shadow-strong",
1963
+ className: "flex min-h-0 flex-col bg-background-primary shadow-strong",
1964
1964
  children
1965
1965
  }
1966
1966
  );
1967
1967
  };
1968
1968
  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";
1969
- var SHEET_CONTENT_BOX = "flex flex-col border-border-primary bg-elevation-elevation-0 shadow-strong";
1969
+ var SHEET_CONTENT_BOX = "flex flex-col border-border-primary bg-background-primary shadow-strong";
1970
1970
  var SHEET_SIDE_CLASSES = {
1971
1971
  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",
1972
1972
  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",