@rotki/ui-library 1.2.7 → 1.3.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/RuiNavigationDrawer-DGs1QHIz.js +7951 -0
- package/dist/components/forms/revealable-text-field/RuiRevealableTextField.vue.d.ts +0 -1
- package/dist/components/forms/text-field/RuiTextField.vue.d.ts +6 -6
- package/dist/components/index.es.js +1 -1
- package/dist/components/overlays/menu/RuiMenu.vue.d.ts +1 -1
- package/dist/components/tables/RuiDataTable.vue.d.ts +5 -1
- package/dist/index.es.js +2 -2
- package/dist/style.css +1 -1
- package/dist/web-types.json +22 -23
- package/package.json +36 -36
- package/dist/RuiNavigationDrawer-Dp0FB9aL.js +0 -7950
|
@@ -47,7 +47,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
47
47
|
label: string;
|
|
48
48
|
variant: "default" | "filled" | "outlined";
|
|
49
49
|
disabled: boolean;
|
|
50
|
-
modelValue: string;
|
|
51
50
|
textColor: import("../../..").ContextColorsType;
|
|
52
51
|
dense: boolean;
|
|
53
52
|
errorMessages: string | string[];
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { ContextColorsType } from '../../../consts/colors';
|
|
2
2
|
import type { RuiIcons } from '../../../icons';
|
|
3
3
|
export interface TextFieldProps {
|
|
4
|
-
modelValue?: string;
|
|
5
4
|
label?: string;
|
|
6
5
|
placeholder?: string;
|
|
7
6
|
disabled?: boolean;
|
|
@@ -19,12 +18,15 @@ export interface TextFieldProps {
|
|
|
19
18
|
readonly?: boolean;
|
|
20
19
|
clearable?: boolean;
|
|
21
20
|
}
|
|
21
|
+
declare let __VLS_typeProps: TextFieldProps;
|
|
22
|
+
type __VLS_PublicProps = {
|
|
23
|
+
modelValue: string;
|
|
24
|
+
} & typeof __VLS_typeProps;
|
|
22
25
|
declare function __VLS_template(): {
|
|
23
26
|
prepend?(_: {}): any;
|
|
24
27
|
append?(_: {}): any;
|
|
25
28
|
};
|
|
26
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<
|
|
27
|
-
modelValue: string;
|
|
29
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
|
|
28
30
|
label: string;
|
|
29
31
|
placeholder: string;
|
|
30
32
|
disabled: boolean;
|
|
@@ -47,8 +49,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
47
49
|
blur: (event: Event) => void;
|
|
48
50
|
remove: (value: unknown) => void;
|
|
49
51
|
clear: () => void;
|
|
50
|
-
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<
|
|
51
|
-
modelValue: string;
|
|
52
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
|
|
52
53
|
label: string;
|
|
53
54
|
placeholder: string;
|
|
54
55
|
disabled: boolean;
|
|
@@ -77,7 +78,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
77
78
|
label: string;
|
|
78
79
|
variant: "default" | "filled" | "outlined";
|
|
79
80
|
disabled: boolean;
|
|
80
|
-
modelValue: string;
|
|
81
81
|
textColor: ContextColorsType;
|
|
82
82
|
dense: boolean;
|
|
83
83
|
errorMessages: string | string[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I as u, H as s, R as e, a as R, b as o, J as t, c as r, d as l, u as d, v as n, e as p, f as c, K as T, r as b, t as S, D as g, g as m, h as x, _ as C, q as A, F as h, L as B, M as D, i as k, j as v, k as w, l as F, s as I, B as f, G, m as L, n as M, x as P, z as E, y as H, A as N, E as j, w as q, C as y, o as z, p as J } from "../RuiNavigationDrawer-
|
|
1
|
+
import { I as u, H as s, R as e, a as R, b as o, J as t, c as r, d as l, u as d, v as n, e as p, f as c, K as T, r as b, t as S, D as g, g as m, h as x, _ as C, q as A, F as h, L as B, M as D, i as k, j as v, k as w, l as F, s as I, B as f, G, m as L, n as M, x as P, z as E, y as H, A as N, E as j, w as q, C as y, o as z, p as J } from "../RuiNavigationDrawer-DGs1QHIz.js";
|
|
2
2
|
export {
|
|
3
3
|
u as RuiAccordion,
|
|
4
4
|
s as RuiAccordions,
|
|
@@ -36,7 +36,7 @@ declare function __VLS_template(): {
|
|
|
36
36
|
hasSuccess: boolean;
|
|
37
37
|
}): any;
|
|
38
38
|
default?(_: {
|
|
39
|
-
width:
|
|
39
|
+
width: any;
|
|
40
40
|
}): any;
|
|
41
41
|
};
|
|
42
42
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<MenuProps>, {
|
|
@@ -100,7 +100,11 @@ export interface Props<T, K extends keyof T> {
|
|
|
100
100
|
description?: string;
|
|
101
101
|
};
|
|
102
102
|
/**
|
|
103
|
-
* should hide the
|
|
103
|
+
* should hide the header navigation
|
|
104
|
+
*/
|
|
105
|
+
hideDefaultHeader?: boolean;
|
|
106
|
+
/**
|
|
107
|
+
* should hide the footer navigation
|
|
104
108
|
*/
|
|
105
109
|
hideDefaultFooter?: boolean;
|
|
106
110
|
rounded?: 'sm' | 'md' | 'lg';
|
package/dist/index.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { u as a, a as r } from "./index-DIN-6VhY.js";
|
|
2
2
|
import { T as C } from "./index-DIN-6VhY.js";
|
|
3
|
-
import { N as F, T as L } from "./RuiNavigationDrawer-
|
|
4
|
-
import { I as S, H as g, R as m, a as k, b as B, J as w, c as f, d as P, u as y, v as D, e as M, f as b, K as A, r as T, t as x, D as H, g as U, h as E, _ as v, q as G, F as I, L as W, M as V, i as O, j as N, k as z, l as K, s as q, B as Q, G as j, m as Z, n as X, x as J, z as Y, y as _, A as $, E as ii, w as li, C as ei, o as Ri, p as ni, S as oi } from "./RuiNavigationDrawer-
|
|
3
|
+
import { N as F, T as L } from "./RuiNavigationDrawer-DGs1QHIz.js";
|
|
4
|
+
import { I as S, H as g, R as m, a as k, b as B, J as w, c as f, d as P, u as y, v as D, e as M, f as b, K as A, r as T, t as x, D as H, g as U, h as E, _ as v, q as G, F as I, L as W, M as V, i as O, j as N, k as z, l as K, s as q, B as Q, G as j, m as Z, n as X, x as J, z as Y, y as _, A as $, E as ii, w as li, C as ei, o as Ri, p as ni, S as oi } from "./RuiNavigationDrawer-DGs1QHIz.js";
|
|
5
5
|
import { u as ri } from "./breakpoint-sPlgsoXp.js";
|
|
6
6
|
import { RuiIcons as Li, isRuiIcon as ti } from "./icons/index.es.js";
|
|
7
7
|
import { c as di } from "./colors-D563Ic3q.js";
|