@lambda-development/erp-core 0.1.36 → 0.1.37
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/package.json +4 -1
- package/src/index.css +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lambda-development/erp-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.37",
|
|
4
4
|
"description": "Frontend core of Lambda ERP — app shell, document/master pages, chat UI, reports, and extension registries.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -67,5 +67,8 @@
|
|
|
67
67
|
"typescript": "~5.6.0",
|
|
68
68
|
"vite": "^6.0.0",
|
|
69
69
|
"vite-plugin-dts": "^4.3.0"
|
|
70
|
+
},
|
|
71
|
+
"dependencies": {
|
|
72
|
+
"@fontsource/inter": "^5.2.8"
|
|
70
73
|
}
|
|
71
74
|
}
|
package/src/index.css
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
/* Self-host Inter so every consumer of this stylesheet inherits the font the
|
|
2
|
+
Tailwind preset's `fontFamily.sans` asks for. Shipped via exports["./styles.css"]
|
|
3
|
+
→ src/index.css, with @fontsource/inter as a runtime dependency, so downstream
|
|
4
|
+
apps (e.g. lambda-erp-internal) get Inter without adding their own <link>.
|
|
5
|
+
Must precede the @tailwind directives (CSS requires @import before other rules). */
|
|
6
|
+
@import "@fontsource/inter/400.css";
|
|
7
|
+
@import "@fontsource/inter/500.css";
|
|
8
|
+
@import "@fontsource/inter/600.css";
|
|
9
|
+
@import "@fontsource/inter/700.css";
|
|
10
|
+
|
|
1
11
|
@tailwind base;
|
|
2
12
|
@tailwind components;
|
|
3
13
|
@tailwind utilities;
|