@caipira/tamandua 0.0.6 → 0.0.7
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.
|
@@ -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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caipira/tamandua",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
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"
|