@dolanske/vui 1.14.12 → 1.14.13
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/src/components/Charts/Histogram.vue.d.ts +29 -0
- package/dist/src/index.d.ts +2 -1
- package/dist/vui.css +1 -1
- package/dist/vui.js +803 -754
- package/package.json +1 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Spaces } from '../../shared/types';
|
|
2
|
+
interface Props {
|
|
3
|
+
data: number[];
|
|
4
|
+
height?: number;
|
|
5
|
+
gap?: Spaces;
|
|
6
|
+
expand?: boolean;
|
|
7
|
+
compact?: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare function __VLS_template(): {
|
|
10
|
+
attrs: Partial<{}>;
|
|
11
|
+
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: HTMLDivElement;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
|
+
click: () => any;
|
|
18
|
+
cellClick: (index: number) => any;
|
|
19
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
20
|
+
onClick?: (() => any) | undefined;
|
|
21
|
+
onCellClick?: ((index: number) => any) | undefined;
|
|
22
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { default as ButtonGroup } from './components/Button/ButtonGroup.vue';
|
|
|
17
17
|
import { default as Calendar } from './components/Calendar/Calendar.vue';
|
|
18
18
|
import { default as Card } from './components/Card/Card.vue';
|
|
19
19
|
import { default as Carousel } from './components/Carousel/Carousel.vue';
|
|
20
|
+
import { default as Histogram } from './components/Charts/Histogram.vue';
|
|
20
21
|
import { default as Checkbox } from './components/Checkbox/Checkbox.vue';
|
|
21
22
|
import { default as ContextMenu } from './components/ContextMenu/ContextMenu.vue';
|
|
22
23
|
import { default as CopyClipboard } from './components/CopyClipboard/CopyClipboard.vue';
|
|
@@ -71,4 +72,4 @@ import { searchString } from './shared/helpers';
|
|
|
71
72
|
import { setColorTheme, theme } from './shared/theme';
|
|
72
73
|
import { useViewTransition } from './shared/viewTransition';
|
|
73
74
|
import * as Table from './components/Table';
|
|
74
|
-
export { Accordion, AccordionGroup, Alert, AspectRatio, Avatar, AvatarGroup, Backdrop, Badge, BadgeGroup, BreadcrumbItem, Breadcrumbs, type Breakpoints, Button, ButtonGroup, Calendar, Card, Carousel, Checkbox, Color, type Command, Commands, Confirm, ContextMenu, CopyClipboard, Counter, defineTable, Divider, Drawer, Dropdown, DropdownItem, DropdownTitle, Dropzone, File, Flex, Grid, Indicator, Input, Kbd, KbdGroup, Marquee, Menubar, MenuItem, Modal, OTP, OTPItem, Overflow, paginate, Pagination, Password, Popout, PopoutHover, Progress, pushToast, Radio, RadioGroup, removeToast, Resizable, ResizableView, searchString, Select, type SelectOption, setColorTheme, Sheet, Sidebar, type Size, type Sizes, Skeleton, Slider, type Spaces, type SpaceSize, Spinner, Switch, Tab, Table, Tabs, Textarea, theme, Toasts, Tooltip, useBreakpoint, useViewTransition, vuiBreakpoints, };
|
|
75
|
+
export { Accordion, AccordionGroup, Alert, AspectRatio, Avatar, AvatarGroup, Backdrop, Badge, BadgeGroup, BreadcrumbItem, Breadcrumbs, type Breakpoints, Button, ButtonGroup, Calendar, Card, Carousel, Checkbox, Color, type Command, Commands, Confirm, ContextMenu, CopyClipboard, Counter, defineTable, Divider, Drawer, Dropdown, DropdownItem, DropdownTitle, Dropzone, File, Flex, Grid, Histogram, Indicator, Input, Kbd, KbdGroup, Marquee, Menubar, MenuItem, Modal, OTP, OTPItem, Overflow, paginate, Pagination, Password, Popout, PopoutHover, Progress, pushToast, Radio, RadioGroup, removeToast, Resizable, ResizableView, searchString, Select, type SelectOption, setColorTheme, Sheet, Sidebar, type Size, type Sizes, Skeleton, Slider, type Spaces, type SpaceSize, Spinner, Switch, Tab, Table, Tabs, Textarea, theme, Toasts, Tooltip, useBreakpoint, useViewTransition, vuiBreakpoints, };
|