stellar-drive 1.2.19 → 1.2.21

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.
@@ -206,7 +206,7 @@ function generatePackageJson(opts) {
206
206
  },
207
207
  dependencies: {
208
208
  postgres: '^3.4.0',
209
- 'stellar-drive': '^1.2.19'
209
+ 'stellar-drive': '^1.2.21'
210
210
  },
211
211
  type: 'module'
212
212
  }, null, 2) + '\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stellar-drive",
3
- "version": "1.2.19",
3
+ "version": "1.2.21",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -10,15 +10,12 @@
10
10
  - z-index 9950 — above page content and DemoBanner (9000), below sign-out overlay (9998).
11
11
  - App-neutral styling — works in both Stellar and Radiant themes.
12
12
 
13
- @example
14
- ```svelte
15
- <!-- In +layout.svelte -->
16
- import DemoBlockedMessage from 'stellar-drive/components/DemoBlockedMessage';
17
- <DemoBlockedMessage />
18
- ```
13
+ Example mount in `+layout.svelte`:
14
+ `import DemoBlockedMessage from 'stellar-drive/components/DemoBlockedMessage';`
15
+ `<DemoBlockedMessage />`
19
16
  -->
20
17
  <script lang="ts">
21
- import { _demoBlockedStore } from '../demo';
18
+ import { _demoBlockedStore } from 'stellar-drive/demo';
22
19
  import { fade, scale } from 'svelte/transition';
23
20
 
24
21
  const message = $derived($_demoBlockedStore);