ds-one 0.1.11-alpha.16 → 0.1.11-alpha.18
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/DS1/1-root/one.css +1 -1
- package/README.md +17 -20
- package/package.json +3 -3
package/DS1/1-root/one.css
CHANGED
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Build modern UIs with web components!
|
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/ds-one)
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
|
-
[](https://github.com/0001-labs/ds-one)
|
|
10
10
|
|
|
11
11
|
**DS one** is a modern design system that provides a comprehensive set of reusable UI components built with Web Components. Think "Material Design meets Web Standards"—a simple, accessible component library that works with any framework or vanilla JavaScript.
|
|
12
12
|
|
|
@@ -27,30 +27,27 @@ npm install ds-one@alpha
|
|
|
27
27
|
yarn add ds-one@alpha
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
**Note**: Currently published as alpha version `0.1.11-alpha.
|
|
30
|
+
**Note**: Currently published as alpha version `0.1.11-alpha.18`. Use `@alpha` tag to install.
|
|
31
31
|
|
|
32
|
-
### Basic Usage
|
|
32
|
+
### Basic Usage (CDN)
|
|
33
33
|
|
|
34
34
|
```html
|
|
35
35
|
<!DOCTYPE html>
|
|
36
36
|
<html>
|
|
37
37
|
<head>
|
|
38
|
+
<!-- Load DS one CSS -->
|
|
38
39
|
<link
|
|
39
40
|
rel="stylesheet"
|
|
40
|
-
href="
|
|
41
|
+
href="https://cdn.jsdelivr.net/npm/ds-one@alpha/DS1/1-root/one.css"
|
|
41
42
|
/>
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
<script
|
|
47
|
-
type="module"
|
|
48
|
-
src="node_modules/design-system-one/2 Core/ds-text.ts"
|
|
49
|
-
></script>
|
|
43
|
+
<!-- Load DS one components -->
|
|
44
|
+
<script type="module">
|
|
45
|
+
import "https://cdn.jsdelivr.net/npm/ds-one@alpha/dist/ds-one.bundle.min.js";
|
|
46
|
+
</script>
|
|
50
47
|
</head>
|
|
51
48
|
<body>
|
|
52
|
-
<ds-button variant="primary"
|
|
53
|
-
<ds-text
|
|
49
|
+
<ds-button variant="primary">Get Started</ds-button>
|
|
50
|
+
<ds-text key="welcome">Welcome to DS one</ds-text>
|
|
54
51
|
</body>
|
|
55
52
|
</html>
|
|
56
53
|
```
|
|
@@ -90,7 +87,7 @@ Try DS one in your browser: **[dsone.dev](https://dsone.dev)** (documentation sl
|
|
|
90
87
|
- **[Internationalization](./docs/i18n.md)** - Language keys and Notion CMS setup
|
|
91
88
|
- **[Examples](./docs/examples.md)** - Usage examples and patterns
|
|
92
89
|
|
|
93
|
-
## Current Status: v0.1.11-alpha.
|
|
90
|
+
## Current Status: v0.1.11-alpha.18
|
|
94
91
|
|
|
95
92
|
**⚠️ Alpha Release**: This is an early alpha version. The API may change as we refine the components and architecture.
|
|
96
93
|
|
|
@@ -167,7 +164,7 @@ DS one/
|
|
|
167
164
|
|
|
168
165
|
```bash
|
|
169
166
|
# Clone the repository
|
|
170
|
-
git clone https://github.com/
|
|
167
|
+
git clone https://github.com/0001-labs/ds-one.git
|
|
171
168
|
cd ds-one
|
|
172
169
|
|
|
173
170
|
# Install dependencies
|
|
@@ -187,22 +184,22 @@ bun run build
|
|
|
187
184
|
|
|
188
185
|
```bash
|
|
189
186
|
# Create a new alpha release (recommended for now)
|
|
190
|
-
bun run release:pre:alpha # Bumps alpha version (e.g., 0.1.11-alpha.
|
|
187
|
+
bun run release:pre:alpha # Bumps alpha version (e.g., 0.1.11-alpha.18 → 0.1.11-alpha.18)
|
|
191
188
|
|
|
192
189
|
# Other release commands (for future use)
|
|
193
190
|
bun run release:patch # For patch releases
|
|
194
|
-
bun run release:minor # For minor releases
|
|
191
|
+
bun run release:minor # For minor releases
|
|
195
192
|
bun run release:major # For major releases
|
|
196
193
|
```
|
|
197
194
|
|
|
198
195
|
## License
|
|
199
196
|
|
|
200
|
-
MIT © [DS one](https://github.com/
|
|
197
|
+
MIT © [DS one](https://github.com/0001-labs/ds-one)
|
|
201
198
|
|
|
202
199
|
## 🔗 Links
|
|
203
200
|
|
|
204
201
|
- **[Website](https://dsone.dev)** - Official website (slugs to be decided)
|
|
205
|
-
- **[GitHub](https://github.com/
|
|
202
|
+
- **[GitHub](https://github.com/0001-labs/ds-one)** - Source code and issues
|
|
206
203
|
- **[NPM Package](https://www.npmjs.com/package/ds-one)** - Install with `@alpha` tag
|
|
207
204
|
- **[CDN](https://cdn.jsdelivr.net/npm/ds-one@alpha/)** - Direct browser usage
|
|
208
205
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ds-one",
|
|
3
|
-
"version": "0.1.11-alpha.
|
|
3
|
+
"version": "0.1.11-alpha.18",
|
|
4
4
|
"description": "a plug and play design system built with TypeScript and Lit",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -83,10 +83,10 @@
|
|
|
83
83
|
},
|
|
84
84
|
"repository": {
|
|
85
85
|
"type": "git",
|
|
86
|
-
"url": "git+https://github.com/
|
|
86
|
+
"url": "git+https://github.com/0001-labs/ds-one.git"
|
|
87
87
|
},
|
|
88
88
|
"bugs": {
|
|
89
|
-
"url": "https://github.com/
|
|
89
|
+
"url": "https://github.com/0001-labs/ds-one/issues"
|
|
90
90
|
},
|
|
91
91
|
"homepage": "https://dsone.dev",
|
|
92
92
|
"engines": {
|