@omnitend/dashboard-for-laravel 0.9.0 → 0.9.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.
- package/dist/components/extended/DXTable.vue.d.ts +6 -2
- package/dist/dashboard-for-laravel.js +2604 -2601
- 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 +2 -2
- package/docs/public/docs-map.md +1 -1
- package/package.json +1 -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 */
|
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:43:17.631Z
|
|
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