gatsby-core-theme 6.1.2 → 6.1.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
@@ -1,3 +1,40 @@
1
+ ## [6.1.6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v6.1.5...v6.1.6) (2022-04-18)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * commit to trigger publish ([6c6c3fb](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/6c6c3fb19ff72f175da8843c02cc467033211097))
7
+
8
+ ## [6.1.5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v6.1.4...v6.1.5) (2022-04-18)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * changed npm token ([eba1721](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/eba17217edfaa65a57f0fc911341ae040df4e2df))
14
+
15
+
16
+ * Merge branch 'master' of git.ilcd.rocks:team-floyd/themes/gatsby-themes ([44e4e94](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/44e4e940745311f4435de7e965394481a0e13e21))
17
+
18
+ ## [6.1.4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v6.1.3...v6.1.4) (2022-04-18)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * changed tracker ([4ed35aa](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/4ed35aa6ccdad19fdf9e203da67a8a74d78fd662))
24
+
25
+
26
+ * Merge branch 'master' of git.ilcd.rocks:team-floyd/themes/gatsby-themes ([43f8dcf](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/43f8dcf4f647f3f7128c10bfcc73482876129890))
27
+
28
+ ## [6.1.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v6.1.2...v6.1.3) (2022-04-18)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * star rating fixed design ([eaf7472](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/eaf74723c83f203e465d5cc3811cca562134b3ef))
34
+
35
+
36
+ * Merge branch 'tm-2783-fix-star-rating' into 'master' ([3f1d310](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/3f1d3105db166d2bbdd48c2a2d19bb0c1e3a462e))
37
+
1
38
  ## [6.1.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v6.1.1...v6.1.2) (2022-04-13)
2
39
 
3
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "6.1.2",
3
+ "version": "6.1.6",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "main": "index.js",
6
6
  "GATSBY_RECAPTCHA_SITEKEY": "6LfoyvMUAAAAAO4nl_MQnqHb4XdHxEiu5cXgIqeB",
@@ -1,14 +1,15 @@
1
1
  .starRatingContainer {
2
2
  @include flex-direction(row);
3
- @include flex-align(center, center);
3
+ justify-content: center;
4
4
  background-color: #ffffff;
5
5
  min-width: 6.5rem;
6
6
  min-height: 2.1rem;
7
+ line-height: 2.1rem;
7
8
  border-radius: 0.4rem;
8
9
  border: 1px solid var(--main-star-wrapper-color);
9
10
 
10
11
  .fullStar {
11
- @include star(var(--full-star-fill-color), var(--full-star-border-color));
12
+ @include star(var(--full-star-fill-color), var(--full-star-border-color), unset, 2.1rem);
12
13
  }
13
14
 
14
15
  .rateNr {
@@ -16,11 +17,12 @@
16
17
  font-weight: 700;
17
18
  font-size: 1.3rem;
18
19
  margin-left: 0.33rem;
20
+ line-height: 2.1rem;
19
21
  }
20
22
 
21
23
  &.inactive {
22
24
  .fullStar {
23
- @include star(var(--empty-star-border-color), var(--empty-star-border-color));
25
+ @include star(var(--empty-star-border-color), var(--empty-star-border-color), unset, 2.1rem);
24
26
  }
25
27
  }
26
28
  }
@@ -67,7 +67,7 @@
67
67
  border-top: $height solid $color;
68
68
  border-right: calc($width / 2) solid transparent;
69
69
  border-left: calc($width / 2) solid transparent;
70
- margin-left: - calc($width / 2);
70
+ margin-left: -calc($width / 2);
71
71
  }
72
72
  }
73
73
 
@@ -85,9 +85,9 @@
85
85
  }
86
86
  }
87
87
 
88
- @mixin star($border-color: #fba62f, $fill-color: #fba62f) {
89
- line-height: 2rem;
90
- width: 16px;
88
+ @mixin star($border-color: #ffb400, $fill-color: #ffb400, $width: 16px, $line-height: 2rem) {
89
+ line-height: $line-height;
90
+ width: $width;
91
91
  font-weight: normal;
92
92
  display: inline-block;
93
93
  color: $fill-color;
@@ -103,7 +103,7 @@
103
103
  }
104
104
  }
105
105
 
106
- @mixin half-star($border-color: #fba62f, $half-empty-color: #fba62f, $half-full-color: white) {
106
+ @mixin half-star($border-color: #ffb400, $half-empty-color: #ffb400, $half-full-color: white) {
107
107
  line-height: 2rem;
108
108
  width: 16px;
109
109
  font-weight: normal;
package/storybook/.ci.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  # ######################
2
- # STORYBOOK CI
2
+ # STORYBOOK
3
3
  # #####################
4
4
 
5
5
  Storybook Build:
@@ -9,7 +9,7 @@ Storybook Build:
9
9
  - floyd-runner-test
10
10
  script:
11
11
  - yarn config set cache-folder .yarn
12
- - npm config set //registry.npmjs.org/:_authToken 32bb5578-6354-4c61-8d7a-d49a4869bc21
12
+ - npm config set //registry.npmjs.org/:_authToken $NPM_AUTH_TOKEN
13
13
  - yarn
14
14
  - yarn workspace gatsby-core-theme build-storybook -o ./storybook/public
15
15
  artifacts: