clio-design-system 0.1.0 → 0.2.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/README.md +16 -0
- package/dist/index.cjs +30 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -5
- package/dist/index.d.ts +9 -5
- package/dist/index.js +14 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -1
- package/styles/styles.css +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clio-design-system",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Component library for the Clio design system",
|
|
6
6
|
"license": "MIT",
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"@testing-library/jest-dom": "^6.9.1",
|
|
53
53
|
"@testing-library/react": "^16.3.2",
|
|
54
54
|
"@testing-library/user-event": "^14.6.1",
|
|
55
|
+
"@types/katex": "^0.16.8",
|
|
55
56
|
"@types/react": "^18.3.31",
|
|
56
57
|
"@types/react-dom": "^18.3.7",
|
|
57
58
|
"@vitest/browser-playwright": "^4.1.9",
|
|
@@ -76,5 +77,8 @@
|
|
|
76
77
|
"esbuild@0.27.7": true,
|
|
77
78
|
"fsevents@2.3.3": true,
|
|
78
79
|
"fsevents@2.3.2": true
|
|
80
|
+
},
|
|
81
|
+
"dependencies": {
|
|
82
|
+
"katex": "^0.17.0"
|
|
79
83
|
}
|
|
80
84
|
}
|
package/styles/styles.css
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* KaTeX stylesheet — required by EquationBlock's typeset math. Bundling it here
|
|
2
|
+
means consumers importing this file get math styling + fonts for free. */
|
|
3
|
+
@import "katex/dist/katex.min.css";
|
|
1
4
|
@import "./tokens/fonts.css";
|
|
2
5
|
@import "./tokens/colors.css";
|
|
3
6
|
@import "./tokens/typography.css";
|