@iris.interactive/handcook 2.5.1 → 2.6.2

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.
@@ -0,0 +1,39 @@
1
+ /*
2
+ * IRIS Interactive
3
+ *
4
+ * NOTICE OF LICENSE
5
+ *
6
+ * This source file is no subject to a specific license
7
+ * but it belongs to the company IRIS Interactive.
8
+ * You can contact IRIS Interactive at the following
9
+ * address: contact@iris-interactive.fr
10
+ *
11
+ * @author Fabien SERRA
12
+ * @date 25/02/2022 12:04
13
+ * @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
14
+ */
15
+
16
+ import hc_tooltip from '@package_script/components/tooltip/tooltip.component';
17
+ import hc_smooth_scroll from "@package_script/components/smooth-scroll/smooth-scroll.component";
18
+ import hc_modal from "@package_script/components/modal/modal.component";
19
+ import hc_lightbox from "@package_script/components/lightbox/lightbox.component";
20
+ import hc_dropdown from "@package_script/components/dropdown/dropdown.component";
21
+ import hc_collapse from "@package_script/components/collapse/collapse.component";
22
+ import hc_lazyload from "@package_script/components/lazyload/lazyload.component";
23
+ import hc_tab from "@package_script/components/tab/tab.component";
24
+ import hc_toggle from "@package_script/components/toggle/toggle.component";
25
+ import hc_slider from "@package_script/components/slider/slider.component";
26
+
27
+ const Handcook = {
28
+ hc_tooltip,
29
+ hc_smooth_scroll,
30
+ hc_modal,
31
+ hc_lightbox,
32
+ hc_dropdown,
33
+ hc_collapse,
34
+ hc_lazyload,
35
+ hc_tab,
36
+ hc_toggle,
37
+ hc_slider,
38
+ }
39
+ export default Handcook;
@@ -8,7 +8,7 @@
8
8
  * You can contact IRIS Interactive at the following
9
9
  * address: contact@iris-interactive.fr
10
10
  *
11
- * @author Fabien SERRA
11
+ * @author Lucas ROCHE
12
12
  * @date 27/01/2022 13:39
13
13
  * @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
14
14
  */
@@ -1,50 +0,0 @@
1
- /*!
2
- * IRIS Interactive
3
- *
4
- * NOTICE OF LICENSE
5
- *
6
- * This source file is no subject to a specific license
7
- * but it belongs to the company IRIS Interactive.
8
- * You can contact IRIS Interactive at the following
9
- * address: contact@iris-interactive.fr
10
- *
11
- * @author Lucas ROCHE
12
- * @date 22/02/2022 08:25
13
- * @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
14
- */
15
- .fade {
16
- transition: opacity 0.15s linear;
17
- }
18
- @media (prefers-reduced-motion: reduce) {
19
- .fade {
20
- transition: none;
21
- }
22
- }
23
- .fade:not(.show) {
24
- opacity: 0;
25
- }
26
-
27
- .collapse:not(.show) {
28
- display: none;
29
- }
30
-
31
- .collapsing {
32
- height: 0;
33
- overflow: hidden;
34
- transition: height 0.35s ease;
35
- }
36
- @media (prefers-reduced-motion: reduce) {
37
- .collapsing {
38
- transition: none;
39
- }
40
- }
41
- .collapsing.collapse-horizontal {
42
- width: 0;
43
- height: auto;
44
- transition: width 0.35s ease;
45
- }
46
- @media (prefers-reduced-motion: reduce) {
47
- .collapsing.collapse-horizontal {
48
- transition: none;
49
- }
50
- }
@@ -1,18 +0,0 @@
1
- /*
2
- * IRIS Interactive
3
- *
4
- * NOTICE OF LICENSE
5
- *
6
- * This source file is no subject to a specific license
7
- * but it belongs to the company IRIS Interactive.
8
- * You can contact IRIS Interactive at the following
9
- * address: contact@iris-interactive.fr
10
- *
11
- * @author Lucas ROCHE
12
- * @date 01/02/2022 11:21
13
- * @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
14
- */
15
- .hc-modal {
16
- display: none;
17
- max-width: 500px;
18
- }
@@ -1,20 +0,0 @@
1
- /*!
2
- * IRIS Interactive
3
- *
4
- * NOTICE OF LICENSE
5
- *
6
- * This source file is no subject to a specific license
7
- * but it belongs to the company IRIS Interactive.
8
- * You can contact IRIS Interactive at the following
9
- * address: contact@iris-interactive.fr
10
- *
11
- * @author Lucas ROCHE
12
- * @date 22/02/2022 14:57
13
- * @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
14
- */
15
- [data-hc-tab-content] > [data-hc-tab-pane] {
16
- display: none;
17
- }
18
- [data-hc-tab-content] > .active {
19
- display: block;
20
- }