@n8n/design-system 1.70.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/.eslintrc.js +47 -0
- package/.turbo/turbo-build.log +17 -0
- package/LICENSE.md +88 -0
- package/README.md +51 -0
- package/biome.jsonc +7 -0
- package/chromatic.config.json +4 -0
- package/dist/.nojekyll +0 -0
- package/dist/assets/images/storybook-logo-dark.png +0 -0
- package/dist/assets/images/storybook-logo-light.png +0 -0
- package/dist/design-system.css +1 -0
- package/dist/n8n-design-system.es.js +32107 -0
- package/dist/n8n-design-system.umd.js +551 -0
- package/package.json +16 -0
- package/postcss.config.js +6 -0
- package/public/.nojekyll +0 -0
- package/public/assets/images/storybook-logo-dark.png +0 -0
- package/public/assets/images/storybook-logo-light.png +0 -0
- package/src/css/fonts/element-icons.ttf +0 -0
- package/src/css/fonts/element-icons.woff +0 -0
- package/src/css/tailwind/index.css +3 -0
- package/src/index.ts +8 -0
- package/tailwind.config.js +8 -0
- package/theme/preview/docs.min.css +2379 -0
- package/theme/preview/index.html +1334 -0
- package/tsconfig.json +21 -0
- package/vite.config.mts +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@n8n/design-system",
|
|
3
|
+
"version": "1.70.0",
|
|
4
|
+
"main": "src/index.ts",
|
|
5
|
+
"import": "src/index.ts",
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
7
|
+
"homepage": "https://n8n.io",
|
|
8
|
+
"author": {
|
|
9
|
+
"name": "Jan Oberhauser",
|
|
10
|
+
"email": "jan@n8n.io"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/n8n-io/n8n.git"
|
|
15
|
+
}
|
|
16
|
+
}
|
package/public/.nojekyll
ADDED
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/src/index.ts
ADDED