@dust-tt/sparkle 0.2.172 → 0.2.173-pr2
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/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/stories/PaginatedCitationsGrid.stories.d.ts +1 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/stories/PaginatedCitationsGrid.stories.d.ts +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -77901,7 +77901,7 @@ function PaginatedCitationsGrid(_a) {
|
|
|
77901
77901
|
var items = _a.items, _b = _a.maxItemsPerPage, maxItemsPerPage = _b === void 0 ? 9 : _b;
|
|
77902
77902
|
var _c = __read(React.useState(1), 2), currentPage = _c[0], setCurrentPage = _c[1];
|
|
77903
77903
|
var cols = 3;
|
|
77904
|
-
var rows = Math.ceil(maxItemsPerPage / cols);
|
|
77904
|
+
var rows = Math.ceil(Math.min(maxItemsPerPage, items.length) / cols);
|
|
77905
77905
|
if (items.length === 0) {
|
|
77906
77906
|
return null;
|
|
77907
77907
|
}
|
|
@@ -106281,7 +106281,7 @@ function RadioButton(_a) {
|
|
|
106281
106281
|
|
|
106282
106282
|
function Popup(_a) {
|
|
106283
106283
|
var show = _a.show, chipLabel = _a.chipLabel, description = _a.description, buttonLabel = _a.buttonLabel, buttonClick = _a.buttonClick, className = _a.className, onClose = _a.onClose;
|
|
106284
|
-
return (React.createElement(Xe$1, { show: show, enter: "s-transition-opacity s-duration-300", appear: true, enterFrom: "s-opacity-0", enterTo: "s-opacity-100", leave: "s-transition-opacity s-duration-300", leaveFrom: "s-opacity-100", leaveTo: "s-opacity-0", className: classNames("s-z-30 s-flex s-w-64 s-flex-col s-gap-3 s-rounded-xl s-border s-border-pink-100 s-bg-pink-50 s-p-4 s-shadow-xl", className || "") },
|
|
106284
|
+
return (React.createElement(Xe$1, { show: show, enter: "s-transition-opacity s-duration-300", appear: true, enterFrom: "s-opacity-0", enterTo: "s-opacity-100", leave: "s-transition-opacity s-duration-300", leaveFrom: "s-opacity-100", leaveTo: "s-opacity-0", as: "div", className: classNames("s-z-30 s-flex s-w-64 s-flex-col s-gap-3 s-rounded-xl s-border s-border-pink-100 s-bg-pink-50 s-p-4 s-shadow-xl", className || "") },
|
|
106285
106285
|
React.createElement("div", { className: "s-flex" },
|
|
106286
106286
|
React.createElement(Chip, { color: "pink" }, chipLabel),
|
|
106287
106287
|
onClose && (React.createElement("div", { className: "-s-mr-1 -s-mt-1 s-flex s-grow s-items-start s-justify-end" },
|