Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Lib naming change #10

Closed
wants to merge 15 commits into from
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-styling": "^2.0.2--canary.82.ac39d17.0",
"@storybook/addon-styling": "^2.0.2-next.4",
"@storybook/addon-viewport": "^7.3.2",
"@storybook/addons": "^7.3.2",
"@storybook/blocks": "^7.3.2",
Expand Down
2 changes: 2 additions & 0 deletions src/components/Button/DsButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@
return 'border border-white hover:bg-white text-gray-800 focus:ring-gray-300 dark:focus:ring-gray-800 rounded-lg';
case ButtonType.light_pill:
return 'bg-white text-gray-800 hover:opacity-90 transition-opacity duration-150 focus-ring-gray-500 dark:focus-ring-gray-600 rounded-full';
case ButtonType.link:
return 'text-blue-600 hover:opacity-90 transition-opacity duration-150 focus-ring-blue-500 dark:focus-ring-blue-600 shadow-none rounded-none';
default:
return 'bg-blue-600 dark:bg-blue-700 text-white hover:opacity-90 transition-opacity duration-150 focus-ring-blue-500 dark:focus-ring-blue-600 rounded-lg';
}
Expand Down