@spaced-out/ui-design-system 0.1.94-beta.5 → 0.1.94-beta.6
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
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.94-beta.6](https://github.com/spaced-out/ui-design-system/compare/v0.1.94-beta.5...v0.1.94-beta.6) (2024-05-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* removed line height in chartjs typography and removed unused style ([#207](https://github.com/spaced-out/ui-design-system/issues/207)) ([fea7e30](https://github.com/spaced-out/ui-design-system/commit/fea7e30fcd8ce0c3e955e69f55ab5be67ae482f4))
|
|
11
|
+
|
|
5
12
|
### [0.1.94-beta.5](https://github.com/spaced-out/ui-design-system/compare/v0.1.94-beta.4...v0.1.94-beta.5) (2024-05-16)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.underline = exports.subTitleExtraSmall = exports.
|
|
6
|
+
exports.underline = exports.subTitleExtraSmall = exports.formLabelSmall = exports.buttonTextExtraSmall = exports.bodySmall = exports.baseType = void 0;
|
|
7
7
|
var _color = require("../../styles/variables/_color");
|
|
8
8
|
var _font = require("../../styles/variables/_font");
|
|
9
9
|
|
|
@@ -18,13 +18,6 @@ const baseType = {
|
|
|
18
18
|
alignItems: 'center'
|
|
19
19
|
};
|
|
20
20
|
exports.baseType = baseType;
|
|
21
|
-
const jumboMedium = {
|
|
22
|
-
...baseType,
|
|
23
|
-
fontSize: _font.fontSize36,
|
|
24
|
-
lineHeight: _font.fontLineHeight100,
|
|
25
|
-
letterSpacing: _font.fontLetterSpacingMinus3
|
|
26
|
-
};
|
|
27
|
-
exports.jumboMedium = jumboMedium;
|
|
28
21
|
const bodySmall = {
|
|
29
22
|
...baseType,
|
|
30
23
|
fontSize: _font.fontSize12,
|
|
@@ -41,8 +34,8 @@ exports.formLabelSmall = formLabelSmall;
|
|
|
41
34
|
const buttonTextExtraSmall = {
|
|
42
35
|
...baseType,
|
|
43
36
|
fontSize: _font.fontSize12,
|
|
44
|
-
letterSpacing: _font.fontLetterSpacing1
|
|
45
|
-
|
|
37
|
+
letterSpacing: _font.fontLetterSpacing1
|
|
38
|
+
// Removing the font height as its breaking the chart axis labels
|
|
46
39
|
};
|
|
47
40
|
exports.buttonTextExtraSmall = buttonTextExtraSmall;
|
|
48
41
|
const underline = {
|
|
@@ -52,7 +45,7 @@ exports.underline = underline;
|
|
|
52
45
|
const subTitleExtraSmall = {
|
|
53
46
|
...baseType,
|
|
54
47
|
fontSize: _font.fontSize12,
|
|
55
|
-
letterSpacing: _font.fontLetterSpacing0
|
|
56
|
-
|
|
48
|
+
letterSpacing: _font.fontLetterSpacing0
|
|
49
|
+
// Removing the font height as its breaking the chart axis labels
|
|
57
50
|
};
|
|
58
51
|
exports.subTitleExtraSmall = subTitleExtraSmall;
|
|
@@ -4,12 +4,7 @@ import {
|
|
|
4
4
|
fontLetterSpacing0,
|
|
5
5
|
fontLetterSpacing1,
|
|
6
6
|
fontLetterSpacing4,
|
|
7
|
-
fontLetterSpacingMinus3,
|
|
8
|
-
fontLineHeight100,
|
|
9
|
-
fontLineHeight120,
|
|
10
|
-
fontLineHeight140,
|
|
11
7
|
fontSize12,
|
|
12
|
-
fontSize36,
|
|
13
8
|
fontWeightBook,
|
|
14
9
|
fontWeightMedium,
|
|
15
10
|
} from '../../styles/variables/_font';
|
|
@@ -26,13 +21,6 @@ export const baseType = {
|
|
|
26
21
|
alignItems: 'center',
|
|
27
22
|
};
|
|
28
23
|
|
|
29
|
-
export const jumboMedium = {
|
|
30
|
-
...baseType,
|
|
31
|
-
fontSize: fontSize36,
|
|
32
|
-
lineHeight: fontLineHeight100,
|
|
33
|
-
letterSpacing: fontLetterSpacingMinus3,
|
|
34
|
-
};
|
|
35
|
-
|
|
36
24
|
export const bodySmall = {
|
|
37
25
|
...baseType,
|
|
38
26
|
fontSize: fontSize12,
|
|
@@ -50,7 +38,7 @@ export const buttonTextExtraSmall = {
|
|
|
50
38
|
...baseType,
|
|
51
39
|
fontSize: fontSize12,
|
|
52
40
|
letterSpacing: fontLetterSpacing1,
|
|
53
|
-
|
|
41
|
+
// Removing the font height as its breaking the chart axis labels
|
|
54
42
|
};
|
|
55
43
|
|
|
56
44
|
export const underline = {
|
|
@@ -61,5 +49,5 @@ export const subTitleExtraSmall = {
|
|
|
61
49
|
...baseType,
|
|
62
50
|
fontSize: fontSize12,
|
|
63
51
|
letterSpacing: fontLetterSpacing0,
|
|
64
|
-
|
|
52
|
+
// Removing the font height as its breaking the chart axis labels
|
|
65
53
|
};
|