@rocketui/vue 0.0.53 → 0.0.55
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/rocket-ui-vue.js +522 -514
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/src/components/Accordion/RAccordion.d.ts +41 -0
- package/dist/src/components/Accordion/RAccordion.d.ts.map +1 -0
- package/dist/src/components/Alert/RAlert.d.ts +125 -0
- package/dist/src/components/Alert/RAlert.d.ts.map +1 -0
- package/dist/src/components/Avatar/RAvatar.d.ts +110 -0
- package/dist/src/components/Avatar/RAvatar.d.ts.map +1 -0
- package/dist/src/components/Badge/RBadge.d.ts +119 -0
- package/dist/src/components/Badge/RBadge.d.ts.map +1 -0
- package/dist/src/components/Breadcrumb/RBreadcrumb.d.ts +40 -0
- package/dist/src/components/Breadcrumb/RBreadcrumb.d.ts.map +1 -0
- package/dist/src/components/Button/RButton.d.ts +206 -0
- package/dist/src/components/Button/RButton.d.ts.map +1 -0
- package/dist/src/components/Checkbox/RCheckbox.d.ts +137 -0
- package/dist/src/components/Checkbox/RCheckbox.d.ts.map +1 -0
- package/dist/src/components/Chips/RChip.d.ts +140 -0
- package/dist/src/components/Chips/RChip.d.ts.map +1 -0
- package/dist/src/components/Dropdown/RDropdown.d.ts +228 -0
- package/dist/src/components/Dropdown/RDropdown.d.ts.map +1 -0
- package/dist/src/components/Icon/RIcon.d.ts +62 -0
- package/dist/src/components/Icon/RIcon.d.ts.map +1 -0
- package/dist/src/components/ItemGroup/RItem.d.ts +75 -0
- package/dist/src/components/ItemGroup/RItem.d.ts.map +1 -0
- package/dist/src/components/ItemGroup/RItemGroup.d.ts +145 -0
- package/dist/src/components/ItemGroup/RItemGroup.d.ts.map +1 -0
- package/dist/src/components/Label/RLabel.d.ts +75 -0
- package/dist/src/components/Label/RLabel.d.ts.map +1 -0
- package/dist/src/components/Modal/RModal.d.ts +145 -0
- package/dist/src/components/Modal/RModal.d.ts.map +1 -0
- package/dist/src/components/Pagination/RPagination.d.ts +84 -0
- package/dist/src/components/Pagination/RPagination.d.ts.map +1 -0
- package/dist/src/components/ProgressBar/RProgressbar.d.ts +30 -0
- package/dist/src/components/ProgressBar/RProgressbar.d.ts.map +1 -0
- package/dist/src/components/Shared/Enums.d.ts +2 -0
- package/dist/src/components/Shared/Enums.d.ts.map +1 -0
- package/dist/src/components/Sidebar/RSidebar.d.ts +28 -0
- package/dist/src/components/Sidebar/RSidebar.d.ts.map +1 -0
- package/dist/src/components/Snackbar/RSnackbar.d.ts +138 -0
- package/dist/src/components/Snackbar/RSnackbar.d.ts.map +1 -0
- package/dist/src/components/Switch/RSwitch.d.ts +136 -0
- package/dist/src/components/Switch/RSwitch.d.ts.map +1 -0
- package/dist/src/components/TabItem/RTabItem.d.ts +189 -0
- package/dist/src/components/TabItem/RTabItem.d.ts.map +1 -0
- package/dist/src/components/TabItem/common.d.ts +7 -0
- package/dist/src/components/TabItem/common.d.ts.map +1 -0
- package/dist/src/components/Tabs/RTabs.d.ts +87 -0
- package/dist/src/components/Tabs/RTabs.d.ts.map +1 -0
- package/dist/src/components/Tabs/types.d.ts +11 -0
- package/dist/src/components/Tabs/types.d.ts.map +1 -0
- package/dist/src/components/TextArea/RTextArea.d.ts +137 -0
- package/dist/src/components/TextArea/RTextArea.d.ts.map +1 -0
- package/dist/src/components/Textfield/RTextfield.d.ts +268 -0
- package/dist/src/components/Textfield/RTextfield.d.ts.map +1 -0
- package/dist/src/components/Tooltip/RTooltip.d.ts +278 -0
- package/dist/src/components/Tooltip/RTooltip.d.ts.map +1 -0
- package/dist/src/components/Tooltip/common.d.ts +24 -0
- package/dist/src/components/Tooltip/common.d.ts.map +1 -0
- package/dist/src/directives/index.d.ts +5 -0
- package/dist/src/directives/index.d.ts.map +1 -0
- package/dist/src/main.d.ts +1 -0
- package/dist/src/main.d.ts.map +1 -0
- package/dist/src/shims.d.ts +9 -0
- package/dist/style.css +1 -1
- package/package.json +8 -8
- package/dist/rocket-ui-vue.d.ts +0 -1812
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
export interface ItemGroupProps {
|
|
2
|
+
/**
|
|
3
|
+
* The value of the selected items
|
|
4
|
+
* @default []
|
|
5
|
+
* @model
|
|
6
|
+
* @type number[]
|
|
7
|
+
* @example
|
|
8
|
+
* <RItemGroup v-model="selectedItems" />
|
|
9
|
+
*/
|
|
10
|
+
modelValue: number[];
|
|
11
|
+
/**
|
|
12
|
+
* The class to apply to the selected items
|
|
13
|
+
* @default ''
|
|
14
|
+
* @type string
|
|
15
|
+
* @example
|
|
16
|
+
* <RItemGroup selectedClass="bg-blue-500 text-white" />
|
|
17
|
+
*/
|
|
18
|
+
selectedClass?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Whether the item group is disabled
|
|
21
|
+
* @default false
|
|
22
|
+
* @type boolean
|
|
23
|
+
* @example
|
|
24
|
+
* <RItemGroup :disabled="true" />
|
|
25
|
+
*/
|
|
26
|
+
disabled?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Whether the item group is mandatory
|
|
29
|
+
* @default false
|
|
30
|
+
* @type boolean
|
|
31
|
+
* @example
|
|
32
|
+
* ```js
|
|
33
|
+
* const selected = ref<number[]>([1]);
|
|
34
|
+
* ```
|
|
35
|
+
* ```html
|
|
36
|
+
* <RItemGroup :mandatory="true" v-model="selected" />
|
|
37
|
+
* ```
|
|
38
|
+
*/
|
|
39
|
+
mandatory?: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* The maximum number of items that can be selected
|
|
42
|
+
* @default 0
|
|
43
|
+
* @type number
|
|
44
|
+
* @example
|
|
45
|
+
* <RItemGroup :max="5" />
|
|
46
|
+
*/
|
|
47
|
+
max?: number;
|
|
48
|
+
/**
|
|
49
|
+
* The tag to use for the item group
|
|
50
|
+
* @default div
|
|
51
|
+
* @type string
|
|
52
|
+
* @example
|
|
53
|
+
* <RItemGroup as="ul" />
|
|
54
|
+
*/
|
|
55
|
+
as?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Whether the item group allows multiple selections
|
|
58
|
+
* @default false
|
|
59
|
+
* @type boolean
|
|
60
|
+
* @example
|
|
61
|
+
* <RItemGroup :multiple="true" />
|
|
62
|
+
*/
|
|
63
|
+
multiple?: boolean;
|
|
64
|
+
}
|
|
65
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
66
|
+
max: {
|
|
67
|
+
type: import("vue").PropType<number>;
|
|
68
|
+
default: number;
|
|
69
|
+
};
|
|
70
|
+
disabled: {
|
|
71
|
+
type: import("vue").PropType<boolean>;
|
|
72
|
+
default: boolean;
|
|
73
|
+
};
|
|
74
|
+
as: {
|
|
75
|
+
type: import("vue").PropType<string>;
|
|
76
|
+
default: string;
|
|
77
|
+
};
|
|
78
|
+
modelValue: {
|
|
79
|
+
type: import("vue").PropType<number[]>;
|
|
80
|
+
required: true;
|
|
81
|
+
default: () => number[];
|
|
82
|
+
};
|
|
83
|
+
multiple: {
|
|
84
|
+
type: import("vue").PropType<boolean>;
|
|
85
|
+
};
|
|
86
|
+
selectedClass: {
|
|
87
|
+
type: import("vue").PropType<string>;
|
|
88
|
+
default: string;
|
|
89
|
+
};
|
|
90
|
+
mandatory: {
|
|
91
|
+
type: import("vue").PropType<boolean>;
|
|
92
|
+
default: boolean;
|
|
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
|
+
max: {
|
|
96
|
+
type: import("vue").PropType<number>;
|
|
97
|
+
default: number;
|
|
98
|
+
};
|
|
99
|
+
disabled: {
|
|
100
|
+
type: import("vue").PropType<boolean>;
|
|
101
|
+
default: boolean;
|
|
102
|
+
};
|
|
103
|
+
as: {
|
|
104
|
+
type: import("vue").PropType<string>;
|
|
105
|
+
default: string;
|
|
106
|
+
};
|
|
107
|
+
modelValue: {
|
|
108
|
+
type: import("vue").PropType<number[]>;
|
|
109
|
+
required: true;
|
|
110
|
+
default: () => number[];
|
|
111
|
+
};
|
|
112
|
+
multiple: {
|
|
113
|
+
type: import("vue").PropType<boolean>;
|
|
114
|
+
};
|
|
115
|
+
selectedClass: {
|
|
116
|
+
type: import("vue").PropType<string>;
|
|
117
|
+
default: string;
|
|
118
|
+
};
|
|
119
|
+
mandatory: {
|
|
120
|
+
type: import("vue").PropType<boolean>;
|
|
121
|
+
default: boolean;
|
|
122
|
+
};
|
|
123
|
+
}>> & {
|
|
124
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
125
|
+
}, {
|
|
126
|
+
max: number;
|
|
127
|
+
disabled: boolean;
|
|
128
|
+
as: string;
|
|
129
|
+
modelValue: number[];
|
|
130
|
+
selectedClass: string;
|
|
131
|
+
mandatory: boolean;
|
|
132
|
+
}>, {
|
|
133
|
+
default?(_: {
|
|
134
|
+
isSelected: (id: number) => boolean;
|
|
135
|
+
select: (id: number, value: boolean) => void;
|
|
136
|
+
selected: number[];
|
|
137
|
+
}): any;
|
|
138
|
+
}>;
|
|
139
|
+
export default _default;
|
|
140
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
141
|
+
new (): {
|
|
142
|
+
$slots: S;
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
//# sourceMappingURL=RItemGroup.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RItemGroup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ItemGroup/RItemGroup"],"names":[],"mappings":"AAIA,MAAM,WAAW,cAAc;IAC7B;;;;;;;OAOG;IACH,UAAU,EAAE,MAAM,EAAE,CAAC;IAErB;;;;;;OAMG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;;;;;;;;;;OAWG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;;;;;OAMG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;;;;OAMG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoHD,wBAA8G;AAU9G,aAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import type { HTMLAttributes, LabelHTMLAttributes } from 'vue';
|
|
2
|
+
export interface LabelProps {
|
|
3
|
+
/**
|
|
4
|
+
* id of the label
|
|
5
|
+
* @type HTMLAttributes['id']
|
|
6
|
+
* @default ''
|
|
7
|
+
* @example
|
|
8
|
+
* <Label id="label" />
|
|
9
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id
|
|
10
|
+
*/
|
|
11
|
+
id: HTMLAttributes['id'];
|
|
12
|
+
/**
|
|
13
|
+
* for of the label
|
|
14
|
+
* @type LabelHTMLAttributes['for']
|
|
15
|
+
* @default ''
|
|
16
|
+
* @example
|
|
17
|
+
* <Label for="label" />
|
|
18
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
|
|
19
|
+
*/
|
|
20
|
+
for: LabelHTMLAttributes['for'];
|
|
21
|
+
/**
|
|
22
|
+
* text of the label
|
|
23
|
+
* @type string | number
|
|
24
|
+
* @default ''
|
|
25
|
+
* @example
|
|
26
|
+
* <Label text="Label" />
|
|
27
|
+
*/
|
|
28
|
+
text: string | number;
|
|
29
|
+
}
|
|
30
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
31
|
+
text: {
|
|
32
|
+
type: import("vue").PropType<string | number>;
|
|
33
|
+
required: true;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
id: {
|
|
37
|
+
type: import("vue").PropType<string | undefined>;
|
|
38
|
+
required: true;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
for: {
|
|
42
|
+
type: import("vue").PropType<string | undefined>;
|
|
43
|
+
required: true;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
|
+
text: {
|
|
48
|
+
type: import("vue").PropType<string | number>;
|
|
49
|
+
required: true;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
id: {
|
|
53
|
+
type: import("vue").PropType<string | undefined>;
|
|
54
|
+
required: true;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
for: {
|
|
58
|
+
type: import("vue").PropType<string | undefined>;
|
|
59
|
+
required: true;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
}>>, {
|
|
63
|
+
text: string | number;
|
|
64
|
+
id: string | undefined;
|
|
65
|
+
for: string | undefined;
|
|
66
|
+
}>, {
|
|
67
|
+
default?(_: {}): any;
|
|
68
|
+
}>;
|
|
69
|
+
export default _default;
|
|
70
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
71
|
+
new (): {
|
|
72
|
+
$slots: S;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
//# sourceMappingURL=RLabel.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RLabel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Label/RLabel"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,cAAc,EAAE,mBAAmB,EAAE,MAAM,KAAK,CAAC;AAC/D,OAAO,aAAa,CAAC;AACrB,MAAM,WAAW,UAAU;IACzB;;;;;;;OAOG;IACH,EAAE,EAAE,cAAc,CAAC,IAAI,CAAC,CAAC;IAEzB;;;;;;;OAOG;IACH,GAAG,EAAE,mBAAmB,CAAC,KAAK,CAAC,CAAC;IAEhC;;;;;;OAMG;IACH,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;CACvB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwED,wBAA8G;AAU9G,aAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -0,0 +1,145 @@
|
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1,84 @@
|
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Enums.d.ts","sourceRoot":"","sources":["../../../../src/components/Shared/Enums.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export interface RSidebarProps {
|
|
2
|
+
modelValue: boolean;
|
|
3
|
+
}
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
5
|
+
modelValue: {
|
|
6
|
+
type: import("vue").PropType<boolean>;
|
|
7
|
+
required: true;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
modelValue: {
|
|
12
|
+
type: import("vue").PropType<boolean>;
|
|
13
|
+
required: true;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
}>>, {
|
|
17
|
+
modelValue: boolean;
|
|
18
|
+
}>, {
|
|
19
|
+
default?(_: {}): any;
|
|
20
|
+
actions?(_: {}): any;
|
|
21
|
+
}>;
|
|
22
|
+
export default _default;
|
|
23
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
24
|
+
new (): {
|
|
25
|
+
$slots: S;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
//# sourceMappingURL=RSidebar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
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;CACrB;;;;;;;;;;;;;;;;;;;AAmGD,wBAA8G;AAU9G,aAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -0,0 +1,138 @@
|
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|