@rotki/ui-library 1.6.0 → 1.7.1
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/README.md +1 -1
- package/dist/components/accordions/accordion/RuiAccordion.vue.d.ts +2 -1
- package/dist/components/alerts/RuiAlert.vue.d.ts +2 -1
- package/dist/components/buttons/button/RuiButton.vue.d.ts +1 -1
- package/dist/components/buttons/button-group/RuiButtonGroup.vue.d.ts +1 -1
- package/dist/components/cards/RuiCard.vue.d.ts +4 -1
- package/dist/components/cards/RuiCardHeader.vue.d.ts +2 -1
- package/dist/components/chips/RuiChip.vue.d.ts +2 -1
- package/dist/components/color-picker/RuiColorBoard.vue.d.ts +4 -5
- package/dist/components/color-picker/RuiColorDisplay.vue.d.ts +3 -4
- package/dist/components/color-picker/RuiColorHue.vue.d.ts +2 -2
- package/dist/components/color-picker/RuiColorInput.vue.d.ts +2 -2
- package/dist/components/forms/auto-complete/RuiAutoComplete.vue.d.ts +4 -7
- package/dist/components/forms/checkbox/RuiCheckbox.vue.d.ts +2 -1
- package/dist/components/forms/radio-button/radio/RuiRadio.vue.d.ts +3 -5
- package/dist/components/forms/radio-button/radio-group/RuiRadioGroup.vue.d.ts +3 -5
- package/dist/components/forms/revealable-text-field/RuiRevealableTextField.vue.d.ts +6 -5
- package/dist/components/forms/select/RuiMenuSelect.vue.d.ts +3 -5
- package/dist/components/forms/switch/RuiSwitch.vue.d.ts +2 -1
- package/dist/components/forms/text-area/RuiTextArea.vue.d.ts +6 -5
- package/dist/components/forms/text-field/RuiTextField.vue.d.ts +6 -5
- package/dist/components/helpers/RuiFormTextDetail.vue.d.ts +3 -6
- package/dist/components/icons/RuiIcon.vue.d.ts +1 -1
- package/dist/components/index.es.js +1440 -1433
- package/dist/components/loaders/RuiSkeletonBase.vue.d.ts +1 -1
- package/dist/components/logos/RuiLogo.vue.d.ts +1 -1
- package/dist/components/overlays/badge/RuiBadge.vue.d.ts +3 -2
- package/dist/components/overlays/bottom-sheet/RuiBottomSheet.vue.d.ts +2 -1
- package/dist/components/overlays/dialog/RuiDialog.vue.d.ts +6 -1
- package/dist/components/overlays/menu/RuiMenu.vue.d.ts +3 -2
- package/dist/components/overlays/navigation-drawer/RuiNavigationDrawer.vue.d.ts +2 -1
- package/dist/components/overlays/notification/RuiNotification.vue.d.ts +2 -1
- package/dist/components/overlays/tooltip/RuiTooltip.vue.d.ts +3 -2
- package/dist/components/progress/RuiProgress.vue.d.ts +1 -1
- package/dist/components/steppers/RuiFooterStepper.vue.d.ts +1 -1
- package/dist/components/steppers/RuiStepper.vue.d.ts +3 -2
- package/dist/components/steppers/RuiStepperCustomIcon.vue.d.ts +4 -6
- package/dist/components/steppers/RuiStepperIcon.vue.d.ts +4 -6
- package/dist/components/tables/RuiDataTable.vue.d.ts +1 -1
- package/dist/components/tables/RuiExpandButton.vue.d.ts +2 -1
- package/dist/components/tables/RuiTableHead.vue.d.ts +1 -1
- package/dist/components/tables/RuiTablePagination.vue.d.ts +1 -1
- package/dist/components/tabs/tab/RuiTab.vue.d.ts +2 -1
- package/dist/components/tabs/tab-item/RuiTabItem.vue.d.ts +3 -2
- package/dist/components/tabs/tab-items/RuiTabItems.vue.d.ts +3 -5
- package/dist/components/tabs/tabs/RuiTabs.vue.d.ts +1 -1
- package/dist/composables/{index--ZwAZVMb.js → index-Q1RSg-Av.js} +2 -2
- package/dist/composables/index.es.js +1 -1
- package/dist/icons/icons_1.d.ts +32 -32
- package/dist/icons/icons_1.es.js +1089 -1089
- package/dist/icons/icons_2.d.ts +44 -44
- package/dist/icons/icons_2.es.js +1092 -1092
- package/dist/icons/icons_3.d.ts +54 -54
- package/dist/icons/icons_3.es.js +1072 -1072
- package/dist/icons/icons_4.d.ts +68 -68
- package/dist/icons/icons_4.es.js +1137 -1137
- package/dist/icons/icons_5.d.ts +118 -118
- package/dist/icons/icons_5.es.js +1239 -1239
- package/dist/icons/icons_6.d.ts +126 -20
- package/dist/icons/icons_6.es.js +1251 -827
- package/dist/icons/icons_7.d.ts +21 -0
- package/dist/icons/icons_7.es.js +83 -0
- package/dist/icons/index.d.ts +2 -1
- package/dist/icons/index.es.js +3001 -2874
- package/dist/index.es.js +3010 -2883
- package/dist/style.css +1 -1
- package/dist/web-types.json +118 -11
- package/package.json +39 -39
package/README.md
CHANGED
|
@@ -6,6 +6,7 @@ export interface AccordionProps {
|
|
|
6
6
|
contentClass?: string;
|
|
7
7
|
}
|
|
8
8
|
declare function __VLS_template(): {
|
|
9
|
+
attrs: Partial<{}>;
|
|
9
10
|
slots: {
|
|
10
11
|
header?(_: {
|
|
11
12
|
open: boolean;
|
|
@@ -15,7 +16,7 @@ declare function __VLS_template(): {
|
|
|
15
16
|
refs: {
|
|
16
17
|
inner: HTMLDivElement;
|
|
17
18
|
};
|
|
18
|
-
|
|
19
|
+
rootEl: any;
|
|
19
20
|
};
|
|
20
21
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
21
22
|
declare const __VLS_component: import("vue").DefineComponent<AccordionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
@@ -10,12 +10,13 @@ export interface Props {
|
|
|
10
10
|
closeable?: boolean;
|
|
11
11
|
}
|
|
12
12
|
declare function __VLS_template(): {
|
|
13
|
+
attrs: Partial<{}>;
|
|
13
14
|
slots: {
|
|
14
15
|
title?(_: {}): any;
|
|
15
16
|
default?(_: {}): any;
|
|
16
17
|
};
|
|
17
18
|
refs: {};
|
|
18
|
-
|
|
19
|
+
rootEl: any;
|
|
19
20
|
};
|
|
20
21
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
21
22
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
@@ -16,7 +16,7 @@ export interface Props<T = undefined> {
|
|
|
16
16
|
declare const _default: <T = undefined>(__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<{
|
|
17
17
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
18
18
|
readonly "onUpdate:model-value"?: ((value?: T | undefined) => any) | undefined;
|
|
19
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:model-value"> & Props<T>> & import("vue").PublicProps;
|
|
19
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:model-value"> & Partial<{}> & Props<T>> & import("vue").PublicProps;
|
|
20
20
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
21
21
|
attrs: any;
|
|
22
22
|
slots: {
|
|
@@ -13,7 +13,7 @@ export interface Props<T = undefined> {
|
|
|
13
13
|
declare const _default: <T = undefined>(__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<{
|
|
14
14
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
15
15
|
readonly "onUpdate:modelValue"?: ((modelValue?: T | T[] | undefined) => any) | undefined;
|
|
16
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & Props<T>> & import("vue").PublicProps;
|
|
16
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & Partial<{}> & Props<T>> & import("vue").PublicProps;
|
|
17
17
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
18
18
|
attrs: any;
|
|
19
19
|
slots: {};
|
|
@@ -5,8 +5,10 @@ export interface Props {
|
|
|
5
5
|
variant?: 'flat' | 'outlined';
|
|
6
6
|
rounded?: 'sm' | 'md' | 'lg';
|
|
7
7
|
noPadding?: boolean;
|
|
8
|
+
contentClass?: string;
|
|
8
9
|
}
|
|
9
10
|
declare function __VLS_template(): {
|
|
11
|
+
attrs: Partial<{}>;
|
|
10
12
|
slots: {
|
|
11
13
|
image?(_: {}): any;
|
|
12
14
|
"custom-header"?(_: {}): any;
|
|
@@ -17,7 +19,7 @@ declare function __VLS_template(): {
|
|
|
17
19
|
footer?(_: {}): any;
|
|
18
20
|
};
|
|
19
21
|
refs: {};
|
|
20
|
-
|
|
22
|
+
rootEl: any;
|
|
21
23
|
};
|
|
22
24
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
23
25
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
@@ -25,6 +27,7 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
25
27
|
rounded: "sm" | "md" | "lg";
|
|
26
28
|
elevation: number;
|
|
27
29
|
dense: boolean;
|
|
30
|
+
contentClass: string;
|
|
28
31
|
divide: boolean;
|
|
29
32
|
noPadding: boolean;
|
|
30
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -2,13 +2,14 @@ export interface Props {
|
|
|
2
2
|
dense?: boolean;
|
|
3
3
|
}
|
|
4
4
|
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
5
6
|
slots: {
|
|
6
7
|
prepend?(_: {}): any;
|
|
7
8
|
header?(_: {}): any;
|
|
8
9
|
subheader?(_: {}): any;
|
|
9
10
|
};
|
|
10
11
|
refs: {};
|
|
11
|
-
|
|
12
|
+
rootEl: any;
|
|
12
13
|
};
|
|
13
14
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
15
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
@@ -13,12 +13,13 @@ export interface Props {
|
|
|
13
13
|
textColor?: string;
|
|
14
14
|
}
|
|
15
15
|
declare function __VLS_template(): {
|
|
16
|
+
attrs: Partial<{}>;
|
|
16
17
|
slots: {
|
|
17
18
|
prepend?(_: {}): any;
|
|
18
19
|
default?(_: {}): any;
|
|
19
20
|
};
|
|
20
21
|
refs: {};
|
|
21
|
-
|
|
22
|
+
rootEl: any;
|
|
22
23
|
};
|
|
23
24
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
24
25
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { Color } from './utils';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = {
|
|
3
3
|
color: Color;
|
|
4
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
5
6
|
"update:board": (event: {
|
|
6
7
|
saturation: number;
|
|
7
8
|
brightness: number;
|
|
8
9
|
}) => any;
|
|
9
|
-
}, string, import("vue").PublicProps, Readonly<{
|
|
10
|
-
color: Color;
|
|
11
|
-
}> & Readonly<{
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
11
|
"onUpdate:board"?: ((event: {
|
|
13
12
|
saturation: number;
|
|
14
13
|
brightness: number;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
color: string;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
5
|
export default _default;
|
|
@@ -2,8 +2,8 @@ type __VLS_PublicProps = {
|
|
|
2
2
|
modelValue: number;
|
|
3
3
|
};
|
|
4
4
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
-
"update:modelValue": (
|
|
5
|
+
"update:modelValue": (value: number) => any;
|
|
6
6
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
7
|
-
"onUpdate:modelValue"?: ((
|
|
7
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
8
8
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
9
|
export default _default;
|
|
@@ -3,8 +3,8 @@ type __VLS_PublicProps = {
|
|
|
3
3
|
modelValue: Color;
|
|
4
4
|
};
|
|
5
5
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
-
"update:modelValue": (
|
|
6
|
+
"update:modelValue": (value: Color) => any;
|
|
7
7
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
8
|
-
"onUpdate:modelValue"?: ((
|
|
8
|
+
"onUpdate:modelValue"?: ((value: Color) => any) | undefined;
|
|
9
9
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
10
|
export default _default;
|
|
@@ -36,9 +36,9 @@ export interface AutoCompleteProps<TValue, TItem> {
|
|
|
36
36
|
}
|
|
37
37
|
declare const _default: <TValue, TItem>(__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<{
|
|
38
38
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
39
|
-
readonly "onUpdate:modelValue"?: ((
|
|
40
|
-
readonly "onUpdate:searchInput"?: ((
|
|
41
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:searchInput"> & ({
|
|
39
|
+
readonly "onUpdate:modelValue"?: ((value: AutoCompleteModelValue<TValue>) => any) | undefined;
|
|
40
|
+
readonly "onUpdate:searchInput"?: ((value: string) => any) | undefined;
|
|
41
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:searchInput"> & Partial<{}> & ({
|
|
42
42
|
modelValue: AutoCompleteModelValue<TValue>;
|
|
43
43
|
searchInput?: string;
|
|
44
44
|
} & AutoCompleteProps<TValue, TItem>)> & import("vue").PublicProps;
|
|
@@ -1085,10 +1085,7 @@ declare const _default: <TValue, TItem>(__VLS_props: NonNullable<Awaited<typeof
|
|
|
1085
1085
|
}): any;
|
|
1086
1086
|
"no-data"?(_: {}): any;
|
|
1087
1087
|
};
|
|
1088
|
-
emit:
|
|
1089
|
-
'update:modelValue': [modelValue: AutoCompleteModelValue<TValue>];
|
|
1090
|
-
'update:searchInput': [searchInput: string];
|
|
1091
|
-
};
|
|
1088
|
+
emit: ((evt: "update:modelValue", value: AutoCompleteModelValue<TValue>) => void) & ((evt: "update:searchInput", value: string) => void);
|
|
1092
1089
|
}>) => globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
1093
1090
|
[key: string]: any;
|
|
1094
1091
|
}> & {
|
|
@@ -12,13 +12,14 @@ export interface Props {
|
|
|
12
12
|
hideDetails?: boolean;
|
|
13
13
|
}
|
|
14
14
|
declare function __VLS_template(): {
|
|
15
|
+
attrs: Partial<{}>;
|
|
15
16
|
slots: {
|
|
16
17
|
default?(_: {}): any;
|
|
17
18
|
};
|
|
18
19
|
refs: {
|
|
19
20
|
el: HTMLInputElement;
|
|
20
21
|
};
|
|
21
|
-
|
|
22
|
+
rootEl: any;
|
|
22
23
|
};
|
|
23
24
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
24
25
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
@@ -12,8 +12,8 @@ export interface RadioProps<TValue> {
|
|
|
12
12
|
}
|
|
13
13
|
declare const _default: <TValue>(__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<{
|
|
14
14
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
15
|
-
readonly "onUpdate:modelValue"?: ((
|
|
16
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & ({
|
|
15
|
+
readonly "onUpdate:modelValue"?: ((value: TValue) => any) | undefined;
|
|
16
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & Partial<{}> & ({
|
|
17
17
|
modelValue?: TValue;
|
|
18
18
|
} & RadioProps<TValue>)> & import("vue").PublicProps;
|
|
19
19
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
@@ -21,9 +21,7 @@ declare const _default: <TValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_s
|
|
|
21
21
|
slots: {
|
|
22
22
|
default?(_: {}): any;
|
|
23
23
|
};
|
|
24
|
-
emit:
|
|
25
|
-
'update:modelValue': [modelValue: TValue];
|
|
26
|
-
};
|
|
24
|
+
emit: (evt: "update:modelValue", value: TValue) => void;
|
|
27
25
|
}>) => globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
28
26
|
[key: string]: any;
|
|
29
27
|
}> & {
|
|
@@ -12,16 +12,14 @@ export interface Props {
|
|
|
12
12
|
}
|
|
13
13
|
declare const _default: <TValue>(__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<{
|
|
14
14
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
15
|
-
readonly "onUpdate:modelValue"?: ((
|
|
16
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & ({
|
|
15
|
+
readonly "onUpdate:modelValue"?: ((value: TValue) => any) | undefined;
|
|
16
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & Partial<{}> & ({
|
|
17
17
|
modelValue?: TValue;
|
|
18
18
|
} & Props)> & import("vue").PublicProps;
|
|
19
19
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
20
20
|
attrs: any;
|
|
21
21
|
slots: {};
|
|
22
|
-
emit:
|
|
23
|
-
'update:modelValue': [modelValue: TValue];
|
|
24
|
-
};
|
|
22
|
+
emit: (evt: "update:modelValue", value: TValue) => void;
|
|
25
23
|
}>) => globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
26
24
|
[key: string]: any;
|
|
27
25
|
}> & {
|
|
@@ -1,23 +1,24 @@
|
|
|
1
1
|
import { type TextFieldProps } from '../../../components/forms/text-field/RuiTextField.vue';
|
|
2
2
|
export interface Props extends TextFieldProps {
|
|
3
3
|
}
|
|
4
|
-
|
|
4
|
+
type __VLS_Props = Props;
|
|
5
5
|
type __VLS_PublicProps = {
|
|
6
6
|
modelValue: string;
|
|
7
|
-
} &
|
|
7
|
+
} & __VLS_Props;
|
|
8
8
|
declare function __VLS_template(): {
|
|
9
|
+
attrs: Partial<{}>;
|
|
9
10
|
slots: {
|
|
10
11
|
prepend?(_: {}): any;
|
|
11
12
|
append?(_: {}): any;
|
|
12
13
|
};
|
|
13
14
|
refs: {};
|
|
14
|
-
|
|
15
|
+
rootEl: any;
|
|
15
16
|
};
|
|
16
17
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
18
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
-
"update:modelValue": (
|
|
19
|
+
"update:modelValue": (value: string) => any;
|
|
19
20
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
20
|
-
"onUpdate:modelValue"?: ((
|
|
21
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
21
22
|
}>, {
|
|
22
23
|
readonly: boolean;
|
|
23
24
|
color: import("../../..").ContextColorsType;
|
|
@@ -28,8 +28,8 @@ export interface Props<TValue, TItem> {
|
|
|
28
28
|
}
|
|
29
29
|
declare const _default: <TValue, TItem>(__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<{
|
|
30
30
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
31
|
-
readonly "onUpdate:modelValue"?: ((
|
|
32
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & ({
|
|
31
|
+
readonly "onUpdate:modelValue"?: ((value: TValue | undefined) => any) | undefined;
|
|
32
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & Partial<{}> & ({
|
|
33
33
|
modelValue: TValue | undefined;
|
|
34
34
|
} & Props<TValue, TItem>)> & import("vue").PublicProps;
|
|
35
35
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
@@ -79,9 +79,7 @@ declare const _default: <TValue, TItem>(__VLS_props: NonNullable<Awaited<typeof
|
|
|
79
79
|
}): any;
|
|
80
80
|
"no-data"?(_: {}): any;
|
|
81
81
|
};
|
|
82
|
-
emit:
|
|
83
|
-
'update:modelValue': [modelValue: TValue | undefined];
|
|
84
|
-
};
|
|
82
|
+
emit: (evt: "update:modelValue", value: TValue | undefined) => void;
|
|
85
83
|
}>) => globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
86
84
|
[key: string]: any;
|
|
87
85
|
}> & {
|
|
@@ -11,11 +11,12 @@ export interface Props {
|
|
|
11
11
|
hideDetails?: boolean;
|
|
12
12
|
}
|
|
13
13
|
declare function __VLS_template(): {
|
|
14
|
+
attrs: Partial<{}>;
|
|
14
15
|
slots: {
|
|
15
16
|
default?(_: {}): any;
|
|
16
17
|
};
|
|
17
18
|
refs: {};
|
|
18
|
-
|
|
19
|
+
rootEl: any;
|
|
19
20
|
};
|
|
20
21
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
21
22
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
@@ -22,11 +22,12 @@ export interface Props {
|
|
|
22
22
|
rowHeight?: number | string;
|
|
23
23
|
autoGrow?: boolean;
|
|
24
24
|
}
|
|
25
|
-
|
|
25
|
+
type __VLS_Props = Props;
|
|
26
26
|
type __VLS_PublicProps = {
|
|
27
27
|
modelValue: string;
|
|
28
|
-
} &
|
|
28
|
+
} & __VLS_Props;
|
|
29
29
|
declare function __VLS_template(): {
|
|
30
|
+
attrs: Partial<{}>;
|
|
30
31
|
slots: {
|
|
31
32
|
prepend?(_: {}): any;
|
|
32
33
|
append?(_: {}): any;
|
|
@@ -37,15 +38,15 @@ declare function __VLS_template(): {
|
|
|
37
38
|
textarea: HTMLTextAreaElement;
|
|
38
39
|
append: HTMLDivElement;
|
|
39
40
|
};
|
|
40
|
-
|
|
41
|
+
rootEl: any;
|
|
41
42
|
};
|
|
42
43
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
43
44
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
44
|
-
"update:modelValue": (
|
|
45
|
+
"update:modelValue": (value: string) => any;
|
|
45
46
|
} & {
|
|
46
47
|
"click:clear": () => any;
|
|
47
48
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
48
|
-
"onUpdate:modelValue"?: ((
|
|
49
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
49
50
|
"onClick:clear"?: (() => any) | undefined;
|
|
50
51
|
}>, {
|
|
51
52
|
readonly: boolean;
|
|
@@ -18,11 +18,12 @@ export interface TextFieldProps {
|
|
|
18
18
|
readonly?: boolean;
|
|
19
19
|
clearable?: boolean;
|
|
20
20
|
}
|
|
21
|
-
|
|
21
|
+
type __VLS_Props = TextFieldProps;
|
|
22
22
|
type __VLS_PublicProps = {
|
|
23
23
|
modelValue: string;
|
|
24
|
-
} &
|
|
24
|
+
} & __VLS_Props;
|
|
25
25
|
declare function __VLS_template(): {
|
|
26
|
+
attrs: Partial<{}>;
|
|
26
27
|
slots: {
|
|
27
28
|
prepend?(_: {}): any;
|
|
28
29
|
append?(_: {}): any;
|
|
@@ -33,11 +34,11 @@ declare function __VLS_template(): {
|
|
|
33
34
|
inputRef: unknown;
|
|
34
35
|
append: HTMLDivElement;
|
|
35
36
|
};
|
|
36
|
-
|
|
37
|
+
rootEl: any;
|
|
37
38
|
};
|
|
38
39
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
39
40
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
40
|
-
"update:modelValue": (
|
|
41
|
+
"update:modelValue": (value: string) => any;
|
|
41
42
|
} & {
|
|
42
43
|
clear: () => any;
|
|
43
44
|
blur: (event: Event) => any;
|
|
@@ -46,7 +47,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
46
47
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
47
48
|
onClear?: (() => any) | undefined;
|
|
48
49
|
onBlur?: ((event: Event) => any) | undefined;
|
|
49
|
-
"onUpdate:modelValue"?: ((
|
|
50
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
50
51
|
"onFocus-input"?: ((event: Event) => any) | undefined;
|
|
51
52
|
onRemove?: ((value: unknown) => any) | undefined;
|
|
52
53
|
}>, {
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
errorMessages?: string | string[];
|
|
3
3
|
successMessages?: string | string[];
|
|
4
4
|
hint?: string;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
successMessages?: string | string[];
|
|
8
|
-
hint?: string;
|
|
9
|
-
}> & Readonly<{}>, {
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
10
7
|
errorMessages: string | string[];
|
|
11
8
|
successMessages: string | string[];
|
|
12
9
|
hint: string;
|
|
@@ -8,5 +8,5 @@ export interface Props {
|
|
|
8
8
|
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
9
9
|
size: number | string;
|
|
10
10
|
color: ContextColorsType;
|
|
11
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
11
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, SVGSVGElement>;
|
|
12
12
|
export default _default;
|