@solfacil/girassol 0.7.0 → 0.8.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/cli/build/cli.js +68 -0
- package/cli/build/commands/create:component.js +136 -0
- package/cli/build/commands/generate:plugin.js +109 -0
- package/cli/build/commands/generate:types.js +76 -0
- package/cli/build/commands/girassol-cli.js +52 -0
- package/cli/build/extensions/cli-extension.js +17 -0
- package/cli/build/templates/components.d.ts.ejs +1 -0
- package/cli/build/templates/nuxt-plugin.ejs +8 -0
- package/cli/build/templates/vitesse-plugin.ejs +8 -0
- package/cli/build/templates/vue-plugin.ejs +5 -0
- package/cli/build/templates/windi.config.ts.ejs +3 -0
- package/cli/build/types/cli.d.ts +1 -0
- package/cli/build/types/commands/create:component.d.ts +1 -0
- package/cli/build/types/commands/generate:plugin.d.ts +1 -0
- package/cli/build/types/commands/generate:types.d.ts +7 -0
- package/cli/build/types/commands/girassol-cli.d.ts +1 -0
- package/cli/build/types/extensions/cli-extension.d.ts +1 -0
- package/cli/build/types/types.d.ts +0 -0
- package/cli/build/types.js +2 -0
- package/dist/components.d.ts +1 -0
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +2143 -2015
- package/dist/girassol.umd.js +6 -6
- package/dist/style.css +1 -1
- package/dist/types/components/forms/checkbox/checkbox/Checkbox.vue.d.ts +81 -13
- package/dist/types/components/forms/checkbox/checkbox-group/CheckboxGroup.vue.d.ts +4 -20
- package/dist/types/components/forms/inputs/input-core/Input.vue.d.ts +91 -15
- package/dist/types/components/forms/inputs/input-password/InputPassword.vue.d.ts +107 -21
- package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +121 -33
- package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +78 -12
- package/dist/types/components/forms/radio/radio-group/RadioGroup.vue.d.ts +4 -20
- package/dist/types/components/forms/select/ListOption.vue.d.ts +16 -60
- package/dist/types/components/forms/select/Select.vue.d.ts +23 -21
- package/dist/types/components/forms/select/types.d.ts +2 -2
- package/dist/types/components/forms/switch/Switch.vue.d.ts +107 -20
- package/dist/types/components/loader/CircleLoader.vue.d.ts +72 -10
- package/dist/types/components/pagination/Pagination.vue.d.ts +190 -0
- package/dist/types/components/pagination/index.d.ts +2 -0
- package/dist/types/components/pagination/pagination.spec.d.ts +1 -0
- package/dist/types/components/pagination/types.d.ts +14 -0
- package/dist/types/composables/use-validate-field/index.d.ts +3 -3
- package/dist/types/composables/use-validate-field/types.d.ts +4 -8
- package/dist/types/index.d.ts +1441 -525
- package/package.json +27 -18
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.8.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"authors": [
|
|
7
7
|
{
|
|
@@ -55,13 +55,14 @@
|
|
|
55
55
|
"cli:build": "yarn cli:clean-build && yarn cli:compile && yarn cli:copy-templates",
|
|
56
56
|
"prepare": "husky install",
|
|
57
57
|
"commit": "cz",
|
|
58
|
-
"pre-commit": "./.husky/run-staged-tests.js"
|
|
58
|
+
"pre-commit": "./.husky/run-staged-tests.js",
|
|
59
|
+
"semantic-release": "semantic-release"
|
|
59
60
|
},
|
|
60
61
|
"dependencies": {
|
|
61
62
|
"@vueuse/core": "^9.3.0",
|
|
62
63
|
"gluegun": "latest",
|
|
63
64
|
"maska": "^1.5.0",
|
|
64
|
-
"vee-validate": "^4.
|
|
65
|
+
"vee-validate": "^4.7.0",
|
|
65
66
|
"vue": "^3.2.40"
|
|
66
67
|
},
|
|
67
68
|
"devDependencies": {
|
|
@@ -70,7 +71,11 @@
|
|
|
70
71
|
"@babel/preset-env": "^7.18.10",
|
|
71
72
|
"@commitlint/cli": "^17.0.3",
|
|
72
73
|
"@commitlint/config-conventional": "^17.0.3",
|
|
73
|
-
"@iconify/json": "^2.1.
|
|
74
|
+
"@iconify/json": "^2.1.119",
|
|
75
|
+
"@semantic-release/changelog": "^6.0.1",
|
|
76
|
+
"@semantic-release/git": "^10.0.1",
|
|
77
|
+
"@semantic-release/npm": "^9.0.1",
|
|
78
|
+
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
74
79
|
"@storybook/addon-a11y": "^6.5.10",
|
|
75
80
|
"@storybook/addon-actions": "^6.5.10",
|
|
76
81
|
"@storybook/addon-essentials": "^6.5.10",
|
|
@@ -81,20 +86,20 @@
|
|
|
81
86
|
"@testing-library/jest-dom": "^5.16.5",
|
|
82
87
|
"@testing-library/user-event": "^14.4.3",
|
|
83
88
|
"@testing-library/vue": "^6.6.1",
|
|
84
|
-
"@types/jest-axe": "^3.5.
|
|
85
|
-
"@types/node": "
|
|
89
|
+
"@types/jest-axe": "^3.5.5",
|
|
90
|
+
"@types/node": "18.8.0",
|
|
86
91
|
"@typescript-eslint/eslint-plugin": "^5.30.0",
|
|
87
92
|
"@typescript-eslint/parser": "^5.30.0",
|
|
88
|
-
"@vitejs/plugin-vue": "^3.
|
|
89
|
-
"@vitest/coverage-c8": "^0.
|
|
90
|
-
"@vitest/ui": "^0.
|
|
93
|
+
"@vitejs/plugin-vue": "^3.1.2",
|
|
94
|
+
"@vitest/coverage-c8": "^0.24.0",
|
|
95
|
+
"@vitest/ui": "^0.24.0",
|
|
91
96
|
"babel-loader": "^8.2.5",
|
|
92
97
|
"c8": "^7.12.0",
|
|
93
98
|
"cli-spinner": "^0.2.10",
|
|
94
99
|
"commitizen": "^4.2.4",
|
|
95
100
|
"copyfiles": "^2.4.1",
|
|
96
101
|
"critters": "^0.0.16",
|
|
97
|
-
"eslint": "^8.
|
|
102
|
+
"eslint": "^8.25.0",
|
|
98
103
|
"eslint-config-prettier": "^8.5.0",
|
|
99
104
|
"eslint-plugin-html": "^6.2.0",
|
|
100
105
|
"eslint-plugin-prettier": "^4.2.1",
|
|
@@ -102,22 +107,23 @@
|
|
|
102
107
|
"eslint-plugin-vuejs-accessibility": "^1.2.0",
|
|
103
108
|
"husky": "^8.0.1",
|
|
104
109
|
"jest-axe": "^5.0.1",
|
|
105
|
-
"jsdom": "^20.0.
|
|
110
|
+
"jsdom": "^20.0.1",
|
|
106
111
|
"sass": "^1.50.0",
|
|
112
|
+
"semantic-release": "^19.0.5",
|
|
107
113
|
"storybook-addon-designs": "^6.3.1",
|
|
108
114
|
"stylelint": "^14.10.0",
|
|
109
115
|
"stylelint-config-prettier": "^9.0.3",
|
|
110
116
|
"stylelint-config-property-sort-order-smacss": "^9.0.0",
|
|
111
117
|
"stylelint-order": "^5.0.0",
|
|
112
118
|
"ts-node": "^10.9.1",
|
|
113
|
-
"typescript": "^4.
|
|
114
|
-
"unplugin-icons": "^0.14.
|
|
115
|
-
"vite": "^3.
|
|
116
|
-
"vite-plugin-inspect": "^0.
|
|
117
|
-
"vite-plugin-windicss": "^1.8.
|
|
118
|
-
"vitest": "^0.
|
|
119
|
+
"typescript": "^4.8.4",
|
|
120
|
+
"unplugin-icons": "^0.14.11",
|
|
121
|
+
"vite": "^3.1.6",
|
|
122
|
+
"vite-plugin-inspect": "^0.7.5",
|
|
123
|
+
"vite-plugin-windicss": "^1.8.8",
|
|
124
|
+
"vitest": "^0.24.0",
|
|
119
125
|
"vue-loader": "^17.0.0",
|
|
120
|
-
"vue-tsc": "^0.
|
|
126
|
+
"vue-tsc": "^1.0.7",
|
|
121
127
|
"windicss": "^3.5.6"
|
|
122
128
|
},
|
|
123
129
|
"resolutions": {
|
|
@@ -144,5 +150,8 @@
|
|
|
144
150
|
"commitizen": {
|
|
145
151
|
"path": "./node_modules/cz-conventional-changelog"
|
|
146
152
|
}
|
|
153
|
+
},
|
|
154
|
+
"publishConfig": {
|
|
155
|
+
"access": "public"
|
|
147
156
|
}
|
|
148
157
|
}
|