@nation-a/ui 0.15.0 → 0.15.2
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.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -19222,9 +19222,9 @@ const Header = forwardRef(
|
|
|
19222
19222
|
Header.displayName = "BottomSheet.Header";
|
|
19223
19223
|
const Content$3 = forwardRef(
|
|
19224
19224
|
({ className, children, css: cssProp, ...props }, ref) => {
|
|
19225
|
-
const styles2 = bottomSheetRecipe();
|
|
19225
|
+
const styles2 = bottomSheetRecipe.raw();
|
|
19226
19226
|
const { rounded } = useContext(BottomSheetContext);
|
|
19227
|
-
const contentClass = cx(styles2.content,
|
|
19227
|
+
const contentClass = cx(css$1(styles2.content, cssProp), className);
|
|
19228
19228
|
return /* @__PURE__ */ jsx(
|
|
19229
19229
|
Sheet.Container,
|
|
19230
19230
|
{
|
|
@@ -19851,12 +19851,12 @@ const Input = forwardRef(
|
|
|
19851
19851
|
/* @__PURE__ */ jsx(Label2, { visible: !!(label && labelPosition === "outside"), children: label }),
|
|
19852
19852
|
" ",
|
|
19853
19853
|
/* @__PURE__ */ jsxs(HStack$1, { className: cx(recipe.inputContainer, className), onClick: handleContainerClick, css: css2, children: [
|
|
19854
|
-
/* @__PURE__ */ jsx(Box$1, { className: recipe.adornment, children: startAdornment }),
|
|
19854
|
+
startAdornment && /* @__PURE__ */ jsx(Box$1, { className: recipe.adornment, children: startAdornment }),
|
|
19855
19855
|
/* @__PURE__ */ jsxs(Stack2, { gap: 1, css: { width: "100%" }, children: [
|
|
19856
19856
|
/* @__PURE__ */ jsx(Label2, { visible: !!(label && labelPosition === "inside"), children: label }),
|
|
19857
19857
|
/* @__PURE__ */ jsx(styled.input, { ref: inputRef, disabled, onChange: handleInputChange, ...rest })
|
|
19858
19858
|
] }),
|
|
19859
|
-
/* @__PURE__ */ jsx(Box$1, { className: recipe.adornment, children: endAdornment })
|
|
19859
|
+
endAdornment && /* @__PURE__ */ jsx(Box$1, { className: recipe.adornment, children: endAdornment })
|
|
19860
19860
|
] }),
|
|
19861
19861
|
description && /* @__PURE__ */ jsx(Description2, { children: description })
|
|
19862
19862
|
] });
|