@wmoney/ui-kit 1.0.7 → 1.0.10
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/README.md +5 -23
- package/package.json +13 -1
package/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Um kit de componentes React reutilizáveis para aplicações web, construído com TypeScript, Tailwind CSS e Radix UI.
|
|
4
4
|
|
|
5
|
+
## Storybook
|
|
6
|
+
|
|
7
|
+
[https://wmoney-ui-7kqk0b1h7-wealth-money.vercel.app](https://wmoney-ui-7kqk0b1h7-wealth-money.vercel.app)
|
|
8
|
+
|
|
5
9
|
## Instalação
|
|
6
10
|
|
|
7
11
|
```bash
|
|
@@ -115,6 +119,7 @@ Os tokens disponíveis são separados por tema `light` e `dark`, e incluem: `pri
|
|
|
115
119
|
- MultiSelect
|
|
116
120
|
- Pagination
|
|
117
121
|
- Paginator
|
|
122
|
+
- PasswordToggle
|
|
118
123
|
- Popover
|
|
119
124
|
- RadioGroup
|
|
120
125
|
- RoundedButton
|
|
@@ -151,26 +156,3 @@ npm publish
|
|
|
151
156
|
```
|
|
152
157
|
|
|
153
158
|
Certifique-se de que você está logado no NPM (`npm login`) e que a versão no `package.json` foi atualizada.
|
|
154
|
-
import reactDom from 'eslint-plugin-react-dom'
|
|
155
|
-
|
|
156
|
-
export default defineConfig([
|
|
157
|
-
globalIgnores(['dist']),
|
|
158
|
-
{
|
|
159
|
-
files: ['**/*.{ts,tsx}'],
|
|
160
|
-
extends: [
|
|
161
|
-
// Other configs...
|
|
162
|
-
// Enable lint rules for React
|
|
163
|
-
reactX.configs['recommended-typescript'],
|
|
164
|
-
// Enable lint rules for React DOM
|
|
165
|
-
reactDom.configs.recommended,
|
|
166
|
-
],
|
|
167
|
-
languageOptions: {
|
|
168
|
-
parserOptions: {
|
|
169
|
-
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
170
|
-
tsconfigRootDir: import.meta.dirname,
|
|
171
|
-
},
|
|
172
|
-
// other options...
|
|
173
|
-
},
|
|
174
|
-
},
|
|
175
|
-
])
|
|
176
|
-
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wmoney/ui-kit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -40,6 +40,18 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@base-ui/react": "^1.3.0",
|
|
42
42
|
"@fontsource-variable/geist": "^5.2.8",
|
|
43
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
44
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
45
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
46
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
47
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
48
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
49
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
50
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
51
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
52
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
53
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
54
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
43
55
|
"class-variance-authority": "^0.7.1",
|
|
44
56
|
"clsx": "^2.1.1",
|
|
45
57
|
"cmdk": "^1.1.1",
|