@caipira/tamandua 0.0.6 → 0.0.8
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/types/components/Dropdown/Dropdown.vue.d.ts +2 -2
- package/dist/types/components/InputMultiplier/index.d.ts +1 -0
- package/dist/types/components/Table/Table.vue.d.ts +3 -3
- package/dist/types/components/Table/index.d.ts +1 -0
- package/dist/types/components/Tag/index.d.ts +1 -0
- package/dist/types/components/index.d.ts +4 -3
- package/dist/types/index.d.ts +5 -0
- package/package.json +17 -3
|
@@ -84,9 +84,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
84
84
|
label: any;
|
|
85
85
|
type?: string | undefined;
|
|
86
86
|
renderer?: string | undefined;
|
|
87
|
-
action: (filters?: import('../../
|
|
87
|
+
action: (filters?: import('../../index.js').APISearchFilters | undefined) => void | Promise<void> | Promise<{
|
|
88
88
|
items: unknown[];
|
|
89
|
-
pagination: import('../../
|
|
89
|
+
pagination: import('../../index.js').Pagination;
|
|
90
90
|
}>;
|
|
91
91
|
value?: undefined;
|
|
92
92
|
isGroupLabel?: undefined;
|
|
@@ -2,7 +2,7 @@ declare const _default: <T extends object>(__VLS_props: {
|
|
|
2
2
|
loading?: boolean | undefined;
|
|
3
3
|
disableStyle?: boolean | undefined;
|
|
4
4
|
data: T[];
|
|
5
|
-
columns: import('../../
|
|
5
|
+
columns: import('../../index.js').TableColumn[];
|
|
6
6
|
onSelected?: ((val: any) => any) | undefined;
|
|
7
7
|
"onRow-click"?: ((val: any) => any) | undefined;
|
|
8
8
|
rowKey?: string | undefined;
|
|
@@ -31,7 +31,7 @@ declare const _default: <T extends object>(__VLS_props: {
|
|
|
31
31
|
loading?: boolean | undefined;
|
|
32
32
|
disableStyle?: boolean | undefined;
|
|
33
33
|
data: T[];
|
|
34
|
-
columns: import('../../
|
|
34
|
+
columns: import('../../index.js').TableColumn[];
|
|
35
35
|
onSelected?: ((val: any) => any) | undefined;
|
|
36
36
|
"onRow-click"?: ((val: any) => any) | undefined;
|
|
37
37
|
rowKey?: string | undefined;
|
|
@@ -64,7 +64,7 @@ declare const _default: <T extends object>(__VLS_props: {
|
|
|
64
64
|
loading?: boolean | undefined;
|
|
65
65
|
disableStyle?: boolean | undefined;
|
|
66
66
|
data: T[];
|
|
67
|
-
columns: import('../../
|
|
67
|
+
columns: import('../../index.js').TableColumn[];
|
|
68
68
|
onSelected?: ((val: any) => any) | undefined;
|
|
69
69
|
"onRow-click"?: ((val: any) => any) | undefined;
|
|
70
70
|
rowKey?: string | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Toast } from './Toast/index.js';
|
|
2
|
-
import { Tag } from './Tag/index.js';
|
|
3
|
-
import { Table } from './Table/index.js';
|
|
2
|
+
import { Tag, TagProps, TagEvents } from './Tag/index.js';
|
|
3
|
+
import { Table, TableProps } from './Table/index.js';
|
|
4
4
|
import { Tab } from './Tab/index.js';
|
|
5
5
|
import { SensitiveInfo } from './SensitiveInfo/index.js';
|
|
6
6
|
import { ProgressLine } from './ProgressLine/index.js';
|
|
@@ -20,7 +20,7 @@ import { InputRadio } from './InputRadio/index.js';
|
|
|
20
20
|
import { InputPrice } from './InputPrice/index.js';
|
|
21
21
|
import { InputPhone } from './InputPhone/index.js';
|
|
22
22
|
import { InputPassword } from './InputPassword/index.js';
|
|
23
|
-
import { InputMultiplier } from './InputMultiplier/index.js';
|
|
23
|
+
import { InputMultiplier, InputMultiplierProps, InputMultiplierEvents } from './InputMultiplier/index.js';
|
|
24
24
|
import { InputDate } from './InputDate/index.js';
|
|
25
25
|
import { InputColor } from './InputColor/index.js';
|
|
26
26
|
import { InputCheckbox } from './InputCheckbox/index.js';
|
|
@@ -43,3 +43,4 @@ import { Backdrop } from './Backdrop/index.js';
|
|
|
43
43
|
import { Avatar } from './Avatar/index.js';
|
|
44
44
|
|
|
45
45
|
export { Avatar, Backdrop, Button, ButtonCopy, Drawer, Dropdown, FileDrop, Form, FormItem, GraphyEmpty, GraphyLabel, GraphyPrice, GraphySubtitle, GraphyTitle, Icon, IconButton, InputAvatar, InputCheckbox, InputColor, InputDate, InputMultiplier, InputPassword, InputPhone, InputPrice, InputRadio, InputSelect, InputSwitch, InputText, InputTextarea, LineChart, Modal, ModalForm, Pagination, PieChart, Popconfirm, Popover, ProgressCircle, ProgressLine, SensitiveInfo, Tab, Table, Tag, Toast, };
|
|
46
|
+
export type { InputMultiplierEvents, InputMultiplierProps, TableProps, TagEvents, TagProps, };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { Plugin } from 'vue';
|
|
2
2
|
|
|
3
3
|
declare const plugin: Plugin;
|
|
4
|
+
export type * from './types/address.js';
|
|
5
|
+
export type * from './types/api.js';
|
|
6
|
+
export type * from './types/form.js';
|
|
7
|
+
export type * from './types/ui.js';
|
|
8
|
+
export type * from './types/website.js';
|
|
4
9
|
export default plugin;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caipira/tamandua",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "UI library for the Caipira ecosystem",
|
|
6
6
|
"license": "GPL-3.0-only",
|
|
@@ -14,14 +14,29 @@
|
|
|
14
14
|
"url": "https://github.com/caipira-io/tamandua.git"
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
|
-
"types": "dist/types/index.d.ts",
|
|
18
17
|
"typesVersions": {
|
|
19
18
|
"*": {
|
|
19
|
+
"*": [
|
|
20
|
+
"./dist/types/index.d.ts",
|
|
21
|
+
"./dist/types/types/index.d.ts"
|
|
22
|
+
],
|
|
20
23
|
"date": [
|
|
21
24
|
"./dist/types/services/date.d.ts"
|
|
22
25
|
],
|
|
23
26
|
"plugins": [
|
|
24
27
|
"./dist/types/components/plugins.d.ts"
|
|
28
|
+
],
|
|
29
|
+
"form": [
|
|
30
|
+
"./dist/types/components/form.d.ts"
|
|
31
|
+
],
|
|
32
|
+
"components": [
|
|
33
|
+
"./dist/types/components/index.d.ts"
|
|
34
|
+
],
|
|
35
|
+
"composables": [
|
|
36
|
+
"./dist/types/composables/index.d.ts"
|
|
37
|
+
],
|
|
38
|
+
"enums": [
|
|
39
|
+
"./dist/types/enums/index.d.ts"
|
|
25
40
|
]
|
|
26
41
|
}
|
|
27
42
|
},
|
|
@@ -32,7 +47,6 @@
|
|
|
32
47
|
"./form": "./dist/form.js",
|
|
33
48
|
"./date": "./dist/date.js",
|
|
34
49
|
"./plugins": "./dist/plugins.js",
|
|
35
|
-
"./types": "./dist/types/index.d.ts",
|
|
36
50
|
"./enums": "./dist/enums.js",
|
|
37
51
|
"./volar": "./volar.d.ts",
|
|
38
52
|
"./style.css": "./dist/index.css"
|