@rotki/ui-library 1.3.0 → 1.4.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-Boq-RcMw.js +7959 -0
- package/dist/components/accordions/accordion/RuiAccordion.vue.d.ts +26 -19
- package/dist/components/accordions/accordions/RuiAccordions.vue.d.ts +9 -9
- package/dist/components/alerts/RuiAlert.vue.d.ts +23 -19
- package/dist/components/buttons/button/RuiButton.vue.d.ts +8 -10
- package/dist/components/buttons/button-group/RuiButtonGroup.vue.d.ts +7 -9
- package/dist/components/cards/RuiCard.vue.d.ts +26 -21
- package/dist/components/cards/RuiCardHeader.vue.d.ts +22 -17
- package/dist/components/chips/RuiChip.vue.d.ts +22 -17
- package/dist/components/color-picker/RuiColorBoard.vue.d.ts +4 -4
- package/dist/components/color-picker/RuiColorDisplay.vue.d.ts +3 -3
- package/dist/components/color-picker/RuiColorHue.vue.d.ts +3 -3
- package/dist/components/color-picker/RuiColorInput.vue.d.ts +3 -3
- package/dist/components/color-picker/RuiColorPicker.vue.d.ts +9 -9
- package/dist/components/divider/RuiDivider.vue.d.ts +8 -8
- package/dist/components/forms/auto-complete/RuiAutoComplete.vue.d.ts +260 -19
- package/dist/components/forms/checkbox/RuiCheckbox.vue.d.ts +23 -16
- package/dist/components/forms/radio-button/radio/RuiRadio.vue.d.ts +7 -9
- package/dist/components/forms/radio-button/radio-group/RuiRadioGroup.vue.d.ts +6 -8
- package/dist/components/forms/revealable-text-field/RuiRevealableTextField.vue.d.ts +29 -18
- package/dist/components/forms/select/RuiMenuSelect.vue.d.ts +7 -9
- package/dist/components/forms/select/RuiSimpleSelect.vue.d.ts +9 -9
- package/dist/components/forms/slider/RuiSlider.vue.d.ts +10 -10
- package/dist/components/forms/switch/RuiSwitch.vue.d.ts +21 -16
- package/dist/components/forms/text-area/RuiTextArea.vue.d.ts +28 -18
- package/dist/components/forms/text-field/RuiTextField.vue.d.ts +29 -19
- package/dist/components/helpers/RuiFormTextDetail.vue.d.ts +8 -8
- package/dist/components/icons/RuiIcon.vue.d.ts +8 -8
- package/dist/components/index.es.js +1 -1
- package/dist/components/loaders/RuiSkeletonBase.vue.d.ts +8 -8
- package/dist/components/loaders/RuiSkeletonLoader.vue.d.ts +8 -8
- package/dist/components/logos/RuiLogo.vue.d.ts +8 -8
- package/dist/components/overlays/badge/RuiBadge.vue.d.ts +23 -18
- package/dist/components/overlays/bottom-sheet/RuiBottomSheet.vue.d.ts +20 -15
- package/dist/components/overlays/dialog/RuiDialog.vue.d.ts +32 -25
- package/dist/components/overlays/menu/RuiMenu.vue.d.ts +41 -33
- package/dist/components/overlays/navigation-drawer/RuiNavigationDrawer.vue.d.ts +34 -27
- package/dist/components/overlays/notification/RuiNotification.vue.d.ts +21 -16
- package/dist/components/overlays/tooltip/RuiTooltip.vue.d.ts +28 -20
- package/dist/components/progress/RuiProgress.vue.d.ts +8 -8
- package/dist/components/steppers/RuiFooterStepper.vue.d.ts +9 -9
- package/dist/components/steppers/RuiStepper.vue.d.ts +25 -18
- package/dist/components/steppers/RuiStepperCustomIcon.vue.d.ts +8 -8
- package/dist/components/steppers/RuiStepperIcon.vue.d.ts +8 -8
- package/dist/components/tables/RuiDataTable.vue.d.ts +15 -24
- package/dist/components/tables/RuiExpandButton.vue.d.ts +20 -15
- package/dist/components/tables/RuiTableHead.vue.d.ts +9 -15
- package/dist/components/tables/RuiTablePagination.vue.d.ts +9 -9
- package/dist/components/tabs/tab/RuiTab.vue.d.ts +28 -23
- package/dist/components/tabs/tab-item/RuiTabItem.vue.d.ts +21 -16
- package/dist/components/tabs/tab-items/RuiTabItems.vue.d.ts +6 -8
- package/dist/components/tabs/tabs/RuiTabs.vue.d.ts +9 -9
- package/dist/composables/dropdown-menu.d.ts +2 -2
- package/dist/composables/icons.d.ts +1 -1
- package/dist/composables/popper.d.ts +6 -6
- package/dist/composables/sticky-header.d.ts +3 -3
- package/dist/index.es.js +2 -2
- package/dist/style.css +1 -1
- package/dist/utils/generate-id.d.ts +1 -1
- package/dist/web-types.json +73 -50
- package/package.json +33 -33
- package/dist/RuiNavigationDrawer-DGs1QHIz.js +0 -7951
|
@@ -17,15 +17,15 @@ export interface PopperOptions {
|
|
|
17
17
|
export declare const DEFAULT_POPPER_OPTIONS: PopperOptions;
|
|
18
18
|
export declare const createPopper: <TModifier extends Partial<import("@popperjs/core").Modifier<any, any>>>(reference: Element | VirtualElement, popper: HTMLElement, options?: Partial<import("@popperjs/core").OptionsGeneric<TModifier>>) => Instance;
|
|
19
19
|
export declare function usePopper(options: Ref<PopperOptions>, disabled?: Ref<boolean>, openDelay?: Ref<number>, closeDelay?: Ref<number>, virtualReference?: Ref<Element | VirtualElement>): {
|
|
20
|
-
instance: Ref<Instance | null>;
|
|
21
|
-
leavePending: Ref<boolean>;
|
|
20
|
+
instance: Ref<Instance | null, Instance | null>;
|
|
21
|
+
leavePending: Ref<boolean, boolean>;
|
|
22
22
|
onClose: (immediate?: boolean) => void;
|
|
23
23
|
onLeavePending: () => void;
|
|
24
24
|
onOpen: (immediate?: boolean) => void;
|
|
25
25
|
onPopperLeave: () => void;
|
|
26
|
-
open: Ref<boolean>;
|
|
27
|
-
popper: Ref<MaybeElement>;
|
|
28
|
-
popperEnter: Ref<boolean>;
|
|
29
|
-
reference: Ref<MaybeElement>;
|
|
26
|
+
open: Ref<boolean, boolean>;
|
|
27
|
+
popper: Ref<MaybeElement, MaybeElement>;
|
|
28
|
+
popperEnter: Ref<boolean, boolean>;
|
|
29
|
+
reference: Ref<MaybeElement, MaybeElement>;
|
|
30
30
|
updatePopper: () => void;
|
|
31
31
|
};
|
|
@@ -3,7 +3,7 @@ import type { MaybeRef } from '@vueuse/shared';
|
|
|
3
3
|
* Setup sticky table header
|
|
4
4
|
*/
|
|
5
5
|
export declare function useStickyTableHeader(sticky?: MaybeRef<boolean>, offsetTop?: MaybeRef<number>): {
|
|
6
|
-
stick: globalThis.Ref<boolean>;
|
|
7
|
-
table: globalThis.Ref<HTMLTableElement | null>;
|
|
8
|
-
tableScroller: globalThis.Ref<HTMLElement | null>;
|
|
6
|
+
stick: globalThis.Ref<boolean, boolean>;
|
|
7
|
+
table: globalThis.Ref<HTMLTableElement | null, HTMLTableElement | null>;
|
|
8
|
+
tableScroller: globalThis.Ref<HTMLElement | null, HTMLElement | null>;
|
|
9
9
|
};
|
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-Boq-RcMw.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-Boq-RcMw.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";
|