@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 +1 -1
- package/src/Components/Link/Link.tsx +1 -1
- package/src/Old/Icon/tsx/index.ts +0 -4
- package/src/Old/Modal/ModalHeader.tsx +2 -1
- package/src/index.ts +2 -2
- package/src/theme.ts +3 -0
- package/src/tsconfig.tsbuildinfo +1 -1
- package/tsconfig.json +1 -0
- package/src/Old/Icon/svg/icons-crown.svg +0 -9
- package/src/Old/Icon/tsx/IconsCrown.tsx +0 -19
package/package.json
CHANGED
|
@@ -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 {
|
|
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 {
|
|
138
|
-
export { default as Link } from './
|
|
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';
|