@bitrise/bitkit 9.8.4 → 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.8.4",
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,
@@ -1,6 +1,7 @@
1
1
  import * as React from 'react';
2
2
  import classnames from 'classnames';
3
- import { Link, Icon } from '@bitrise/bitkit';
3
+ import { Icon } from '@bitrise/bitkit';
4
+ import Link from '../Link/Link';
4
5
  import Flex, { Props as FlexProps } from '../Flex/Flex';
5
6
  import { ModalContext } from './ModalContext';
6
7
 
package/src/index.ts CHANGED
@@ -134,8 +134,8 @@ export { default as InputInlineHelp } from './Old/Input/InputInlineHelp';
134
134
  export type { Props as InputLabelProps } from './Old/Input/InputLabel';
135
135
  export { default as InputLabel } from './Old/Input/InputLabel';
136
136
 
137
- export type { Props as LinkProps } from './Old/Link/Link';
138
- export { default as Link } from './Old/Link/Link';
137
+ export type { LinkProps } from './Components/Link/Link';
138
+ export { default as Link } from './Components/Link/Link';
139
139
 
140
140
  export type { Props as ListProps } from './Old/List/List';
141
141
  export { default as List } from './Old/List/List';
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',