@dolanske/vui 1.11.7 → 1.11.9
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/LICENSE +673 -673
- package/README.md +12 -12
- package/dist/src/components/Marquee/Marquee.vue.d.ts +36 -0
- package/dist/src/index.d.ts +2 -1
- package/dist/vui.css +1 -1
- package/dist/vui.js +1903 -1874
- package/package.json +78 -78
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# VUI
|
|
2
|
-
|
|
3
|
-
1. `npm i @dolanske/vui`
|
|
4
|
-
2. In your main app entry,`import "@dolanske/vui/style` to import the global CSS
|
|
5
|
-
3. Override default style [tokens](https://dolanske.github.io/vui/docs/tokens) to fit your style
|
|
6
|
-
4. Build your thing bro
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
## Documentation
|
|
11
|
-
|
|
12
|
-
[Visit the docs here <](https://dolanske.github.io/vui/)
|
|
1
|
+
# VUI
|
|
2
|
+
|
|
3
|
+
1. `npm i @dolanske/vui`
|
|
4
|
+
2. In your main app entry,`import "@dolanske/vui/style` to import the global CSS
|
|
5
|
+
3. Override default style [tokens](https://dolanske.github.io/vui/docs/tokens) to fit your style
|
|
6
|
+
4. Build your thing bro
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Documentation
|
|
11
|
+
|
|
12
|
+
[Visit the docs here <](https://dolanske.github.io/vui/)
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
/**
|
|
3
|
+
* Animation direction
|
|
4
|
+
*/
|
|
5
|
+
direction?: 'left' | 'right';
|
|
6
|
+
/**
|
|
7
|
+
* Speed in pixels/s
|
|
8
|
+
*/
|
|
9
|
+
speed?: number;
|
|
10
|
+
/**
|
|
11
|
+
* Stepped/jerky movement instead of smooth scroll
|
|
12
|
+
*/
|
|
13
|
+
stagger?: boolean;
|
|
14
|
+
}
|
|
15
|
+
declare function __VLS_template(): {
|
|
16
|
+
attrs: Partial<{}>;
|
|
17
|
+
slots: {
|
|
18
|
+
default?(_: {}): any;
|
|
19
|
+
default?(_: {}): any;
|
|
20
|
+
};
|
|
21
|
+
refs: {
|
|
22
|
+
trackRef: HTMLDivElement;
|
|
23
|
+
};
|
|
24
|
+
rootEl: HTMLDivElement;
|
|
25
|
+
};
|
|
26
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
27
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
28
|
+
trackRef: HTMLDivElement;
|
|
29
|
+
}, HTMLDivElement>;
|
|
30
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
31
|
+
export default _default;
|
|
32
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
33
|
+
new (): {
|
|
34
|
+
$slots: S;
|
|
35
|
+
};
|
|
36
|
+
};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ import { default as Password } from './components/Input/Password.vue';
|
|
|
30
30
|
import { default as Textarea } from './components/Input/Textarea.vue';
|
|
31
31
|
import { default as Kbd } from './components/Kbd/Kbd.vue';
|
|
32
32
|
import { default as KbdGroup } from './components/Kbd/KbdGroup.vue';
|
|
33
|
+
import { default as Marquee } from './components/Marquee/Marquee.vue';
|
|
33
34
|
import { default as Confirm } from './components/Modal/Confirm.vue';
|
|
34
35
|
import { default as Modal } from './components/Modal/Modal.vue';
|
|
35
36
|
import { default as OTP } from './components/OTP/OTP.vue';
|
|
@@ -58,4 +59,4 @@ import { searchString } from './shared/helpers';
|
|
|
58
59
|
import { setColorTheme, theme } from './shared/theme';
|
|
59
60
|
import { useViewTransition } from './shared/viewTransition';
|
|
60
61
|
import * as Table from './components/Table';
|
|
61
|
-
export { Accordion, AccordionGroup, Alert, Avatar, Backdrop, Badge, BreadcrumbItem, Breadcrumbs, Button, ButtonGroup, Calendar, Card, Carousel, Checkbox, Color, type Command, Commands, Confirm, CopyClipboard, Counter, defineTable, Divider, Drawer, Dropdown, DropdownItem, DropdownTitle, Dropzone, File, Flex, Grid, Input, Kbd, KbdGroup, Modal, OTP, OTPItem, paginate, Pagination, Password, Popout, Progress, pushToast, Radio, RadioGroup, removeToast, searchString, Select, setColorTheme, Sheet, Sidebar, type Sizes, Skeleton, type Spaces as Space, type SpaceSize, Spinner, Switch, Tab, Table, Tabs, Textarea, theme, Toasts, Tooltip, useBreakpoint, useViewTransition, vuiBreakpoints, };
|
|
62
|
+
export { Accordion, AccordionGroup, Alert, Avatar, Backdrop, Badge, BreadcrumbItem, Breadcrumbs, Button, ButtonGroup, Calendar, Card, Carousel, Checkbox, Color, type Command, Commands, Confirm, CopyClipboard, Counter, defineTable, Divider, Drawer, Dropdown, DropdownItem, DropdownTitle, Dropzone, File, Flex, Grid, Input, Kbd, KbdGroup, Marquee, Modal, OTP, OTPItem, paginate, Pagination, Password, Popout, Progress, pushToast, Radio, RadioGroup, removeToast, searchString, Select, setColorTheme, Sheet, Sidebar, type Sizes, Skeleton, type Spaces as Space, type SpaceSize, Spinner, Switch, Tab, Table, Tabs, Textarea, theme, Toasts, Tooltip, useBreakpoint, useViewTransition, vuiBreakpoints, };
|