ds-one 0.1.11-alpha.16 → 0.1.11-alpha.17

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.
@@ -1,4 +1,4 @@
1
- /* version 0.1.11-alpha.16 */
1
+ /* version 0.1.11-alpha.17 */
2
2
 
3
3
  input {
4
4
  padding: 0;
package/README.md CHANGED
@@ -6,7 +6,7 @@ Build modern UIs with web components!
6
6
 
7
7
  [![npm version](https://img.shields.io/npm/v/ds-one/alpha.svg)](https://www.npmjs.com/package/ds-one)
8
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
9
- [![Version](https://img.shields.io/badge/version-0.1.11--alpha.15-orange.svg)](https://github.com/Jo4712/ds-one)
9
+ [![Version](https://img.shields.io/badge/version-0.1.11--alpha.16-orange.svg)](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.16`. Use `@alpha` tag to install.
30
+ **Note**: Currently published as alpha version `0.1.11-alpha.17`. 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="node_modules/design-system-one/1 Root/one.css"
41
+ href="https://cdn.jsdelivr.net/npm/ds-one@alpha/DS1/1-root/one.css"
41
42
  />
42
- <script
43
- type="module"
44
- src="node_modules/design-system-one/2 Core/ds-button.ts"
45
- ></script>
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" key="welcomeButton">Get Started</ds-button>
53
- <ds-text variant="heading" key="mainHeading">Welcome to DS one</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.16
90
+ ## Current Status: v0.1.11-alpha.17
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/Jo4712/ds-one.git
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.16 → 0.1.11-alpha.16)
187
+ bun run release:pre:alpha # Bumps alpha version (e.g., 0.1.11-alpha.17 → 0.1.11-alpha.17)
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/Jo4712/ds-one)
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/Jo4712/ds-one)** - Source code and issues
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.16",
3
+ "version": "0.1.11-alpha.17",
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/jo4712/ds-one.git"
86
+ "url": "git+https://github.com/0001-labs/ds-one.git"
87
87
  },
88
88
  "bugs": {
89
- "url": "https://github.com/jo4712/ds-one/issues"
89
+ "url": "https://github.com/0001-labs/ds-one/issues"
90
90
  },
91
91
  "homepage": "https://dsone.dev",
92
92
  "engines": {