@v1nt1248/3nclient-lib 0.1.30 → 0.1.33
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/ui3n-badge/ui3n-badge.vue.d.ts +7 -2
- package/dist/components/ui3n-breadcrumbs/ui3n-breadcrumb.vue.d.ts +7 -2
- package/dist/components/ui3n-breadcrumbs/ui3n-breadcrumbs.vue.d.ts +7 -2
- package/dist/components/ui3n-button/ui3n-button.vue.d.ts +11 -5
- package/dist/components/ui3n-checkbox/ui3n-checkbox.vue.d.ts +9 -2
- package/dist/components/ui3n-chip/ui3n-chip.vue.d.ts +7 -2
- package/dist/components/ui3n-dialog/ui3n-dialog.vue.d.ts +6 -13
- package/dist/components/ui3n-drop-files/ui3n-drop-files.vue.d.ts +9 -2
- package/dist/components/ui3n-list/ui3n-list.vue.d.ts +6 -11
- package/dist/components/ui3n-menu/ui3n-menu.vue.d.ts +11 -2
- package/dist/components/ui3n-notification/ui3n-notification.vue.d.ts +1 -1
- package/dist/components/ui3n-radio-group/ui3n-radio-group.vue.d.ts +7 -2
- package/dist/components/ui3n-radio-group/ui3n-radio.vue.d.ts +9 -2
- package/dist/components/ui3n-switch/ui3n-switch.vue.d.ts +9 -2
- package/dist/components/ui3n-table/ui3n-table.vue.d.ts +6 -9
- package/dist/components/ui3n-tabs/ui3n-tabs.vue.d.ts +9 -2
- package/dist/components/ui3n-tooltip/ui3n-tooltip.vue.d.ts +11 -2
- package/dist/components/ui3n-virtual-scroll/ui3n-virtual-scroll.vue.d.ts +4 -4
- package/dist/style.css +1 -1
- package/dist/ui3n-components.js +5081 -5205
- package/dist/ui3n-plugins.js +2921 -3069
- package/dist/ui3n-utils.js +1986 -2137
- package/dist/utils/index.d.ts +4 -1
- package/dist/utils/{sqlite-on-3nstorage/synced.d.ts → processes/named-procs.d.ts} +4 -34
- package/dist/utils/processes/single.d.ts +56 -0
- package/dist/utils/processes/sleep.d.ts +1 -0
- package/dist/utils/sqlite-on-3nstorage/index.d.ts +1 -1
- package/package.json +24 -24
- package/src/components/ui3n-button/ui3n-button.vue +2 -2
- package/src/components/ui3n-checkbox/ui3n-checkbox.vue +4 -4
- package/src/components/ui3n-chip/ui3n-chip.vue +1 -3
- package/src/components/ui3n-dialog/ui3n-dialog.vue +5 -4
- package/src/components/ui3n-input/ui3n-input.vue +0 -2
- package/src/components/ui3n-menu/ui3n-menu.vue +2 -2
- package/src/components/ui3n-notification/ui3n-notification.vue +1 -1
- package/src/components/ui3n-radio-group/ui3n-radio.vue +2 -2
- package/src/components/ui3n-table/composables/useTable.ts +2 -1
- package/src/components/ui3n-table/ui3n-table.vue +2 -2
- package/src/components/ui3n-tabs/ui3n-tabs.vue +2 -2
- package/src/components/ui3n-text/ui3n-text.vue +0 -2
- package/src/components/ui3n-tooltip/ui3n-tooltip.vue +1 -1
- package/dist/utils/processes.d.ts +0 -136
- /package/dist/utils/{sqlite-on-3nstorage → processes}/deferred.d.ts +0 -0
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import { Ui3nBadgeProps } from './types';
|
|
2
2
|
declare function __VLS_template(): {
|
|
3
|
-
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
attrs: Partial<{}>;
|
|
4
8
|
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
5
10
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nBadgeProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Ui3nBadgeProps> & Readonly<{}>, {
|
|
6
11
|
color: string;
|
|
7
12
|
textColor: string;
|
|
@@ -9,7 +14,7 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nBadgeProps, {},
|
|
|
9
14
|
position: "right-top" | "right-bottom" | "left-top" | "left-bottom";
|
|
10
15
|
dot: boolean;
|
|
11
16
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
17
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
13
18
|
export default _default;
|
|
14
19
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
15
20
|
new (): {
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Ui3nBreadcrumbProps, Ui3nBreadcrumbSlots } from './types';
|
|
2
|
-
declare function __VLS_template():
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
slots: Readonly<Ui3nBreadcrumbSlots> & Ui3nBreadcrumbSlots;
|
|
4
|
+
refs: {};
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
};
|
|
7
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
3
8
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nBreadcrumbProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
9
|
click: (value: Event) => any;
|
|
5
10
|
}, string, import('vue').PublicProps, Readonly<Ui3nBreadcrumbProps> & Readonly<{
|
|
@@ -9,7 +14,7 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nBreadcrumbProps
|
|
|
9
14
|
separator: string;
|
|
10
15
|
isActive: boolean;
|
|
11
16
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
17
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
13
18
|
export default _default;
|
|
14
19
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
15
20
|
new (): {
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
import { Ui3nBreadcrumbsProps } from './types';
|
|
2
2
|
declare function __VLS_template(): {
|
|
3
|
-
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
attrs: Partial<{}>;
|
|
4
8
|
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
5
10
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nBreadcrumbsProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Ui3nBreadcrumbsProps> & Readonly<{}>, {
|
|
6
11
|
disabled: boolean;
|
|
7
12
|
separator: string;
|
|
8
13
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
9
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
14
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
10
15
|
export default _default;
|
|
11
16
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
12
17
|
new (): {
|
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
import { Ui3nButtonProps } from './types';
|
|
2
2
|
declare function __VLS_template(): {
|
|
3
|
-
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {
|
|
7
|
+
buttonEl: HTMLButtonElement;
|
|
8
|
+
};
|
|
9
|
+
attrs: Partial<{}>;
|
|
4
10
|
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
5
12
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
6
13
|
click: (value: Event) => any;
|
|
14
|
+
enter: (value: HTMLButtonElement) => any;
|
|
7
15
|
blur: (value: Event) => any;
|
|
8
16
|
focus: (value: Event) => any;
|
|
9
|
-
enter: (value: HTMLButtonElement) => any;
|
|
10
17
|
init: (value: HTMLButtonElement) => any;
|
|
11
18
|
}, string, import('vue').PublicProps, Readonly<Ui3nButtonProps> & Readonly<{
|
|
12
19
|
onClick?: ((value: Event) => any) | undefined;
|
|
20
|
+
onEnter?: ((value: HTMLButtonElement) => any) | undefined;
|
|
13
21
|
onBlur?: ((value: Event) => any) | undefined;
|
|
14
22
|
onFocus?: ((value: Event) => any) | undefined;
|
|
15
|
-
onEnter?: ((value: HTMLButtonElement) => any) | undefined;
|
|
16
23
|
onInit?: ((value: HTMLButtonElement) => any) | undefined;
|
|
17
24
|
}>, {
|
|
18
25
|
type: "primary" | "secondary" | "tertiary" | "icon" | "custom";
|
|
@@ -20,9 +27,8 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nButtonProps, {}
|
|
|
20
27
|
size: "regular" | "small";
|
|
21
28
|
iconPosition: "left" | "right";
|
|
22
29
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
30
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
31
|
export default _default;
|
|
25
|
-
|
|
26
32
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
33
|
new (): {
|
|
28
34
|
$slots: S;
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { Ui3nCheckboxProps, Ui3nCheckboxSlots, Ui3nCheckboxValue } from './types';
|
|
2
|
-
declare function __VLS_template():
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
slots: Readonly<Ui3nCheckboxSlots> & Ui3nCheckboxSlots;
|
|
4
|
+
refs: {
|
|
5
|
+
checkboxEl: HTMLDivElement;
|
|
6
|
+
};
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
3
10
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nCheckboxProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
11
|
change: (value: Ui3nCheckboxValue) => any;
|
|
5
12
|
"update:modelValue": (value: Ui3nCheckboxValue) => any;
|
|
@@ -15,7 +22,7 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nCheckboxProps,
|
|
|
15
22
|
uncheckedValue: Ui3nCheckboxValue;
|
|
16
23
|
indeterminate: boolean;
|
|
17
24
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
25
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
19
26
|
export default _default;
|
|
20
27
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
21
28
|
new (): {
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Ui3nChipProps, Ui3nChipSlots } from './types';
|
|
2
|
-
declare function __VLS_template():
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
slots: Readonly<Ui3nChipSlots> & Ui3nChipSlots;
|
|
4
|
+
refs: {};
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
};
|
|
7
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
3
8
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nChipProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
9
|
close: () => any;
|
|
5
10
|
}, string, import('vue').PublicProps, Readonly<Ui3nChipProps> & Readonly<{
|
|
@@ -14,7 +19,7 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nChipProps, {},
|
|
|
14
19
|
closeable: boolean;
|
|
15
20
|
textSize: number | string;
|
|
16
21
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
18
23
|
export default _default;
|
|
19
24
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
20
25
|
new (): {
|
|
@@ -1,31 +1,24 @@
|
|
|
1
1
|
import { Component } from 'vue';
|
|
2
2
|
import { Ui3nDialogComponentProps, Ui3nDialogComponentEmits } from './types';
|
|
3
|
-
declare const _default: <T extends Component, P extends Record<string, unknown>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?:
|
|
4
|
-
props:
|
|
3
|
+
declare const _default: <T extends Component, P extends Record<string, unknown>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
4
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
5
|
readonly onCancel?: ((value?: any) => any) | undefined;
|
|
6
6
|
readonly onClose?: ((value?: any) => any) | undefined;
|
|
7
7
|
readonly onOpen?: ((value?: any) => any) | undefined;
|
|
8
8
|
readonly "onBefore-close"?: ((value?: any) => any) | undefined;
|
|
9
9
|
readonly onConfirm?: ((value?: any) => any) | undefined;
|
|
10
10
|
readonly "onClick-overlay"?: ((value?: any) => any) | undefined;
|
|
11
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps &
|
|
12
|
-
onCancel?: ((value?: any) => any) | undefined;
|
|
13
|
-
onClose?: ((value?: any) => any) | undefined;
|
|
14
|
-
onOpen?: ((value?: any) => any) | undefined;
|
|
15
|
-
"onBefore-close"?: ((value?: any) => any) | undefined;
|
|
16
|
-
onConfirm?: ((value?: any) => any) | undefined;
|
|
17
|
-
"onClick-overlay"?: ((value?: any) => any) | undefined;
|
|
18
|
-
}>, never>, "onClose" | "onCancel" | "onOpen" | "onBefore-close" | "onConfirm" | "onClick-overlay"> & Ui3nDialogComponentProps<T, P>> & import('vue').PublicProps;
|
|
11
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onClose" | "onCancel" | "onOpen" | "onBefore-close" | "onConfirm" | "onClick-overlay"> & Ui3nDialogComponentProps<T, P>> & import('vue').PublicProps;
|
|
19
12
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
20
13
|
attrs: any;
|
|
21
|
-
slots:
|
|
22
|
-
emit: Ui3nDialogComponentEmits
|
|
14
|
+
slots: {};
|
|
15
|
+
emit: Ui3nDialogComponentEmits;
|
|
23
16
|
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
24
17
|
[key: string]: any;
|
|
25
18
|
}> & {
|
|
26
19
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
27
20
|
};
|
|
28
21
|
export default _default;
|
|
29
|
-
type
|
|
22
|
+
type __VLS_PrettifyLocal<T> = {
|
|
30
23
|
[K in keyof T]: T[K];
|
|
31
24
|
} & {};
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { Ui3nDropFilesProps, Ui3nDropFilesSlots } from './types';
|
|
2
|
-
declare function __VLS_template():
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
slots: Readonly<Ui3nDropFilesSlots> & Ui3nDropFilesSlots;
|
|
4
|
+
refs: {
|
|
5
|
+
wrapperElement: HTMLDivElement;
|
|
6
|
+
};
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
3
10
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nDropFilesProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
11
|
select: (fileList: FileList) => any;
|
|
5
12
|
}, string, import('vue').PublicProps, Readonly<Ui3nDropFilesProps> & Readonly<{
|
|
@@ -9,7 +16,7 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nDropFilesProps,
|
|
|
9
16
|
text: string;
|
|
10
17
|
additionalText: string;
|
|
11
18
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
19
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
13
20
|
export default _default;
|
|
14
21
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
15
22
|
new (): {
|
|
@@ -1,28 +1,23 @@
|
|
|
1
1
|
import { Ui3nListEmits, Ui3nListProps, Ui3nListSlots } from './types';
|
|
2
2
|
declare const _default: <T extends {
|
|
3
3
|
id?: string;
|
|
4
|
-
}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?:
|
|
5
|
-
props:
|
|
4
|
+
}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
5
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
6
6
|
readonly onSelect?: ((value: {
|
|
7
7
|
value: T;
|
|
8
8
|
index: number;
|
|
9
9
|
}) => any) | undefined;
|
|
10
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps &
|
|
11
|
-
onSelect?: ((value: {
|
|
12
|
-
value: T;
|
|
13
|
-
index: number;
|
|
14
|
-
}) => any) | undefined;
|
|
15
|
-
}>, never>, "onSelect"> & Ui3nListProps<T>> & import('vue').PublicProps;
|
|
10
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onSelect"> & Ui3nListProps<T>> & import('vue').PublicProps;
|
|
16
11
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
17
12
|
attrs: any;
|
|
18
|
-
slots:
|
|
19
|
-
emit: Ui3nListEmits<T
|
|
13
|
+
slots: Readonly<Ui3nListSlots<T>> & Ui3nListSlots<T>;
|
|
14
|
+
emit: Ui3nListEmits<T>;
|
|
20
15
|
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
21
16
|
[key: string]: any;
|
|
22
17
|
}> & {
|
|
23
18
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
24
19
|
};
|
|
25
20
|
export default _default;
|
|
26
|
-
type
|
|
21
|
+
type __VLS_PrettifyLocal<T> = {
|
|
27
22
|
[K in keyof T]: T[K];
|
|
28
23
|
} & {};
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
import { Ui3nMenuProps, Ui3nMenuSlots } from './types';
|
|
2
|
-
declare function __VLS_template():
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
slots: Readonly<Ui3nMenuSlots> & Ui3nMenuSlots;
|
|
4
|
+
refs: {
|
|
5
|
+
menuElement: HTMLDivElement;
|
|
6
|
+
menuTriggerElement: HTMLDivElement;
|
|
7
|
+
menuContentElement: HTMLDivElement;
|
|
8
|
+
};
|
|
9
|
+
attrs: Partial<{}>;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
3
12
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nMenuProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
13
|
close: () => any;
|
|
5
14
|
open: () => any;
|
|
@@ -20,7 +29,7 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nMenuProps, {},
|
|
|
20
29
|
closeOnClick: boolean;
|
|
21
30
|
closeOnClickOutside: boolean;
|
|
22
31
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
32
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
33
|
export default _default;
|
|
25
34
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
35
|
new (): {
|
|
@@ -2,8 +2,8 @@ import { Ui3nNotificationProps } from './types';
|
|
|
2
2
|
declare const _default: import('vue').DefineComponent<Ui3nNotificationProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Ui3nNotificationProps> & Readonly<{}>, {
|
|
3
3
|
type: "success" | "warning" | "info" | "error";
|
|
4
4
|
duration: number;
|
|
5
|
-
onClose: () => void;
|
|
6
5
|
withIcon: boolean;
|
|
6
|
+
onClose: () => void;
|
|
7
7
|
onOpen: () => void;
|
|
8
8
|
position: "left" | "center" | "right";
|
|
9
9
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Ui3nRadioGroupProps, Ui3nRadioGroupSlots, Ui3nRadioValue } from './types';
|
|
2
|
-
declare function __VLS_template():
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
slots: Readonly<Ui3nRadioGroupSlots> & Ui3nRadioGroupSlots;
|
|
4
|
+
refs: {};
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
};
|
|
7
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
3
8
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nRadioGroupProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
9
|
change: (value: Ui3nRadioValue) => any;
|
|
5
10
|
"update:modelValue": (value: Ui3nRadioValue) => any;
|
|
@@ -10,7 +15,7 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nRadioGroupProps
|
|
|
10
15
|
disabled: boolean;
|
|
11
16
|
direction: "horizontal" | "vertical";
|
|
12
17
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
14
19
|
export default _default;
|
|
15
20
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
16
21
|
new (): {
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { Ui3nRadioProps, Ui3nRadioSlots, Ui3nRadioValue } from './types';
|
|
2
|
-
declare function __VLS_template():
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
slots: Readonly<Ui3nRadioSlots> & Ui3nRadioSlots;
|
|
4
|
+
refs: {
|
|
5
|
+
radioEl: HTMLDivElement;
|
|
6
|
+
};
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
3
10
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nRadioProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
11
|
change: (value: Ui3nRadioValue) => any;
|
|
5
12
|
"update:modelValue": (value: Ui3nRadioValue) => any;
|
|
@@ -14,7 +21,7 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nRadioProps, {},
|
|
|
14
21
|
checkedValue: Ui3nRadioValue;
|
|
15
22
|
uncheckedValue: Ui3nRadioValue;
|
|
16
23
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
24
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
18
25
|
export default _default;
|
|
19
26
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
20
27
|
new (): {
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { Ui3nSwitchProps, Ui3nSwitchSlots } from './types';
|
|
2
|
-
declare function __VLS_template():
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
slots: Readonly<Ui3nSwitchSlots> & Ui3nSwitchSlots;
|
|
4
|
+
refs: {
|
|
5
|
+
switchEl: HTMLDivElement;
|
|
6
|
+
};
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
3
10
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nSwitchProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
11
|
change: (value: boolean) => any;
|
|
5
12
|
"update:modelValue": (value: boolean) => any;
|
|
@@ -11,7 +18,7 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nSwitchProps, {}
|
|
|
11
18
|
disabled: boolean;
|
|
12
19
|
size: number | string;
|
|
13
20
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
21
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
15
22
|
export default _default;
|
|
16
23
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
17
24
|
new (): {
|
|
@@ -1,22 +1,19 @@
|
|
|
1
1
|
import { Ui3nTableBodyBaseItem, Ui3nTableEmits, Ui3nTableProps } from './types';
|
|
2
|
-
declare const _default: <T extends Ui3nTableBodyBaseItem>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?:
|
|
3
|
-
props:
|
|
2
|
+
declare const _default: <T extends Ui3nTableBodyBaseItem>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
4
4
|
readonly "onChange:sort"?: ((val: import('./types').Ui3nTableSort<T>) => any) | undefined;
|
|
5
5
|
readonly "onSelect:row"?: ((val: T[]) => any) | undefined;
|
|
6
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps &
|
|
7
|
-
"onChange:sort"?: ((val: import('./types').Ui3nTableSort<T>) => any) | undefined;
|
|
8
|
-
"onSelect:row"?: ((val: T[]) => any) | undefined;
|
|
9
|
-
}>, never>, "onChange:sort" | "onSelect:row"> & Ui3nTableProps<T>> & import('vue').PublicProps;
|
|
6
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onChange:sort" | "onSelect:row"> & Ui3nTableProps<T>> & import('vue').PublicProps;
|
|
10
7
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
11
8
|
attrs: any;
|
|
12
|
-
slots:
|
|
13
|
-
emit: Ui3nTableEmits<T
|
|
9
|
+
slots: Readonly<import('./types').Ui3nTableGroupActionsSlot & import('./types').Ui3nTableHeaderCellSlot<T, string & keyof T> & import('./types').Ui3nTableBodyRowSlot<T> & import('./types').Ui3nTableBodyRowCellSlot<T, string & keyof T>> & import('./types').Ui3nTableGroupActionsSlot & import('./types').Ui3nTableHeaderCellSlot<T, string & keyof T> & import('./types').Ui3nTableBodyRowSlot<T> & import('./types').Ui3nTableBodyRowCellSlot<T, string & keyof T>;
|
|
10
|
+
emit: Ui3nTableEmits<T>;
|
|
14
11
|
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
15
12
|
[key: string]: any;
|
|
16
13
|
}> & {
|
|
17
14
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
18
15
|
};
|
|
19
16
|
export default _default;
|
|
20
|
-
type
|
|
17
|
+
type __VLS_PrettifyLocal<T> = {
|
|
21
18
|
[K in keyof T]: T[K];
|
|
22
19
|
} & {};
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { Ui3nTabsProps, Ui3nTabsSlots } from './types';
|
|
2
|
-
declare function __VLS_template():
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
slots: Readonly<Ui3nTabsSlots> & Ui3nTabsSlots;
|
|
4
|
+
refs: {
|
|
5
|
+
tabs: HTMLDivElement;
|
|
6
|
+
};
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
3
10
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nTabsProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
11
|
"update:modelValue": (val: number) => any;
|
|
5
12
|
}, string, import('vue').PublicProps, Readonly<Ui3nTabsProps> & Readonly<{
|
|
@@ -13,7 +20,7 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nTabsProps, {},
|
|
|
13
20
|
indicatorSize: number | string;
|
|
14
21
|
indicatorPosition: "normal" | "reverse";
|
|
15
22
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
24
|
export default _default;
|
|
18
25
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
26
|
new (): {
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
import { Ui3nTooltipProps, Ui3nTooltipSlots } from './types';
|
|
2
|
-
declare function __VLS_template():
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
slots: Readonly<Ui3nTooltipSlots> & Ui3nTooltipSlots;
|
|
4
|
+
refs: {
|
|
5
|
+
referenceEl: HTMLDivElement;
|
|
6
|
+
floatingEl: HTMLDivElement;
|
|
7
|
+
floatingArrowEl: HTMLDivElement;
|
|
8
|
+
};
|
|
9
|
+
attrs: Partial<{}>;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
3
12
|
declare const __VLS_component: import('vue').DefineComponent<Ui3nTooltipProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
13
|
close: () => any;
|
|
5
14
|
"update:modelValue": (value: boolean) => any;
|
|
@@ -21,7 +30,7 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nTooltipProps, {
|
|
|
21
30
|
placement: import('./types').Ui3nTooltipPlacement;
|
|
22
31
|
trigger: "click" | "hover" | "manual";
|
|
23
32
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
24
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
33
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
34
|
export default _default;
|
|
26
35
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
36
|
new (): {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Ui3nVirtualScrollProps, Ui3nVirtualScrollSlots } from './types';
|
|
2
2
|
declare const _default: <T extends {
|
|
3
3
|
id?: string;
|
|
4
|
-
}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?:
|
|
5
|
-
props:
|
|
4
|
+
}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
5
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, never> & Ui3nVirtualScrollProps<T>> & import('vue').PublicProps;
|
|
6
6
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
7
7
|
attrs: any;
|
|
8
|
-
slots:
|
|
8
|
+
slots: Readonly<Ui3nVirtualScrollSlots<T>> & Ui3nVirtualScrollSlots<T>;
|
|
9
9
|
emit: {};
|
|
10
10
|
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
11
11
|
[key: string]: any;
|
|
@@ -13,6 +13,6 @@ declare const _default: <T extends {
|
|
|
13
13
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
14
14
|
};
|
|
15
15
|
export default _default;
|
|
16
|
-
type
|
|
16
|
+
type __VLS_PrettifyLocal<T> = {
|
|
17
17
|
[K in keyof T]: T[K];
|
|
18
18
|
} & {};
|