@gnist/design-system 3.3.0 → 3.4.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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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
+ ## [3.4.0](https://github.com/mollerdigital/design-system-design-system/compare/@gnist/design-system@3.3.0...@gnist/design-system@3.4.0) (2025-05-30)
7
+
8
+ ### Features
9
+
10
+ * add new theme for audi light ([a8ba016](https://github.com/mollerdigital/design-system-design-system/commit/a8ba0162e6a303edd200f12b3a7034459a10b603))
11
+
6
12
  ## [3.3.0](https://github.com/mollerdigital/design-system-design-system/compare/@gnist/design-system@3.2.0...@gnist/design-system@3.3.0) (2025-05-30)
7
13
 
8
14
  ### Features
@@ -32,6 +32,7 @@ export declare const Accordion: import("@gnist/component-utils").VanillaRecipeCo
32
32
  withBackground: {
33
33
  true: {
34
34
  backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
35
+ color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
35
36
  };
36
37
  };
37
38
  }>>;
@@ -1 +1 @@
1
- {"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../../../src/components/surfaces/accordion/Accordion.tsx"],"names":[],"mappings":"AAGA,OAAO,EAA4B,SAAS,EAAE,MAAM,OAAO,CAAC;AAI5D,KAAK,cAAc,GAAG;IAClB,oFAAoF;IACpF,IAAI,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,oFAAoF;IACpF,QAAQ,EAAE,SAAS,CAAC;IACpB,4FAA4F;IAC5F,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,yJAAyJ;IACzJ,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,8GAA8G;IAC9G,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,qFAAqF;IACrF,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AA6BF;;;;;;;;;GASG;AACH,eAAO,MAAM,SAAS;;;;;;;;;;;GAIrB,CAAC"}
1
+ {"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../../../src/components/surfaces/accordion/Accordion.tsx"],"names":[],"mappings":"AAGA,OAAO,EAA4B,SAAS,EAAE,MAAM,OAAO,CAAC;AAI5D,KAAK,cAAc,GAAG;IAClB,oFAAoF;IACpF,IAAI,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,oFAAoF;IACpF,QAAQ,EAAE,SAAS,CAAC;IACpB,4FAA4F;IAC5F,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,yJAAyJ;IACzJ,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,8GAA8G;IAC9G,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,qFAAqF;IACrF,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AA6BF;;;;;;;;;GASG;AACH,eAAO,MAAM,SAAS;;;;;;;;;;;;GAIrB,CAAC"}
@@ -19,7 +19,8 @@ const accordionRecipe = recipes.recipe({
19
19
  },
20
20
  withBackground: {
21
21
  true: {
22
- backgroundColor: tokens_css_js.tokens.color["surface-variant"]
22
+ backgroundColor: tokens_css_js.tokens.color["surface-variant"],
23
+ color: tokens_css_js.tokens.color["on-surface-variant"]
23
24
  }
24
25
  }
25
26
  }
@@ -7,6 +7,7 @@ export declare const accordionRecipe: import("@vanilla-extract/recipes").Runtime
7
7
  withBackground: {
8
8
  true: {
9
9
  backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
10
+ color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
10
11
  };
11
12
  };
12
13
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"accordion.css.d.ts","sourceRoot":"","sources":["../../../../src/components/surfaces/accordion/accordion.css.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,eAAe;;;;;;;;;;;EAoB1B,CAAC;AAEH,eAAO,MAAM,IAAI,QAkBf,CAAC;AAEH,eAAO,MAAM,cAAc,QAWzB,CAAC;AAEH,eAAO,MAAM,IAAI,QAEf,CAAC"}
1
+ {"version":3,"file":"accordion.css.d.ts","sourceRoot":"","sources":["../../../../src/components/surfaces/accordion/accordion.css.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,eAAe;;;;;;;;;;;;EAqB1B,CAAC;AAEH,eAAO,MAAM,IAAI,QAkBf,CAAC;AAEH,eAAO,MAAM,cAAc,QAWzB,CAAC;AAEH,eAAO,MAAM,IAAI,QAEf,CAAC"}
@@ -17,7 +17,8 @@ const accordionRecipe = recipe({
17
17
  },
18
18
  withBackground: {
19
19
  true: {
20
- backgroundColor: tokens.color["surface-variant"]
20
+ backgroundColor: tokens.color["surface-variant"],
21
+ color: tokens.color["on-surface-variant"]
21
22
  }
22
23
  }
23
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gnist/design-system",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "license": "UNLICENSED",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -49,7 +49,7 @@
49
49
  "dependencies": {
50
50
  "@formkit/auto-animate": "^0.8.2",
51
51
  "@gnist/component-utils": "3.0.7",
52
- "@gnist/themes": "^3.5.0",
52
+ "@gnist/themes": "^3.6.0",
53
53
  "@mui/base": "^5.0.0-beta.70",
54
54
  "@vanilla-extract/css": "^1.17.1",
55
55
  "@vanilla-extract/css-utils": "^0.1.4",
@@ -103,5 +103,5 @@
103
103
  "optional": true
104
104
  }
105
105
  },
106
- "gitHead": "d6ba0247a006f558ff00e582b2a05b861e8e8917"
106
+ "gitHead": "f87af1c376ebea1e99c3ab722f7d550e2bd1369d"
107
107
  }