@rocketui/vue 0.0.62 → 0.0.64
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 +2 -0
- package/dist/rocket-ui-vue.d.ts +1854 -0
- package/dist/rocket-ui-vue.js +78 -74
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/package.json +7 -7
- package/dist/src/components/Accordion/RAccordion.d.ts +0 -41
- package/dist/src/components/Accordion/RAccordion.d.ts.map +0 -1
- package/dist/src/components/Alert/RAlert.d.ts +0 -125
- package/dist/src/components/Alert/RAlert.d.ts.map +0 -1
- package/dist/src/components/Avatar/RAvatar.d.ts +0 -110
- package/dist/src/components/Avatar/RAvatar.d.ts.map +0 -1
- package/dist/src/components/Badge/RBadge.d.ts +0 -119
- package/dist/src/components/Badge/RBadge.d.ts.map +0 -1
- package/dist/src/components/Breadcrumb/RBreadcrumb.d.ts +0 -40
- package/dist/src/components/Breadcrumb/RBreadcrumb.d.ts.map +0 -1
- package/dist/src/components/Button/RButton.d.ts +0 -206
- package/dist/src/components/Button/RButton.d.ts.map +0 -1
- package/dist/src/components/Checkbox/RCheckbox.d.ts +0 -137
- package/dist/src/components/Checkbox/RCheckbox.d.ts.map +0 -1
- package/dist/src/components/Chips/RChip.d.ts +0 -140
- package/dist/src/components/Chips/RChip.d.ts.map +0 -1
- package/dist/src/components/Dropdown/RDropdown.d.ts +0 -228
- package/dist/src/components/Dropdown/RDropdown.d.ts.map +0 -1
- package/dist/src/components/Icon/RIcon.d.ts +0 -62
- package/dist/src/components/Icon/RIcon.d.ts.map +0 -1
- package/dist/src/components/ItemGroup/RItem.d.ts +0 -75
- package/dist/src/components/ItemGroup/RItem.d.ts.map +0 -1
- package/dist/src/components/ItemGroup/RItemGroup.d.ts +0 -145
- package/dist/src/components/ItemGroup/RItemGroup.d.ts.map +0 -1
- package/dist/src/components/Label/RLabel.d.ts +0 -75
- package/dist/src/components/Label/RLabel.d.ts.map +0 -1
- package/dist/src/components/Modal/RModal.d.ts +0 -145
- package/dist/src/components/Modal/RModal.d.ts.map +0 -1
- package/dist/src/components/Pagination/RPagination.d.ts +0 -84
- package/dist/src/components/Pagination/RPagination.d.ts.map +0 -1
- package/dist/src/components/ProgressBar/RProgressbar.d.ts +0 -30
- package/dist/src/components/ProgressBar/RProgressbar.d.ts.map +0 -1
- package/dist/src/components/Shared/Enums.d.ts +0 -2
- package/dist/src/components/Shared/Enums.d.ts.map +0 -1
- package/dist/src/components/Sidebar/RSidebar.d.ts +0 -53
- package/dist/src/components/Sidebar/RSidebar.d.ts.map +0 -1
- package/dist/src/components/Snackbar/RSnackbar.d.ts +0 -138
- package/dist/src/components/Snackbar/RSnackbar.d.ts.map +0 -1
- package/dist/src/components/Switch/RSwitch.d.ts +0 -136
- package/dist/src/components/Switch/RSwitch.d.ts.map +0 -1
- package/dist/src/components/TabItem/RTabItem.d.ts +0 -189
- package/dist/src/components/TabItem/RTabItem.d.ts.map +0 -1
- package/dist/src/components/TabItem/common.d.ts +0 -7
- package/dist/src/components/TabItem/common.d.ts.map +0 -1
- package/dist/src/components/Tabs/RTabs.d.ts +0 -87
- package/dist/src/components/Tabs/RTabs.d.ts.map +0 -1
- package/dist/src/components/Tabs/types.d.ts +0 -11
- package/dist/src/components/Tabs/types.d.ts.map +0 -1
- package/dist/src/components/TextArea/RTextArea.d.ts +0 -137
- package/dist/src/components/TextArea/RTextArea.d.ts.map +0 -1
- package/dist/src/components/Textfield/RTextfield.d.ts +0 -268
- package/dist/src/components/Textfield/RTextfield.d.ts.map +0 -1
- package/dist/src/components/Tooltip/RTooltip.d.ts +0 -278
- package/dist/src/components/Tooltip/RTooltip.d.ts.map +0 -1
- package/dist/src/components/Tooltip/common.d.ts +0 -24
- package/dist/src/components/Tooltip/common.d.ts.map +0 -1
- package/dist/src/directives/index.d.ts +0 -5
- package/dist/src/directives/index.d.ts.map +0 -1
- package/dist/src/main.d.ts +0 -1
- package/dist/src/main.d.ts.map +0 -1
- package/dist/src/shims.d.ts +0 -9
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
export interface ModalProps {
|
|
2
|
-
/**
|
|
3
|
-
* modelValue the modal
|
|
4
|
-
* @type boolean
|
|
5
|
-
* @default false
|
|
6
|
-
* @example
|
|
7
|
-
* <Modal :modelValue="true" />
|
|
8
|
-
*/
|
|
9
|
-
modelValue: boolean;
|
|
10
|
-
/**
|
|
11
|
-
* Modal width is 100%
|
|
12
|
-
* @type boolean
|
|
13
|
-
* @default false
|
|
14
|
-
* @example
|
|
15
|
-
* <Modal block />
|
|
16
|
-
*/
|
|
17
|
-
block?: boolean;
|
|
18
|
-
/**
|
|
19
|
-
* Title of the Modal
|
|
20
|
-
* @type string
|
|
21
|
-
* @default ''
|
|
22
|
-
* @example
|
|
23
|
-
* <Modal title="Modal Title" />
|
|
24
|
-
*/
|
|
25
|
-
title?: string;
|
|
26
|
-
/**
|
|
27
|
-
* Description of the Modal
|
|
28
|
-
* @type string
|
|
29
|
-
* @default ''
|
|
30
|
-
* @example
|
|
31
|
-
* <Modal description="Modal Description" />
|
|
32
|
-
*/
|
|
33
|
-
description?: string;
|
|
34
|
-
/**
|
|
35
|
-
* Icon of the Modal
|
|
36
|
-
* @type string
|
|
37
|
-
* @default ''
|
|
38
|
-
* @example
|
|
39
|
-
* <Modal icon="mdiMail" />
|
|
40
|
-
*/
|
|
41
|
-
icon?: string;
|
|
42
|
-
/**
|
|
43
|
-
* Width of the Modal
|
|
44
|
-
* @type string
|
|
45
|
-
* @default ''
|
|
46
|
-
* @example
|
|
47
|
-
* <Modal width="500px" />
|
|
48
|
-
*/
|
|
49
|
-
width?: string;
|
|
50
|
-
/**
|
|
51
|
-
* Height of the Modal
|
|
52
|
-
* @type string
|
|
53
|
-
* @default ''
|
|
54
|
-
* @example
|
|
55
|
-
* <Modal height="500px" />
|
|
56
|
-
*/
|
|
57
|
-
height?: string;
|
|
58
|
-
/**
|
|
59
|
-
* Close the modal when clicking outside
|
|
60
|
-
* @type boolean
|
|
61
|
-
* @default false
|
|
62
|
-
* @example
|
|
63
|
-
* <Modal :modelValue="true" :outsideClick="true" />
|
|
64
|
-
*/
|
|
65
|
-
outsideClick?: boolean;
|
|
66
|
-
}
|
|
67
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
68
|
-
title: {
|
|
69
|
-
type: import("vue").PropType<string>;
|
|
70
|
-
default: string;
|
|
71
|
-
};
|
|
72
|
-
width: {
|
|
73
|
-
type: import("vue").PropType<string>;
|
|
74
|
-
};
|
|
75
|
-
height: {
|
|
76
|
-
type: import("vue").PropType<string>;
|
|
77
|
-
};
|
|
78
|
-
description: {
|
|
79
|
-
type: import("vue").PropType<string>;
|
|
80
|
-
default: string;
|
|
81
|
-
};
|
|
82
|
-
block: {
|
|
83
|
-
type: import("vue").PropType<boolean>;
|
|
84
|
-
default: boolean;
|
|
85
|
-
};
|
|
86
|
-
icon: {
|
|
87
|
-
type: import("vue").PropType<string>;
|
|
88
|
-
};
|
|
89
|
-
modelValue: {
|
|
90
|
-
type: import("vue").PropType<boolean>;
|
|
91
|
-
required: true;
|
|
92
|
-
default: boolean;
|
|
93
|
-
};
|
|
94
|
-
outsideClick: {
|
|
95
|
-
type: import("vue").PropType<boolean>;
|
|
96
|
-
};
|
|
97
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
98
|
-
title: {
|
|
99
|
-
type: import("vue").PropType<string>;
|
|
100
|
-
default: string;
|
|
101
|
-
};
|
|
102
|
-
width: {
|
|
103
|
-
type: import("vue").PropType<string>;
|
|
104
|
-
};
|
|
105
|
-
height: {
|
|
106
|
-
type: import("vue").PropType<string>;
|
|
107
|
-
};
|
|
108
|
-
description: {
|
|
109
|
-
type: import("vue").PropType<string>;
|
|
110
|
-
default: string;
|
|
111
|
-
};
|
|
112
|
-
block: {
|
|
113
|
-
type: import("vue").PropType<boolean>;
|
|
114
|
-
default: boolean;
|
|
115
|
-
};
|
|
116
|
-
icon: {
|
|
117
|
-
type: import("vue").PropType<string>;
|
|
118
|
-
};
|
|
119
|
-
modelValue: {
|
|
120
|
-
type: import("vue").PropType<boolean>;
|
|
121
|
-
required: true;
|
|
122
|
-
default: boolean;
|
|
123
|
-
};
|
|
124
|
-
outsideClick: {
|
|
125
|
-
type: import("vue").PropType<boolean>;
|
|
126
|
-
};
|
|
127
|
-
}>> & {
|
|
128
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
129
|
-
}, {
|
|
130
|
-
title: string;
|
|
131
|
-
description: string;
|
|
132
|
-
block: boolean;
|
|
133
|
-
modelValue: boolean;
|
|
134
|
-
}>, {
|
|
135
|
-
header?(_: {}): any;
|
|
136
|
-
default?(_: {}): any;
|
|
137
|
-
actions?(_: {}): any;
|
|
138
|
-
}>;
|
|
139
|
-
export default _default;
|
|
140
|
-
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
141
|
-
new (): {
|
|
142
|
-
$slots: S;
|
|
143
|
-
};
|
|
144
|
-
};
|
|
145
|
-
//# sourceMappingURL=RModal.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RModal.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Modal/RModal"],"names":[],"mappings":"AAGA,OAAO,aAAa,CAAC;AAGrB,MAAM,WAAW,UAAU;IACzB;;;;;;OAMG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;;;OAMG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;;;;OAMG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoMD,wBAA8G;AAU9G,aAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
export interface PaginationProps {
|
|
2
|
-
page: number;
|
|
3
|
-
perPage: number;
|
|
4
|
-
totalItems: number;
|
|
5
|
-
pageText?: string;
|
|
6
|
-
ofText?: string;
|
|
7
|
-
slash?: boolean;
|
|
8
|
-
}
|
|
9
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
10
|
-
page: {
|
|
11
|
-
type: import("vue").PropType<number>;
|
|
12
|
-
required: true;
|
|
13
|
-
default: number;
|
|
14
|
-
};
|
|
15
|
-
perPage: {
|
|
16
|
-
type: import("vue").PropType<number>;
|
|
17
|
-
required: true;
|
|
18
|
-
default: number;
|
|
19
|
-
};
|
|
20
|
-
totalItems: {
|
|
21
|
-
type: import("vue").PropType<number>;
|
|
22
|
-
required: true;
|
|
23
|
-
default: number;
|
|
24
|
-
};
|
|
25
|
-
pageText: {
|
|
26
|
-
type: import("vue").PropType<string>;
|
|
27
|
-
default: string;
|
|
28
|
-
};
|
|
29
|
-
ofText: {
|
|
30
|
-
type: import("vue").PropType<string>;
|
|
31
|
-
default: string;
|
|
32
|
-
};
|
|
33
|
-
slash: {
|
|
34
|
-
type: import("vue").PropType<boolean>;
|
|
35
|
-
default: boolean;
|
|
36
|
-
};
|
|
37
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:page"[], "update:page", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
38
|
-
page: {
|
|
39
|
-
type: import("vue").PropType<number>;
|
|
40
|
-
required: true;
|
|
41
|
-
default: number;
|
|
42
|
-
};
|
|
43
|
-
perPage: {
|
|
44
|
-
type: import("vue").PropType<number>;
|
|
45
|
-
required: true;
|
|
46
|
-
default: number;
|
|
47
|
-
};
|
|
48
|
-
totalItems: {
|
|
49
|
-
type: import("vue").PropType<number>;
|
|
50
|
-
required: true;
|
|
51
|
-
default: number;
|
|
52
|
-
};
|
|
53
|
-
pageText: {
|
|
54
|
-
type: import("vue").PropType<string>;
|
|
55
|
-
default: string;
|
|
56
|
-
};
|
|
57
|
-
ofText: {
|
|
58
|
-
type: import("vue").PropType<string>;
|
|
59
|
-
default: string;
|
|
60
|
-
};
|
|
61
|
-
slash: {
|
|
62
|
-
type: import("vue").PropType<boolean>;
|
|
63
|
-
default: boolean;
|
|
64
|
-
};
|
|
65
|
-
}>> & {
|
|
66
|
-
"onUpdate:page"?: ((...args: any[]) => any) | undefined;
|
|
67
|
-
}, {
|
|
68
|
-
page: number;
|
|
69
|
-
perPage: number;
|
|
70
|
-
totalItems: number;
|
|
71
|
-
pageText: string;
|
|
72
|
-
ofText: string;
|
|
73
|
-
slash: boolean;
|
|
74
|
-
}>, {
|
|
75
|
-
prev?(_: {}): any;
|
|
76
|
-
next?(_: {}): any;
|
|
77
|
-
}>;
|
|
78
|
-
export default _default;
|
|
79
|
-
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
80
|
-
new (): {
|
|
81
|
-
$slots: S;
|
|
82
|
-
};
|
|
83
|
-
};
|
|
84
|
-
//# sourceMappingURL=RPagination.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RPagination.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Pagination/RPagination"],"names":[],"mappings":"AAGA,OAAO,kBAAkB,CAAC;AAE1B,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0PD,wBAA8G;AAU9G,aAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export interface ProgressBarProps {
|
|
2
|
-
value: number;
|
|
3
|
-
height?: number;
|
|
4
|
-
}
|
|
5
|
-
declare const _default: import("vue").DefineComponent<{
|
|
6
|
-
height: {
|
|
7
|
-
type: import("vue").PropType<number>;
|
|
8
|
-
default: number;
|
|
9
|
-
};
|
|
10
|
-
value: {
|
|
11
|
-
type: import("vue").PropType<number>;
|
|
12
|
-
required: true;
|
|
13
|
-
default: number;
|
|
14
|
-
};
|
|
15
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
-
height: {
|
|
17
|
-
type: import("vue").PropType<number>;
|
|
18
|
-
default: number;
|
|
19
|
-
};
|
|
20
|
-
value: {
|
|
21
|
-
type: import("vue").PropType<number>;
|
|
22
|
-
required: true;
|
|
23
|
-
default: number;
|
|
24
|
-
};
|
|
25
|
-
}>>, {
|
|
26
|
-
height: number;
|
|
27
|
-
value: number;
|
|
28
|
-
}>;
|
|
29
|
-
export default _default;
|
|
30
|
-
//# sourceMappingURL=RProgressbar.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RProgressbar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ProgressBar/RProgressbar"],"names":[],"mappings":"AAEA,OAAO,mBAAmB,CAAC;AAE3B,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;;;;;;;;;;;;;;;;;;;;;;;;;AA6DD,wBAAkD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Enums.d.ts","sourceRoot":"","sources":["../../../../src/components/Shared/Enums.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
export interface RSidebarProps {
|
|
2
|
-
modelValue: boolean;
|
|
3
|
-
showTrigger?: boolean;
|
|
4
|
-
class?: string;
|
|
5
|
-
triggerClass?: string;
|
|
6
|
-
}
|
|
7
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
8
|
-
class: {
|
|
9
|
-
type: import("vue").PropType<string>;
|
|
10
|
-
};
|
|
11
|
-
modelValue: {
|
|
12
|
-
type: import("vue").PropType<boolean>;
|
|
13
|
-
required: true;
|
|
14
|
-
default: boolean;
|
|
15
|
-
};
|
|
16
|
-
showTrigger: {
|
|
17
|
-
type: import("vue").PropType<boolean>;
|
|
18
|
-
default: boolean;
|
|
19
|
-
};
|
|
20
|
-
triggerClass: {
|
|
21
|
-
type: import("vue").PropType<string>;
|
|
22
|
-
};
|
|
23
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
-
class: {
|
|
25
|
-
type: import("vue").PropType<string>;
|
|
26
|
-
};
|
|
27
|
-
modelValue: {
|
|
28
|
-
type: import("vue").PropType<boolean>;
|
|
29
|
-
required: true;
|
|
30
|
-
default: boolean;
|
|
31
|
-
};
|
|
32
|
-
showTrigger: {
|
|
33
|
-
type: import("vue").PropType<boolean>;
|
|
34
|
-
default: boolean;
|
|
35
|
-
};
|
|
36
|
-
triggerClass: {
|
|
37
|
-
type: import("vue").PropType<string>;
|
|
38
|
-
};
|
|
39
|
-
}>>, {
|
|
40
|
-
modelValue: boolean;
|
|
41
|
-
showTrigger: boolean;
|
|
42
|
-
}>, {
|
|
43
|
-
default?(_: {}): any;
|
|
44
|
-
actions?(_: {}): any;
|
|
45
|
-
trigger?(_: {}): any;
|
|
46
|
-
}>;
|
|
47
|
-
export default _default;
|
|
48
|
-
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
49
|
-
new (): {
|
|
50
|
-
$slots: S;
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
|
-
//# sourceMappingURL=RSidebar.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RSidebar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Sidebar/RSidebar"],"names":[],"mappings":"AAGA,OAAO,eAAe,CAAC;AAEvB,MAAM,WAAW,aAAa;IAC5B,UAAU,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+HD,wBAA8G;AAU9G,aAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -1,138 +0,0 @@
|
|
|
1
|
-
export interface IProps {
|
|
2
|
-
/**
|
|
3
|
-
* Show of the snackbar
|
|
4
|
-
* @type boolean
|
|
5
|
-
* @default false
|
|
6
|
-
* @example
|
|
7
|
-
* <Snackbar show />
|
|
8
|
-
*/
|
|
9
|
-
modelValue: boolean;
|
|
10
|
-
/**
|
|
11
|
-
* Text of the snackbar
|
|
12
|
-
* @type string
|
|
13
|
-
* @default ''
|
|
14
|
-
* @example
|
|
15
|
-
* <Snackbar text="Snackbar" />
|
|
16
|
-
*/
|
|
17
|
-
text: string;
|
|
18
|
-
/**
|
|
19
|
-
* Show close of the snackbar
|
|
20
|
-
* @type boolean
|
|
21
|
-
* @default false
|
|
22
|
-
* @example
|
|
23
|
-
* <Snackbar closable />
|
|
24
|
-
*/
|
|
25
|
-
closable?: boolean;
|
|
26
|
-
/**
|
|
27
|
-
* Set the snackbar slide from left otherwise slide from right
|
|
28
|
-
* @type boolean
|
|
29
|
-
* @default false
|
|
30
|
-
* @example
|
|
31
|
-
* <Snackbar left />
|
|
32
|
-
*/
|
|
33
|
-
left?: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* Timeout of the snackbar. <br />
|
|
36
|
-
* If timeout is 0, the snackbar will not close automatically
|
|
37
|
-
* @type number
|
|
38
|
-
* @default 0
|
|
39
|
-
* @example
|
|
40
|
-
* <Snackbar timeout="1000" />
|
|
41
|
-
*/
|
|
42
|
-
timeout?: number;
|
|
43
|
-
/**
|
|
44
|
-
* Variant of the snackbar
|
|
45
|
-
* @type 'success' | 'error' | 'warning' | 'info'
|
|
46
|
-
* @default 'info'
|
|
47
|
-
* @example
|
|
48
|
-
* <Snackbar variant="success" />
|
|
49
|
-
*/
|
|
50
|
-
variant?: 'success' | 'error' | 'warning' | 'info';
|
|
51
|
-
/**
|
|
52
|
-
* Set the snackbar slide on top otherwise slide on bottom
|
|
53
|
-
* @type boolean
|
|
54
|
-
* @default false
|
|
55
|
-
* @example
|
|
56
|
-
* <Snackbar top />
|
|
57
|
-
*/
|
|
58
|
-
top?: boolean;
|
|
59
|
-
}
|
|
60
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
61
|
-
text: {
|
|
62
|
-
type: import("vue").PropType<string>;
|
|
63
|
-
required: true;
|
|
64
|
-
default: string;
|
|
65
|
-
};
|
|
66
|
-
variant: {
|
|
67
|
-
type: import("vue").PropType<"success" | "error" | "warning" | "info">;
|
|
68
|
-
};
|
|
69
|
-
closable: {
|
|
70
|
-
type: import("vue").PropType<boolean>;
|
|
71
|
-
default: boolean;
|
|
72
|
-
};
|
|
73
|
-
left: {
|
|
74
|
-
type: import("vue").PropType<boolean>;
|
|
75
|
-
default: boolean;
|
|
76
|
-
};
|
|
77
|
-
modelValue: {
|
|
78
|
-
type: import("vue").PropType<boolean>;
|
|
79
|
-
required: true;
|
|
80
|
-
default: boolean;
|
|
81
|
-
};
|
|
82
|
-
top: {
|
|
83
|
-
type: import("vue").PropType<boolean>;
|
|
84
|
-
};
|
|
85
|
-
timeout: {
|
|
86
|
-
type: import("vue").PropType<number>;
|
|
87
|
-
default: number;
|
|
88
|
-
};
|
|
89
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "action")[], "update:modelValue" | "action", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
90
|
-
text: {
|
|
91
|
-
type: import("vue").PropType<string>;
|
|
92
|
-
required: true;
|
|
93
|
-
default: string;
|
|
94
|
-
};
|
|
95
|
-
variant: {
|
|
96
|
-
type: import("vue").PropType<"success" | "error" | "warning" | "info">;
|
|
97
|
-
};
|
|
98
|
-
closable: {
|
|
99
|
-
type: import("vue").PropType<boolean>;
|
|
100
|
-
default: boolean;
|
|
101
|
-
};
|
|
102
|
-
left: {
|
|
103
|
-
type: import("vue").PropType<boolean>;
|
|
104
|
-
default: boolean;
|
|
105
|
-
};
|
|
106
|
-
modelValue: {
|
|
107
|
-
type: import("vue").PropType<boolean>;
|
|
108
|
-
required: true;
|
|
109
|
-
default: boolean;
|
|
110
|
-
};
|
|
111
|
-
top: {
|
|
112
|
-
type: import("vue").PropType<boolean>;
|
|
113
|
-
};
|
|
114
|
-
timeout: {
|
|
115
|
-
type: import("vue").PropType<number>;
|
|
116
|
-
default: number;
|
|
117
|
-
};
|
|
118
|
-
}>> & {
|
|
119
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
120
|
-
onAction?: ((...args: any[]) => any) | undefined;
|
|
121
|
-
}, {
|
|
122
|
-
text: string;
|
|
123
|
-
closable: boolean;
|
|
124
|
-
left: boolean;
|
|
125
|
-
modelValue: boolean;
|
|
126
|
-
timeout: number;
|
|
127
|
-
}>, {
|
|
128
|
-
default?(_: {}): any;
|
|
129
|
-
action?(_: {}): any;
|
|
130
|
-
close?(_: {}): any;
|
|
131
|
-
}>;
|
|
132
|
-
export default _default;
|
|
133
|
-
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
134
|
-
new (): {
|
|
135
|
-
$slots: S;
|
|
136
|
-
};
|
|
137
|
-
};
|
|
138
|
-
//# sourceMappingURL=RSnackbar.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RSnackbar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Snackbar/RSnackbar"],"names":[],"mappings":"AAIA,OAAO,gBAAgB,CAAC;AAExB,MAAM,WAAW,MAAM;IACrB;;;;;;OAMG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;;;;;OAMG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IAEf;;;;;;;OAOG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,CAAC;IAEnD;;;;;;OAMG;IACH,GAAG,CAAC,EAAE,OAAO,CAAC;CACf;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+KD,wBAA8G;AAU9G,aAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -1,136 +0,0 @@
|
|
|
1
|
-
import { type HTMLAttributes, type InputHTMLAttributes, type LabelHTMLAttributes } from 'vue';
|
|
2
|
-
export interface Props {
|
|
3
|
-
/**
|
|
4
|
-
* id of the checkbox
|
|
5
|
-
* @type HTMLAttributes['id']
|
|
6
|
-
* @default ''
|
|
7
|
-
* @example
|
|
8
|
-
* <Checkbox id="checkbox" />
|
|
9
|
-
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id
|
|
10
|
-
*/
|
|
11
|
-
id: HTMLAttributes['id'];
|
|
12
|
-
/**
|
|
13
|
-
* Input checked state
|
|
14
|
-
* @type InputHTMLAttributes['checked']
|
|
15
|
-
* @default false
|
|
16
|
-
* @example
|
|
17
|
-
* <Checkbox modelValue="true" />
|
|
18
|
-
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#checked
|
|
19
|
-
*/
|
|
20
|
-
modelValue?: InputHTMLAttributes['checked'];
|
|
21
|
-
/**
|
|
22
|
-
* Input disabled state
|
|
23
|
-
* @type InputHTMLAttributes['disabled']
|
|
24
|
-
* @default false
|
|
25
|
-
* @example
|
|
26
|
-
* <Checkbox disabled="true" />
|
|
27
|
-
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#disabled
|
|
28
|
-
*/
|
|
29
|
-
disabled?: InputHTMLAttributes['disabled'];
|
|
30
|
-
/**
|
|
31
|
-
* label of the checkbox
|
|
32
|
-
* @type LabelHTMLAttributes['label']
|
|
33
|
-
* @default ''
|
|
34
|
-
* @example
|
|
35
|
-
* <Checkbox label="Checkbox" />
|
|
36
|
-
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
|
|
37
|
-
*/
|
|
38
|
-
label?: LabelHTMLAttributes['for'];
|
|
39
|
-
/**
|
|
40
|
-
* Hint text
|
|
41
|
-
* @type string
|
|
42
|
-
* @default ''
|
|
43
|
-
* @example
|
|
44
|
-
* <Checkbox hint="This is a hint" />
|
|
45
|
-
*/
|
|
46
|
-
hint?: string;
|
|
47
|
-
/**
|
|
48
|
-
* Error message
|
|
49
|
-
* @type string
|
|
50
|
-
* @default ''
|
|
51
|
-
* @example
|
|
52
|
-
* <Checkbox errorMsg="This is an error" />
|
|
53
|
-
*/
|
|
54
|
-
errorMsg?: string;
|
|
55
|
-
/**
|
|
56
|
-
* Size of the checkbox
|
|
57
|
-
* @type 'small' | 'medium' | 'large'
|
|
58
|
-
* @default 'medium'
|
|
59
|
-
* @example
|
|
60
|
-
* <Checkbox size="small" />
|
|
61
|
-
*/
|
|
62
|
-
size?: 'small' | 'medium' | 'large';
|
|
63
|
-
}
|
|
64
|
-
declare const _default: import("vue").DefineComponent<{
|
|
65
|
-
label: {
|
|
66
|
-
type: import("vue").PropType<string>;
|
|
67
|
-
default: string;
|
|
68
|
-
};
|
|
69
|
-
id: {
|
|
70
|
-
type: import("vue").PropType<string | undefined>;
|
|
71
|
-
required: true;
|
|
72
|
-
default: string;
|
|
73
|
-
};
|
|
74
|
-
size: {
|
|
75
|
-
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
76
|
-
default: string;
|
|
77
|
-
};
|
|
78
|
-
disabled: {
|
|
79
|
-
type: import("vue").PropType<boolean | "true" | "false">;
|
|
80
|
-
default: boolean;
|
|
81
|
-
};
|
|
82
|
-
modelValue: {
|
|
83
|
-
type: import("vue").PropType<any[] | Set<any> | (boolean | "true" | "false")>;
|
|
84
|
-
default: boolean;
|
|
85
|
-
};
|
|
86
|
-
hint: {
|
|
87
|
-
type: import("vue").PropType<string>;
|
|
88
|
-
default: string;
|
|
89
|
-
};
|
|
90
|
-
errorMsg: {
|
|
91
|
-
type: import("vue").PropType<string>;
|
|
92
|
-
default: string;
|
|
93
|
-
};
|
|
94
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
95
|
-
label: {
|
|
96
|
-
type: import("vue").PropType<string>;
|
|
97
|
-
default: string;
|
|
98
|
-
};
|
|
99
|
-
id: {
|
|
100
|
-
type: import("vue").PropType<string | undefined>;
|
|
101
|
-
required: true;
|
|
102
|
-
default: string;
|
|
103
|
-
};
|
|
104
|
-
size: {
|
|
105
|
-
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
106
|
-
default: string;
|
|
107
|
-
};
|
|
108
|
-
disabled: {
|
|
109
|
-
type: import("vue").PropType<boolean | "true" | "false">;
|
|
110
|
-
default: boolean;
|
|
111
|
-
};
|
|
112
|
-
modelValue: {
|
|
113
|
-
type: import("vue").PropType<any[] | Set<any> | (boolean | "true" | "false")>;
|
|
114
|
-
default: boolean;
|
|
115
|
-
};
|
|
116
|
-
hint: {
|
|
117
|
-
type: import("vue").PropType<string>;
|
|
118
|
-
default: string;
|
|
119
|
-
};
|
|
120
|
-
errorMsg: {
|
|
121
|
-
type: import("vue").PropType<string>;
|
|
122
|
-
default: string;
|
|
123
|
-
};
|
|
124
|
-
}>> & {
|
|
125
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
126
|
-
}, {
|
|
127
|
-
label: string;
|
|
128
|
-
id: string | undefined;
|
|
129
|
-
size: "small" | "medium" | "large";
|
|
130
|
-
disabled: boolean | "true" | "false";
|
|
131
|
-
modelValue: any[] | Set<any> | (boolean | "true" | "false");
|
|
132
|
-
hint: string;
|
|
133
|
-
errorMsg: string;
|
|
134
|
-
}>;
|
|
135
|
-
export default _default;
|
|
136
|
-
//# sourceMappingURL=RSwitch.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RSwitch.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Switch/RSwitch"],"names":[],"mappings":"AAEA,OAAO,EAIL,KAAK,cAAc,EACnB,KAAK,mBAAmB,EACxB,KAAK,mBAAmB,EACzB,MAAM,KAAK,CAAC;AACb,OAAO,cAAc,CAAC;AACtB,MAAM,WAAW,KAAK;IACpB;;;;;;;OAOG;IACH,EAAE,EAAE,cAAc,CAAC,IAAI,CAAC,CAAC;IAEzB;;;;;;;OAOG;IACH,UAAU,CAAC,EAAE,mBAAmB,CAAC,SAAS,CAAC,CAAC;IAE5C;;;;;;;OAOG;IACH,QAAQ,CAAC,EAAE,mBAAmB,CAAC,UAAU,CAAC,CAAC;IAE3C;;;;;;;OAOG;IACH,KAAK,CAAC,EAAE,mBAAmB,CAAC,KAAK,CAAC,CAAC;IAEnC;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;CACrC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmLD,wBAAkD"}
|