@profitliga/ui 1.2.75 → 1.2.77
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/ConfirmDialog/ConfirmDialog.types.d.ts +1 -0
- package/dist/components/DataTable/DataTable.vue.d.ts +24 -24
- package/dist/components/DatePicker/DatePickerCalendar.vue.d.ts +6 -1
- package/dist/components/Image/useImageModal.d.ts +2 -0
- package/dist/components/index.js +925 -921
- package/dist/ui.css +1 -1
- package/dist/utils/index.js +85 -82
- package/package.json +1 -1
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
import { RowSelectionState, SortingState } from '@tanstack/vue-table';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
2
|
+
import { IDataTableProps } from './DataTable.types';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
|
+
type __VLS_Props = IDataTableProps<T>;
|
|
5
|
+
type __VLS_PublicProps = {
|
|
6
|
+
'page'?: number;
|
|
7
|
+
'rows'?: number;
|
|
8
|
+
'rowSelection'?: RowSelectionState;
|
|
9
|
+
} & __VLS_Props;
|
|
10
|
+
declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
11
|
+
"update:page": (value: number) => any;
|
|
12
|
+
"update:rows": (value: number) => any;
|
|
13
|
+
"update:rowSelection": (value: RowSelectionState) => any;
|
|
14
|
+
} & {
|
|
15
|
+
"update:sort": (value: SortingState) => any;
|
|
16
|
+
"update:selected": (value: RowSelectionState) => any;
|
|
17
|
+
"update:page": (value: number) => any;
|
|
18
|
+
"update:rows": (value: number) => any;
|
|
19
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
20
|
+
"onUpdate:sort"?: ((value: SortingState) => any) | undefined;
|
|
21
|
+
"onUpdate:selected"?: ((value: RowSelectionState) => any) | undefined;
|
|
22
|
+
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
23
|
+
"onUpdate:rows"?: ((value: number) => any) | undefined;
|
|
24
|
+
"onUpdate:rowSelection"?: ((value: RowSelectionState) => any) | undefined;
|
|
25
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
23
26
|
export default _default;
|
|
24
|
-
type __VLS_PrettifyLocal<T> = {
|
|
25
|
-
[K in keyof T]: T[K];
|
|
26
|
-
} & {};
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
+
import { Grid } from 'reka-ui/date';
|
|
2
|
+
import { DateValue } from 'reka-ui';
|
|
1
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
4
|
declare function __VLS_template(): {
|
|
3
5
|
attrs: Partial<{}>;
|
|
4
6
|
slots: {
|
|
5
|
-
default?(_:
|
|
7
|
+
default?(_: {
|
|
8
|
+
grid: Grid<DateValue>[];
|
|
9
|
+
weekDays: string[];
|
|
10
|
+
}): any;
|
|
6
11
|
};
|
|
7
12
|
refs: {};
|
|
8
13
|
rootEl: any;
|
|
@@ -6,10 +6,12 @@ export declare function useImageModal(): {
|
|
|
6
6
|
readonly isOpen: boolean;
|
|
7
7
|
readonly src: string | null;
|
|
8
8
|
readonly alt: string | null;
|
|
9
|
+
readonly zIndex?: number | undefined;
|
|
9
10
|
}, {
|
|
10
11
|
readonly isOpen: boolean;
|
|
11
12
|
readonly src: string | null;
|
|
12
13
|
readonly alt: string | null;
|
|
14
|
+
readonly zIndex?: number | undefined;
|
|
13
15
|
}>>;
|
|
14
16
|
open: typeof open;
|
|
15
17
|
close: typeof close;
|