agroptima-design-system 1.2.22 → 1.2.23-beta.0

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": "1.2.22",
3
+ "version": "1.2.23-beta.0",
4
4
  "scripts": {
5
5
  "dev": "npm run storybook",
6
6
  "storybook": "storybook dev -p 6006 --ci",
@@ -1,5 +1,5 @@
1
1
  @use '../../settings/mixins';
2
-
2
+ @use '../../settings/depth';
3
3
  @use '../../settings/typography/cards_table' as typography;
4
4
  @use '../../settings/config';
5
5
  @use '../../settings/breakpoints';
@@ -32,7 +32,7 @@
32
32
 
33
33
  .cards-table-head {
34
34
  position: relative;
35
- z-index: 1;
35
+ z-index: depth.$z-card-table-header;
36
36
  }
37
37
  }
38
38
 
@@ -14,7 +14,8 @@ $z-modal: $z-alert-container + $above;
14
14
  $z-aside-desktop: $base + $above;
15
15
  $z-aside-mobile: $z-modal + $above;
16
16
 
17
- $z-header: $base + $above;
17
+ $z-card-table-header: $base + $above;
18
+ $z-header: $z-card-table-header + $above;
18
19
 
19
20
  $z-timeline-rail: $base;
20
21
  $z-timeline-circle: $base + $above;
@@ -4,6 +4,10 @@ import { Meta } from "@storybook/addon-docs/blocks";
4
4
 
5
5
  # Changelog
6
6
 
7
+ ## 1.2.23
8
+
9
+ * Update z-index to CardTableHeader and Header components
10
+
7
11
  ## 1.2.22
8
12
 
9
13
  * Add z-index and styles to FloatingButton component