@lagroon/inkwell-design-system 0.1.2
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 +18 -0
- package/dist/index.d.ts +728 -0
- package/dist/index.js +1366 -0
- package/dist/index.js.map +1 -0
- package/dist/styles.css +5160 -0
- package/package.json +52 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Inkwell
|
|
2
|
+
|
|
3
|
+
Inkwell is a standalone design-system seed created from the strongest reusable UI in the current app.
|
|
4
|
+
|
|
5
|
+
This folder is intentionally isolated from the live app:
|
|
6
|
+
|
|
7
|
+
- it has its own `package.json`
|
|
8
|
+
- it has its own Storybook config
|
|
9
|
+
- it has its own token source and styles
|
|
10
|
+
- it does not change the current app's imports, routing, state, or runtime behavior
|
|
11
|
+
|
|
12
|
+
## Commands
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install
|
|
16
|
+
npm run storybook
|
|
17
|
+
npm run build-storybook
|
|
18
|
+
```
|