sprintify-ui 0.10.34 → 0.10.35

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.
@@ -17151,7 +17151,7 @@ const id = /* @__PURE__ */ Uo(xb, [["render", Sb]]), Cb = { class: "relative max
17151
17151
  }
17152
17152
  });
17153
17153
  function Oi(t) {
17154
- const n = "", e = Mb(t.size ?? "md");
17154
+ const n = "align-top", e = Mb(t.size ?? "md");
17155
17155
  return [n, e].join(" ");
17156
17156
  }
17157
17157
  function Mb(t) {
@@ -33,7 +33,6 @@ export default function ({ addVariant, addComponents, e, theme }) {
33
33
  'border-bottom-style': borderStyle,
34
34
  'border-bottom-color': borderColor,
35
35
  'border-radius': theme('borderRadius.md'),
36
- 'table-layout': 'fixed',
37
36
  },
38
37
  '.tabulation thead': {
39
38
  'background-color': theme('colors.slate.100'),
@@ -41,6 +40,7 @@ export default function ({ addVariant, addComponents, e, theme }) {
41
40
  '.tabulation th, .tabulation td': {
42
41
  'padding': theme('spacing.3') + ' ' + theme('spacing.2'),
43
42
  'text-align': 'left',
43
+ 'vertical-align': 'top',
44
44
  'border-bottom-width': borderWidth,
45
45
  'border-bottom-style': borderStyle,
46
46
  'border-bottom-color': borderColor,
@@ -89,4 +89,4 @@ export default function ({ addVariant, addComponents, e, theme }) {
89
89
  'border-color': borderColor,
90
90
  },
91
91
  });
92
- };
92
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.10.34",
3
+ "version": "0.10.35",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -1,7 +1,7 @@
1
1
  import { CellConfig, CellSize } from "./types";
2
2
 
3
3
  export function cellClasses(config: CellConfig): string {
4
- const base = '';
4
+ const base = 'align-top';
5
5
  const space = size(config.size ?? 'md');
6
6
 
7
7
  return [base, space].join(' ');