@caipira/tamandua 0.0.12 → 0.0.13

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 (36) hide show
  1. package/dist/ChartLine.css +1 -0
  2. package/dist/ChartLine.js +6 -0
  3. package/dist/ChartLine.vue_vue_type_style_index_0_lang-DO_gKCe4.js +824 -0
  4. package/dist/ChartTreemap.js +6 -0
  5. package/dist/ChartTreemap.vue_vue_type_script_setup_true_lang-BSKB-UTM.js +278 -0
  6. package/dist/components.js +80 -80
  7. package/dist/{plugin-DdQB9R9S.js → plugin-Bj5VaUuH.js} +1 -1
  8. package/dist/{plugin-CQ6DHzD0.js → plugin-DDXOF4cU.js} +1 -1
  9. package/dist/plugins-DNNQp3qM.js +109 -0
  10. package/dist/plugins.js +88 -86
  11. package/dist/tamandua.js +6 -17
  12. package/dist/transform-DSaNEFMr.js +1756 -0
  13. package/dist/types/components/ChartLine/ChartLine.story.d.ts +19 -0
  14. package/dist/types/components/ChartLine/index.d.ts +5 -0
  15. package/dist/types/components/ChartLine/types.d.ts +17 -0
  16. package/dist/types/components/ChartTreemap/ChartTreemap.story.d.ts +6 -0
  17. package/dist/types/components/ChartTreemap/index.d.ts +5 -0
  18. package/dist/types/components/{LineChart → ChartTreemap}/types.d.ts +1 -1
  19. package/dist/types/components/Form/Form.vue.d.ts +3 -3
  20. package/dist/types/components/index.d.ts +4 -4
  21. package/dist/types/components/plugins.d.ts +3 -3
  22. package/package.json +114 -114
  23. package/volar.d.ts +2 -2
  24. package/dist/LineChart.js +0 -6
  25. package/dist/LineChart.vue_vue_type_script_setup_true_lang-Do8SXht4.js +0 -17
  26. package/dist/PieChart.js +0 -6
  27. package/dist/PieChart.vue_vue_type_script_setup_true_lang-CmEDNOuk.js +0 -17
  28. package/dist/index-CgLIzaY3.js +0 -7772
  29. package/dist/plugins-QF-BxY4i.js +0 -107
  30. package/dist/types/components/LineChart/index.d.ts +0 -5
  31. package/dist/types/components/PieChart/index.d.ts +0 -5
  32. package/dist/types/components/PieChart/types.d.ts +0 -4
  33. /package/dist/types/components/{LineChart/LineChart.vue.d.ts → ChartLine/ChartLine.vue.d.ts} +0 -0
  34. /package/dist/types/components/{LineChart → ChartLine}/plugin.d.ts +0 -0
  35. /package/dist/types/components/{PieChart/PieChart.vue.d.ts → ChartTreemap/ChartTreemap.vue.d.ts} +0 -0
  36. /package/dist/types/components/{PieChart → ChartTreemap}/plugin.d.ts +0 -0
@@ -0,0 +1,19 @@
1
+ declare const _default: {
2
+ title: string;
3
+ args: {};
4
+ argTypes: {
5
+ options: {
6
+ control: {
7
+ type: string;
8
+ };
9
+ table: {
10
+ scatterplot: {
11
+ summary: string;
12
+ };
13
+ };
14
+ };
15
+ };
16
+ };
17
+ export default _default;
18
+ declare const Chart: any;
19
+ export { Chart };
@@ -0,0 +1,5 @@
1
+ import { default as ChartLinePlugin } from './plugin.js';
2
+ import { default as ChartLine } from './ChartLine.vue';
3
+
4
+ export { ChartLine, ChartLinePlugin };
5
+ export type { ChartLineProps } from './types.js';
@@ -0,0 +1,17 @@
1
+ type Data = {
2
+ labels: string[];
3
+ datasets: {
4
+ label: string;
5
+ color: string;
6
+ data: number[];
7
+ }[];
8
+ };
9
+ type Options = {
10
+ scatterplot?: boolean;
11
+ grid?: boolean;
12
+ };
13
+ export type ChartLineProps = {
14
+ data: Data;
15
+ options: Options;
16
+ };
17
+ export {};
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ };
4
+ export default _default;
5
+ declare const Chart: any;
6
+ export { Chart };
@@ -0,0 +1,5 @@
1
+ import { default as ChartTreemapPlugin } from './plugin.js';
2
+ import { default as ChartTreemap } from './ChartTreemap.vue';
3
+
4
+ export { ChartTreemap, ChartTreemapPlugin };
5
+ export type { ChartTreemapProps } from './types.js';
@@ -1,4 +1,4 @@
1
- export type LineChartProps = {
1
+ export type ChartTreemapProps = {
2
2
  data: any;
3
3
  options: any;
4
4
  };
@@ -4,8 +4,8 @@ import { FormSchema, FormInstance } from '../../types/form.js';
4
4
  import { FormEvents } from './types.js';
5
5
 
6
6
  declare const _default: <T extends FormSchema>(__VLS_props: {
7
- formStyle?: import('../../types/form.js').FormStyle | undefined;
8
7
  id?: string | undefined;
8
+ formStyle?: import('../../types/form.js').FormStyle | undefined;
9
9
  idKey?: string | undefined;
10
10
  schema?: T | undefined;
11
11
  showSubmit?: boolean | undefined;
@@ -31,8 +31,8 @@ declare const _default: <T extends FormSchema>(__VLS_props: {
31
31
  getValue: (key: string) => any;
32
32
  }>) => void) | undefined, __VLS_setup?: Promise<{
33
33
  props: {
34
- formStyle?: import('../../types/form.js').FormStyle | undefined;
35
34
  id?: string | undefined;
35
+ formStyle?: import('../../types/form.js').FormStyle | undefined;
36
36
  idKey?: string | undefined;
37
37
  schema?: T | undefined;
38
38
  showSubmit?: boolean | undefined;
@@ -62,8 +62,8 @@ declare const _default: <T extends FormSchema>(__VLS_props: {
62
62
  }> & {
63
63
  __ctx?: {
64
64
  props: {
65
- formStyle?: import('../../types/form.js').FormStyle | undefined;
66
65
  id?: string | undefined;
66
+ formStyle?: import('../../types/form.js').FormStyle | undefined;
67
67
  idKey?: string | undefined;
68
68
  schema?: T | undefined;
69
69
  showSubmit?: boolean | undefined;
@@ -7,11 +7,9 @@ import { ProgressLine, ProgressLineProps } from './ProgressLine/index.js';
7
7
  import { ProgressCircle, ProgressCircleProps } from './ProgressCircle/index.js';
8
8
  import { Popover, PopoverProps } from './Popover/index.js';
9
9
  import { Popconfirm, PopconfirmProps, PopconfirmEvents } from './Popconfirm/index.js';
10
- import { PieChart, PieChartProps } from './PieChart/index.js';
11
10
  import { Pagination, PaginationProps, PaginationEvents } from './Pagination/index.js';
12
11
  import { ModalForm, ModalFormProps, ModalFormEvents } from './ModalForm/index.js';
13
12
  import { Modal, ModalProps, ModalEvents } from './Modal/index.js';
14
- import { LineChart, LineChartProps } from './LineChart/index.js';
15
13
  import { InputTextarea, InputTextareaProps, InputTextareaEvents } from './InputTextarea/index.js';
16
14
  import { InputText, InputTextProps, InputTextEvents } from './InputText/index.js';
17
15
  import { InputSwitch, InputSwitchProps, InputSwitchEvents } from './InputSwitch/index.js';
@@ -37,10 +35,12 @@ import { Form, FormProps, FormEvents } from './Form/index.js';
37
35
  import { FileDrop, FileDropProps, FileDropEvents } from './FileDrop/index.js';
38
36
  import { Dropdown, DropdownProps, DropdownEvents } from './Dropdown/index.js';
39
37
  import { Drawer, DrawerProps, DrawerEvents } from './Drawer/index.js';
38
+ import { ChartTreemap, ChartTreemapProps } from './ChartTreemap/index.js';
39
+ import { ChartLine, ChartLineProps } from './ChartLine/index.js';
40
40
  import { ButtonCopy, ButtonCopyProps } from './ButtonCopy/index.js';
41
41
  import { Button, ButtonProps, ButtonEvents } from './Button/index.js';
42
42
  import { Backdrop, BackdropProps, BackdropEvents } from './Backdrop/index.js';
43
43
  import { Avatar, AvatarProps } from './Avatar/index.js';
44
44
 
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 { AvatarProps, BackdropProps, BackdropEvents, ButtonProps, ButtonEvents, ButtonCopyProps, DrawerProps, DrawerEvents, DropdownProps, DropdownEvents, FileDropProps, FileDropEvents, FormProps, FormEvents, FormItemProps, GraphyEmptyProps, GraphyLabelProps, GraphyPriceProps, GraphySubtitleProps, GraphyTitleProps, IconProps, IconButtonProps, IconButtonEvents, InputAvatarProps, InputAvatarEvents, InputCheckboxProps, InputCheckboxEvents, InputColorProps, InputColorEvents, InputDateProps, InputDateEvents, InputMultiplierEvents, InputPasswordProps, InputPasswordEvents, InputPhoneProps, InputPhoneEvents, InputPriceProps, InputPriceEvents, InputRadioProps, InputRadioGroupProps, InputRadioGroupEvents, InputSelectProps, InputSelectEvents, InputSwitchProps, InputSwitchEvents, InputMultiplierProps, InputTextProps, InputTextEvents, InputTextareaProps, InputTextareaEvents, LineChartProps, ModalProps, ModalEvents, ModalFormProps, ModalFormEvents, PaginationProps, PaginationEvents, PieChartProps, PopconfirmProps, PopconfirmEvents, PopoverProps, ProgressCircleProps, ProgressLineProps, SensitiveInfoProps, TabProps, TableProps, TableEvents, TagEvents, TagProps, ToastProps, ToastEvents, };
45
+ export { Avatar, Backdrop, Button, ButtonCopy, ChartLine, ChartTreemap, 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, Modal, ModalForm, Pagination, Popconfirm, Popover, ProgressCircle, ProgressLine, SensitiveInfo, Tab, Table, Tag, Toast, };
46
+ export type { AvatarProps, BackdropProps, BackdropEvents, ButtonProps, ButtonEvents, ButtonCopyProps, ChartLineProps, ChartTreemapProps, DrawerProps, DrawerEvents, DropdownProps, DropdownEvents, FileDropProps, FileDropEvents, FormProps, FormEvents, FormItemProps, GraphyEmptyProps, GraphyLabelProps, GraphyPriceProps, GraphySubtitleProps, GraphyTitleProps, IconProps, IconButtonProps, IconButtonEvents, InputAvatarProps, InputAvatarEvents, InputCheckboxProps, InputCheckboxEvents, InputColorProps, InputColorEvents, InputDateProps, InputDateEvents, InputMultiplierEvents, InputPasswordProps, InputPasswordEvents, InputPhoneProps, InputPhoneEvents, InputPriceProps, InputPriceEvents, InputRadioProps, InputRadioGroupProps, InputRadioGroupEvents, InputSelectProps, InputSelectEvents, InputSwitchProps, InputSwitchEvents, InputMultiplierProps, InputTextProps, InputTextEvents, InputTextareaProps, InputTextareaEvents, ModalProps, ModalEvents, ModalFormProps, ModalFormEvents, PaginationProps, PaginationEvents, PopconfirmProps, PopconfirmEvents, PopoverProps, ProgressCircleProps, ProgressLineProps, SensitiveInfoProps, TabProps, TableProps, TableEvents, TagEvents, TagProps, ToastProps, ToastEvents, };
@@ -7,11 +7,9 @@ import { ProgressLinePlugin } from './ProgressLine/index.js';
7
7
  import { ProgressCirclePlugin } from './ProgressCircle/index.js';
8
8
  import { PopoverPlugin } from './Popover/index.js';
9
9
  import { PopconfirmPlugin } from './Popconfirm/index.js';
10
- import { PieChartPlugin } from './PieChart/index.js';
11
10
  import { PaginationPlugin } from './Pagination/index.js';
12
11
  import { ModalFormPlugin } from './ModalForm/index.js';
13
12
  import { ModalPlugin } from './Modal/index.js';
14
- import { LineChartPlugin } from './LineChart/index.js';
15
13
  import { InputTextareaPlugin } from './InputTextarea/index.js';
16
14
  import { InputTextPlugin } from './InputText/index.js';
17
15
  import { InputSwitchPlugin } from './InputSwitch/index.js';
@@ -37,9 +35,11 @@ import { FormPlugin } from './Form/index.js';
37
35
  import { FileDropPlugin } from './FileDrop/index.js';
38
36
  import { DropdownPlugin } from './Dropdown/index.js';
39
37
  import { DrawerPlugin } from './Drawer/index.js';
38
+ import { ChartTreemapPlugin } from './ChartTreemap/index.js';
39
+ import { ChartLinePlugin } from './ChartLine/index.js';
40
40
  import { ButtonCopyPlugin } from './ButtonCopy/index.js';
41
41
  import { ButtonPlugin } from './Button/index.js';
42
42
  import { BackdropPlugin } from './Backdrop/index.js';
43
43
  import { AvatarPlugin } from './Avatar/index.js';
44
44
 
45
- export { AvatarPlugin, BackdropPlugin, ButtonPlugin, ButtonCopyPlugin, DrawerPlugin, DropdownPlugin, FileDropPlugin, FormPlugin, FormItemPlugin, GraphyEmptyPlugin, GraphyLabelPlugin, GraphyPricePlugin, GraphySubtitlePlugin, GraphyTitlePlugin, IconPlugin, IconButtonPlugin, InputAvatarPlugin, InputCheckboxPlugin, InputColorPlugin, InputDatePlugin, InputMultiplierPlugin, InputPasswordPlugin, InputPhonePlugin, InputPricePlugin, InputRadioPlugin, InputSelectPlugin, InputSwitchPlugin, InputTextPlugin, InputTextareaPlugin, LineChartPlugin, ModalPlugin, ModalFormPlugin, PaginationPlugin, PieChartPlugin, PopconfirmPlugin, PopoverPlugin, ProgressCirclePlugin, ProgressLinePlugin, SensitiveInfoPlugin, TabPlugin, TablePlugin, TagPlugin, ToastPlugin, };
45
+ export { AvatarPlugin, BackdropPlugin, ButtonPlugin, ButtonCopyPlugin, ChartLinePlugin, ChartTreemapPlugin, DrawerPlugin, DropdownPlugin, FileDropPlugin, FormPlugin, FormItemPlugin, GraphyEmptyPlugin, GraphyLabelPlugin, GraphyPricePlugin, GraphySubtitlePlugin, GraphyTitlePlugin, IconPlugin, IconButtonPlugin, InputAvatarPlugin, InputCheckboxPlugin, InputColorPlugin, InputDatePlugin, InputMultiplierPlugin, InputPasswordPlugin, InputPhonePlugin, InputPricePlugin, InputRadioPlugin, InputSelectPlugin, InputSwitchPlugin, InputTextPlugin, InputTextareaPlugin, ModalPlugin, ModalFormPlugin, PaginationPlugin, PopconfirmPlugin, PopoverPlugin, ProgressCirclePlugin, ProgressLinePlugin, SensitiveInfoPlugin, TabPlugin, TablePlugin, TagPlugin, ToastPlugin, };
package/package.json CHANGED
@@ -1,117 +1,117 @@
1
1
  {
2
- "name": "@caipira/tamandua",
3
- "version": "0.0.12",
4
- "private": false,
5
- "description": "UI library for the Caipira ecosystem",
6
- "license": "GPL-3.0-only",
7
- "homepage": "https://caipira.io",
8
- "author": {
9
- "name": "Theone Lucas",
10
- "email": "theone@caipira.io"
11
- },
12
- "repository": {
13
- "type": "git",
14
- "url": "https://github.com/caipira-io/tamandua.git"
15
- },
16
- "type": "module",
17
- "typesVersions": {
18
- "*": {
19
- "*": [
20
- "./dist/types/index.d.ts"
21
- ],
22
- "date": [
23
- "./dist/types/services/date.d.ts"
24
- ],
25
- "plugins": [
26
- "./dist/types/components/plugins.d.ts"
27
- ],
28
- "form": [
29
- "./dist/types/form/index.d.ts"
30
- ],
31
- "components": [
32
- "./dist/types/components/index.d.ts"
33
- ],
34
- "composables": [
35
- "./dist/types/composables/index.d.ts"
36
- ],
37
- "enums": [
38
- "./dist/types/enums/index.d.ts"
39
- ]
40
- }
41
- },
42
- "exports": {
43
- ".": "./dist/tamandua.js",
44
- "./components": "./dist/components.js",
45
- "./composables": "./dist/composables.js",
46
- "./form": "./dist/form2.js",
47
- "./date": "./dist/date.js",
48
- "./plugins": "./dist/plugins.js",
49
- "./enums": "./dist/enums.js",
50
- "./volar": "./volar.d.ts",
51
- "./style.css": "./dist/index.css"
52
- },
53
- "files": [
54
- "dist/*.js",
55
- "dist/*.css",
56
- "dist/types",
57
- "volar.d.ts",
58
- "README.md"
59
- ],
60
- "scripts": {
61
- "start": "vite --host",
62
- "build:dev": "vite build --mode development",
63
- "build:prod": "vite build --mode production",
64
- "preview": "vite preview",
65
- "start:test": "vitest",
66
- "test": "vitest --run",
67
- "typecheck": "vue-tsc --noEmit -p tsconfig.json --composite false",
68
- "start:sb": "storybook dev",
69
- "build:sb": "storybook build",
70
- "prepublishOnly": "npm run build:prod"
71
- },
72
- "dependencies": {
73
- "@popperjs/core": "^2.10.1",
74
- "chart.js": "^4.0.0",
75
- "date-fns": "^2.25.0",
76
- "gsap": "^3.12.2",
77
- "vue-chartjs": "^5.2.0"
78
- },
79
- "peerDependencies": {
80
- "tailwindcss": "^3.4.3",
81
- "vue": "^3.0.0",
82
- "vue-i18n": "9"
83
- },
84
- "devDependencies": {
85
- "vite-plugin-lib-inject-css": "^2.0.1",
86
- "@faker-js/faker": "^8.4.1",
87
- "@storybook/addon-actions": "^8.0.5",
88
- "@storybook/addon-essentials": "^8.0.5",
89
- "@storybook/addon-interactions": "^8.0.5",
90
- "@storybook/addon-links": "^8.0.5",
91
- "@storybook/addon-themes": "^8.0.5",
92
- "@storybook/blocks": "^8.0.5",
93
- "@storybook/builder-vite": "^8.0.5",
94
- "@storybook/testing-library": "^0.2.2",
95
- "@storybook/vue3": "^8.0.5",
96
- "@storybook/vue3-vite": "^8.0.5",
97
- "@tailwindcss/forms": "^0.5.6",
98
- "@types/js-cookie": "^2.2.7",
99
- "@types/jsdom": "^21.1.6",
100
- "@types/node": "^20.11.30",
101
- "@vitejs/plugin-vue": "^5.0.4",
102
- "@vue/test-utils": "^2.4.1",
103
- "@vue/tsconfig": "^0.5.1",
104
- "autoprefixer": "^10.4.0",
105
- "jsdom": "^24.0.0",
106
- "postcss": "^8.4.5",
107
- "storybook": "^8.0.5",
108
- "ts-node": "^10.9.1",
109
- "typescript": "^5.4.5",
110
- "vite": "^5.2.6",
111
- "vite-plugin-dts": "^3.8.1",
112
- "vite-tsconfig-paths": "^4.2.0",
113
- "vitest": "^1.4.0",
114
- "vue": "^3.4.21",
115
- "vue-tsc": "^2.0.13"
2
+ "name": "@caipira/tamandua",
3
+ "version": "0.0.13",
4
+ "private": false,
5
+ "description": "UI library for the Caipira ecosystem",
6
+ "license": "GPL-3.0-only",
7
+ "homepage": "https://caipira.io",
8
+ "author": {
9
+ "name": "Theone Lucas",
10
+ "email": "theone@caipira.io"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/caipira-io/tamandua.git"
15
+ },
16
+ "type": "module",
17
+ "typesVersions": {
18
+ "*": {
19
+ "*": [
20
+ "./dist/types/index.d.ts"
21
+ ],
22
+ "date": [
23
+ "./dist/types/services/date.d.ts"
24
+ ],
25
+ "plugins": [
26
+ "./dist/types/components/plugins.d.ts"
27
+ ],
28
+ "form": [
29
+ "./dist/types/form/index.d.ts"
30
+ ],
31
+ "components": [
32
+ "./dist/types/components/index.d.ts"
33
+ ],
34
+ "composables": [
35
+ "./dist/types/composables/index.d.ts"
36
+ ],
37
+ "enums": [
38
+ "./dist/types/enums/index.d.ts"
39
+ ]
116
40
  }
41
+ },
42
+ "exports": {
43
+ ".": "./dist/tamandua.js",
44
+ "./components": "./dist/components.js",
45
+ "./composables": "./dist/composables.js",
46
+ "./form": "./dist/form2.js",
47
+ "./date": "./dist/date.js",
48
+ "./plugins": "./dist/plugins.js",
49
+ "./enums": "./dist/enums.js",
50
+ "./volar": "./volar.d.ts",
51
+ "./style.css": "./dist/index.css"
52
+ },
53
+ "files": [
54
+ "dist/*.js",
55
+ "dist/*.css",
56
+ "dist/types",
57
+ "volar.d.ts",
58
+ "README.md"
59
+ ],
60
+ "scripts": {
61
+ "start": "vite --host",
62
+ "build:dev": "vite build --mode development",
63
+ "build:prod": "vite build --mode production",
64
+ "preview": "vite preview",
65
+ "start:test": "vitest",
66
+ "test": "vitest --run",
67
+ "typecheck": "vue-tsc --noEmit -p tsconfig.json --composite false",
68
+ "start:sb": "storybook dev",
69
+ "build:sb": "storybook build",
70
+ "prepublishOnly": "npm run build:prod"
71
+ },
72
+ "dependencies": {
73
+ "@popperjs/core": "^2.10.1",
74
+ "@storybook/test": "^8.0.8",
75
+ "d3": "^7.9.0",
76
+ "date-fns": "^2.25.0",
77
+ "gsap": "^3.12.2"
78
+ },
79
+ "peerDependencies": {
80
+ "tailwindcss": "^3.4.3",
81
+ "vue": "^3.0.0",
82
+ "vue-i18n": "9"
83
+ },
84
+ "devDependencies": {
85
+ "@chromatic-com/storybook": "^1.3.3",
86
+ "@faker-js/faker": "^8.4.1",
87
+ "@storybook/addon-actions": "^8.0.8",
88
+ "@storybook/addon-essentials": "^8.0.8",
89
+ "@storybook/addon-interactions": "^8.0.8",
90
+ "@storybook/addon-links": "^8.0.8",
91
+ "@storybook/addon-themes": "^8.0.8",
92
+ "@storybook/blocks": "^8.0.8",
93
+ "@storybook/vue3": "^8.0.8",
94
+ "@storybook/vue3-vite": "^8.0.8",
95
+ "@tailwindcss/forms": "^0.5.6",
96
+ "@types/d3": "^7.4.3",
97
+ "@types/js-cookie": "^2.2.7",
98
+ "@types/jsdom": "^21.1.6",
99
+ "@types/node": "^20.11.30",
100
+ "@vitejs/plugin-vue": "^5.0.4",
101
+ "@vue/test-utils": "^2.4.1",
102
+ "@vue/tsconfig": "^0.5.1",
103
+ "autoprefixer": "^10.4.0",
104
+ "jsdom": "^24.0.0",
105
+ "postcss": "^8.4.5",
106
+ "storybook": "^8.0.8",
107
+ "ts-node": "^10.9.1",
108
+ "typescript": "^5.4.5",
109
+ "vite": "^5.2.6",
110
+ "vite-plugin-dts": "^3.8.1",
111
+ "vite-plugin-lib-inject-css": "^2.0.1",
112
+ "vite-tsconfig-paths": "^4.2.0",
113
+ "vitest": "^1.4.0",
114
+ "vue": "^3.4.21",
115
+ "vue-tsc": "^2.0.13"
116
+ }
117
117
  }
package/volar.d.ts CHANGED
@@ -4,6 +4,8 @@ declare module "vue" {
4
4
  TBackdrop: (typeof import("@caipira/tamandua/dist/types/components/Backdrop"))["Backdrop"];
5
5
  TButton: (typeof import("@caipira/tamandua/dist/types/components/Button"))["Button"];
6
6
  TButtonCopy: (typeof import("@caipira/tamandua/dist/types/components/ButtonCopy"))["ButtonCopy"];
7
+ TChartLine: (typeof import("@caipira/tamandua/dist/types/components/ChartLine"))["ChartLine"];
8
+ TChartTreemap: (typeof import("@caipira/tamandua/dist/types/components/ChartTreemap"))["ChartTreemap"];
7
9
  TDrawer: (typeof import("@caipira/tamandua/dist/types/components/Drawer"))["Drawer"];
8
10
  TDropdown: (typeof import("@caipira/tamandua/dist/types/components/Dropdown"))["Dropdown"];
9
11
  TFileDrop: (typeof import("@caipira/tamandua/dist/types/components/FileDrop"))["FileDrop"];
@@ -29,11 +31,9 @@ declare module "vue" {
29
31
  TInputSwitch: (typeof import("@caipira/tamandua/dist/types/components/InputSwitch"))["InputSwitch"];
30
32
  TInputText: (typeof import("@caipira/tamandua/dist/types/components/InputText"))["InputText"];
31
33
  TInputTextarea: (typeof import("@caipira/tamandua/dist/types/components/InputTextarea"))["InputTextarea"];
32
- TLineChart: (typeof import("@caipira/tamandua/dist/types/components/LineChart"))["LineChart"];
33
34
  TModal: (typeof import("@caipira/tamandua/dist/types/components/Modal"))["Modal"];
34
35
  TModalForm: (typeof import("@caipira/tamandua/dist/types/components/ModalForm"))["ModalForm"];
35
36
  TPagination: (typeof import("@caipira/tamandua/dist/types/components/Pagination"))["Pagination"];
36
- TPieChart: (typeof import("@caipira/tamandua/dist/types/components/PieChart"))["PieChart"];
37
37
  TPopconfirm: (typeof import("@caipira/tamandua/dist/types/components/Popconfirm"))["Popconfirm"];
38
38
  TPopover: (typeof import("@caipira/tamandua/dist/types/components/Popover"))["Popover"];
39
39
  TProgressCircle: (typeof import("@caipira/tamandua/dist/types/components/ProgressCircle"))["ProgressCircle"];
package/dist/LineChart.js DELETED
@@ -1,6 +0,0 @@
1
- import { _ as e } from "./LineChart.vue_vue_type_script_setup_true_lang-Do8SXht4.js";
2
- import { p as t } from "./plugin-DdQB9R9S.js";
3
- export {
4
- e as LineChart,
5
- t as LineChartPlugin
6
- };
@@ -1,17 +0,0 @@
1
- import { defineComponent as r, openBlock as n, createBlock as t, unref as a, normalizeProps as p, guardReactiveProps as s } from "vue";
2
- import { e as c } from "./index-CgLIzaY3.js";
3
- const f = /* @__PURE__ */ r({
4
- name: "TLineChart",
5
- __name: "LineChart",
6
- props: {
7
- data: {},
8
- options: {}
9
- },
10
- setup(e) {
11
- const o = e;
12
- return (i, m) => (n(), t(a(c), p(s(o)), null, 16));
13
- }
14
- });
15
- export {
16
- f as _
17
- };
package/dist/PieChart.js DELETED
@@ -1,6 +0,0 @@
1
- import { _ as e } from "./PieChart.vue_vue_type_script_setup_true_lang-CmEDNOuk.js";
2
- import { p as t } from "./plugin-CQ6DHzD0.js";
3
- export {
4
- e as PieChart,
5
- t as PieChartPlugin
6
- };
@@ -1,17 +0,0 @@
1
- import { defineComponent as r, openBlock as t, createBlock as n, unref as a, normalizeProps as p, guardReactiveProps as s } from "vue";
2
- import { f as c } from "./index-CgLIzaY3.js";
3
- const u = /* @__PURE__ */ r({
4
- name: "TPieChart",
5
- __name: "PieChart",
6
- props: {
7
- data: {},
8
- options: {}
9
- },
10
- setup(e) {
11
- const o = e;
12
- return (i, m) => (t(), n(a(c), p(s(o)), null, 16));
13
- }
14
- });
15
- export {
16
- u as _
17
- };