@iris.interactive/handcook 2.10.25 → 2.10.27

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/.gitlab-ci.yml CHANGED
@@ -42,7 +42,7 @@ Build:
42
42
  fi
43
43
  fi
44
44
  - |
45
- if $( npm view @iris.interactive/handcook time --json | jq -e ".[\"${VERSION}\"]" ); then
45
+ if npm view @iris.interactive/handcook time --json | jq -e ".[\"${VERSION}\"]" >/dev/null; then
46
46
  echo "Version ${VERSION} already published."
47
47
  if [ $TAG == "latest" ]; then
48
48
  if [ "$(npm view @iris.interactive/handcook dist-tags"[latest]")" != "$VERSION" ]; then
@@ -93,5 +93,5 @@ Release:
93
93
  # Add a link to the docker image in the release assets.
94
94
  links:
95
95
  - name: "@iris.interactive/handcook@${CI_COMMIT_REF_NAME}"
96
- url: "https://www.npmjs.com/package/@iris.interactive/etourismeapi?activeTab=versions"
96
+ url: "https://www.npmjs.com/package/@iris.interactive/handcook?activeTab=versions"
97
97
  link_type: other
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # Welcome to HandCook 👨‍🍳
2
- ![Version](https://img.shields.io/badge/version-2.10.23-blue.svg?cacheSeconds=2592000)
2
+ ![Version](https://img.shields.io/badge/version-2.10.27-blue.svg?cacheSeconds=2592000)
3
3
  ![Prerequisite](https://img.shields.io/badge/node-%3E%3D%2012.14.0-blue.svg)
4
4
  [![License: UNLICENSED](https://img.shields.io/badge/License-UNLICENSED-yellow.svg)](#)
5
5
  [![Twitter: captain\_iris](https://img.shields.io/twitter/follow/captain\_iris.svg?style=social)](https://twitter.com/captain\_iris)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iris.interactive/handcook",
3
- "version": "2.10.25",
3
+ "version": "2.10.27",
4
4
  "description": "The web cooking by IRIS Interactive",
5
5
  "main": "./public/scripts/index.js",
6
6
  "scripts": {
@@ -75,7 +75,7 @@ export class HcScrollReveal {
75
75
  interval: interval,
76
76
  origin: origin,
77
77
  afterReveal: function (element) {
78
- element.classList.add('hc-scroll-reveal-is-visible');
78
+ element.setAttribute('hc-scroll-reveal-is-visible', '');
79
79
  },
80
80
  });
81
81
  });
@@ -121,7 +121,7 @@ export class HcScrollReveal {
121
121
  interval: interval,
122
122
  origin: origin,
123
123
  afterReveal: function (element) {
124
- element.classList.add('hc-scroll-reveal-is-visible');
124
+ element.setAttribute('hc-scroll-reveal-is-visible', '');
125
125
  },
126
126
  });
127
127
  });
@@ -238,6 +238,19 @@ $h6-color: var(--iris--h6--color);
238
238
  $h6-text-align: var(--iris--h6--text-align);
239
239
  $h6-text-transform: var(--iris--h6--text-transform);
240
240
 
241
+ //Over-title
242
+ $over-title-font-family: var(--iris--over-title--font-family, $font-family);
243
+ $over-title-font-weight: var(--iris--over-title--font-weight, 400);
244
+ $over-title-font-size: var(--iris--over-title--font-size, $font-size);
245
+ $over-title-font-size--rem: var(--iris--over-title--font-size--rem, $font-size--rem);
246
+ $over-title-font-size-medium: var(--iris--over-title--font-size--medium, $font-size);
247
+ $over-title-font-size-medium--rem: var(--iris--over-title--font-size--medium--rem, $font-size--rem);
248
+ $over-title-font-size-small: var(--iris--over-title--font-size--small, $font-size);
249
+ $over-title-font-size-small--rem: var(--iris--over-title--font-size--small--rem, $font-size--rem);
250
+ $over-title-color: var(--iris--over-title--color, $color);
251
+ $over-title-text-align: var(--iris--over-title--text-align, left);
252
+ $over-title-text-transform: var(--iris--over-title--text-transform, none);
253
+
241
254
  /* Appearance
242
255
  / ================================================== */
243
256
  $appearance-color: var(--iris--appearance--color, var(--iris--global--color));