@ibis-design/svelte 0.7.2 → 0.8.1

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 +9 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -365,6 +365,12 @@ Simple surfaced container (styles ship with the component).
365
365
 
366
366
  ---
367
367
 
368
+ ### Tooltip
369
+
370
+ The `Tooltip` export is reserved for a future standalone tooltip component. For floating help text today, use **TipIndicator** (`.ibis-tip` styles) or **Banner** / **Toaster** for page-level messaging.
371
+
372
+ ---
373
+
368
374
  ## Layouts
369
375
 
370
376
  Layouts use **snippet props** for regions. Content between the layout tags is the main `children` area.
@@ -431,7 +437,9 @@ Dashboard shell with themed header and sidebar (same snippet API as `AppLayout`)
431
437
 
432
438
  ## Vanilla HTML / other frameworks
433
439
 
434
- Component **classes** and tokens live in `@ibis-design/css`. Use this package when you want ready-made Svelte 5 components; use the CSS package directly for React, Vue, or plain HTML. See the [@ibis-design/css README](https://www.npmjs.com/package/@ibis-design/css) for `.ibis-*` markup examples.
440
+ Component **classes** and tokens live in `@ibis-design/css`. Use this package when you want ready-made Svelte 5 components; use the CSS package directly for Vue or plain HTML. See the [@ibis-design/css README](https://www.npmjs.com/package/@ibis-design/css) for `.ibis-*` markup examples.
441
+
442
+ For React, see [@ibis-design/react](https://www.npmjs.com/package/@ibis-design/react).
435
443
 
436
444
  ---
437
445
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibis-design/svelte",
3
- "version": "0.7.2",
3
+ "version": "0.8.1",
4
4
  "description": "Svelte component library for the IBIS design system.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -22,11 +22,11 @@
22
22
  "**/*.css"
23
23
  ],
24
24
  "peerDependencies": {
25
- "@ibis-design/css": "^0.7.2",
25
+ "@ibis-design/css": "^0.8.1",
26
26
  "svelte": "^5.54.0"
27
27
  },
28
28
  "devDependencies": {
29
- "@ibis-design/css": "0.7.2",
29
+ "@ibis-design/css": "0.8.1",
30
30
  "@sveltejs/adapter-auto": "7.0.1",
31
31
  "@sveltejs/kit": "2.60.1",
32
32
  "@sveltejs/package": "2.5.7",
@@ -35,7 +35,7 @@
35
35
  "svelte": "5.55.9",
36
36
  "svelte-check": "^4.4.8",
37
37
  "typescript": "^5.9.3",
38
- "vite": "^8.0.13"
38
+ "vite": "^8.0.14"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "svelte-kit sync && svelte-package",