@profitliga/ui 1.2.74 → 1.2.76
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/DatePicker/DatePickerCalendar.vue.d.ts +6 -1
- package/dist/components/Image/useImageModal.d.ts +2 -0
- package/dist/components/InputText/InputText.vue.d.ts +2 -0
- package/dist/components/index.js +1058 -1053
- package/dist/ui.css +1 -1
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -28,6 +28,7 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
|
28
28
|
blur: (value: FocusEvent) => any;
|
|
29
29
|
focus: (value: FocusEvent) => any;
|
|
30
30
|
paste: (value: ClipboardEvent) => any;
|
|
31
|
+
enter: (value: Event) => any;
|
|
31
32
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
32
33
|
onInput?: ((value: Event) => any) | undefined;
|
|
33
34
|
onClear?: (() => any) | undefined;
|
|
@@ -35,6 +36,7 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
|
35
36
|
onBlur?: ((value: FocusEvent) => any) | undefined;
|
|
36
37
|
onFocus?: ((value: FocusEvent) => any) | undefined;
|
|
37
38
|
onPaste?: ((value: ClipboardEvent) => any) | undefined;
|
|
39
|
+
onEnter?: ((value: Event) => any) | undefined;
|
|
38
40
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
39
41
|
inputRef: HTMLInputElement;
|
|
40
42
|
}, HTMLDivElement>;
|