@rotki/ui-library 0.6.0 → 0.7.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/all-icons.d.ts +82 -21
- package/dist/all-icons.es.js +4996 -4752
- package/dist/components/alerts/Alert.vue.d.ts +1 -1
- package/dist/components/buttons/button/Button.vue.d.ts +1 -0
- package/dist/components/buttons/button-group/ButtonGroup.vue.d.ts +1 -0
- package/dist/components/cards/Card.vue.d.ts +21 -1
- package/dist/components/cards/CardHeader.vue.d.ts +1 -1
- package/dist/components/chips/Chip.vue.d.ts +1 -1
- package/dist/components/divider/Divider.vue.d.ts +17 -0
- package/dist/components/forms/auto-complete/AutoComplete.vue.d.ts +25 -25
- package/dist/components/forms/auto-complete/AutoCompleteSelection.vue.d.ts +1 -1
- package/dist/components/forms/checkbox/Checkbox.vue.d.ts +36 -16
- package/dist/components/forms/radio-button/radio/Radio.vue.d.ts +37 -17
- package/dist/components/forms/radio-button/radio-group/RadioGroup.vue.d.ts +63 -12
- package/dist/components/forms/revealable-text-field/RevealableTextField.vue.d.ts +52 -43
- package/dist/components/forms/select/SimpleSelect.vue.d.ts +1 -1
- package/dist/components/forms/text-area/TextArea.vue.d.ts +233 -0
- package/dist/components/forms/text-field/TextField.vue.d.ts +59 -47
- package/dist/components/helpers/FormTextDetail.vue.d.ts +32 -0
- package/dist/components/icons/Icon.vue.d.ts +1 -1
- package/dist/components/index.d.ts +5 -2
- package/dist/components/index.es.js +26 -23
- package/dist/components/loaders/Skeleton.vue.d.ts +27 -0
- package/dist/components/loaders/SkeletonBase.vue.d.ts +17 -0
- package/dist/components/logos/Logo.vue.d.ts +1 -1
- package/dist/components/overlays/badge/Badge.vue.d.ts +1 -1
- package/dist/components/overlays/dialog/Dialog.vue.d.ts +1 -1
- package/dist/components/overlays/tooltip/Tooltip.vue.d.ts +1 -1
- package/dist/components/progress/Progress.vue.d.ts +1 -1
- package/dist/components/steppers/FooterStepper.vue.d.ts +1 -1
- package/dist/components/steppers/Stepper.vue.d.ts +1 -1
- package/dist/components/steppers/StepperCustomIcon.vue.d.ts +1 -1
- package/dist/components/steppers/StepperIcon.vue.d.ts +1 -1
- package/dist/components/tables/TablePagination.vue.d.ts +1 -1
- package/dist/components/tabs/tab/Tab.vue.d.ts +1 -1
- package/dist/components/tabs/tab-item/TabItem.vue.d.ts +1 -1
- package/dist/components/tabs/tab-items/TabItems.vue.d.ts +1 -1
- package/dist/components/tabs/tabs/Tabs.vue.d.ts +1 -1
- package/dist/composables/index.es.js +2 -2
- package/dist/composables/popper.d.ts +1 -1
- package/dist/index-Q2a5R3OH.js +6090 -0
- package/dist/{index-393a0e94.js → index-W2poXQa4.js} +1 -1
- package/dist/index.es.js +2623 -2559
- package/dist/style.css +1 -1
- package/dist/theme/index.es.js +1 -1
- package/dist/utils/form-text-detail.d.ts +8 -0
- package/dist/utils/helpers.d.ts +27 -0
- package/package.json +39 -39
- package/dist/index-2e3eeb1f.js +0 -5701
- /package/dist/{colors-01d79c7b.js → colors-ikihApJv.js} +0 -0
|
@@ -5,7 +5,9 @@ import { type Props as ButtonGroupProps, default as RuiButtonGroup } from '../co
|
|
|
5
5
|
import { type Props as IconProps, default as RuiIcon } from '../components/icons/Icon.vue';
|
|
6
6
|
import { type Props as CheckboxProps, default as RuiCheckbox } from '../components/forms/checkbox/Checkbox.vue';
|
|
7
7
|
import { type Props as ChipProps, default as RuiChip } from '../components/chips/Chip.vue';
|
|
8
|
+
import { type Props as DividerProps, default as RuiDivider } from '../components/divider/Divider.vue';
|
|
8
9
|
import { default as RuiStepper, type Props as StepperProps } from '../components/steppers/Stepper.vue';
|
|
10
|
+
import { default as RuiTextArea, type Props as TextAreaProps } from '../components/forms/text-area/TextArea.vue';
|
|
9
11
|
import { default as RuiTextField, type TextFieldProps } from '../components/forms/text-field/TextField.vue';
|
|
10
12
|
import { default as RuiTooltip, type Props as TooltipProps } from '../components/overlays/tooltip/Tooltip.vue';
|
|
11
13
|
import { type Props as BadgeProps, default as RuiBadge } from '../components/overlays/badge/Badge.vue';
|
|
@@ -13,7 +15,7 @@ import { type Props as DialogProps, default as RuiDialog } from '../components/o
|
|
|
13
15
|
import { type Props as FooterStepperProps, default as RuiFooterStepper } from '../components/steppers/FooterStepper.vue';
|
|
14
16
|
import { type Props as ProgressProps, default as RuiProgress } from '../components/progress/Progress.vue';
|
|
15
17
|
import { type Props as RadioGroupProps, default as RuiRadioGroup } from '../components/forms/radio-button/radio-group/RadioGroup.vue';
|
|
16
|
-
import { type
|
|
18
|
+
import { type RadioProps as RadioProps, default as RuiRadio } from '../components/forms/radio-button/radio/Radio.vue';
|
|
17
19
|
import { type Props as RevealableTextFieldProps, default as RuiRevealableTextField } from '../components/forms/revealable-text-field/RevealableTextField.vue';
|
|
18
20
|
import { type Props as LogoProps, default as RuiLogo } from '../components/logos/Logo.vue';
|
|
19
21
|
import { default as RuiSimpleSelect, type Props as SimpleSelectProps } from '../components/forms/select/SimpleSelect.vue';
|
|
@@ -25,4 +27,5 @@ import { default as RuiTabs, type Props as TabsProps } from '../components/tabs/
|
|
|
25
27
|
import { default as RuiTab, type Props as TabProps } from '../components/tabs/tab/Tab.vue';
|
|
26
28
|
import { default as RuiTabItems, type Props as TabItemsProps } from '../components/tabs/tab-items/TabItems.vue';
|
|
27
29
|
import { default as RuiTabItem, type Props as TabItemProps } from '../components/tabs/tab-item/TabItem.vue';
|
|
28
|
-
|
|
30
|
+
import { default as RuiSkeletonLoader, type Props as SkeletonLoaderProps } from '../components/loaders/Skeleton.vue';
|
|
31
|
+
export { RuiAlert, RuiAutoComplete, RuiBadge, RuiButton, RuiButtonGroup, RuiCheckbox, RuiChip, RuiFooterStepper, RuiIcon, RuiLogo, RuiProgress, RuiRadio, RuiRadioGroup, RuiRevealableTextField, RuiStepper, RuiTextField, RuiTooltip, RuiDataTable, RuiSimpleSelect, RuiDialog, RuiCard, RuiCardHeader, RuiTabs, RuiTab, RuiTabItems, RuiTabItem, RuiTablePagination, RuiSkeletonLoader, RuiTextArea, RuiDivider, AutoCompleteProps, ChipProps, TooltipProps, SimpleSelectProps, DataTableProps, DataTableColumn, DataTableSortColumn, DataTableOptions, TablePaginationData, DialogProps, ButtonProps, ButtonGroupProps, CardProps, CardHeaderProps, BadgeProps, AlertProps, CheckboxProps, ProgressProps, RadioGroupProps, RadioProps, LogoProps, StepperProps, TextFieldProps, IconProps, FooterStepperProps, TabsProps, TabProps, TabItemsProps, TabItemProps, TablePaginationProps, RevealableTextFieldProps, SkeletonLoaderProps, DividerProps, TextAreaProps, };
|
|
@@ -1,37 +1,40 @@
|
|
|
1
|
-
import { A as p, a as l, R as m, B as
|
|
1
|
+
import { A as p, a as l, R as m, B as d, b as T, k as b, l as n, C as g, c as C, D as x, j as S, t as c, F as A, I as B, _ as D, P as F, d as I, e as h, f as k, i as P, r as f, g as v, n as G, p as L, o as j, q, m as H, s as _, h as w, T as y } from "../index-Q2a5R3OH.js";
|
|
2
2
|
import "vue";
|
|
3
3
|
import "@vueuse/shared";
|
|
4
|
-
import "../index-
|
|
4
|
+
import "../index-W2poXQa4.js";
|
|
5
5
|
import "../all-icons.es.js";
|
|
6
6
|
import "@vueuse/core";
|
|
7
|
-
import "../colors-
|
|
7
|
+
import "../colors-ikihApJv.js";
|
|
8
8
|
import "vue-router";
|
|
9
9
|
export {
|
|
10
10
|
p as RuiAlert,
|
|
11
11
|
l as RuiAutoComplete,
|
|
12
12
|
m as RuiBadge,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
d as RuiButton,
|
|
14
|
+
T as RuiButtonGroup,
|
|
15
|
+
b as RuiCard,
|
|
16
|
+
n as RuiCardHeader,
|
|
17
|
+
g as RuiCheckbox,
|
|
18
18
|
C as RuiChip,
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
19
|
+
x as RuiDataTable,
|
|
20
|
+
S as RuiDialog,
|
|
21
|
+
c as RuiDivider,
|
|
22
|
+
A as RuiFooterStepper,
|
|
23
|
+
B as RuiIcon,
|
|
24
|
+
D as RuiLogo,
|
|
25
|
+
F as RuiProgress,
|
|
26
|
+
I as RuiRadio,
|
|
27
|
+
h as RuiRadioGroup,
|
|
28
|
+
k as RuiRevealableTextField,
|
|
28
29
|
P as RuiSimpleSelect,
|
|
29
|
-
f as
|
|
30
|
-
|
|
31
|
-
G as
|
|
30
|
+
f as RuiSkeletonLoader,
|
|
31
|
+
v as RuiStepper,
|
|
32
|
+
G as RuiTab,
|
|
33
|
+
L as RuiTabItem,
|
|
32
34
|
j as RuiTabItems,
|
|
33
35
|
q as RuiTablePagination,
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
36
|
+
H as RuiTabs,
|
|
37
|
+
_ as RuiTextArea,
|
|
38
|
+
w as RuiTextField,
|
|
39
|
+
y as RuiTooltip
|
|
37
40
|
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { type Props as SkeletonBaseProps } from '../../components/loaders/SkeletonBase.vue';
|
|
2
|
+
export interface Props extends SkeletonBaseProps {
|
|
3
|
+
type?: 'text' | 'paragraph' | 'heading' | 'article' | 'button' | 'icon' | 'avatar' | 'thumbnail' | 'custom';
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import("vue").DefineComponent<{
|
|
6
|
+
type: {
|
|
7
|
+
type: globalThis.PropType<"article" | "button" | "text" | "icon" | "heading" | "paragraph" | "custom" | "avatar" | "thumbnail">;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
rounded: {
|
|
11
|
+
type: globalThis.PropType<"none" | "sm" | "lg" | "md" | "full">;
|
|
12
|
+
default: undefined;
|
|
13
|
+
};
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
15
|
+
type: {
|
|
16
|
+
type: globalThis.PropType<"article" | "button" | "text" | "icon" | "heading" | "paragraph" | "custom" | "avatar" | "thumbnail">;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
rounded: {
|
|
20
|
+
type: globalThis.PropType<"none" | "sm" | "lg" | "md" | "full">;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
23
|
+
}>>, {
|
|
24
|
+
type: "article" | "button" | "text" | "icon" | "heading" | "paragraph" | "custom" | "avatar" | "thumbnail";
|
|
25
|
+
rounded: "none" | "sm" | "lg" | "md" | "full";
|
|
26
|
+
}, {}>;
|
|
27
|
+
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface Props {
|
|
2
|
+
rounded?: 'none' | 'sm' | 'md' | 'lg' | 'full';
|
|
3
|
+
}
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
rounded: {
|
|
6
|
+
type: globalThis.PropType<"none" | "sm" | "lg" | "md" | "full">;
|
|
7
|
+
default: undefined;
|
|
8
|
+
};
|
|
9
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
10
|
+
rounded: {
|
|
11
|
+
type: globalThis.PropType<"none" | "sm" | "lg" | "md" | "full">;
|
|
12
|
+
default: undefined;
|
|
13
|
+
};
|
|
14
|
+
}>>, {
|
|
15
|
+
rounded: "none" | "sm" | "lg" | "md" | "full";
|
|
16
|
+
}, {}>;
|
|
17
|
+
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11
11
|
type: globalThis.PropType<string>;
|
|
12
12
|
default: undefined;
|
|
13
13
|
};
|
|
14
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
15
15
|
text: {
|
|
16
16
|
type: globalThis.PropType<boolean>;
|
|
17
17
|
default: boolean;
|
|
@@ -58,7 +58,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
58
58
|
type: globalThis.PropType<string | number>;
|
|
59
59
|
default: number;
|
|
60
60
|
};
|
|
61
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
61
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
62
62
|
color: {
|
|
63
63
|
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success" | "default">;
|
|
64
64
|
default: string;
|
|
@@ -23,7 +23,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
23
23
|
};
|
|
24
24
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
25
|
"update:model-value": (modelValue: boolean) => void;
|
|
26
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
26
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
27
27
|
size: {
|
|
28
28
|
type: globalThis.PropType<"sm" | "lg" | "md">;
|
|
29
29
|
default: string;
|
|
@@ -37,7 +37,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
37
37
|
type: globalThis.PropType<string>;
|
|
38
38
|
default: string;
|
|
39
39
|
};
|
|
40
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
40
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
41
41
|
text: {
|
|
42
42
|
type: globalThis.PropType<string | null>;
|
|
43
43
|
default: null;
|
|
@@ -56,7 +56,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
56
|
type: globalThis.PropType<string | number>;
|
|
57
57
|
default: number;
|
|
58
58
|
};
|
|
59
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
59
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
60
60
|
value: {
|
|
61
61
|
type: globalThis.PropType<number>;
|
|
62
62
|
default: number;
|
|
@@ -23,7 +23,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
};
|
|
24
24
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
25
|
"update:modelValue": (modelValue: number) => void;
|
|
26
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
26
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
27
27
|
variant: {
|
|
28
28
|
type: globalThis.PropType<"progress" | "numeric" | "bullet" | "pill">;
|
|
29
29
|
default: string;
|
|
@@ -42,7 +42,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
42
42
|
type: globalThis.PropType<boolean>;
|
|
43
43
|
default: boolean;
|
|
44
44
|
};
|
|
45
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
45
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
46
46
|
orientation: {
|
|
47
47
|
type: globalThis.PropType<StepperOrientation>;
|
|
48
48
|
default: "horizontal";
|
|
@@ -8,7 +8,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8
8
|
type: globalThis.PropType<number>;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
11
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
12
12
|
state: {
|
|
13
13
|
type: globalThis.PropType<StepperState>;
|
|
14
14
|
default: "inactive";
|
|
@@ -8,7 +8,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8
8
|
type: globalThis.PropType<number>;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
11
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
12
12
|
state: {
|
|
13
13
|
type: globalThis.PropType<StepperState>;
|
|
14
14
|
default: "inactive";
|
|
@@ -24,7 +24,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
24
|
};
|
|
25
25
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
26
|
"update:model-value": (value: TablePaginationData) => void;
|
|
27
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
27
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
28
28
|
loading: {
|
|
29
29
|
type: globalThis.PropType<boolean>;
|
|
30
30
|
default: boolean;
|
|
@@ -64,7 +64,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
64
64
|
};
|
|
65
65
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
66
66
|
click: (tabValue: string | number) => void;
|
|
67
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
67
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
68
68
|
color: {
|
|
69
69
|
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
70
70
|
default: undefined;
|
|
@@ -21,7 +21,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
21
21
|
type: globalThis.PropType<boolean>;
|
|
22
22
|
default: boolean;
|
|
23
23
|
};
|
|
24
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
24
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
25
25
|
reverse: {
|
|
26
26
|
type: globalThis.PropType<boolean>;
|
|
27
27
|
default: boolean;
|
|
@@ -6,7 +6,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6
6
|
type: globalThis.PropType<string | number>;
|
|
7
7
|
default: undefined;
|
|
8
8
|
};
|
|
9
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
9
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
10
10
|
modelValue: {
|
|
11
11
|
type: globalThis.PropType<string | number>;
|
|
12
12
|
default: undefined;
|
|
@@ -34,7 +34,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
34
|
};
|
|
35
35
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
36
36
|
"update:modelValue": (modelValue: string | number) => void;
|
|
37
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
37
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
38
38
|
color: {
|
|
39
39
|
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
40
40
|
default: undefined;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { u as s, a } from "../index-
|
|
1
|
+
import { u as s, a } from "../index-W2poXQa4.js";
|
|
2
2
|
import "../all-icons.es.js";
|
|
3
3
|
import "@vueuse/core";
|
|
4
4
|
import "vue";
|
|
5
5
|
import "@vueuse/shared";
|
|
6
|
-
import "../colors-
|
|
6
|
+
import "../colors-ikihApJv.js";
|
|
7
7
|
export {
|
|
8
8
|
s as useIcons,
|
|
9
9
|
a as useRotkiTheme
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type VirtualElement } from '@popperjs/core/lib/popper-lite';
|
|
2
2
|
import { type MaybeElement } from '@vueuse/core';
|
|
3
|
-
import type { Instance, Placement, PositioningStrategy } from '@popperjs/core';
|
|
4
3
|
import type { Ref } from 'vue';
|
|
4
|
+
import type { Instance, Placement, PositioningStrategy } from '@popperjs/core';
|
|
5
5
|
export interface PopperOptions {
|
|
6
6
|
locked?: boolean;
|
|
7
7
|
overflowPadding?: number;
|