@animus-ui/core 0.1.1-beta.16 → 0.1.1-beta.17
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 +8 -0
- package/dist/compatTheme.d.ts +4 -7
- package/dist/index.js +4 -7
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.1.1-beta.17](https://github.com/codecaaron/animus/compare/@animus-ui/core@0.1.1-beta.16...@animus-ui/core@0.1.1-beta.17) (2022-02-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @animus-ui/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.1.1-beta.16](https://github.com/codecaaron/animus/compare/@animus-ui/core@0.1.1-beta.15...@animus-ui/core@0.1.1-beta.16) (2022-02-02)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @animus-ui/core
|
package/dist/compatTheme.d.ts
CHANGED
|
@@ -8,15 +8,12 @@ export declare const compatTheme: {
|
|
|
8
8
|
};
|
|
9
9
|
readonly spacing: readonly [0, 4, 8, 12, 16, 24, 32, 40, 48, 64, 96];
|
|
10
10
|
readonly fontSize: readonly [64, 44, 34, 26, 22, 20, 18, 16, 14];
|
|
11
|
-
readonly lineHeight:
|
|
12
|
-
readonly body: 1.5;
|
|
13
|
-
readonly heading: 1;
|
|
14
|
-
};
|
|
11
|
+
readonly lineHeight: readonly [1, 1.625, 2];
|
|
15
12
|
readonly fontWeight: readonly [400, 600, 700];
|
|
16
13
|
readonly fontFamily: {
|
|
17
|
-
readonly body: "
|
|
18
|
-
readonly heading: "
|
|
19
|
-
readonly monospace: "monospace";
|
|
14
|
+
readonly body: "-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,\"Helvetica Neue\",sans-serif";
|
|
15
|
+
readonly heading: "-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,\"Helvetica Neue\",sans-serif";
|
|
16
|
+
readonly monospace: "Menlo,monospace";
|
|
20
17
|
};
|
|
21
18
|
readonly radii: readonly [2, 4, 6, 8];
|
|
22
19
|
readonly borders: readonly [1, 2, 3];
|
package/dist/index.js
CHANGED
|
@@ -340,15 +340,12 @@ var compatTheme = {
|
|
|
340
340
|
},
|
|
341
341
|
spacing: [0, 4, 8, 12, 16, 24, 32, 40, 48, 64, 96],
|
|
342
342
|
fontSize: [64, 44, 34, 26, 22, 20, 18, 16, 14],
|
|
343
|
-
lineHeight:
|
|
344
|
-
body: 1.5,
|
|
345
|
-
heading: 1
|
|
346
|
-
},
|
|
343
|
+
lineHeight: [1, 1.625, 2],
|
|
347
344
|
fontWeight: [400, 600, 700],
|
|
348
345
|
fontFamily: {
|
|
349
|
-
body: '
|
|
350
|
-
heading: '
|
|
351
|
-
monospace: 'monospace'
|
|
346
|
+
body: '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif',
|
|
347
|
+
heading: '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif',
|
|
348
|
+
monospace: 'Menlo,monospace'
|
|
352
349
|
},
|
|
353
350
|
radii: [2, 4, 6, 8],
|
|
354
351
|
borders: [1, 2, 3],
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@animus-ui/core",
|
|
3
3
|
"description": "Constraint based CSS in JS Foundations",
|
|
4
|
-
"version": "0.1.1-beta.
|
|
4
|
+
"version": "0.1.1-beta.17",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"emotion",
|
|
7
7
|
"css",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"csstype": "^3.0.7"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "f675c939172dab4202db615de2804470512f5dc6"
|
|
40
40
|
}
|