gatsby-matrix-theme 8.0.6 → 8.0.7
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 +7 -0
- package/package.json +2 -2
- package/src/components/atoms/select/select.module.scss +2 -2
- package/src/components/molecules/horse-calculator/horse-calculator.module.scss +8 -5
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/{main.bb38e34d.iframe.bundle.js → main.87708c4f.iframe.bundle.js} +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [8.0.7](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v8.0.6...v8.0.7) (2022-10-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* updated to latest core theme and styling fixes ([d89b2dc](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/d89b2dc2a71b7552a986a6bf3d4ecc0e7ccb4bc9))
|
|
7
|
+
|
|
1
8
|
## [8.0.6](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v8.0.5...v8.0.6) (2022-10-25)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.7",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"description": "Matrix Theme NPM Package",
|
|
6
6
|
"author": "",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"gatsby": "^4.20.0",
|
|
27
|
-
"gatsby-core-theme": "13.0.
|
|
27
|
+
"gatsby-core-theme": "13.0.5",
|
|
28
28
|
"gatsby-plugin-sharp": "^4.10.2",
|
|
29
29
|
"gatsby-plugin-sitemap": "^3.3.0",
|
|
30
30
|
"gatsby-transformer-sharp": "^4.10.0",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
-webkit-appearance: none;
|
|
12
12
|
-moz-appearance: none;
|
|
13
13
|
appearance: none;
|
|
14
|
-
border: none;
|
|
15
|
-
color: #1a1c1f;
|
|
14
|
+
border: var(--horse-calc-input-border, none);
|
|
15
|
+
color: var(--horse-calc-label-color, #1a1c1f);
|
|
16
16
|
background: var(--horse-calc-input-background, #f3f2f2);
|
|
17
17
|
border-radius: var(--horse-calc-input-border-radius, 0.4rem);
|
|
18
18
|
font-weight: 400;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.innerContainer {
|
|
2
|
-
background:
|
|
2
|
+
background: var(--horse-calc-background-color);
|
|
3
3
|
box-shadow: var(--horse-calc-shadow, 0px -3px 14px rgba(0, 0, 0, 0.09));
|
|
4
4
|
border-radius: var(--horse-calc-border-radius, 1.6rem);
|
|
5
5
|
border: 1px solid var(--horse-calc-border-color, transparent);
|
|
@@ -16,10 +16,12 @@
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
input {
|
|
19
|
-
background-color: #f3f2f2;
|
|
19
|
+
background-color: var(--horse-calc-input-background, #f3f2f2);
|
|
20
20
|
padding: 1.6rem 2.4rem;
|
|
21
21
|
width: 100%;
|
|
22
|
-
border
|
|
22
|
+
border: var(--horse-calc-input-border, none);
|
|
23
|
+
border-radius: var(--horse-calc-input-border-radius, 0.4rem);
|
|
24
|
+
color: var(--horse-calc-label-color, #1a1c1f);
|
|
23
25
|
}
|
|
24
26
|
|
|
25
27
|
> div {
|
|
@@ -45,6 +47,7 @@
|
|
|
45
47
|
|
|
46
48
|
table {
|
|
47
49
|
width: 100%;
|
|
50
|
+
background-color: var(--horse-calc-totals-table-background, #fff);
|
|
48
51
|
|
|
49
52
|
th,
|
|
50
53
|
tr {
|
|
@@ -71,7 +74,7 @@
|
|
|
71
74
|
padding: 1rem;
|
|
72
75
|
vertical-align: top;
|
|
73
76
|
padding-left: 1.4rem;
|
|
74
|
-
color: var(--horse-calc-
|
|
77
|
+
color: var(--horse-calc-table-head-color, #150e06);
|
|
75
78
|
|
|
76
79
|
font-weight: 700;
|
|
77
80
|
|
|
@@ -148,7 +151,7 @@
|
|
|
148
151
|
|
|
149
152
|
th,
|
|
150
153
|
tr {
|
|
151
|
-
border:
|
|
154
|
+
border: var(--horse-calc-outcome-table-header-border-width, 1.5px) solid var(--horse-calc-outcome-table-header-border-color, #dcd9d3) !important;
|
|
152
155
|
}
|
|
153
156
|
|
|
154
157
|
thead {
|
|
@@ -345,4 +345,4 @@
|
|
|
345
345
|
|
|
346
346
|
|
|
347
347
|
|
|
348
|
-
window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"}];</script><script src="runtime~main.cb53773f.iframe.bundle.js"></script><script src="988.b2155e04.iframe.bundle.js"></script><script src="main.
|
|
348
|
+
window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"}];</script><script src="runtime~main.cb53773f.iframe.bundle.js"></script><script src="988.b2155e04.iframe.bundle.js"></script><script src="main.87708c4f.iframe.bundle.js"></script></body></html>
|