@tenorlab/vue-dashboard 1.5.42 → 1.5.43

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 +23 -8
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,14 +4,20 @@ Foundation components for creating user-configurable, high-performance dashboard
4
4
 
5
5
  ## 🏗 Relationship to Core
6
6
 
7
- This package extends **@tenorlab/dashboard-core**. It provides the Vue implementation of the core logic, including specialized hooks, state management via **Zustand**, and a suite of UI components.
7
+ This package extends **@tenorlab/dashboard-core**. It provides the Vue implementation of the core logic, including specialized hooks, state management, and a suite of UI components.
8
8
 
9
9
  > **Note**: This package re-exports all types and utilities from `@tenorlab/dashboard-core`. You do not need to install the core package separately.
10
10
 
11
+
12
+ ## Demos
13
+ -- [React Demo](https://react.tenorlab.com) (built with @tenorlab/react-dashboard)
14
+ -- [Vue Demo](https://vue.tenorlab.com) (built with @tenorlab/vue-dashboard)
15
+
16
+
11
17
  ## ✨ Features
12
18
 
13
19
  - **Type-Safe:** Deep integration with TypeScript 5.8+ for full IDE support.
14
- - **State Management:** Built-in `useDashboardStore` (Zustand) and `useDashboardUndoService`.
20
+ - **State Management:** Built-in `useDashboardStore` and `useDashboardUndoService`.
15
21
  - **User Configurable:** Ready-to-use components for adding, removing, and dragging widgets.
16
22
  - **Themeable:** Native support for CSS Variables and Tailwind CSS.
17
23
  - **Vite Optimized:** Full ESM support and tree-shakeable.
@@ -397,8 +403,23 @@ For a complete example including **Undo/Redo**, **Zooming**, **Catalog Flyouts**
397
403
  - **`useDashboardStore`**: Access the underlying Zustand store to manage widget state, layout, and configuration.
398
404
  - **`useDashboardUndoService`**: Provides `undo` and `redo` functionality for user layout changes.
399
405
 
406
+
407
+ ------
408
+
409
+
410
+ ## Links
411
+ - [@tenorlab/react-dashboard](https://www.npmjs.com/package/@tenorlab/react-dashboard): React-specific components
412
+ - [@tenorlab/vue-dashboard](https://www.npmjs.com/package/@tenorlab/vue-dashboard): Vue-specific components
413
+ - [Official Website](https://www.tenorlab.com)
414
+ - [React Demo](https://react.tenorlab.com) (built with @tenorlab/react-dashboard)
415
+ - [Vue Demo](https://vue.tenorlab.com) (built with @tenorlab/vue-dashboard)
416
+ - [Buy a License](https://payhip.com/b/gPBpo)
417
+ - [Follow on BlueSky](https://bsky.app/profile/tenorlab.bsky.social)
418
+
419
+
400
420
  ------
401
421
 
422
+
402
423
  ## ⚖️ Licensing
403
424
 
404
425
  This project is dual-licensed:
@@ -408,9 +429,3 @@ This project is dual-licensed:
408
429
 
409
430
  If you are using this library to build a revenue-generating product or within a commercial entity, please visit [https://payhip.com/b/gPBpo](https://payhip.com/b/gPBpo) to purchase a license.
410
431
 
411
- ------
412
-
413
- ## Links
414
- [Official Website](https://www.tenorlab.com)
415
- [Buy a icense](https://payhip.com/b/gPBpo)
416
- [BlueSky](https://bsky.app/profile/tenorlab.bsky.social)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tenorlab/vue-dashboard",
3
- "version": "1.5.42",
3
+ "version": "1.5.43",
4
4
  "description": "Foundation components for creating user-configurable dashboards in Vue",
5
5
  "author": "Damiano Fusco",
6
6
  "type": "module",
@@ -47,7 +47,7 @@
47
47
  "main": "./dist/vue-dashboard.es.js",
48
48
  "module": "./dist/vue-dashboard.es.js",
49
49
  "devDependencies": {
50
- "@tenorlab/dashboard-core": "^1.5.4",
50
+ "@tenorlab/dashboard-core": "^1.5.5",
51
51
  "@types/node": "^24.10.1",
52
52
  "@vitejs/plugin-vue": "^6.0.3",
53
53
  "prettier": "^3.7.4",