anentrypoint-design 0.0.17 → 0.0.19

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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -19,9 +19,9 @@ npm install anentrypoint-design
19
19
  **unpkg** (when you don't, and you don't want one):
20
20
 
21
21
  ```html
22
- <link rel="stylesheet" href="https://unpkg.com/anentrypoint-design/dist/247420.css">
22
+ <link rel="stylesheet" href="https://unpkg.com/anentrypoint-design@latest/dist/247420.css">
23
23
  <script type="importmap">
24
- { "imports": { "anentrypoint-design": "https://unpkg.com/anentrypoint-design/dist/247420.js" } }
24
+ { "imports": { "anentrypoint-design": "https://unpkg.com/anentrypoint-design@latest/dist/247420.js" } }
25
25
  </script>
26
26
  ```
27
27
 
@@ -63,9 +63,9 @@ export default function render({ site, page }) {
63
63
  <meta charset="utf-8">
64
64
  <meta name="viewport" content="width=device-width, initial-scale=1">
65
65
  <title>${page.title} — ${site.title}</title>
66
- <link rel="stylesheet" href="https://unpkg.com/anentrypoint-design/dist/247420.css">
66
+ <link rel="stylesheet" href="https://unpkg.com/anentrypoint-design@latest/dist/247420.css">
67
67
  <script type="importmap">
68
- { "imports": { "anentrypoint-design": "https://unpkg.com/anentrypoint-design/dist/247420.js" } }
68
+ { "imports": { "anentrypoint-design": "https://unpkg.com/anentrypoint-design@latest/dist/247420.js" } }
69
69
  </script>
70
70
  </head>
71
71
  <body>
@@ -178,7 +178,7 @@ Every selector in the bundle is namespaced under `.ds-247420` via PostCSS. The b
178
178
  ## CSS only (no JS)
179
179
 
180
180
  ```html
181
- <link rel="stylesheet" href="https://unpkg.com/anentrypoint-design/dist/247420.css">
181
+ <link rel="stylesheet" href="https://unpkg.com/anentrypoint-design@latest/dist/247420.css">
182
182
  <div class="ds-247420">…</div>
183
183
  ```
184
184
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anentrypoint-design",
3
- "version": "0.0.17",
3
+ "version": "0.0.19",
4
4
  "description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
5
5
  "type": "module",
6
6
  "main": "./dist/247420.js",