@gnist/design-system 2.0.22 → 2.0.24

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## <small>2.0.24 (2025-03-21)</small>
7
+
8
+ * fix: zIndex for label in TextFields components ([eec1810](https://github.com/mollerdigital/design-system-design-system/commit/eec1810))
9
+
10
+ ## <small>2.0.23 (2025-03-21)</small>
11
+
12
+ * fix: increase button height on all boxed buttons ([aef7a07](https://github.com/mollerdigital/design-system-design-system/commit/aef7a07))
13
+
6
14
  ## <small>2.0.22 (2025-03-20)</small>
7
15
 
8
16
  **Note:** Version bump only for package @gnist/design-system
@@ -102,8 +102,8 @@ const boxedButton = recipes.recipe({
102
102
  base: atoms_css_js.atoms({ columnGap: "base" }),
103
103
  variants: {
104
104
  density: {
105
- default: atoms_css_js.atoms({ height: "xxl", paddingX: "m" }),
106
- compact: atoms_css_js.atoms({ height: "xl", paddingX: "s" })
105
+ default: atoms_css_js.atoms({ height: "3xl", paddingX: "m" }),
106
+ compact: atoms_css_js.atoms({ height: "xxl", paddingX: "s" })
107
107
  }
108
108
  },
109
109
  defaultVariants: { density: "default" }
@@ -100,8 +100,8 @@ const boxedButton = recipe({
100
100
  base: atoms({ columnGap: "base" }),
101
101
  variants: {
102
102
  density: {
103
- default: atoms({ height: "xxl", paddingX: "m" }),
104
- compact: atoms({ height: "xl", paddingX: "s" })
103
+ default: atoms({ height: "3xl", paddingX: "m" }),
104
+ compact: atoms({ height: "xxl", paddingX: "s" })
105
105
  }
106
106
  },
107
107
  defaultVariants: { density: "default" }
@@ -29,7 +29,7 @@ const elevatedLabelBackground = (backgroundColor) => ({
29
29
  });
30
30
  const labelStyle = recipes.recipe({
31
31
  base: {
32
- zIndex: 10,
32
+ zIndex: 1,
33
33
  position: "relative",
34
34
  transitionProperty: "color, top, left, font-size, padding",
35
35
  transitionDuration: inputFieldConstants_css.transitionTime,
@@ -27,7 +27,7 @@ const elevatedLabelBackground = (backgroundColor) => ({
27
27
  });
28
28
  const labelStyle = recipe({
29
29
  base: {
30
- zIndex: 10,
30
+ zIndex: 1,
31
31
  position: "relative",
32
32
  transitionProperty: "color, top, left, font-size, padding",
33
33
  transitionDuration: transitionTime,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gnist/design-system",
3
- "version": "2.0.22",
3
+ "version": "2.0.24",
4
4
  "license": "UNLICENSED",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -104,5 +104,5 @@
104
104
  "optional": true
105
105
  }
106
106
  },
107
- "gitHead": "79fa83835dc87506fea294fdbe28fb93475a7d45"
107
+ "gitHead": "c131eacb77e8f86fb936b630c83f36fa8303713f"
108
108
  }