sellmate-design-system-react 6.0.0 → 6.1.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/AGENTS.md +5 -3
- package/dist/components/SPopup/README.md +1 -0
- package/dist/components/SPopup/SPopup.d.ts +2 -0
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/llms-full.txt +6 -3
- package/dist/llms.txt +5 -3
- package/dist/styles.css +9 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6046,6 +6046,7 @@ var SPopup = /* @__PURE__ */ forwardRef(function SPopup2({
|
|
|
6046
6046
|
submitButton,
|
|
6047
6047
|
onSubmit,
|
|
6048
6048
|
footerLeft,
|
|
6049
|
+
noPadding = false,
|
|
6049
6050
|
children,
|
|
6050
6051
|
className,
|
|
6051
6052
|
style
|
|
@@ -6076,10 +6077,11 @@ var SPopup = /* @__PURE__ */ forwardRef(function SPopup2({
|
|
|
6076
6077
|
}
|
|
6077
6078
|
),
|
|
6078
6079
|
/* @__PURE__ */ jsx(
|
|
6079
|
-
"
|
|
6080
|
+
"main",
|
|
6080
6081
|
{
|
|
6081
6082
|
className: cn(
|
|
6082
|
-
"min-h-0 flex-1 overflow-auto",
|
|
6083
|
+
"box-border min-h-0 flex-1 overflow-auto",
|
|
6084
|
+
!noPadding && "p-(--sys-space-panel-padding-default)",
|
|
6083
6085
|
SCROLLBAR_CLASS,
|
|
6084
6086
|
SCROLLBAR_TRACK_BG_CLASS,
|
|
6085
6087
|
SCROLLBAR_TRACK_BORDER_CLASS
|