@hyvnt/hyvui 0.1.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -54,12 +54,12 @@
54
54
  `03 / install`
55
55
 
56
56
  ```sh
57
- npm install hyvui
57
+ npm install @hyvnt/hyvui
58
58
  ```
59
59
 
60
60
  ```svelte
61
61
  <script>
62
- import { Button, Text, FloatCard } from 'hyvui';
62
+ import { Button, Text, FloatCard } from '@hyvnt/hyvui';
63
63
  </script>
64
64
  ```
65
65
 
@@ -67,7 +67,7 @@ import the styles once at the root of your app:
67
67
 
68
68
  ```ts
69
69
  // app.css or root layout
70
- import 'hyvui/styles';
70
+ import '@hyvnt/hyvui/styles';
71
71
  ```
72
72
 
73
73
  ---
@@ -182,7 +182,7 @@ registers are named aesthetic states. apply one and the ambient properties shift
182
182
 
183
183
  ```svelte
184
184
  <script>
185
- import { applyRegister } from 'hyvui';
185
+ import { applyRegister } from '@hyvnt/hyvui';
186
186
  onMount(() => applyRegister('mission-control'));
187
187
  </script>
188
188
  ```
@@ -250,4 +250,4 @@ override per-section with `--reg-*` properties. documented in `override-template
250
250
  <br/><br/>
251
251
  svelte 5 only. no compatibility shims.
252
252
 
253
- </details>
253
+ </details>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyvnt/hyvui",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },