@makolabs/ripple 1.2.2 → 1.2.3

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.
@@ -7,7 +7,7 @@ export const table = tv({
7
7
  thead: '',
8
8
  tbody: 'divide-y divide-default-200',
9
9
  tr: 'transition-colors hover:bg-default-50',
10
- th: 'font-semibold whitespace-nowrap',
10
+ th: 'text-xs font-medium tracking-wider text-gray-500 uppercase whitespace-nowrap',
11
11
  td: 'whitespace-nowrap',
12
12
  footer: 'p-4',
13
13
  pagination: 'flex items-center justify-between',
@@ -18,33 +18,33 @@ export const table = tv({
18
18
  variants: {
19
19
  size: {
20
20
  xs: {
21
- th: 'px-2 py-1.5 text-xs',
21
+ th: 'px-2 py-1.5',
22
22
  td: 'px-2 py-1.5 text-xs'
23
23
  },
24
24
  sm: {
25
- th: 'px-3 py-2 text-xs',
25
+ th: 'px-3 py-2',
26
26
  td: 'px-3 py-2 text-sm'
27
27
  },
28
28
  base: {
29
- th: 'px-4 py-3 text-sm',
29
+ th: 'px-3 py-2',
30
30
  td: 'px-4 py-3 text-sm'
31
31
  },
32
32
  lg: {
33
- th: 'px-6 py-4 text-sm',
33
+ th: 'px-4 py-3',
34
34
  td: 'px-6 py-4 text-base'
35
35
  },
36
36
  xl: {
37
- th: 'px-8 py-5 text-base',
37
+ th: 'px-5 py-4',
38
38
  td: 'px-8 py-5 text-base'
39
39
  },
40
40
  '2xl': {
41
- th: 'px-10 py-6 text-lg',
41
+ th: 'px-6 py-5',
42
42
  td: 'px-10 py-6 text-lg'
43
43
  }
44
44
  },
45
45
  color: {
46
46
  default: {
47
- th: 'text-default-700 bg-default-50'
47
+ th: 'bg-gray-50'
48
48
  },
49
49
  primary: {
50
50
  th: 'text-primary-700 bg-primary-50',
@@ -135,7 +135,7 @@ export const table = tv({
135
135
  defaultVariants: {
136
136
  size: 'base',
137
137
  color: 'default',
138
- bordered: true,
138
+ bordered: false,
139
139
  striped: false
140
140
  }
141
141
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@makolabs/ripple",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Simple Svelte 5 powered component library ✨",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "repository": {