@expcat/tigercat-vue 0.2.0 → 0.2.10

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.
Files changed (64) hide show
  1. package/README.md +50 -0
  2. package/dist/components/Alert.d.mts +4 -4
  3. package/dist/components/Alert.d.ts +4 -4
  4. package/dist/components/Badge.d.mts +2 -2
  5. package/dist/components/Badge.d.ts +2 -2
  6. package/dist/components/Button.d.mts +2 -2
  7. package/dist/components/Button.d.ts +2 -2
  8. package/dist/components/Card.d.mts +1 -1
  9. package/dist/components/Card.d.ts +1 -1
  10. package/dist/components/DatePicker.d.mts +1 -1
  11. package/dist/components/DatePicker.d.ts +1 -1
  12. package/dist/components/Drawer.d.mts +3 -3
  13. package/dist/components/Drawer.d.ts +3 -3
  14. package/dist/components/Dropdown.d.mts +1 -1
  15. package/dist/components/Dropdown.d.ts +1 -1
  16. package/dist/components/DropdownItem.d.mts +1 -1
  17. package/dist/components/DropdownItem.d.ts +1 -1
  18. package/dist/components/Link.d.mts +1 -1
  19. package/dist/components/Link.d.ts +1 -1
  20. package/dist/components/List.d.mts +2 -2
  21. package/dist/components/List.d.ts +2 -2
  22. package/dist/components/Loading.d.mts +1 -1
  23. package/dist/components/Loading.d.ts +1 -1
  24. package/dist/components/Menu.d.mts +1 -1
  25. package/dist/components/Menu.d.ts +1 -1
  26. package/dist/components/MenuItem.d.mts +1 -1
  27. package/dist/components/MenuItem.d.ts +1 -1
  28. package/dist/components/Modal.d.mts +3 -3
  29. package/dist/components/Modal.d.ts +3 -3
  30. package/dist/components/Pagination.d.mts +2 -2
  31. package/dist/components/Pagination.d.ts +2 -2
  32. package/dist/components/Popconfirm.d.mts +3 -3
  33. package/dist/components/Popconfirm.d.ts +3 -3
  34. package/dist/components/Popover.d.mts +1 -1
  35. package/dist/components/Popover.d.ts +1 -1
  36. package/dist/components/Progress.d.mts +2 -2
  37. package/dist/components/Progress.d.ts +2 -2
  38. package/dist/components/Skeleton.d.mts +1 -1
  39. package/dist/components/Skeleton.d.ts +1 -1
  40. package/dist/components/Slider.d.mts +1 -1
  41. package/dist/components/Slider.d.ts +1 -1
  42. package/dist/components/StepsItem.d.mts +2 -2
  43. package/dist/components/StepsItem.d.ts +2 -2
  44. package/dist/components/SubMenu.d.mts +1 -1
  45. package/dist/components/SubMenu.d.ts +1 -1
  46. package/dist/components/TabPane.d.mts +2 -2
  47. package/dist/components/TabPane.d.ts +2 -2
  48. package/dist/components/Table.d.mts +1 -1
  49. package/dist/components/Table.d.ts +1 -1
  50. package/dist/components/Tabs.d.mts +2 -2
  51. package/dist/components/Tabs.d.ts +2 -2
  52. package/dist/components/Tag.d.mts +2 -2
  53. package/dist/components/Tag.d.ts +2 -2
  54. package/dist/components/TimePicker.d.mts +2 -2
  55. package/dist/components/TimePicker.d.ts +2 -2
  56. package/dist/components/Timeline.d.mts +2 -2
  57. package/dist/components/Timeline.d.ts +2 -2
  58. package/dist/components/Tooltip.d.mts +1 -1
  59. package/dist/components/Tooltip.d.ts +1 -1
  60. package/dist/components/Tree.d.mts +1 -1
  61. package/dist/components/Tree.d.ts +1 -1
  62. package/dist/components/Upload.d.mts +2 -2
  63. package/dist/components/Upload.d.ts +2 -2
  64. package/package.json +6 -2
package/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # @expcat/tigercat-vue
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@expcat/tigercat-vue.svg)](https://www.npmjs.com/package/@expcat/tigercat-vue)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
5
+
6
+ Vue 3 UI components for [Tigercat](https://github.com/expcats/Tigercat) - A Tailwind CSS based component library.
7
+
8
+ ## 📖 Documentation
9
+
10
+ **[Live Demo & Docs →](https://expcat.github.io/Tigercat/vue/)**
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ pnpm add @expcat/tigercat-vue
16
+ # or
17
+ npm install @expcat/tigercat-vue
18
+ ```
19
+
20
+ **Requirements:** Vue ≥3.3, Tailwind CSS ≥3.4
21
+
22
+ ## Quick Start
23
+
24
+ ```vue
25
+ <script setup>
26
+ import { ConfigProvider, Button } from '@expcat/tigercat-vue'
27
+ </script>
28
+
29
+ <template>
30
+ <ConfigProvider>
31
+ <Button variant="primary">Click me</Button>
32
+ </ConfigProvider>
33
+ </template>
34
+ ```
35
+
36
+ ## Components
37
+
38
+ | Category | Components |
39
+ | -------------- | ------------------------------------------------------------------------------------- |
40
+ | **Basic** | Alert, Avatar, Badge, Button, Code, Divider, Icon, Link, Tag, Text |
41
+ | **Form** | Input, Select, Checkbox, Radio, Switch, Slider, DatePicker, TimePicker, Upload, Form |
42
+ | **Layout** | Card, Container, Grid (Row/Col), Layout, List, Descriptions, Skeleton, Space |
43
+ | **Navigation** | Menu, Tabs, Breadcrumb, Pagination, Steps, Dropdown, Tree |
44
+ | **Feedback** | Modal, Drawer, Message, Notification, Loading, Popconfirm, Popover, Tooltip, Progress |
45
+ | **Data** | Table, Timeline |
46
+ | **Charts** | BarChart, LineChart, AreaChart, PieChart, DonutChart, RadarChart, ScatterChart |
47
+
48
+ ## License
49
+
50
+ [MIT](https://opensource.org/licenses/MIT)
@@ -156,15 +156,15 @@ declare const Alert: vue.DefineComponent<vue.ExtractPropTypes<{
156
156
  }>> & Readonly<{
157
157
  onClose?: ((...args: any[]) => any) | undefined;
158
158
  }>, {
159
- type: AlertType;
160
159
  style: Record<string, string | number>;
161
160
  title: string;
161
+ type: AlertType;
162
162
  size: AlertSize;
163
- className: string;
163
+ description: string;
164
+ showIcon: boolean;
164
165
  closable: boolean;
165
166
  closeAriaLabel: string;
166
- showIcon: boolean;
167
- description: string;
167
+ className: string;
168
168
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
169
169
 
170
170
  export { Alert, type VueAlertProps, Alert as default };
@@ -156,15 +156,15 @@ declare const Alert: vue.DefineComponent<vue.ExtractPropTypes<{
156
156
  }>> & Readonly<{
157
157
  onClose?: ((...args: any[]) => any) | undefined;
158
158
  }>, {
159
- type: AlertType;
160
159
  style: Record<string, string | number>;
161
160
  title: string;
161
+ type: AlertType;
162
162
  size: AlertSize;
163
- className: string;
163
+ description: string;
164
+ showIcon: boolean;
164
165
  closable: boolean;
165
166
  closeAriaLabel: string;
166
- showIcon: boolean;
167
- description: string;
167
+ className: string;
168
168
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
169
169
 
170
170
  export { Alert, type VueAlertProps, Alert as default };
@@ -175,11 +175,11 @@ declare const Badge: vue.DefineComponent<vue.ExtractPropTypes<{
175
175
  default: undefined;
176
176
  };
177
177
  }>> & Readonly<{}>, {
178
- type: BadgeType;
179
178
  style: Record<string, string | number>;
179
+ type: BadgeType;
180
180
  size: BadgeSize;
181
- variant: BadgeVariant;
182
181
  className: string;
182
+ variant: BadgeVariant;
183
183
  max: number;
184
184
  content: string | number;
185
185
  position: BadgePosition;
@@ -175,11 +175,11 @@ declare const Badge: vue.DefineComponent<vue.ExtractPropTypes<{
175
175
  default: undefined;
176
176
  };
177
177
  }>> & Readonly<{}>, {
178
- type: BadgeType;
179
178
  style: Record<string, string | number>;
179
+ type: BadgeType;
180
180
  size: BadgeSize;
181
- variant: BadgeVariant;
182
181
  className: string;
182
+ variant: BadgeVariant;
183
183
  max: number;
184
184
  content: string | number;
185
185
  position: BadgePosition;
@@ -107,14 +107,14 @@ declare const Button: vue.DefineComponent<vue.ExtractPropTypes<{
107
107
  }>> & Readonly<{
108
108
  onClick?: ((...args: any[]) => any) | undefined;
109
109
  }>, {
110
- type: "button" | "submit" | "reset";
111
110
  style: Record<string, unknown>;
111
+ type: "button" | "reset" | "submit";
112
112
  size: ButtonSize;
113
+ className: string;
113
114
  disabled: boolean;
114
115
  loading: boolean;
115
116
  block: boolean;
116
117
  variant: ButtonVariant;
117
- className: string;
118
118
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
119
119
 
120
120
  export { Button, type VueButtonProps, Button as default };
@@ -107,14 +107,14 @@ declare const Button: vue.DefineComponent<vue.ExtractPropTypes<{
107
107
  }>> & Readonly<{
108
108
  onClick?: ((...args: any[]) => any) | undefined;
109
109
  }>, {
110
- type: "button" | "submit" | "reset";
111
110
  style: Record<string, unknown>;
111
+ type: "button" | "reset" | "submit";
112
112
  size: ButtonSize;
113
+ className: string;
113
114
  disabled: boolean;
114
115
  loading: boolean;
115
116
  block: boolean;
116
117
  variant: ButtonVariant;
117
- className: string;
118
118
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
119
119
 
120
120
  export { Button, type VueButtonProps, Button as default };
@@ -122,8 +122,8 @@ declare const Card: vue.DefineComponent<vue.ExtractPropTypes<{
122
122
  }>> & Readonly<{}>, {
123
123
  style: Record<string, string | number>;
124
124
  size: CardSize;
125
- variant: CardVariant;
126
125
  className: string;
126
+ variant: CardVariant;
127
127
  cover: string;
128
128
  hoverable: boolean;
129
129
  coverAlt: string;
@@ -122,8 +122,8 @@ declare const Card: vue.DefineComponent<vue.ExtractPropTypes<{
122
122
  }>> & Readonly<{}>, {
123
123
  style: Record<string, string | number>;
124
124
  size: CardSize;
125
- variant: CardVariant;
126
125
  className: string;
126
+ variant: CardVariant;
127
127
  cover: string;
128
128
  hoverable: boolean;
129
129
  coverAlt: string;
@@ -296,8 +296,8 @@ declare const DatePicker: vue.DefineComponent<vue.ExtractPropTypes<{
296
296
  }>, {
297
297
  style: Record<string, unknown>;
298
298
  size: DatePickerSize;
299
- disabled: boolean;
300
299
  className: string;
300
+ disabled: boolean;
301
301
  range: boolean;
302
302
  modelValue: string | Date | [string | Date | null, string | Date | null] | null;
303
303
  placeholder: string;
@@ -296,8 +296,8 @@ declare const DatePicker: vue.DefineComponent<vue.ExtractPropTypes<{
296
296
  }>, {
297
297
  style: Record<string, unknown>;
298
298
  size: DatePickerSize;
299
- disabled: boolean;
300
299
  className: string;
300
+ disabled: boolean;
301
301
  range: boolean;
302
302
  modelValue: string | Date | [string | Date | null, string | Date | null] | null;
303
303
  placeholder: string;
@@ -260,16 +260,16 @@ declare const Drawer: vue.DefineComponent<vue.ExtractPropTypes<{
260
260
  "onAfter-enter"?: ((...args: any[]) => any) | undefined;
261
261
  "onAfter-leave"?: ((...args: any[]) => any) | undefined;
262
262
  }>, {
263
- locale: Partial<TigerLocale>;
264
263
  style: Record<string, unknown>;
265
264
  title: string;
266
265
  size: DrawerSize;
266
+ closable: boolean;
267
+ closeAriaLabel: string;
267
268
  className: string;
269
+ locale: Partial<TigerLocale>;
268
270
  mask: boolean;
269
271
  visible: boolean;
270
272
  zIndex: number;
271
- closable: boolean;
272
- closeAriaLabel: string;
273
273
  placement: DrawerPlacement;
274
274
  maskClosable: boolean;
275
275
  bodyClassName: string;
@@ -260,16 +260,16 @@ declare const Drawer: vue.DefineComponent<vue.ExtractPropTypes<{
260
260
  "onAfter-enter"?: ((...args: any[]) => any) | undefined;
261
261
  "onAfter-leave"?: ((...args: any[]) => any) | undefined;
262
262
  }>, {
263
- locale: Partial<TigerLocale>;
264
263
  style: Record<string, unknown>;
265
264
  title: string;
266
265
  size: DrawerSize;
266
+ closable: boolean;
267
+ closeAriaLabel: string;
267
268
  className: string;
269
+ locale: Partial<TigerLocale>;
268
270
  mask: boolean;
269
271
  visible: boolean;
270
272
  zIndex: number;
271
- closable: boolean;
272
- closeAriaLabel: string;
273
273
  placement: DrawerPlacement;
274
274
  maskClosable: boolean;
275
275
  bodyClassName: string;
@@ -160,8 +160,8 @@ declare const Dropdown: vue.DefineComponent<vue.ExtractPropTypes<{
160
160
  "onVisible-change"?: ((...args: any[]) => any) | undefined;
161
161
  }>, {
162
162
  style: Record<string, unknown>;
163
- disabled: boolean;
164
163
  className: string;
164
+ disabled: boolean;
165
165
  offset: number;
166
166
  visible: boolean;
167
167
  placement: FloatingPlacement;
@@ -160,8 +160,8 @@ declare const Dropdown: vue.DefineComponent<vue.ExtractPropTypes<{
160
160
  "onVisible-change"?: ((...args: any[]) => any) | undefined;
161
161
  }>, {
162
162
  style: Record<string, unknown>;
163
- disabled: boolean;
164
163
  className: string;
164
+ disabled: boolean;
165
165
  offset: number;
166
166
  visible: boolean;
167
167
  placement: FloatingPlacement;
@@ -81,8 +81,8 @@ declare const DropdownItem: vue.DefineComponent<vue.ExtractPropTypes<{
81
81
  onClick?: ((...args: any[]) => any) | undefined;
82
82
  }>, {
83
83
  style: Record<string, unknown>;
84
- disabled: boolean;
85
84
  className: string;
85
+ disabled: boolean;
86
86
  divided: boolean;
87
87
  itemKey: string | number;
88
88
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
@@ -81,8 +81,8 @@ declare const DropdownItem: vue.DefineComponent<vue.ExtractPropTypes<{
81
81
  onClick?: ((...args: any[]) => any) | undefined;
82
82
  }>, {
83
83
  style: Record<string, unknown>;
84
- disabled: boolean;
85
84
  className: string;
85
+ disabled: boolean;
86
86
  divided: boolean;
87
87
  itemKey: string | number;
88
88
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
@@ -143,9 +143,9 @@ declare const Link: vue.DefineComponent<vue.ExtractPropTypes<{
143
143
  }>, {
144
144
  style: Record<string, unknown>;
145
145
  size: LinkSize;
146
+ className: string;
146
147
  disabled: boolean;
147
148
  variant: LinkVariant;
148
- className: string;
149
149
  underline: boolean;
150
150
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
151
151
 
@@ -143,9 +143,9 @@ declare const Link: vue.DefineComponent<vue.ExtractPropTypes<{
143
143
  }>, {
144
144
  style: Record<string, unknown>;
145
145
  size: LinkSize;
146
+ className: string;
146
147
  disabled: boolean;
147
148
  variant: LinkVariant;
148
- className: string;
149
149
  underline: boolean;
150
150
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
151
151
 
@@ -208,11 +208,11 @@ declare const List: vue.DefineComponent<vue.ExtractPropTypes<{
208
208
  "onPage-change"?: ((...args: any[]) => any) | undefined;
209
209
  "onItem-click"?: ((...args: any[]) => any) | undefined;
210
210
  }>, {
211
- pagination: false | ListPaginationConfig;
212
211
  style: Record<string, string | number>;
213
212
  size: ListSize;
214
- loading: boolean;
215
213
  className: string;
214
+ pagination: false | ListPaginationConfig;
215
+ loading: boolean;
216
216
  split: boolean;
217
217
  dataSource: ListItem[];
218
218
  bordered: ListBorderStyle;
@@ -208,11 +208,11 @@ declare const List: vue.DefineComponent<vue.ExtractPropTypes<{
208
208
  "onPage-change"?: ((...args: any[]) => any) | undefined;
209
209
  "onItem-click"?: ((...args: any[]) => any) | undefined;
210
210
  }>, {
211
- pagination: false | ListPaginationConfig;
212
211
  style: Record<string, string | number>;
213
212
  size: ListSize;
214
- loading: boolean;
215
213
  className: string;
214
+ pagination: false | ListPaginationConfig;
215
+ loading: boolean;
216
216
  split: boolean;
217
217
  dataSource: ListItem[];
218
218
  bordered: ListBorderStyle;
@@ -173,8 +173,8 @@ declare const Loading: vue.DefineComponent<vue.ExtractPropTypes<{
173
173
  }>> & Readonly<{}>, {
174
174
  style: Record<string, string | number>;
175
175
  size: LoadingSize;
176
- variant: LoadingVariant;
177
176
  className: string;
177
+ variant: LoadingVariant;
178
178
  text: string;
179
179
  color: LoadingColor;
180
180
  background: string;
@@ -173,8 +173,8 @@ declare const Loading: vue.DefineComponent<vue.ExtractPropTypes<{
173
173
  }>> & Readonly<{}>, {
174
174
  style: Record<string, string | number>;
175
175
  size: LoadingSize;
176
- variant: LoadingVariant;
177
176
  className: string;
177
+ variant: LoadingVariant;
178
178
  text: string;
179
179
  color: LoadingColor;
180
180
  background: string;
@@ -189,8 +189,8 @@ declare const Menu: vue.DefineComponent<vue.ExtractPropTypes<{
189
189
  "onOpen-change"?: ((...args: any[]) => any) | undefined;
190
190
  }>, {
191
191
  style: Record<string, string | number> | undefined;
192
- className: string;
193
192
  mode: MenuMode;
193
+ className: string;
194
194
  multiple: boolean;
195
195
  collapsed: boolean;
196
196
  defaultSelectedKeys: (string | number)[];
@@ -189,8 +189,8 @@ declare const Menu: vue.DefineComponent<vue.ExtractPropTypes<{
189
189
  "onOpen-change"?: ((...args: any[]) => any) | undefined;
190
190
  }>, {
191
191
  style: Record<string, string | number> | undefined;
192
- className: string;
193
192
  mode: MenuMode;
193
+ className: string;
194
194
  multiple: boolean;
195
195
  collapsed: boolean;
196
196
  defaultSelectedKeys: (string | number)[];
@@ -88,8 +88,8 @@ declare const MenuItem: vue.DefineComponent<vue.ExtractPropTypes<{
88
88
  };
89
89
  }>> & Readonly<{}>, {
90
90
  style: Record<string, string | number>;
91
- disabled: boolean;
92
91
  className: string;
92
+ disabled: boolean;
93
93
  collapsed: boolean;
94
94
  level: number;
95
95
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
@@ -88,8 +88,8 @@ declare const MenuItem: vue.DefineComponent<vue.ExtractPropTypes<{
88
88
  };
89
89
  }>> & Readonly<{}>, {
90
90
  style: Record<string, string | number>;
91
- disabled: boolean;
92
91
  className: string;
92
+ disabled: boolean;
93
93
  collapsed: boolean;
94
94
  level: number;
95
95
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
@@ -295,16 +295,16 @@ declare const Modal: vue.DefineComponent<vue.ExtractPropTypes<{
295
295
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
296
296
  onOk?: ((...args: any[]) => any) | undefined;
297
297
  }>, {
298
- locale: Partial<TigerLocale>;
299
298
  style: Record<string, unknown>;
300
299
  title: string;
301
300
  size: ModalSize;
301
+ closable: boolean;
302
+ closeAriaLabel: string;
302
303
  className: string;
304
+ locale: Partial<TigerLocale>;
303
305
  mask: boolean;
304
306
  visible: boolean;
305
307
  zIndex: number;
306
- closable: boolean;
307
- closeAriaLabel: string;
308
308
  centered: boolean;
309
309
  maskClosable: boolean;
310
310
  destroyOnClose: boolean;
@@ -295,16 +295,16 @@ declare const Modal: vue.DefineComponent<vue.ExtractPropTypes<{
295
295
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
296
296
  onOk?: ((...args: any[]) => any) | undefined;
297
297
  }>, {
298
- locale: Partial<TigerLocale>;
299
298
  style: Record<string, unknown>;
300
299
  title: string;
301
300
  size: ModalSize;
301
+ closable: boolean;
302
+ closeAriaLabel: string;
302
303
  className: string;
304
+ locale: Partial<TigerLocale>;
303
305
  mask: boolean;
304
306
  visible: boolean;
305
307
  zIndex: number;
306
- closable: boolean;
307
- closeAriaLabel: string;
308
308
  centered: boolean;
309
309
  maskClosable: boolean;
310
310
  destroyOnClose: boolean;
@@ -326,11 +326,11 @@ declare const Pagination: vue.DefineComponent<vue.ExtractPropTypes<{
326
326
  "onUpdate:pageSize"?: ((...args: any[]) => any) | undefined;
327
327
  "onPage-size-change"?: ((...args: any[]) => any) | undefined;
328
328
  }>, {
329
- locale: Partial<TigerLocale>;
330
329
  style: Record<string, unknown>;
331
330
  size: PaginationSize;
332
- disabled: boolean;
333
331
  className: string;
332
+ locale: Partial<TigerLocale>;
333
+ disabled: boolean;
334
334
  align: PaginationAlign;
335
335
  defaultCurrent: number;
336
336
  defaultPageSize: number;
@@ -326,11 +326,11 @@ declare const Pagination: vue.DefineComponent<vue.ExtractPropTypes<{
326
326
  "onUpdate:pageSize"?: ((...args: any[]) => any) | undefined;
327
327
  "onPage-size-change"?: ((...args: any[]) => any) | undefined;
328
328
  }>, {
329
- locale: Partial<TigerLocale>;
330
329
  style: Record<string, unknown>;
331
330
  size: PaginationSize;
332
- disabled: boolean;
333
331
  className: string;
332
+ locale: Partial<TigerLocale>;
333
+ disabled: boolean;
334
334
  align: PaginationAlign;
335
335
  defaultCurrent: number;
336
336
  defaultPageSize: number;
@@ -226,13 +226,13 @@ declare const Popconfirm: vue.DefineComponent<vue.ExtractPropTypes<{
226
226
  }>, {
227
227
  style: StyleValue;
228
228
  title: string;
229
- disabled: boolean;
229
+ description: string;
230
+ showIcon: boolean;
230
231
  className: string;
232
+ disabled: boolean;
231
233
  offset: number;
232
234
  visible: boolean;
233
235
  icon: PopconfirmIconType;
234
- showIcon: boolean;
235
- description: string;
236
236
  placement: FloatingPlacement;
237
237
  defaultVisible: boolean;
238
238
  okText: string;
@@ -226,13 +226,13 @@ declare const Popconfirm: vue.DefineComponent<vue.ExtractPropTypes<{
226
226
  }>, {
227
227
  style: StyleValue;
228
228
  title: string;
229
- disabled: boolean;
229
+ description: string;
230
+ showIcon: boolean;
230
231
  className: string;
232
+ disabled: boolean;
231
233
  offset: number;
232
234
  visible: boolean;
233
235
  icon: PopconfirmIconType;
234
- showIcon: boolean;
235
- description: string;
236
236
  placement: FloatingPlacement;
237
237
  defaultVisible: boolean;
238
238
  okText: string;
@@ -176,8 +176,8 @@ declare const Popover: vue.DefineComponent<vue.ExtractPropTypes<{
176
176
  }>, {
177
177
  style: StyleValue;
178
178
  title: string;
179
- disabled: boolean;
180
179
  className: string;
180
+ disabled: boolean;
181
181
  width: string | number;
182
182
  offset: number;
183
183
  visible: boolean;
@@ -176,8 +176,8 @@ declare const Popover: vue.DefineComponent<vue.ExtractPropTypes<{
176
176
  }>, {
177
177
  style: StyleValue;
178
178
  title: string;
179
- disabled: boolean;
180
179
  className: string;
180
+ disabled: boolean;
181
181
  width: string | number;
182
182
  offset: number;
183
183
  visible: boolean;
@@ -254,11 +254,11 @@ declare const Progress: vue.DefineComponent<vue.ExtractPropTypes<{
254
254
  default: undefined;
255
255
  };
256
256
  }>> & Readonly<{}>, {
257
- type: ProgressType;
258
257
  style: Record<string, string | number>;
258
+ type: ProgressType;
259
259
  size: ProgressSize;
260
- variant: ProgressVariant;
261
260
  className: string;
261
+ variant: ProgressVariant;
262
262
  text: string;
263
263
  status: ProgressStatus;
264
264
  width: string | number;
@@ -254,11 +254,11 @@ declare const Progress: vue.DefineComponent<vue.ExtractPropTypes<{
254
254
  default: undefined;
255
255
  };
256
256
  }>> & Readonly<{}>, {
257
- type: ProgressType;
258
257
  style: Record<string, string | number>;
258
+ type: ProgressType;
259
259
  size: ProgressSize;
260
- variant: ProgressVariant;
261
260
  className: string;
261
+ variant: ProgressVariant;
262
262
  text: string;
263
263
  status: ProgressStatus;
264
264
  width: string | number;
@@ -159,8 +159,8 @@ declare const Skeleton: vue.DefineComponent<vue.ExtractPropTypes<{
159
159
  };
160
160
  }>> & Readonly<{}>, {
161
161
  style: Record<string, string | number>;
162
- variant: SkeletonVariant;
163
162
  className: string;
163
+ variant: SkeletonVariant;
164
164
  rows: number;
165
165
  width: string;
166
166
  height: string;
@@ -159,8 +159,8 @@ declare const Skeleton: vue.DefineComponent<vue.ExtractPropTypes<{
159
159
  };
160
160
  }>> & Readonly<{}>, {
161
161
  style: Record<string, string | number>;
162
- variant: SkeletonVariant;
163
162
  className: string;
163
+ variant: SkeletonVariant;
164
164
  rows: number;
165
165
  width: string;
166
166
  height: string;
@@ -215,8 +215,8 @@ declare const Slider: vue.DefineComponent<vue.ExtractPropTypes<{
215
215
  }>, {
216
216
  style: Record<string, string | number>;
217
217
  size: SliderSize;
218
- disabled: boolean;
219
218
  className: string;
219
+ disabled: boolean;
220
220
  min: number;
221
221
  max: number;
222
222
  step: number;
@@ -215,8 +215,8 @@ declare const Slider: vue.DefineComponent<vue.ExtractPropTypes<{
215
215
  }>, {
216
216
  style: Record<string, string | number>;
217
217
  size: SliderSize;
218
- disabled: boolean;
219
218
  className: string;
219
+ disabled: boolean;
220
220
  min: number;
221
221
  max: number;
222
222
  step: number;
@@ -131,13 +131,13 @@ declare const StepsItem: vue.DefineComponent<vue.ExtractPropTypes<{
131
131
  };
132
132
  }>> & Readonly<{}>, {
133
133
  style: Record<string, unknown>;
134
- disabled: boolean;
134
+ description: string;
135
135
  className: string;
136
+ disabled: boolean;
136
137
  status: StepStatus;
137
138
  icon: undefined;
138
139
  stepIndex: number;
139
140
  isLast: boolean;
140
- description: string;
141
141
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
142
142
 
143
143
  export { StepsItem, type VueStepsItemProps, StepsItem as default };
@@ -131,13 +131,13 @@ declare const StepsItem: vue.DefineComponent<vue.ExtractPropTypes<{
131
131
  };
132
132
  }>> & Readonly<{}>, {
133
133
  style: Record<string, unknown>;
134
- disabled: boolean;
134
+ description: string;
135
135
  className: string;
136
+ disabled: boolean;
136
137
  status: StepStatus;
137
138
  icon: undefined;
138
139
  stepIndex: number;
139
140
  isLast: boolean;
140
- description: string;
141
141
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
142
142
 
143
143
  export { StepsItem, type VueStepsItemProps, StepsItem as default };
@@ -110,8 +110,8 @@ declare const SubMenu: vue.DefineComponent<vue.ExtractPropTypes<{
110
110
  }>> & Readonly<{}>, {
111
111
  style: Record<string, string | number>;
112
112
  title: string;
113
- disabled: boolean;
114
113
  className: string;
114
+ disabled: boolean;
115
115
  collapsed: boolean;
116
116
  level: number;
117
117
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
@@ -110,8 +110,8 @@ declare const SubMenu: vue.DefineComponent<vue.ExtractPropTypes<{
110
110
  }>> & Readonly<{}>, {
111
111
  style: Record<string, string | number>;
112
112
  title: string;
113
- disabled: boolean;
114
113
  className: string;
114
+ disabled: boolean;
115
115
  collapsed: boolean;
116
116
  level: number;
117
117
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
@@ -156,10 +156,10 @@ declare const TabPane: vue.DefineComponent<vue.ExtractPropTypes<{
156
156
  };
157
157
  }>> & Readonly<{}>, {
158
158
  style: Record<string, string | number>;
159
- disabled: boolean;
159
+ closable: boolean;
160
160
  className: string;
161
+ disabled: boolean;
161
162
  icon: undefined;
162
- closable: boolean;
163
163
  tabIndex: number;
164
164
  renderMode: "tab" | "pane";
165
165
  tabId: string;
@@ -156,10 +156,10 @@ declare const TabPane: vue.DefineComponent<vue.ExtractPropTypes<{
156
156
  };
157
157
  }>> & Readonly<{}>, {
158
158
  style: Record<string, string | number>;
159
- disabled: boolean;
159
+ closable: boolean;
160
160
  className: string;
161
+ disabled: boolean;
161
162
  icon: undefined;
162
- closable: boolean;
163
163
  tabIndex: number;
164
164
  renderMode: "tab" | "pane";
165
165
  tabId: string;
@@ -311,8 +311,8 @@ declare const Table: vue.DefineComponent<vue.ExtractPropTypes<{
311
311
  "onFilter-change"?: ((...args: any[]) => any) | undefined;
312
312
  "onPage-change"?: ((...args: any[]) => any) | undefined;
313
313
  }>, {
314
- pagination: false | PaginationConfig;
315
314
  size: TableSize;
315
+ pagination: false | PaginationConfig;
316
316
  loading: boolean;
317
317
  columnLockable: boolean;
318
318
  dataSource: Record<string, unknown>[];
@@ -311,8 +311,8 @@ declare const Table: vue.DefineComponent<vue.ExtractPropTypes<{
311
311
  "onFilter-change"?: ((...args: any[]) => any) | undefined;
312
312
  "onPage-change"?: ((...args: any[]) => any) | undefined;
313
313
  }>, {
314
- pagination: false | PaginationConfig;
315
314
  size: TableSize;
315
+ pagination: false | PaginationConfig;
316
316
  loading: boolean;
317
317
  columnLockable: boolean;
318
318
  dataSource: Record<string, unknown>[];
@@ -188,11 +188,11 @@ declare const Tabs: vue.DefineComponent<vue.ExtractPropTypes<{
188
188
  onEdit?: ((...args: any[]) => any) | undefined;
189
189
  "onTab-click"?: ((...args: any[]) => any) | undefined;
190
190
  }>, {
191
- type: TabType;
192
191
  style: Record<string, string | number>;
192
+ type: TabType;
193
193
  size: TabSize;
194
- className: string;
195
194
  closable: boolean;
195
+ className: string;
196
196
  activeKey: string | number;
197
197
  defaultActiveKey: string | number;
198
198
  tabPosition: TabPosition;
@@ -188,11 +188,11 @@ declare const Tabs: vue.DefineComponent<vue.ExtractPropTypes<{
188
188
  onEdit?: ((...args: any[]) => any) | undefined;
189
189
  "onTab-click"?: ((...args: any[]) => any) | undefined;
190
190
  }>, {
191
- type: TabType;
192
191
  style: Record<string, string | number>;
192
+ type: TabType;
193
193
  size: TabSize;
194
- className: string;
195
194
  closable: boolean;
195
+ className: string;
196
196
  activeKey: string | number;
197
197
  defaultActiveKey: string | number;
198
198
  tabPosition: TabPosition;
@@ -111,10 +111,10 @@ declare const Tag: vue.DefineComponent<vue.ExtractPropTypes<{
111
111
  }>, {
112
112
  style: Record<string, string | number>;
113
113
  size: TagSize;
114
- variant: TagVariant;
115
- className: string;
116
114
  closable: boolean;
117
115
  closeAriaLabel: string;
116
+ className: string;
117
+ variant: TagVariant;
118
118
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
119
119
 
120
120
  export { Tag, type VueTagProps, Tag as default };
@@ -111,10 +111,10 @@ declare const Tag: vue.DefineComponent<vue.ExtractPropTypes<{
111
111
  }>, {
112
112
  style: Record<string, string | number>;
113
113
  size: TagSize;
114
- variant: TagVariant;
115
- className: string;
116
114
  closable: boolean;
117
115
  closeAriaLabel: string;
116
+ className: string;
117
+ variant: TagVariant;
118
118
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
119
119
 
120
120
  export { Tag, type VueTagProps, Tag as default };
@@ -348,11 +348,11 @@ declare const TimePicker: vue.DefineComponent<vue.ExtractPropTypes<{
348
348
  onClear?: (() => any) | undefined;
349
349
  "onUpdate:modelValue"?: ((value: TimePickerModelValue) => any) | undefined;
350
350
  }>, {
351
- locale: string;
352
351
  style: Record<string, string | number>;
353
352
  size: TimePickerSize;
354
- disabled: boolean;
355
353
  className: string;
354
+ locale: string;
355
+ disabled: boolean;
356
356
  range: boolean;
357
357
  modelValue: string | [string | null, string | null] | null;
358
358
  placeholder: string;
@@ -348,11 +348,11 @@ declare const TimePicker: vue.DefineComponent<vue.ExtractPropTypes<{
348
348
  onClear?: (() => any) | undefined;
349
349
  "onUpdate:modelValue"?: ((value: TimePickerModelValue) => any) | undefined;
350
350
  }>, {
351
- locale: string;
352
351
  style: Record<string, string | number>;
353
352
  size: TimePickerSize;
354
- disabled: boolean;
355
353
  className: string;
354
+ locale: string;
355
+ disabled: boolean;
356
356
  range: boolean;
357
357
  modelValue: string | [string | null, string | null] | null;
358
358
  placeholder: string;
@@ -102,10 +102,10 @@ declare const Timeline: vue.DefineComponent<vue.ExtractPropTypes<{
102
102
  default: undefined;
103
103
  };
104
104
  }>> & Readonly<{}>, {
105
- reverse: boolean;
106
105
  style: Record<string, unknown>;
107
- className: string;
108
106
  mode: TimelineMode;
107
+ className: string;
108
+ reverse: boolean;
109
109
  items: TimelineItem[];
110
110
  pending: boolean;
111
111
  pendingDot: null;
@@ -102,10 +102,10 @@ declare const Timeline: vue.DefineComponent<vue.ExtractPropTypes<{
102
102
  default: undefined;
103
103
  };
104
104
  }>> & Readonly<{}>, {
105
- reverse: boolean;
106
105
  style: Record<string, unknown>;
107
- className: string;
108
106
  mode: TimelineMode;
107
+ className: string;
108
+ reverse: boolean;
109
109
  items: TimelineItem[];
110
110
  pending: boolean;
111
111
  pendingDot: null;
@@ -145,8 +145,8 @@ declare const Tooltip: vue.DefineComponent<vue.ExtractPropTypes<{
145
145
  "onVisible-change"?: ((...args: any[]) => any) | undefined;
146
146
  }>, {
147
147
  style: StyleValue;
148
- disabled: boolean;
149
148
  className: string;
149
+ disabled: boolean;
150
150
  offset: number;
151
151
  visible: boolean;
152
152
  content: string;
@@ -145,8 +145,8 @@ declare const Tooltip: vue.DefineComponent<vue.ExtractPropTypes<{
145
145
  "onVisible-change"?: ((...args: any[]) => any) | undefined;
146
146
  }>, {
147
147
  style: StyleValue;
148
- disabled: boolean;
149
148
  className: string;
149
+ disabled: boolean;
150
150
  offset: number;
151
151
  visible: boolean;
152
152
  content: string;
@@ -352,11 +352,11 @@ declare const Tree: vue.DefineComponent<vue.ExtractPropTypes<{
352
352
  "onUpdate:selectedKeys"?: ((...args: any[]) => any) | undefined;
353
353
  "onUpdate:checkedKeys"?: ((...args: any[]) => any) | undefined;
354
354
  }>, {
355
+ showIcon: boolean;
355
356
  multiple: boolean;
356
357
  emptyText: string;
357
358
  treeData: TreeNode[];
358
359
  checkable: boolean;
359
- showIcon: boolean;
360
360
  showLine: boolean;
361
361
  defaultExpandedKeys: (string | number)[];
362
362
  defaultSelectedKeys: (string | number)[];
@@ -352,11 +352,11 @@ declare const Tree: vue.DefineComponent<vue.ExtractPropTypes<{
352
352
  "onUpdate:selectedKeys"?: ((...args: any[]) => any) | undefined;
353
353
  "onUpdate:checkedKeys"?: ((...args: any[]) => any) | undefined;
354
354
  }>, {
355
+ showIcon: boolean;
355
356
  multiple: boolean;
356
357
  emptyText: string;
357
358
  treeData: TreeNode[];
358
359
  checkable: boolean;
359
- showIcon: boolean;
360
360
  showLine: boolean;
361
361
  defaultExpandedKeys: (string | number)[];
362
362
  defaultSelectedKeys: (string | number)[];
@@ -295,11 +295,11 @@ declare const Upload: vue.DefineComponent<vue.ExtractPropTypes<{
295
295
  onPreview?: ((_file: UploadFile) => any) | undefined;
296
296
  onExceed?: ((files: File[], fileList: UploadFile[]) => any) | undefined;
297
297
  }>, {
298
- locale: Partial<TigerLocale>;
299
298
  style: Record<string, string | number>;
300
299
  drag: boolean;
301
- disabled: boolean;
302
300
  className: string;
301
+ locale: Partial<TigerLocale>;
302
+ disabled: boolean;
303
303
  multiple: boolean;
304
304
  labels: Partial<UploadLabels>;
305
305
  listType: UploadListType;
@@ -295,11 +295,11 @@ declare const Upload: vue.DefineComponent<vue.ExtractPropTypes<{
295
295
  onPreview?: ((_file: UploadFile) => any) | undefined;
296
296
  onExceed?: ((files: File[], fileList: UploadFile[]) => any) | undefined;
297
297
  }>, {
298
- locale: Partial<TigerLocale>;
299
298
  style: Record<string, string | number>;
300
299
  drag: boolean;
301
- disabled: boolean;
302
300
  className: string;
301
+ locale: Partial<TigerLocale>;
302
+ disabled: boolean;
303
303
  multiple: boolean;
304
304
  labels: Partial<UploadLabels>;
305
305
  listType: UploadListType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expcat/tigercat-vue",
3
- "version": "0.2.0",
3
+ "version": "0.2.10",
4
4
  "description": "Vue 3 components for Tigercat UI library",
5
5
  "license": "MIT",
6
6
  "author": "Yizhe Wang",
@@ -9,6 +9,10 @@
9
9
  "url": "https://github.com/expcats/Tigercat.git",
10
10
  "directory": "packages/vue"
11
11
  },
12
+ "homepage": "https://expcat.github.io/Tigercat/vue/",
13
+ "bugs": {
14
+ "url": "https://github.com/expcats/Tigercat/issues"
15
+ },
12
16
  "keywords": [
13
17
  "tigercat",
14
18
  "ui",
@@ -39,7 +43,7 @@
39
43
  "access": "public"
40
44
  },
41
45
  "dependencies": {
42
- "@expcat/tigercat-core": "0.2.0"
46
+ "@expcat/tigercat-core": "0.2.10"
43
47
  },
44
48
  "devDependencies": {
45
49
  "@types/node": "^25.0.3",