@bitrise/bitkit 8.5.1 → 9.1.1
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/CHANGELOG.md +40 -0
- package/lib/cjs/Badge/Badge.d.ts +1 -0
- package/lib/cjs/Badge/Badge.d.ts.map +1 -1
- package/lib/cjs/Badge/Badge.js +15 -2
- package/lib/cjs/Badge/Badge.js.map +1 -1
- package/lib/cjs/Dropdown/DropdownButton.d.ts.map +1 -1
- package/lib/cjs/Dropdown/DropdownButton.js +1 -1
- package/lib/cjs/Dropdown/DropdownButton.js.map +1 -1
- package/lib/cjs/Icon/tsx/IconsCrown.d.ts +4 -0
- package/lib/cjs/Icon/tsx/IconsCrown.d.ts.map +1 -0
- package/lib/cjs/Icon/tsx/IconsCrown.js +30 -0
- package/lib/cjs/Icon/tsx/IconsCrown.js.map +1 -0
- package/lib/cjs/Icon/tsx/IconsPencil.d.ts.map +1 -1
- package/lib/cjs/Icon/tsx/IconsPencil.js +4 -2
- package/lib/cjs/Icon/tsx/IconsPencil.js.map +1 -1
- package/lib/cjs/Icon/tsx/index.d.ts +1 -1
- package/lib/cjs/Icon/tsx/index.d.ts.map +1 -1
- package/lib/cjs/Icon/tsx/index.js +3 -0
- package/lib/cjs/Icon/tsx/index.js.map +1 -1
- package/lib/cjs/Notification/Notification.d.ts.map +1 -1
- package/lib/cjs/Notification/Notification.js +2 -2
- package/lib/cjs/Notification/Notification.js.map +1 -1
- package/lib/cjs/Tabs/Tab.js +1 -1
- package/lib/cjs/Tabs/Tab.js.map +1 -1
- package/lib/cjs/Text/Text.css +0 -3
- package/lib/cjs/Text/Text.d.ts +1 -1
- package/lib/cjs/Text/Text.js +1 -1
- package/lib/cjs/Text/Text.js.map +1 -1
- package/lib/cjs/root.css +0 -1
- package/lib/cjs/tsconfig.tsbuildinfo +27 -12
- package/lib/cjs/variables.css +1 -3
- package/lib/esn/Badge/Badge.d.ts +1 -0
- package/lib/esn/Badge/Badge.d.ts.map +1 -1
- package/lib/esn/Badge/Badge.js +3 -2
- package/lib/esn/Badge/Badge.js.map +1 -1
- package/lib/esn/Dropdown/DropdownButton.d.ts.map +1 -1
- package/lib/esn/Dropdown/DropdownButton.js +1 -1
- package/lib/esn/Dropdown/DropdownButton.js.map +1 -1
- package/lib/esn/Icon/tsx/IconsCrown.d.ts +4 -0
- package/lib/esn/Icon/tsx/IconsCrown.d.ts.map +1 -0
- package/lib/esn/Icon/tsx/IconsCrown.js +10 -0
- package/lib/esn/Icon/tsx/IconsCrown.js.map +1 -0
- package/lib/esn/Icon/tsx/IconsPencil.d.ts.map +1 -1
- package/lib/esn/Icon/tsx/IconsPencil.js +4 -2
- package/lib/esn/Icon/tsx/IconsPencil.js.map +1 -1
- package/lib/esn/Icon/tsx/index.d.ts +1 -1
- package/lib/esn/Icon/tsx/index.d.ts.map +1 -1
- package/lib/esn/Icon/tsx/index.js +3 -0
- package/lib/esn/Icon/tsx/index.js.map +1 -1
- package/lib/esn/Notification/Notification.d.ts.map +1 -1
- package/lib/esn/Notification/Notification.js +2 -2
- package/lib/esn/Notification/Notification.js.map +1 -1
- package/lib/esn/Tabs/Tab.js +1 -1
- package/lib/esn/Tabs/Tab.js.map +1 -1
- package/lib/esn/Text/Text.css +0 -3
- package/lib/esn/Text/Text.d.ts +1 -1
- package/lib/esn/Text/Text.js +1 -1
- package/lib/esn/Text/Text.js.map +1 -1
- package/lib/esn/root.css +0 -1
- package/lib/esn/tsconfig.tsbuildinfo +27 -12
- package/lib/esn/variables.css +1 -3
- package/package.json +1 -1
- package/site/assets/fonts/TT_Norms_Pro_Normal.woff +0 -0
- package/site/components/CodeBlock/CodeBlock.css +1 -1
- package/site/index.css +4 -4
- package/src/Badge/Badge.tsx +8 -5
- package/src/Dropdown/DropdownButton.tsx +3 -1
- package/src/Icon/tsx/IconsCrown.tsx +16 -0
- package/src/Icon/tsx/IconsPencil.tsx +9 -3
- package/src/Icon/tsx/index.tsx +4 -0
- package/src/Notification/Notification.tsx +2 -1
- package/src/Tabs/Tab.tsx +1 -1
- package/src/Text/Text.css +0 -2
- package/src/Text/Text.tsx +2 -2
- package/src/root.css +0 -1
- package/src/variables.css +1 -3
- package/site/assets/fonts/TT_Norms_Pro_Medium.woff +0 -0
package/src/Text/Text.tsx
CHANGED
|
@@ -6,7 +6,7 @@ import './Text.css';
|
|
|
6
6
|
|
|
7
7
|
export type TypeTextLetterSpacing = 'x1' | 'x2' | 'x3' | 'x4' | 'x5';
|
|
8
8
|
export type TypeTextSize = '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9';
|
|
9
|
-
export type TypeTextWeight = 'bold' | '
|
|
9
|
+
export type TypeTextWeight = 'bold' | 'normal';
|
|
10
10
|
|
|
11
11
|
export interface Props extends BaseProps {
|
|
12
12
|
/**
|
|
@@ -78,7 +78,7 @@ const Text: React.FunctionComponent<Props> = (props: Props) => {
|
|
|
78
78
|
[`Text--break-${breakOn}`]: breakOn,
|
|
79
79
|
[`Text--letter-spacing-${letterSpacing}`]: letterSpacing,
|
|
80
80
|
[`Text--size-${size}`]: size,
|
|
81
|
-
|
|
81
|
+
'Text--weight-bold': weight === 'bold',
|
|
82
82
|
});
|
|
83
83
|
|
|
84
84
|
const component = inline ? InlineComponentMap(props) : Component;
|
package/src/root.css
CHANGED
package/src/variables.css
CHANGED
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
--color-overlay--black: rgba(34, 34, 34, 0.8);
|
|
150
150
|
--color-overlay--grape: rgba(53, 29, 72, 0.8);
|
|
151
151
|
|
|
152
|
-
--font-family: '
|
|
152
|
+
--font-family: 'TT Norms Pro', sans-serif;
|
|
153
153
|
--font-family-monospace: 'Source Code Pro', monospace;
|
|
154
154
|
|
|
155
155
|
--font-size--1: 0.6875rem; /* 11px */
|
|
@@ -161,10 +161,8 @@
|
|
|
161
161
|
--font-size--7: 2.25rem; /* 36 px */
|
|
162
162
|
--font-size--8: 3rem; /* 48px */
|
|
163
163
|
|
|
164
|
-
--font-weight--medium: 500;
|
|
165
164
|
--font-weight--bold: 700;
|
|
166
165
|
|
|
167
|
-
--font-weight-monospace--medium: 500;
|
|
168
166
|
--font-weight-monospace--bold: 600;
|
|
169
167
|
|
|
170
168
|
--line-height--1: 1rem; /* 16px */
|
|
Binary file
|