@speakeasy-api/moonshine 1.9.0-alpha.5 → 1.9.0-alpha.7

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.
Files changed (2) hide show
  1. package/package.json +5 -1
  2. package/src/global.css +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@speakeasy-api/moonshine",
3
- "version": "1.9.0-alpha.5",
3
+ "version": "1.9.0-alpha.7",
4
4
  "packageManager": "pnpm@9.0.0",
5
5
  "description": "Speakeasy's design system Moonshine",
6
6
  "main": "dist/moonshine.cjs.js",
@@ -15,6 +15,10 @@
15
15
  "./moonshine.css": {
16
16
  "require": "./dist/style.css",
17
17
  "import": "./dist/style.css"
18
+ },
19
+ "./src/global.css": {
20
+ "require": "./src/global.css",
21
+ "import": "./src/global.css"
18
22
  }
19
23
  },
20
24
  "repository": {
package/src/global.css CHANGED
@@ -868,3 +868,7 @@
868
868
  letter-spacing: 0.0015em;
869
869
  font-family: var(--font-diatype);
870
870
  }
871
+
872
+ @utility bg-gradient-primary {
873
+ background: var(--gradient-brand-primary);
874
+ }