@rebnd/ui 0.0.1
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 +21 -0
- package/README.md +74 -0
- package/dist/index.d.ts +542 -0
- package/dist/src/App.vue.d.ts +2 -0
- package/dist/src/assets/constants/icons.d.ts +3 -0
- package/dist/src/components/RAccordion/RAccordion.d.ts +27 -0
- package/dist/src/components/RAccordion/utils/accordion.props.d.ts +14 -0
- package/dist/src/components/RAccordion/utils/accordion.style.d.ts +2 -0
- package/dist/src/components/RAvatar/RAvatar.d.ts +48 -0
- package/dist/src/components/RAvatar/utils/avatar.props.d.ts +24 -0
- package/dist/src/components/RAvatar/utils/avatar.style.d.ts +45 -0
- package/dist/src/components/RAvatarGroup/RAvatarGroup.d.ts +27 -0
- package/dist/src/components/RAvatarGroup/utils/avatar-group.props.d.ts +14 -0
- package/dist/src/components/RAvatarGroup/utils/avatar-group.style.d.ts +5 -0
- package/dist/src/components/RBadge/RBadge.d.ts +69 -0
- package/dist/src/components/RBadge/utils/badge.props.d.ts +33 -0
- package/dist/src/components/RBadge/utils/badge.style.d.ts +117 -0
- package/dist/src/components/RBreadcrumb/RBreadcrumb.d.ts +26 -0
- package/dist/src/components/RBreadcrumb/utils/breadcrumb.props.d.ts +13 -0
- package/dist/src/components/RBreadcrumb/utils/breadcrumb.style.d.ts +2 -0
- package/dist/src/components/RButton/RButton.d.ts +51 -0
- package/dist/src/components/RButton/utils/button.props.d.ts +25 -0
- package/dist/src/components/RButton/utils/button.style.d.ts +102 -0
- package/dist/src/components/RCard/RCard.d.ts +16 -0
- package/dist/src/components/RCard/utils/card.props.d.ts +8 -0
- package/dist/src/components/RCard/utils/card.style.d.ts +2 -0
- package/dist/src/components/RCombobox/RCombobox.d.ts +37 -0
- package/dist/src/components/RCombobox/utils/combobox.props.d.ts +15 -0
- package/dist/src/components/RCombobox/utils/combobox.style.d.ts +1 -0
- package/dist/src/components/RDropdown/RDropdown.d.ts +43 -0
- package/dist/src/components/RDropdown/utils/dropdown.props.d.ts +21 -0
- package/dist/src/components/RDropdown/utils/dropdown.style.d.ts +2 -0
- package/dist/src/components/RForm/RForm.d.ts +24 -0
- package/dist/src/components/RForm/utils/form.props.d.ts +13 -0
- package/dist/src/components/RForm/utils/form.style.d.ts +2 -0
- package/dist/src/components/RFormGroup/RFormGroup.d.ts +16 -0
- package/dist/src/components/RFormGroup/utils/form-group.props.d.ts +7 -0
- package/dist/src/components/RFormGroup/utils/form-group.style.d.ts +2 -0
- package/dist/src/components/RIcon/RIcon.d.ts +42 -0
- package/dist/src/components/RIcon/utils/icon.props.d.ts +21 -0
- package/dist/src/components/RIcon/utils/icon.style.d.ts +2 -0
- package/dist/src/components/RInput/RInput.d.ts +27 -0
- package/dist/src/components/RInput/utils/input.props.d.ts +11 -0
- package/dist/src/components/RInput/utils/input.style.d.ts +2 -0
- package/dist/src/components/RLink/RLink.d.ts +16 -0
- package/dist/src/components/RLink/utils/link.props.d.ts +9 -0
- package/dist/src/components/RLink/utils/link.style.d.ts +2 -0
- package/dist/src/components/RTab/RTab.d.ts +24 -0
- package/dist/src/components/RTab/utils/tab.props.d.ts +11 -0
- package/dist/src/components/RTab/utils/tab.style.d.ts +2 -0
- package/dist/src/components/RTabs/RTabs.d.ts +40 -0
- package/dist/src/components/RTabs/utils/tabs.props.d.ts +19 -0
- package/dist/src/components/RTabs/utils/tabs.style.d.ts +37 -0
- package/dist/src/components/RTextArea/RTextArea.d.ts +25 -0
- package/dist/src/components/RTextArea/utils/text-area.props.d.ts +11 -0
- package/dist/src/components/RTextArea/utils/text-area.style.d.ts +2 -0
- package/dist/src/main.d.ts +0 -0
- package/dist/src/theme/animations.d.ts +6 -0
- package/dist/src/theme/colors.d.ts +248 -0
- package/dist/src/theme/global-css.d.ts +2 -0
- package/dist/src/theme/index.d.ts +5 -0
- package/dist/src/theme/keyframes.d.ts +2 -0
- package/dist/src/theme/semantic-tokens.d.ts +133 -0
- package/dist/src/theme/shadows.d.ts +59 -0
- package/dist/src/theme/tokens.d.ts +313 -0
- package/dist/src/types/component.d.ts +26 -0
- package/dist/src/types/form.d.ts +8 -0
- package/dist/src/types/index.d.ts +3 -0
- package/dist/src/utils/components.d.ts +4 -0
- package/dist/src/utils/errorHandler.d.ts +4 -0
- package/dist/src/utils/object.d.ts +2 -0
- package/dist/src/utils/regex.d.ts +5 -0
- package/dist/src/utils/string.d.ts +4 -0
- package/dist/src/utils/test.d.ts +2 -0
- package/dist/styles.css +1886 -0
- package/dist/ui.js +2577 -0
- package/dist/ui.umd.cjs +3 -0
- package/package.json +69 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Rebnd
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# @Rebnd/ui
|
|
2
|
+
|
|
3
|
+
A modern, elegant UI component library designed for Vue applications that demand both functionality and style.
|
|
4
|
+
|
|
5
|
+
## ✨ Features
|
|
6
|
+
|
|
7
|
+
- 🧩 Modern, reusable Vue 3 components
|
|
8
|
+
- 🎨 Customizable theming options
|
|
9
|
+
- ⚡ Lightweight and performant
|
|
10
|
+
- 📱 Mobile-friendly responsive design
|
|
11
|
+
- 🌐 Accessibility built-in
|
|
12
|
+
|
|
13
|
+
## 📦 Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install @rebnd/ui
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
> **Note:** @rebnd/ui requires Vue 3.2 or higher
|
|
20
|
+
|
|
21
|
+
## 🚀 Quick Start
|
|
22
|
+
|
|
23
|
+
### 1. Import the styles
|
|
24
|
+
|
|
25
|
+
Add the following import to your main entry file:
|
|
26
|
+
|
|
27
|
+
```js
|
|
28
|
+
import '@rebnd/ui/dist/styles.css'
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### 2. Use components in your Vue app
|
|
32
|
+
|
|
33
|
+
```vue
|
|
34
|
+
<script setup lang="ts">
|
|
35
|
+
import { RButton } from "@rebnd/ui"
|
|
36
|
+
</script>
|
|
37
|
+
|
|
38
|
+
<template>
|
|
39
|
+
<RButton variant="primary">Use Rebnd</RButton>
|
|
40
|
+
</template>
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## 📚 Component Documentation
|
|
44
|
+
|
|
45
|
+
Visit our [documentation site](https://rebnd.dev/docs) for comprehensive guides, API details, and interactive examples.
|
|
46
|
+
|
|
47
|
+
## 🧩 Available Components
|
|
48
|
+
|
|
49
|
+
- `RButton` - Versatile button component with multiple variants
|
|
50
|
+
- `RInput` - Text input field with validation support
|
|
51
|
+
- `RTabs` - Tabbed interface for organizing content
|
|
52
|
+
- `RModal` - Customizable modal dialogs
|
|
53
|
+
- And many more! Check our documentation for the complete list.
|
|
54
|
+
|
|
55
|
+
## 🛠️ Development
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
# Clone the repository
|
|
59
|
+
git clone https://github.com/Rebnd/ui.git
|
|
60
|
+
|
|
61
|
+
# Install dependencies
|
|
62
|
+
npm install
|
|
63
|
+
|
|
64
|
+
# Start development server
|
|
65
|
+
npm run dev
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## 🤝 Contributing
|
|
69
|
+
|
|
70
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
71
|
+
|
|
72
|
+
## 📄 License
|
|
73
|
+
|
|
74
|
+
[MIT License](https://github.com/Rebnd/ui/blob/main/LICENSE) © 2024 [Rebnd](https://github.com/Rebnd)
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,542 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
RAccordion: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
3
|
+
details: {
|
|
4
|
+
type: import('vue').PropType<import('./src/types').AccordionDisclosure[]>;
|
|
5
|
+
required: boolean;
|
|
6
|
+
default: () => never[];
|
|
7
|
+
};
|
|
8
|
+
multiple: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
15
|
+
details: {
|
|
16
|
+
type: import('vue').PropType<import('./src/types').AccordionDisclosure[]>;
|
|
17
|
+
required: boolean;
|
|
18
|
+
default: () => never[];
|
|
19
|
+
};
|
|
20
|
+
multiple: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
}>> & Readonly<{}>, {
|
|
25
|
+
details: import('./src/types').AccordionDisclosure[];
|
|
26
|
+
multiple: boolean;
|
|
27
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
28
|
+
RAvatar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
29
|
+
color: {
|
|
30
|
+
type: import('vue').PropType<import('./src/types').Color>;
|
|
31
|
+
default: import('./src/types').Color;
|
|
32
|
+
validator: (color: import('./src/types').Color) => boolean;
|
|
33
|
+
};
|
|
34
|
+
name: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
validator: (name: string) => boolean;
|
|
38
|
+
};
|
|
39
|
+
src: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
validator: (src: string) => boolean;
|
|
42
|
+
};
|
|
43
|
+
size: {
|
|
44
|
+
type: import('vue').PropType<import('./src/types').Size>;
|
|
45
|
+
default: import('./src/types').Size;
|
|
46
|
+
validator: (size: import('./src/types').Size) => boolean;
|
|
47
|
+
};
|
|
48
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
49
|
+
[key: string]: any;
|
|
50
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
51
|
+
color: {
|
|
52
|
+
type: import('vue').PropType<import('./src/types').Color>;
|
|
53
|
+
default: import('./src/types').Color;
|
|
54
|
+
validator: (color: import('./src/types').Color) => boolean;
|
|
55
|
+
};
|
|
56
|
+
name: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
default: string;
|
|
59
|
+
validator: (name: string) => boolean;
|
|
60
|
+
};
|
|
61
|
+
src: {
|
|
62
|
+
type: StringConstructor;
|
|
63
|
+
validator: (src: string) => boolean;
|
|
64
|
+
};
|
|
65
|
+
size: {
|
|
66
|
+
type: import('vue').PropType<import('./src/types').Size>;
|
|
67
|
+
default: import('./src/types').Size;
|
|
68
|
+
validator: (size: import('./src/types').Size) => boolean;
|
|
69
|
+
};
|
|
70
|
+
}>> & Readonly<{}>, {
|
|
71
|
+
color: import('./src/types').Color;
|
|
72
|
+
name: string;
|
|
73
|
+
size: import('./src/types').Size;
|
|
74
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
75
|
+
RAvatarGroup: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
76
|
+
max: {
|
|
77
|
+
type: NumberConstructor;
|
|
78
|
+
default: number;
|
|
79
|
+
};
|
|
80
|
+
size: {
|
|
81
|
+
type: import('vue').PropType<import('./src/types').Size>;
|
|
82
|
+
default: import('./src/types').Size;
|
|
83
|
+
validator: (size: import('./src/types').Size) => boolean;
|
|
84
|
+
};
|
|
85
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
86
|
+
[key: string]: any;
|
|
87
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
88
|
+
max: {
|
|
89
|
+
type: NumberConstructor;
|
|
90
|
+
default: number;
|
|
91
|
+
};
|
|
92
|
+
size: {
|
|
93
|
+
type: import('vue').PropType<import('./src/types').Size>;
|
|
94
|
+
default: import('./src/types').Size;
|
|
95
|
+
validator: (size: import('./src/types').Size) => boolean;
|
|
96
|
+
};
|
|
97
|
+
}>> & Readonly<{}>, {
|
|
98
|
+
max: number;
|
|
99
|
+
size: import('./src/types').Size;
|
|
100
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
101
|
+
RBadge: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
102
|
+
as: {
|
|
103
|
+
type: StringConstructor;
|
|
104
|
+
default: string;
|
|
105
|
+
};
|
|
106
|
+
color: {
|
|
107
|
+
type: import('vue').PropType<import('./src/types').Color>;
|
|
108
|
+
default: import('./src/types').Color;
|
|
109
|
+
validator: (color: import('./src/types').Color) => boolean;
|
|
110
|
+
};
|
|
111
|
+
cx: {
|
|
112
|
+
type: StringConstructor;
|
|
113
|
+
default: string;
|
|
114
|
+
};
|
|
115
|
+
rounded: {
|
|
116
|
+
type: import('vue').PropType<import('./src/types').Rounded>;
|
|
117
|
+
default: string;
|
|
118
|
+
validator: (radius: string) => boolean;
|
|
119
|
+
};
|
|
120
|
+
size: {
|
|
121
|
+
type: import('vue').PropType<import('./src/types').Size>;
|
|
122
|
+
default: import('./src/types').Size;
|
|
123
|
+
validator: (size: import('./src/types').Size) => boolean;
|
|
124
|
+
};
|
|
125
|
+
variant: {
|
|
126
|
+
type: import('vue').PropType<import('./src/types').Variant>;
|
|
127
|
+
default: import('./src/types').Variant;
|
|
128
|
+
validator: (variant: import('./src/types').Variant) => boolean;
|
|
129
|
+
};
|
|
130
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
131
|
+
[key: string]: any;
|
|
132
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
133
|
+
as: {
|
|
134
|
+
type: StringConstructor;
|
|
135
|
+
default: string;
|
|
136
|
+
};
|
|
137
|
+
color: {
|
|
138
|
+
type: import('vue').PropType<import('./src/types').Color>;
|
|
139
|
+
default: import('./src/types').Color;
|
|
140
|
+
validator: (color: import('./src/types').Color) => boolean;
|
|
141
|
+
};
|
|
142
|
+
cx: {
|
|
143
|
+
type: StringConstructor;
|
|
144
|
+
default: string;
|
|
145
|
+
};
|
|
146
|
+
rounded: {
|
|
147
|
+
type: import('vue').PropType<import('./src/types').Rounded>;
|
|
148
|
+
default: string;
|
|
149
|
+
validator: (radius: string) => boolean;
|
|
150
|
+
};
|
|
151
|
+
size: {
|
|
152
|
+
type: import('vue').PropType<import('./src/types').Size>;
|
|
153
|
+
default: import('./src/types').Size;
|
|
154
|
+
validator: (size: import('./src/types').Size) => boolean;
|
|
155
|
+
};
|
|
156
|
+
variant: {
|
|
157
|
+
type: import('vue').PropType<import('./src/types').Variant>;
|
|
158
|
+
default: import('./src/types').Variant;
|
|
159
|
+
validator: (variant: import('./src/types').Variant) => boolean;
|
|
160
|
+
};
|
|
161
|
+
}>> & Readonly<{}>, {
|
|
162
|
+
color: import('./src/types').Color;
|
|
163
|
+
cx: string;
|
|
164
|
+
rounded: import('./src/types').Rounded;
|
|
165
|
+
size: import('./src/types').Size;
|
|
166
|
+
variant: import('./src/types').Variant;
|
|
167
|
+
as: string;
|
|
168
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
169
|
+
RBreadcrumb: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
170
|
+
max: {
|
|
171
|
+
type: NumberConstructor;
|
|
172
|
+
default: number;
|
|
173
|
+
};
|
|
174
|
+
separator: {
|
|
175
|
+
type: import('vue').PropType<import('./src/types').IconName>;
|
|
176
|
+
default: import('./src/types').IconName;
|
|
177
|
+
};
|
|
178
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
179
|
+
[key: string]: any;
|
|
180
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
181
|
+
max: {
|
|
182
|
+
type: NumberConstructor;
|
|
183
|
+
default: number;
|
|
184
|
+
};
|
|
185
|
+
separator: {
|
|
186
|
+
type: import('vue').PropType<import('./src/types').IconName>;
|
|
187
|
+
default: import('./src/types').IconName;
|
|
188
|
+
};
|
|
189
|
+
}>> & Readonly<{}>, {
|
|
190
|
+
max: number;
|
|
191
|
+
separator: import('./src/types').IconName;
|
|
192
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
193
|
+
RButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
194
|
+
color: {
|
|
195
|
+
type: import('vue').PropType<import('./src/types').Color>;
|
|
196
|
+
default: import('./src/types').Color;
|
|
197
|
+
validator: (color: import('./src/types').Color) => boolean;
|
|
198
|
+
};
|
|
199
|
+
size: {
|
|
200
|
+
type: import('vue').PropType<import('./src/types').Size>;
|
|
201
|
+
default: import('./src/types').Size;
|
|
202
|
+
validator: (size: import('./src/types').Size) => boolean;
|
|
203
|
+
};
|
|
204
|
+
type: {
|
|
205
|
+
type: import('vue').PropType<import('./src/types').ButtonType>;
|
|
206
|
+
default: import('./src/types').ButtonType;
|
|
207
|
+
validator: (type: import('./src/types').ButtonType) => boolean;
|
|
208
|
+
};
|
|
209
|
+
variant: {
|
|
210
|
+
type: import('vue').PropType<import('./src/types').Variant>;
|
|
211
|
+
default: import('./src/types').Variant;
|
|
212
|
+
validator: (variant: import('./src/types').Variant) => boolean;
|
|
213
|
+
};
|
|
214
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
215
|
+
[key: string]: any;
|
|
216
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
217
|
+
color: {
|
|
218
|
+
type: import('vue').PropType<import('./src/types').Color>;
|
|
219
|
+
default: import('./src/types').Color;
|
|
220
|
+
validator: (color: import('./src/types').Color) => boolean;
|
|
221
|
+
};
|
|
222
|
+
size: {
|
|
223
|
+
type: import('vue').PropType<import('./src/types').Size>;
|
|
224
|
+
default: import('./src/types').Size;
|
|
225
|
+
validator: (size: import('./src/types').Size) => boolean;
|
|
226
|
+
};
|
|
227
|
+
type: {
|
|
228
|
+
type: import('vue').PropType<import('./src/types').ButtonType>;
|
|
229
|
+
default: import('./src/types').ButtonType;
|
|
230
|
+
validator: (type: import('./src/types').ButtonType) => boolean;
|
|
231
|
+
};
|
|
232
|
+
variant: {
|
|
233
|
+
type: import('vue').PropType<import('./src/types').Variant>;
|
|
234
|
+
default: import('./src/types').Variant;
|
|
235
|
+
validator: (variant: import('./src/types').Variant) => boolean;
|
|
236
|
+
};
|
|
237
|
+
}>> & Readonly<{}>, {
|
|
238
|
+
color: import('./src/types').Color;
|
|
239
|
+
type: import('./src/types').ButtonType;
|
|
240
|
+
size: import('./src/types').Size;
|
|
241
|
+
variant: import('./src/types').Variant;
|
|
242
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
243
|
+
RCard: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
244
|
+
as: {
|
|
245
|
+
type: import('vue').PropType<keyof HTMLElementTagNameMap>;
|
|
246
|
+
default: string;
|
|
247
|
+
};
|
|
248
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
249
|
+
[key: string]: any;
|
|
250
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
251
|
+
as: {
|
|
252
|
+
type: import('vue').PropType<keyof HTMLElementTagNameMap>;
|
|
253
|
+
default: string;
|
|
254
|
+
};
|
|
255
|
+
}>> & Readonly<{}>, {
|
|
256
|
+
as: keyof HTMLElementTagNameMap;
|
|
257
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
258
|
+
RCombobox: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
259
|
+
modelValue: {
|
|
260
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
261
|
+
default: string;
|
|
262
|
+
};
|
|
263
|
+
multiple: {
|
|
264
|
+
type: BooleanConstructor;
|
|
265
|
+
default: boolean;
|
|
266
|
+
};
|
|
267
|
+
placeholder: {
|
|
268
|
+
type: StringConstructor;
|
|
269
|
+
default: string;
|
|
270
|
+
};
|
|
271
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
272
|
+
[key: string]: any;
|
|
273
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
274
|
+
modelValue: {
|
|
275
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
276
|
+
default: string;
|
|
277
|
+
};
|
|
278
|
+
multiple: {
|
|
279
|
+
type: BooleanConstructor;
|
|
280
|
+
default: boolean;
|
|
281
|
+
};
|
|
282
|
+
placeholder: {
|
|
283
|
+
type: StringConstructor;
|
|
284
|
+
default: string;
|
|
285
|
+
};
|
|
286
|
+
}>> & Readonly<{
|
|
287
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
288
|
+
}>, {
|
|
289
|
+
multiple: boolean;
|
|
290
|
+
modelValue: string | unknown[];
|
|
291
|
+
placeholder: string;
|
|
292
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
293
|
+
RDropdown: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
294
|
+
mode: {
|
|
295
|
+
type: import('vue').PropType<"click" | "hover">;
|
|
296
|
+
default: string;
|
|
297
|
+
};
|
|
298
|
+
offset: {
|
|
299
|
+
type: NumberConstructor;
|
|
300
|
+
default: number;
|
|
301
|
+
};
|
|
302
|
+
options: {
|
|
303
|
+
type: ArrayConstructor;
|
|
304
|
+
default: () => never[];
|
|
305
|
+
};
|
|
306
|
+
placement: {
|
|
307
|
+
type: import('vue').PropType<import('./src/types').AnchorPosition>;
|
|
308
|
+
default: string;
|
|
309
|
+
};
|
|
310
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
311
|
+
[key: string]: any;
|
|
312
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
313
|
+
mode: {
|
|
314
|
+
type: import('vue').PropType<"click" | "hover">;
|
|
315
|
+
default: string;
|
|
316
|
+
};
|
|
317
|
+
offset: {
|
|
318
|
+
type: NumberConstructor;
|
|
319
|
+
default: number;
|
|
320
|
+
};
|
|
321
|
+
options: {
|
|
322
|
+
type: ArrayConstructor;
|
|
323
|
+
default: () => never[];
|
|
324
|
+
};
|
|
325
|
+
placement: {
|
|
326
|
+
type: import('vue').PropType<import('./src/types').AnchorPosition>;
|
|
327
|
+
default: string;
|
|
328
|
+
};
|
|
329
|
+
}>> & Readonly<{}>, {
|
|
330
|
+
offset: number;
|
|
331
|
+
mode: "click" | "hover";
|
|
332
|
+
options: unknown[];
|
|
333
|
+
placement: import('./src/types').AnchorPosition;
|
|
334
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
335
|
+
RForm: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
336
|
+
schema: {
|
|
337
|
+
type: import('vue').PropType<import('zod').ZodType>;
|
|
338
|
+
required: boolean;
|
|
339
|
+
};
|
|
340
|
+
state: {
|
|
341
|
+
type: ObjectConstructor;
|
|
342
|
+
required: boolean;
|
|
343
|
+
};
|
|
344
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
345
|
+
[key: string]: any;
|
|
346
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "submit"[], "submit", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
347
|
+
schema: {
|
|
348
|
+
type: import('vue').PropType<import('zod').ZodType>;
|
|
349
|
+
required: boolean;
|
|
350
|
+
};
|
|
351
|
+
state: {
|
|
352
|
+
type: ObjectConstructor;
|
|
353
|
+
required: boolean;
|
|
354
|
+
};
|
|
355
|
+
}>> & Readonly<{
|
|
356
|
+
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
357
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
358
|
+
RFormGroup: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
359
|
+
name: {
|
|
360
|
+
type: StringConstructor;
|
|
361
|
+
default: string;
|
|
362
|
+
};
|
|
363
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
364
|
+
[key: string]: any;
|
|
365
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
366
|
+
name: {
|
|
367
|
+
type: StringConstructor;
|
|
368
|
+
default: string;
|
|
369
|
+
};
|
|
370
|
+
}>> & Readonly<{}>, {
|
|
371
|
+
name: string;
|
|
372
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
373
|
+
RIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
374
|
+
fillColor: {
|
|
375
|
+
type: StringConstructor;
|
|
376
|
+
default: string;
|
|
377
|
+
};
|
|
378
|
+
height: {
|
|
379
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
380
|
+
default: string;
|
|
381
|
+
};
|
|
382
|
+
name: {
|
|
383
|
+
type: import('vue').PropType<import('./src/types').IconName>;
|
|
384
|
+
required: boolean;
|
|
385
|
+
};
|
|
386
|
+
width: {
|
|
387
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
388
|
+
default: string;
|
|
389
|
+
};
|
|
390
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
391
|
+
[key: string]: any;
|
|
392
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
393
|
+
fillColor: {
|
|
394
|
+
type: StringConstructor;
|
|
395
|
+
default: string;
|
|
396
|
+
};
|
|
397
|
+
height: {
|
|
398
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
399
|
+
default: string;
|
|
400
|
+
};
|
|
401
|
+
name: {
|
|
402
|
+
type: import('vue').PropType<import('./src/types').IconName>;
|
|
403
|
+
required: boolean;
|
|
404
|
+
};
|
|
405
|
+
width: {
|
|
406
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
407
|
+
default: string;
|
|
408
|
+
};
|
|
409
|
+
}>> & Readonly<{}>, {
|
|
410
|
+
height: string | number;
|
|
411
|
+
width: string | number;
|
|
412
|
+
fillColor: string;
|
|
413
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
414
|
+
RInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
415
|
+
hasError: {
|
|
416
|
+
type: BooleanConstructor;
|
|
417
|
+
default: boolean;
|
|
418
|
+
};
|
|
419
|
+
modelValue: {
|
|
420
|
+
type: StringConstructor;
|
|
421
|
+
default: string;
|
|
422
|
+
};
|
|
423
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
424
|
+
[key: string]: any;
|
|
425
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
426
|
+
hasError: {
|
|
427
|
+
type: BooleanConstructor;
|
|
428
|
+
default: boolean;
|
|
429
|
+
};
|
|
430
|
+
modelValue: {
|
|
431
|
+
type: StringConstructor;
|
|
432
|
+
default: string;
|
|
433
|
+
};
|
|
434
|
+
}>> & Readonly<{
|
|
435
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
436
|
+
}>, {
|
|
437
|
+
hasError: boolean;
|
|
438
|
+
modelValue: string;
|
|
439
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
440
|
+
RLink: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
441
|
+
as: {
|
|
442
|
+
type: import('vue').PropType<import('./src/types').LinkType>;
|
|
443
|
+
default: string;
|
|
444
|
+
};
|
|
445
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
446
|
+
[key: string]: any;
|
|
447
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
448
|
+
as: {
|
|
449
|
+
type: import('vue').PropType<import('./src/types').LinkType>;
|
|
450
|
+
default: string;
|
|
451
|
+
};
|
|
452
|
+
}>> & Readonly<{}>, {
|
|
453
|
+
as: import('./src/types').LinkType;
|
|
454
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
455
|
+
RTab: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
456
|
+
activeTab: {
|
|
457
|
+
type: StringConstructor;
|
|
458
|
+
default: string;
|
|
459
|
+
};
|
|
460
|
+
title: {
|
|
461
|
+
type: StringConstructor;
|
|
462
|
+
required: boolean;
|
|
463
|
+
};
|
|
464
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
465
|
+
[key: string]: any;
|
|
466
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
467
|
+
activeTab: {
|
|
468
|
+
type: StringConstructor;
|
|
469
|
+
default: string;
|
|
470
|
+
};
|
|
471
|
+
title: {
|
|
472
|
+
type: StringConstructor;
|
|
473
|
+
required: boolean;
|
|
474
|
+
};
|
|
475
|
+
}>> & Readonly<{}>, {
|
|
476
|
+
activeTab: string;
|
|
477
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
478
|
+
RTabs: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
479
|
+
modelValue: {
|
|
480
|
+
type: StringConstructor;
|
|
481
|
+
default: string;
|
|
482
|
+
};
|
|
483
|
+
size: {
|
|
484
|
+
type: import('vue').PropType<import('./src/types').Size>;
|
|
485
|
+
default: import('./src/types').Size;
|
|
486
|
+
validator: (size: import('./src/types').Size) => boolean;
|
|
487
|
+
};
|
|
488
|
+
variant: {
|
|
489
|
+
type: import('vue').PropType<import('./src/types').Variant>;
|
|
490
|
+
default: string;
|
|
491
|
+
validator: (variant: import('./src/types').Variant) => boolean;
|
|
492
|
+
};
|
|
493
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
494
|
+
[key: string]: any;
|
|
495
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
496
|
+
modelValue: {
|
|
497
|
+
type: StringConstructor;
|
|
498
|
+
default: string;
|
|
499
|
+
};
|
|
500
|
+
size: {
|
|
501
|
+
type: import('vue').PropType<import('./src/types').Size>;
|
|
502
|
+
default: import('./src/types').Size;
|
|
503
|
+
validator: (size: import('./src/types').Size) => boolean;
|
|
504
|
+
};
|
|
505
|
+
variant: {
|
|
506
|
+
type: import('vue').PropType<import('./src/types').Variant>;
|
|
507
|
+
default: string;
|
|
508
|
+
validator: (variant: import('./src/types').Variant) => boolean;
|
|
509
|
+
};
|
|
510
|
+
}>> & Readonly<{
|
|
511
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
512
|
+
}>, {
|
|
513
|
+
size: import('./src/types').Size;
|
|
514
|
+
variant: import('./src/types').Variant;
|
|
515
|
+
modelValue: string;
|
|
516
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
517
|
+
RTextArea: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
518
|
+
hasError: {
|
|
519
|
+
type: BooleanConstructor;
|
|
520
|
+
default: boolean;
|
|
521
|
+
};
|
|
522
|
+
modelValue: {
|
|
523
|
+
type: StringConstructor;
|
|
524
|
+
default: string;
|
|
525
|
+
};
|
|
526
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
527
|
+
[key: string]: any;
|
|
528
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
529
|
+
hasError: {
|
|
530
|
+
type: BooleanConstructor;
|
|
531
|
+
default: boolean;
|
|
532
|
+
};
|
|
533
|
+
modelValue: {
|
|
534
|
+
type: StringConstructor;
|
|
535
|
+
default: string;
|
|
536
|
+
};
|
|
537
|
+
}>> & Readonly<{}>, {
|
|
538
|
+
hasError: boolean;
|
|
539
|
+
modelValue: string;
|
|
540
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
541
|
+
};
|
|
542
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
details: {
|
|
3
|
+
type: import('vue').PropType<import('../../types').AccordionDisclosure[]>;
|
|
4
|
+
required: boolean;
|
|
5
|
+
default: () => never[];
|
|
6
|
+
};
|
|
7
|
+
multiple: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
14
|
+
details: {
|
|
15
|
+
type: import('vue').PropType<import('../../types').AccordionDisclosure[]>;
|
|
16
|
+
required: boolean;
|
|
17
|
+
default: () => never[];
|
|
18
|
+
};
|
|
19
|
+
multiple: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{}>, {
|
|
24
|
+
details: import('../../types').AccordionDisclosure[];
|
|
25
|
+
multiple: boolean;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default _default;
|