@omnitend/dashboard-for-laravel 0.9.0 → 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.
- package/dist/components/extended/DXDashboardNavbar.vue.d.ts +9 -5
- package/dist/components/extended/DXTable.vue.d.ts +6 -2
- package/dist/dashboard-for-laravel.js +2805 -2793
- package/dist/dashboard-for-laravel.js.map +1 -1
- package/dist/dashboard-for-laravel.umd.cjs +4 -4
- package/dist/dashboard-for-laravel.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts +7 -2
- package/docs/public/api-reference.json +12 -2
- package/docs/public/docs-map.md +1 -1
- package/package.json +1 -1
- package/resources/js/components/extended/DXDashboardNavbar.vue +9 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -164,8 +164,13 @@ export interface FieldDefinition {
|
|
|
164
164
|
export interface FormTab {
|
|
165
165
|
/** Unique key for this tab */
|
|
166
166
|
key: string;
|
|
167
|
-
/**
|
|
168
|
-
|
|
167
|
+
/**
|
|
168
|
+
* Display label (optional, defaults to the key). May be a function of the
|
|
169
|
+
* form model — the live form data merged with any `context` (e.g. the row
|
|
170
|
+
* DXTable is editing) — so a tab title can reflect the record, such as
|
|
171
|
+
* `label: (model) => \`Products (${model.products_count ?? 0})\``.
|
|
172
|
+
*/
|
|
173
|
+
label?: MaybeFn<string>;
|
|
169
174
|
/** Field keys (from the form's fields) to render in this tab */
|
|
170
175
|
fieldKeys: string[];
|
|
171
176
|
/** Conditional display — boolean or a function of the form model */
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generated": "2026-07-
|
|
2
|
+
"generated": "2026-07-04T11:54:15.956Z",
|
|
3
3
|
"package": {
|
|
4
4
|
"name": "@omnitend/dashboard-for-laravel",
|
|
5
|
-
"version": "0.9.
|
|
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": "",
|
package/docs/public/docs-map.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Documentation Map
|
|
2
2
|
|
|
3
3
|
> Auto-generated hierarchical overview of all documentation
|
|
4
|
-
> Last updated: 2026-07-
|
|
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
|
@@ -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"
|