@dust-tt/sparkle 0.2.584-rc-2 → 0.2.584-rc-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.
@@ -86,7 +86,7 @@ var MultiPageDialogContent = React.forwardRef(function (_a, ref) {
86
86
  currentPageIndex + 1,
87
87
  " / ",
88
88
  pages.length)))),
89
- React.createElement("div", { className: "s-min-h-0 s-flex-1 s-overflow-hidden" },
89
+ React.createElement("div", { className: "s-min-h-0 s-flex-1 s-overflow-y-auto" },
90
90
  React.createElement("div", { className: cn("s-h-full s-transition-all s-duration-200 s-ease-out", {
91
91
  "s-transform s-opacity-0": isTransitioning,
92
92
  "s-translate-x-2": isTransitioning && transitionDirection === "next",
@@ -60,7 +60,7 @@ var MultiPageSheetContent = React.forwardRef(function (_a, ref) {
60
60
  currentPageIndex + 1,
61
61
  " / ",
62
62
  pages.length)))),
63
- React.createElement("div", { className: "s-min-h-0 s-flex-1 s-overflow-hidden" },
63
+ React.createElement("div", { className: "s-min-h-0 s-flex-1 s-overflow-y-auto" },
64
64
  React.createElement("div", { className: cn("s-h-full", currentPage.fixedContent ? "s-flex s-flex-col" : "") },
65
65
  currentPage.fixedContent && (React.createElement(React.Fragment, null,
66
66
  React.createElement("div", { className: "s-flex-none s-px-5 s-py-4" }, currentPage.fixedContent),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dust-tt/sparkle",
3
- "version": "0.2.584-rc-2",
3
+ "version": "0.2.584-rc-4",
4
4
  "scripts": {
5
5
  "build": "rm -rf dist && npm run tailwind && npm run build:esm && npm run build:cjs",
6
6
  "tailwind": "tailwindcss -i ./src/styles/tailwind.css -o dist/sparkle.css",
@@ -258,7 +258,7 @@ const MultiPageDialogContent = React.forwardRef<
258
258
  </div>
259
259
  </DialogHeader>
260
260
 
261
- <div className="s-min-h-0 s-flex-1 s-overflow-hidden">
261
+ <div className="s-min-h-0 s-flex-1 s-overflow-y-auto">
262
262
  <div
263
263
  className={cn(
264
264
  "s-h-full s-transition-all s-duration-200 s-ease-out",
@@ -210,7 +210,7 @@ const MultiPageSheetContent = React.forwardRef<
210
210
  </div>
211
211
  </SheetHeader>
212
212
 
213
- <div className="s-min-h-0 s-flex-1 s-overflow-hidden">
213
+ <div className="s-min-h-0 s-flex-1 s-overflow-y-auto">
214
214
  <div
215
215
  className={cn(
216
216
  "s-h-full",