@iris.interactive/handcook 2.9.31 → 2.9.33
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/README.md +1 -1
- package/package.json +1 -1
- package/public/index.html +11 -11
- package/public/scripts/components/collapse/collapse.component.min.js +2095 -1
- package/public/scripts/components/dropdown/dropdown.component.min.js +6309 -1
- package/public/scripts/components/lazyload/lazyload.component.min.js +175 -1
- package/public/scripts/components/lightbox/lightbox.component.min.js +649 -1
- package/public/scripts/components/modal/modal.component.min.js +743 -1
- package/public/scripts/components/scroll-reveal/scroll-reveal.component.js +66 -18
- package/public/scripts/components/scroll-reveal/scroll-reveal.component.scss +3 -172
- package/public/scripts/components/scrollspy/scrollspy.component.min.js +327 -1
- package/public/scripts/components/slider/slider.component.min.js +13597 -1
- package/public/scripts/components/smooth-scroll/smooth-scroll.component.min.js +273 -1
- package/public/scripts/components/tab/tab.component.min.js +1884 -1
- package/public/scripts/components/toggle/toggle.component.min.js +202 -1
- package/public/scripts/components/tooltip/tooltip.component.min.js +6335 -1
- package/public/scripts/enumerators/element.enum.js +2 -1
- package/public/scripts/handcook.js +45 -1
- package/public/styles/scss/style.css +161 -2
- package/public/styles/style.css +209 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Welcome to HandCook 👨🍳
|
|
2
|
-

|
|
3
3
|

|
|
4
4
|
[](#)
|
|
5
5
|
[](https://twitter.com/captain\_iris)
|
package/package.json
CHANGED
package/public/index.html
CHANGED
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
</ul>
|
|
151
151
|
</nav>
|
|
152
152
|
</aside>
|
|
153
|
-
<section data-hc-scrollspy="#scrollspy-nav"
|
|
153
|
+
<section data-hc-scrollspy="#scrollspy-nav">
|
|
154
154
|
<article id="scroll-smooth">
|
|
155
155
|
<div class="navbar"
|
|
156
156
|
style="position: sticky; top: 0; height: 50px; display: flex; align-items: center; gap: 40px; background-color: #fff; padding: 0 20px;" id="scroll-smooth-nav">
|
|
@@ -417,16 +417,16 @@
|
|
|
417
417
|
</div>
|
|
418
418
|
</div>
|
|
419
419
|
</article>
|
|
420
|
-
<article data-hc-
|
|
421
|
-
<div style="
|
|
422
|
-
<div style="
|
|
423
|
-
<div style="
|
|
424
|
-
<div style="
|
|
425
|
-
<div style="
|
|
426
|
-
<div style="
|
|
427
|
-
<div style="
|
|
428
|
-
<div style="
|
|
429
|
-
<div style="
|
|
420
|
+
<article data-hc-scroll-reveal-parent class="component__wrapper" style="display: grid; grid-template-columns: repeat(3, 1fr); grid-gap:30px;">
|
|
421
|
+
<div style="height: 300px; background: #000"></div>
|
|
422
|
+
<div style="height: 300px; background: #000"></div>
|
|
423
|
+
<div style="height: 300px; background: #000"></div>
|
|
424
|
+
<div style="height: 300px; background: #000"></div>
|
|
425
|
+
<div style="height: 300px; background: #000"></div>
|
|
426
|
+
<div style="height: 300px; background: #000"></div>
|
|
427
|
+
<div style="height: 300px; background: #000"></div>
|
|
428
|
+
<div style="height: 300px; background: #000"></div>
|
|
429
|
+
<div style="height: 300px; background: #000"></div>
|
|
430
430
|
</article>
|
|
431
431
|
</section>
|
|
432
432
|
</main>
|