@bitrise/bitkit 9.9.0-alpha-link-release.1 → 9.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "9.9.0-alpha-link-release.1",
4
+ "version": "9.9.0",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -22,7 +22,7 @@ const Link = (props: LinkProps) => {
22
22
  };
23
23
 
24
24
  Link.defaultProps = {
25
- isUnderlined: true,
25
+ isUnderlined: false,
26
26
  } as LinkProps;
27
27
 
28
28
  export default Link;
@@ -50,7 +50,6 @@ import Coffee from './IconsCoffee';
50
50
  import Console from './IconsConsole';
51
51
  import Credit from './IconsCredit';
52
52
  import Creditcard from './IconsCreditcard';
53
- import Crown from './IconsCrown';
54
53
  import DeleteNope from './IconsDeleteNope';
55
54
  import Deployment from './IconsDeployment';
56
55
  import Doc from './IconsDoc';
@@ -224,7 +223,6 @@ export type TypeIconName =
224
223
  | 'Console'
225
224
  | 'Credit'
226
225
  | 'Creditcard'
227
- | 'Crown'
228
226
  | 'DeleteNope'
229
227
  | 'Deployment'
230
228
  | 'Doc'
@@ -398,7 +396,6 @@ export const IconList: TypeIconName[] = [
398
396
  'Console',
399
397
  'Credit',
400
398
  'Creditcard',
401
- 'Crown',
402
399
  'DeleteNope',
403
400
  'Deployment',
404
401
  'Doc',
@@ -575,7 +572,6 @@ export const IconMap: {
575
572
  Console,
576
573
  Credit,
577
574
  Creditcard,
578
- Crown,
579
575
  DeleteNope,
580
576
  Deployment,
581
577
  Doc,
package/src/theme.ts CHANGED
@@ -34,6 +34,9 @@ const theme = {
34
34
  hr: {
35
35
  borderTopWidth: 0,
36
36
  },
37
+ a: {
38
+ textDecoration: 'none',
39
+ },
37
40
  '*:focus-visible': {
38
41
  boxShadow: 'outline',
39
42
  outline: 'none',