@nation-a/ui 0.10.2 → 0.10.4
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 +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/styled-system/styles.css +6 -18
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -9758,8 +9758,8 @@ const BottomSheetFrame = React.forwardRef(
|
|
|
9758
9758
|
overflow: "hidden",
|
|
9759
9759
|
borderRadius: "40px 40px 0 0",
|
|
9760
9760
|
height: "100%",
|
|
9761
|
-
zIndex:
|
|
9762
|
-
backgroundColor: "
|
|
9761
|
+
zIndex: "modal",
|
|
9762
|
+
backgroundColor: "surface.layer_1",
|
|
9763
9763
|
shadow: "0 -15px 15px 0px rgba(0, 0, 0, 0.05)",
|
|
9764
9764
|
willChange: "auto"
|
|
9765
9765
|
}),
|
|
@@ -9792,7 +9792,7 @@ const Backdrop = React.forwardRef(
|
|
|
9792
9792
|
animated.div,
|
|
9793
9793
|
{
|
|
9794
9794
|
className: css$1({
|
|
9795
|
-
zIndex:
|
|
9795
|
+
zIndex: "overlay",
|
|
9796
9796
|
position: "fixed",
|
|
9797
9797
|
top: 0,
|
|
9798
9798
|
width: "100%",
|
|
@@ -10338,7 +10338,7 @@ const Input = React.forwardRef(
|
|
|
10338
10338
|
},
|
|
10339
10339
|
[recipe.label, required, RequiredStar]
|
|
10340
10340
|
);
|
|
10341
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(VStack2, { gap: 1, className: "group", "data-disabled": disabled || void 0, children: [
|
|
10341
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(VStack2, { gap: 1, className: "group", "data-disabled": disabled || void 0, css: { width: "100%" }, children: [
|
|
10342
10342
|
/* @__PURE__ */ jsxRuntime.jsx(Label, { visible: !!(label && labelPosition === "outside"), children: label }),
|
|
10343
10343
|
/* @__PURE__ */ jsxRuntime.jsxs(Stack2, { gap: 1, className: cx(recipe.inputContainer, className), onClick: handleContainerClick, css: css2, children: [
|
|
10344
10344
|
/* @__PURE__ */ jsxRuntime.jsx(Label, { visible: !!(label && labelPosition === "inside"), children: label }),
|
|
@@ -10415,7 +10415,7 @@ const Textarea = React.forwardRef(
|
|
|
10415
10415
|
},
|
|
10416
10416
|
[recipe.textLengthIndicator]
|
|
10417
10417
|
);
|
|
10418
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(VStack2, { gap: 1, className: "group", "data-disabled": disabled || void 0, children: [
|
|
10418
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(VStack2, { gap: 1, className: "group", "data-disabled": disabled || void 0, css: { width: "100%" }, children: [
|
|
10419
10419
|
/* @__PURE__ */ jsxRuntime.jsx(Label, { visible: !!(label && labelPosition === "outside"), children: label }),
|
|
10420
10420
|
/* @__PURE__ */ jsxRuntime.jsxs(Stack2, { gap: 1, className: cx(recipe.inputContainer, className), onClick: handleContainerClick, css: css2, children: [
|
|
10421
10421
|
/* @__PURE__ */ jsxRuntime.jsx(Label, { visible: !!(label && labelPosition === "inside"), children: label }),
|