@inherent.design/brand 0.2.0 → 0.3.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.
Files changed (30) hide show
  1. package/components/button/Button.astro +55 -0
  2. package/components/button/index.ts +7 -0
  3. package/components/image/Image.astro +24 -0
  4. package/components/image/index.ts +9 -0
  5. package/components/prose/Prose.astro +617 -0
  6. package/components/prose/index.ts +9 -0
  7. package/components/separator/Separator.astro +36 -0
  8. package/components/separator/index.ts +7 -0
  9. package/fonts/dist/en/96bca51b8ec371714a19640d750743fe.woff2 +0 -0
  10. package/fonts/dist/en/b0a7e5ec01111034c2715216e8572469.woff2 +0 -0
  11. package/fonts/dist/en/bf5f69a6d69f3b80cca2f0ea18391421.woff2 +0 -0
  12. package/fonts/dist/en/fb649ad2bbdf05880df6d318f251bc7b.woff2 +0 -0
  13. package/fonts/dist/en/index.css +9 -9
  14. package/fonts/dist/hi/index.css +3 -3
  15. package/fonts/dist/zh/2e199b543bf018d377b67e99726877ed.woff2 +0 -0
  16. package/fonts/dist/zh/734840a02a4bc6d5160fbb0482fd9fab.woff2 +0 -0
  17. package/fonts/dist/zh/e00f6f95a6a747bfbd32af5df1fe1f1c.woff2 +0 -0
  18. package/fonts/dist/zh/f41ec03cc2ad8e0cb2e04f7ceacc91e4.woff2 +0 -0
  19. package/fonts/dist/zh/index.css +4 -4
  20. package/package.json +19 -11
  21. package/fonts/dist/en/4db369d2bd069bba9eecb25938906a84.woff2 +0 -0
  22. package/fonts/dist/en/6543456df4504eb8eec3cb90d97fd006.woff2 +0 -0
  23. package/fonts/dist/en/854fe9c7181becfefb35721fb5b526fd.woff2 +0 -0
  24. package/fonts/dist/en/a4dcca7a30c3fec53f94ea68154075ef.woff2 +0 -0
  25. package/fonts/dist/zh/6b02f1bb13dd222053d1748cd0e91dec.woff2 +0 -0
  26. package/fonts/dist/zh/94c6b8220e16b579460ca450b7f700f8.woff2 +0 -0
  27. package/fonts/dist/zh/bad3748e751a2f826e2353048d691687.woff2 +0 -0
  28. package/fonts/dist/zh/c0fdf8df0b34608d454afb2c33c466f1.woff2 +0 -0
  29. /package/{starwind.css → styles/starwind.css} +0 -0
  30. /package/{styles.css → styles/styles.css} +0 -0
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@inherent.design/brand",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
- "description": "Design tokens and web font package inherent.design projects.",
5
+ "description": "Design tokens, web fonts, and Starwind components for inherent.design projects.",
6
6
  "license": "OFL-1.1",
7
7
  "author": "inherent.design",
8
8
  "exports": {
@@ -23,26 +23,34 @@
23
23
  "default": "./fonts/dist/hi/index.css"
24
24
  },
25
25
  "./styles": {
26
- "style": "./styles.css",
27
- "default": "./styles.css"
26
+ "style": "./styles/styles.css",
27
+ "default": "./styles/styles.css"
28
28
  },
29
- "./starwind": {
30
- "style": "./starwind.css",
31
- "default": "./starwind.css"
32
- }
29
+ "./styles/starwind": {
30
+ "style": "./styles/starwind.css",
31
+ "default": "./styles/starwind.css"
32
+ },
33
+ "./components/button": "./components/button/index.ts",
34
+ "./components/image": "./components/image/index.ts",
35
+ "./components/prose": "./components/prose/index.ts",
36
+ "./components/separator": "./components/separator/index.ts"
33
37
  },
34
38
  "files": [
35
39
  "fonts/vars.css",
36
40
  "fonts/dist/",
37
- "license/LICENSE*",
38
- "styles.css",
39
- "starwind.css"
41
+ "styles/",
42
+ "components/",
43
+ "license/LICENSE*"
40
44
  ],
41
45
  "scripts": {
42
46
  "fonts:download": "node fonts/scripts/download.js",
43
47
  "fonts:build": "node fonts/scripts/build.js",
44
48
  "prepare": "pnpm run fonts:download && pnpm run fonts:build"
45
49
  },
50
+ "peerDependencies": {
51
+ "astro": ">=5.0.0",
52
+ "tailwind-variants": ">=3.0.0"
53
+ },
46
54
  "devDependencies": {
47
55
  "cn-font-split": "^7.4.1"
48
56
  }
File without changes
File without changes