-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into fix/sections
- Loading branch information
Showing
105 changed files
with
2,002 additions
and
1,799 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,44 +56,47 @@ | |
"@storybook/types": "^8.4.0", | ||
"@testing-library/dom": "^10.4.0", | ||
"@testing-library/jest-dom": "^6.6.2", | ||
"@testing-library/react": "^16.0.0", | ||
"@testing-library/react": "^16.1.0", | ||
"@testing-library/user-event": "^14.5.2", | ||
"@types/css-modules": "^1.0.5", | ||
"@types/node": "^22.9.0", | ||
"@types/react": "^18.3.1", | ||
"@types/react-dom": "^18.3.0", | ||
"@types/node": "^22.10.1", | ||
"@types/react": "^19.0.0", | ||
"@types/react-dom": "^19.0.1", | ||
"@vanilla-extract/css": "^1.16.0", | ||
"@vanilla-extract/vite-plugin": "^4.0.2", | ||
"@vitejs/plugin-react-swc": "^3.7.0", | ||
"@vitejs/plugin-react-swc": "^3.7.2", | ||
"@vitest/coverage-v8": "^2.1.1", | ||
"@vitest/ui": "^2.1.1", | ||
"browserslist": "^4.24.0", | ||
"chromatic": "^11.18.1", | ||
"chromatic": "^11.19.0", | ||
"deepmerge": "^4.3.1", | ||
"husky": "^9.1.1", | ||
"jsdom": "^25.0.0", | ||
"lightningcss": "^1.28.1", | ||
"lint-staged": "^15.2.0", | ||
"nx": "20.0.7", | ||
"plop": "^4.0.0", | ||
"react": "18.3.1", | ||
"react-dom": "18.3.1", | ||
"react": "19.0.0", | ||
"react-dom": "19.0.0", | ||
"react-router-dom": "6.16.0", | ||
"rollup-plugin-pure": "^0.2.1", | ||
"storybook": "^8.4.0", | ||
"storybook-addon-pseudo-states": "^4.0.0", | ||
"typescript": "^5.6.2", | ||
"typescript": "^5.7.2", | ||
"typescript-plugin-css-modules": "^5.1.0", | ||
"vite": "^5.4.0", | ||
"vite": "^6.0.2", | ||
"vitest": "^2.1.1" | ||
}, | ||
"packageManager": "[email protected]", | ||
"pnpm": { | ||
"overrides": { | ||
"vite": "^6.0.2" | ||
}, | ||
"peerDependencyRules": { | ||
"allowedVersions": { | ||
"react": "18", | ||
"react": "19", | ||
"rollup": "4", | ||
"vite": "5" | ||
"vite": "6" | ||
} | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { describe, expect, it } from 'vitest'; | ||
|
||
import { render, screen } from '../../../test/utils'; | ||
import { DropZone } from '../src'; | ||
|
||
describe('DropZone', () => { | ||
it('renders', () => { | ||
render(<DropZone />); | ||
expect(screen.getByRole('button')).toBeVisible(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { describe, expect, it } from 'vitest'; | ||
|
||
import { render, screen } from '../../../test/utils'; | ||
import { ToggleButton, ToggleButtonGroup } from '../src'; | ||
|
||
describe('ToggleButtonGroup', () => { | ||
it('renders', () => { | ||
render( | ||
<ToggleButtonGroup> | ||
<ToggleButton id="first">First</ToggleButton> | ||
<ToggleButton id="second">Second</ToggleButton> | ||
<ToggleButton id="third">Third</ToggleButton> | ||
</ToggleButtonGroup>, | ||
); | ||
expect(screen.getByRole('radiogroup')).toBeVisible(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.