webs-sdk 0.17.0 → 0.17.1
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 +398 -398
- package/dist/components/ARFilters/ARFilters.js +54 -54
- package/dist/components/AvatarAI.js +4 -4
- package/dist/components/CookieConsent/CookieConsent.d.ts.map +1 -1
- package/dist/components/CookieConsent/CookieConsent.js +13 -0
- package/dist/components/CookieConsent/CookieConsent.js.map +1 -1
- package/dist/components/CookieConsent/constants.js +31 -31
- package/dist/components/CreativeFaceSwap.js +12 -12
- package/dist/components/MemeGenerator.js +12 -12
- package/dist/components/SpinningWheel/SpinningWheel.js +7 -7
- package/package.json +43 -43
- package/public/spin2win/assets/border-afristream.svg +26 -26
- package/public/spin2win/assets/border-efc.svg +23 -23
- package/public/spin2win/assets/border-totalgym.svg +27 -27
- package/public/spin2win/assets/border-womantoday.svg +26 -26
- package/public/spin2win/assets/indicator-afristream.svg +28 -28
- package/public/spin2win/assets/indicator-efc.svg +29 -29
- package/public/spin2win/assets/indicator-totalgym.svg +29 -29
- package/public/spin2win/fonts/switzer/README.md +22 -22
|
@@ -39,60 +39,60 @@ const useDeepAR_1 = require("./useDeepAR");
|
|
|
39
39
|
const FilterCarousel_1 = require("./FilterCarousel");
|
|
40
40
|
const Popups_1 = require("./Popups");
|
|
41
41
|
const constants_1 = require("./constants");
|
|
42
|
-
const DEEPAR_CSS = `
|
|
43
|
-
.deepar-container{position:relative;width:100%;max-width:800px;margin:0 auto;aspect-ratio:4/3;background-color:#000;border-radius:16px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.5),0 8px 16px rgba(0,0,0,.3)}
|
|
44
|
-
@media(max-width:768px){.deepar-container{max-width:100%;aspect-ratio:auto;height:70vh;max-height:600px;border-radius:8px}}
|
|
45
|
-
.deepar-canvas{width:100%;height:100%;object-fit:contain}
|
|
46
|
-
.deepar-loading-veil{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.8);display:flex;align-items:center;justify-content:center;z-index:10}
|
|
47
|
-
.deepar-loading-items{display:flex;flex-direction:column;align-items:center;gap:16px}
|
|
48
|
-
.deepar-loading-spinner{width:48px;height:48px;border:4px solid rgba(255,255,255,.1);border-top-color:#fff;border-radius:50%;animation:deepar-spin 1s linear infinite}
|
|
49
|
-
@keyframes deepar-spin{to{transform:rotate(360deg)}}
|
|
50
|
-
.deepar-loading-text{color:#fff;font-size:16px;font-weight:500}
|
|
51
|
-
.deepar-top-buttons{position:absolute;top:0;right:0;display:flex;gap:12px;padding:16px;z-index:20}
|
|
52
|
-
.deepar-fullscreen-button{display:flex;align-items:center;justify-content:center;width:48px;height:48px;background:rgba(0,0,0,.6);border:2px solid rgba(255,255,255,.3);border-radius:8px;cursor:pointer;transition:all .2s;-webkit-tap-highlight-color:transparent;touch-action:manipulation}
|
|
53
|
-
.deepar-fullscreen-button:hover{background:rgba(0,0,0,.8);border-color:rgba(255,255,255,.5)}
|
|
54
|
-
.deepar-fullscreen-button:active{transform:scale(.95);background:rgba(0,0,0,.9)}
|
|
55
|
-
@media(max-width:768px){.deepar-fullscreen-button{width:56px;height:56px;background:rgba(0,0,0,.7)}}
|
|
56
|
-
.deepar-recording-progress-bar{position:absolute;top:24px;left:50%;transform:translateX(-50%);width:calc(100% - 48px);max-width:400px;height:8px;background:rgba(255,255,255,.2);border-radius:17px;overflow:hidden;z-index:5}
|
|
57
|
-
.deepar-time-progress{height:100%;background:#dc2626;border-radius:17px;transition:width 100ms linear}
|
|
58
|
-
.deepar-pause-recording-container{position:absolute;bottom:48px;left:50%;transform:translateX(-50%);display:flex;align-items:center;justify-content:center;z-index:5}
|
|
59
|
-
.deepar-pause-recording-button{display:flex;align-items:center;justify-content:center;width:80px;height:80px;background:rgba(0,0,0,.5);border:3px solid #fff;border-radius:50%;cursor:pointer;transition:all .2s}
|
|
60
|
-
.deepar-pause-recording-inner{width:24px;height:24px;background:#dc2626;border-radius:4px}
|
|
61
|
-
.deepar-carousel-container{position:absolute;bottom:0;left:0;width:100%;visibility:hidden;opacity:0;transition:opacity .3s;z-index:4}
|
|
62
|
-
.deepar-carousel-container.visible{visibility:visible;opacity:1}
|
|
63
|
-
.deepar-carousel-wrapper{position:relative;display:flex;align-items:center;justify-content:center;padding:24px 0;background:linear-gradient(to top,rgba(0,0,0,1) 0%,rgba(0,0,0,.95) 50%,rgba(0,0,0,0) 100%)}
|
|
64
|
-
.deepar-carousel-content{position:relative;display:flex;align-items:center;justify-content:center;flex:1}
|
|
65
|
-
.deepar-carousel{max-width:368px;overflow:hidden;padding:0 20px}
|
|
66
|
-
@media(max-width:768px){.deepar-carousel{max-width:280px;padding:0 10px}}
|
|
67
|
-
.deepar-carousel-slides{display:flex;gap:16px}
|
|
68
|
-
.deepar-carousel-slide{flex:0 0 auto;cursor:pointer;transition:all .3s ease;opacity:.6}
|
|
69
|
-
.deepar-carousel-slide:hover{opacity:.8}
|
|
70
|
-
.deepar-carousel-slide.active{opacity:1}
|
|
71
|
-
.deepar-filter-thumb{width:64px;height:64px;border-radius:50%;overflow:hidden;transition:all .3s ease;border:3px solid rgba(255,255,255,.2)}
|
|
72
|
-
.deepar-carousel-slide.active .deepar-filter-thumb{width:76px;height:76px;border:3px solid rgba(255,255,255,1);box-shadow:0 0 0 8px rgba(0,0,0,.4)}
|
|
73
|
-
.deepar-carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:rgba(0,0,0,.4);border:1px solid rgba(255,255,255,.3);border-radius:50%;cursor:pointer;transition:all .3s;z-index:5;color:#fff}
|
|
74
|
-
.deepar-carousel-arrow.prev{left:16px}
|
|
75
|
-
.deepar-carousel-arrow.next{right:16px}
|
|
76
|
-
.deepar-carousel-arrow:hover:not(:disabled){transform:translateY(-50%) scale(1.1);background:rgba(0,0,0,.6)}
|
|
77
|
-
.deepar-carousel-arrow:disabled{opacity:.3;cursor:not-allowed}
|
|
78
|
-
.deepar-selection-ring{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:110px;height:110px;background:rgba(0,0,0,.4);border:4px solid rgba(255,255,255,.9);border-radius:50%;cursor:pointer;z-index:6;transition:all .3s;display:flex;align-items:center;justify-content:center;box-shadow:0 0 0 8px rgba(0,0,0,.3)}
|
|
79
|
-
.deepar-selection-ring:hover{transform:translate(-50%,-50%) scale(1.05);border-color:#fff}
|
|
80
|
-
.deepar-selection-ring-camera{color:#fff}
|
|
81
|
-
.deepar-creation-container{position:absolute;top:0;left:0;width:100%;height:100%;background:#000;z-index:8}
|
|
82
|
-
.deepar-created-video,.deepar-created-image{width:100%;height:100%;object-fit:cover}
|
|
83
|
-
.deepar-creation-buttons{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none}
|
|
84
|
-
.deepar-creation-buttons>*{pointer-events:all}
|
|
85
|
-
.deepar-discard-button{position:absolute;top:24px;left:24px;display:flex;align-items:center;gap:8px;padding:12px 20px;background:rgba(0,0,0,.5);color:#fff;border:none;border-radius:8px;font-size:14px;font-weight:600;cursor:pointer;transition:all .2s}
|
|
86
|
-
.deepar-bottom-buttons-creation{position:absolute;bottom:42px;left:50%;transform:translateX(-50%);display:flex;gap:16px}
|
|
87
|
-
.deepar-creation-button{display:flex;align-items:center;justify-content:center;width:80px;height:80px;background:rgba(0,0,0,.5);border:3px solid #fff;border-radius:50%;cursor:pointer;transition:all .2s}
|
|
88
|
-
.deepar-creation-button:hover{background:rgba(0,0,0,.7);transform:scale(1.1)}
|
|
89
|
-
.deepar-popup{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.8);display:flex;align-items:center;justify-content:center;z-index:50}
|
|
90
|
-
.deepar-popup-box{background:#fff;border-radius:12px;padding:48px 32px;max-width:400px;width:90%;text-align:center}
|
|
91
|
-
.deepar-popup-image{margin:0 auto 20px;display:flex;align-items:center;justify-content:center}
|
|
92
|
-
.deepar-popup-title{font-size:18px;font-weight:600;color:#111;margin-bottom:24px}
|
|
93
|
-
.deepar-popup-button{display:inline-block;padding:14px 32px;border-radius:8px;font-size:16px;font-weight:600;border:none;cursor:pointer;transition:all .2s}
|
|
94
|
-
.deepar-popup-button:hover{transform:scale(1.05)}
|
|
95
|
-
.deepar-download-success{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);padding:16px 32px;background:rgba(34,197,94,.95);color:#fff;border-radius:8px;font-size:16px;font-weight:600;z-index:100}
|
|
42
|
+
const DEEPAR_CSS = `
|
|
43
|
+
.deepar-container{position:relative;width:100%;max-width:800px;margin:0 auto;aspect-ratio:4/3;background-color:#000;border-radius:16px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.5),0 8px 16px rgba(0,0,0,.3)}
|
|
44
|
+
@media(max-width:768px){.deepar-container{max-width:100%;aspect-ratio:auto;height:70vh;max-height:600px;border-radius:8px}}
|
|
45
|
+
.deepar-canvas{width:100%;height:100%;object-fit:contain}
|
|
46
|
+
.deepar-loading-veil{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.8);display:flex;align-items:center;justify-content:center;z-index:10}
|
|
47
|
+
.deepar-loading-items{display:flex;flex-direction:column;align-items:center;gap:16px}
|
|
48
|
+
.deepar-loading-spinner{width:48px;height:48px;border:4px solid rgba(255,255,255,.1);border-top-color:#fff;border-radius:50%;animation:deepar-spin 1s linear infinite}
|
|
49
|
+
@keyframes deepar-spin{to{transform:rotate(360deg)}}
|
|
50
|
+
.deepar-loading-text{color:#fff;font-size:16px;font-weight:500}
|
|
51
|
+
.deepar-top-buttons{position:absolute;top:0;right:0;display:flex;gap:12px;padding:16px;z-index:20}
|
|
52
|
+
.deepar-fullscreen-button{display:flex;align-items:center;justify-content:center;width:48px;height:48px;background:rgba(0,0,0,.6);border:2px solid rgba(255,255,255,.3);border-radius:8px;cursor:pointer;transition:all .2s;-webkit-tap-highlight-color:transparent;touch-action:manipulation}
|
|
53
|
+
.deepar-fullscreen-button:hover{background:rgba(0,0,0,.8);border-color:rgba(255,255,255,.5)}
|
|
54
|
+
.deepar-fullscreen-button:active{transform:scale(.95);background:rgba(0,0,0,.9)}
|
|
55
|
+
@media(max-width:768px){.deepar-fullscreen-button{width:56px;height:56px;background:rgba(0,0,0,.7)}}
|
|
56
|
+
.deepar-recording-progress-bar{position:absolute;top:24px;left:50%;transform:translateX(-50%);width:calc(100% - 48px);max-width:400px;height:8px;background:rgba(255,255,255,.2);border-radius:17px;overflow:hidden;z-index:5}
|
|
57
|
+
.deepar-time-progress{height:100%;background:#dc2626;border-radius:17px;transition:width 100ms linear}
|
|
58
|
+
.deepar-pause-recording-container{position:absolute;bottom:48px;left:50%;transform:translateX(-50%);display:flex;align-items:center;justify-content:center;z-index:5}
|
|
59
|
+
.deepar-pause-recording-button{display:flex;align-items:center;justify-content:center;width:80px;height:80px;background:rgba(0,0,0,.5);border:3px solid #fff;border-radius:50%;cursor:pointer;transition:all .2s}
|
|
60
|
+
.deepar-pause-recording-inner{width:24px;height:24px;background:#dc2626;border-radius:4px}
|
|
61
|
+
.deepar-carousel-container{position:absolute;bottom:0;left:0;width:100%;visibility:hidden;opacity:0;transition:opacity .3s;z-index:4}
|
|
62
|
+
.deepar-carousel-container.visible{visibility:visible;opacity:1}
|
|
63
|
+
.deepar-carousel-wrapper{position:relative;display:flex;align-items:center;justify-content:center;padding:24px 0;background:linear-gradient(to top,rgba(0,0,0,1) 0%,rgba(0,0,0,.95) 50%,rgba(0,0,0,0) 100%)}
|
|
64
|
+
.deepar-carousel-content{position:relative;display:flex;align-items:center;justify-content:center;flex:1}
|
|
65
|
+
.deepar-carousel{max-width:368px;overflow:hidden;padding:0 20px}
|
|
66
|
+
@media(max-width:768px){.deepar-carousel{max-width:280px;padding:0 10px}}
|
|
67
|
+
.deepar-carousel-slides{display:flex;gap:16px}
|
|
68
|
+
.deepar-carousel-slide{flex:0 0 auto;cursor:pointer;transition:all .3s ease;opacity:.6}
|
|
69
|
+
.deepar-carousel-slide:hover{opacity:.8}
|
|
70
|
+
.deepar-carousel-slide.active{opacity:1}
|
|
71
|
+
.deepar-filter-thumb{width:64px;height:64px;border-radius:50%;overflow:hidden;transition:all .3s ease;border:3px solid rgba(255,255,255,.2)}
|
|
72
|
+
.deepar-carousel-slide.active .deepar-filter-thumb{width:76px;height:76px;border:3px solid rgba(255,255,255,1);box-shadow:0 0 0 8px rgba(0,0,0,.4)}
|
|
73
|
+
.deepar-carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:rgba(0,0,0,.4);border:1px solid rgba(255,255,255,.3);border-radius:50%;cursor:pointer;transition:all .3s;z-index:5;color:#fff}
|
|
74
|
+
.deepar-carousel-arrow.prev{left:16px}
|
|
75
|
+
.deepar-carousel-arrow.next{right:16px}
|
|
76
|
+
.deepar-carousel-arrow:hover:not(:disabled){transform:translateY(-50%) scale(1.1);background:rgba(0,0,0,.6)}
|
|
77
|
+
.deepar-carousel-arrow:disabled{opacity:.3;cursor:not-allowed}
|
|
78
|
+
.deepar-selection-ring{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:110px;height:110px;background:rgba(0,0,0,.4);border:4px solid rgba(255,255,255,.9);border-radius:50%;cursor:pointer;z-index:6;transition:all .3s;display:flex;align-items:center;justify-content:center;box-shadow:0 0 0 8px rgba(0,0,0,.3)}
|
|
79
|
+
.deepar-selection-ring:hover{transform:translate(-50%,-50%) scale(1.05);border-color:#fff}
|
|
80
|
+
.deepar-selection-ring-camera{color:#fff}
|
|
81
|
+
.deepar-creation-container{position:absolute;top:0;left:0;width:100%;height:100%;background:#000;z-index:8}
|
|
82
|
+
.deepar-created-video,.deepar-created-image{width:100%;height:100%;object-fit:cover}
|
|
83
|
+
.deepar-creation-buttons{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none}
|
|
84
|
+
.deepar-creation-buttons>*{pointer-events:all}
|
|
85
|
+
.deepar-discard-button{position:absolute;top:24px;left:24px;display:flex;align-items:center;gap:8px;padding:12px 20px;background:rgba(0,0,0,.5);color:#fff;border:none;border-radius:8px;font-size:14px;font-weight:600;cursor:pointer;transition:all .2s}
|
|
86
|
+
.deepar-bottom-buttons-creation{position:absolute;bottom:42px;left:50%;transform:translateX(-50%);display:flex;gap:16px}
|
|
87
|
+
.deepar-creation-button{display:flex;align-items:center;justify-content:center;width:80px;height:80px;background:rgba(0,0,0,.5);border:3px solid #fff;border-radius:50%;cursor:pointer;transition:all .2s}
|
|
88
|
+
.deepar-creation-button:hover{background:rgba(0,0,0,.7);transform:scale(1.1)}
|
|
89
|
+
.deepar-popup{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.8);display:flex;align-items:center;justify-content:center;z-index:50}
|
|
90
|
+
.deepar-popup-box{background:#fff;border-radius:12px;padding:48px 32px;max-width:400px;width:90%;text-align:center}
|
|
91
|
+
.deepar-popup-image{margin:0 auto 20px;display:flex;align-items:center;justify-content:center}
|
|
92
|
+
.deepar-popup-title{font-size:18px;font-weight:600;color:#111;margin-bottom:24px}
|
|
93
|
+
.deepar-popup-button{display:inline-block;padding:14px 32px;border-radius:8px;font-size:16px;font-weight:600;border:none;cursor:pointer;transition:all .2s}
|
|
94
|
+
.deepar-popup-button:hover{transform:scale(1.05)}
|
|
95
|
+
.deepar-download-success{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);padding:16px 32px;background:rgba(34,197,94,.95);color:#fff;border-radius:8px;font-size:16px;font-weight:600;z-index:100}
|
|
96
96
|
`;
|
|
97
97
|
function ARFilters(props) {
|
|
98
98
|
(0, react_1.useEffect)(() => {
|
|
@@ -37,10 +37,10 @@ exports.AvatarAI = AvatarAI;
|
|
|
37
37
|
exports.AvatarAIForYouCard = AvatarAIForYouCard;
|
|
38
38
|
exports.AvatarAIPage = AvatarAIPage;
|
|
39
39
|
const react_1 = __importStar(require("react"));
|
|
40
|
-
const AVATAR_AI_CSS = `
|
|
41
|
-
.avatarai-styles-grid::-webkit-scrollbar { width: 6px; }
|
|
42
|
-
.avatarai-styles-grid::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 3px; }
|
|
43
|
-
.avatarai-styles-grid::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
|
|
40
|
+
const AVATAR_AI_CSS = `
|
|
41
|
+
.avatarai-styles-grid::-webkit-scrollbar { width: 6px; }
|
|
42
|
+
.avatarai-styles-grid::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 3px; }
|
|
43
|
+
.avatarai-styles-grid::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
|
|
44
44
|
`;
|
|
45
45
|
const defaultStyles = [
|
|
46
46
|
{ id: 1, name: 'Pirate', image: 'https://cdn.smarthubtech.net/upload/20240426_135427_99796_1_cuadrada.png' },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CookieConsent.d.ts","sourceRoot":"","sources":["../../../src/components/CookieConsent/CookieConsent.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA8B,MAAM,OAAO,CAAC;AACnD,OAAO,KAAK,EAAE,kBAAkB,EAA4B,MAAM,SAAS,CAAC;AAqC5E,wBAAgB,aAAa,CAAC,EAC5B,MAAa,EACb,gBAAgB,EAChB,MAAW,EACX,KAAU,EACV,KAAK,EAAE,aAAa,EACpB,QAAQ,EACR,QAAQ,EACR,cAAc,GACf,EAAE,kBAAkB,
|
|
1
|
+
{"version":3,"file":"CookieConsent.d.ts","sourceRoot":"","sources":["../../../src/components/CookieConsent/CookieConsent.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA8B,MAAM,OAAO,CAAC;AACnD,OAAO,KAAK,EAAE,kBAAkB,EAA4B,MAAM,SAAS,CAAC;AAqC5E,wBAAgB,aAAa,CAAC,EAC5B,MAAa,EACb,gBAAgB,EAChB,MAAW,EACX,KAAU,EACV,KAAK,EAAE,aAAa,EACpB,QAAQ,EACR,QAAQ,EACR,cAAc,GACf,EAAE,kBAAkB,4BA6NpB"}
|
|
@@ -83,6 +83,19 @@ function CookieConsent({ locale = 'en', privacyPolicyUrl, config = {}, theme = {
|
|
|
83
83
|
setVisible(true);
|
|
84
84
|
}
|
|
85
85
|
}, [cookieName]);
|
|
86
|
+
(0, react_1.useEffect)(() => {
|
|
87
|
+
const handleExternalOpen = () => {
|
|
88
|
+
try {
|
|
89
|
+
setAnalytical(localStorage.getItem(lsKey) === 'granted');
|
|
90
|
+
setFunctional(localStorage.getItem(constants_1.FUNCTIONAL_PERMISSION_KEY) === 'granted');
|
|
91
|
+
}
|
|
92
|
+
catch (_a) { }
|
|
93
|
+
setVisible(true);
|
|
94
|
+
setShowSettings(true);
|
|
95
|
+
};
|
|
96
|
+
window.addEventListener('cc:open-settings', handleExternalOpen);
|
|
97
|
+
return () => window.removeEventListener('cc:open-settings', handleExternalOpen);
|
|
98
|
+
}, [lsKey]);
|
|
86
99
|
if (!visible)
|
|
87
100
|
return null;
|
|
88
101
|
const dismiss = (callback) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CookieConsent.js","sourceRoot":"","sources":["../../../src/components/CookieConsent/CookieConsent.tsx"],"names":[],"mappings":";AAAA,YAAY,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwCb,
|
|
1
|
+
{"version":3,"file":"CookieConsent.js","sourceRoot":"","sources":["../../../src/components/CookieConsent/CookieConsent.tsx"],"names":[],"mappings":"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"}
|
|
@@ -5,36 +5,36 @@ exports.COOKIE_CONSENT_COOKIE_NAME = 'cookieConsent';
|
|
|
5
5
|
exports.COOKIE_CONSENT_COOKIE_MAX_AGE = 60 * 60 * 24 * 365;
|
|
6
6
|
exports.TRACKING_PERMISSION_KEY = 'TRACKING_PERMISSION';
|
|
7
7
|
exports.FUNCTIONAL_PERMISSION_KEY = 'FUNCTIONAL_PERMISSION';
|
|
8
|
-
exports.COOKIE_CONSENT_CSS = `
|
|
9
|
-
.cc-overlay{position:fixed;bottom:0;left:0;right:0;z-index:9999;padding:16px;box-sizing:border-box}
|
|
10
|
-
.cc-banner{max-width:960px;margin:0 auto;padding:24px 28px;border-radius:12px;box-shadow:0 -4px 32px rgba(0,0,0,.18),0 2px 8px rgba(0,0,0,.12);display:flex;gap:20px;align-items:flex-start;flex-wrap:wrap}
|
|
11
|
-
@media(min-width:640px){.cc-banner{flex-wrap:nowrap;align-items:center}}
|
|
12
|
-
.cc-content{flex:1;min-width:0}
|
|
13
|
-
.cc-title{font-size:16px;font-weight:700;margin:0 0 6px 0;line-height:1.3}
|
|
14
|
-
.cc-description{font-size:13px;line-height:1.55;margin:0;opacity:.85}
|
|
15
|
-
.cc-link{text-decoration:underline;cursor:pointer;margin-left:4px}
|
|
16
|
-
.cc-actions{display:flex;gap:8px;flex-shrink:0;flex-direction:column;align-items:stretch}
|
|
17
|
-
@media(min-width:480px){.cc-actions{flex-direction:row;align-items:center}}
|
|
18
|
-
.cc-btn{padding:10px 20px;border-radius:8px;font-size:14px;font-weight:600;cursor:pointer;border:none;transition:opacity .2s;white-space:nowrap;line-height:1}
|
|
19
|
-
.cc-btn:hover{opacity:.88}
|
|
20
|
-
.cc-btn-essential{background:transparent}
|
|
21
|
-
.cc-config-link{background:none;border:none;cursor:pointer;font-size:12px;text-decoration:underline;padding:4px 0;font-family:inherit;line-height:1;opacity:.7;white-space:nowrap;display:block;text-align:center}
|
|
22
|
-
.cc-config-link:hover{opacity:1}
|
|
23
|
-
.cc-banner.cc-settings-mode{display:block}
|
|
24
|
-
.cc-settings-title{font-size:15px;font-weight:700;margin:0 0 14px 0}
|
|
25
|
-
.cc-settings-sep{border:none;border-top:1px solid rgba(255,255,255,.12);margin:0 0 16px}
|
|
26
|
-
.cc-category{display:flex;flex-direction:column;gap:5px;margin-bottom:14px}
|
|
27
|
-
.cc-category:last-of-type{margin-bottom:0}
|
|
28
|
-
.cc-category-row{display:flex;align-items:center;gap:10px}
|
|
29
|
-
.cc-category-label{font-size:13px;font-weight:600;cursor:pointer;user-select:none;line-height:1.3}
|
|
30
|
-
.cc-category-label.cc-mandatory{cursor:default;opacity:.55}
|
|
31
|
-
.cc-category-desc{font-size:12px;line-height:1.55;opacity:.7;padding-left:26px;margin:0}
|
|
32
|
-
.cc-checkbox{width:15px;height:15px;flex-shrink:0;cursor:pointer;margin:0}
|
|
33
|
-
.cc-checkbox:disabled{cursor:default}
|
|
34
|
-
.cc-settings-footer{display:flex;justify-content:flex-end;margin-top:20px;padding-top:16px;border-top:1px solid rgba(255,255,255,.12)}
|
|
35
|
-
.cc-enter{animation:cc-slideup .28s ease-out}
|
|
36
|
-
.cc-exit{animation:cc-slidedown .22s ease-in forwards}
|
|
37
|
-
@keyframes cc-slideup{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}
|
|
38
|
-
@keyframes cc-slidedown{from{transform:translateY(0);opacity:1}to{transform:translateY(100%);opacity:0}}
|
|
8
|
+
exports.COOKIE_CONSENT_CSS = `
|
|
9
|
+
.cc-overlay{position:fixed;bottom:0;left:0;right:0;z-index:9999;padding:16px;box-sizing:border-box}
|
|
10
|
+
.cc-banner{max-width:960px;margin:0 auto;padding:24px 28px;border-radius:12px;box-shadow:0 -4px 32px rgba(0,0,0,.18),0 2px 8px rgba(0,0,0,.12);display:flex;gap:20px;align-items:flex-start;flex-wrap:wrap}
|
|
11
|
+
@media(min-width:640px){.cc-banner{flex-wrap:nowrap;align-items:center}}
|
|
12
|
+
.cc-content{flex:1;min-width:0}
|
|
13
|
+
.cc-title{font-size:16px;font-weight:700;margin:0 0 6px 0;line-height:1.3}
|
|
14
|
+
.cc-description{font-size:13px;line-height:1.55;margin:0;opacity:.85}
|
|
15
|
+
.cc-link{text-decoration:underline;cursor:pointer;margin-left:4px}
|
|
16
|
+
.cc-actions{display:flex;gap:8px;flex-shrink:0;flex-direction:column;align-items:stretch}
|
|
17
|
+
@media(min-width:480px){.cc-actions{flex-direction:row;align-items:center}}
|
|
18
|
+
.cc-btn{padding:10px 20px;border-radius:8px;font-size:14px;font-weight:600;cursor:pointer;border:none;transition:opacity .2s;white-space:nowrap;line-height:1}
|
|
19
|
+
.cc-btn:hover{opacity:.88}
|
|
20
|
+
.cc-btn-essential{background:transparent}
|
|
21
|
+
.cc-config-link{background:none;border:none;cursor:pointer;font-size:12px;text-decoration:underline;padding:4px 0;font-family:inherit;line-height:1;opacity:.7;white-space:nowrap;display:block;text-align:center}
|
|
22
|
+
.cc-config-link:hover{opacity:1}
|
|
23
|
+
.cc-banner.cc-settings-mode{display:block}
|
|
24
|
+
.cc-settings-title{font-size:15px;font-weight:700;margin:0 0 14px 0}
|
|
25
|
+
.cc-settings-sep{border:none;border-top:1px solid rgba(255,255,255,.12);margin:0 0 16px}
|
|
26
|
+
.cc-category{display:flex;flex-direction:column;gap:5px;margin-bottom:14px}
|
|
27
|
+
.cc-category:last-of-type{margin-bottom:0}
|
|
28
|
+
.cc-category-row{display:flex;align-items:center;gap:10px}
|
|
29
|
+
.cc-category-label{font-size:13px;font-weight:600;cursor:pointer;user-select:none;line-height:1.3}
|
|
30
|
+
.cc-category-label.cc-mandatory{cursor:default;opacity:.55}
|
|
31
|
+
.cc-category-desc{font-size:12px;line-height:1.55;opacity:.7;padding-left:26px;margin:0}
|
|
32
|
+
.cc-checkbox{width:15px;height:15px;flex-shrink:0;cursor:pointer;margin:0}
|
|
33
|
+
.cc-checkbox:disabled{cursor:default}
|
|
34
|
+
.cc-settings-footer{display:flex;justify-content:flex-end;margin-top:20px;padding-top:16px;border-top:1px solid rgba(255,255,255,.12)}
|
|
35
|
+
.cc-enter{animation:cc-slideup .28s ease-out}
|
|
36
|
+
.cc-exit{animation:cc-slidedown .22s ease-in forwards}
|
|
37
|
+
@keyframes cc-slideup{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}
|
|
38
|
+
@keyframes cc-slidedown{from{transform:translateY(0);opacity:1}to{transform:translateY(100%);opacity:0}}
|
|
39
39
|
`;
|
|
40
40
|
//# sourceMappingURL=constants.js.map
|
|
@@ -41,18 +41,18 @@ exports.CreativeFaceSwapPage = CreativeFaceSwapPage;
|
|
|
41
41
|
exports.CreativeFaceSwap = CreativeFaceSwap;
|
|
42
42
|
const react_1 = __importStar(require("react"));
|
|
43
43
|
const link_1 = __importDefault(require("next/link"));
|
|
44
|
-
const FACESWAP_CSS = `
|
|
45
|
-
.faceswap-layout { display: flex; flex-direction: row; align-items: stretch; }
|
|
46
|
-
.faceswap-col-left { width: 30%; min-width: 280px; background: white; border: 1px solid #e5e7eb; display: flex; flex-direction: column; }
|
|
47
|
-
.faceswap-col-right { flex: 1; background: white; border: 1px solid #e5e7eb; border-left: none; display: flex; flex-direction: column; }
|
|
48
|
-
.faceswap-col-right > div:first-child { flex: 0 0 auto; }
|
|
49
|
-
.faceswap-col-right > div:last-child { flex: 1; display: flex; flex-direction: column; }
|
|
50
|
-
.faceswap-col-right > div:last-child > .faceswap-result-area { flex: 1; min-height: 0; }
|
|
51
|
-
@media (max-width: 768px) {
|
|
52
|
-
.faceswap-layout { flex-direction: column; }
|
|
53
|
-
.faceswap-col-left { width: 100%; min-width: unset; }
|
|
54
|
-
.faceswap-col-right { border-left: 1px solid #e5e7eb; border-top: none; width: 100%; }
|
|
55
|
-
}
|
|
44
|
+
const FACESWAP_CSS = `
|
|
45
|
+
.faceswap-layout { display: flex; flex-direction: row; align-items: stretch; }
|
|
46
|
+
.faceswap-col-left { width: 30%; min-width: 280px; background: white; border: 1px solid #e5e7eb; display: flex; flex-direction: column; }
|
|
47
|
+
.faceswap-col-right { flex: 1; background: white; border: 1px solid #e5e7eb; border-left: none; display: flex; flex-direction: column; }
|
|
48
|
+
.faceswap-col-right > div:first-child { flex: 0 0 auto; }
|
|
49
|
+
.faceswap-col-right > div:last-child { flex: 1; display: flex; flex-direction: column; }
|
|
50
|
+
.faceswap-col-right > div:last-child > .faceswap-result-area { flex: 1; min-height: 0; }
|
|
51
|
+
@media (max-width: 768px) {
|
|
52
|
+
.faceswap-layout { flex-direction: column; }
|
|
53
|
+
.faceswap-col-left { width: 100%; min-width: unset; }
|
|
54
|
+
.faceswap-col-right { border-left: 1px solid #e5e7eb; border-top: none; width: 100%; }
|
|
55
|
+
}
|
|
56
56
|
`;
|
|
57
57
|
function CreativeFaceSwapForYouCard({ title, description, ctaText, ctaHref, desktopImage, mobileImage, imageAlt = '', imageOnRight = true, titleColor = '#001B5E', descriptionColor = '#001B5E', ctaColor = '#FF5500', ctaHoverColor = '#ff1600', backgroundColor = '#F9F9F9', paddingClass = 'py-12 md:py-16 lg:py-20', }) {
|
|
58
58
|
const effectiveMobileImage = mobileImage || desktopImage;
|
|
@@ -63,18 +63,18 @@ const defaultTexts = {
|
|
|
63
63
|
noMemes: 'No memes available',
|
|
64
64
|
};
|
|
65
65
|
const TEXT_SHADOW = '2px 2px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000';
|
|
66
|
-
const MEME_CSS = `
|
|
67
|
-
.memegen-grid {
|
|
68
|
-
display: grid;
|
|
69
|
-
grid-template-columns: 1fr;
|
|
70
|
-
gap: 24px;
|
|
71
|
-
align-items: stretch;
|
|
72
|
-
}
|
|
73
|
-
@media (min-width: 1024px) {
|
|
74
|
-
.memegen-grid {
|
|
75
|
-
grid-template-columns: 1fr 1fr;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
66
|
+
const MEME_CSS = `
|
|
67
|
+
.memegen-grid {
|
|
68
|
+
display: grid;
|
|
69
|
+
grid-template-columns: 1fr;
|
|
70
|
+
gap: 24px;
|
|
71
|
+
align-items: stretch;
|
|
72
|
+
}
|
|
73
|
+
@media (min-width: 1024px) {
|
|
74
|
+
.memegen-grid {
|
|
75
|
+
grid-template-columns: 1fr 1fr;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
78
|
`;
|
|
79
79
|
function MemeGenerator({ memes: memesProp, config, fonts = defaultFonts, defaultMemeIndex = 0, theme = {}, texts = {}, imageProxyUrl, onDownload, }) {
|
|
80
80
|
const mergedTheme = Object.assign(Object.assign({}, defaultTheme), theme);
|
|
@@ -269,13 +269,13 @@ function SpinningWheel({ config: configProp, onResult, onError, canSpin = true,
|
|
|
269
269
|
const backgroundAsset = currentTheme.backgroundAsset;
|
|
270
270
|
return (react_1.default.createElement("div", { style: { position: 'relative', display: 'flex', flexDirection: 'column', alignItems: 'center', gap: '32px', padding: '32px', minHeight: '100vh', overflow: 'hidden' } },
|
|
271
271
|
backgroundAsset && (react_1.default.createElement(react_1.default.Fragment, null,
|
|
272
|
-
react_1.default.createElement("style", null, `
|
|
273
|
-
.sw-bg-desktop { display: block; }
|
|
274
|
-
.sw-bg-mobile { display: none; }
|
|
275
|
-
@media (max-width: 767px) {
|
|
276
|
-
.sw-bg-desktop { display: none; }
|
|
277
|
-
.sw-bg-mobile { display: block; }
|
|
278
|
-
}
|
|
272
|
+
react_1.default.createElement("style", null, `
|
|
273
|
+
.sw-bg-desktop { display: block; }
|
|
274
|
+
.sw-bg-mobile { display: none; }
|
|
275
|
+
@media (max-width: 767px) {
|
|
276
|
+
.sw-bg-desktop { display: none; }
|
|
277
|
+
.sw-bg-mobile { display: block; }
|
|
278
|
+
}
|
|
279
279
|
`),
|
|
280
280
|
react_1.default.createElement("img", { src: backgroundAsset.desktop, alt: "", className: "sw-bg-desktop", style: {
|
|
281
281
|
position: 'absolute',
|
package/package.json
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "webs-sdk",
|
|
3
|
-
"version": "0.17.
|
|
4
|
-
"private": false,
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"module": "dist/index.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist/**/*",
|
|
10
|
-
"public/**/*"
|
|
11
|
-
],
|
|
12
|
-
"scripts": {
|
|
13
|
-
"dev": "next dev --turbopack",
|
|
14
|
-
"build": "tsc --project tsconfig.build.json",
|
|
15
|
-
"build:watch": "tsc --project tsconfig.build.json --watch",
|
|
16
|
-
"prepublishOnly": "npm run build",
|
|
17
|
-
"start": "next start",
|
|
18
|
-
"lint": "next lint"
|
|
19
|
-
},
|
|
20
|
-
"dependencies": {
|
|
21
|
-
"embla-carousel-react": "^8.3.2",
|
|
22
|
-
"mixpanel-browser": "^2.72.0",
|
|
23
|
-
"motion": "^12.38.0"
|
|
24
|
-
},
|
|
25
|
-
"peerDependencies": {
|
|
26
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
27
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
28
|
-
},
|
|
29
|
-
"devDependencies": {
|
|
30
|
-
"@eslint/eslintrc": "^3",
|
|
31
|
-
"@tailwindcss/postcss": "^4",
|
|
32
|
-
"@types/node": "^24.3.0",
|
|
33
|
-
"@types/react": "^19",
|
|
34
|
-
"@types/react-dom": "^19",
|
|
35
|
-
"eslint": "^9",
|
|
36
|
-
"eslint-config-next": "^15.5.2",
|
|
37
|
-
"next": "^16.0.8",
|
|
38
|
-
"react": "^19.0.0",
|
|
39
|
-
"react-dom": "^19.0.0",
|
|
40
|
-
"tailwindcss": "^4",
|
|
41
|
-
"typescript": "^5.9.3"
|
|
42
|
-
}
|
|
43
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "webs-sdk",
|
|
3
|
+
"version": "0.17.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/**/*",
|
|
10
|
+
"public/**/*"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "next dev --turbopack",
|
|
14
|
+
"build": "tsc --project tsconfig.build.json",
|
|
15
|
+
"build:watch": "tsc --project tsconfig.build.json --watch",
|
|
16
|
+
"prepublishOnly": "npm run build",
|
|
17
|
+
"start": "next start",
|
|
18
|
+
"lint": "next lint"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"embla-carousel-react": "^8.3.2",
|
|
22
|
+
"mixpanel-browser": "^2.72.0",
|
|
23
|
+
"motion": "^12.38.0"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
27
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@eslint/eslintrc": "^3",
|
|
31
|
+
"@tailwindcss/postcss": "^4",
|
|
32
|
+
"@types/node": "^24.3.0",
|
|
33
|
+
"@types/react": "^19",
|
|
34
|
+
"@types/react-dom": "^19",
|
|
35
|
+
"eslint": "^9",
|
|
36
|
+
"eslint-config-next": "^15.5.2",
|
|
37
|
+
"next": "^16.0.8",
|
|
38
|
+
"react": "^19.0.0",
|
|
39
|
+
"react-dom": "^19.0.0",
|
|
40
|
+
"tailwindcss": "^4",
|
|
41
|
+
"typescript": "^5.9.3"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="401" height="401" viewBox="0 0 401 401" fill="none">
|
|
2
|
-
<g filter="url(#filter0_ii_afristream)">
|
|
3
|
-
<path d="M200.231 0C310.816 0 400.463 89.6467 400.463 200.231C400.463 310.816 310.816 400.463 200.231 400.463C89.6467 400.463 0 310.816 0 200.231C7.73641e-05 89.6467 89.6467 0 200.231 0ZM200.231 22.79C102.233 22.79 22.7901 102.233 22.79 200.231C22.79 298.23 102.233 377.673 200.231 377.673C298.23 377.673 377.673 298.23 377.673 200.231C377.673 102.233 298.23 22.79 200.231 22.79Z" fill="url(#paint0_linear_afristream)"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<filter id="filter0_ii_afristream" x="-6.1565" y="-4.10433" width="409.844" height="408.378" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
-
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
-
<feOffset dx="-6.1565" dy="-4.10433"/>
|
|
11
|
-
<feGaussianBlur stdDeviation="3.21018"/>
|
|
12
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.996 0 0 0 0 0.502 0 0 0 0 0.180 0 0 0 0.6 0"/>
|
|
14
|
-
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_afristream"/>
|
|
15
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
-
<feOffset dx="3.22483" dy="3.81117"/>
|
|
17
|
-
<feGaussianBlur stdDeviation="2.52123"/>
|
|
18
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
19
|
-
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.847 0 0 0 0 0.718 0 0 0 1 0"/>
|
|
20
|
-
<feBlend mode="normal" in2="effect1_innerShadow_afristream" result="effect2_innerShadow_afristream"/>
|
|
21
|
-
</filter>
|
|
22
|
-
<linearGradient id="paint0_linear_afristream" x1="365.091" y1="325.562" x2="54.1338" y2="64.0346" gradientUnits="userSpaceOnUse">
|
|
23
|
-
<stop stop-color="#FFB366"/>
|
|
24
|
-
<stop offset="1" stop-color="#FFB366"/>
|
|
25
|
-
</linearGradient>
|
|
26
|
-
</defs>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="401" height="401" viewBox="0 0 401 401" fill="none">
|
|
2
|
+
<g filter="url(#filter0_ii_afristream)">
|
|
3
|
+
<path d="M200.231 0C310.816 0 400.463 89.6467 400.463 200.231C400.463 310.816 310.816 400.463 200.231 400.463C89.6467 400.463 0 310.816 0 200.231C7.73641e-05 89.6467 89.6467 0 200.231 0ZM200.231 22.79C102.233 22.79 22.7901 102.233 22.79 200.231C22.79 298.23 102.233 377.673 200.231 377.673C298.23 377.673 377.673 298.23 377.673 200.231C377.673 102.233 298.23 22.79 200.231 22.79Z" fill="url(#paint0_linear_afristream)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<filter id="filter0_ii_afristream" x="-6.1565" y="-4.10433" width="409.844" height="408.378" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
+
<feOffset dx="-6.1565" dy="-4.10433"/>
|
|
11
|
+
<feGaussianBlur stdDeviation="3.21018"/>
|
|
12
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.996 0 0 0 0 0.502 0 0 0 0 0.180 0 0 0 0.6 0"/>
|
|
14
|
+
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_afristream"/>
|
|
15
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
+
<feOffset dx="3.22483" dy="3.81117"/>
|
|
17
|
+
<feGaussianBlur stdDeviation="2.52123"/>
|
|
18
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
19
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.847 0 0 0 0 0.718 0 0 0 1 0"/>
|
|
20
|
+
<feBlend mode="normal" in2="effect1_innerShadow_afristream" result="effect2_innerShadow_afristream"/>
|
|
21
|
+
</filter>
|
|
22
|
+
<linearGradient id="paint0_linear_afristream" x1="365.091" y1="325.562" x2="54.1338" y2="64.0346" gradientUnits="userSpaceOnUse">
|
|
23
|
+
<stop stop-color="#FFB366"/>
|
|
24
|
+
<stop offset="1" stop-color="#FFB366"/>
|
|
25
|
+
</linearGradient>
|
|
26
|
+
</defs>
|
|
27
27
|
</svg>
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="401" height="401" viewBox="0 0 401 401" fill="none">
|
|
2
|
-
<g filter="url(#filter0_ii_180_1646)">
|
|
3
|
-
<path d="M200.23 0C310.814 0.000255644 400.46 89.6467 400.46 200.23C400.46 310.814 310.814 400.46 200.23 400.46C89.6466 400.46 0.000178327 310.814 0 200.23C0 89.6465 89.6465 0 200.23 0ZM200.23 22.79C102.233 22.79 22.79 102.233 22.79 200.23C22.7903 298.228 102.233 377.671 200.23 377.671C298.228 377.671 377.67 298.228 377.67 200.23C377.67 102.233 298.228 22.7903 200.23 22.79Z" fill="#6B6B6B"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<filter id="filter0_ii_180_1646" x="-6.15646" y="-4.1043" width="409.84" height="408.375" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
-
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
-
<feOffset dx="-6.15646" dy="-4.1043"/>
|
|
11
|
-
<feGaussianBlur stdDeviation="3.21015"/>
|
|
12
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/>
|
|
14
|
-
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_180_1646"/>
|
|
15
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
-
<feOffset dx="3.22481" dy="3.81114"/>
|
|
17
|
-
<feGaussianBlur stdDeviation="2.52122"/>
|
|
18
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
19
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.329412 0 0 0 0 0.329412 0 0 0 0 0.329412 0 0 0 1 0"/>
|
|
20
|
-
<feBlend mode="normal" in2="effect1_innerShadow_180_1646" result="effect2_innerShadow_180_1646"/>
|
|
21
|
-
</filter>
|
|
22
|
-
</defs>
|
|
23
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="401" height="401" viewBox="0 0 401 401" fill="none">
|
|
2
|
+
<g filter="url(#filter0_ii_180_1646)">
|
|
3
|
+
<path d="M200.23 0C310.814 0.000255644 400.46 89.6467 400.46 200.23C400.46 310.814 310.814 400.46 200.23 400.46C89.6466 400.46 0.000178327 310.814 0 200.23C0 89.6465 89.6465 0 200.23 0ZM200.23 22.79C102.233 22.79 22.79 102.233 22.79 200.23C22.7903 298.228 102.233 377.671 200.23 377.671C298.228 377.671 377.67 298.228 377.67 200.23C377.67 102.233 298.228 22.7903 200.23 22.79Z" fill="#6B6B6B"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<filter id="filter0_ii_180_1646" x="-6.15646" y="-4.1043" width="409.84" height="408.375" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
+
<feOffset dx="-6.15646" dy="-4.1043"/>
|
|
11
|
+
<feGaussianBlur stdDeviation="3.21015"/>
|
|
12
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/>
|
|
14
|
+
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_180_1646"/>
|
|
15
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
16
|
+
<feOffset dx="3.22481" dy="3.81114"/>
|
|
17
|
+
<feGaussianBlur stdDeviation="2.52122"/>
|
|
18
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
19
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.329412 0 0 0 0 0.329412 0 0 0 0 0.329412 0 0 0 1 0"/>
|
|
20
|
+
<feBlend mode="normal" in2="effect1_innerShadow_180_1646" result="effect2_innerShadow_180_1646"/>
|
|
21
|
+
</filter>
|
|
22
|
+
</defs>
|
|
23
|
+
</svg>
|