sprintify-ui 0.6.58 → 0.6.59
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/sprintify-ui.es.js
CHANGED
|
@@ -44265,7 +44265,7 @@ const BP = /* @__PURE__ */ Wi(TP, [["render", NP]]), PP = /* @__PURE__ */ j("spa
|
|
|
44265
44265
|
}
|
|
44266
44266
|
});
|
|
44267
44267
|
function Ab(n) {
|
|
44268
|
-
const t = "
|
|
44268
|
+
const t = "block", e = g5(n.spacing ?? "md"), r = n.flush ? "px-0" : "";
|
|
44269
44269
|
return kt([t, e, r]);
|
|
44270
44270
|
}
|
|
44271
44271
|
function g5(n) {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@ import { twMerge } from "tailwind-merge";
|
|
|
2
2
|
import { CellConfig, CellSpacing } from "./types";
|
|
3
3
|
|
|
4
4
|
export function cellClasses(config: CellConfig): string {
|
|
5
|
-
const base = '
|
|
5
|
+
const base = 'block';
|
|
6
6
|
const space = spacing(config.spacing ?? 'md');
|
|
7
7
|
const flush = config.flush ? 'px-0' : '';
|
|
8
8
|
|