agroptima-design-system 0.25.4 → 0.25.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agroptima-design-system",
3
- "version": "0.25.4",
3
+ "version": "0.25.6",
4
4
  "scripts": {
5
5
  "dev": "npm run storybook",
6
6
  "storybook": "storybook dev -p 6006 --ci",
@@ -44,11 +44,17 @@
44
44
  padding-bottom: 9rem;
45
45
  }
46
46
  .actions {
47
- padding: 0;
48
- flex-direction: column;
47
+ background-color: color_alias.$neutral-white;
48
+ border-top: 1px solid color_alias.$neutral-color-200;
49
+ flex-direction: row;
50
+ justify-content: space-between;
51
+ gap: config.$space-2x;
49
52
  box-shadow: none;
50
- background-color: transparent;
51
- inset: auto config.$space-4x config.$space-4x config.$space-4x;
53
+ padding: config.$space-4x auto config.$space-4x auto;
54
+
55
+ .button {
56
+ width: 50%;
57
+ }
52
58
  }
53
59
  }
54
60
  }
@@ -4,7 +4,11 @@ import { Meta } from "@storybook/blocks";
4
4
 
5
5
  # Changelog
6
6
 
7
- # 0.25.4
7
+ # 0.25.6
8
+
9
+ * Align Form Action buttons horizontally
10
+
11
+ # 0.25.5
8
12
 
9
13
  * Call onChange after clearing Select and Multiselect components
10
14