Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 486ed5d

Browse files
author
Daniel Sanchez
authored
* Set v1.1.3 (#196)
* Remove underline from links
1 parent 96abd70 commit 486ed5d

File tree

44 files changed

+19025
-959
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+19025
-959
lines changed

.storybook/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ module.exports = {
22
stories: ['../src/**/*.stories.tsx'],
33
addons: [
44
'@storybook/addon-actions',
5-
'@storybook/addon-links',
65
'@storybook/addon-docs',
6+
'@storybook/addon-controls',
7+
'@storybook/addon-links',
78
'storybook-addon-react-docgen',
8-
'storybook-addon-controls',
99
],
1010
};

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gnosis.pm/safe-react-components",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "Gnosis UI components",
55
"main": "dist/index.min.js",
66
"typings": "dist/index.d.ts",
@@ -36,13 +36,13 @@
3636
"@material-ui/core": "^4.12.3",
3737
"@material-ui/icons": "^4.11.0",
3838
"@mui/x-data-grid": "4.0.2",
39-
"@storybook/addon-actions": "^6.3.12",
40-
"@storybook/addon-docs": "^6.3.12",
41-
"@storybook/addon-links": "^6.3.12",
42-
"@storybook/addon-storyshots": "^6.3.12",
43-
"@storybook/addon-controls": "^6.4.19",
44-
"@storybook/addons": "^6.3.12",
45-
"@storybook/react": "^6.3.12",
39+
"@storybook/addon-actions": "^6.4.22",
40+
"@storybook/addon-controls": "^6.4.22",
41+
"@storybook/addon-docs": "^6.4.22",
42+
"@storybook/addon-links": "^6.4.22",
43+
"@storybook/addon-storyshots": "^6.4.22",
44+
"@storybook/addons": "^6.4.22",
45+
"@storybook/react": "^6.4.22",
4646
"@testing-library/jest-dom": "^5.11.5",
4747
"@testing-library/react": "^11.2.7",
4848
"@testing-library/user-event": "^12.2.0",

src/inputs/ButtonLink/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface Props extends React.ComponentPropsWithoutRef<'button'> {
1616
const StyledButtonLink = styled.button<Props>`
1717
background: transparent;
1818
border: none;
19-
text-decoration: underline;
19+
text-decoration: none;
2020
cursor: pointer;
2121
color: ${({ theme, color }) => theme['colors'][color]};
2222
font-family: ${({ theme }) => theme.fonts.fontFamily};

src/inputs/Link/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export interface Props extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
99
}
1010

1111
const StyledLink = styled.a<Props>`
12-
text-decoration: underline;
12+
text-decoration: none;
1313
cursor: pointer;
1414
color: ${({ theme, color = 'primary' }) => theme['colors'][color]};
1515
font-family: ${({ theme }) => theme.fonts.fontFamily};

0 commit comments

Comments
 (0)