@iris.interactive/handcook 2.3.3 → 2.3.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iris.interactive/handcook",
3
- "version": "2.3.3",
3
+ "version": "2.3.8",
4
4
  "description": "The web cooking by IRIS Interactive",
5
5
  "main": "./public/scripts/index.js",
6
6
  "scripts": {
@@ -1 +1,41 @@
1
- const easeInCubic=function(e){return e*e*e},scrollToElem=(e,t,o,n,r)=>{const l=t-e;let c=l/o;c=Math.min(c,1);const a=(i=c)*i*i;var i;window.scroll(0,r+n*a),l<o&&requestAnimationFrame((t=>{const l=t||(new Date).getTime();scrollToElem(e,l,o,n,r)}))},SmoothScroll=(e,t=1e3)=>{document.querySelectorAll(e).forEach(((e,o)=>{e.addEventListener("click",(o=>{o.preventDefault();const n=""!=e.getAttribute("href")?document.querySelector(e.getAttribute("href")):document.querySelector(e.dataset.href),r=void 0!==e.dataset.shift?e.dataset.shift:0;requestAnimationFrame((e=>{const o=e||(new Date).getTime(),l=o,c=window.pageYOffset,a=n.getBoundingClientRect().top-r;scrollToElem(l,o,t,a,c)}))}))}))};export default SmoothScroll;
1
+ const easeInCubic = function (t) { return t*t*t }
2
+
3
+ const scrollToElem = (startTime, currentTime, duration, scrollEndElemTop, startScrollOffset) => {
4
+ const runtime = currentTime - startTime;
5
+ let progress = runtime / duration;
6
+
7
+ progress = Math.min(progress, 1);
8
+
9
+ const ease = easeInCubic(progress);
10
+
11
+ window.scroll(0, startScrollOffset + (scrollEndElemTop * ease));
12
+ if(runtime < duration){
13
+ requestAnimationFrame((timestamp) => {
14
+ const currentTime = timestamp || new Date().getTime();
15
+ scrollToElem(startTime, currentTime, duration, scrollEndElemTop, startScrollOffset);
16
+ })
17
+ }
18
+ }
19
+
20
+ const SmoothScroll = (triggerAttribute, durationAnimation = 1000 ) => {
21
+ const triggerElement = document.querySelectorAll( triggerAttribute );
22
+ triggerElement.forEach( ( element, key ) => {
23
+ element.addEventListener( 'click', ( event ) => {
24
+ event.preventDefault();
25
+ const target = ( element.getAttribute( 'href' ) != '' ) ? document.querySelector( element.getAttribute( 'href' ) ) : document.querySelector( element.dataset.href );
26
+ const shift = ( element.dataset.shift !== undefined ) ? element.dataset.shift : 0;
27
+
28
+ const anim = requestAnimationFrame((timestamp) => {
29
+ const stamp = timestamp || new Date().getTime();
30
+ const start = stamp;
31
+
32
+ const startScrollOffset = window.pageYOffset;
33
+ const scrollEndElemTop = target.getBoundingClientRect().top - shift;
34
+
35
+ scrollToElem(start, stamp, durationAnimation, scrollEndElemTop, startScrollOffset);
36
+ })
37
+ } );
38
+ } );
39
+ }
40
+
41
+ export default SmoothScroll;
@@ -1 +1,250 @@
1
- (()=>{"use strict";var e,t={25:()=>{var e=function e(t,r,n,o,i){var a=r-t,c=a/n;c=Math.min(c,1);var u,v=(u=c)*u*u;window.scroll(0,i+o*v),a<n&&requestAnimationFrame((function(r){var a=r||(new Date).getTime();e(t,a,n,o,i)}))};const t=function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1e3,n=document.querySelectorAll(t);n.forEach((function(t,n){t.addEventListener("click",(function(n){n.preventDefault();var o=""!=t.getAttribute("href")?document.querySelector(t.getAttribute("href")):document.querySelector(t.dataset.href),i=void 0!==t.dataset.shift?t.dataset.shift:0;requestAnimationFrame((function(t){var n=t||(new Date).getTime(),a=n,c=window.pageYOffset,u=o.getBoundingClientRect().top-i;e(a,n,r,u,c)}))}))}))};exports.SmoothScroll=t},696:()=>{}},r={};function n(e){var o=r[e];if(void 0!==o)return o.exports;var i=r[e]={exports:{}};return t[e](i,i.exports,n),i.exports}n.m=t,e=[],n.O=(t,r,o,i)=>{if(!r){var a=1/0;for(f=0;f<e.length;f++){for(var[r,o,i]=e[f],c=!0,u=0;u<r.length;u++)(!1&i||a>=i)&&Object.keys(n.O).every((e=>n.O[e](r[u])))?r.splice(u--,1):(c=!1,i<a&&(a=i));if(c){e.splice(f--,1);var v=o();void 0!==v&&(t=v)}}return t}i=i||0;for(var f=e.length;f>0&&e[f-1][2]>i;f--)e[f]=e[f-1];e[f]=[r,o,i]},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{var e={505:0,449:0};n.O.j=t=>0===e[t];var t=(t,r)=>{var o,i,[a,c,u]=r,v=0;if(a.some((t=>0!==e[t]))){for(o in c)n.o(c,o)&&(n.m[o]=c[o]);if(u)var f=u(n)}for(t&&t(r);v<a.length;v++)i=a[v],n.o(e,i)&&e[i]&&e[i][0](),e[a[v]]=0;return n.O(f)},r=self.webpackChunk_iris_interactive_handcook=self.webpackChunk_iris_interactive_handcook||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})(),n.O(void 0,[449],(()=>n(25)));var o=n.O(void 0,[449],(()=>n(696)));o=n.O(o)})();
1
+ /******/ (() => { // webpackBootstrap
2
+ /******/ "use strict";
3
+ /******/ var __webpack_modules__ = ({
4
+
5
+ /***/ "./resources/assets/scripts/SmoothScroll.js":
6
+ /*!**************************************************!*\
7
+ !*** ./resources/assets/scripts/SmoothScroll.js ***!
8
+ \**************************************************/
9
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
10
+
11
+ __webpack_require__.r(__webpack_exports__);
12
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
13
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
14
+ /* harmony export */ });
15
+ var easeInCubic = function easeInCubic(t) {
16
+ return t * t * t;
17
+ };
18
+
19
+ var scrollToElem = function scrollToElem(startTime, currentTime, duration, scrollEndElemTop, startScrollOffset) {
20
+ var runtime = currentTime - startTime;
21
+ var progress = runtime / duration;
22
+ progress = Math.min(progress, 1);
23
+ var ease = easeInCubic(progress);
24
+ window.scroll(0, startScrollOffset + scrollEndElemTop * ease);
25
+
26
+ if (runtime < duration) {
27
+ requestAnimationFrame(function (timestamp) {
28
+ var currentTime = timestamp || new Date().getTime();
29
+ scrollToElem(startTime, currentTime, duration, scrollEndElemTop, startScrollOffset);
30
+ });
31
+ }
32
+ };
33
+
34
+ var SmoothScroll = function SmoothScroll(triggerAttribute) {
35
+ var durationAnimation = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1000;
36
+ var triggerElement = document.querySelectorAll(triggerAttribute);
37
+ triggerElement.forEach(function (element, key) {
38
+ element.addEventListener('click', function (event) {
39
+ event.preventDefault();
40
+ var target = element.getAttribute('href') != '' ? document.querySelector(element.getAttribute('href')) : document.querySelector(element.dataset.href);
41
+ var shift = element.dataset.shift !== undefined ? element.dataset.shift : 0;
42
+ var anim = requestAnimationFrame(function (timestamp) {
43
+ var stamp = timestamp || new Date().getTime();
44
+ var start = stamp;
45
+ var startScrollOffset = window.pageYOffset;
46
+ var scrollEndElemTop = target.getBoundingClientRect().top - shift;
47
+ scrollToElem(start, stamp, durationAnimation, scrollEndElemTop, startScrollOffset);
48
+ });
49
+ });
50
+ });
51
+ };
52
+
53
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (SmoothScroll);
54
+
55
+ /***/ }),
56
+
57
+ /***/ "./resources/index.js":
58
+ /*!****************************!*\
59
+ !*** ./resources/index.js ***!
60
+ \****************************/
61
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
62
+
63
+ __webpack_require__.r(__webpack_exports__);
64
+ /* harmony import */ var _package_script_SmoothScroll__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @package_script/SmoothScroll */ "./resources/assets/scripts/SmoothScroll.js");
65
+ /*
66
+ * IRIS Interactive
67
+ *
68
+ * NOTICE OF LICENSE
69
+ *
70
+ * This source file is no subject to a specific license
71
+ * but it belongs to the company IRIS Interactive.
72
+ * You can contact IRIS Interactive at the following
73
+ * address: contact@iris-interactive.fr
74
+ *
75
+ * @author Lucas ROCHE
76
+ * @date 27/01/2022 14:32
77
+ * @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
78
+ */
79
+
80
+ exports.SmoothScroll = _package_script_SmoothScroll__WEBPACK_IMPORTED_MODULE_0__["default"];
81
+
82
+ /***/ }),
83
+
84
+ /***/ "./resources/style.scss":
85
+ /*!******************************!*\
86
+ !*** ./resources/style.scss ***!
87
+ \******************************/
88
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
89
+
90
+ __webpack_require__.r(__webpack_exports__);
91
+ // extracted by mini-css-extract-plugin
92
+
93
+
94
+ /***/ })
95
+
96
+ /******/ });
97
+ /************************************************************************/
98
+ /******/ // The module cache
99
+ /******/ var __webpack_module_cache__ = {};
100
+ /******/
101
+ /******/ // The require function
102
+ /******/ function __webpack_require__(moduleId) {
103
+ /******/ // Check if module is in cache
104
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
105
+ /******/ if (cachedModule !== undefined) {
106
+ /******/ return cachedModule.exports;
107
+ /******/ }
108
+ /******/ // Create a new module (and put it into the cache)
109
+ /******/ var module = __webpack_module_cache__[moduleId] = {
110
+ /******/ // no module.id needed
111
+ /******/ // no module.loaded needed
112
+ /******/ exports: {}
113
+ /******/ };
114
+ /******/
115
+ /******/ // Execute the module function
116
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
117
+ /******/
118
+ /******/ // Return the exports of the module
119
+ /******/ return module.exports;
120
+ /******/ }
121
+ /******/
122
+ /******/ // expose the modules object (__webpack_modules__)
123
+ /******/ __webpack_require__.m = __webpack_modules__;
124
+ /******/
125
+ /************************************************************************/
126
+ /******/ /* webpack/runtime/chunk loaded */
127
+ /******/ (() => {
128
+ /******/ var deferred = [];
129
+ /******/ __webpack_require__.O = (result, chunkIds, fn, priority) => {
130
+ /******/ if(chunkIds) {
131
+ /******/ priority = priority || 0;
132
+ /******/ for(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];
133
+ /******/ deferred[i] = [chunkIds, fn, priority];
134
+ /******/ return;
135
+ /******/ }
136
+ /******/ var notFulfilled = Infinity;
137
+ /******/ for (var i = 0; i < deferred.length; i++) {
138
+ /******/ var [chunkIds, fn, priority] = deferred[i];
139
+ /******/ var fulfilled = true;
140
+ /******/ for (var j = 0; j < chunkIds.length; j++) {
141
+ /******/ if ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {
142
+ /******/ chunkIds.splice(j--, 1);
143
+ /******/ } else {
144
+ /******/ fulfilled = false;
145
+ /******/ if(priority < notFulfilled) notFulfilled = priority;
146
+ /******/ }
147
+ /******/ }
148
+ /******/ if(fulfilled) {
149
+ /******/ deferred.splice(i--, 1)
150
+ /******/ var r = fn();
151
+ /******/ if (r !== undefined) result = r;
152
+ /******/ }
153
+ /******/ }
154
+ /******/ return result;
155
+ /******/ };
156
+ /******/ })();
157
+ /******/
158
+ /******/ /* webpack/runtime/define property getters */
159
+ /******/ (() => {
160
+ /******/ // define getter functions for harmony exports
161
+ /******/ __webpack_require__.d = (exports, definition) => {
162
+ /******/ for(var key in definition) {
163
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
164
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
165
+ /******/ }
166
+ /******/ }
167
+ /******/ };
168
+ /******/ })();
169
+ /******/
170
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
171
+ /******/ (() => {
172
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
173
+ /******/ })();
174
+ /******/
175
+ /******/ /* webpack/runtime/make namespace object */
176
+ /******/ (() => {
177
+ /******/ // define __esModule on exports
178
+ /******/ __webpack_require__.r = (exports) => {
179
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
180
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
181
+ /******/ }
182
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
183
+ /******/ };
184
+ /******/ })();
185
+ /******/
186
+ /******/ /* webpack/runtime/jsonp chunk loading */
187
+ /******/ (() => {
188
+ /******/ // no baseURI
189
+ /******/
190
+ /******/ // object to store loaded and loading chunks
191
+ /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
192
+ /******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
193
+ /******/ var installedChunks = {
194
+ /******/ "/scripts/index": 0,
195
+ /******/ "styles/style": 0
196
+ /******/ };
197
+ /******/
198
+ /******/ // no chunk on demand loading
199
+ /******/
200
+ /******/ // no prefetching
201
+ /******/
202
+ /******/ // no preloaded
203
+ /******/
204
+ /******/ // no HMR
205
+ /******/
206
+ /******/ // no HMR manifest
207
+ /******/
208
+ /******/ __webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);
209
+ /******/
210
+ /******/ // install a JSONP callback for chunk loading
211
+ /******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => {
212
+ /******/ var [chunkIds, moreModules, runtime] = data;
213
+ /******/ // add "moreModules" to the modules object,
214
+ /******/ // then flag all "chunkIds" as loaded and fire callback
215
+ /******/ var moduleId, chunkId, i = 0;
216
+ /******/ if(chunkIds.some((id) => (installedChunks[id] !== 0))) {
217
+ /******/ for(moduleId in moreModules) {
218
+ /******/ if(__webpack_require__.o(moreModules, moduleId)) {
219
+ /******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
220
+ /******/ }
221
+ /******/ }
222
+ /******/ if(runtime) var result = runtime(__webpack_require__);
223
+ /******/ }
224
+ /******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
225
+ /******/ for(;i < chunkIds.length; i++) {
226
+ /******/ chunkId = chunkIds[i];
227
+ /******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
228
+ /******/ installedChunks[chunkId][0]();
229
+ /******/ }
230
+ /******/ installedChunks[chunkIds[i]] = 0;
231
+ /******/ }
232
+ /******/ return __webpack_require__.O(result);
233
+ /******/ }
234
+ /******/
235
+ /******/ var chunkLoadingGlobal = self["webpackChunk_iris_interactive_handcook"] = self["webpackChunk_iris_interactive_handcook"] || [];
236
+ /******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
237
+ /******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
238
+ /******/ })();
239
+ /******/
240
+ /************************************************************************/
241
+ /******/
242
+ /******/ // startup
243
+ /******/ // Load entry module and return exports
244
+ /******/ // This entry module depends on other loaded chunks and execution need to be delayed
245
+ /******/ __webpack_require__.O(undefined, ["styles/style"], () => (__webpack_require__("./resources/index.js")))
246
+ /******/ var __webpack_exports__ = __webpack_require__.O(undefined, ["styles/style"], () => (__webpack_require__("./resources/style.scss")))
247
+ /******/ __webpack_exports__ = __webpack_require__.O(__webpack_exports__);
248
+ /******/
249
+ /******/ })()
250
+ ;
@@ -97,6 +97,7 @@
97
97
 
98
98
  /* Font
99
99
  /* ============================================= */
100
- .fi--color {
100
+ .fi--color:before,
101
+ .fi-color:after {
101
102
  color: var(--iris--icon--color);
102
- }
103
+ }
@@ -12,6 +12,66 @@
12
12
  * @date 27/01/2022 14:32
13
13
  * @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
14
14
  */
15
+ /*
16
+ * Created by IRIS Interactive
17
+ * User : IRIS Interactive
18
+ */
19
+ /* Layout
20
+ / ================================================== */
21
+ /* Gutter
22
+ / ================================================== */
23
+ /* Margin
24
+ / ================================================== */
25
+ /* Margin
26
+ / ================================================== */
27
+ /* Breakpoint
28
+ / ================================================== */
29
+ /* Global
30
+ / ================================================== */
31
+ /* Notifications
32
+ / ================================================== */
33
+ /* Difficulty
34
+ / ================================================== */
35
+ /*
36
+ * Created by IRIS Interactive
37
+ * User : IRIS Interactive
38
+ */
39
+ /* Main gutter
40
+ / ================================================== */
41
+ /* Breakpoints
42
+ /* ============================================= */
43
+ /* display flex
44
+ /* ============================================= */
45
+ /* Hover - TODO
46
+ /* ============================================= */
47
+ /* Touch
48
+ /* ============================================= */
49
+ /* Clear
50
+ /* ============================================= */
51
+ /*
52
+ * Created by IRIS Interactive
53
+ * User : IRIS Interactive
54
+ */
55
+ /* Transition
56
+ /* ============================================= */
57
+ /* Hover
58
+ /* ============================================= */
59
+ /* Ellipsis
60
+ /* ============================================= */
61
+ /* Adaptive height block
62
+ /* ============================================= */
63
+ /* Line clamp
64
+ /* ============================================= */
65
+ /* Object fit
66
+ /* ============================================= */
67
+ /* Linear Gradient
68
+ /* ============================================= */
69
+ /* fit-content
70
+ /* ============================================= */
71
+ /* stretched-link
72
+ /* ============================================= */
73
+ /* sr-only
74
+ /* ============================================= */
15
75
  /*!
16
76
  * IRIS Interactive
17
77
  *
@@ -25,4 +85,109 @@
25
85
  * @author Lucas ROCHE
26
86
  * @date 28/01/2022 07:41
27
87
  * @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
28
- */.stretched-link:before{background-color:transparent;bottom:0;content:"";left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1}.list-flex{display:flex;flex-wrap:wrap;margin-bottom:0}.list-flex>*{list-style-type:none;margin:0 10px 10px 0}.list-flex>:last-child{margin-right:0}@-webkit-keyframes loader{to{transform:rotate(1turn)}}@keyframes loader{to{transform:rotate(1turn)}}.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.text-icon{align-items:center;display:inline-flex}.text-icon:before{margin-right:5px}.text-icon:after{margin-left:5px}.hover-item img{transition:.2s ease;will-change:transform}.hover-item:hover img{transform:scale(1.02)}.is-opened{color:#009e55}.soon-closed{color:#ff890e}.is-closed{color:#f33}.fi--color{color:var(--iris--icon--color)}
88
+ */
89
+ /* Font icon
90
+ /* ============================================= */
91
+ /* Font size
92
+ /* ============================================= */
93
+ /*
94
+ * Created by IRIS Interactive
95
+ * User : IRIS Interactive
96
+ */
97
+ /* Utils classes
98
+ /* ============================================= */
99
+ .stretched-link:before {
100
+ position: absolute;
101
+ top: 0;
102
+ right: 0;
103
+ bottom: 0;
104
+ left: 0;
105
+ z-index: 1;
106
+ pointer-events: auto;
107
+ content: "";
108
+ background-color: transparent;
109
+ }
110
+
111
+ /* ============================================= */
112
+ .list-flex {
113
+ display: flex;
114
+ flex-wrap: wrap;
115
+ margin-bottom: 0;
116
+ }
117
+ .list-flex > * {
118
+ list-style-type: none;
119
+ margin: 0 10px 10px 0;
120
+ }
121
+ .list-flex > *:last-child {
122
+ margin-right: 0;
123
+ }
124
+
125
+ /* Animations
126
+ /* ============================================= */
127
+ @-webkit-keyframes loader {
128
+ 100% {
129
+ transform: rotate(360deg);
130
+ }
131
+ }
132
+ @keyframes loader {
133
+ 100% {
134
+ transform: rotate(360deg);
135
+ }
136
+ }
137
+ /* Sr-only
138
+ /* ============================================= */
139
+ .sr-only {
140
+ clip: rect(0, 0, 0, 0);
141
+ border-width: 0;
142
+ height: 1px;
143
+ margin: -1px;
144
+ overflow: hidden;
145
+ padding: 0;
146
+ position: absolute;
147
+ white-space: nowrap;
148
+ width: 1px;
149
+ }
150
+
151
+ /* Text with icon before
152
+ /* ============================================= */
153
+ .text-icon {
154
+ display: inline-flex;
155
+ align-items: center;
156
+ }
157
+ .text-icon:before {
158
+ margin-right: 5px;
159
+ }
160
+ .text-icon:after {
161
+ margin-left: 5px;
162
+ }
163
+
164
+ /* Block with img animated on hover
165
+ /* ============================================= */
166
+ .hover-item img {
167
+ transition: 0.2s ease;
168
+ will-change: transform;
169
+ }
170
+ .hover-item:hover img {
171
+ transform: scale(1.02);
172
+ }
173
+
174
+ /* Opening
175
+ /* ============================================= */
176
+ .is-opened {
177
+ color: #009e55;
178
+ }
179
+
180
+ .soon-closed {
181
+ color: #ff890e;
182
+ }
183
+
184
+ .is-closed {
185
+ color: #f33;
186
+ }
187
+
188
+ /* Font
189
+ /* ============================================= */
190
+ .fi--color:before,
191
+ .fi-color:after {
192
+ color: var(--iris--icon--color);
193
+ }