@rotki/ui-library 1.12.1 → 1.12.3
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 +409 -14
- package/dist/components/alerts/RuiAlert.vue.d.ts +478 -11
- package/dist/components/buttons/button/RuiButton.vue.d.ts +5 -7
- package/dist/components/buttons/button-group/RuiButtonGroup.vue.d.ts +2 -4
- package/dist/components/cards/RuiCard.vue.d.ts +452 -15
- package/dist/components/cards/RuiCardHeader.vue.d.ts +396 -11
- package/dist/components/chips/RuiChip.vue.d.ts +484 -11
- package/dist/components/forms/auto-complete/RuiAutoComplete.vue.d.ts +39 -43
- package/dist/components/forms/checkbox/RuiCheckbox.vue.d.ts +468 -11
- package/dist/components/forms/radio-button/radio/RuiRadio.vue.d.ts +6 -8
- package/dist/components/forms/radio-button/radio-group/RuiRadioGroup.vue.d.ts +5 -7
- package/dist/components/forms/revealable-text-field/RuiRevealableTextField.vue.d.ts +48 -19
- package/dist/components/forms/select/RuiMenuSelect.vue.d.ts +19 -21
- package/dist/components/forms/switch/RuiSwitch.vue.d.ts +514 -9
- package/dist/components/forms/text-area/RuiTextArea.vue.d.ts +843 -20
- package/dist/components/forms/text-field/RuiTextField.vue.d.ts +676 -21
- package/dist/components/icons/RuiIcon.vue.d.ts +2 -2
- package/dist/components/index.d.ts +30 -30
- package/dist/components/index.es.js +5463 -5454
- 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 +472 -13
- package/dist/components/overlays/bottom-sheet/RuiBottomSheet.vue.d.ts +14 -9
- package/dist/components/overlays/dialog/RuiDialog.vue.d.ts +476 -23
- package/dist/components/overlays/menu/RuiMenu.vue.d.ts +505 -31
- package/dist/components/overlays/navigation-drawer/RuiNavigationDrawer.vue.d.ts +466 -25
- package/dist/components/overlays/notification/RuiNotification.vue.d.ts +24 -11
- package/dist/components/overlays/tooltip/RuiTooltip.vue.d.ts +429 -18
- package/dist/components/progress/RuiProgress.vue.d.ts +2 -2
- package/dist/components/steppers/RuiFooterStepper.vue.d.ts +1 -1
- package/dist/components/steppers/RuiStepper.vue.d.ts +461 -15
- package/dist/components/steppers/RuiStepperCustomIcon.vue.d.ts +1 -1
- package/dist/components/steppers/RuiStepperIcon.vue.d.ts +1 -1
- package/dist/components/tables/RuiDataTable.vue.d.ts +4 -36
- package/dist/components/tables/RuiExpandButton.vue.d.ts +377 -9
- package/dist/components/tables/RuiTableHead.vue.d.ts +17 -14
- package/dist/components/tables/RuiTablePagination.vue.d.ts +1 -1
- package/dist/components/tabs/tab/RuiTab.vue.d.ts +9 -19
- package/dist/components/tabs/tab-item/RuiTabItem.vue.d.ts +378 -11
- 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/defaults/table.d.ts +1 -1
- package/dist/composables/{index-BWYjmHnW.js → index-DKotjeCA.js} +94 -95
- package/dist/composables/index.d.ts +1 -1
- package/dist/composables/index.es.js +1 -1
- package/dist/composables/popper.d.ts +2 -2
- package/dist/consts/forms/auto-complete/index.d.ts +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.es.js +52 -52
- package/dist/style.css +1 -1
- package/dist/types/{index-DSBIGM2a.js → index-CN6Ip1GL.js} +1 -2
- package/dist/types/theme.d.ts +1 -1
- package/dist/utils/{index-Cps3W0wA.js → index-Bi6PqW7j.js} +38 -38
- package/dist/{vendor-BRFX1hnB.js → vendor-ClNuDbHx.js} +1385 -1387
- package/dist/web-types.json +91 -91
- package/package.json +45 -45
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { type RuiIcons } from '../../icons';
|
|
2
1
|
import type { ContextColorsType } from '../../consts/colors';
|
|
2
|
+
import { type RuiIcons } from '../../icons';
|
|
3
3
|
export interface Props {
|
|
4
4
|
name: RuiIcons;
|
|
5
5
|
size?: number | 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, {}, any>;
|
|
12
12
|
export default _default;
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
+
import type { TableColumn as DataTableColumn, GroupKeys as DataTableGroupKeys, SortColumn as DataTableSortColumn, TableSortData as DataTableSortData } from '../components/tables/RuiTableHead.vue';
|
|
2
|
+
import RuiAccordion, { type AccordionProps } from '../components/accordions/accordion/RuiAccordion.vue';
|
|
3
|
+
import RuiAccordions, { type Props as AccordionsProps } from '../components/accordions/accordions/RuiAccordions.vue';
|
|
1
4
|
import RuiAlert, { type Props as AlertProps } from '../components/alerts/RuiAlert.vue';
|
|
2
|
-
import RuiAutoComplete, { type AutoCompleteProps } from '../components/forms/auto-complete/RuiAutoComplete.vue';
|
|
3
|
-
import RuiButton, { type Props as ButtonProps } from '../components/buttons/button/RuiButton.vue';
|
|
4
5
|
import RuiButtonGroup, { type Props as ButtonGroupProps } from '../components/buttons/button-group/RuiButtonGroup.vue';
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import RuiSlider, { type Props as SliderProps } from '../components/forms/slider/RuiSlider.vue';
|
|
6
|
+
import RuiButton, { type Props as ButtonProps } from '../components/buttons/button/RuiButton.vue';
|
|
7
|
+
import RuiCard, { type Props as CardProps } from '../components/cards/RuiCard.vue';
|
|
8
|
+
import RuiCardHeader, { type Props as CardHeaderProps } from '../components/cards/RuiCardHeader.vue';
|
|
9
9
|
import RuiChip, { type Props as ChipProps } from '../components/chips/RuiChip.vue';
|
|
10
|
+
import RuiColorPicker, { type Props as ColorPickerProps } from '../components/color-picker/RuiColorPicker.vue';
|
|
10
11
|
import RuiDivider, { type Props as DividerProps } from '../components/divider/RuiDivider.vue';
|
|
11
|
-
import
|
|
12
|
+
import RuiAutoComplete, { type AutoCompleteProps } from '../components/forms/auto-complete/RuiAutoComplete.vue';
|
|
13
|
+
import RuiCheckbox, { type Props as CheckboxProps } from '../components/forms/checkbox/RuiCheckbox.vue';
|
|
14
|
+
import RuiRadioGroup, { type Props as RadioGroupProps } from '../components/forms/radio-button/radio-group/RuiRadioGroup.vue';
|
|
15
|
+
import RuiRadio, { type RadioProps } from '../components/forms/radio-button/radio/RuiRadio.vue';
|
|
16
|
+
import RuiRevealableTextField, { type Props as RevealableTextFieldProps } from '../components/forms/revealable-text-field/RuiRevealableTextField.vue';
|
|
17
|
+
import RuiMenuSelect, { type Props as MenuSelectProps } from '../components/forms/select/RuiMenuSelect.vue';
|
|
18
|
+
import RuiSimpleSelect, { type Props as SimpleSelectProps } from '../components/forms/select/RuiSimpleSelect.vue';
|
|
19
|
+
import RuiSlider, { type Props as SliderProps } from '../components/forms/slider/RuiSlider.vue';
|
|
20
|
+
import RuiSwitch, { type Props as SwitchProps } from '../components/forms/switch/RuiSwitch.vue';
|
|
12
21
|
import RuiTextArea, { type Props as TextAreaProps } from '../components/forms/text-area/RuiTextArea.vue';
|
|
13
22
|
import RuiTextField, { type TextFieldProps } from '../components/forms/text-field/RuiTextField.vue';
|
|
14
|
-
import
|
|
15
|
-
import
|
|
23
|
+
import RuiIcon, { type Props as IconProps } from '../components/icons/RuiIcon.vue';
|
|
24
|
+
import RuiSkeletonLoader, { type Props as SkeletonLoaderProps } from '../components/loaders/RuiSkeletonLoader.vue';
|
|
25
|
+
import RuiLogo, { type Props as LogoProps } from '../components/logos/RuiLogo.vue';
|
|
16
26
|
import RuiBadge, { type Props as BadgeProps } from '../components/overlays/badge/RuiBadge.vue';
|
|
27
|
+
import RuiBottomSheet, { type BottomSheetProps } from '../components/overlays/bottom-sheet/RuiBottomSheet.vue';
|
|
17
28
|
import RuiDialog, { type DialogProps } from '../components/overlays/dialog/RuiDialog.vue';
|
|
18
|
-
import
|
|
29
|
+
import RuiMenu, { type MenuProps } from '../components/overlays/menu/RuiMenu.vue';
|
|
30
|
+
import RuiNavigationDrawer, { type NavigationDrawerProps } from '../components/overlays/navigation-drawer/RuiNavigationDrawer.vue';
|
|
31
|
+
import RuiNotification, { type NotificationProps } from '../components/overlays/notification/RuiNotification.vue';
|
|
32
|
+
import RuiTooltip, { type Props as TooltipProps } from '../components/overlays/tooltip/RuiTooltip.vue';
|
|
19
33
|
import RuiProgress, { type Props as ProgressProps } from '../components/progress/RuiProgress.vue';
|
|
20
|
-
import
|
|
21
|
-
import
|
|
22
|
-
import RuiRevealableTextField, { type Props as RevealableTextFieldProps } from '../components/forms/revealable-text-field/RuiRevealableTextField.vue';
|
|
23
|
-
import RuiLogo, { type Props as LogoProps } from '../components/logos/RuiLogo.vue';
|
|
24
|
-
import RuiSimpleSelect, { type Props as SimpleSelectProps } from '../components/forms/select/RuiSimpleSelect.vue';
|
|
34
|
+
import RuiFooterStepper, { type Props as FooterStepperProps } from '../components/steppers/RuiFooterStepper.vue';
|
|
35
|
+
import RuiStepper, { type Props as StepperProps } from '../components/steppers/RuiStepper.vue';
|
|
25
36
|
import RuiDataTable, { type TableOptions as DataTableOptions, type Props as DataTableProps } from '../components/tables/RuiDataTable.vue';
|
|
26
37
|
import RuiTableRowExpander, { type Props as ExpandButtonProps } from '../components/tables/RuiExpandButton.vue';
|
|
27
38
|
import RuiTablePagination, { type TablePaginationData, type Props as TablePaginationProps } from '../components/tables/RuiTablePagination.vue';
|
|
28
|
-
import RuiCard, { type Props as CardProps } from '../components/cards/RuiCard.vue';
|
|
29
|
-
import RuiCardHeader, { type Props as CardHeaderProps } from '../components/cards/RuiCardHeader.vue';
|
|
30
|
-
import RuiTabs, { type Props as TabsProps } from '../components/tabs/tabs/RuiTabs.vue';
|
|
31
|
-
import RuiTab, { type Props as TabProps } from '../components/tabs/tab/RuiTab.vue';
|
|
32
|
-
import RuiTabItems, { type Props as TabItemsProps } from '../components/tabs/tab-items/RuiTabItems.vue';
|
|
33
39
|
import RuiTabItem, { type Props as TabItemProps } from '../components/tabs/tab-item/RuiTabItem.vue';
|
|
34
|
-
import
|
|
35
|
-
import
|
|
36
|
-
import
|
|
37
|
-
|
|
38
|
-
import RuiBottomSheet, { type BottomSheetProps } from '../components/overlays/bottom-sheet/RuiBottomSheet.vue';
|
|
39
|
-
import RuiColorPicker, { type Props as ColorPickerProps } from '../components/color-picker/RuiColorPicker.vue';
|
|
40
|
-
import RuiNotification, { type NotificationProps } from '../components/overlays/notification/RuiNotification.vue';
|
|
41
|
-
import RuiNavigationDrawer, { type NavigationDrawerProps } from '../components/overlays/navigation-drawer/RuiNavigationDrawer.vue';
|
|
42
|
-
import type { TableColumn as DataTableColumn, GroupKeys as DataTableGroupKeys, SortColumn as DataTableSortColumn, TableSortData as DataTableSortData } from '../components/tables/RuiTableHead.vue';
|
|
43
|
-
export { RuiAlert, RuiAutoComplete, RuiBadge, RuiButton, RuiButtonGroup, RuiCheckbox, RuiChip, RuiFooterStepper, RuiIcon, RuiLogo, RuiProgress, RuiRadio, RuiRadioGroup, RuiRevealableTextField, RuiStepper, RuiSwitch, RuiTextField, RuiTooltip, RuiMenu, RuiDataTable, RuiSimpleSelect, RuiDialog, RuiCard, RuiCardHeader, RuiTabs, RuiTab, RuiTabItems, RuiTabItem, RuiTablePagination, RuiSkeletonLoader, RuiTextArea, RuiDivider, RuiTableRowExpander, RuiMenuSelect, RuiSlider, RuiAccordions, RuiAccordion, RuiBottomSheet, RuiColorPicker, RuiNavigationDrawer, RuiNotification, AutoCompleteProps, ChipProps, TooltipProps, MenuProps, SimpleSelectProps, DataTableProps, DataTableColumn, DataTableSortColumn, DataTableOptions, TablePaginationData, DialogProps, ButtonProps, ButtonGroupProps, CardProps, CardHeaderProps, BadgeProps, AlertProps, CheckboxProps, SwitchProps, ProgressProps, RadioGroupProps, RadioProps, LogoProps, StepperProps, TextFieldProps, IconProps, FooterStepperProps, TabsProps, TabProps, TabItemsProps, TabItemProps, TablePaginationProps, RevealableTextFieldProps, SkeletonLoaderProps, DividerProps, TextAreaProps, ExpandButtonProps, DataTableSortData, DataTableGroupKeys, MenuSelectProps, SliderProps, AccordionsProps, AccordionProps, BottomSheetProps, ColorPickerProps, NavigationDrawerProps, NotificationProps, };
|
|
40
|
+
import RuiTabItems, { type Props as TabItemsProps } from '../components/tabs/tab-items/RuiTabItems.vue';
|
|
41
|
+
import RuiTab, { type Props as TabProps } from '../components/tabs/tab/RuiTab.vue';
|
|
42
|
+
import RuiTabs, { type Props as TabsProps } from '../components/tabs/tabs/RuiTabs.vue';
|
|
43
|
+
export { AccordionProps, AccordionsProps, AlertProps, AutoCompleteProps, BadgeProps, BottomSheetProps, ButtonGroupProps, ButtonProps, CardHeaderProps, CardProps, CheckboxProps, ChipProps, ColorPickerProps, DataTableColumn, DataTableGroupKeys, DataTableOptions, DataTableProps, DataTableSortColumn, DataTableSortData, DialogProps, DividerProps, ExpandButtonProps, FooterStepperProps, IconProps, LogoProps, MenuProps, MenuSelectProps, NavigationDrawerProps, NotificationProps, ProgressProps, RadioGroupProps, RadioProps, RevealableTextFieldProps, RuiAccordion, RuiAccordions, RuiAlert, RuiAutoComplete, RuiBadge, RuiBottomSheet, RuiButton, RuiButtonGroup, RuiCard, RuiCardHeader, RuiCheckbox, RuiChip, RuiColorPicker, RuiDataTable, RuiDialog, RuiDivider, RuiFooterStepper, RuiIcon, RuiLogo, RuiMenu, RuiMenuSelect, RuiNavigationDrawer, RuiNotification, RuiProgress, RuiRadio, RuiRadioGroup, RuiRevealableTextField, RuiSimpleSelect, RuiSkeletonLoader, RuiSlider, RuiStepper, RuiSwitch, RuiTab, RuiTabItem, RuiTabItems, RuiTablePagination, RuiTableRowExpander, RuiTabs, RuiTextArea, RuiTextField, RuiTooltip, SimpleSelectProps, SkeletonLoaderProps, SliderProps, StepperProps, SwitchProps, TabItemProps, TabItemsProps, TablePaginationData, TablePaginationProps, TabProps, TabsProps, TextAreaProps, TextFieldProps, TooltipProps, };
|