@total_onion/onion-library 1.1.26 → 1.1.29
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-carousel-multi-layout-v3/carousel-multi-layout-v3.scss +1 -1
- package/components/block-modal-form-v3/modal-form-v3.js +0 -7
- package/components/block-post-info-v3/post-info-v3.js +3 -0
- package/components/block-smash-balloon-social-media-v3/smash-balloon-social-media-v3.scss +2 -1
- package/package.json +44 -44
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@use '../fields-core-functions-v3/core-functions-v3';
|
|
3
3
|
@use '../component-element-positioning-v3/element-positioning-v3';
|
|
4
4
|
@use '../../breakpoints';
|
|
5
|
-
@use '
|
|
5
|
+
@use 'NodeModules/swiper/swiper-bundle.min.css';
|
|
6
6
|
|
|
7
7
|
.carousel-multi-layout-v3 {
|
|
8
8
|
display: grid;
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import flatpickr from "flatpickr";
|
|
2
|
-
import "flatpickr/dist/flatpickr.css";
|
|
3
|
-
|
|
4
1
|
export default function modalformv3Js ( options = {} ) {
|
|
5
2
|
try {
|
|
6
3
|
const { block } = options;
|
|
@@ -44,10 +41,6 @@ export default function modalformv3Js ( options = {} ) {
|
|
|
44
41
|
});
|
|
45
42
|
}
|
|
46
43
|
|
|
47
|
-
|
|
48
|
-
flatpickr(".flatpickr-input", {
|
|
49
|
-
dateFormat: "Y-m-d",
|
|
50
|
-
});
|
|
51
44
|
|
|
52
45
|
const submit = block.querySelector(
|
|
53
46
|
'.cdb-submit'
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import extraJs from 'Assets/js/blocks/post-info-v3/post-info-v3-extra';
|
|
2
|
+
// import videocontroller from '@total_onion/onion-videocontroller/onion-videocontroller.js';
|
|
3
|
+
|
|
2
4
|
export default function postinfov3Js(options = {}) {
|
|
3
5
|
const {block} = options;
|
|
4
6
|
try {
|
|
7
|
+
// const videoController = new videocontroller(block);
|
|
5
8
|
extraJs(block);
|
|
6
9
|
} catch (error) {
|
|
7
10
|
console.error(error);
|
|
@@ -9,12 +9,13 @@
|
|
|
9
9
|
width: 100%;
|
|
10
10
|
position: relative;
|
|
11
11
|
}
|
|
12
|
-
&[data-marquee
|
|
12
|
+
&[data-marquee] {
|
|
13
13
|
.sbi-owl-stage {
|
|
14
14
|
transition: none !important;
|
|
15
15
|
animation: sbiScroll 30s linear infinite;
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
|
+
|
|
18
19
|
@keyframes sbiScroll {
|
|
19
20
|
0% {
|
|
20
21
|
transform: translate3d(0, 0, 0);
|
package/package.json
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
2
|
+
"name": "@total_onion/onion-library",
|
|
3
|
+
"version": "1.1.29",
|
|
4
|
+
"description": "Component library",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "esbuild",
|
|
8
|
+
"test": "jest"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/TotalOnion/onion-library.git"
|
|
13
|
+
},
|
|
14
|
+
"author": "Ciaran",
|
|
15
|
+
"license": "ISC",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/TotalOnion/onion-library/issues"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/TotalOnion/onion-library#readme",
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@total_onion/onion-loader": "^1.0.10",
|
|
22
|
+
"@total_onion/onion-modalcontroller": "^1.0.5",
|
|
23
|
+
"@total_onion/onion-utils": "^1.0.10",
|
|
24
|
+
"@total_onion/onion-videocontroller": "^1.0.2",
|
|
25
|
+
"autoprefixer": "^10.4.21",
|
|
26
|
+
"compressing": "^2.0.0",
|
|
27
|
+
"cpy": "^9.0.1",
|
|
28
|
+
"esbuild-sass-plugin": "^3.3.1",
|
|
29
|
+
"flatpickr": "^4.6.13",
|
|
30
|
+
"fs": "^0.0.1-security",
|
|
31
|
+
"fs-extra": "^11.1.0",
|
|
32
|
+
"glob": "^11.0.0",
|
|
33
|
+
"jquery": "^3.7.1",
|
|
34
|
+
"lottie-web": "^5.13.0",
|
|
35
|
+
"postcss": "^8.5.6",
|
|
36
|
+
"postcss-preset-env": "^10.3.1",
|
|
37
|
+
"prettier": "^2.6.2",
|
|
38
|
+
"swiper": "^11.2.10",
|
|
39
|
+
"yargs": "^17.4.1"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"dotenv": "^16.0.3",
|
|
43
|
+
"esbuild": "0.25.5"
|
|
44
|
+
}
|
|
45
|
+
}
|