@omnitend/dashboard-for-laravel 0.4.14 → 0.5.0
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/base/DFormRadioGroup.vue.d.ts +12 -0
- package/dist/components/extended/DXBasicForm.vue.d.ts +4 -33
- package/dist/components/extended/DXField.vue.d.ts +88 -0
- package/dist/components/extended/DXForm.vue.d.ts +34 -8
- package/dist/components/extended/DXRepeater.vue.d.ts +30 -0
- package/dist/components/extended/DXTable.vue.d.ts +10 -17
- package/dist/dashboard-for-laravel.js +8516 -8080
- package/dist/dashboard-for-laravel.js.map +1 -1
- package/dist/dashboard-for-laravel.umd.cjs +6 -6
- package/dist/dashboard-for-laravel.umd.cjs.map +1 -1
- package/dist/index.d.ts +10 -2
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts +114 -9
- package/dist/utils/objectPath.d.ts +18 -0
- package/docs/public/api-reference.json +345 -85
- package/docs/public/docs-map.md +5 -4
- package/docs/public/llms.txt +8 -5
- package/package.json +1 -1
- package/resources/js/components/base/DFormRadioGroup.vue +21 -0
- package/resources/js/components/extended/DXBasicForm.vue +35 -184
- package/resources/js/components/extended/DXField.vue +402 -0
- package/resources/js/components/extended/DXForm.vue +282 -17
- package/resources/js/components/extended/DXRepeater.vue +216 -0
- package/resources/js/components/extended/DXTable.vue +96 -210
- package/resources/js/composables/defineForm.ts +7 -0
- package/resources/js/index.ts +12 -1
- package/resources/js/types/index.ts +146 -9
- package/resources/js/utils/objectPath.ts +59 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare var __VLS_7: string | number, __VLS_8: any;
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
[K in NonNullable<typeof __VLS_7>]?: (props: typeof __VLS_8) => any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
7
|
+
export default _default;
|
|
8
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
9
|
+
new (): {
|
|
10
|
+
$slots: S;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -1,36 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
form: UseFormReturn<any>;
|
|
6
|
-
/** Field definitions */
|
|
7
|
-
fields: FieldDefinition[];
|
|
8
|
-
/** Submit button text */
|
|
9
|
-
submitText?: string;
|
|
10
|
-
/** Submit button loading text */
|
|
11
|
-
submitLoadingText?: string;
|
|
12
|
-
/** Show submit button */
|
|
13
|
-
showSubmit?: boolean;
|
|
14
|
-
}
|
|
15
|
-
declare var __VLS_14: `field-${string}`, __VLS_15: {
|
|
16
|
-
field: FieldDefinition;
|
|
17
|
-
form: UseFormReturn<any>;
|
|
18
|
-
}, __VLS_61: {};
|
|
19
|
-
type __VLS_Slots = {} & {
|
|
20
|
-
[K in NonNullable<typeof __VLS_14>]?: (props: typeof __VLS_15) => any;
|
|
21
|
-
} & {
|
|
22
|
-
footer?: (props: typeof __VLS_61) => any;
|
|
23
|
-
};
|
|
24
|
-
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
|
-
submit: () => any;
|
|
26
|
-
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
27
|
-
onSubmit?: (() => any) | undefined;
|
|
28
|
-
}>, {
|
|
29
|
-
submitText: string;
|
|
30
|
-
submitLoadingText: string;
|
|
31
|
-
showSubmit: boolean;
|
|
32
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
1
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
2
|
+
[x: string]: ((props: any) => any) | undefined;
|
|
3
|
+
[x: number]: ((props: any) => any) | undefined;
|
|
4
|
+
}>;
|
|
34
5
|
export default _default;
|
|
35
6
|
type __VLS_WithSlots<T, S> = T & {
|
|
36
7
|
new (): {
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import type { UseFormReturn } from "../../composables/useForm";
|
|
2
|
+
import type { FieldDefinition } from "../../types";
|
|
3
|
+
interface Props {
|
|
4
|
+
/** Field definition to render */
|
|
5
|
+
field: FieldDefinition;
|
|
6
|
+
/** Form instance owning the field's data and errors */
|
|
7
|
+
form: UseFormReturn<any>;
|
|
8
|
+
/**
|
|
9
|
+
* Model passed to predicates (label/hint/when/disabled/readonly).
|
|
10
|
+
* Defaults to the live form data; a parent may widen it (e.g. a table
|
|
11
|
+
* merging the original row).
|
|
12
|
+
*/
|
|
13
|
+
model?: any;
|
|
14
|
+
/** Dot path into form.data for the value (defaults to field.key). */
|
|
15
|
+
keyPath?: string;
|
|
16
|
+
/** Error key for validation lookups (defaults to keyPath/field.key). */
|
|
17
|
+
errorKey?: string;
|
|
18
|
+
}
|
|
19
|
+
declare function setValue(value: any): void;
|
|
20
|
+
declare var __VLS_1: {
|
|
21
|
+
field: FieldDefinition;
|
|
22
|
+
model: any;
|
|
23
|
+
value: any;
|
|
24
|
+
update: typeof setValue;
|
|
25
|
+
}, __VLS_3: {
|
|
26
|
+
field: FieldDefinition;
|
|
27
|
+
model: any;
|
|
28
|
+
value: any;
|
|
29
|
+
update: typeof setValue;
|
|
30
|
+
}, __VLS_11: {
|
|
31
|
+
field: FieldDefinition;
|
|
32
|
+
model: any;
|
|
33
|
+
}, __VLS_16: {
|
|
34
|
+
field: FieldDefinition;
|
|
35
|
+
model: any;
|
|
36
|
+
}, __VLS_28: {
|
|
37
|
+
row: any;
|
|
38
|
+
index: number;
|
|
39
|
+
fields: FieldDefinition[];
|
|
40
|
+
remove: () => void;
|
|
41
|
+
path: string;
|
|
42
|
+
}, __VLS_30: {
|
|
43
|
+
field: FieldDefinition;
|
|
44
|
+
model: any;
|
|
45
|
+
}, __VLS_35: {
|
|
46
|
+
field: FieldDefinition;
|
|
47
|
+
model: any;
|
|
48
|
+
}, __VLS_43: {
|
|
49
|
+
field: FieldDefinition;
|
|
50
|
+
model: any;
|
|
51
|
+
value: any;
|
|
52
|
+
update: typeof setValue;
|
|
53
|
+
}, __VLS_77: {
|
|
54
|
+
field: FieldDefinition;
|
|
55
|
+
model: any;
|
|
56
|
+
}, __VLS_82: {
|
|
57
|
+
field: FieldDefinition;
|
|
58
|
+
model: any;
|
|
59
|
+
};
|
|
60
|
+
type __VLS_Slots = {} & {
|
|
61
|
+
span?: (props: typeof __VLS_1) => any;
|
|
62
|
+
} & {
|
|
63
|
+
value?: (props: typeof __VLS_3) => any;
|
|
64
|
+
} & {
|
|
65
|
+
info?: (props: typeof __VLS_11) => any;
|
|
66
|
+
} & {
|
|
67
|
+
hint?: (props: typeof __VLS_16) => any;
|
|
68
|
+
} & {
|
|
69
|
+
'repeater-row'?: (props: typeof __VLS_28) => any;
|
|
70
|
+
} & {
|
|
71
|
+
info?: (props: typeof __VLS_30) => any;
|
|
72
|
+
} & {
|
|
73
|
+
hint?: (props: typeof __VLS_35) => any;
|
|
74
|
+
} & {
|
|
75
|
+
value?: (props: typeof __VLS_43) => any;
|
|
76
|
+
} & {
|
|
77
|
+
info?: (props: typeof __VLS_77) => any;
|
|
78
|
+
} & {
|
|
79
|
+
hint?: (props: typeof __VLS_82) => any;
|
|
80
|
+
};
|
|
81
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
82
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
83
|
+
export default _default;
|
|
84
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
85
|
+
new (): {
|
|
86
|
+
$slots: S;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
@@ -1,26 +1,52 @@
|
|
|
1
|
+
import type { UseFormReturn } from "../../composables/useForm";
|
|
1
2
|
import type { DefineFormReturn } from "../../composables/defineForm";
|
|
3
|
+
import type { FieldDefinition, FormTab } from "../../types";
|
|
2
4
|
interface Props {
|
|
3
|
-
/**
|
|
4
|
-
|
|
5
|
+
/**
|
|
6
|
+
* Form instance — either a raw `useForm` return or a `defineForm`
|
|
7
|
+
* return (`{ form, fields }`). With the latter, `fields` may be
|
|
8
|
+
* omitted and is taken from the form object.
|
|
9
|
+
*/
|
|
10
|
+
form: UseFormReturn<any> | DefineFormReturn<any>;
|
|
11
|
+
/** Field definitions (optional when `form` is a defineForm return). */
|
|
12
|
+
fields?: FieldDefinition[];
|
|
13
|
+
/** Tab definitions. When omitted, a flat single-column form renders. */
|
|
14
|
+
tabs?: FormTab[];
|
|
15
|
+
/**
|
|
16
|
+
* Extra context merged under the live form data when evaluating
|
|
17
|
+
* predicates (label/hint/when/disabled). E.g. a table passes the
|
|
18
|
+
* original row so predicates can read non-edited columns.
|
|
19
|
+
*/
|
|
20
|
+
context?: Record<string, any>;
|
|
5
21
|
/** Submit button text */
|
|
6
22
|
submitText?: string;
|
|
7
23
|
/** Submit button loading text */
|
|
8
24
|
submitLoadingText?: string;
|
|
9
|
-
/** Show submit button */
|
|
25
|
+
/** Show the submit button */
|
|
10
26
|
showSubmit?: boolean;
|
|
27
|
+
/** Auto-switch to the first tab containing a validation error. */
|
|
28
|
+
autoErrorTab?: boolean;
|
|
11
29
|
}
|
|
12
|
-
|
|
13
|
-
type __VLS_Slots =
|
|
14
|
-
|
|
30
|
+
type __VLS_Props = Props;
|
|
31
|
+
type __VLS_Slots = Record<string, (props: any) => any>;
|
|
32
|
+
declare function goToErrorTab(): void;
|
|
33
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
34
|
+
/** v-model for the active tab index. */
|
|
35
|
+
"activeTab"?: number;
|
|
15
36
|
};
|
|
16
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
37
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
38
|
+
goToErrorTab: typeof goToErrorTab;
|
|
39
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
40
|
submit: () => any;
|
|
18
|
-
|
|
41
|
+
"update:activeTab": (value: number) => any;
|
|
42
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
43
|
onSubmit?: (() => any) | undefined;
|
|
44
|
+
"onUpdate:activeTab"?: ((value: number) => any) | undefined;
|
|
20
45
|
}>, {
|
|
21
46
|
submitText: string;
|
|
22
47
|
submitLoadingText: string;
|
|
23
48
|
showSubmit: boolean;
|
|
49
|
+
autoErrorTab: boolean;
|
|
24
50
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
51
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
26
52
|
export default _default;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { UseFormReturn } from "../../composables/useForm";
|
|
2
|
+
import type { FieldDefinition } from "../../types";
|
|
3
|
+
interface Props {
|
|
4
|
+
/** Form instance owning the repeater array */
|
|
5
|
+
form: UseFormReturn<any>;
|
|
6
|
+
/** The repeater field definition (provides sub-fields, limits, labels) */
|
|
7
|
+
field: FieldDefinition;
|
|
8
|
+
/** Dot path into form.data for the array (defaults to field.key) */
|
|
9
|
+
keyPath?: string;
|
|
10
|
+
/** Model passed to predicates from the parent context */
|
|
11
|
+
model?: any;
|
|
12
|
+
}
|
|
13
|
+
declare var __VLS_1: {
|
|
14
|
+
row: any;
|
|
15
|
+
index: number;
|
|
16
|
+
fields: FieldDefinition[];
|
|
17
|
+
remove: () => void;
|
|
18
|
+
path: string;
|
|
19
|
+
};
|
|
20
|
+
type __VLS_Slots = {} & {
|
|
21
|
+
row?: (props: typeof __VLS_1) => any;
|
|
22
|
+
};
|
|
23
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -147,40 +147,33 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
|
|
|
147
147
|
} & {
|
|
148
148
|
[x: string]: ((props: any) => any) | undefined;
|
|
149
149
|
} & {
|
|
150
|
-
[x: `
|
|
151
|
-
item: import("@vue/reactivity").DistributeRef<[T | null] extends [import("vue").Ref<any, any>] ? import("@vue/shared").IfAny<import("vue").Ref<any, any> & T, import("vue").Ref<import("vue").Ref<any, any> & T, import("vue").Ref<any, any> & T>, import("vue").Ref<any, any> & T> : import("vue").Ref<import("vue").UnwrapRef<T> | null, T | import("vue").UnwrapRef<T> | null>>;
|
|
152
|
-
tab: EditTab;
|
|
153
|
-
}) => any) | undefined;
|
|
154
|
-
} & {
|
|
155
|
-
[x: `tab-before(${string})`]: ((props: {
|
|
150
|
+
[x: `edit-value(${string})`]: ((props: {
|
|
156
151
|
item: import("@vue/reactivity").DistributeRef<[T | null] extends [import("vue").Ref<any, any>] ? import("@vue/shared").IfAny<import("vue").Ref<any, any> & T, import("vue").Ref<import("vue").Ref<any, any> & T, import("vue").Ref<any, any> & T>, import("vue").Ref<any, any> & T> : import("vue").Ref<import("vue").UnwrapRef<T> | null, T | import("vue").UnwrapRef<T> | null>>;
|
|
157
|
-
|
|
152
|
+
value: any;
|
|
153
|
+
update: any;
|
|
154
|
+
field: any;
|
|
158
155
|
}) => any) | undefined;
|
|
159
156
|
} & {
|
|
160
157
|
[x: `edit-span(${string})`]: ((props: {
|
|
161
158
|
item: import("@vue/reactivity").DistributeRef<[T | null] extends [import("vue").Ref<any, any>] ? import("@vue/shared").IfAny<import("vue").Ref<any, any> & T, import("vue").Ref<import("vue").Ref<any, any> & T, import("vue").Ref<any, any> & T>, import("vue").Ref<any, any> & T> : import("vue").Ref<import("vue").UnwrapRef<T> | null, T | import("vue").UnwrapRef<T> | null>>;
|
|
162
159
|
value: any;
|
|
163
|
-
update:
|
|
160
|
+
update: any;
|
|
164
161
|
close: () => void;
|
|
165
162
|
}) => any) | undefined;
|
|
166
163
|
} & {
|
|
167
|
-
[x: `
|
|
164
|
+
[x: `tab-content(${string})`]: ((props: {
|
|
168
165
|
item: import("@vue/reactivity").DistributeRef<[T | null] extends [import("vue").Ref<any, any>] ? import("@vue/shared").IfAny<import("vue").Ref<any, any> & T, import("vue").Ref<import("vue").Ref<any, any> & T, import("vue").Ref<any, any> & T>, import("vue").Ref<any, any> & T> : import("vue").Ref<import("vue").UnwrapRef<T> | null, T | import("vue").UnwrapRef<T> | null>>;
|
|
169
|
-
|
|
170
|
-
update: (v: any) => any;
|
|
171
|
-
field: any;
|
|
166
|
+
tab: any;
|
|
172
167
|
}) => any) | undefined;
|
|
173
168
|
} & {
|
|
174
|
-
[x: `
|
|
169
|
+
[x: `tab-before(${string})`]: ((props: {
|
|
175
170
|
item: import("@vue/reactivity").DistributeRef<[T | null] extends [import("vue").Ref<any, any>] ? import("@vue/shared").IfAny<import("vue").Ref<any, any> & T, import("vue").Ref<import("vue").Ref<any, any> & T, import("vue").Ref<any, any> & T>, import("vue").Ref<any, any> & T> : import("vue").Ref<import("vue").UnwrapRef<T> | null, T | import("vue").UnwrapRef<T> | null>>;
|
|
176
|
-
|
|
177
|
-
update: (v: any) => any;
|
|
178
|
-
field: any;
|
|
171
|
+
tab: any;
|
|
179
172
|
}) => any) | undefined;
|
|
180
173
|
} & {
|
|
181
174
|
[x: `tab-after(${string})`]: ((props: {
|
|
182
175
|
item: import("@vue/reactivity").DistributeRef<[T | null] extends [import("vue").Ref<any, any>] ? import("@vue/shared").IfAny<import("vue").Ref<any, any> & T, import("vue").Ref<import("vue").Ref<any, any> & T, import("vue").Ref<any, any> & T>, import("vue").Ref<any, any> & T> : import("vue").Ref<import("vue").UnwrapRef<T> | null, T | import("vue").UnwrapRef<T> | null>>;
|
|
183
|
-
tab:
|
|
176
|
+
tab: any;
|
|
184
177
|
}) => any) | undefined;
|
|
185
178
|
} & {
|
|
186
179
|
header?: (props: {}) => any;
|