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.
@@ -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 = "text-left block", e = g5(n.spacing ?? "md"), r = n.flush ? "px-0" : "";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.6.58",
3
+ "version": "0.6.59",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -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 = 'text-left block';
5
+ const base = 'block';
6
6
  const space = spacing(config.spacing ?? 'md');
7
7
  const flush = config.flush ? 'px-0' : '';
8
8