Skip to content

Commit 6820fd3

Browse files
netergartfstasilukdog
committed
feat: changes and updates according new design of some components (#3)
* updated gitignore to all common cases * allow using children components inside radio/checbox components * fixed reset method and allow default HTML5 attributes in the input * added more style variants in the select component * updated chechbox UI colors * lockfileVersion 2 * updated readme * feat: adding toggle component * style: fixed inputs and select styles * changed selects and input variants behaviour * toggle component * removed logs * toggle component fix * updated toggle component * toggle component ts issue * updated PopoverTrigger exports * updated colors * updated Yup validation * Updating YUP validation for address input * Destructuring children in Checkbox/Radio GroupItem Co-authored-by: Francesco Stasi <[email protected]> Co-authored-by: Luca Doglione <[email protected]>
1 parent c837a3a commit 6820fd3

27 files changed

+28628
-5533
lines changed

.gitignore

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,27 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
14
node_modules
2-
dist
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
dist
13+
src/api/mock.json
14+
15+
# misc
16+
.DS_Store
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*
21+
22+
.eslintcache
23+
24+
25+
# ide
26+
.idea/
27+
.vscode/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ npm i @arduino/arc
1313
Please note that this package has a peer dependecy on `react`, `react-dom` and `react-aria`, you might need to install.
1414

1515
```sh
16-
npm i react@^16.13.1 react-dom@^16.12.0 react-aria@3.0.0
16+
npm i react@^17.0.2 react-dom@^17.0.2 react-aria@3.6.0
1717
```
1818

1919
## Develop
@@ -39,7 +39,7 @@ npm i react@^16.13.1 react-dom@^16.12.0 [email protected]
3939
4. to reference a WIP branch from another repo, set the package.json of the other repo to
4040
```json
4141
"dependencies": {
42-
"@arduino/arc": "arduino/arc#your-branch",
42+
"@arduino/arc": "github:arduino/arc#your-branch",
4343
...
4444
```
4545

0 commit comments

Comments
 (0)