@total_onion/onion-library 3.0.32 → 3.0.34
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/components/block-single-responsive-image-v3/single-responsive-image-v3.scss +6 -4
- package/components/block-standard-content-v3/standard-content-v3.scss +7 -5
- package/components/block-sub-group-container-v3/sub-group-container-v3.scss +19 -17
- package/components/block-video-content-v3/video-content-v3.scss +98 -94
- package/package.json +2 -2
- package/public/dynamicBlockScss-v3.scss +0 -36
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
@use '../component-responsive-image-v3/responsive-image-v3';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
@layer base-styles {
|
|
4
|
+
.single-responsive-image-v3 {
|
|
5
|
+
@include responsive-image-v3.responsiveImage();
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: stretch;
|
|
8
|
+
}
|
|
7
9
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
@use '../fields-core-mixins-v3/core-mixins-v3';
|
|
2
2
|
@use '../component-content-box-v3/content-box-v3';
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
@layer base-styles {
|
|
5
|
+
.standard-content-v3 {
|
|
6
|
+
display: grid;
|
|
7
|
+
grid-template: 'main' / 1fr;
|
|
8
|
+
@include core-mixins-v3.responsiveShowHide(grid);
|
|
9
|
+
@include content-box-v3.contentBoxV3();
|
|
10
|
+
}
|
|
9
11
|
}
|
|
@@ -2,24 +2,26 @@
|
|
|
2
2
|
@use '../component-grid-layout-container-v3/grid-layout-container-v3';
|
|
3
3
|
@use '../component-flex-layout-container-v3/flex-layout-container-v3';
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
5
|
+
@layer base-styles {
|
|
6
|
+
.sub-group-container-v3 {
|
|
7
|
+
display: grid;
|
|
8
|
+
grid-template: 'main' / 1fr;
|
|
9
|
+
place-items: center;
|
|
10
|
+
&__grid-container {
|
|
11
|
+
grid-area: main;
|
|
12
|
+
place-self: stretch;
|
|
13
|
+
&.flex-layout-container {
|
|
14
|
+
@include flex-layout-container-v3.flexLayoutContainer();
|
|
15
|
+
}
|
|
16
|
+
&.grid-layout-container {
|
|
17
|
+
@include grid-layout-container-v3.gridLayoutContainer();
|
|
18
|
+
}
|
|
14
19
|
}
|
|
15
|
-
|
|
16
|
-
|
|
20
|
+
&__block-container {
|
|
21
|
+
z-index: 5;
|
|
22
|
+
pointer-events: none;
|
|
23
|
+
position: relative;
|
|
24
|
+
@include grid-layout-element-v3.gridLayoutElement();
|
|
17
25
|
}
|
|
18
26
|
}
|
|
19
|
-
&__block-container {
|
|
20
|
-
z-index: 5;
|
|
21
|
-
pointer-events: none;
|
|
22
|
-
position: relative;
|
|
23
|
-
@include grid-layout-element-v3.gridLayoutElement();
|
|
24
|
-
}
|
|
25
27
|
}
|
|
@@ -1,119 +1,123 @@
|
|
|
1
1
|
@use '../fields-core-mixins-v3/core-mixins-v3';
|
|
2
2
|
@use '../fields-core-functions-v3/core-functions-v3';
|
|
3
3
|
@use '../../breakpoints';
|
|
4
|
-
.video-content-v3 {
|
|
5
|
-
display: grid;
|
|
6
|
-
grid-template: 'main' / 1fr;
|
|
7
|
-
// @include vc-styles.basic();
|
|
8
|
-
&__video-container {
|
|
9
|
-
display: grid;
|
|
10
|
-
grid-template: 'video' / 1fr;
|
|
11
|
-
grid-area: main;
|
|
12
|
-
opacity: 0;
|
|
13
|
-
pointer-events: none;
|
|
14
|
-
height: 100%;
|
|
15
|
-
width: 100%;
|
|
16
|
-
background-color: black;
|
|
17
|
-
transition: opacity 0.5s, background-color 1s;
|
|
18
|
-
z-index: -1;
|
|
19
4
|
|
|
20
|
-
|
|
21
|
-
|
|
5
|
+
@layer base-styles {
|
|
6
|
+
.video-content-v3 {
|
|
7
|
+
display: grid;
|
|
8
|
+
grid-template: 'main' / 1fr;
|
|
9
|
+
// @include vc-styles.basic();
|
|
10
|
+
&__video-container {
|
|
11
|
+
display: grid;
|
|
12
|
+
grid-template: 'video' / 1fr;
|
|
22
13
|
grid-area: main;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
14
|
+
opacity: 0;
|
|
15
|
+
pointer-events: none;
|
|
16
|
+
height: 100%;
|
|
17
|
+
width: 100%;
|
|
18
|
+
background-color: black;
|
|
19
|
+
transition: opacity 0.5s, background-color 1s;
|
|
20
|
+
z-index: -1;
|
|
30
21
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
position: absolute;
|
|
35
|
-
inset: 0;
|
|
36
|
-
width: 100%;
|
|
37
|
-
height: 100%;
|
|
22
|
+
@include core-mixins-v3.device(breakpoints.$tabPortrait) {
|
|
23
|
+
object-fit: cover;
|
|
24
|
+
grid-area: main;
|
|
38
25
|
}
|
|
39
|
-
}
|
|
40
26
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
object-position: center;
|
|
27
|
+
&.video-playing {
|
|
28
|
+
pointer-events: all;
|
|
29
|
+
opacity: 1;
|
|
30
|
+
z-index: 10;
|
|
46
31
|
}
|
|
47
|
-
}
|
|
48
32
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
33
|
+
&.lock-video-aspect-to-image {
|
|
34
|
+
iframe,
|
|
35
|
+
video {
|
|
36
|
+
position: absolute;
|
|
37
|
+
inset: 0;
|
|
38
|
+
width: 100%;
|
|
39
|
+
height: 100%;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
56
42
|
|
|
57
|
-
|
|
58
|
-
|
|
43
|
+
&.set-video-to-cover {
|
|
44
|
+
iframe,
|
|
45
|
+
video {
|
|
46
|
+
object-fit: cover;
|
|
47
|
+
object-position: center;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
59
50
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
51
|
+
.loading-wrapper {
|
|
52
|
+
position: absolute;
|
|
53
|
+
left: 50%;
|
|
54
|
+
top: 50%;
|
|
55
|
+
transform: translate(-50%, -50%);
|
|
64
56
|
width: core-functions-v3.fluidSize(84, 'static');
|
|
65
57
|
height: core-functions-v3.fluidSize(84, 'static');
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
58
|
+
|
|
59
|
+
--spinner-bg-colour: #ffffff54;
|
|
60
|
+
--spinner-colour: white;
|
|
61
|
+
|
|
62
|
+
&:before {
|
|
63
|
+
content: '';
|
|
64
|
+
top: 0;
|
|
65
|
+
left: 0;
|
|
66
|
+
width: core-functions-v3.fluidSize(84, 'static');
|
|
67
|
+
height: core-functions-v3.fluidSize(84, 'static');
|
|
68
|
+
position: absolute;
|
|
69
|
+
border-radius: 50%;
|
|
70
|
+
border-right: solid core-functions-v3.fluidSize(5, 'static')
|
|
71
|
+
var(--spinner-bg-colour);
|
|
72
|
+
border-left: solid core-functions-v3.fluidSize(5, 'static')
|
|
73
|
+
var(--spinner-bg-colour);
|
|
74
|
+
border-top: solid core-functions-v3.fluidSize(5, 'static')
|
|
75
|
+
var(--spinner-bg-colour);
|
|
76
|
+
border-bottom: solid
|
|
77
|
+
core-functions-v3.fluidSize(5, 'static')
|
|
78
|
+
var(--spinner-colour);
|
|
79
|
+
animation: rotate 1s linear infinite;
|
|
80
|
+
}
|
|
77
81
|
}
|
|
78
82
|
}
|
|
79
|
-
}
|
|
80
83
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
84
|
+
&__video-play-button {
|
|
85
|
+
grid-area: main;
|
|
86
|
+
place-self: center;
|
|
87
|
+
// @include playButtonDefault();
|
|
88
|
+
transform: scale(1);
|
|
89
|
+
transition: transform 0.3s 0.5s;
|
|
87
90
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
91
|
+
&.video-playing {
|
|
92
|
+
transform: scale(0);
|
|
93
|
+
transition: transform 0.5s;
|
|
94
|
+
opacity: 0;
|
|
95
|
+
pointer-events: none;
|
|
96
|
+
max-height: 0px;
|
|
97
|
+
}
|
|
94
98
|
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
&__video-inner-container {
|
|
98
|
-
grid-area: video;
|
|
99
|
-
display: flex;
|
|
100
|
-
width: 100%;
|
|
101
|
-
position: relative;
|
|
102
99
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
100
|
+
&__video-inner-container {
|
|
101
|
+
grid-area: video;
|
|
102
|
+
display: flex;
|
|
106
103
|
width: 100%;
|
|
107
|
-
|
|
104
|
+
position: relative;
|
|
105
|
+
|
|
106
|
+
iframe {
|
|
107
|
+
left: 0;
|
|
108
|
+
top: 0;
|
|
109
|
+
width: 100%;
|
|
110
|
+
height: 100%;
|
|
111
|
+
}
|
|
108
112
|
}
|
|
109
|
-
}
|
|
110
113
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
114
|
+
&__video-player {
|
|
115
|
+
height: auto;
|
|
116
|
+
object-fit: contain;
|
|
117
|
+
width: 100%;
|
|
118
|
+
}
|
|
119
|
+
&:has(.video-playing) {
|
|
120
|
+
z-index: 99;
|
|
121
|
+
}
|
|
118
122
|
}
|
|
119
123
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@total_onion/onion-library",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.34",
|
|
4
4
|
"description": "Component library",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://github.com/TotalOnion/onion-library#readme",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@total_onion/onion-modalcontroller": "^1.
|
|
21
|
+
"@total_onion/onion-modalcontroller": "^1.2.4",
|
|
22
22
|
"@total_onion/onion-videocontroller": "^1.2.5",
|
|
23
23
|
"lottie-web": "^5.13.0",
|
|
24
24
|
"swiper": "^12.1.3"
|
|
@@ -1,37 +1 @@
|
|
|
1
1
|
// This file is auto-generated.
|
|
2
|
-
@use '../components/block-video-content-v3/video-content-v3.scss';
|
|
3
|
-
@use '../components/block-sub-group-container-v3/sub-group-container-v3.scss';
|
|
4
|
-
@use '../components/block-sticky-buy-cta-v3/sticky-buy-cta-v3.scss';
|
|
5
|
-
@use '../components/block-standard-content-v3/standard-content-v3.scss';
|
|
6
|
-
@use '../components/block-spotify-embed-v3/spotify-embed-v3.scss';
|
|
7
|
-
@use '../components/block-spacer-v3/spacer-v3.scss';
|
|
8
|
-
@use '../components/block-social-networks-v3/social-networks-v3.scss';
|
|
9
|
-
@use '../components/block-smash-balloon-social-media-v3/smash-balloon-social-media-v3.scss';
|
|
10
|
-
@use '../components/block-site-title-and-tagline-v3/site-title-and-tagline-v3.scss';
|
|
11
|
-
@use '../components/block-site-logo-container-v3/site-logo-container-v3.scss';
|
|
12
|
-
@use '../components/block-site-copyright-notice-v3/site-copyright-notice-v3.scss';
|
|
13
|
-
@use '../components/block-single-responsive-image-v3/single-responsive-image-v3.scss';
|
|
14
|
-
@use '../components/block-single-column-container-v3/single-column-container-v3.scss';
|
|
15
|
-
@use '../components/block-section-separator-v3/section-separator-v3.scss';
|
|
16
|
-
@use '../components/block-scrolling-banner-v3/scrolling-banner-v3.scss';
|
|
17
|
-
@use '../components/block-responsive-table-v3/responsive-table-v3.scss';
|
|
18
|
-
@use '../components/block-raw-html-v3/raw-html-v3.scss';
|
|
19
|
-
@use '../components/block-product-info-v3/product-info-v3.scss';
|
|
20
|
-
@use '../components/block-post-info-v3/post-info-v3.scss';
|
|
21
|
-
@use '../components/block-nav-menu-container-v3/nav-menu-container-v3.scss';
|
|
22
|
-
@use '../components/block-modal-form-v3/modal-form-v3.scss';
|
|
23
|
-
@use '../components/block-market-selector-v3/market-selector-v3.scss';
|
|
24
|
-
@use '../components/block-lottie-content-v3/lottie-content-v3.scss';
|
|
25
|
-
@use '../components/block-group-container-v3/group-container-v3.scss';
|
|
26
|
-
@use '../components/block-gradient-layer-v3/gradient-layer-v3.scss';
|
|
27
|
-
@use '../components/block-form-selection-v3/form-selection-v3.scss';
|
|
28
|
-
@use '../components/block-featured-image-gallery-v3/featured-image-gallery-v3.scss';
|
|
29
|
-
@use '../components/block-divider-v3/divider-v3.scss';
|
|
30
|
-
@use '../components/block-cover-link-v3/cover-link-v3.scss';
|
|
31
|
-
@use '../components/block-cocktail-recipe-v3/cocktail-recipe-v3.scss';
|
|
32
|
-
@use '../components/block-carousel-multi-layout-v3/carousel-multi-layout-v3.scss';
|
|
33
|
-
@use '../components/block-block-interactions-v3/block-interactions-v3.scss';
|
|
34
|
-
@use '../components/block-betterreviews-display-v3/betterreviews-display-v3.scss';
|
|
35
|
-
@use '../components/block-back-to-top-button-v3/back-to-top-button-v3.scss';
|
|
36
|
-
@use '../components/block-accordion-v3/accordion-v3.scss';
|
|
37
|
-
@use '../components/block-accent-image-v3/accent-image-v3.scss';
|