@omnitend/dashboard-for-laravel 0.9.1 → 0.9.2

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.
@@ -1,8 +1,8 @@
1
1
  {
2
- "generated": "2026-07-04T11:43:17.570Z",
2
+ "generated": "2026-07-04T11:54:15.956Z",
3
3
  "package": {
4
4
  "name": "@omnitend/dashboard-for-laravel",
5
- "version": "0.9.1"
5
+ "version": "0.9.2"
6
6
  },
7
7
  "components": {
8
8
  "base": [
@@ -1352,6 +1352,16 @@
1352
1352
  "description": "",
1353
1353
  "bindings": []
1354
1354
  },
1355
+ {
1356
+ "name": "actions",
1357
+ "description": "",
1358
+ "bindings": [
1359
+ {
1360
+ "name": "page-title",
1361
+ "title": "binding"
1362
+ }
1363
+ ]
1364
+ },
1355
1365
  {
1356
1366
  "name": "user-menu",
1357
1367
  "description": "",
@@ -1,7 +1,7 @@
1
1
  # Documentation Map
2
2
 
3
3
  > Auto-generated hierarchical overview of all documentation
4
- > Last updated: 2026-07-04T11:43:17.631Z
4
+ > Last updated: 2026-07-04T11:54:16.017Z
5
5
 
6
6
  This file provides a complete map of all available documentation for AI agents and developers.
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omnitend/dashboard-for-laravel",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Vue 3 dashboard components for Laravel with Bootstrap Vue Next",
5
5
  "type": "module",
6
6
  "main": "./dist/dashboard-for-laravel.umd.cjs",
@@ -32,7 +32,15 @@
32
32
  </div>
33
33
  </DCol>
34
34
 
35
- <DCol cols="auto">
35
+ <DCol cols="auto" class="d-flex align-items-center gap-3">
36
+ <!-- Page-level primary actions, right-aligned next to the user menu -->
37
+ <div
38
+ v-if="$slots.actions"
39
+ class="dashboard-navbar__actions d-flex align-items-center gap-2"
40
+ >
41
+ <slot name="actions" :page-title="pageTitle" />
42
+ </div>
43
+
36
44
  <slot name="user-menu" :user="user">
37
45
  <DDropdown
38
46
  v-if="user"