podo-ui 1.1.7 → 1.1.8

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.
@@ -4,7 +4,7 @@ const Button = forwardRef(({ theme = 'default', variant = 'solid', size = 'sm',
4
4
  const buttonClass = [
5
5
  theme !== 'default' && theme,
6
6
  variant !== 'solid' && variant,
7
- size !== 'sm' && size,
7
+ size,
8
8
  textAlign === 'left' && 'text-left',
9
9
  textAlign === 'right' && 'text-right',
10
10
  className,
@@ -53,7 +53,7 @@
53
53
  [
54
54
  theme !== 'default' && theme,
55
55
  variant !== 'solid' && variant,
56
- size !== 'sm' && size,
56
+ size,
57
57
  textAlign === 'left' && 'text-left',
58
58
  textAlign === 'right' && 'text-right',
59
59
  className,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "podo-ui",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "type": "module",
5
5
  "author": "hada0127 <work@tarucy.net>",
6
6
  "license": "MIT",
package/public/ai.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "podo-ui",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Design system: SCSS + React + Svelte 5",
5
5
  "philosophy": "Maximum flexibility with minimal JS dependency",
6
6
  "install": "npm install podo-ui",
@@ -8,9 +8,6 @@ button {
8
8
  display: inline-flex;
9
9
  align-items: center;
10
10
  gap: s(2);
11
- border-radius: r(3);
12
- padding: 0 s(3);
13
- height: 42px;
14
11
  &.xxs {
15
12
  @include p5;
16
13
  & {
@@ -33,6 +30,11 @@ button {
33
30
  }
34
31
  }
35
32
  }
33
+ &.sm {
34
+ border-radius: r(3);
35
+ padding: 0 s(3);
36
+ height: 42px;
37
+ }
36
38
  &.md {
37
39
  @include p2;
38
40
  & {