@flightlesslabs/dodo-ui 0.1.0 → 0.1.1
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 +3 -1
- package/dist/stories/Home.mdx +10 -1
- package/package.json +14 -15
- package/src/lib/stories/Getting Started.mdx +13 -0
- package/src/lib/stories/Home.mdx +10 -0
package/README.md
CHANGED
package/dist/stories/Home.mdx
CHANGED
|
@@ -1 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
<img
|
|
2
|
+
src="dodo-circle-6.png"
|
|
3
|
+
style={{ width: 200, height: 'auto', display: 'flex', justifySelf: 'center' }}
|
|
4
|
+
/>
|
|
5
|
+
|
|
6
|
+
<h1 style={{ textAlign: 'center' }}>Dodo UI</h1>
|
|
7
|
+
|
|
8
|
+
<div style={{ textAlign: 'center', fontSize: '1rem', fontWeight: 400 }}>
|
|
9
|
+
An open-source, opinionated UI framework for Svelte.
|
|
10
|
+
</div>
|
package/package.json
CHANGED
|
@@ -1,19 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flightlesslabs/dodo-ui",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"scripts": {
|
|
5
|
-
"build": "vite build && pnpm run prepack",
|
|
6
|
-
"preview": "vite preview",
|
|
7
|
-
"prepare": "svelte-kit sync || echo ''",
|
|
8
|
-
"prepack": "svelte-kit sync && svelte-package && publint",
|
|
9
|
-
"svelte-check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
10
|
-
"format": "prettier --write .",
|
|
11
|
-
"lint": "prettier --check . && eslint .",
|
|
12
|
-
"dev": "storybook dev -p 6006",
|
|
13
|
-
"build-storybook": "storybook build && touch ./storybook-static/.nojekyll",
|
|
14
|
-
"check": "pnpm run svelte-check && eslint . && pnpm run lint",
|
|
15
|
-
"check:fix": "pnpm run svelte-check && eslint . && pnpm run format"
|
|
16
|
-
},
|
|
3
|
+
"version": "0.1.1",
|
|
17
4
|
"homepage": "https://flightlesslabs.github.io/dodo-ui",
|
|
18
5
|
"repository": {
|
|
19
6
|
"type": "git",
|
|
@@ -54,6 +41,7 @@
|
|
|
54
41
|
"@storybook/addon-svelte-csf": "^5.0.0-next.0",
|
|
55
42
|
"@storybook/blocks": "^8.6.7",
|
|
56
43
|
"@storybook/experimental-addon-test": "^8.6.7",
|
|
44
|
+
"@storybook/manager-api": "^8.6.12",
|
|
57
45
|
"@storybook/svelte": "^8.6.7",
|
|
58
46
|
"@storybook/sveltekit": "^8.6.7",
|
|
59
47
|
"@storybook/test": "^8.6.7",
|
|
@@ -92,5 +80,16 @@
|
|
|
92
80
|
},
|
|
93
81
|
"dependencies": {
|
|
94
82
|
"@iconify/svelte": "^4.2.0"
|
|
83
|
+
},
|
|
84
|
+
"scripts": {
|
|
85
|
+
"build": "vite build && pnpm run prepack",
|
|
86
|
+
"preview": "vite preview",
|
|
87
|
+
"svelte-check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
88
|
+
"format": "prettier --write .",
|
|
89
|
+
"lint": "prettier --check . && eslint .",
|
|
90
|
+
"dev": "storybook dev -p 6006",
|
|
91
|
+
"build-storybook": "storybook build && touch ./storybook-static/.nojekyll",
|
|
92
|
+
"check": "pnpm run svelte-check && eslint . && pnpm run lint",
|
|
93
|
+
"check:fix": "pnpm run svelte-check && eslint . && pnpm run format"
|
|
95
94
|
}
|
|
96
|
-
}
|
|
95
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<img
|
|
2
|
+
src="dodo-circle-6.png"
|
|
3
|
+
style={{ width: 200, height: 'auto', display: 'flex', justifySelf: 'center' }}
|
|
4
|
+
/>
|
|
5
|
+
|
|
6
|
+
<h1 style={{ textAlign: 'center' }}>Dodo UI</h1>
|
|
7
|
+
|
|
8
|
+
<div style={{ textAlign: 'center', fontSize: '1rem', fontWeight: 400 }}>
|
|
9
|
+
An open-source, opinionated UI framework for Svelte.
|
|
10
|
+
</div>
|