@solfacil/girassol 0.8.1 → 0.9.0-beta-select-multiple.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/dist/components.d.ts +3 -0
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +2769 -2536
- package/dist/girassol.umd.js +9 -9
- package/dist/style.css +1 -1
- package/dist/types/components/empty-state/EmptyState.vue.d.ts +97 -0
- package/dist/types/components/empty-state/empty-state.spec.d.ts +1 -0
- package/dist/types/components/empty-state/index.d.ts +2 -0
- package/dist/types/components/empty-state/types.d.ts +7 -0
- package/dist/types/components/filters/chip/removable-chip/RemovableChip.vue.d.ts +4 -4
- package/dist/types/components/forms/button/button/Button.vue.d.ts +4 -4
- package/dist/types/components/forms/inputs/input-password/InputPassword.vue.d.ts +17 -5
- package/dist/types/components/informations/tag/Tag.vue.d.ts +4 -4
- package/dist/types/components/list/ListItem.vue.d.ts +17 -9
- package/dist/types/components/list/types.d.ts +2 -2
- package/dist/types/components/tabs/TabItem.vue.d.ts +83 -0
- package/dist/types/components/tabs/Tabs.vue.d.ts +133 -0
- package/dist/types/components/tabs/index.d.ts +2 -0
- package/dist/types/components/tabs/tabs.spec.d.ts +1 -0
- package/dist/types/components/tabs/types.d.ts +13 -0
- package/dist/types/composables/use-navigate/index.d.ts +3 -6
- package/dist/types/composables/use-navigate/types.d.ts +8 -0
- package/dist/types/index.d.ts +434 -66
- package/package.json +23 -22
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solfacil/girassol",
|
|
3
3
|
"description": "Girassol design system",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.9.0-beta-select-multiple.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"authors": [
|
|
7
7
|
{
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"types": "./dist/types/index.d.ts",
|
|
39
39
|
"scripts": {
|
|
40
|
+
"typecheck": "vue-tsc --noEmit",
|
|
40
41
|
"dev": "vite --port 3333 --host",
|
|
41
42
|
"build:lib": "vue-tsc --noEmit && vite build",
|
|
42
43
|
"build:lib:ts": "vite build && vue-tsc --emitDeclarationOnly && mv dist/src dist/types",
|
|
@@ -59,19 +60,19 @@
|
|
|
59
60
|
"semantic-release": "semantic-release"
|
|
60
61
|
},
|
|
61
62
|
"dependencies": {
|
|
62
|
-
"@vueuse/core": "^9.
|
|
63
|
+
"@vueuse/core": "^9.4.0",
|
|
63
64
|
"gluegun": "latest",
|
|
64
65
|
"maska": "^1.5.0",
|
|
65
|
-
"vee-validate": "^4.7.
|
|
66
|
-
"vue": "^3.2.
|
|
66
|
+
"vee-validate": "^4.7.1",
|
|
67
|
+
"vue": "^3.2.41"
|
|
67
68
|
},
|
|
68
69
|
"devDependencies": {
|
|
69
|
-
"@antfu/eslint-config": "^0.
|
|
70
|
-
"@babel/core": "^7.
|
|
71
|
-
"@babel/preset-env": "^7.
|
|
72
|
-
"@commitlint/cli": "^17.
|
|
73
|
-
"@commitlint/config-conventional": "^17.0
|
|
74
|
-
"@iconify/json": "^2.1.
|
|
70
|
+
"@antfu/eslint-config": "^0.27.0",
|
|
71
|
+
"@babel/core": "^7.19.6",
|
|
72
|
+
"@babel/preset-env": "^7.19.4",
|
|
73
|
+
"@commitlint/cli": "^17.1.2",
|
|
74
|
+
"@commitlint/config-conventional": "^17.1.0",
|
|
75
|
+
"@iconify/json": "^2.1.125",
|
|
75
76
|
"@semantic-release/changelog": "^6.0.1",
|
|
76
77
|
"@semantic-release/git": "^10.0.1",
|
|
77
78
|
"@semantic-release/npm": "^9.0.1",
|
|
@@ -80,7 +81,7 @@
|
|
|
80
81
|
"@storybook/addon-actions": "^6.5.10",
|
|
81
82
|
"@storybook/addon-essentials": "^6.5.10",
|
|
82
83
|
"@storybook/addon-links": "^6.5.10",
|
|
83
|
-
"@storybook/builder-vite": "^0.2.
|
|
84
|
+
"@storybook/builder-vite": "^0.2.4",
|
|
84
85
|
"@storybook/theming": "^6.5.10",
|
|
85
86
|
"@storybook/vue3": "^6.5.10",
|
|
86
87
|
"@testing-library/jest-dom": "^5.16.5",
|
|
@@ -88,22 +89,22 @@
|
|
|
88
89
|
"@testing-library/vue": "^6.6.1",
|
|
89
90
|
"@types/jest-axe": "^3.5.5",
|
|
90
91
|
"@types/node": "18.8.0",
|
|
91
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
92
|
-
"@typescript-eslint/parser": "^5.
|
|
92
|
+
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
|
93
|
+
"@typescript-eslint/parser": "^5.40.1",
|
|
93
94
|
"@vitejs/plugin-vue": "^3.1.2",
|
|
94
|
-
"@vitest/coverage-c8": "^0.24.
|
|
95
|
-
"@vitest/ui": "^0.24.
|
|
95
|
+
"@vitest/coverage-c8": "^0.24.3",
|
|
96
|
+
"@vitest/ui": "^0.24.3",
|
|
96
97
|
"babel-loader": "^8.2.5",
|
|
97
98
|
"c8": "^7.12.0",
|
|
98
99
|
"cli-spinner": "^0.2.10",
|
|
99
|
-
"commitizen": "^4.2.
|
|
100
|
+
"commitizen": "^4.2.5",
|
|
100
101
|
"copyfiles": "^2.4.1",
|
|
101
102
|
"critters": "^0.0.16",
|
|
102
103
|
"eslint": "^8.25.0",
|
|
103
104
|
"eslint-config-prettier": "^8.5.0",
|
|
104
|
-
"eslint-plugin-html": "^
|
|
105
|
+
"eslint-plugin-html": "^7.1.0",
|
|
105
106
|
"eslint-plugin-prettier": "^4.2.1",
|
|
106
|
-
"eslint-plugin-vue": "^
|
|
107
|
+
"eslint-plugin-vue": "^9.6.0",
|
|
107
108
|
"eslint-plugin-vuejs-accessibility": "^1.2.0",
|
|
108
109
|
"husky": "^8.0.1",
|
|
109
110
|
"jest-axe": "^5.0.1",
|
|
@@ -117,13 +118,13 @@
|
|
|
117
118
|
"stylelint-order": "^5.0.0",
|
|
118
119
|
"ts-node": "^10.9.1",
|
|
119
120
|
"typescript": "^4.8.4",
|
|
120
|
-
"unplugin-icons": "^0.14.
|
|
121
|
-
"vite": "^3.1.
|
|
121
|
+
"unplugin-icons": "^0.14.12",
|
|
122
|
+
"vite": "^3.1.8",
|
|
122
123
|
"vite-plugin-inspect": "^0.7.5",
|
|
123
124
|
"vite-plugin-windicss": "^1.8.8",
|
|
124
|
-
"vitest": "^0.24.
|
|
125
|
+
"vitest": "^0.24.3",
|
|
125
126
|
"vue-loader": "^17.0.0",
|
|
126
|
-
"vue-tsc": "^1.0.
|
|
127
|
+
"vue-tsc": "^1.0.9",
|
|
127
128
|
"windicss": "^3.5.6"
|
|
128
129
|
},
|
|
129
130
|
"resolutions": {
|