Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ dist-ssr
# Editor directories and files
.idea
.DS_Store
.zed
*.suo
*.ntvs*
*.njsproj
Expand Down
11 changes: 11 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@
"recommended": true,
"style": {
"useSelfClosingElements": "off"
},
"a11y": {
"useValidAnchor": "off",
"noLabelWithoutControl": {
"level": "error",
"options": {
"inputComponents": ["Checkbox", "InputText", "Radio", "Select", "Textarea"],
"labelAttributes": [],
"labelComponents": []
}
}
}
}
}
Expand Down
3,038 changes: 1,555 additions & 1,483 deletions package-lock.json

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digital-go-jp/design-system-example-components",
"version": "2.1.2",
"version": "2.2.0",
"type": "module",
"main": "dist/index.cjs.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -39,37 +39,37 @@
"storybook:test": "test-storybook"
},
"dependencies": {
"@digital-go-jp/tailwind-theme-plugin": "^0.2.4",
"@digital-go-jp/tailwind-theme-plugin": "^0.2.5",
"@internationalized/date": "^3.7.0",
"react": "^18.3.1",
"react-aria-components": "^1.6.0",
"react-aria-components": "^1.7.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@markuplint/jsx-parser": "^4.7.16",
"@markuplint/react-spec": "^4.5.16",
"@storybook/addon-a11y": "^8.6.0",
"@storybook/addon-essentials": "^8.6.0",
"@storybook/addon-interactions": "^8.6.0",
"@storybook/addon-links": "^8.6.0",
"@storybook/addon-storysource": "^8.6.0",
"@storybook/blocks": "^8.6.0",
"@storybook/react": "^8.6.0",
"@storybook/react-vite": "^8.6.0",
"@storybook/test": "^8.6.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.13.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.8.0",
"autoprefixer": "^10.4.20",
"markuplint": "^4.11.6",
"@markuplint/jsx-parser": "^4.7.18",
"@markuplint/react-spec": "^4.5.18",
"@storybook/addon-a11y": "^8.6.8",
"@storybook/addon-essentials": "^8.6.8",
"@storybook/addon-interactions": "^8.6.8",
"@storybook/addon-links": "^8.6.8",
"@storybook/addon-storysource": "^8.6.8",
"@storybook/blocks": "^8.6.8",
"@storybook/react": "^8.6.8",
"@storybook/react-vite": "^8.6.8",
"@storybook/test": "^8.6.8",
"@tsconfig/node20": "^20.1.5",
"@types/node": "^22.13.12",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react-swc": "^3.8.1",
"autoprefixer": "^10.4.21",
"markuplint": "^4.11.8",
"postcss": "^8.5.3",
"storybook": "^8.6.0",
"typescript": "^5.7.3",
"vite": "^6.2.0"
"storybook": "^8.6.8",
"typescript": "^5.8.2",
"vite": "^6.2.2"
},
"engines": {
"node": ">=18"
Expand Down
Loading