@omnitend/dashboard-for-laravel 0.5.0 → 0.6.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/DButton.vue.d.ts +2 -3
- package/dist/components/base/DTable.vue.d.ts +11 -3
- package/dist/dashboard-for-laravel.js +29201 -14558
- package/dist/dashboard-for-laravel.js.map +1 -1
- package/dist/dashboard-for-laravel.umd.cjs +11 -8
- package/dist/dashboard-for-laravel.umd.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/style.css +1 -1
- package/docs/public/api-reference.json +13 -49
- package/docs/public/docs-map.md +1 -1
- package/docs/public/llms.txt +2 -4
- package/package.json +3 -3
- package/resources/js/components/base/DButton.vue +2 -3
- package/resources/js/components/base/DTable.vue +39 -3
- package/resources/js/components/base/DToaster.vue +5 -3
- package/resources/js/index.ts +6 -2
- package/dist/components/base/DCarousel.vue.d.ts +0 -12
- package/dist/components/base/DCarouselSlide.vue.d.ts +0 -12
- package/resources/js/components/base/DCarousel.vue +0 -21
- package/resources/js/components/base/DCarouselSlide.vue +0 -14
|
@@ -7,8 +7,8 @@ interface Props {
|
|
|
7
7
|
*/
|
|
8
8
|
variant?: ButtonVariant | LinkVariant | null;
|
|
9
9
|
/**
|
|
10
|
-
* The size of the button
|
|
11
|
-
*
|
|
10
|
+
* The size of the button. Omit for the default (medium) size —
|
|
11
|
+
* bootstrap-vue-next 0.45 removed the no-op `'md'` value from `Size`.
|
|
12
12
|
*/
|
|
13
13
|
size?: Size;
|
|
14
14
|
}
|
|
@@ -18,7 +18,6 @@ type __VLS_Slots = {} & {
|
|
|
18
18
|
};
|
|
19
19
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
20
20
|
variant: ButtonVariant | LinkVariant | null;
|
|
21
|
-
size: Size;
|
|
22
21
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
22
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
24
23
|
export default _default;
|
|
@@ -1,8 +1,16 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
/**
|
|
3
|
+
* Column definitions. Declared as a prop (rather than passed through
|
|
4
|
+
* `$attrs`) so we can shield the field `formatter` signature across
|
|
5
|
+
* bootstrap-vue-next versions.
|
|
6
|
+
*/
|
|
7
|
+
fields?: any[];
|
|
8
|
+
};
|
|
1
9
|
declare var __VLS_16: string | number, __VLS_17: any;
|
|
2
10
|
type __VLS_Slots = {} & {
|
|
3
11
|
[K in NonNullable<typeof __VLS_16>]?: (props: typeof __VLS_17) => any;
|
|
4
12
|
};
|
|
5
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
6
14
|
refresh: () => void;
|
|
7
15
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
16
|
"update:sortBy": (...args: any[]) => void;
|
|
@@ -10,13 +18,13 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
10
18
|
"update:busy": (...args: any[]) => void;
|
|
11
19
|
sorted: (...args: any[]) => void;
|
|
12
20
|
rowClicked: (...args: any[]) => void;
|
|
13
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
22
|
"onUpdate:sortBy"?: ((...args: any[]) => any) | undefined;
|
|
15
23
|
"onUpdate:currentPage"?: ((...args: any[]) => any) | undefined;
|
|
16
24
|
"onUpdate:busy"?: ((...args: any[]) => any) | undefined;
|
|
17
25
|
onSorted?: ((...args: any[]) => any) | undefined;
|
|
18
26
|
onRowClicked?: ((...args: any[]) => any) | undefined;
|
|
19
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions,
|
|
27
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
28
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
21
29
|
export default _default;
|
|
22
30
|
type __VLS_WithSlots<T, S> = T & {
|