@dolanske/vui 1.1.1 → 1.1.2
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 +1 -1
- package/package.json +1 -1
- package/src/components/Card/card.scss +2 -0
- package/src/components/Divider/Divider.vue +1 -7
- package/src/components/Divider/divider.scss +9 -7
- package/src/components/Grid/Grid.vue +5 -0
- package/src/components/Select/Select.vue +0 -1
- package/src/components/Select/select.scss +4 -0
- package/src/components/Spinner/spinner.scss +1 -1
- package/src/examples/ExampleTabs.vue +17 -0
- package/src/style/layout.scss +3 -0
- package/src/vite-env.d.ts +1 -1
- package/dist/components/Accordion/Accordion.vue.d.ts +0 -47
- package/dist/components/Accordion/AccordionGroup.vue.d.ts +0 -35
- package/dist/components/Alert/Alert.vue.d.ts +0 -36
- package/dist/components/Avatar/Avatar.vue.d.ts +0 -25
- package/dist/components/Badge/Badge.vue.d.ts +0 -22
- package/dist/components/Breadcrumbs/BreadcrumbItem.vue.d.ts +0 -22
- package/dist/components/Breadcrumbs/Breadcrumbs.vue.d.ts +0 -28
- package/dist/components/Button/Button.vue.d.ts +0 -32
- package/dist/components/ButtonGroup/ButtonGroup.vue.d.ts +0 -22
- package/dist/components/Calendar/Calendar.vue.d.ts +0 -27
- package/dist/components/Card/Card.vue.d.ts +0 -26
- package/dist/components/Checkbox/Checkbox.vue.d.ts +0 -33
- package/dist/components/CopyClipboard/CopyClipboard.vue.d.ts +0 -41
- package/dist/components/Divider/Divider.vue.d.ts +0 -23
- package/dist/components/Drawer/Drawer.vue.d.ts +0 -53
- package/dist/components/Dropdown/Dropdown.vue.d.ts +0 -183
- package/dist/components/Dropdown/DropdownItem.vue.d.ts +0 -23
- package/dist/components/Dropdown/DropdownTitle.vue.d.ts +0 -21
- package/dist/components/Flex/Flex.vue.d.ts +0 -41
- package/dist/components/Grid/Grid.vue.d.ts +0 -33
- package/dist/components/Input/Color.vue.d.ts +0 -11
- package/dist/components/Input/Counter.vue.d.ts +0 -19
- package/dist/components/Input/Dropzone.vue.d.ts +0 -193
- package/dist/components/Input/File.vue.d.ts +0 -8
- package/dist/components/Input/Input.vue.d.ts +0 -56
- package/dist/components/Input/Password.vue.d.ts +0 -6
- package/dist/components/Input/Textarea.vue.d.ts +0 -31
- package/dist/components/Kbd/Kbd.vue.d.ts +0 -23
- package/dist/components/Kbd/KbdGroup.vue.d.ts +0 -24
- package/dist/components/Modal/Confirm.vue.d.ts +0 -43
- package/dist/components/Modal/Modal.vue.d.ts +0 -58
- package/dist/components/OTP/OTP.vue.d.ts +0 -44
- package/dist/components/OTP/OTPItem.vue.d.ts +0 -5
- package/dist/components/Pagination/Pagination.vue.d.ts +0 -46
- package/dist/components/Pagination/pagination.d.ts +0 -12
- package/dist/components/Popout/Popout.vue.d.ts +0 -42
- package/dist/components/Progress/Progress.vue.d.ts +0 -33
- package/dist/components/Radio/Radio.vue.d.ts +0 -29
- package/dist/components/Radio/RadioGroup.vue.d.ts +0 -32
- package/dist/components/Select/Select.vue.d.ts +0 -35
- package/dist/components/Sheet/Sheet.vue.d.ts +0 -47
- package/dist/components/Sidebar/Sidebar.vue.d.ts +0 -70
- package/dist/components/Skeleton/Skeleton.vue.d.ts +0 -8
- package/dist/components/Spinner/Spinner.vue.d.ts +0 -6
- package/dist/components/Switch/Switch.vue.d.ts +0 -28
- package/dist/components/Table/Cell.vue.d.ts +0 -22
- package/dist/components/Table/Head.vue.d.ts +0 -30
- package/dist/components/Table/Root.vue.d.ts +0 -41
- package/dist/components/Table/SelectAll.vue.d.ts +0 -2
- package/dist/components/Table/SelectRow.vue.d.ts +0 -6
- package/dist/components/Table/index.d.ts +0 -6
- package/dist/components/Table/table.d.ts +0 -68
- package/dist/components/Tabs/Tab.vue.d.ts +0 -22
- package/dist/components/Tabs/Tabs.vue.d.ts +0 -48
- package/dist/components/Toast/Toasts.vue.d.ts +0 -2
- package/dist/components/Toast/toast.d.ts +0 -287
- package/dist/components/Tooltip/Tooltip.vue.d.ts +0 -33
- package/dist/index.d.ts +0 -56
- package/dist/internal/Backdrop/Backdrop.vue.d.ts +0 -21
- package/dist/shared/helpers.d.ts +0 -32
- package/dist/shared/theme.d.ts +0 -3
- package/dist/shared/types.d.ts +0 -24
- package/dist/vui.css +0 -1
- package/dist/vui.js +0 -16130
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { InputProps } from './Input.vue';
|
|
2
|
-
type Props = Omit<InputProps, 'type'> & {
|
|
3
|
-
resize?: boolean | 'vertical' | 'horizontal';
|
|
4
|
-
autoResize?: boolean;
|
|
5
|
-
};
|
|
6
|
-
type __VLS_Props = Props;
|
|
7
|
-
type __VLS_PublicProps = {
|
|
8
|
-
modelValue?: string;
|
|
9
|
-
} & __VLS_Props;
|
|
10
|
-
declare function __VLS_template(): {
|
|
11
|
-
attrs: Partial<{}>;
|
|
12
|
-
slots: {
|
|
13
|
-
before?(_: {}): any;
|
|
14
|
-
after?(_: {}): any;
|
|
15
|
-
};
|
|
16
|
-
refs: {};
|
|
17
|
-
rootEl: HTMLDivElement;
|
|
18
|
-
};
|
|
19
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
-
"update:modelValue": (value: string) => any;
|
|
22
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
23
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
24
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
25
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
26
|
-
export default _default;
|
|
27
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
28
|
-
new (): {
|
|
29
|
-
$slots: S;
|
|
30
|
-
};
|
|
31
|
-
};
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
interface Props {
|
|
2
|
-
/**
|
|
3
|
-
* Specify the key or the combination of keys connected with "+". Make sure
|
|
4
|
-
* there are no white spaces between letters.
|
|
5
|
-
*
|
|
6
|
-
* keys="Escape" keys="Ctrl+A"
|
|
7
|
-
*/
|
|
8
|
-
keys: string;
|
|
9
|
-
/**
|
|
10
|
-
* Display custom label instead of the automatically formatted keys.
|
|
11
|
-
*/
|
|
12
|
-
label?: string;
|
|
13
|
-
/**
|
|
14
|
-
* Show active state when this combination of keys is pressed.
|
|
15
|
-
*/
|
|
16
|
-
highlight?: boolean;
|
|
17
|
-
}
|
|
18
|
-
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
-
trigger: () => any;
|
|
20
|
-
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
21
|
-
onTrigger?: (() => any) | undefined;
|
|
22
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
23
|
-
export default _default;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { default as Kbd } from './Kbd.vue';
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
|
-
slots: Readonly<{
|
|
5
|
-
default: () => Array<typeof Kbd>;
|
|
6
|
-
}> & {
|
|
7
|
-
default: () => Array<typeof Kbd>;
|
|
8
|
-
};
|
|
9
|
-
refs: {};
|
|
10
|
-
rootEl: any;
|
|
11
|
-
};
|
|
12
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
|
-
trigger: () => any;
|
|
15
|
-
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
16
|
-
onTrigger?: (() => any) | undefined;
|
|
17
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
18
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
19
|
-
export default _default;
|
|
20
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
21
|
-
new (): {
|
|
22
|
-
$slots: S;
|
|
23
|
-
};
|
|
24
|
-
};
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { Variants } from '../Button/Button.vue';
|
|
2
|
-
import { ModalProps } from './Modal.vue';
|
|
3
|
-
type Props = {
|
|
4
|
-
title?: string;
|
|
5
|
-
content?: string;
|
|
6
|
-
confirmText?: string;
|
|
7
|
-
confirmVariant?: Variants;
|
|
8
|
-
cancelText?: string;
|
|
9
|
-
showCancel?: boolean;
|
|
10
|
-
} & Partial<ModalProps>;
|
|
11
|
-
declare function __VLS_template(): {
|
|
12
|
-
attrs: Partial<{}>;
|
|
13
|
-
slots: {
|
|
14
|
-
default?(_: {}): any;
|
|
15
|
-
};
|
|
16
|
-
refs: {};
|
|
17
|
-
rootEl: any;
|
|
18
|
-
};
|
|
19
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
-
close: () => any;
|
|
22
|
-
confirm: () => any;
|
|
23
|
-
cancel: () => any;
|
|
24
|
-
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
25
|
-
onClose?: (() => any) | undefined;
|
|
26
|
-
onConfirm?: (() => any) | undefined;
|
|
27
|
-
onCancel?: (() => any) | undefined;
|
|
28
|
-
}>, {
|
|
29
|
-
open: boolean;
|
|
30
|
-
size: import('../../shared/types').Sizes | "full" | "screen";
|
|
31
|
-
cancelText: string;
|
|
32
|
-
canDismiss: boolean;
|
|
33
|
-
confirmText: string;
|
|
34
|
-
confirmVariant: Variants;
|
|
35
|
-
showCancel: boolean;
|
|
36
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
37
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
38
|
-
export default _default;
|
|
39
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
40
|
-
new (): {
|
|
41
|
-
$slots: S;
|
|
42
|
-
};
|
|
43
|
-
};
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { Sizes } from '../../shared/types';
|
|
2
|
-
import { Props as CardProps } from '../Card/Card.vue';
|
|
3
|
-
export interface ModalProps {
|
|
4
|
-
/**
|
|
5
|
-
* Controls the visibility of the modal
|
|
6
|
-
*/
|
|
7
|
-
open?: boolean;
|
|
8
|
-
/**
|
|
9
|
-
* Controls the width of the modal
|
|
10
|
-
*/
|
|
11
|
-
size?: Sizes | 'full' | 'screen';
|
|
12
|
-
/**
|
|
13
|
-
* Modal wraps a floating card. You can optinally pass in any props you'd pass
|
|
14
|
-
* into the <Card /> component.
|
|
15
|
-
*/
|
|
16
|
-
card?: CardProps;
|
|
17
|
-
/**
|
|
18
|
-
* Modal will not overflow the screen, but its card's content will be scrollable instead.
|
|
19
|
-
*/
|
|
20
|
-
scrollable?: boolean;
|
|
21
|
-
/**
|
|
22
|
-
* Modal appears in the center of the screen
|
|
23
|
-
*/
|
|
24
|
-
centered?: boolean;
|
|
25
|
-
/**
|
|
26
|
-
* Wether modal can be closed by clicking the X button
|
|
27
|
-
*/
|
|
28
|
-
canDismiss?: boolean;
|
|
29
|
-
}
|
|
30
|
-
declare function __VLS_template(): {
|
|
31
|
-
attrs: Partial<{}>;
|
|
32
|
-
slots: {
|
|
33
|
-
header?(_: {
|
|
34
|
-
close: () => void;
|
|
35
|
-
}): any;
|
|
36
|
-
default?(_: {
|
|
37
|
-
close: () => void;
|
|
38
|
-
}): any;
|
|
39
|
-
footer?(_: {
|
|
40
|
-
close: () => void;
|
|
41
|
-
}): any;
|
|
42
|
-
};
|
|
43
|
-
refs: {};
|
|
44
|
-
rootEl: any;
|
|
45
|
-
};
|
|
46
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
47
|
-
declare const __VLS_component: import('vue').DefineComponent<ModalProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
48
|
-
close: () => any;
|
|
49
|
-
}, string, import('vue').PublicProps, Readonly<ModalProps> & Readonly<{
|
|
50
|
-
onClose?: (() => any) | undefined;
|
|
51
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
52
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
53
|
-
export default _default;
|
|
54
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
55
|
-
new (): {
|
|
56
|
-
$slots: S;
|
|
57
|
-
};
|
|
58
|
-
};
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import { ModelRef, Ref } from 'vue';
|
|
2
|
-
export interface OtpContext {
|
|
3
|
-
otpValue: ModelRef<string>;
|
|
4
|
-
cursorIndex: Ref<number>;
|
|
5
|
-
redacted: Ref<boolean>;
|
|
6
|
-
register: () => void;
|
|
7
|
-
}
|
|
8
|
-
interface Props {
|
|
9
|
-
mode?: 'num' | 'char' | 'both';
|
|
10
|
-
redacted?: boolean;
|
|
11
|
-
}
|
|
12
|
-
type __VLS_Props = Props;
|
|
13
|
-
type __VLS_PublicProps = {
|
|
14
|
-
modelValue?: string;
|
|
15
|
-
} & __VLS_Props;
|
|
16
|
-
declare function __VLS_template(): {
|
|
17
|
-
attrs: Partial<{}>;
|
|
18
|
-
slots: {
|
|
19
|
-
default?(_: {}): any;
|
|
20
|
-
};
|
|
21
|
-
refs: {
|
|
22
|
-
inputRef: HTMLInputElement;
|
|
23
|
-
};
|
|
24
|
-
rootEl: HTMLDivElement;
|
|
25
|
-
};
|
|
26
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
27
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
|
-
change: (value?: string | undefined) => any;
|
|
29
|
-
"update:modelValue": (value: string) => any;
|
|
30
|
-
complete: (value: string) => any;
|
|
31
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
32
|
-
onChange?: ((value?: string | undefined) => any) | undefined;
|
|
33
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
34
|
-
onComplete?: ((value: string) => any) | undefined;
|
|
35
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
36
|
-
inputRef: HTMLInputElement;
|
|
37
|
-
}, HTMLDivElement>;
|
|
38
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
39
|
-
export default _default;
|
|
40
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
41
|
-
new (): {
|
|
42
|
-
$slots: S;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
interface Props {
|
|
2
|
-
i: number;
|
|
3
|
-
}
|
|
4
|
-
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
5
|
-
export default _default;
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { Variants } from '../Button/Button.vue';
|
|
2
|
-
import { Pagination } from './pagination';
|
|
3
|
-
interface Props {
|
|
4
|
-
numbers?: boolean;
|
|
5
|
-
pagination: Pagination;
|
|
6
|
-
prevNext?: boolean;
|
|
7
|
-
firstLast?: boolean;
|
|
8
|
-
variant?: Variants;
|
|
9
|
-
}
|
|
10
|
-
declare function setNext(): void;
|
|
11
|
-
declare function setPrev(): void;
|
|
12
|
-
declare function __VLS_template(): {
|
|
13
|
-
attrs: Partial<{}>;
|
|
14
|
-
slots: {
|
|
15
|
-
start?(_: {}): any;
|
|
16
|
-
prev?(_: {
|
|
17
|
-
disabled: boolean;
|
|
18
|
-
setPage: typeof setPrev;
|
|
19
|
-
}): any;
|
|
20
|
-
next?(_: {
|
|
21
|
-
disabled: boolean;
|
|
22
|
-
setPage: typeof setNext;
|
|
23
|
-
}): any;
|
|
24
|
-
end?(_: {}): any;
|
|
25
|
-
};
|
|
26
|
-
refs: {};
|
|
27
|
-
rootEl: HTMLDivElement;
|
|
28
|
-
};
|
|
29
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
30
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
31
|
-
change: (page: number) => any;
|
|
32
|
-
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
33
|
-
onChange?: ((page: number) => any) | undefined;
|
|
34
|
-
}>, {
|
|
35
|
-
variant: Variants;
|
|
36
|
-
numbers: boolean;
|
|
37
|
-
prevNext: boolean;
|
|
38
|
-
firstLast: boolean;
|
|
39
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
40
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
41
|
-
export default _default;
|
|
42
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
43
|
-
new (): {
|
|
44
|
-
$slots: S;
|
|
45
|
-
};
|
|
46
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export interface Pagination {
|
|
2
|
-
totalItems: number;
|
|
3
|
-
currentPage: number;
|
|
4
|
-
perPage: number;
|
|
5
|
-
totalPages: number;
|
|
6
|
-
startPage: number;
|
|
7
|
-
endPage: number;
|
|
8
|
-
startIndex: number;
|
|
9
|
-
endIndex: number;
|
|
10
|
-
pages: number[];
|
|
11
|
-
}
|
|
12
|
-
export declare function paginate(totalItems: number, currentPage?: number, perPage?: number, maxPages?: number): Pagination;
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { Placement, PopoutMaybeElement } from '../../shared/types';
|
|
2
|
-
export interface Props {
|
|
3
|
-
/**
|
|
4
|
-
* Reference to the HTML element the Popout is anchored to
|
|
5
|
-
*/
|
|
6
|
-
anchor: PopoutMaybeElement<HTMLElement>;
|
|
7
|
-
/**
|
|
8
|
-
* Override the autoPlacement option
|
|
9
|
-
*/
|
|
10
|
-
placement?: Placement;
|
|
11
|
-
/**
|
|
12
|
-
* Distance between the anchor and the rendered tooltip
|
|
13
|
-
*/
|
|
14
|
-
offset?: number;
|
|
15
|
-
}
|
|
16
|
-
declare function __VLS_template(): {
|
|
17
|
-
attrs: Partial<{}>;
|
|
18
|
-
slots: {
|
|
19
|
-
default?(_: {}): any;
|
|
20
|
-
};
|
|
21
|
-
refs: {
|
|
22
|
-
popout: 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, {
|
|
28
|
-
clickOutside: () => any;
|
|
29
|
-
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
30
|
-
onClickOutside?: (() => any) | undefined;
|
|
31
|
-
}>, {
|
|
32
|
-
offset: number;
|
|
33
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
34
|
-
popout: HTMLDivElement;
|
|
35
|
-
}, HTMLDivElement>;
|
|
36
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
37
|
-
export default _default;
|
|
38
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
39
|
-
new (): {
|
|
40
|
-
$slots: S;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
interface Props {
|
|
2
|
-
/**
|
|
3
|
-
* Will randomly increment but never actually reach the end
|
|
4
|
-
*/
|
|
5
|
-
fake?: boolean;
|
|
6
|
-
/**
|
|
7
|
-
* Indicator color. Use CSS color values or variables
|
|
8
|
-
*/
|
|
9
|
-
color?: string;
|
|
10
|
-
/**
|
|
11
|
-
* Displays loader at the top of the page. It is only displayed when the
|
|
12
|
-
* progress is between 0 and 100 (exclusive).
|
|
13
|
-
*/
|
|
14
|
-
fixed?: boolean;
|
|
15
|
-
/**
|
|
16
|
-
* Height
|
|
17
|
-
*/
|
|
18
|
-
height?: number | string;
|
|
19
|
-
}
|
|
20
|
-
type __VLS_Props = Props;
|
|
21
|
-
type __VLS_PublicProps = {
|
|
22
|
-
modelValue?: number;
|
|
23
|
-
} & __VLS_Props;
|
|
24
|
-
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
25
|
-
done: () => any;
|
|
26
|
-
"update:modelValue": (value: number) => any;
|
|
27
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
28
|
-
onDone?: (() => any) | undefined;
|
|
29
|
-
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
30
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
31
|
-
progress: HTMLDivElement;
|
|
32
|
-
}, HTMLDivElement>;
|
|
33
|
-
export default _default;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
export interface RadioProps {
|
|
2
|
-
label?: string;
|
|
3
|
-
disabled?: boolean;
|
|
4
|
-
value: any;
|
|
5
|
-
accent?: boolean;
|
|
6
|
-
}
|
|
7
|
-
type __VLS_Props = RadioProps;
|
|
8
|
-
type __VLS_PublicProps = {
|
|
9
|
-
modelValue?: any;
|
|
10
|
-
} & __VLS_Props;
|
|
11
|
-
declare function __VLS_template(): {
|
|
12
|
-
attrs: Partial<{}>;
|
|
13
|
-
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
14
|
-
refs: {};
|
|
15
|
-
rootEl: HTMLDivElement;
|
|
16
|
-
};
|
|
17
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
-
"update:modelValue": (value: any) => any;
|
|
20
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
21
|
-
"onUpdate:modelValue"?: ((value: any) => 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
|
-
};
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { FlexProps } from '../Flex/Flex.vue';
|
|
2
|
-
import { default as Radio } from './Radio.vue';
|
|
3
|
-
interface Props extends FlexProps {
|
|
4
|
-
disabled?: boolean;
|
|
5
|
-
}
|
|
6
|
-
type __VLS_Props = Props;
|
|
7
|
-
type __VLS_PublicProps = {
|
|
8
|
-
modelValue?: any;
|
|
9
|
-
} & __VLS_Props;
|
|
10
|
-
declare function __VLS_template(): {
|
|
11
|
-
attrs: Partial<{}>;
|
|
12
|
-
slots: Readonly<{
|
|
13
|
-
default: () => Array<typeof Radio>;
|
|
14
|
-
}> & {
|
|
15
|
-
default: () => Array<typeof Radio>;
|
|
16
|
-
};
|
|
17
|
-
refs: {};
|
|
18
|
-
rootEl: HTMLDivElement;
|
|
19
|
-
};
|
|
20
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
21
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
|
-
"update:modelValue": (value: any) => any;
|
|
23
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
24
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
25
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
26
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
|
-
export default _default;
|
|
28
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
29
|
-
new (): {
|
|
30
|
-
$slots: S;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
export type SelectOption = {
|
|
2
|
-
value: any;
|
|
3
|
-
label: string;
|
|
4
|
-
};
|
|
5
|
-
declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
6
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
7
|
-
readonly "onUpdate:modelValue"?: ((value: SelectOption[] | undefined) => any) | undefined;
|
|
8
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue"> & ({
|
|
9
|
-
modelValue?: SelectOption[] | undefined;
|
|
10
|
-
} & {
|
|
11
|
-
single?: boolean;
|
|
12
|
-
readonly?: boolean;
|
|
13
|
-
options: SelectOption[];
|
|
14
|
-
label?: string;
|
|
15
|
-
placeholder?: string;
|
|
16
|
-
required?: boolean;
|
|
17
|
-
expand?: boolean;
|
|
18
|
-
hint?: string;
|
|
19
|
-
search?: boolean;
|
|
20
|
-
maxActiveOptions?: number;
|
|
21
|
-
showClear?: boolean;
|
|
22
|
-
disabled?: boolean;
|
|
23
|
-
errors?: string[];
|
|
24
|
-
}) & Partial<{}>> & import('vue').PublicProps;
|
|
25
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
26
|
-
attrs: any;
|
|
27
|
-
slots: {};
|
|
28
|
-
emit: (evt: "update:modelValue", value: SelectOption[] | undefined) => void;
|
|
29
|
-
}>) => import('vue').VNode & {
|
|
30
|
-
__ctx?: Awaited<typeof __VLS_setup>;
|
|
31
|
-
};
|
|
32
|
-
export default _default;
|
|
33
|
-
type __VLS_PrettifyLocal<T> = {
|
|
34
|
-
[K in keyof T]: T[K];
|
|
35
|
-
} & {};
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
interface Props {
|
|
2
|
-
/**
|
|
3
|
-
* Controls the visibility of the sheet
|
|
4
|
-
*/
|
|
5
|
-
open?: boolean;
|
|
6
|
-
/**
|
|
7
|
-
* Controls the position of the sheet
|
|
8
|
-
*/
|
|
9
|
-
position?: 'left' | 'right' | 'top' | 'bottom';
|
|
10
|
-
/**
|
|
11
|
-
* Sets the width of the sheet
|
|
12
|
-
*/
|
|
13
|
-
size?: number | string;
|
|
14
|
-
/**
|
|
15
|
-
* Wether to show a divider between header and content
|
|
16
|
-
*/
|
|
17
|
-
separator?: boolean;
|
|
18
|
-
}
|
|
19
|
-
declare function __VLS_template(): {
|
|
20
|
-
attrs: Partial<{}>;
|
|
21
|
-
slots: {
|
|
22
|
-
header?(_: {
|
|
23
|
-
close: () => void;
|
|
24
|
-
}): any;
|
|
25
|
-
default?(_: {
|
|
26
|
-
close: () => void;
|
|
27
|
-
}): any;
|
|
28
|
-
footer?(_: {
|
|
29
|
-
close: () => void;
|
|
30
|
-
}): any;
|
|
31
|
-
};
|
|
32
|
-
refs: {};
|
|
33
|
-
rootEl: any;
|
|
34
|
-
};
|
|
35
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
36
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
37
|
-
close: () => any;
|
|
38
|
-
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
39
|
-
onClose?: (() => any) | undefined;
|
|
40
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
41
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
42
|
-
export default _default;
|
|
43
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
44
|
-
new (): {
|
|
45
|
-
$slots: S;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = Props;
|
|
2
|
-
interface Props {
|
|
3
|
-
width?: number;
|
|
4
|
-
/**
|
|
5
|
-
* Controls wether the sidebar is displayed in full size, or a small version
|
|
6
|
-
*/
|
|
7
|
-
mini?: boolean;
|
|
8
|
-
/**
|
|
9
|
-
* Allow sidebar showing up, when user hovers at very left of the screen. The
|
|
10
|
-
* sidebar will apear over content, not pushing anything over
|
|
11
|
-
*/
|
|
12
|
-
appear?: boolean;
|
|
13
|
-
/**
|
|
14
|
-
* Add edges of background around sidebar
|
|
15
|
-
*/
|
|
16
|
-
floaty?: boolean;
|
|
17
|
-
}
|
|
18
|
-
type __VLS_PublicProps = {
|
|
19
|
-
modelValue?: boolean;
|
|
20
|
-
} & __VLS_Props;
|
|
21
|
-
declare function __VLS_template(): {
|
|
22
|
-
attrs: Partial<{}>;
|
|
23
|
-
slots: {
|
|
24
|
-
header?(_: {
|
|
25
|
-
mini: boolean;
|
|
26
|
-
floaty: boolean;
|
|
27
|
-
width: number;
|
|
28
|
-
open: import('vue').ModelRef<boolean, string, boolean, boolean>;
|
|
29
|
-
close: () => false;
|
|
30
|
-
}): any;
|
|
31
|
-
default?(_: {
|
|
32
|
-
mini: boolean;
|
|
33
|
-
floaty: boolean;
|
|
34
|
-
width: number;
|
|
35
|
-
open: import('vue').ModelRef<boolean, string, boolean, boolean>;
|
|
36
|
-
close: () => false;
|
|
37
|
-
}): any;
|
|
38
|
-
footer?(_: {
|
|
39
|
-
mini: boolean;
|
|
40
|
-
floaty: boolean;
|
|
41
|
-
width: number;
|
|
42
|
-
open: import('vue').ModelRef<boolean, string, boolean, boolean>;
|
|
43
|
-
close: () => false;
|
|
44
|
-
}): any;
|
|
45
|
-
};
|
|
46
|
-
refs: {
|
|
47
|
-
wrap: HTMLDivElement;
|
|
48
|
-
sidebar: HTMLElement;
|
|
49
|
-
};
|
|
50
|
-
rootEl: HTMLDivElement;
|
|
51
|
-
};
|
|
52
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
53
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
54
|
-
"update:modelValue": (value: boolean) => any;
|
|
55
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
56
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
57
|
-
}>, {
|
|
58
|
-
width: number;
|
|
59
|
-
mini: boolean;
|
|
60
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
61
|
-
wrap: HTMLDivElement;
|
|
62
|
-
sidebar: HTMLElement;
|
|
63
|
-
}, HTMLDivElement>;
|
|
64
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
65
|
-
export default _default;
|
|
66
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
67
|
-
new (): {
|
|
68
|
-
$slots: S;
|
|
69
|
-
};
|
|
70
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
interface Props {
|
|
2
|
-
radius?: string | number;
|
|
3
|
-
width?: string | number;
|
|
4
|
-
height?: string | number;
|
|
5
|
-
circle?: boolean;
|
|
6
|
-
}
|
|
7
|
-
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
8
|
-
export default _default;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { Sizes } from '../../shared/types';
|
|
2
|
-
interface Props {
|
|
3
|
-
size?: Sizes;
|
|
4
|
-
}
|
|
5
|
-
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
6
|
-
export default _default;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
interface Props {
|
|
2
|
-
label?: string;
|
|
3
|
-
disabled?: boolean;
|
|
4
|
-
accent?: boolean;
|
|
5
|
-
}
|
|
6
|
-
type __VLS_Props = Props;
|
|
7
|
-
type __VLS_PublicProps = {
|
|
8
|
-
modelValue?: boolean;
|
|
9
|
-
} & __VLS_Props;
|
|
10
|
-
declare function __VLS_template(): {
|
|
11
|
-
attrs: Partial<{}>;
|
|
12
|
-
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
13
|
-
refs: {};
|
|
14
|
-
rootEl: HTMLDivElement;
|
|
15
|
-
};
|
|
16
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
18
|
-
"update:modelValue": (value: boolean) => any;
|
|
19
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
20
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
21
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
22
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
|
-
export default _default;
|
|
24
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
25
|
-
new (): {
|
|
26
|
-
$slots: S;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
declare function __VLS_template(): {
|
|
2
|
-
attrs: Partial<{}>;
|
|
3
|
-
slots: {
|
|
4
|
-
default?(_: {}): any;
|
|
5
|
-
context?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {
|
|
8
|
-
context: HTMLDivElement;
|
|
9
|
-
};
|
|
10
|
-
rootEl: HTMLTableCellElement;
|
|
11
|
-
};
|
|
12
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
14
|
-
context: HTMLDivElement;
|
|
15
|
-
}, HTMLTableCellElement>;
|
|
16
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
-
export default _default;
|
|
18
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
-
new (): {
|
|
20
|
-
$slots: S;
|
|
21
|
-
};
|
|
22
|
-
};
|